:root {
    color-scheme: light;
    --color-bg: #ffffff;
    --color-bg-soft: #f5fbff;
    --color-surface: #ffffff;
    --color-surface-soft: #f8fafc;
    --color-text: #0b2a42;
    --color-muted: #52677a;
    --color-border: rgba(60, 141, 188, 0.18);
    --color-primary: #3c8dbc;
    --color-primary-dark: #0f4f73;
    --color-primary-soft: #e8f4fb;
    --color-shadow: rgba(15, 47, 74, 0.14);
    --brand: #3c8dbc;
    --brand-dark: #0b3551;
    --brand-night: #071f33;
    --brand-light: #eaf6fc;
    --brand-soft: #f5fbff;
    --accent: #1f9bd1;
    --success: #16a34a;
    --gold: #f5b942;
    --text: #334155;
    --heading: #0f2538;
    --muted: #64748b;
    --line: #dbe8f1;
    --soft: #f8fafc;
    --white: #ffffff;
    --shadow-sm: 0 12px 30px rgba(15, 79, 115, 0.09);
    --shadow-md: 0 24px 70px rgba(11, 53, 81, 0.14);
    --shadow-lg: 0 36px 110px rgba(7, 31, 51, 0.18);
    --radius-sm: 14px;
    --radius-md: 22px;
    --radius-lg: 34px;
    --max: 1180px;
}

html[data-theme="dark"] {
    color-scheme: dark;
    --color-bg: #071f33;
    --color-bg-soft: #0b2a42;
    --color-surface: #0f3552;
    --color-surface-soft: #123f5c;
    --color-text: #f8fafc;
    --color-muted: #b6c7d8;
    --color-border: rgba(255, 255, 255, 0.12);
    --color-primary: #64b5e0;
    --color-primary-dark: #3c8dbc;
    --color-primary-soft: rgba(100, 181, 224, 0.14);
    --color-shadow: rgba(0, 0, 0, 0.35);
    --brand: var(--color-primary);
    --brand-dark: #0f4f73;
    --brand-light: var(--color-primary-soft);
    --brand-soft: var(--color-bg-soft);
    --accent: #79c8ef;
    --success: #4ade80;
    --text: var(--color-text);
    --heading: var(--color-text);
    --muted: var(--color-muted);
    --line: var(--color-border);
    --soft: var(--color-surface-soft);
    --shadow-sm: 0 12px 30px rgba(0, 0, 0, 0.22);
    --shadow-md: 0 24px 70px rgba(0, 0, 0, 0.32);
    --shadow-lg: 0 36px 110px rgba(0, 0, 0, 0.42);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    color: var(--text);
    background: var(--color-bg);
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body,
.site-header,
.section,
.hero,
.story-card,
.feature-panel,
.support-card,
.experience-card,
.demo-product-card,
.video-card,
.mobile-card,
.partner-card,
.pricing-card,
.faq-item,
.contact-form,
.contact-methods a,
.contact-methods p,
.btn,
.theme-toggle,
input,
textarea {
    transition: background 250ms ease, background-color 250ms ease, border-color 250ms ease, box-shadow 250ms ease, color 250ms ease, filter 250ms ease, transform 180ms ease;
}

body.is-menu-open {
    overflow-x: hidden;
}

img,
iframe {
    max-width: 100%;
}

img {
    display: block;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 1000;
    transform: translateY(-180%);
    padding: 10px 14px;
    border-radius: 999px;
    background: var(--brand-night);
    color: var(--white);
    font-weight: 800;
}

.skip-link:focus {
    transform: translateY(0);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.brand-word {
    white-space: nowrap;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
}

.shell {
    width: min(var(--max), calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: clamp(56px, 7vw, 96px) 0;
}

.section-heading {
    max-width: 760px;
    margin: 0 auto clamp(28px, 4vw, 48px);
    text-align: center;
}

.section-heading h2,
.story-copy h2,
.experience-copy h2,
.proof-copy h2,
.mobile-copy h2,
.faq-copy h2,
.contact-copy h2 {
    margin: 0;
    color: var(--heading);
    font-size: clamp(2rem, 3.6vw, 3.35rem);
    line-height: 1.08;
    letter-spacing: 0;
    hyphens: none;
    overflow-wrap: normal;
}

.section-heading p,
.story-copy p,
.experience-copy p,
.proof-copy p,
.mobile-copy p,
.faq-copy p,
.contact-copy p {
    margin: 14px 0 0;
    color: var(--muted);
    font-size: 1.05rem;
    line-height: 1.68;
}

.section-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 8px 13px;
    border: 1px solid rgba(60, 141, 188, 0.16);
    border-radius: 999px;
    background: rgba(234, 246, 252, 0.9);
    color: #064466;
    font-size: 0.75rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid transparent;
    border-radius: 14px;
    font-weight: 850;
    transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.btn:hover,
.btn:focus-visible {
    transform: translateY(-2px) scale(1.01);
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand), var(--accent));
    color: var(--white);
    box-shadow: 0 16px 35px rgba(60, 141, 188, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
    box-shadow: 0 22px 45px rgba(60, 141, 188, 0.34);
}

.btn-secondary,
.btn-ghost {
    background: var(--white);
    color: var(--brand-night);
    border-color: rgba(60, 141, 188, 0.26);
}

.btn-secondary:hover,
.btn-secondary:focus-visible,
.btn-ghost:hover,
.btn-ghost:focus-visible {
    border-color: var(--brand);
    color: var(--brand);
    box-shadow: var(--shadow-sm);
}

.btn-light {
    background: var(--white);
    color: var(--brand-night);
    box-shadow: 0 16px 35px rgba(7, 31, 51, 0.18);
}

.btn-large {
    min-height: 54px;
    padding-inline: 24px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid rgba(219, 232, 241, 0.7);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(18px);
    transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.96);
    box-shadow: 0 12px 38px rgba(15, 37, 56, 0.08);
}

.nav-shell {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
    min-height: 78px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand img {
    width: 138px;
    height: auto;
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    font-size: 0.86rem;
    font-weight: 800;
    color: #405167;
}

.site-nav a {
    position: relative;
    white-space: nowrap;
    padding: 28px 0;
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 21px;
    height: 2px;
    border-radius: 999px;
    background: var(--brand);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    color: var(--brand-night);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
    transform: scaleX(1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mobile-menu-card {
    display: contents;
}

.mobile-menu-intro {
    display: none;
}

.theme-toggle {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    min-height: 40px;
    padding: 6px 14px 6px 6px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
    transition:
        transform 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.theme-toggle:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.13);
    border-color: rgba(100, 181, 224, 0.55);
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.theme-toggle:focus-visible {
    outline: 3px solid rgba(100, 181, 224, 0.45);
    outline-offset: 3px;
}

.theme-toggle-icon {
    position: relative;
    width: 28px;
    height: 28px;
    display: inline-grid;
    place-items: center;
    border-radius: 999px;
    background: linear-gradient(135deg, #3c8dbc, #64b5e0);
    color: #ffffff;
    overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

.theme-toggle-icon i {
    position: absolute;
    font-size: 13px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.theme-icon-sun {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.theme-icon-moon {
    opacity: 0;
    transform: translateY(14px) rotate(-35deg);
}

.theme-toggle-text {
    color: #ffffff;
    font-size: 0.88rem;
    font-weight: 800;
    line-height: 1;
}

html[data-theme="dark"] .theme-icon-sun {
    opacity: 0;
    transform: translateY(-14px) rotate(35deg);
}

html[data-theme="dark"] .theme-icon-moon {
    opacity: 1;
    transform: translateY(0) rotate(0deg);
}

.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    padding: 0;
    border: 1px solid rgba(60, 141, 188, 0.22);
    border-radius: 14px;
    background: var(--white);
    cursor: pointer;
    transition: background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.menu-toggle span:not(.sr-only) {
    display: block;
    width: 20px;
    height: 2px;
    margin: 2px auto;
    border-radius: 999px;
    background: var(--brand-night);
    transform-origin: center;
    transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
    position: relative;
    overflow: hidden;
    padding: clamp(90px, 10vw, 135px) 0 clamp(64px, 7vw, 96px);
    background: linear-gradient(135deg, #f5fbff 0%, #ffffff 45%, #eef8fd 100%);
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
}

.hero-copy {
    max-width: 680px;
}

.hero h1 {
    margin: 18px 0 0;
    color: var(--heading);
    font-size: clamp(2.45rem, 5vw, 4.6rem);
    line-height: 1.03;
    letter-spacing: 0;
    hyphens: none;
    overflow-wrap: normal;
}

.hero-lead {
    max-width: 650px;
    margin: 16px 0 0;
    color: #274158;
    font-size: clamp(1.04rem, 1.5vw, 1.25rem);
    line-height: 1.68;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 22px;
}

.hero-note {
    margin: 14px 0 0;
    color: #526579;
    font-weight: 700;
}

.hero-visual {
    min-height: clamp(430px, 48vw, 620px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-stage {
    position: relative;
    width: min(620px, 100%);
    min-height: clamp(430px, 48vw, 620px);
    margin-inline: auto;
    display: grid;
    place-items: center;
}

.phone-stage::before {
    content: "";
    position: absolute;
    inset: 50px 20px 30px;
    border: 1px solid rgba(60, 141, 188, 0.2);
    border-radius: 42px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(234, 246, 252, 0.72));
    box-shadow: var(--shadow-lg);
}

.phone-glow {
    position: absolute;
    width: 82%;
    height: 74%;
    border-radius: 44px;
    background: linear-gradient(145deg, rgba(60, 141, 188, 0.12), rgba(234, 246, 252, 0.44));
    transform: rotate(-4deg);
    box-shadow: inset 0 0 0 1px rgba(60, 141, 188, 0.12);
}

.hero-phone {
    position: relative;
    z-index: 2;
    width: min(560px, 100%);
    max-width: none;
    max-height: 650px;
    object-fit: contain;
    filter: drop-shadow(0 34px 42px rgba(7, 31, 51, 0.2));
    animation: floatPhone 6.4s ease-in-out infinite;
}

.hero-metric {
    position: absolute;
    z-index: 3;
    min-width: 118px;
    padding: 11px 14px;
    border: 1px solid rgba(219, 232, 241, 0.92);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 28px rgba(15, 79, 115, 0.11);
    opacity: 0;
    transform: translateY(10px);
    animation: metricIn 620ms ease forwards;
}

.hero-metric strong {
    display: block;
    color: var(--brand);
    font-size: 1.18rem;
    line-height: 1;
}

.hero-metric span {
    display: block;
    margin-top: 4px;
    color: var(--brand-night);
    font-size: 0.72rem;
    font-weight: 900;
}

.metric-top {
    right: 4%;
    top: 18%;
}

.metric-bottom {
    left: 2%;
    bottom: 16%;
    animation-delay: 160ms;
}

.story-section {
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
}

.story-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.story-card {
    min-height: 260px;
    padding: 24px;
    border: 1px solid rgba(219, 232, 241, 0.9);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff, #f8fcff);
    box-shadow: var(--shadow-sm);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.story-card:hover {
    transform: translateY(-4px);
    border-color: rgba(60, 141, 188, 0.36);
    box-shadow: var(--shadow-md);
}

.icon-pill {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 1.2rem;
}

.story-card h3,
.feature-panel h3,
.demo-caption h3,
.pricing-card h3 {
    margin: 18px 0 0;
    color: var(--heading);
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.2;
}

.story-card p,
.feature-panel p {
    margin: 12px 0 0;
    color: var(--muted);
}

.story-target {
    padding: 16px 18px;
    border-left: 4px solid var(--brand);
    border-radius: 0 16px 16px 0;
    background: var(--brand-soft);
    color: #28445a;
    font-weight: 650;
}

.feature-section {
    background: linear-gradient(180deg, var(--soft), #ffffff);
}

.feature-categories {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 18px;
}

.feature-panel {
    grid-column: span 2;
    min-height: 300px;
    padding: 26px;
    border: 1px solid rgba(219, 232, 241, 0.9);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 16px 34px rgba(15, 79, 115, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.feature-panel:hover {
    transform: translateY(-4px);
    border-color: rgba(60, 141, 188, 0.35);
    box-shadow: var(--shadow-md);
}

.feature-panel-accent {
    background: linear-gradient(145deg, #ffffff, #f5fbff);
}

.feature-panel-dark {
    color: var(--white);
    background: linear-gradient(145deg, var(--brand-night), var(--brand-dark));
    border-color: rgba(255, 255, 255, 0.16);
}

.feature-panel-dark h3,
.feature-panel-dark p {
    color: var(--white);
}

.feature-panel-head {
    display: flex;
    align-items: center;
    gap: 14px;
}

.feature-icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 18px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 1.25rem;
}

.feature-panel-dark .feature-icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.module-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.module-list span {
    display: inline-flex;
    padding: 8px 10px;
    border-radius: 999px;
    background: var(--soft);
    color: var(--brand-night);
    font-size: 0.82rem;
    font-weight: 800;
}

.feature-panel-dark .module-list span {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
}

.support-section {
    background: var(--white);
}

.support-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.support-card {
    min-height: 235px;
    padding: 26px;
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff, #f8fcff);
    box-shadow: 0 16px 34px rgba(15, 79, 115, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.support-card:hover {
    transform: translateY(-4px);
    border-color: rgba(60, 141, 188, 0.35);
    box-shadow: var(--shadow-md);
}

.support-card h3 {
    margin: 18px 0 0;
    color: var(--heading);
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.2;
}

.support-card p {
    margin: 12px 0 0;
    color: var(--muted);
}

.experience-section {
    background: var(--white);
}

.experience-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
    align-items: center;
    gap: clamp(28px, 4vw, 56px);
    padding: clamp(30px, 4vw, 48px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--brand-night), var(--brand-dark) 52%, var(--brand));
    box-shadow: var(--shadow-lg);
}

.experience-copy h2,
.experience-copy p {
    color: var(--white);
}

.experience-copy .section-kicker {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.24);
}

.experience-copy p {
    opacity: 0.86;
    margin-bottom: 18px;
}

.experience-visual {
    position: relative;
    min-height: 410px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.experience-visual picture {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 100%;
    padding: 22px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 30px;
    background: rgba(255, 255, 255, 0.1);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
}

.experience-visual img {
    position: relative;
    z-index: 1;
    width: min(100%, 720px);
    max-height: 400px;
    object-fit: contain;
    filter: drop-shadow(0 30px 34px rgba(0, 0, 0, 0.2));
}

.experience-stat {
    position: absolute;
    z-index: 2;
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: 0 14px 28px rgba(7, 31, 51, 0.14);
}

.experience-stat strong,
.experience-stat span {
    display: block;
}

.experience-stat strong {
    color: var(--brand-night);
    font-size: 0.82rem;
}

.experience-stat span {
    color: var(--muted);
    font-size: 0.7rem;
    font-weight: 800;
}

.stat-a {
    left: 2%;
    top: 10%;
}

.stat-b {
    right: 1%;
    top: 35%;
}

.stat-c {
    left: 8%;
    bottom: 10%;
}

.product-demo-section {
    background: linear-gradient(180deg, var(--soft), #ffffff);
}

.demo-grid {
    display: grid;
    grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: stretch;
}

.demo-tabs {
    display: grid;
    gap: 10px;
    align-content: start;
}

.demo-tab {
    display: flex;
    align-items: center;
    gap: 14px;
    min-height: 60px;
    padding: 0 16px;
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: 18px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.78)),
        var(--white);
    color: var(--brand-night);
    font-weight: 900;
    text-align: left;
    box-shadow: 0 10px 22px rgba(15, 79, 115, 0.05);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.demo-tab i {
    display: grid;
    place-items: center;
    flex: 0 0 38px;
    width: 38px;
    height: 38px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(60, 141, 188, 0.12), rgba(100, 181, 224, 0.18));
    color: var(--brand);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68);
}

.demo-tab:hover,
.demo-tab:focus-visible,
.demo-tab.is-active {
    transform: translateX(4px);
    border-color: rgba(60, 141, 188, 0.48);
    box-shadow: 0 16px 34px rgba(15, 79, 115, 0.11);
}

.demo-tab.is-active {
    background: linear-gradient(135deg, #ffffff, #eef8fe);
    box-shadow: inset 4px 0 0 var(--brand), 0 18px 38px rgba(15, 79, 115, 0.12);
}

.demo-tab.is-active i {
    background: linear-gradient(135deg, var(--brand), #64b5e0);
    color: #ffffff;
}

.demo-product-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 76% 0%, rgba(60, 141, 188, 0.12), transparent 34%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96));
    box-shadow: 0 28px 76px rgba(11, 53, 81, 0.14);
}

.demo-product-card::before {
    content: "";
    position: absolute;
    inset: 16px 18px auto;
    height: 190px;
    border-radius: 999px;
    background: rgba(60, 141, 188, 0.08);
    filter: blur(42px);
    pointer-events: none;
}

.demo-caption {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 18px;
    align-items: center;
    padding: 22px 24px 0;
}

.demo-caption span {
    grid-row: span 2;
    display: inline-flex;
    align-items: center;
    height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: rgba(234, 246, 252, 0.78);
    color: #31556c;
    font-size: 0.68rem;
    font-weight: 900;
    text-transform: uppercase;
}

.demo-caption h3 {
    margin: 0;
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
}

.demo-caption p {
    margin: 2px 0 0;
    color: var(--muted);
}

.demo-screen {
    position: relative;
    margin: 18px 24px 0;
    min-height: clamp(420px, 43vw, 600px);
    padding: 18px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border: 1px solid rgba(219, 232, 241, 0.92);
    border-radius: 28px;
    background:
        radial-gradient(circle at 20% 10%, rgba(60, 141, 188, 0.16), transparent 30%),
        linear-gradient(135deg, rgba(245, 251, 255, 0.98), rgba(255, 255, 255, 0.98));
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 22px 60px rgba(60, 141, 188, 0.06);
}

.demo-screen img {
    position: relative;
    z-index: 1;
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: clamp(390px, 40vw, 560px);
    object-fit: contain;
    padding: 8px;
    border-radius: 18px;
    filter: drop-shadow(0 18px 30px rgba(7, 31, 51, 0.12));
    transition: opacity 220ms ease, transform 220ms ease;
}

.demo-screen img.is-changing {
    opacity: 0;
    transform: translateY(12px) scale(0.985);
}

.demo-thumbs {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
    padding: 16px 26px 26px;
}

.demo-thumbs img {
    width: 100%;
    height: 66px;
    object-fit: contain;
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: 16px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(245, 251, 255, 0.92)),
        var(--soft);
    box-shadow: 0 10px 24px rgba(15, 79, 115, 0.07);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.demo-thumbs img:hover {
    transform: translateY(-2px);
    border-color: rgba(60, 141, 188, 0.42);
    box-shadow: 0 14px 30px rgba(15, 79, 115, 0.12);
}

.proof-section {
    background: linear-gradient(180deg, #ffffff, #f5fbff);
}

.proof-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.74fr) minmax(0, 1.26fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: center;
}

.video-card {
    position: relative;
    overflow: hidden;
    border: 10px solid var(--white);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, var(--brand-night), var(--brand-dark));
    box-shadow: 0 26px 70px rgba(7, 31, 51, 0.18);
}

.video-card::before {
    content: "";
    display: block;
    padding-top: 56.25%;
}

.video-card iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.mobile-section {
    background: linear-gradient(180deg, #ffffff, var(--brand-soft));
}

.mobile-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
    align-items: center;
    gap: clamp(24px, 3.5vw, 50px);
    padding: clamp(30px, 4vw, 48px);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #ffffff, #f3fbff);
    border: 1px solid rgba(219, 232, 241, 0.92);
    box-shadow: 0 26px 80px rgba(11, 53, 81, 0.13);
}

.mobile-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
    margin-left: clamp(-28px, -2.5vw, -12px);
    isolation: isolate;
}

.mobile-halo {
    position: absolute;
    width: min(520px, 92%);
    height: min(382px, 78%);
    border-radius: 50px;
    background:
        radial-gradient(circle at 34% 28%, rgba(100, 181, 224, 0.34), transparent 42%),
        linear-gradient(145deg, #eaf6fc, #ffffff 55%, #d9eff9);
    transform: rotate(3deg) translateX(-2%);
    box-shadow:
        inset 0 0 0 1px rgba(60, 141, 188, 0.14),
        0 28px 68px rgba(60, 141, 188, 0.12);
}

.mobile-visual img {
    position: relative;
    z-index: 1;
    width: min(145%, 740px);
    max-width: none;
    max-height: 500px;
    object-fit: contain;
    object-position: center;
    transform: translateX(-2%) translateY(8px);
    filter: drop-shadow(0 36px 48px rgba(7, 31, 51, 0.22));
}

.mobile-benefits {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0;
}

.mobile-benefits span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 999px;
    background: var(--white);
    color: var(--brand-night);
    font-size: 0.86rem;
    font-weight: 850;
    box-shadow: 0 10px 22px rgba(15, 79, 115, 0.08);
}

.mobile-benefits i {
    color: var(--success);
}

.partners-section {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 15% 12%, rgba(60, 141, 188, 0.08), transparent 30%),
        linear-gradient(180deg, #ffffff, var(--brand-soft) 48%, #ffffff);
}

.partners-shell {
    display: grid;
    gap: clamp(24px, 3.5vw, 40px);
}

.partners-heading {
    max-width: 820px;
}

.partners-heading h2 {
    margin: 10px 0 14px;
}

.partners-heading p {
    margin: 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.6vw, 1.15rem);
}

.partners-panel {
    position: relative;
    overflow: hidden;
    padding: clamp(18px, 2.6vw, 30px);
    border: 1px solid rgba(219, 232, 241, 0.92);
    border-radius: var(--radius-lg);
    background:
        radial-gradient(circle at 96% 0%, rgba(60, 141, 188, 0.12), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.94));
    box-shadow: 0 28px 78px rgba(11, 53, 81, 0.12);
}

.partners-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.partners-panel-head p {
    max-width: 470px;
    margin: 0;
    color: var(--muted);
    font-size: 0.94rem;
}

.partners-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 240px;
    padding: 12px 14px;
    border: 1px solid rgba(60, 141, 188, 0.16);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.86);
}

.partners-proof-icon {
    width: 42px;
    height: 42px;
    display: inline-grid;
    place-items: center;
    border-radius: 15px;
    background: var(--brand-light);
    color: var(--brand);
}

.partners-proof strong {
    display: block;
    color: var(--heading);
    font-size: 1.18rem;
    line-height: 1;
}

.partners-proof span:last-child {
    display: block;
    margin-top: 4px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 850;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(138px, 1fr));
    gap: 12px;
}

.partner-card {
    min-height: 118px;
    display: grid;
    place-items: center;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(219, 232, 241, 0.9);
    border-radius: 20px;
    background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(248, 250, 252, 0.86)),
        var(--white);
    box-shadow: 0 14px 32px rgba(11, 53, 81, 0.07);
}

.partner-card:hover {
    transform: translateY(-2px);
    border-color: rgba(60, 141, 188, 0.28);
    box-shadow: 0 20px 46px rgba(11, 53, 81, 0.12);
}

.partner-card.is-extra {
    display: none;
}

.partners-section.is-expanded .partner-card.is-extra {
    display: grid;
}

.partner-card picture {
    width: 100%;
    display: grid;
    place-items: center;
}

.partner-logo {
    display: block;
    width: 100%;
    max-width: 150px;
    max-height: 62px;
    object-fit: contain;
}

.partner-logo-placeholder {
    width: 40px;
    height: 40px;
    display: inline-grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--brand-light), #ffffff);
    color: var(--brand);
}

.partner-logo-fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--brand-dark);
    font-size: 0.78rem;
    font-weight: 900;
    line-height: 1.2;
    text-align: center;
}

.partners-actions {
    display: flex;
    justify-content: center;
    margin-top: 18px;
}

.partners-toggle {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 18px;
    border: 1px solid rgba(60, 141, 188, 0.2);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.86);
    color: var(--brand-night);
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(15, 79, 115, 0.08);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.partners-toggle:hover,
.partners-toggle:focus-visible {
    transform: translateY(-2px);
    border-color: rgba(60, 141, 188, 0.36);
    background: #ffffff;
    box-shadow: 0 18px 42px rgba(15, 79, 115, 0.12);
}

.partners-section.is-expanded .partners-toggle i {
    transform: rotate(180deg);
}

.partners-toggle i {
    transition: transform 180ms ease;
}

.partners-toggle-mobile-only {
    display: none;
}

.store-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: flex-end;
    margin-top: 22px;
}

.store-actions a,
.store-actions button {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    min-height: 70px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    cursor: pointer;
    transition: transform 180ms ease, filter 180ms ease, border-color 180ms ease, background 180ms ease;
}

.store-actions a > span,
.store-actions button > span {
    color: var(--brand-night);
    font-size: 0.76rem;
    font-weight: 900;
}

.store-actions a:hover,
.store-actions a:focus-visible,
.store-actions button:hover,
.store-actions button:focus-visible {
    transform: translateY(-2px);
    filter: drop-shadow(0 12px 18px rgba(7, 31, 51, 0.16));
}

.store-actions img {
    height: 48px;
    width: auto;
}

.store-ios-tutorial span {
    color: #5d6d7f;
}

.ios-modal {
    position: fixed;
    inset: 0;
    z-index: 300;
    display: grid;
    place-items: center;
    padding: 20px;
}

.ios-modal[hidden] {
    display: none;
}

.ios-modal-backdrop {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 12%, rgba(60, 141, 188, 0.16), transparent 34%),
        linear-gradient(135deg, rgba(7, 31, 51, 0.48), rgba(11, 53, 81, 0.34));
    backdrop-filter: blur(7px);
}

.ios-modal-panel {
    position: relative;
    z-index: 1;
    width: min(1080px, calc(100vw - 36px));
    max-height: calc(100vh - 40px);
    overflow: visible;
    padding: clamp(14px, 1.8vw, 20px);
    border: 1px solid rgba(220, 236, 246, 0.9);
    border-radius: 30px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(245, 251, 255, 0.94));
    box-shadow: 0 36px 110px rgba(7, 31, 51, 0.34);
    animation: modalIn 220ms ease both;
}

.ios-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(207, 225, 238, 0.95);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--brand-night);
    box-shadow: 0 14px 30px rgba(7, 31, 51, 0.14);
    transition: transform 180ms ease, color 180ms ease, border-color 180ms ease, background 180ms ease;
}

.ios-modal-close:hover,
.ios-modal-close:focus-visible {
    transform: translateY(-2px);
    color: var(--white);
    border-color: var(--brand);
    background: var(--brand);
}

.ios-modal-copy {
    max-width: 780px;
    padding: 2px 58px 14px 4px;
}

.ios-modal-copy .section-kicker {
    border-color: rgba(60, 141, 188, 0.16);
    background: var(--brand-light);
    color: var(--brand-dark);
}

.ios-modal-copy h2 {
    margin: 12px 0 0;
    color: var(--brand-night);
    font-size: clamp(1.55rem, 2.7vw, 2.35rem);
    line-height: 1.08;
}

.ios-modal-copy p {
    max-width: 720px;
    margin: 8px 0 0;
    color: var(--muted);
    font-size: 0.98rem;
    line-height: 1.62;
}

.ios-video-frame {
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
    border: 1px solid rgba(191, 220, 237, 0.78);
    border-radius: 24px;
    background: var(--brand-night);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 24px 62px rgba(7, 31, 51, 0.22);
}

.ios-video-frame video {
    display: block;
    width: 100%;
    max-height: min(68vh, 608px);
    aspect-ratio: 16 / 9;
    object-fit: contain;
    background: var(--brand-night);
}

body.is-modal-open {
    overflow: hidden;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: translateY(16px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes mobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.985);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.pricing-section {
    background: var(--white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 16px 34px rgba(15, 79, 115, 0.07);
    transition: transform 180ms ease, box-shadow 180ms ease;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.pricing-featured {
    border-color: rgba(60, 141, 188, 0.45);
    background: linear-gradient(180deg, #ffffff, #f4fbff);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
}

.pricing-featured:hover {
    transform: translateY(-10px);
}

.recommended {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(245, 185, 66, 0.18);
    color: #8c5d00;
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.pricing-range,
.pricing-month,
.pricing-note,
.pricing-fit,
.pricing-billing {
    color: var(--muted);
}

.pricing-billing {
    margin: 8px 0 0;
    color: #426178;
    font-size: 0.84rem;
    font-weight: 850;
}

.pricing-fit {
    min-height: 42px;
    margin: 10px 0 0;
    color: #426178;
    font-size: 0.92rem;
    font-weight: 750;
    line-height: 1.45;
}

.pricing-price {
    margin: 16px 0 0;
    color: var(--heading);
    font-size: 2rem;
    line-height: 1.05;
    font-weight: 900;
}

.pricing-price span {
    color: var(--muted);
    font-size: 0.95rem;
    font-weight: 700;
}

.pricing-card ul {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 18px 0 22px;
    list-style: none;
}

.pricing-card li {
    position: relative;
    padding-left: 26px;
    color: #41546a;
}

.pricing-card li::before {
    content: "\f00c";
    position: absolute;
    left: 0;
    top: 1px;
    font-family: FontAwesome;
    color: var(--success);
}

.pricing-card .btn {
    margin-top: auto;
}

.pricing-note {
    max-width: 720px;
    margin: 20px auto 0;
    text-align: center;
}

.faq-section {
    background: var(--soft);
}

.faq-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
    gap: clamp(28px, 4vw, 56px);
}

.faq-list {
    display: grid;
    gap: 12px;
}

.faq-item {
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 22px rgba(15, 79, 115, 0.04);
}

.faq-item button {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    width: 100%;
    padding: 18px 20px;
    border: 0;
    background: transparent;
    color: var(--heading);
    font-weight: 900;
    text-align: left;
}

.faq-item i {
    color: var(--brand);
    transition: transform 180ms ease;
}

.faq-item button[aria-expanded="true"] i {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 20px 18px;
}

.faq-answer p {
    margin: 0;
    color: var(--muted);
}

.contact-section {
    background: linear-gradient(180deg, #ffffff, #f7fcff);
}

.legal-hero {
    padding: clamp(86px, 11vw, 135px) 0 clamp(58px, 7vw, 86px);
    background: linear-gradient(135deg, #f5fbff 0%, #ffffff 48%, #eef8fd 100%);
}

.legal-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.42fr);
    gap: clamp(28px, 5vw, 58px);
    align-items: center;
}

.legal-hero-copy {
    max-width: 790px;
}

.legal-hero h1 {
    margin: 20px 0 0;
    color: var(--heading);
    font-size: clamp(2.35rem, 5vw, 4.35rem);
    line-height: 1.05;
    letter-spacing: 0;
}

.legal-hero p {
    max-width: 720px;
    margin: 20px 0 0;
    color: #274158;
    font-size: clamp(1.02rem, 1.4vw, 1.18rem);
    line-height: 1.7;
}

.legal-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 28px;
}

.legal-summary {
    padding: 28px;
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow-md);
}

.legal-summary span,
.permission-card small {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.legal-summary strong {
    display: block;
    margin-top: 8px;
    color: var(--heading);
    font-size: 1.35rem;
    line-height: 1.15;
}

.legal-summary p {
    margin-top: 14px;
    color: var(--muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

.legal-section {
    background: linear-gradient(180deg, #ffffff, var(--soft));
}

.legal-layout {
    display: grid;
    grid-template-columns: minmax(240px, 0.34fr) minmax(0, 1fr);
    gap: 28px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 104px;
    padding: 24px;
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 16px 34px rgba(15, 79, 115, 0.07);
}

.legal-sidebar h2 {
    margin: 0;
    color: var(--heading);
    font-size: 1.15rem;
}

.legal-sidebar ul {
    display: grid;
    gap: 14px;
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.legal-sidebar li {
    display: grid;
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 10px;
    color: #41546a;
    font-weight: 700;
    line-height: 1.45;
}

.legal-sidebar i {
    color: var(--success);
    margin-top: 3px;
}

.legal-content {
    display: grid;
    gap: 18px;
}

.legal-card,
.permission-card,
.legal-contact {
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: 0 16px 34px rgba(15, 79, 115, 0.07);
}

.legal-card {
    padding: 28px;
}

.legal-icon {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 16px;
    background: var(--brand-light);
    color: var(--brand);
    font-size: 1.08rem;
}

.legal-card h2,
.legal-contact h2 {
    margin: 16px 0 0;
    color: var(--heading);
    font-size: clamp(1.5rem, 2.3vw, 2rem);
    line-height: 1.15;
}

.legal-card p,
.permission-card p,
.legal-contact p {
    margin: 12px 0 0;
    color: var(--muted);
    line-height: 1.72;
}

.permission-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.permission-card {
    padding: 24px;
}

.permission-card h3 {
    margin: 16px 0 0;
    color: var(--heading);
    font-size: clamp(1.15rem, 1.6vw, 1.35rem);
    line-height: 1.2;
}

.permission-card small {
    display: block;
    margin-top: 14px;
    color: #426178;
    line-height: 1.55;
}

.legal-contact {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 22px;
    align-items: center;
    padding: 28px;
    background: linear-gradient(135deg, #ffffff, #f3fbff);
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
    gap: clamp(28px, 4vw, 56px);
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.contact-methods a,
.contact-methods p {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: 12px;
    margin: 0;
    padding: 16px;
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 10px 24px rgba(15, 79, 115, 0.05);
}

.contact-methods i {
    grid-row: span 2;
    display: grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: var(--brand-light);
    color: var(--brand);
}

.contact-methods span {
    color: var(--muted);
    font-size: 0.8rem;
    font-weight: 800;
}

.contact-methods strong {
    color: var(--heading);
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 28px;
    border: 1px solid rgba(219, 232, 241, 0.95);
    border-radius: var(--radius-md);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.form-row {
    display: grid;
    gap: 7px;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-row-full,
.form-feedback,
.contact-form .btn {
    grid-column: 1 / -1;
}

.form-feedback {
    display: none;
    padding: 13px 14px;
    border-radius: 14px;
    font-size: 0.92rem;
    line-height: 1.45;
}

.form-feedback-success,
.form-feedback-error {
    display: block;
}

.form-feedback-success {
    border: 1px solid rgba(22, 163, 74, 0.24);
    background: rgba(22, 163, 74, 0.1);
    color: #0f7a39;
}

.form-feedback-error {
    border: 1px solid rgba(220, 38, 38, 0.24);
    background: rgba(220, 38, 38, 0.08);
    color: #b91c1c;
}

.contact-form label {
    color: var(--brand-night);
    font-size: 0.84rem;
    font-weight: 900;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(203, 218, 229, 0.95);
    border-radius: 14px;
    background: #fbfdff;
    color: var(--heading);
    padding: 13px 14px;
    outline: 0;
    transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--brand);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(60, 141, 188, 0.13);
}

.site-footer {
    background: var(--brand-night);
    color: rgba(255, 255, 255, 0.8);
    padding: 40px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr) minmax(0, 0.7fr);
    gap: 30px;
    align-items: start;
}

.footer-grid p {
    max-width: 420px;
    margin: 16px 0 0;
}

.footer-grid nav {
    display: grid;
    gap: 7px;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.82);
    font-weight: 800;
}

.footer-grid a:hover,
.footer-grid a:focus-visible,
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
    color: var(--white);
}

.footer-grid strong {
    display: block;
    color: var(--white);
    margin-bottom: 14px;
}

.social-links {
    display: flex;
    gap: 10px;
    align-items: center;
}

.social-links a {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.08);
    transition: background 180ms ease, transform 180ms ease, border-color 180ms ease;
}

.social-links a:hover,
.social-links a:focus-visible {
    transform: translateY(-2px);
    background: var(--brand);
    border-color: var(--brand);
}

.footer-theme {
    margin-top: 22px;
    display: inline-grid;
    gap: 10px;
}

.footer-theme-label {
    color: rgba(255, 255, 255, 0.72);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.02em;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 26px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.72);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.82);
}

html[data-theme="dark"] .site-header {
    border-bottom-color: var(--color-border);
    background: rgba(7, 31, 51, 0.86);
    box-shadow: 0 14px 44px rgba(0, 0, 0, 0.26);
}

html[data-theme="dark"] .site-header.is-scrolled {
    background: rgba(7, 31, 51, 0.94);
}

html[data-theme="dark"] .brand img {
    content: url("../images/logo/my-scool-wt.png");
}

html[data-theme="dark"] .site-nav {
    color: var(--color-muted);
}

html[data-theme="dark"] .site-nav a:hover,
html[data-theme="dark"] .site-nav a:focus-visible {
    color: var(--color-text);
}

html[data-theme="dark"] .menu-toggle {
    border-color: var(--color-border);
    background: var(--color-surface);
}

html[data-theme="dark"] .menu-toggle span:not(.sr-only) {
    background: var(--color-text);
}

html[data-theme="dark"] .btn-primary {
    color: #062033;
    box-shadow: 0 18px 38px rgba(100, 181, 224, 0.22);
}

html[data-theme="dark"] .btn-secondary,
html[data-theme="dark"] .btn-ghost,
html[data-theme="dark"] .btn-light {
    background: rgba(15, 53, 82, 0.86);
    color: var(--color-text);
    border-color: var(--color-border);
    box-shadow: none;
}

html[data-theme="dark"] .btn-secondary:hover,
html[data-theme="dark"] .btn-secondary:focus-visible,
html[data-theme="dark"] .btn-ghost:hover,
html[data-theme="dark"] .btn-ghost:focus-visible,
html[data-theme="dark"] .btn-light:hover,
html[data-theme="dark"] .btn-light:focus-visible {
    border-color: var(--color-primary);
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .theme-toggle {
    background: rgba(100, 181, 224, 0.12);
    border-color: rgba(100, 181, 224, 0.28);
}

html[data-theme="light"] .site-footer .theme-toggle {
    background: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .section-kicker,
html[data-theme="dark"] .eyebrow {
    border-color: var(--color-border);
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

html[data-theme="dark"] .hero {
    background:
        radial-gradient(circle at 8% 24%, rgba(100, 181, 224, 0.18), transparent 30%),
        linear-gradient(135deg, #071f33 0%, #0b2a42 52%, #0f3552 100%);
}

html[data-theme="dark"] .hero-lead,
html[data-theme="dark"] .hero-note {
    color: var(--color-muted);
}

html[data-theme="dark"] .phone-stage::before {
    border-color: var(--color-border);
    background: linear-gradient(135deg, rgba(15, 53, 82, 0.74), rgba(18, 63, 92, 0.66));
}

html[data-theme="dark"] .phone-glow {
    background: linear-gradient(145deg, rgba(100, 181, 224, 0.2), rgba(18, 63, 92, 0.5));
    box-shadow: inset 0 0 0 1px rgba(100, 181, 224, 0.14);
}

html[data-theme="dark"] .hero-metric,
html[data-theme="dark"] .experience-stat {
    border-color: var(--color-border);
    background: rgba(15, 53, 82, 0.92);
    box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .hero-metric strong,
html[data-theme="dark"] .experience-stat strong {
    color: var(--color-primary);
}

html[data-theme="dark"] .hero-metric span,
html[data-theme="dark"] .experience-stat span {
    color: var(--color-muted);
}

html[data-theme="dark"] .story-section,
html[data-theme="dark"] .support-section,
html[data-theme="dark"] .experience-section,
html[data-theme="dark"] .partners-section,
html[data-theme="dark"] .pricing-section {
    background: var(--color-bg);
}

html[data-theme="dark"] .feature-section,
html[data-theme="dark"] .product-demo-section,
html[data-theme="dark"] .faq-section,
html[data-theme="dark"] .legal-section {
    background: linear-gradient(180deg, var(--color-bg-soft), var(--color-bg));
}

html[data-theme="dark"] .proof-section,
html[data-theme="dark"] .mobile-section,
html[data-theme="dark"] .contact-section {
    background: linear-gradient(180deg, var(--color-bg), var(--color-bg-soft));
}

html[data-theme="dark"] .story-card,
html[data-theme="dark"] .support-card,
html[data-theme="dark"] .feature-panel,
html[data-theme="dark"] .demo-tab,
html[data-theme="dark"] .demo-product-card,
html[data-theme="dark"] .partner-card,
html[data-theme="dark"] .pricing-card,
html[data-theme="dark"] .faq-item,
html[data-theme="dark"] .contact-form,
html[data-theme="dark"] .contact-methods a,
html[data-theme="dark"] .contact-methods p,
html[data-theme="dark"] .legal-summary,
html[data-theme="dark"] .legal-sidebar,
html[data-theme="dark"] .legal-card,
html[data-theme="dark"] .permission-card,
html[data-theme="dark"] .legal-contact {
    border-color: var(--color-border);
    background: linear-gradient(180deg, rgba(15, 53, 82, 0.96), rgba(18, 63, 92, 0.88));
    box-shadow: var(--shadow-sm);
}

html[data-theme="dark"] .story-card:hover,
html[data-theme="dark"] .support-card:hover,
html[data-theme="dark"] .feature-panel:hover,
html[data-theme="dark"] .partner-card:hover,
html[data-theme="dark"] .pricing-card:hover {
    border-color: rgba(100, 181, 224, 0.42);
    box-shadow: var(--shadow-md);
}

html[data-theme="dark"] .partner-logo-fallback {
    color: var(--color-text);
}

html[data-theme="dark"] .partners-panel {
    border-color: var(--color-border);
    background:
        radial-gradient(circle at 96% 0%, rgba(100, 181, 224, 0.16), transparent 34%),
        linear-gradient(145deg, rgba(15, 53, 82, 0.98), rgba(7, 31, 51, 0.94));
    box-shadow: var(--shadow-md);
}

html[data-theme="dark"] .partners-panel-head p,
html[data-theme="dark"] .partners-proof span:last-child {
    color: var(--color-muted);
}

html[data-theme="dark"] .partners-proof,
html[data-theme="dark"] .partners-toggle {
    border-color: var(--color-border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text);
}

html[data-theme="dark"] .partners-proof strong {
    color: var(--color-text);
}

html[data-theme="dark"] .partner-logo-placeholder {
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

html[data-theme="dark"] .feature-panel-accent,
html[data-theme="dark"] .pricing-featured,
html[data-theme="dark"] .mobile-card {
    border-color: rgba(100, 181, 224, 0.24);
    background: linear-gradient(145deg, rgba(15, 53, 82, 0.98), rgba(11, 42, 66, 0.94));
}

html[data-theme="dark"] .feature-panel-dark,
html[data-theme="dark"] .experience-card,
html[data-theme="dark"] .video-card {
    border-color: rgba(100, 181, 224, 0.18);
    background: linear-gradient(145deg, #061a2a, #0b3551 58%, #0f4f73);
}

html[data-theme="dark"] .icon-pill,
html[data-theme="dark"] .feature-icon,
html[data-theme="dark"] .demo-tab i,
html[data-theme="dark"] .legal-icon,
html[data-theme="dark"] .contact-methods i {
    background: var(--color-primary-soft);
    color: var(--color-primary);
}

html[data-theme="dark"] .story-target {
    background: rgba(100, 181, 224, 0.1);
    color: var(--color-text);
}

html[data-theme="dark"] .module-list span,
html[data-theme="dark"] .mobile-benefits span {
    background: rgba(255, 255, 255, 0.08);
    color: var(--color-text);
}

html[data-theme="dark"] .demo-tab {
    color: var(--color-text);
}

html[data-theme="dark"] .demo-tab.is-active {
    background: linear-gradient(135deg, rgba(18, 63, 92, 0.98), rgba(15, 53, 82, 0.92));
    box-shadow: inset 4px 0 0 var(--color-primary), var(--shadow-sm);
}

html[data-theme="dark"] .demo-tab.is-active i {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    color: #ffffff;
}

html[data-theme="dark"] .demo-caption span,
html[data-theme="dark"] .recommended {
    background: rgba(100, 181, 224, 0.14);
    color: var(--color-primary);
}

html[data-theme="dark"] .demo-screen {
    border-color: var(--color-border);
    background:
        radial-gradient(circle at 20% 10%, rgba(100, 181, 224, 0.18), transparent 32%),
        linear-gradient(135deg, rgba(7, 31, 51, 0.92), rgba(15, 53, 82, 0.92));
}

html[data-theme="dark"] .demo-thumbs img {
    border-color: var(--color-border);
    background:
        linear-gradient(135deg, rgba(18, 63, 92, 0.88), rgba(15, 53, 82, 0.92)),
        var(--color-bg-soft);
}

html[data-theme="dark"] .experience-visual picture,
html[data-theme="dark"] .ios-video-frame {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(7, 31, 51, 0.28);
}

html[data-theme="dark"] .mobile-halo {
    background: linear-gradient(145deg, rgba(100, 181, 224, 0.12), rgba(18, 63, 92, 0.42));
    box-shadow: inset 0 0 0 1px rgba(100, 181, 224, 0.14);
}

html[data-theme="dark"] .store-actions a > span,
html[data-theme="dark"] .store-actions button > span,
html[data-theme="dark"] .pricing-billing,
html[data-theme="dark"] .pricing-fit,
html[data-theme="dark"] .pricing-range,
html[data-theme="dark"] .pricing-month,
html[data-theme="dark"] .pricing-note,
html[data-theme="dark"] .pricing-card li,
html[data-theme="dark"] .legal-sidebar li,
html[data-theme="dark"] .contact-methods span,
html[data-theme="dark"] .legal-summary span,
html[data-theme="dark"] .permission-card small {
    color: var(--color-muted);
}

html[data-theme="dark"] .contact-methods strong,
html[data-theme="dark"] .legal-summary strong {
    color: var(--color-text);
}

html[data-theme="dark"] .contact-form label {
    color: var(--color-text);
}

html[data-theme="dark"] .contact-form input,
html[data-theme="dark"] .contact-form textarea {
    border-color: var(--color-border);
    background: rgba(7, 31, 51, 0.42);
    color: var(--color-text);
}

html[data-theme="dark"] .contact-form input::placeholder,
html[data-theme="dark"] .contact-form textarea::placeholder {
    color: rgba(182, 199, 216, 0.76);
}

html[data-theme="dark"] .contact-form input:focus,
html[data-theme="dark"] .contact-form textarea:focus {
    border-color: var(--color-primary);
    background: rgba(7, 31, 51, 0.58);
    box-shadow: 0 0 0 4px rgba(100, 181, 224, 0.16);
}

html[data-theme="dark"] .form-feedback-success {
    border-color: rgba(74, 222, 128, 0.28);
    background: rgba(74, 222, 128, 0.12);
    color: #bbf7d0;
}

html[data-theme="dark"] .form-feedback-error {
    border-color: rgba(248, 113, 113, 0.3);
    background: rgba(248, 113, 113, 0.12);
    color: #fecaca;
}

html[data-theme="dark"] .ios-modal-panel {
    border-color: var(--color-border);
    background: linear-gradient(180deg, rgba(15, 53, 82, 0.98), rgba(7, 31, 51, 0.96));
}

html[data-theme="dark"] .ios-modal-close {
    border-color: var(--color-border);
    background: rgba(15, 53, 82, 0.94);
    color: var(--color-text);
}

html[data-theme="dark"] .ios-modal-copy h2,
html[data-theme="dark"] .legal-hero h1 {
    color: var(--color-text);
}

html[data-theme="dark"] .ios-modal-copy p,
html[data-theme="dark"] .legal-hero p {
    color: var(--color-muted);
}

html[data-theme="dark"] .legal-hero {
    background:
        radial-gradient(circle at 8% 24%, rgba(100, 181, 224, 0.16), transparent 30%),
        linear-gradient(135deg, var(--color-bg), var(--color-bg-soft));
}

html[data-theme="dark"] .site-header.is-open .site-nav,
html[data-theme="dark"] .site-header.is-open .nav-actions {
    border-color: var(--color-border);
    background: var(--color-surface);
}

html[data-theme="dark"] .site-header.is-open .mobile-menu-card {
    border-color: var(--color-border);
    background:
        radial-gradient(circle at 92% 0%, rgba(100, 181, 224, 0.2), transparent 34%),
        linear-gradient(145deg, rgba(15, 53, 82, 0.98), rgba(7, 31, 51, 0.96));
}

html[data-theme="dark"] .site-header.is-open .site-nav {
    background: transparent;
}

html[data-theme="dark"] .mobile-menu-intro strong {
    color: var(--color-text);
}

html[data-theme="dark"] .site-header.is-open .site-nav a {
    border-color: var(--color-border);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-text);
}

html[data-theme="dark"] .site-header.is-open .nav-actions {
    background: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .site-header.is-open .site-nav a:hover,
html[data-theme="dark"] .site-header.is-open .site-nav a:focus-visible {
    background: var(--color-primary-soft);
}

html[data-theme="dark"] .site-footer {
    background: #041827;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 620ms ease var(--reveal-delay, 0ms), transform 620ms ease var(--reveal-delay, 0ms);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatPhone {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-14px);
    }
}

@keyframes metricIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1120px) {
    .nav-shell {
        gap: 18px;
    }

    .site-nav {
        gap: 12px;
        font-size: 0.8rem;
    }

    .nav-actions .btn-ghost {
        display: none;
    }

    .hero-grid,
    .story-grid,
    .experience-card,
    .proof-grid,
    .mobile-card,
    .contact-grid,
    .faq-grid,
    .legal-hero-grid,
    .legal-layout,
    .legal-contact {
        grid-template-columns: 1fr;
    }

    .hero-copy,
    .story-copy,
    .proof-copy,
    .mobile-copy,
    .contact-copy,
    .faq-copy,
    .legal-hero-copy {
        max-width: 760px;
    }

    .legal-sidebar {
        position: static;
    }

    .hero-visual {
        min-height: auto;
        margin-top: 28px;
    }

    .phone-stage {
        width: min(430px, 92vw);
        min-height: auto;
    }

    .hero-phone {
        width: min(430px, 92vw);
        max-height: 440px;
    }

    .feature-panel {
        grid-column: span 3;
    }

    .partners-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .partners-panel-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .experience-card {
        padding: 34px;
    }

    .mobile-card {
        grid-template-columns: 1fr;
    }

    .mobile-visual {
        min-height: 460px;
        margin-left: 0;
    }

    .mobile-visual img {
        width: min(106%, 590px);
        max-height: 460px;
        transform: translateY(4px);
    }

    .mobile-halo {
        width: min(520px, 82%);
        height: min(360px, 72%);
        transform: rotate(3deg);
    }
}

@media (max-width: 860px) {
    body.is-menu-open::before {
        content: "";
        position: fixed;
        inset: 0;
        z-index: 90;
        background: rgba(7, 31, 51, 0.12);
        backdrop-filter: blur(4px);
    }

    .shell {
        width: min(100% - 28px, var(--max));
    }

    .section {
        padding: 52px 0;
    }

    .nav-shell {
        position: relative;
        grid-template-columns: auto auto;
        justify-content: space-between;
        min-height: 70px;
        row-gap: 10px;
    }

    .menu-toggle {
        display: inline-grid;
        place-items: center;
        grid-column: 2;
        grid-row: 1;
    }

    .site-header.is-open .menu-toggle {
        background: var(--brand-light);
        border-color: rgba(60, 141, 188, 0.34);
        box-shadow: 0 14px 30px rgba(15, 79, 115, 0.12);
    }

    .site-header.is-open .menu-toggle span:nth-child(2) {
        transform: translateY(4px) rotate(45deg);
    }

    .site-header.is-open .menu-toggle span:nth-child(3) {
        opacity: 0;
    }

    .site-header.is-open .menu-toggle span:nth-child(4) {
        transform: translateY(-4px) rotate(-45deg);
    }

    .mobile-menu-card {
        display: none;
    }

    .site-header.is-open .mobile-menu-card {
        position: fixed;
        top: 76px;
        right: 12px;
        left: auto;
        z-index: 104;
        display: grid;
        width: min(368px, calc(100vw - 24px));
        gap: 10px;
        max-height: calc(100dvh - 88px);
        overflow-y: auto;
        padding: 12px;
        border: 1px solid rgba(60, 141, 188, 0.2);
        border-radius: 24px;
        background:
            radial-gradient(circle at 92% 0%, rgba(60, 141, 188, 0.16), transparent 34%),
            linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(245, 251, 255, 0.96));
        box-shadow: 0 30px 80px rgba(7, 31, 51, 0.2);
        backdrop-filter: blur(20px);
        transform-origin: top right;
        animation: mobileMenuIn 190ms ease both;
        scrollbar-width: none;
    }

    .site-header.is-open .mobile-menu-card::-webkit-scrollbar {
        display: none;
    }

    .site-header.is-open .mobile-menu-intro {
        display: grid;
        gap: 2px;
        padding: 8px 10px 10px;
    }

    .mobile-menu-intro span {
        color: var(--brand);
        font-size: 0.72rem;
        font-weight: 900;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .mobile-menu-intro strong {
        color: var(--heading);
        font-size: 1rem;
        line-height: 1.25;
    }

    .site-nav,
    .nav-actions {
        display: none;
    }

    .site-header.is-open .site-nav,
    .site-header.is-open .nav-actions {
        display: flex;
    }

    .site-header.is-open .site-nav {
        position: static;
        display: grid;
        justify-content: stretch;
        align-items: stretch;
        width: 100%;
        gap: 6px;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        box-shadow: none;
    }

    .site-header.is-open .site-nav a {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: 46px;
        padding: 12px 13px;
        border: 1px solid rgba(60, 141, 188, 0.12);
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.72);
        color: var(--heading);
        font-size: 0.92rem;
        font-weight: 850;
        text-align: left;
        box-shadow: 0 8px 22px rgba(15, 79, 115, 0.06);
    }

    .site-header.is-open .site-nav a::before {
        content: "";
        width: 9px;
        height: 9px;
        margin-right: 11px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--brand), #64b5e0);
        box-shadow: 0 0 0 5px rgba(60, 141, 188, 0.1);
    }

    .site-header.is-open .site-nav a::after {
        display: none;
    }

    .site-header.is-open .site-nav a:hover,
    .site-header.is-open .site-nav a:focus-visible {
        border-color: rgba(60, 141, 188, 0.28);
        background: #ffffff;
        box-shadow: 0 14px 30px rgba(15, 79, 115, 0.1);
        transform: translateY(-1px);
    }

    .site-header.is-open .nav-actions {
        position: static;
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 2px;
        padding: 10px;
        border: 1px solid rgba(60, 141, 188, 0.16);
        border-radius: 19px;
        background: linear-gradient(135deg, rgba(232, 244, 251, 0.72), rgba(255, 255, 255, 0.88));
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.85);
    }

    .site-header.is-open .nav-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .site-header.is-open .nav-actions .btn-ghost {
        display: inline-flex;
    }

    .hero {
        padding: 84px 0 56px;
    }

    .hero-grid {
        gap: 24px;
    }

    .hero h1 {
        font-size: clamp(2.25rem, 10vw, 3.35rem);
        line-height: 1.06;
    }

    .hero-visual {
        min-height: auto;
    }

    .phone-stage {
        width: min(430px, 92vw);
        min-height: auto;
    }

    .phone-stage::before {
        inset: 44px 4px 24px;
        border-radius: 30px;
    }

    .hero-phone {
        width: min(430px, 92vw);
        max-height: 430px;
    }

    .hero-metric {
        min-width: 110px;
        padding: 10px 12px;
    }

    .metric-top {
        right: 1%;
        top: 16%;
    }

    .metric-bottom {
        left: 0;
        bottom: 13%;
    }

    .story-cards,
    .support-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .feature-panel {
        grid-column: span 6;
    }

    .demo-grid {
        grid-template-columns: 1fr;
    }

    .demo-tabs {
        display: flex;
        overflow-x: auto;
        padding-bottom: 8px;
        scroll-snap-type: x mandatory;
    }

    .demo-tab {
        flex: 0 0 auto;
        min-width: 190px;
        scroll-snap-align: start;
    }

    .demo-tab:hover,
    .demo-tab:focus-visible,
    .demo-tab.is-active {
        transform: translateY(-2px);
    }

    .demo-screen {
        min-height: 340px;
        margin-inline: 16px;
        padding: 12px;
    }

    .demo-screen img {
        max-height: 310px;
        padding: 6px;
    }

    .demo-caption {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 20px 16px 0;
    }

    .demo-caption span {
        grid-row: auto;
    }

    .demo-thumbs {
        padding: 14px 16px 18px;
        gap: 8px;
    }

    .demo-thumbs img {
        height: 46px;
    }

    .experience-card,
    .mobile-card {
        padding: 26px 20px;
    }

    .experience-visual {
        min-height: 310px;
    }

    .mobile-visual {
        min-height: 390px;
        margin-left: 0;
    }

    .experience-visual picture {
        padding: 14px;
        border-radius: 22px;
    }

    .experience-visual img {
        max-height: 300px;
    }

    .mobile-visual img {
        width: min(106%, 500px);
        max-height: 390px;
        transform: translateY(4px);
    }

    .mobile-halo {
        width: min(460px, 82%);
        height: 72%;
    }

    .experience-stat {
        position: static;
        margin: 8px;
    }

    .experience-visual {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }

    .experience-visual img {
        flex: 1 1 100%;
    }

    .pricing-featured {
        transform: none;
    }

    .pricing-featured:hover {
        transform: translateY(-4px);
    }

    .contact-form {
        grid-template-columns: 1fr;
        padding: 22px;
    }

    .permission-grid {
        grid-template-columns: 1fr;
    }

    .legal-contact {
        align-items: start;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid nav {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .partners-panel {
        padding: 14px;
        border-radius: 26px;
        overflow: hidden;
    }

    .partners-panel-head {
        gap: 12px;
        margin-bottom: 14px;
    }

    .partners-panel-head p {
        font-size: 0.86rem;
    }

    .partners-proof {
        width: 100%;
        min-width: 0;
        padding: 10px;
        border-radius: 18px;
    }

    .partners-grid {
        display: flex;
        grid-template-columns: none;
        gap: 12px;
        margin-inline: -14px;
        padding: 2px 14px 16px;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scroll-padding-inline: 14px;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .partners-grid::-webkit-scrollbar {
        display: none;
    }

    .partner-card.is-extra,
    .partner-card.is-mobile-extra,
    .partners-section.is-expanded .partner-card.is-extra,
    .partners-section.is-expanded .partner-card.is-mobile-extra {
        display: grid;
    }

    .partner-card {
        flex: 0 0 min(68vw, 230px);
        min-height: 110px;
        padding: 16px 12px;
        border-radius: 18px;
        scroll-snap-align: start;
    }

    .partner-logo {
        max-width: 128px;
        max-height: 58px;
    }

    .partner-logo-fallback {
        font-size: 0.78rem;
    }

    .partners-toggle-mobile-only {
        display: none;
    }

    .partners-actions {
        display: none;
    }

    .footer-theme {
        margin-top: 18px;
    }

    .theme-toggle {
        min-height: 38px;
        padding-right: 12px;
    }

    .store-actions {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        width: min(100%, 410px);
        margin: 22px auto 0;
        padding: 12px;
        border: 1px solid rgba(219, 232, 241, 0.22);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1), 0 18px 38px rgba(7, 31, 51, 0.14);
    }

    .store-actions::before {
        content: "Télécharger l’application";
        grid-column: 1 / -1;
        color: currentColor;
        font-size: 0.82rem;
        font-weight: 900;
        line-height: 1.2;
        text-align: center;
    }

    .store-actions a,
    .store-actions button {
        width: 100%;
        min-width: 0;
        min-height: 94px;
        align-items: center;
        justify-content: center;
        gap: 8px;
        padding: 12px 8px;
        border: 1px solid rgba(219, 232, 241, 0.2);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.12);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
    }

    .store-actions a > span,
    .store-actions button > span {
        color: currentColor;
        font-size: 0.7rem;
        line-height: 1.15;
        text-align: center;
    }

    .store-actions img {
        width: min(142px, 100%);
        height: auto;
        max-height: 42px;
        object-fit: contain;
        filter: drop-shadow(0 8px 14px rgba(7, 31, 51, 0.18));
    }

    html[data-theme="dark"] .store-actions {
        border-color: rgba(100, 181, 224, 0.18);
        background: rgba(7, 31, 51, 0.2);
    }

    html[data-theme="dark"] .store-actions a,
    html[data-theme="dark"] .store-actions button {
        border-color: rgba(100, 181, 224, 0.16);
        background: rgba(255, 255, 255, 0.07);
    }
}

@media (max-width: 520px) {
    .shell {
        width: min(100% - 22px, var(--max));
    }

    .section {
        padding: 52px 0;
    }

    .brand img {
        width: 124px;
    }

    .hero-actions,
    .legal-actions,
    .hero-actions .btn,
    .legal-actions .btn,
    .store-actions,
    .store-actions a,
    .store-actions button,
    .contact-form .btn {
        width: 100%;
    }

    .hero-actions .btn,
    .legal-actions .btn,
    .store-actions a,
    .store-actions button {
        justify-content: center;
    }

    .legal-hero {
        padding: 64px 0 48px;
    }

    .legal-card,
    .permission-card,
    .legal-contact,
    .legal-summary,
    .legal-sidebar {
        padding: 22px;
    }

    .section-heading {
        margin-bottom: 28px;
        text-align: left;
    }

    .feature-categories {
        gap: 14px;
    }

    .feature-panel {
        min-height: auto;
        padding: 22px;
    }

    .demo-screen {
        min-height: 300px;
    }

    .support-card {
        min-height: auto;
        padding: 22px;
    }

    .phone-glow {
        width: 82%;
        height: 74%;
    }

    .phone-stage {
        width: min(360px, 94vw);
    }

    .hero-phone {
        width: min(360px, 94vw);
        max-height: 360px;
    }

    .hero-metric {
        scale: 0.88;
    }

    .hero-metric strong {
        font-size: 1.05rem;
    }

    .hero-metric span {
        font-size: 0.68rem;
    }

    .mobile-card {
        gap: 20px;
    }

    .mobile-visual {
        min-height: 370px;
        margin-left: 0;
        padding: 10px 0 26px;
        overflow: visible;
    }

    .mobile-visual img {
        width: min(104%, 380px);
        max-height: 330px;
        object-position: center;
        transform: none;
    }

    .mobile-halo {
        width: 92%;
        height: 74%;
        border-radius: 38px;
    }

    .store-actions {
        justify-content: center;
    }

    .store-actions a,
    .store-actions button {
        align-items: center;
    }

    .store-actions img {
        width: min(138px, 100%);
        height: auto;
        max-height: 40px;
    }

    .ios-modal {
        padding: 12px;
    }

    .ios-modal-panel {
        border-radius: 22px;
        padding: 20px;
    }

    .ios-modal-copy {
        padding-right: 44px;
    }

    .ios-modal-actions,
    .ios-modal-actions .btn {
        width: 100%;
    }

    .mobile-visual {
        order: 2;
    }

    .mobile-copy {
        order: 1;
    }

    .demo-thumbs {
        display: none;
    }
}

@media (max-width: 380px) {
    .mobile-visual {
        min-height: 340px;
        padding-bottom: 22px;
    }

    .mobile-visual img {
        width: min(100%, 340px);
        max-height: 305px;
    }

    .store-actions {
        grid-template-columns: 1fr;
        max-width: 280px;
    }

    .store-actions a,
    .store-actions button {
        min-height: 86px;
    }
}

/* Premium mobile image sizing - card dimensions preserved */
.mobile-card {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    overflow: hidden;
}

.mobile-visual {
    min-height: 440px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.mobile-visual picture {
    position: relative;
    z-index: 1;
    display: grid;
    place-items: center;
    width: 100%;
    overflow: visible;
}

.mobile-halo {
    width: min(430px, 86%);
    height: min(340px, 72%);
    border-radius: 46px;
    background:
        radial-gradient(circle at 38% 28%, rgba(100, 181, 224, 0.30), transparent 42%),
        linear-gradient(145deg, #eaf6fc, #ffffff 55%, #d9eff9);
    transform: rotate(4deg) scale(1.04);
    box-shadow:
        inset 0 0 0 1px rgba(60, 141, 188, 0.14),
        0 28px 60px rgba(60, 141, 188, 0.14);
}

.mobile-visual img {
    position: relative;
    z-index: 1;
    width: min(132%, 660px);
    max-width: none;
    max-height: 440px;
    object-fit: contain;
    object-position: center;
    transform: translateX(-2%) scale(1.08);
    transform-origin: center;
    filter: drop-shadow(0 34px 44px rgba(7, 31, 51, 0.22));
}

html[data-theme="dark"] .mobile-halo {
    background:
        radial-gradient(circle at 38% 28%, rgba(100, 181, 224, 0.24), transparent 42%),
        linear-gradient(145deg, rgba(100, 181, 224, 0.12), rgba(18, 63, 92, 0.42));
    box-shadow:
        inset 0 0 0 1px rgba(100, 181, 224, 0.14),
        0 28px 60px rgba(0, 0, 0, 0.24);
}

@media (max-width: 1120px) {
    .mobile-card {
        grid-template-columns: 1fr;
    }

    .mobile-visual {
        min-height: 310px;
    }

    .mobile-visual img {
        width: min(110%, 540px);
        max-width: none;
        max-height: 330px;
        transform: translateX(0) scale(1.02);
    }
}

@media (max-width: 860px) {
    .mobile-visual {
        min-height: 310px;
    }

    .mobile-visual img {
        width: min(112%, 460px);
        max-height: 310px;
        transform: translateX(0) scale(1.02);
    }

    .mobile-halo {
        width: 82%;
        height: 72%;
    }
}

@media (max-width: 520px) {
    .mobile-visual {
        min-height: 300px;
    }

    .mobile-visual img {
        width: min(116%, 390px);
        max-height: 300px;
        transform: translateX(0) scale(1.02);
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}

/* Mobile app image premium refinement: preserve card size, improve image fill and hide hard hand cut */
.mobile-card {
    overflow: hidden;
}

.mobile-visual {
    position: relative;
    min-height: 440px;
    display: grid;
    place-items: center;
    isolation: isolate;
}

.mobile-visual::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -2px;
    z-index: 4;
    height: 94px;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(243, 251, 255, 0),
        rgba(243, 251, 255, 0.92) 62%,
        rgba(243, 251, 255, 1)
    );
}

.mobile-halo {
    width: min(500px, 90%);
    height: min(342px, 76%);
    border-radius: 50px;
    background:
        radial-gradient(circle at 72% 24%, rgba(100, 181, 224, 0.34), transparent 36%),
        radial-gradient(circle at 18% 78%, rgba(180, 125, 255, 0.18), transparent 28%),
        linear-gradient(145deg, #eaf6fc, #ffffff 58%, #d9eff9);
    transform: rotate(3deg) translateX(-2%);
    box-shadow:
        inset 0 0 0 1px rgba(60, 141, 188, 0.13),
        0 28px 70px rgba(15, 79, 115, 0.1);
}

.mobile-visual picture {
    position: relative;
    z-index: 2;
    width: min(132%, 690px);
    max-width: none;
    margin-left: -8%;
    margin-bottom: -76px;
}

.mobile-visual img {
    width: 100%;
    max-width: none;
    max-height: 535px;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    filter: drop-shadow(0 38px 50px rgba(7, 31, 51, 0.22));
}

html[data-theme="dark"] .mobile-visual::after {
    background: linear-gradient(
        180deg,
        rgba(15, 53, 82, 0),
        rgba(15, 53, 82, 0.88) 62%,
        rgba(11, 42, 66, 1)
    );
}

html[data-theme="dark"] .mobile-halo {
    background:
        radial-gradient(circle at 72% 24%, rgba(100, 181, 224, 0.26), transparent 38%),
        radial-gradient(circle at 18% 78%, rgba(180, 125, 255, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(100, 181, 224, 0.12), rgba(18, 63, 92, 0.42));
}

@media (max-width: 1120px) {
    .mobile-visual {
        min-height: 420px;
        margin-left: 0;
    }

    .mobile-visual picture {
        width: min(106%, 560px);
        margin-left: 0;
        margin-bottom: -52px;
    }

    .mobile-visual img {
        max-height: 440px;
    }
}

@media (max-width: 860px) {
    .mobile-visual {
        min-height: 360px;
    }

    .mobile-visual picture {
        width: min(112%, 470px);
        margin-bottom: -38px;
    }

    .mobile-visual img {
        max-height: 370px;
    }

    .mobile-visual::after {
        height: 74px;
    }
}

@media (max-width: 520px) {
    .mobile-visual {
        min-height: 330px;
    }

    .mobile-visual picture {
        width: min(116%, 390px);
        margin-bottom: -30px;
    }

    .mobile-visual img {
        max-height: 330px;
    }

    .mobile-visual::after {
        height: 64px;
    }
}

/* Final mobile image correction: no fade band, preserve card size */
.mobile-card {
    overflow: hidden;
}

.mobile-visual {
    overflow: visible;
    isolation: isolate;
}

.mobile-visual::after {
    content: none !important;
    display: none !important;
}

.mobile-halo {
    width: min(520px, 92%);
    height: min(356px, 78%);
    border-radius: 52px;
    background:
        radial-gradient(circle at 72% 24%, rgba(100, 181, 224, 0.34), transparent 36%),
        radial-gradient(circle at 18% 78%, rgba(180, 125, 255, 0.16), transparent 28%),
        linear-gradient(145deg, #eaf6fc, #ffffff 58%, #d9eff9);
    transform: rotate(3deg) translateX(-2%);
    box-shadow:
        inset 0 0 0 1px rgba(60, 141, 188, 0.13),
        0 28px 70px rgba(15, 79, 115, 0.1);
}

.mobile-visual picture {
    position: relative;
    z-index: 2;
    display: grid;
    place-items: center;
    width: min(140%, 730px);
    max-width: none;
    margin-left: -10%;
    margin-bottom: -104px;
}

.mobile-visual img {
    width: 100%;
    max-width: none;
    max-height: 570px;
    object-fit: contain;
    object-position: center bottom;
    transform: none;
    filter: drop-shadow(0 38px 50px rgba(7, 31, 51, 0.22));
}

html[data-theme="dark"] .mobile-halo {
    background:
        radial-gradient(circle at 72% 24%, rgba(100, 181, 224, 0.26), transparent 38%),
        radial-gradient(circle at 18% 78%, rgba(180, 125, 255, 0.12), transparent 30%),
        linear-gradient(145deg, rgba(100, 181, 224, 0.12), rgba(18, 63, 92, 0.42));
}

@media (max-width: 1120px) {
    .mobile-visual picture {
        width: min(112%, 600px);
        margin-left: 0;
        margin-bottom: -74px;
    }

    .mobile-visual img {
        max-height: 470px;
    }
}

@media (max-width: 860px) {
    .mobile-visual picture {
        width: min(116%, 490px);
        margin-left: 0;
        margin-bottom: -54px;
    }

    .mobile-visual img {
        max-height: 390px;
    }
}

@media (max-width: 520px) {
    .mobile-visual picture {
        width: min(120%, 405px);
        margin-left: 0;
        margin-bottom: -38px;
    }

    .mobile-visual img {
        max-height: 345px;
    }
}



/* Mobile application visual: prevent hand clipping on narrow screens */
@media (max-width: 640px) {
    .mobile-card {
        overflow: hidden;
    }

    .mobile-visual {
        min-height: 390px;
        padding: 10px 0 30px;
        overflow: visible;
    }

    .mobile-visual picture {
        width: min(108%, 390px);
        max-width: none;
        margin-left: 0;
        margin-bottom: 0;
    }

    .mobile-visual img {
        width: 100%;
        max-width: none;
        max-height: 350px;
        object-fit: contain;
        object-position: center;
        transform: none;
    }

    .mobile-halo {
        width: 92%;
        height: 76%;
        bottom: 16px;
    }
}

@media (max-width: 520px) {
    .mobile-visual {
        min-height: 375px;
        padding-bottom: 34px;
    }

    .mobile-visual picture {
        width: min(106%, 370px);
        margin-bottom: 0;
    }

    .mobile-visual img {
        max-height: 330px;
    }

    .mobile-halo {
        width: 92%;
        height: 74%;
        bottom: 18px;
    }
}

@media (max-width: 380px) {
    .mobile-visual {
        min-height: 350px;
        padding-bottom: 30px;
    }

    .mobile-visual picture {
        width: min(102%, 330px);
        margin-bottom: 0;
    }

    .mobile-visual img {
        max-height: 305px;
    }
}

/* Mobile app image polish: hide the source image's cropped sleeve edge without changing card size */
@media (max-width: 640px) {
    .mobile-card {
        overflow: hidden;
    }

    .mobile-visual {
        min-height: 410px;
        padding: 8px 0 18px;
        overflow: visible;
    }

    .mobile-visual::after {
        content: none !important;
        display: none !important;
    }

    .mobile-visual picture {
        width: min(118%, 430px);
        max-width: none;
        margin-left: 0;
        margin-bottom: -18px;
        overflow: visible;
    }

    .mobile-visual img {
        width: 100%;
        max-width: none;
        max-height: 370px;
        object-fit: contain;
        object-position: center;
        transform: none;
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0, 0, 0, 0.72) 90%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 0%, #000 82%, rgba(0, 0, 0, 0.72) 90%, transparent 100%);
        -webkit-mask-size: 100% 100%;
        mask-size: 100% 100%;
        -webkit-mask-repeat: no-repeat;
        mask-repeat: no-repeat;
    }

    .mobile-halo {
        width: 94%;
        height: 78%;
        bottom: 18px;
    }
}

@media (max-width: 520px) {
    .mobile-visual {
        min-height: 390px;
        padding-bottom: 18px;
    }

    .mobile-visual picture {
        width: min(116%, 405px);
        margin-bottom: -16px;
    }

    .mobile-visual img {
        max-height: 350px;
        -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 80%, rgba(0, 0, 0, 0.7) 90%, transparent 100%);
        mask-image: linear-gradient(180deg, #000 0%, #000 80%, rgba(0, 0, 0, 0.7) 90%, transparent 100%);
    }
}

@media (max-width: 380px) {
    .mobile-visual {
        min-height: 360px;
        padding-bottom: 16px;
    }

    .mobile-visual picture {
        width: min(112%, 360px);
        margin-bottom: -12px;
    }

    .mobile-visual img {
        max-height: 320px;
    }
}