/* ─────────────────────────────────────────────────────────
   MEERI — Premium Dark Theme
   ───────────────────────────────────────────────────────── */

/* ─── CUSTOM PROPERTIES ──────────────────────────────── */
:root {
    --bg-base:        #09090b;
    --bg-surface:     #111114;
    --bg-elevated:    #1a1a1f;
    --border:         rgba(255, 255, 255, 0.07);
    --border-bright:  rgba(255, 255, 255, 0.12);
    --accent:         #8B5CF6;
    --accent-bright:  #A78BFA;
    --accent-dim:     rgba(139, 92, 246, 0.12);
    --accent-glow:    rgba(139, 92, 246, 0.28);
    --text-primary:   #FAFAFA;
    --text-secondary: #A1A1AA;
    --text-muted:     #52525B;
    --star:           #F59E0B;
    --radius-sm:      8px;
    --radius-md:      12px;
    --radius-lg:      16px;
    --radius-xl:      24px;
    --radius-pill:    100px;
    --max-width:      1160px;
    --section-py:     104px;
}

/* ─── RESET ──────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; }

/* ─── CONTAINER ──────────────────────────────────────── */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin-inline: auto;
    padding-inline: 28px;
}

/* ─── KEYFRAMES ──────────────────────────────────────── */
@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.5; transform: scale(0.8); }
}

@keyframes float-front {
    0%, 100% { transform: translateY(0px); }
    50%       { transform: translateY(-12px); }
}

@keyframes float-mid {
    0%, 100% { transform: rotate(-2deg) translateY(0px); }
    50%       { transform: rotate(-2deg) translateY(-7px); }
}

/* ─── SCROLL REVEAL ──────────────────────────────────── */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition:
        opacity  0.7s cubic-bezier(0.22, 1, 0.36, 1),
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* stagger siblings inside grids */
.features-grid .fade-up:nth-child(2) { transition-delay: 0.07s; }
.features-grid .fade-up:nth-child(3) { transition-delay: 0.14s; }
.features-grid .fade-up:nth-child(4) { transition-delay: 0.21s; }
.features-grid .fade-up:nth-child(5) { transition-delay: 0.28s; }
.features-grid .fade-up:nth-child(6) { transition-delay: 0.35s; }
.reviews-grid  .fade-up:nth-child(2) { transition-delay: 0.1s; }
.reviews-grid  .fade-up:nth-child(3) { transition-delay: 0.2s; }
.steps-grid .step-card:nth-child(3)  { transition-delay: 0.12s; }
.steps-grid .step-card:nth-child(5)  { transition-delay: 0.24s; }
.pricing-grid  .fade-up:nth-child(2) { transition-delay: 0.12s; }
.stats-inner   .fade-up:nth-child(3) { transition-delay: 0.08s; }
.stats-inner   .fade-up:nth-child(5) { transition-delay: 0.16s; }
.stats-inner   .fade-up:nth-child(7) { transition-delay: 0.24s; }

/* ─── BUTTONS ────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1;
    border-radius: var(--radius-md);
    padding: 11px 20px;
    border: 1px solid transparent;
    transition: background-color 0.18s ease, border-color 0.18s ease,
                color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    letter-spacing: -0.01em;
}

.btn-sm  { font-size: 0.875rem; padding: 8px 16px; border-radius: var(--radius-sm); }
.btn-lg  { font-size: 1rem; padding: 14px 28px; }
.btn-full { width: 100%; }

.btn-primary {
    background-color: var(--accent);
    color: #fff;
    border-color: var(--accent);
}
.btn-primary:hover {
    background-color: var(--accent-bright);
    border-color: var(--accent-bright);
    transform: translateY(-1px);
    box-shadow: 0 8px 28px var(--accent-glow);
}
.btn-primary:active { transform: translateY(0); box-shadow: none; }

.btn-ghost {
    background-color: transparent;
    color: var(--text-secondary);
    border-color: var(--border-bright);
}
.btn-ghost:hover {
    background-color: var(--bg-elevated);
    color: var(--text-primary);
    border-color: rgba(255,255,255,0.18);
    transform: translateY(-1px);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-bright);
}
.btn-outline:hover {
    background-color: var(--bg-elevated);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-1px);
}

/* ─── SECTION COMMON ─────────────────────────────────── */
.section-header {
    text-align: center;
    max-width: 600px;
    margin-inline: auto;
    margin-bottom: 64px;
}

.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-bright);
    margin-bottom: 14px;
}

.section-headline {
    font-size: clamp(1.875rem, 3.5vw, 2.625rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ─────────────────────────────────────────────────────────
   NAV
   ───────────────────────────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 22px 0;
    border-bottom: 1px solid transparent;
    transition:
        background-color 0.35s ease,
        backdrop-filter  0.35s ease,
        border-color     0.35s ease,
        padding          0.35s ease;
}

.nav.scrolled {
    background-color: rgba(9, 9, 11, 0.85);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: var(--border);
    padding: 15px 0;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 1.25rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    object-fit: cover;
    flex-shrink: 0;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.15s ease;
}
.nav-link:hover { color: var(--text-primary); }

/* ─────────────────────────────────────────────────────────
   HERO
   ───────────────────────────────────────────────────────── */
.hero {
    position: relative;
    padding-top: 164px;
    padding-bottom: 120px;
    overflow: hidden;
}

.hero-atmosphere {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 55% at 25% 15%,
            rgba(139, 92, 246, 0.14) 0%, transparent 58%),
        radial-gradient(ellipse 55% 45% at 75% 65%,
            rgba(99, 102, 241, 0.07) 0%, transparent 52%);
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.hero-content { max-width: 540px; }

/* badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--accent-dim);
    border: 1px solid rgba(139, 92, 246, 0.28);
    color: var(--accent-bright);
    font-size: 0.8125rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    margin-bottom: 28px;
    letter-spacing: -0.005em;
}

.badge-pulse {
    width: 7px;
    height: 7px;
    background-color: var(--accent-bright);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse-dot 2.2s ease-in-out infinite;
}

/* headline */
.hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.75rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
    color: var(--text-primary);
    margin-bottom: 22px;
}

.text-accent { color: var(--accent-bright); }

.hero-sub {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.72;
    margin-bottom: 36px;
    max-width: 480px;
}

/* cta row */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* trust bar */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.trust-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--star);
}

.trust-sep {
    display: block;
    width: 1px;
    height: 14px;
    background-color: var(--border-bright);
    flex-shrink: 0;
}

/* ─── HERO VISUAL — notification stack ───────────────── */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.notif-stack {
    position: relative;
    width: 370px;
    height: 300px;
}

.notif-card {
    position: absolute;
    width: 340px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-lg);
    padding: 16px 18px;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.5);
}

.notif-card--back {
    top: 0;
    right: 0;
    opacity: 0.35;
    transform: rotate(3.5deg) translateY(6px);
}

.notif-card--mid {
    top: 22px;
    right: 14px;
    opacity: 0.6;
    transform: rotate(-2deg);
    animation: float-mid 6s ease-in-out infinite;
    animation-delay: 0.6s;
}

.notif-card--front {
    top: 52px;
    left: 0;
    z-index: 2;
    border-color: rgba(139, 92, 246, 0.35);
    box-shadow:
        0 24px 48px rgba(0, 0, 0, 0.55),
        0 0 0 1px rgba(139, 92, 246, 0.08),
        0 0 40px rgba(139, 92, 246, 0.12);
    animation: float-front 5.5s ease-in-out infinite;
}

.notif-header {
    display: flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 11px;
}

.notif-icon {
    width: 28px;
    height: 28px;
    border-radius: 7px;
    overflow: hidden;
    flex-shrink: 0;
}

.notif-icon-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.notif-source {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-secondary);
    flex: 1;
}

.notif-time {
    font-size: 0.6875rem;
    color: var(--text-muted);
}

.notif-title {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 5px;
    letter-spacing: -0.01em;
}

.notif-body {
    font-size: 0.8125rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin-bottom: 13px;
}

.notif-actions {
    display: flex;
    gap: 8px;
}

.notif-btn {
    font-size: 0.75rem;
    font-weight: 500;
    padding: 5px 12px;
    border-radius: 6px;
    pointer-events: none;
    user-select: none;
}

.notif-btn--primary {
    background: var(--accent);
    color: #fff;
}

.notif-btn:not(.notif-btn--primary) {
    background: rgba(255, 255, 255, 0.07);
    color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────
   STATS BAR
   ───────────────────────────────────────────────────────── */
.stats-bar {
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-surface);
    padding: 52px 0;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding: 0 60px;
    flex: 1;
    max-width: 240px;
}

.stat-value {
    font-size: 2.25rem;
    font-weight: 800;
    letter-spacing: -0.045em;
    color: var(--text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-muted);
    text-align: center;
    line-height: 1.4;
}

.stat-divider {
    width: 1px;
    height: 44px;
    background: var(--border-bright);
    flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────────
   FEATURES
   ───────────────────────────────────────────────────────── */
.features {
    padding: var(--section-py) 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.feature-card {
    background: var(--bg-base);
    padding: 36px 32px;
    transition: background-color 0.2s ease;
}

.feature-card:hover {
    background: var(--bg-surface);
}

.feature-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-dim);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-bright);
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 20px;
    height: 20px;
    stroke-width: 1.75;
}

.feature-title {
    font-size: 1rem;
    font-weight: 650;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.68;
}

/* ─────────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────────── */
.how-it-works {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 72px 1fr 72px 1fr;
    align-items: center;
    gap: 0;
}

.step-card {
    padding: 0 12px;
}

.step-number {
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.step-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-elevated);
    border: 1px solid var(--border-bright);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-bright);
    margin-bottom: 20px;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.step-card:hover .step-icon {
    background: var(--accent-dim);
    border-color: rgba(139, 92, 246, 0.35);
}

.step-icon svg {
    width: 22px;
    height: 22px;
    stroke-width: 1.75;
}

.step-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.025em;
    margin-bottom: 10px;
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.68;
}

.step-connector {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(139, 92, 246, 0.35);
    margin-bottom: 80px;
    flex-shrink: 0;
}

.step-connector svg {
    width: 72px;
    height: 16px;
    overflow: visible;
}

/* ─────────────────────────────────────────────────────────
   PRICING
   ───────────────────────────────────────────────────────── */
.pricing {
    padding: var(--section-py) 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 800px;
    margin-inline: auto;
}

.pricing-card {
    background: var(--bg-surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.pricing-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-3px);
}

.pricing-card--featured {
    border-color: rgba(139, 92, 246, 0.32);
    background: linear-gradient(160deg,
        rgba(139, 92, 246, 0.07) 0%,
        var(--bg-surface) 55%);
}

.pricing-card--featured:hover {
    border-color: rgba(139, 92, 246, 0.5);
}

.pricing-card-badge {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 14px;
    border-radius: var(--radius-pill);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.pricing-card-header {
    margin-bottom: 28px;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--border);
}

.pricing-tier {
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 14px;
}

.pricing-amount {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-bottom: 8px;
}

.pricing-price {
    font-size: 2.875rem;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--text-primary);
    line-height: 1;
}

.pricing-period {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.pricing-tagline {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
}

.pricing-feature {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-feature svg {
    width: 15px;
    height: 15px;
    stroke-width: 2.5;
    color: var(--accent-bright);
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-note {
    text-align: center;
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 14px;
}

/* ─────────────────────────────────────────────────────────
   REVIEWS
   ───────────────────────────────────────────────────────── */
.reviews {
    padding: var(--section-py) 0;
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.reviews-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}

.reviews-stars {
    display: flex;
    align-items: center;
    gap: 4px;
    color: var(--star);
}

.reviews-rating-label {
    font-size: 0.9375rem;
    color: var(--text-secondary);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.review-card {
    background: var(--bg-elevated);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 26px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.review-card:hover {
    border-color: var(--border-bright);
    transform: translateY(-4px);
}

.review-stars {
    display: flex;
    gap: 3px;
    color: var(--star);
}

.review-quote {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.72;
    font-style: italic;
    flex: 1;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.review-avatar {
    width: 36px;
    height: 36px;
    background: var(--accent-dim);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.625rem;
    font-weight: 700;
    color: var(--accent-bright);
    flex-shrink: 0;
    letter-spacing: 0.03em;
}

.review-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.review-store {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.review-duration {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────────────
   FINAL CTA
   ───────────────────────────────────────────────────────── */
.cta-final {
    padding: 128px 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border);
}

.cta-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(ellipse 65% 55% at 50% 50%,
        rgba(139, 92, 246, 0.16) 0%, transparent 62%);
}

.cta-inner {
    text-align: center;
    max-width: 540px;
    margin-inline: auto;
    position: relative;
}

.cta-headline {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.045em;
    color: var(--text-primary);
    line-height: 1.12;
    margin-bottom: 18px;
}

.cta-sub {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.68;
    margin-bottom: 36px;
}

.cta-note {
    font-size: 0.8125rem;
    color: var(--text-muted);
    margin-top: 16px;
}

/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.footer {
    background: var(--bg-surface);
    border-top: 1px solid var(--border);
    padding: 64px 0 40px;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 64px;
    margin-bottom: 56px;
}

.footer-brand { max-width: 300px; }

.footer-brand .nav-logo {
    display: block;
    margin-bottom: 14px;
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--text-muted);
    line-height: 1.65;
}

.footer-nav {
    display: flex;
    gap: 64px;
    flex-shrink: 0;
}

.footer-nav-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav-heading {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    margin-bottom: 4px;
}

.footer-link {
    font-size: 0.9375rem;
    color: var(--text-muted);
    transition: color 0.15s ease;
}
.footer-link:hover { color: var(--text-primary); }

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 28px;
}

.footer-legal {
    font-size: 0.8125rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — 1024px
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 56px;
    }

    .hero-content { max-width: 100%; }

    .hero-sub {
        max-width: 540px;
        margin-inline: auto;
    }

    .hero-actions { justify-content: center; }
    .hero-trust   { justify-content: center; }

    .hero-visual { order: -1; }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .step-connector { display: none; }
    .step-card { padding: 0; }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
    }
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — 768px
   ───────────────────────────────────────────────────────── */
@media (max-width: 768px) {
    :root {
        --section-py: 72px;
    }

    .container { padding-inline: 20px; }

    .nav-links { display: none; }

    .hero {
        padding-top: 120px;
        padding-bottom: 80px;
    }

    .hero-headline {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .notif-stack {
        width: 300px;
        height: 260px;
    }

    .notif-card { width: 290px; }

    .stats-inner {
        flex-wrap: wrap;
        gap: 36px;
    }

    .stat-divider { display: none; }

    .stat-item { padding: 0 20px; }

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

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

    .footer-inner {
        flex-direction: column;
        gap: 40px;
    }

    .footer-brand { max-width: 100%; }

    .footer-nav { gap: 40px; }

    .cta-final { padding: 88px 0; }
}

/* ─────────────────────────────────────────────────────────
   RESPONSIVE — 480px
   ───────────────────────────────────────────────────────── */
@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-actions .btn { text-align: center; }

    .pricing-card { padding: 28px 20px; }

    .notif-stack {
        width: 280px;
        height: 240px;
    }

    .notif-card { width: 268px; }
}
