:root {
    --wm-bg: #f7f8fc;
    --wm-surface: #ffffff;
    --wm-surface-soft: #eef3f8;
    --wm-ink: #142033;
    --wm-muted: #607086;
    --wm-line: #dbe3ed;
    --wm-brand: #ff7a45;
    --wm-brand-dark: #d94f1e;
    --wm-brand-soft: #fff0e9;
    --wm-teal: #29b8a6;
    --wm-teal-dark: #168779;
    --wm-navy: #101827;
    --wm-navy-soft: #19263b;
    --wm-success: #1f9d75;
    --wm-warning: #c77816;
    --wm-radius-sm: 12px;
    --wm-radius: 20px;
    --wm-radius-lg: 32px;
    --wm-shadow-sm: 0 8px 24px rgba(16, 24, 39, 0.07);
    --wm-shadow: 0 20px 55px rgba(16, 24, 39, 0.12);
    --wm-max: 1180px;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 90px;
}

body {
    margin: 0;
    color: var(--wm-ink);
    background: var(--wm-bg);
    font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    text-rendering: optimizeLegibility;
}

img { max-width: 100%; }
a { color: var(--wm-brand-dark); text-decoration-thickness: 1.5px; text-underline-offset: 3px; }
a:hover { color: #a93d18; }

.container { max-width: var(--wm-max); }

.skip-link {
    position: fixed;
    top: 8px;
    left: 8px;
    z-index: 9999;
    transform: translateY(-160%);
    background: #fff;
    color: var(--wm-navy);
    padding: 0.7rem 1rem;
    border-radius: 10px;
    box-shadow: var(--wm-shadow-sm);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    background: rgba(247, 248, 252, 0.93);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(219, 227, 237, 0.85);
}
.site-header .navbar { min-height: 76px; }
.navbar-toggler { border: 1px solid var(--wm-line); border-radius: 12px; padding: 0.5rem 0.65rem; }
.navbar-toggler:focus { box-shadow: 0 0 0 4px rgba(255, 122, 69, 0.18); }
.nav-link { color: #46566b; font-weight: 650; border-radius: 9px; padding: 0.55rem 0.75rem !important; }
.nav-link:hover, .nav-link.active { color: var(--wm-navy); background: #fff; }

.brand-lockup {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    color: var(--wm-navy);
    font-weight: 850;
    letter-spacing: -0.035em;
    text-decoration: none;
    font-size: 1.35rem;
}
.brand-lockup:hover { color: var(--wm-navy); }
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: linear-gradient(145deg, var(--wm-brand), #ffad6e);
    color: white;
    box-shadow: 0 8px 22px rgba(217, 79, 30, 0.24);
}
.brand-mark.small { width: 36px; height: 36px; border-radius: 12px; }
.brand-mark svg { width: 31px; height: 31px; fill: none; stroke: currentColor; stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round; }
.brand-mark .brand-dot { fill: currentColor; stroke: none; }

.btn { border-radius: 12px; font-weight: 750; padding: 0.7rem 1.05rem; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-lg { border-radius: 14px; padding: 0.9rem 1.25rem; }
.btn-brand { color: #fff; background: linear-gradient(135deg, var(--wm-brand), #f25e2b); border: 1px solid transparent; box-shadow: 0 9px 24px rgba(217, 79, 30, 0.24); }
.btn-brand:hover, .btn-brand:focus { color: #fff; background: linear-gradient(135deg, #ee6631, #d94f1e); transform: translateY(-1px); }
.btn-ghost { background: #fff; color: var(--wm-ink); border: 1px solid var(--wm-line); box-shadow: var(--wm-shadow-sm); }
.btn-ghost:hover { color: var(--wm-navy); background: var(--wm-surface-soft); }
.btn-outline-brand { color: var(--wm-brand-dark); border: 1px solid rgba(217, 79, 30, 0.35); background: transparent; }
.btn-outline-brand:hover { color: #fff; background: var(--wm-brand-dark); border-color: var(--wm-brand-dark); }
.btn:focus-visible, a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 3px solid rgba(41, 184, 166, 0.38); outline-offset: 2px; }

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 6.3rem 0 5rem;
    background:
        radial-gradient(circle at 8% 10%, rgba(255, 173, 110, 0.18), transparent 33%),
        radial-gradient(circle at 88% 25%, rgba(41, 184, 166, 0.14), transparent 34%),
        linear-gradient(180deg, #fbfcff, var(--wm-bg));
}
.hero-glow { position: absolute; border-radius: 50%; filter: blur(18px); pointer-events: none; }
.hero-glow-one { width: 240px; height: 240px; background: rgba(255, 122, 69, 0.13); top: -100px; left: -80px; }
.hero-glow-two { width: 290px; height: 290px; background: rgba(41, 184, 166, 0.10); right: -110px; bottom: -80px; }
.eyebrow, .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    color: var(--wm-brand-dark);
    font-weight: 820;
    font-size: 0.79rem;
    text-transform: uppercase;
    letter-spacing: 0.105em;
}
.hero-section h1, .page-hero h1 {
    margin: 1rem 0 1.1rem;
    color: var(--wm-navy);
    font-weight: 900;
    letter-spacing: -0.055em;
    line-height: 1.03;
    font-size: clamp(3rem, 6vw, 5.65rem);
}
.hero-section h1 span { color: var(--wm-brand-dark); }
.hero-lead { max-width: 700px; color: var(--wm-muted); font-size: clamp(1.08rem, 2vw, 1.28rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 0.7rem 1.2rem; margin-top: 1.55rem; color: #516176; font-size: 0.92rem; font-weight: 650; }
.hero-trust span { display: inline-flex; align-items: center; gap: 0.4rem; }
.hero-trust i { color: var(--wm-teal-dark); }
.hero-device-wrap { position: relative; min-height: 570px; display: grid; place-items: center; }
.hero-phone { width: min(315px, 78vw); transform: rotate(2deg); box-shadow: 0 35px 80px rgba(16, 24, 39, 0.26); }
.hero-orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(41, 184, 166, 0.24); }
.orbit-one { width: 470px; height: 470px; }
.orbit-two { width: 570px; height: 570px; border-color: rgba(255, 122, 69, 0.18); }
.floating-card { position: absolute; z-index: 3; display: flex; align-items: center; gap: 0.7rem; min-width: 205px; padding: 0.8rem 0.95rem; border-radius: 16px; background: rgba(255, 255, 255, 0.96); box-shadow: var(--wm-shadow); border: 1px solid rgba(219, 227, 237, 0.85); }
.floating-card strong, .floating-card small { display: block; }
.floating-card strong { font-size: 0.9rem; }
.floating-card small { color: var(--wm-muted); font-size: 0.74rem; }
.floating-card-top { top: 92px; left: 8px; }
.floating-card-bottom { right: 0; bottom: 90px; }
.floating-icon { width: 39px; height: 39px; display: grid; place-items: center; border-radius: 12px; background: var(--wm-brand-soft); color: var(--wm-brand-dark); }
.floating-icon.success { background: #e7f8f3; color: var(--wm-success); }

.phone-frame { position: relative; border: 9px solid var(--wm-navy); border-radius: 34px; padding: 8px; background: var(--wm-navy); overflow: hidden; box-shadow: var(--wm-shadow); }
.phone-frame img { width: 100%; display: block; border-radius: 20px; background: #e7edf5; aspect-ratio: 9 / 19.5; object-fit: cover; }
.phone-speaker { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 62px; height: 8px; border-radius: 999px; background: var(--wm-navy); z-index: 2; }

.stat-strip { background: var(--wm-navy); color: #fff; }
.stat-grid { min-height: 105px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.stat-grid > div { display: flex; align-items: baseline; gap: 0.65rem; padding: 1rem 1.3rem; border-right: 1px solid rgba(255,255,255,0.11); }
.stat-grid > div:last-child { border-right: 0; }
.stat-grid strong { font-size: 2rem; font-weight: 900; color: #ffad6e; }
.stat-grid span { color: #cbd5e1; font-size: 0.9rem; }

.section-space { padding: 6rem 0; }
.section-soft { background: var(--wm-surface-soft); }
.section-dark { color: #fff; background: radial-gradient(circle at 80% 10%, rgba(41,184,166,0.18), transparent 34%), var(--wm-navy); }
.section-heading { max-width: 720px; margin-bottom: 2.7rem; }
.section-heading.centered { text-align: center; margin-left: auto; margin-right: auto; }
.section-heading h2, .privacy-callout h2, .download-card h2 { margin: 0.55rem 0 0.8rem; color: var(--wm-navy); font-weight: 900; letter-spacing: -0.04em; line-height: 1.12; font-size: clamp(2rem, 4vw, 3.35rem); }
.section-heading p { color: var(--wm-muted); margin-bottom: 0; font-size: 1.06rem; }
.section-heading.light h2 { color: #fff; }
.section-heading.light p { color: #c7d2e1; }

.feature-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.1rem; }
.feature-card { padding: 1.65rem; background: var(--wm-surface); border: 1px solid var(--wm-line); border-radius: var(--wm-radius); box-shadow: 0 8px 20px rgba(16, 24, 39, 0.035); transition: transform .2s ease, box-shadow .2s ease; }
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--wm-shadow-sm); }
.feature-icon { display: grid; place-items: center; width: 49px; height: 49px; border-radius: 15px; color: var(--wm-brand-dark); background: var(--wm-brand-soft); font-size: 1.3rem; }
.feature-card:nth-child(2n) .feature-icon { color: var(--wm-teal-dark); background: #e7f8f5; }
.feature-card h3 { margin: 1rem 0 0.45rem; font-size: 1.12rem; font-weight: 850; }
.feature-card p { color: var(--wm-muted); margin-bottom: 0; }

.screenshot-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.4rem; align-items: start; }
.screenshot-card { margin: 0; }
.screenshot-card .phone-frame { box-shadow: 0 18px 36px rgba(16,24,39,0.16); }
.screenshot-card figcaption { padding: 1rem 0.35rem 0; }
.screenshot-card figcaption strong, .screenshot-card figcaption span { display: block; }
.screenshot-card figcaption strong { font-size: 1rem; }
.screenshot-card figcaption span { color: var(--wm-muted); font-size: 0.86rem; margin-top: 0.28rem; }

.process-list { margin: 0; padding: 0; list-style: none; display: grid; gap: 1rem; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 1rem; align-items: start; padding: 1.25rem; background: #fff; border: 1px solid var(--wm-line); border-radius: 18px; }
.process-list li > span { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 15px; background: var(--wm-navy); color: #fff; font-size: 1.1rem; font-weight: 900; }
.process-list h3 { font-size: 1.05rem; font-weight: 850; margin: 0.15rem 0 0.3rem; }
.process-list p { color: var(--wm-muted); margin: 0; }

.bundle-columns { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.bundle-panel { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.13); border-radius: 24px; padding: 1.5rem; backdrop-filter: blur(9px); }
.bundle-panel-heading { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.bundle-panel-heading h3 { margin: 0; font-size: 1.25rem; }
.status-badge { padding: 0.35rem 0.65rem; border-radius: 999px; font-size: 0.72rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.05em; }
.status-badge.free { color: #9cf2d9; background: rgba(41,184,166,0.16); }
.status-badge.paid { color: #ffd1ba; background: rgba(255,122,69,0.17); }
.bundle-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.65rem; }
.bundle-list li { display: grid; grid-template-columns: 40px 1fr; gap: 0.75rem; align-items: start; padding: 0.75rem; border-radius: 14px; background: rgba(255,255,255,0.055); }
.bundle-list li > i { width: 36px; height: 36px; display: grid; place-items: center; border-radius: 11px; color: #ffbe9a; background: rgba(255,122,69,0.13); }
.bundle-list strong, .bundle-list small { display: block; }
.bundle-list strong { color: #fff; }
.bundle-list small { color: #bdc8d7; margin-top: 0.16rem; }
.bundle-list.compact { grid-template-columns: repeat(2, minmax(0,1fr)); }
.bundle-list.compact li { grid-template-columns: 33px 1fr; }
.bundle-list.compact li > i { width: 31px; height: 31px; font-size: 0.86rem; }
.bundle-list .planned { opacity: 0.65; }
.bundle-note { color: #b9c5d6; font-size: 0.84rem; margin: 1rem 0 0; }

.media-visual { min-height: 420px; position: relative; display: grid; place-items: center; border-radius: 30px; background: linear-gradient(150deg, var(--wm-navy), #1d314a); overflow: hidden; box-shadow: var(--wm-shadow); }
.media-card { width: min(410px, 82%); position: relative; z-index: 2; padding: 1.35rem; border-radius: 20px; color: #fff; background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.18); backdrop-filter: blur(16px); }
.media-card span, .media-card strong, .media-card small { display: block; }
.media-card span { color: #b9c9da; font-size: 0.77rem; text-transform: uppercase; letter-spacing: 0.08em; }
.media-card strong { margin-top: 0.35rem; font-size: 1.35rem; }
.media-card small { color: #ced8e5; }
.media-disc { position: absolute; display: grid; place-items: center; border-radius: 50%; color: #fff; background: rgba(255,255,255,0.11); border: 1px solid rgba(255,255,255,0.16); }
.disc-one { width: 145px; height: 145px; left: -30px; top: -25px; font-size: 2rem; }
.disc-two { width: 110px; height: 110px; right: 24px; top: 28px; color: #6ee7b7; font-size: 2.1rem; }
.disc-three { width: 185px; height: 185px; right: -60px; bottom: -60px; font-size: 2.2rem; }
.waveform { height: 42px; margin-top: 1rem; display: flex; align-items: center; gap: 5px; }
.waveform i { display: block; flex: 1; max-width: 8px; border-radius: 10px; background: linear-gradient(180deg, #70e0d2, #ff9e70); }
.waveform i:nth-child(1), .waveform i:nth-child(9) { height: 14px; }.waveform i:nth-child(2), .waveform i:nth-child(8) { height: 23px; }.waveform i:nth-child(3), .waveform i:nth-child(7) { height: 33px; }.waveform i:nth-child(4), .waveform i:nth-child(6) { height: 25px; }.waveform i:nth-child(5) { height: 39px; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.75rem; }
.check-list li { display: grid; grid-template-columns: 27px 1fr; gap: 0.55rem; align-items: start; }
.check-list i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 8px; color: var(--wm-teal-dark); background: #e1f7f3; font-weight: 900; }
.check-list.compact { gap: 0.55rem; }
.fine-print, .support-note { color: var(--wm-muted); font-size: 0.86rem; margin-top: 1.15rem; }

.platform-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.2rem; }
.platform-card { padding: 1.6rem; border-radius: 22px; background: #fff; border: 1px solid var(--wm-line); }
.platform-title { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.75rem; }
.platform-title i { font-size: 1.7rem; color: var(--wm-brand-dark); }
.platform-title h3 { margin: 0; font-size: 1.35rem; font-weight: 850; }
.platform-card p, .platform-card li { color: var(--wm-muted); }
.platform-card ul { margin-bottom: 0; }
.center-action { margin-top: 2rem; text-align: center; }

.privacy-callout-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
.privacy-callout { display: grid; grid-template-columns: 84px 1fr; gap: 1.4rem; align-items: start; padding: clamp(1.6rem, 4vw, 3rem); border-radius: 28px; color: #fff; background: linear-gradient(135deg, var(--wm-navy), #1b3445); box-shadow: var(--wm-shadow); }
.privacy-callout h2 { color: #fff; font-size: clamp(1.8rem, 3vw, 2.7rem); }
.privacy-callout p { color: #cbd6e3; max-width: 850px; }
.privacy-icon { width: 76px; height: 76px; display: grid; place-items: center; border-radius: 23px; color: #89eadf; background: rgba(41,184,166,0.16); font-size: 2rem; }
.privacy-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.privacy-links a { color: #ffbc9b; font-weight: 750; }

.faq-accordion { max-width: 850px; margin: 0 auto; display: grid; gap: 0.7rem; }
.faq-accordion .accordion-item { overflow: hidden; border: 1px solid var(--wm-line); border-radius: 16px !important; background: #fff; }
.faq-accordion .accordion-button { color: var(--wm-ink); background: #fff; font-weight: 800; box-shadow: none; }
.faq-accordion .accordion-button:not(.collapsed) { color: var(--wm-brand-dark); background: var(--wm-brand-soft); }
.faq-accordion .accordion-body { color: var(--wm-muted); }

.download-section { padding-top: 4rem; padding-bottom: 4rem; }
.download-card { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding: clamp(1.6rem, 4vw, 3rem); border-radius: 30px; background: linear-gradient(135deg, #fff6f0, #e9f9f6); border: 1px solid #f1dcd0; }
.download-card h2 { font-size: clamp(2rem, 3.5vw, 3rem); max-width: 720px; }
.download-card p { color: var(--wm-muted); margin-bottom: 0; }
.download-buttons { display: grid; gap: 0.7rem; min-width: 235px; }
.store-button { display: flex; align-items: center; gap: 0.75rem; min-height: 62px; padding: 0.65rem 1rem; border-radius: 15px; color: #fff; background: var(--wm-navy); text-decoration: none; }
.store-button:hover { color: #fff; background: #24334a; }
.store-button.disabled { opacity: 0.58; cursor: default; }
.store-button i { font-size: 1.55rem; }
.store-button span { font-size: 1rem; font-weight: 800; line-height: 1.12; }
.store-button small { display: block; font-size: 0.68rem; font-weight: 500; color: #bdc7d6; }

.contact-section { background: #fff; }
.contact-details { display: grid; gap: 0.75rem; }
.contact-details > a, .contact-details > div { display: grid; grid-template-columns: 48px 1fr; gap: 0.8rem; padding: 0.9rem; align-items: start; border-radius: 15px; color: var(--wm-ink); background: var(--wm-bg); text-decoration: none; }
.contact-details i { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 13px; background: #fff; color: var(--wm-brand-dark); }
.contact-details small { display: block; color: var(--wm-muted); font-size: 0.72rem; text-transform: uppercase; letter-spacing: 0.06em; }
.contact-form { padding: clamp(1.25rem, 3vw, 2rem); border: 1px solid var(--wm-line); border-radius: 24px; background: var(--wm-bg); }
.form-label { color: var(--wm-ink); font-weight: 750; }
.form-control { min-height: 49px; border-radius: 12px; border-color: #cfd9e5; background: #fff; }
textarea.form-control { min-height: 150px; }
.form-control:focus { border-color: var(--wm-teal); box-shadow: 0 0 0 4px rgba(41,184,166,0.13); }
.optional, .character-count, .form-privacy { color: var(--wm-muted); font-size: 0.78rem; font-weight: 500; }
.form-privacy { max-width: 500px; margin: 0; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }

.page-hero { padding: 5.4rem 0 3.6rem; color: #fff; background: radial-gradient(circle at 80% 20%, rgba(41,184,166,0.2), transparent 36%), var(--wm-navy); }
.page-hero.compact h1 { color: #fff; font-size: clamp(2.5rem, 5vw, 4.3rem); }
.page-hero p { color: #c6d1df; max-width: 760px; font-size: 1.08rem; }
.page-hero .eyebrow { color: #ffb18c; }

.support-grid { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 2rem; align-items: start; }
.support-sidebar, .legal-toc { position: sticky; top: 100px; }
.support-nav, .legal-toc { display: grid; gap: 0.3rem; padding: 0.75rem; border: 1px solid var(--wm-line); border-radius: 17px; background: #fff; }
.support-nav a, .legal-toc a { padding: 0.62rem 0.7rem; color: #4d5e73; border-radius: 10px; text-decoration: none; font-weight: 650; }
.support-nav a:hover, .legal-toc a:hover { color: var(--wm-navy); background: var(--wm-surface-soft); }
.support-content { min-width: 0; }
.support-section { scroll-margin-top: 105px; padding: 1.8rem; margin-bottom: 1rem; border: 1px solid var(--wm-line); border-radius: 21px; background: #fff; }
.support-section h2 { font-weight: 900; letter-spacing: -0.025em; }
.support-title { display: flex; align-items: center; gap: 0.75rem; }
.support-title i { font-size: 1.55rem; color: var(--wm-brand-dark); }
.support-title h2 { margin: 0; }
.support-steps { display: grid; gap: 0.65rem; padding-left: 1.35rem; }
.support-bullets { color: var(--wm-muted); }
.info-callout, .warning-callout { display: grid; grid-template-columns: 30px 1fr; gap: 0.65rem; padding: 0.95rem; border-radius: 13px; margin-top: 1rem; }
.info-callout { color: #126d63; background: #e3f7f3; }
.warning-callout { color: #83520f; background: #fff4df; }
.info-callout i, .warning-callout i { font-size: 1.1rem; }
.support-contact-card { background: linear-gradient(145deg, #fff, #f6fafc); }
.detail-chip-grid { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.detail-chip-grid span { padding: 0.45rem 0.68rem; border-radius: 999px; color: #44566c; background: var(--wm-surface-soft); border: 1px solid var(--wm-line); font-size: 0.83rem; font-weight: 650; }

.legal-layout { display: grid; grid-template-columns: 250px minmax(0, 1fr); gap: 2rem; align-items: start; }
.legal-toc strong { padding: 0.5rem 0.7rem; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--wm-muted); }
.legal-document { min-width: 0; padding: clamp(1.4rem, 4vw, 3rem); border-radius: 25px; background: #fff; border: 1px solid var(--wm-line); }
.legal-document section { scroll-margin-top: 105px; padding-top: 1.7rem; margin-top: 1.7rem; border-top: 1px solid var(--wm-line); }
.legal-document h2 { margin-bottom: 0.8rem; color: var(--wm-navy); font-size: 1.52rem; font-weight: 900; letter-spacing: -0.025em; }
.legal-document h3 { margin-top: 1.25rem; font-size: 1.08rem; font-weight: 850; }
.legal-document p, .legal-document li { color: #526278; }
.legal-document li + li { margin-top: 0.38rem; }
.legal-summary { padding: 1.25rem; border-radius: 17px; background: linear-gradient(135deg, #fff1ea, #e9f8f5); border: 1px solid #f1d9cd; }
.legal-summary h2 { margin-top: 0; }
.legal-summary ul { margin-bottom: 0; }

.site-footer { color: #d3dbe7; background: var(--wm-navy); padding: 4.5rem 0 1.2rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.9fr 1fr; gap: 2rem; }
.footer-brand { color: #fff; }
.footer-brand:hover { color: #fff; }
.footer-copy { color: #c2ccda; max-width: 350px; margin: 1rem 0 0.5rem; }
.footer-muted { color: #8f9db0; font-size: 0.85rem; }
.footer-heading { color: #fff; font-size: 0.9rem; font-weight: 850; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.footer-links { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.55rem; }
.footer-links a, .footer-email { color: #c8d2df; text-decoration: none; }
.footer-links a:hover, .footer-email:hover { color: #fff; }
.footer-store-links { display: grid; gap: 0.55rem; margin-bottom: 1rem; }
.store-link { display: inline-flex; align-items: center; gap: 0.55rem; color: #fff; text-decoration: none; }
.store-link.disabled { color: #8e9bae; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; padding-top: 1.5rem; margin-top: 2.5rem; border-top: 1px solid rgba(255,255,255,0.1); color: #8e9bae; font-size: 0.82rem; }

@media (max-width: 1199.98px) {
    .screenshot-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .screenshot-card .phone-frame { max-width: 310px; margin: 0 auto; }
}

@media (max-width: 991.98px) {
    .navbar-collapse { padding: 0.8rem 0 1rem; }
    .hero-section { padding-top: 4.6rem; }
    .hero-device-wrap { min-height: 530px; }
    .feature-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .bundle-columns, .platform-grid { grid-template-columns: 1fr; }
    .download-card { align-items: flex-start; flex-direction: column; }
    .download-buttons { width: 100%; grid-template-columns: repeat(2, minmax(0,1fr)); }
    .support-grid, .legal-layout { grid-template-columns: 1fr; }
    .support-sidebar, .legal-toc { position: static; }
    .support-nav, .legal-toc { grid-template-columns: repeat(2, minmax(0,1fr)); }
    .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 767.98px) {
    .section-space { padding: 4.2rem 0; }
    .hero-section h1 { font-size: clamp(2.75rem, 14vw, 4.3rem); }
    .hero-device-wrap { min-height: 490px; }
    .hero-phone { width: 270px; }
    .floating-card-top { left: 0; top: 55px; }
    .floating-card-bottom { right: 0; bottom: 60px; }
    .stat-grid { grid-template-columns: repeat(2, 1fr); padding: 0.5rem 0; }
    .stat-grid > div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
    .feature-grid { grid-template-columns: 1fr; }
    .bundle-list.compact { grid-template-columns: 1fr; }
    .privacy-callout { grid-template-columns: 1fr; }
    .privacy-icon { width: 62px; height: 62px; border-radius: 18px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; }
}

@media (max-width: 575.98px) {
    .hero-section { padding-top: 3.8rem; }
    .hero-actions .btn { width: 100%; }
    .hero-device-wrap { min-height: 465px; }
    .floating-card { min-width: 175px; padding: 0.65rem; }
    .floating-card strong { font-size: 0.8rem; }.floating-card small { font-size: 0.68rem; }
    .screenshot-grid { grid-template-columns: 1fr; }
    .screenshot-card .phone-frame { max-width: 280px; }
    .download-buttons { grid-template-columns: 1fr; }
    .support-nav, .legal-toc { grid-template-columns: 1fr; }
    .support-section, .legal-document { padding: 1.2rem; }
    .bundle-panel-heading { align-items: flex-start; flex-direction: column; }
    .phone-frame { border-width: 7px; padding: 6px; }
}

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

@media (prefers-contrast: more) {
    :root { --wm-muted: #405064; --wm-line: #aebccc; }
    .btn-brand { border-color: #7d2d10; }
}
