:root {
    --accent: #1d4ed8;
    --accent-soft: #eff5ff;
    --text-strong: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --line: #dbe6f8;
    --surface: #ffffff;
    --surface-soft: #f8fbff;
    --bg: #f5f8fd;
    --radius-lg: 24px;
    --radius-md: 18px;
    --shadow-soft: 0 20px 40px rgba(15, 23, 42, 0.06);
    --shadow-card: 0 10px 24px rgba(15, 23, 42, 0.05);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text-body);
    background: radial-gradient(circle at 12% 8%, #ffffff 0%, var(--bg) 54%, #f3f7ff 100%);
    line-height: 1.65;
    overflow-x: hidden;
}

h1,
h2,
h3,
.logo,
.btn {
    font-family: "Plus Jakarta Sans", "Segoe UI", sans-serif;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.section {
    padding: 96px 0;
}

.eyebrow {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--accent);
    font-weight: 700;
    margin-bottom: 12px;
}

.section-heading {
    max-width: 720px;
    margin-bottom: 42px;
}

.section-heading h2 {
    color: var(--text-strong);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.15;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(10px);
    background-color: rgba(245, 248, 253, 0.78);
    border-bottom: 1px solid rgba(219, 230, 248, 0.8);
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-strong);
    font-size: 1.3rem;
    font-weight: 800;
}

.logo b {
    color: var(--accent);
}

.logo img {
    width: 36px;
    height: 36px;
    border-radius: 11px;
    box-shadow: 0 8px 18px rgba(29, 78, 216, 0.2);
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.main-nav a {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: var(--text-strong);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 13px 24px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    background-color: var(--accent);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(29, 78, 216, 0.26);
}

.btn-primary:hover {
    background-color: #1b44bc;
    box-shadow: 0 16px 34px rgba(29, 78, 216, 0.3);
}

.btn-secondary {
    border-color: #c9daf9;
    color: var(--text-strong);
    background: #ffffff;
}

.btn-secondary:hover {
    border-color: #aac4f6;
    box-shadow: var(--shadow-card);
}

.btn-header {
    padding: 10px 18px;
    font-size: 0.88rem;
}

.hero {
    padding: 88px 0 96px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.06fr) minmax(0, 0.94fr);
    gap: 48px;
    align-items: center;
}

.hero-copy h1 {
    color: var(--text-strong);
    font-size: clamp(2.4rem, 5vw, 4.35rem);
    line-height: 1.03;
    margin-bottom: 22px;
}

.hero-subtitle {
    color: var(--text-body);
    font-size: clamp(1.05rem, 2vw, 1.27rem);
    max-width: 620px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.hero-note {
    margin-top: 14px;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 600;
}

.phone-frame {
    margin: 0 auto;
    width: min(360px, 100%);
    border-radius: 36px;
    padding: 14px;
    background: linear-gradient(180deg, #fdfefe 0%, #e7eefb 100%);
    border: 1px solid #cddcf5;
    box-shadow: var(--shadow-soft);
}

.phone-frame img {
    width: 100%;
    border-radius: 26px;
}

.social-proof {
    padding: 0 0 26px;
}

.social-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.proof-item {
    border: 1px solid #d9e6fc;
    border-radius: 16px;
    background: #ffffff;
    padding: 18px;
    box-shadow: var(--shadow-card);
}

.proof-item h3 {
    color: var(--text-strong);
    font-size: 1.02rem;
    margin-bottom: 6px;
}

.proof-item p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.benefits {
    background: linear-gradient(180deg, #ffffff 0%, var(--surface-soft) 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.card {
    background: var(--surface);
    border: 1px solid #dee8fb;
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-card);
}

.card h3 {
    color: var(--text-strong);
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    background: var(--accent-soft);
    color: var(--accent);
    margin-bottom: 16px;
}

.icon svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.85;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.showcase-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 54px;
    margin-bottom: 72px;
}

.showcase-row:last-child {
    margin-bottom: 0;
}

.showcase-row.reverse .showcase-image {
    order: 2;
}

.showcase-row.reverse .showcase-copy {
    order: 1;
}

.showcase-copy h3 {
    color: var(--text-strong);
    font-size: clamp(1.45rem, 2.6vw, 2rem);
    margin-bottom: 14px;
}

.showcase-copy p {
    max-width: 480px;
}

.how-it-works {
    background: var(--surface);
}

.timeline {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
    position: relative;
}

.timeline::before {
    content: "";
    position: absolute;
    top: 21px;
    left: 14px;
    right: 14px;
    height: 1px;
    background: linear-gradient(90deg, #cadeff 0%, #93b8f7 100%);
    z-index: 0;
}

.timeline li {
    position: relative;
    z-index: 1;
    background: var(--surface-soft);
    border: 1px solid #d8e5fa;
    border-radius: var(--radius-md);
    padding: 18px 18px 20px;
    box-shadow: var(--shadow-card);
}

.step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: var(--accent);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.87rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.timeline h3 {
    color: var(--text-strong);
    margin-bottom: 6px;
    font-size: 1.08rem;
}

.audience {
    background: linear-gradient(180deg, var(--surface-soft) 0%, #fdfefe 100%);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.tag-card {
    text-align: center;
    border: 1px solid #dbe7fc;
    background: var(--surface);
    border-radius: 16px;
    padding: 18px 14px;
    box-shadow: var(--shadow-card);
}

.tag-card h3 {
    font-size: 1rem;
    color: var(--text-strong);
}

.faq-wrap {
    max-width: 880px;
}

.faq-item {
    border: 1px solid #dbe7fb;
    border-radius: 14px;
    background: var(--surface);
    margin-bottom: 12px;
    padding: 16px 18px;
    box-shadow: var(--shadow-card);
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    color: var(--text-strong);
    font-weight: 700;
    position: relative;
    padding-right: 24px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 0;
    color: var(--accent);
    font-size: 1.2rem;
    line-height: 1;
}

.faq-item[open] summary::after {
    content: "-";
}

.faq-item p {
    color: var(--text-muted);
    margin-top: 10px;
}

.final-cta {
    padding-top: 42px;
}

.cta-panel {
    text-align: center;
    border: 1px solid #cee0fd;
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #eef5ff 0%, #e4efff 100%);
    padding: 60px 26px;
    box-shadow: 0 22px 40px rgba(29, 78, 216, 0.12);
}

.cta-panel h2 {
    color: var(--text-strong);
    font-size: clamp(1.9rem, 3.9vw, 3rem);
    margin-bottom: 20px;
}

.cta-social-kicker {
    margin: 18px 0 0;
    color: #34558f;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.cta-qr {
    margin: 20px auto 0;
    display: inline-grid;
    justify-items: center;
    gap: 10px;
    padding: 12px;
    border-radius: 14px;
    border: 1px solid #c7dcff;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--shadow-card);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-qr:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 26px rgba(15, 23, 42, 0.08);
}

.cta-qr img {
    width: 116px;
    height: 116px;
    border-radius: 10px;
}

.cta-qr span {
    color: var(--text-muted);
    font-size: 0.84rem;
    font-weight: 600;
}

.site-footer {
    margin-top: 86px;
    border-top: 1px solid var(--line);
    background: #f5f8fd;
}

.footer-inner {
    min-height: 170px;
    padding: 36px 0;
    display: grid;
    gap: 14px;
    justify-items: center;
    text-align: center;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-strong);
    font-weight: 700;
}

.footer-brand img {
    width: 30px;
    height: 30px;
    border-radius: 9px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.92rem;
    font-weight: 600;
}

.footer-links a:hover {
    color: var(--text-strong);
}

.copy {
    color: var(--text-muted);
    font-size: 0.86rem;
}

.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 0.72s ease, transform 0.72s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.hero-intro {
    animation: load-up 0.8s ease both;
}

.hero-visual-delay {
    animation: load-up 1s ease 0.15s both;
}

@keyframes load-up {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .showcase-row,
    .showcase-row.reverse {
        grid-template-columns: 1fr;
        gap: 26px;
    }

    .social-proof-grid {
        grid-template-columns: 1fr;
    }

    .showcase-row.reverse .showcase-image,
    .showcase-row.reverse .showcase-copy {
        order: initial;
    }

    .benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .timeline::before {
        display: none;
    }

    .audience-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .section {
        padding: 72px 0;
    }

    .header-inner {
        min-height: 68px;
        gap: 10px;
        flex-wrap: nowrap;
    }

    .logo {
        min-width: 0;
        font-size: 1.15rem;
    }

    .logo span {
        white-space: nowrap;
    }

    .main-nav {
        display: none;
    }

    .hero {
        padding-top: 56px;
    }

    .hero-copy h1 {
        font-size: clamp(2rem, 9vw, 2.8rem);
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-note {
        font-size: 0.85rem;
    }

    .btn,
    .btn-header {
        width: 100%;
    }

    .site-header .btn-header {
        width: auto;
        flex-shrink: 0;
        padding: 9px 14px;
        font-size: 0.82rem;
        white-space: nowrap;
    }

    .phone-frame {
        width: min(320px, 100%);
    }

    .benefits-grid,
    .timeline,
    .audience-grid {
        grid-template-columns: 1fr;
    }

    .cta-panel {
        padding: 44px 20px;
    }

    .site-footer {
        margin-top: 64px;
    }

    .cta-qr img {
        width: 102px;
        height: 102px;
    }
}

/* Shared legal pages */
.legal-content {
    padding: 48px 0 80px;
    max-width: 840px;
}

.legal-content h1 {
    color: var(--text-strong);
    font-size: clamp(2rem, 4vw, 3rem);
    line-height: 1.1;
    margin-bottom: 14px;
}

.legal-content h2 {
    color: var(--text-strong);
    font-size: clamp(1.3rem, 2.5vw, 1.7rem);
    margin: 26px 0 10px;
}

.legal-content h3 {
    color: var(--text-strong);
    font-size: 1.2rem;
    margin: 18px 0 8px;
}

.legal-content p,
.legal-content li {
    color: var(--text-body);
    font-size: 1.03rem;
}

.legal-content p {
    margin-bottom: 12px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 14px;
}

.legal-content li {
    margin-bottom: 8px;
}
