/* iharskres.com Soft-UI Landing */
:root {
    --purple: #6b46c1;
    --purple-deep: #553c9a;
    --purple-bright: #7c5cfc;
    --purple-soft: #f3eeff;
    --purple-mid: #ddd6fe;
    --pink: #c084fc;
    --grad-text: linear-gradient(90deg, #7c5cfc 0%, #d946ef 100%);
    --text: #1e1b2e;
    --text-muted: #6b7280;
    --text-light: #9ca3af;
    --bg: #ffffff;
    --bg-soft: #faf9fc;
    --border: #eeeaf6;
    --radius: 20px;
    --radius-sm: 14px;
    --radius-pill: 999px;
    --shadow: 0 10px 40px rgba(107, 70, 193, 0.08);
    --shadow-lg: 0 20px 60px rgba(107, 70, 193, 0.14);
    --font: 'Nunito', system-ui, sans-serif;
    --header-h: 78px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: var(--radius-pill);
    font-family: var(--font);
    font-weight: 800;
    font-size: 15px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: .22s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--purple);
    color: #fff;
    box-shadow: 0 10px 28px rgba(107, 70, 193, .35);
}
.btn-primary:hover { background: var(--purple-deep); transform: translateY(-2px); color: #fff; }
.btn-outline {
    background: #fff;
    color: var(--purple);
    border-color: var(--purple-mid);
}
.btn-outline:hover { border-color: var(--purple); background: var(--purple-soft); }
.btn-white {
    background: #fff;
    color: var(--purple);
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
}
.btn-white:hover { transform: translateY(-2px); }
.btn-ghost-white {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,.55);
}
.btn-ghost-white:hover { background: rgba(255,255,255,.12); color: #fff; }
.btn-sm { padding: 10px 18px; font-size: 14px; }

/* Header */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(255,255,255,.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: .25s ease;
}
.site-header.scrolled {
    border-bottom-color: var(--border);
    box-shadow: 0 4px 24px rgba(107,70,193,.06);
}
.header-inner {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.brand img {
    height: 48px;
    width: auto;
}
.nav {
    display: flex;
    align-items: center;
    gap: 28px;
}
.nav a {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-muted);
    transition: .2s;
}
.nav a:hover, .nav a.active { color: var(--purple); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
    display: none;
    width: 44px; height: 44px;
    border: none; background: var(--purple-soft);
    border-radius: 12px; color: var(--purple);
    font-size: 18px; cursor: pointer;
    z-index: 1102;
    position: relative;
}

/* Hero */
.hero {
    padding: calc(var(--header-h) + 48px) 0 72px;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 85% 20%, rgba(192,132,252,.12), transparent 40%),
        radial-gradient(circle at 10% 80%, rgba(124,92,252,.08), transparent 35%),
        #fff;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 48px;
    align-items: center;
}
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--purple-soft);
    color: var(--purple);
    border-radius: var(--radius-pill);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    margin-bottom: 18px;
}
.hero h1 {
    font-size: clamp(34px, 4.5vw, 52px);
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    color: var(--text);
}
.hero h1 .grad {
    background: var(--grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.hero-lead {
    font-size: 17px;
    color: var(--text-muted);
    font-weight: 600;
    max-width: 520px;
    margin-bottom: 28px;
}
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 32px; }
.hero-perks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 20px;
}
.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
}
.perk-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    background: var(--purple-soft);
    color: var(--purple);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

/* Hero visual */
.hero-visual {
    position: relative;
    min-height: 460px;
}
.dash-frame {
    position: relative;
    background: #fff;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    overflow: hidden;
    transform: rotate(-2deg);
    width: 92%;
}
.dash-topbar {
    height: 36px;
    background: #f8f7fc;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0 14px;
}
.dash-topbar i {
    width: 8px; height: 8px; border-radius: 50%;
    display: inline-block;
}
.dash-topbar i:nth-child(1){background:#ff5a6b}
.dash-topbar i:nth-child(2){background:#f5a623}
.dash-topbar i:nth-child(3){background:#34c759}
.dash-body { display: flex; min-height: 280px; }
.dash-side {
    width: 88px;
    background: linear-gradient(180deg, #7c5cfc, #6b46c1);
    padding: 16px 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.dash-side span {
    height: 10px;
    background: rgba(255,255,255,.25);
    border-radius: 6px;
}
.dash-main { flex: 1; padding: 16px; background: #faf9fc; }
.dash-kpis { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 12px; }
.kpi {
    background: #fff;
    border-radius: 12px;
    padding: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,.04);
}
.kpi b { display: block; font-size: 16px; color: var(--purple); }
.kpi small { font-size: 10px; color: var(--text-light); font-weight: 700; }
.dash-chart {
    height: 90px;
    background: linear-gradient(180deg, rgba(124,92,252,.15), transparent);
    border-radius: 12px;
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}
.dash-chart::after {
    content: '';
    position: absolute;
    left: 10%; right: 10%; bottom: 20%;
    height: 3px;
    background: var(--purple);
    border-radius: 4px;
    box-shadow: 0 -20px 0 -1px var(--pink), 0 -40px 0 -1px rgba(124,92,252,.4);
}
.kids-strip {
    height: 72px;
    margin-top: 12px;
    border-radius: 14px;
    background:
        linear-gradient(135deg, rgba(107,70,193,.35), rgba(217,70,239,.25)),
        url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 200 80"><circle cx="40" cy="40" r="18" fill="%23ffd6a5"/><circle cx="100" cy="38" r="18" fill="%23fdba74"/><circle cx="160" cy="42" r="18" fill="%23fcd34d"/></svg>') center/cover;
}

.phone-frame {
    position: absolute;
    right: 0; bottom: 20px;
    width: 168px;
    background: #1e1b2e;
    border-radius: 28px;
    padding: 10px;
    box-shadow: var(--shadow-lg);
    transform: rotate(6deg);
    z-index: 2;
}
.phone-screen {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    min-height: 280px;
}
.phone-notch {
    width: 60px; height: 8px; background: #1e1b2e;
    border-radius: 0 0 8px 8px; margin: 0 auto 8px;
}
.phone-head {
    padding: 10px 12px 6px;
    font-size: 12px; font-weight: 900; color: var(--text);
}
.phone-card {
    margin: 8px 10px;
    padding: 10px;
    border-radius: 12px;
    background: var(--purple-soft);
    font-size: 10px;
    font-weight: 700;
    color: var(--purple);
}
.phone-card.alt { background: #ffe4ef; color: #db2777; }
.phone-card.green { background: #e8f9ee; color: #15803d; }

.float-deco {
    position: absolute;
    font-size: 28px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.1));
    animation: floaty 4s ease-in-out infinite;
    z-index: 3;
}
.float-deco.star { top: 10px; right: 40px; color: #fbbf24; animation-delay: .2s; }
.float-deco.plane { top: 80px; left: -10px; color: #60a5fa; animation-delay: .8s; }
.float-deco.rainbow { bottom: 120px; left: 20px; font-size: 34px; animation-delay: 1.2s; }
.float-deco.pencil { bottom: 40px; right: 150px; color: #f472b6; animation-delay: .5s; }
@keyframes floaty {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* Sections common */
.section { padding: 88px 0; }
.section.alt { background: var(--bg-soft); }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-tag {
    display: inline-block;
    color: var(--purple);
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .14em;
    margin-bottom: 12px;
}
.section-head h2 {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 900;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}
.section-head p {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 16px;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.feature-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 28px 24px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: .25s ease;
}
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.feature-icon {
    width: 52px; height: 52px;
    border-radius: 16px;
    background: var(--purple-soft);
    color: var(--purple);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.feature-card h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 8px;
}
.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    line-height: 1.55;
}
.center-cta { text-align: center; margin-top: 36px; }

/* Pricing */
.pricing-section {
    background: linear-gradient(180deg, #faf8ff 0%, #fff 40%, #f5f0ff 100%);
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
    max-width: 1080px;
    margin: 0 auto;
}
.price-card {
    position: relative;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 28px;
    padding: 32px 28px 28px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
}
.price-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.price-card.featured {
    border: 2px solid var(--purple);
    box-shadow: 0 20px 50px rgba(107, 70, 193, .18);
    background: linear-gradient(180deg, #faf7ff 0%, #fff 45%);
    transform: scale(1.03);
    z-index: 1;
}
.price-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.price-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--purple), var(--purple-bright));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .04em;
    padding: 6px 16px;
    border-radius: 999px;
    white-space: nowrap;
}
.price-name {
    font-size: 22px;
    font-weight: 900;
    color: var(--text);
    margin-bottom: 6px;
}
.price-desc {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.45;
    min-height: 40px;
}
.price-amount {
    display: flex;
    align-items: flex-end;
    gap: 2px;
    margin-bottom: 6px;
}
.price-amount .currency {
    font-size: 22px;
    font-weight: 800;
    color: var(--purple);
    margin-bottom: 8px;
}
.price-amount .num {
    font-size: 52px;
    font-weight: 900;
    line-height: 1;
    color: var(--purple);
    letter-spacing: -1px;
}
.price-amount .per {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 10px;
    margin-left: 4px;
}
.price-yearly {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 22px;
}
.price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    flex: 1;
}
.price-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    padding: 8px 0;
    border-bottom: 1px solid rgba(107, 70, 193, .06);
}
.price-features li:last-child { border-bottom: none; }
.price-features li i {
    color: var(--purple);
    width: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}
.price-features li.muted {
    color: var(--text-muted);
    font-weight: 600;
}
.price-features li.muted i { color: #c4b5d4; }
.price-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
}
.pricing-note {
    max-width: 720px;
    margin: 36px auto 0;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--purple-soft);
    border: 1px solid var(--purple-mid);
    border-radius: 20px;
    padding: 20px 24px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
    line-height: 1.55;
}
.pricing-note i {
    color: var(--purple);
    font-size: 22px;
    margin-top: 2px;
}
.pricing-note a {
    color: var(--purple);
    font-weight: 800;
    text-decoration: underline;
    text-underline-offset: 2px;
}

/* Stats bar */
.stats-bar {
    background: linear-gradient(135deg, #6b46c1, #7c5cfc 50%, #9333ea);
    padding: 36px 0;
    color: #fff;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    text-align: center;
}
.stat-item i { font-size: 22px; margin-bottom: 8px; opacity: .9; display: block; }
.stat-item strong { display: block; font-size: 22px; font-weight: 900; }
.stat-item span { font-size: 13px; font-weight: 700; opacity: .85; }

/* Testimonials */
.testimonial-wrap {
    max-width: 860px;
    margin: 0 auto;
    position: relative;
}
.testimonial-card {
    background: #fff;
    border-radius: 28px;
    padding: 40px 48px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 28px;
    align-items: center;
}
.quote-mark {
    font-size: 72px;
    line-height: 1;
    color: var(--purple);
    font-weight: 900;
    opacity: .85;
}
.testimonial-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 22px;
    line-height: 1.55;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.author-avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c084fc, #7c5cfc);
    color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-weight: 900;
    font-size: 18px;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.author-meta strong { display: block; font-size: 15px; }
.author-meta span { font-size: 13px; color: var(--text-muted); font-weight: 600; }
.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
}
.testimonial-nav button {
    width: 44px; height: 44px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--purple);
    cursor: pointer;
    transition: .2s;
}
.testimonial-nav button:hover { background: var(--purple); color: #fff; }

/* Pre-footer CTA */
.cta-band {
    padding: 40px 0 88px;
}
.cta-box {
    background: linear-gradient(135deg, #6b46c1, #7c5cfc 40%, #9333ea);
    border-radius: 32px;
    padding: 48px 40px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    align-items: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}
.cta-illu {
    font-size: 64px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,.15));
}
.cta-box h3 {
    font-size: clamp(22px, 2.5vw, 28px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 18px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; }

/* Demo section */
.demo-section { padding-bottom: 96px; }
.demo-card {
    max-width: 720px;
    margin: 0 auto;
    background: #fff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.demo-card h3 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 8px;
    text-align: center;
}
.demo-card > .sub {
    text-align: center;
    color: var(--text-muted);
    font-weight: 600;
    margin-bottom: 28px;
    font-size: 14px;
}
.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.form-group { margin-bottom: 4px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
    margin-bottom: 6px;
}
.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid var(--border);
    border-radius: 14px;
    font-family: var(--font);
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
    background: var(--bg-soft);
    transition: .2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--purple);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(107,70,193,.12);
}
.phone-row { display: flex; gap: 10px; }
.phone-row input { flex: 1; }
.alert {
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    display: none;
}
.alert.show { display: flex; align-items: center; gap: 8px; }
.alert.ok { background: #e8f9ee; color: #15803d; }
.alert.err { background: #ffe8eb; color: #c62839; }
.form-submit { width: 100%; margin-top: 12px; }

/* Footer */
.site-footer {
    background: #0f0d1a;
    color: #c4bfd4;
    padding: 64px 0 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.2fr;
    gap: 32px;
    padding-bottom: 48px;
}
.footer-brand img { height: 48px; margin-bottom: 14px; }
.footer-brand p {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 260px;
}
.socials { display: flex; gap: 10px; }
.socials a {
    width: 38px; height: 38px;
    border-radius: 12px;
    background: rgba(255,255,255,.06);
    display: flex; align-items: center; justify-content: center;
    color: #fff;
    transition: .2s;
}
.socials a:hover { background: var(--purple); }
.footer-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    margin-bottom: 16px;
}
.footer-col a, .footer-col li {
    display: block;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #a39eb8;
    transition: .2s;
}
.footer-col a:hover { color: #fff; }
.footer-col .contact-item {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 12px;
    font-size: 13px;
    font-weight: 600;
}
.footer-col .contact-item i { color: var(--purple-bright); margin-top: 3px; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 20px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    font-weight: 600;
}
.footer-bottom a { color: #a39eb8; margin-left: 16px; }
.footer-bottom a:hover { color: #fff; }
.to-top {
    position: fixed;
    right: 24px; bottom: 24px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--purple);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(107,70,193,.4);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 50;
}
.to-top.show { display: flex; }

/* Mobile drawer (sağdan) */
.nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 13, 26, .45);
    z-index: 1090;
    opacity: 0;
    visibility: hidden;
    transition: opacity .35s ease, visibility .35s ease;
    backdrop-filter: blur(2px);
}
.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}
.mobile-nav {
    display: flex;
    position: fixed;
    top: 0;
    right: 0;
    width: min(320px, 86vw);
    height: 100vh;
    height: 100dvh;
    background: #fff;
    z-index: 1100;
    padding: 96px 28px 32px;
    flex-direction: column;
    gap: 4px;
    box-shadow: -20px 0 60px rgba(107, 70, 193, .18);
    transform: translateX(105%);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1);
    overflow-y: auto;
}
.mobile-nav.open {
    transform: translateX(0);
}
.mobile-nav .drawer-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .12em;
    color: var(--text-light);
    margin-bottom: 12px;
}
.mobile-nav a:not(.btn) {
    font-size: 17px;
    font-weight: 800;
    padding: 14px 4px;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    transform: translateX(24px);
    opacity: 0;
    transition: transform .35s ease, opacity .35s ease, color .2s;
}
.mobile-nav.open a:not(.btn) {
    transform: translateX(0);
    opacity: 1;
}
.mobile-nav.open a:nth-child(2) { transition-delay: .05s; }
.mobile-nav.open a:nth-child(3) { transition-delay: .1s; }
.mobile-nav.open a:nth-child(4) { transition-delay: .15s; }
.mobile-nav.open a:nth-child(5) { transition-delay: .2s; }
.mobile-nav.open a:nth-child(6) { transition-delay: .25s; }
.mobile-nav a:not(.btn):hover { color: var(--purple); }
.mobile-nav .btn {
    margin-top: 20px;
    width: 100%;
    opacity: 0;
    transform: translateY(12px);
    transition: .4s ease .28s;
}
.mobile-nav.open .btn {
    opacity: 1;
    transform: translateY(0);
}
body.menu-open { overflow: hidden; }

/* Entrance + scroll reveal */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s cubic-bezier(.22,1,.36,1), transform .7s cubic-bezier(.22,1,.36,1);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-left.visible {
    opacity: 1;
    transform: none;
}
.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .75s cubic-bezier(.22,1,.36,1), transform .75s cubic-bezier(.22,1,.36,1);
}
.reveal-right.visible {
    opacity: 1;
    transform: none;
}
.reveal-scale {
    opacity: 0;
    transform: scale(.94);
    transition: opacity .7s ease, transform .7s cubic-bezier(.22,1,.36,1);
}
.reveal-scale.visible {
    opacity: 1;
    transform: none;
}
.reveal-delay-1 { transition-delay: .08s; }
.reveal-delay-2 { transition-delay: .16s; }
.reveal-delay-3 { transition-delay: .24s; }
.reveal-delay-4 { transition-delay: .32s; }
.reveal-delay-5 { transition-delay: .4s; }

.hero-enter .eyebrow,
.hero-enter h1,
.hero-enter .hero-lead,
.hero-enter .hero-ctas,
.hero-enter .hero-perks,
.hero-enter .hero-visual {
    opacity: 0;
    transform: translateY(28px);
    animation: heroIn .8s cubic-bezier(.22,1,.36,1) forwards;
}
.hero-enter h1 { animation-delay: .12s; }
.hero-enter .hero-lead { animation-delay: .22s; }
.hero-enter .hero-ctas { animation-delay: .32s; }
.hero-enter .hero-perks { animation-delay: .42s; }
.hero-enter .hero-visual {
    transform: translateX(36px) scale(.96);
    animation: heroVisualIn .9s cubic-bezier(.22,1,.36,1) .2s forwards;
}
@keyframes heroIn {
    to { opacity: 1; transform: none; }
}
@keyframes heroVisualIn {
    to { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal, .reveal-left, .reveal-right, .reveal-scale,
    .hero-enter .eyebrow, .hero-enter h1, .hero-enter .hero-lead,
    .hero-enter .hero-ctas, .hero-enter .hero-perks, .hero-enter .hero-visual {
        opacity: 1 !important;
        transform: none !important;
        animation: none !important;
        transition: none !important;
    }
}

@media (max-width: 1024px) {
    .nav { display: none; }
    .menu-toggle { display: inline-flex; align-items: center; justify-content: center; }
    .hero-grid { grid-template-columns: 1fr; }
    .hero-visual { min-height: 380px; max-width: 480px; margin: 0 auto; }
    .cards-grid { grid-template-columns: 1fr 1fr; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
    .price-card.featured { transform: none; }
    .price-card.featured:hover { transform: translateY(-6px); }
    .stats-row { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .cta-box { grid-template-columns: 1fr; text-align: center; }
    .cta-illu { display: none; }
    .cta-actions { justify-content: center; }
}
@media (max-width: 720px) {
    .header-actions .btn-outline { display: none; }
    .cards-grid { grid-template-columns: 1fr; }
    .hero-perks { grid-template-columns: 1fr; }
    .stats-row { grid-template-columns: 1fr 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .testimonial-card { grid-template-columns: 1fr; padding: 28px; }
    .quote-mark { font-size: 48px; }
    .footer-grid { grid-template-columns: 1fr; }
    .phone-frame { width: 140px; }
    .price-amount .num { font-size: 44px; }
    .pricing-note { flex-direction: column; gap: 10px; }
}
