:root {
    --bg: #edf2f7;
    --bg-soft: #f5f7fb;
    --white: #ffffff;
    --text: #13304d;
    --text-main: #111827;
    --muted: #5f7b96;
    --text-muted: #6b7280;
    --line: rgba(19, 48, 77, .10);
    --line-soft: rgba(19, 48, 77, .06);
    --light-text: #10253d;
    --light-muted: #5f7087;
    --light-line: rgba(11, 24, 41, .09);

    --primary: #18c1a3;
    --primary-dark: #0ea08a;
    --primary-soft: rgba(24, 193, 163, .08);
    --accent: #3b82f6;
    --secondary: #3b82f6;

    --radius-xl: 24px;
    --glass-strong: rgba(255, 255, 255, .88);
    --shadow-strong: 0 26px 60px rgba(15, 23, 42, .35);
    --shadow-soft: 0 18px 40px rgba(10, 22, 38, .08);

    --maxw: 1240px;
    --section-pad: 110px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at 12% 12%, rgba(59, 130, 246, .16), transparent 28%),
        radial-gradient(circle at 82% 20%, rgba(24, 193, 163, .10), transparent 24%),
        linear-gradient(180deg, #eef5fc 0%, #e6f0fb 40%, #f4f9fe 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

img {
    max-width: 100%;
    display: block;
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

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

.section {
    position: relative;
    padding: var(--section-pad) 0;
}

.section-light {
    position: relative;
    color: var(--light-text);
    background: linear-gradient(180deg, #fdfefe 0%, #f7fbff 100%);
}

.section-dark {
    position: relative;
    color: var(--text);
    background: linear-gradient(180deg, #e8f5ff 0%, #dcefff 100%);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .45);
}

.section.has-wave-top {
    padding-top: var(--section-pad);
}

.section.has-wave-bottom {
    padding-bottom: calc(var(--section-pad) + 32px);
}

.section-wave-bottom {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 70px;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.section-wave-bottom svg {
    width: 100%;
    height: 100%;
    display: block;
}

.wave-fill-1 {
    fill: #9fdcff;
}

.wave-fill-2 {
    fill: #73beff;
}

.wave-fill-3 {
    fill: #4f8ff0;
}

.wave-fill-4 {
    fill: #24bea8;
}

.section>.shell {
    position: relative;
    z-index: 2;
}

.section-heading {
    max-width: 860px;
    margin: 0 auto 34px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--accent);
}

.section-heading h1,
.section-heading h2 {
    margin: 0 0 14px;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.03;
    font-weight: 800;
    letter-spacing: -.04em;
}

.section-heading p {
    margin: 0 auto;
    max-width: 760px;
    font-size: 17px;
    line-height: 1.8;
    opacity: .92;
}

.section-light .section-heading p {
    color: var(--light-muted);
}

.section-dark .section-heading p {
    color: #46657f;
}

.top-nav-wrap {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(244, 249, 254, .82);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(19, 48, 77, .08);
}

.top-nav {
    width: min(var(--maxw), calc(100% - 40px));
    margin: 0 auto;
    min-height: 108px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo-area.logo-big {
    display: flex;
    align-items: center;
    flex: 0 0 auto;
}

.logo-area.logo-big img {
    height: 110px;
    width: auto;
    filter: drop-shadow(0 10px 24px rgba(0, 0, 0, .08));
    transition: transform .2s ease;
}

.logo-area.logo-big:hover img {
    transform: translateY(-1px);
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
}

.nav-links a {
    padding: 12px 14px;
    border-radius: 999px;
    color: #4c6782;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .01em;
    transition: .2s ease;
}

.nav-links a:hover,
.nav-links a.is-active {
    color: #10253d;
    background: rgba(255, 255, 255, .75);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.btn {
    border: 0;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .01em;
    padding: 14px 22px;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
    white-space: nowrap;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn-primary {
    color: #ffffff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 14px 34px rgba(59, 130, 246, .18);
}

.btn-primary:hover {
    box-shadow: 0 18px 40px rgba(59, 130, 246, .24);
}

.btn-ghost {
    color: #13304d;
    background: rgba(255, 255, 255, .72);
    border: 1px solid rgba(19, 48, 77, .10);
}

.btn-ghost:hover {
    background: #ffffff;
}

.hero {
  min-height: auto;
  display: grid;
  align-items: start;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: 30px;
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  padding-top: 8px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 22px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(19, 48, 77, .08);
    color: #35516d;
    backdrop-filter: blur(10px);
}

.hero-tag-pill {
    padding: 6px 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.hero h1 {
    margin: 0 0 20px;
    font-size: clamp(30px, 4.8vw, 33px);
    line-height: .98;
    font-weight: 800;
    letter-spacing: .02em;
    max-width: 760px;
}

.hero-sub {
    max-width: 700px;
    margin: 0 0 28px;
    color: var(--muted);
    font-size: 17px;
    line-height: 1.9;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.hero-stat-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .78);
    border: 1px solid rgba(19, 48, 77, .08);
    color: #35516d;
    font-size: 13px;
    font-weight: 600;
}

.hero-visual {
    position: relative;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-card.hero-mock {
    position: relative;
    width: 100%;
    z-index: 2;
    border-radius: 36px;
    padding: 10px;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, .72), rgba(255, 255, 255, .52)),
        rgba(255, 255, 255, .40);
    border: 1px solid rgba(19, 48, 77, .08);
    box-shadow: 0 24px 60px rgba(59, 130, 246, .14);
    backdrop-filter: blur(14px);
}

.mock-btn {
    width: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: zoom-in;
}

.hero-mock-img {
    border-radius: 22px;
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .12);
    transition: transform .25s ease, box-shadow .25s ease;
    background: #fff;
}

.mock-btn:hover .hero-mock-img {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 28px 72px rgba(0, 0, 0, .16);
}

.visual-row,
.three-cols,
.grid-2,
.quick-links {
    display: grid;
    gap: 22px;
}

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

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

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

.quick-links {
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.visual-card,
.section-intro-card,
.practice-card,
.ai-highlight,
.slider-card,
.plan-card,
.cta-card,
.card,
.quick-link {
    opacity: 0;
    transform: translateY(36px) scale(.98);
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, .61, .36, 1),
        box-shadow .25s ease;
}

.visual-card.is-visible,
.section-intro-card.is-visible,
.practice-card.is-visible,
.ai-highlight.is-visible,
.slider-card.is-visible,
.plan-card.is-visible,
.cta-card.is-visible,
.card.is-visible,
.quick-link.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.visual-card {
    border-radius: 30px;
    overflow: hidden;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(19, 48, 77, .08);
    box-shadow: var(--shadow-soft);
}

.visual-card img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
    background: #dfeaf8;
}

.visual-card.clean img {
    aspect-ratio: auto;
    object-fit: contain;
    background: linear-gradient(180deg, #f8fbff 0%, #eef6ff 100%);
    padding: 24px;
}

.section-intro-card {
    max-width: 1000px;
    margin: 0 auto;
    padding: 38px 42px;
    border-radius: 34px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--light-line);
    box-shadow: var(--shadow-soft);
}

.section-intro-card p {
    margin: 0;
    font-size: 18px;
    line-height: 1.95;
    color: var(--light-muted);
}

.card,
.quick-link {
    position: relative;
    border-radius: 30px;
    padding: 30px 28px;
    overflow: hidden;
    transition:
        opacity .7s ease,
        transform .7s cubic-bezier(.22, .61, .36, 1),
        box-shadow .25s ease,
        border-color .25s ease;
    will-change: opacity, transform;
}

.card:hover,
.quick-link:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 24px 54px rgba(59, 130, 246, .16);
}

.section-dark .card,
.section-dark .quick-link {
    background: rgba(255, 255, 255, .88);
    border: 1px solid rgba(255, 255, 255, .42);
    box-shadow: 0 18px 44px rgba(59, 130, 246, .12);
    backdrop-filter: blur(10px);
}

.section-light .card,
.section-light .quick-link {
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--light-line);
    box-shadow: var(--shadow-soft);
}

.card h3,
.quick-link h3 {
    margin: 0 0 10px;
    font-size: 24px;
    line-height: 1.15;
    letter-spacing: -.03em;
    font-weight: 700;
}

.card p,
.quick-link p {
    margin: 0;
    font-size: 16px;
    line-height: 1.8;
}

.section-dark .card p,
.section-dark .quick-link p {
    color: var(--muted);
}

.section-light .card p,
.section-light .quick-link p {
    color: var(--light-muted);
}

.card-label {
    display: inline-block;
    margin-bottom: 16px;
    font-size: 12px;
    letter-spacing: .2em;
    text-transform: uppercase;
    font-weight: 800;
    color: var(--accent);
}

.card-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    letter-spacing: .08em;
    text-transform: uppercase;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    margin-bottom: 16px;
}

.card-contrast {
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, .16), transparent 24%),
        radial-gradient(circle at bottom left, rgba(24, 193, 163, .12), transparent 26%),
        linear-gradient(180deg, #dff1ee 0%, #e9f4ff 100%) !important;
    border: 1px solid rgba(59, 130, 246, .16) !important;
    box-shadow: 0 20px 50px rgba(59, 130, 246, .14) !important;
}

.card-contrast h3 {
    color: #10253d;
}

.card-contrast p {
    color: #4f6a84 !important;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-top: 8px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-top: 9px;
    flex: 0 0 auto;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 0 0 6px rgba(24, 193, 163, .08);
}

.feature-item strong {
    display: block;
    margin-bottom: 4px;
    font-size: 16px;
}

.practice-grid {
    display: grid;
    grid-template-columns: repeat(12, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.practice-card {
    grid-column: span 4;
    background: rgba(255, 255, 255, .96);
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 38px rgba(15, 23, 42, .08);
    transition: transform .22s ease, box-shadow .22s ease;
    display: flex;
    flex-direction: column;
}

.practice-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 56px rgba(15, 23, 42, .14);
}

.practice-card.wide {
    grid-column: span 8;
}

.practice-card.tall .practice-shot {
    aspect-ratio: 4 / 5;
}

.practice-card.medium .practice-shot {
    aspect-ratio: 4 / 3;
}

.practice-card.wide .practice-shot {
    aspect-ratio: 16 / 9;
}

.practice-shot-btn {
    display: block;
    width: 100%;
    border: 0;
    background: transparent;
    padding: 0;
    cursor: zoom-in;
}

.practice-shot {
    width: 100%;
    object-fit: cover;
    display: block;
    background: #dfe8f5;
}

.practice-caption {
    padding: 16px 18px 18px;
}

.practice-caption h3 {
    margin: 0 0 8px;
    font-size: 18px;
    color: #0f172a;
    line-height: 1.25;
    font-weight: 700;
}

.practice-caption p {
    margin: 0;
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

.ai-grid {
    align-items: center;
    gap: 20px;
}

.ai-highlight {
    margin-top: 0;
    background: linear-gradient(135deg, rgba(24, 193, 163, .10), rgba(59, 130, 246, .10));
    border: 1px solid rgba(59, 130, 246, .18);
    border-radius: 24px;
    padding: 24px 22px;
    box-shadow: 0 18px 40px rgba(59, 130, 246, .08);
}

.ai-highlight-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    margin-bottom: 10px;
}

.ai-highlight h3 {
    margin: 0 0 10px;
    font-size: 24px;
    letter-spacing: -.02em;
    color: #0f172a;
    font-weight: 700;
}

.ai-highlight p {
    margin: 0;
    font-size: 15px;
    line-height: 1.85;
    color: #475569;
}

#ai {
    padding-top: var(--section-pad);
}

#ai .section-heading {
    margin-bottom: 20px;
}

#ai .grid-2,
#ai .ai-grid {
    gap: 20px;
}

.pricing-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
    gap: 22px;
    align-items: start;
}

.slider-card,
.plan-card {
    border-radius: 34px;
    overflow: hidden;
    position: relative;
}

.slider-card {
    background: rgba(255, 255, 255, .97);
    border: 1px solid var(--light-line);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

.slider-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.slider-head h3 {
    margin: 0;
    font-size: 28px;
    line-height: 1.1;
    letter-spacing: -.03em;
    color: var(--light-text);
    font-weight: 700;
}

.meter {
    border-radius: 28px;
    border: 1px solid rgba(11, 24, 41, .08);
    background: linear-gradient(180deg, #f8fbff, #eef4fa);
    padding: 22px;
}

.meter-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.meter-row .kpi {
    font-weight: 800;
    font-size: 18px;
    letter-spacing: -.02em;
    color: var(--light-text);
}

.meter-row .muted {
    color: var(--light-muted);
    font-size: 13px;
    font-weight: 600;
}

.range-premium {
    width: 100%;
    margin: 22px 0 6px;
    appearance: none;
    height: 12px;
    border-radius: 999px;
    outline: none;
    background: linear-gradient(90deg,
            var(--primary) 0%,
            var(--accent) 0%,
            rgba(11, 24, 41, .16) 0%,
            rgba(11, 24, 41, .16) 100%);
    box-shadow: inset 0 1px 2px rgba(255, 255, 255, .55), inset 0 -1px 2px rgba(15, 23, 42, .08);
}

.range-premium::-webkit-slider-runnable-track {
    height: 12px;
    border-radius: 999px;
    background: transparent;
}

.range-premium::-webkit-slider-thumb {
    appearance: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    border: 6px solid var(--primary);
    box-shadow: 0 0 0 8px rgba(24, 193, 163, .12), 0 10px 24px rgba(0, 0, 0, .14);
    cursor: pointer;
    margin-top: -11px;
}

.range-premium::-moz-range-track {
    height: 12px;
    border-radius: 999px;
    background: transparent;
}

.range-premium::-moz-range-thumb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 6px solid var(--primary);
    background: #fff;
    cursor: pointer;
}

.plan-card {
    padding: 28px;
    background:
        radial-gradient(circle at top right, rgba(59, 130, 246, .20), transparent 24%),
        radial-gradient(circle at bottom left, rgba(24, 193, 163, .16), transparent 28%),
        linear-gradient(180deg, #dff0ff 0%, #cfe4fa 100%);
    border: 1px solid rgba(59, 130, 246, .14);
    box-shadow: 0 22px 54px rgba(59, 130, 246, .14);
    color: #10253d;
}

.plan-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.08;
    letter-spacing: -.03em;
    font-weight: 700;
}

.plan-price {
    margin: 22px 0 26px;
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 12px;
    line-height: 1;
}

.slot-price {
    display: inline-flex;
    gap: 2px;
    align-items: flex-end;
}

.slot-price.bump {
    animation: priceBump .32s ease;
}

@keyframes priceBump {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.slot-digit {
    position: relative;
    width: .72em;
    height: 1.05em;
    overflow: hidden;
    display: inline-block;
    font-size: clamp(54px, 6vw, 86px);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: .88;
    color: #10253d;
}

.slot-digit.static {
    width: auto;
    min-width: .35em;
}

.slot-reel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    will-change: transform;
}

.slot-reel span,
.slot-digit.static {
    display: block;
    height: 1.05em;
    line-height: 1.05em;
    text-align: center;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.plan-price-value {
    font-size: clamp(54px, 6vw, 86px);
    font-weight: 900;
    letter-spacing: -.06em;
    line-height: .88;
    display: inline-flex;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.plan-price-currency {
    font-size: 32px;
    font-weight: 800;
    color: #10253d;
    line-height: 1;
    margin-bottom: 10px;
}

.plan-price-note {
    font-size: 15px;
    font-weight: 700;
    color: #5f7087;
    line-height: 1.2;
    margin-bottom: 12px;
}

.kpi-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 186px;
    padding: 12px 16px;
    margin-top: 8px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid rgba(11, 24, 41, .10);
    box-shadow: 0 10px 22px rgba(10, 22, 38, .06);
}

.kpi-input {
    width: 86px;
    border: none;
    background: transparent;
    font: inherit;
    font-weight: 800;
    font-size: 22px;
    letter-spacing: -.02em;
    color: var(--light-text);
    padding: 0;
    margin: 0;
    outline: none;
    appearance: textfield;
    -moz-appearance: textfield;
}

.kpi-input::-webkit-outer-spin-button,
.kpi-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.kpi-input-hint {
    font-size: 12px;
    font-weight: 800;
    color: var(--light-muted);
    white-space: nowrap;
    padding-left: 12px;
    border-left: 1px solid rgba(11, 24, 41, .08);
    text-transform: uppercase;
    letter-spacing: .08em;
}

.cta-card {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 0;
    overflow: hidden;
    border-radius: 36px;
    border: 1px solid rgba(255, 255, 255, .10);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    box-shadow: 0 26px 60px rgba(15, 23, 42, 0.22);
}

.cta-left {
    padding: 42px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100%;
}

.cta-title {
    margin: 0 0 18px;
    font-size: 34px;
    line-height: 1.05;
    letter-spacing: -.04em;
    text-align: left;
    color: #ffffff;
    font-weight: 800;
}

.cta-left p {
    color: #eaf7ff;
    margin: 0 0 22px;
    font-size: 16px;
    line-height: 1.8;
}

.cta-illustration {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.cta-illustration img {
    width: 420px;
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0 20px 45px rgba(0, 0, 0, .20));
}

.cta-form {
    padding: 42px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    font-size: 14px;
}

.field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field label {
    font-size: 12px;
    color: #eaf7ff;
    text-transform: uppercase;
    letter-spacing: .12em;
    font-weight: 800;
}

.field input,
.field select,
.field textarea {
    border-radius: 18px;
    border: none;
    background: rgba(255, 255, 255, .94);
    color: #10253d;
    padding: 16px 18px;
    font-size: 15px;
    font-family: inherit;
    outline: none;
}

.field textarea {
    min-height: 140px;
    resize: vertical;
    border-radius: 20px;
}

.btn-cta {
    border: 0;
    border-radius: 999px;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    cursor: pointer;
    color: #e5e7eb;
    background: #0f172a;
    box-shadow: 0 16px 40px rgba(15, 23, 42, .30);
    transition: .2s ease;
}

.btn-cta:hover {
    background: #020617;
    transform: translateY(-1px);
}

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, .52);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
    padding: 20px;
}

.lightbox.open {
    display: flex;
}

.lightbox-card {
    width: min(1180px, 96vw);
    border-radius: 26px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(148, 163, 184, .35);
    box-shadow: 0 36px 100px rgba(0, 0, 0, .24);
    transform: translateY(8px) scale(.98);
    opacity: 0;
    transition: transform 180ms ease, opacity 180ms ease;
}

.lightbox.open .lightbox-card {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.lightbox-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    font-size: 12px;
    color: #5f7087;
    background: #f7fafc;
    border-bottom: 1px solid rgba(148, 163, 184, .25);
}

.lightbox-close {
    border: 1px solid rgba(148, 163, 184, .4);
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    cursor: pointer;
    font-weight: 700;
}

.lightbox-body img {
    width: 100%;
    height: auto;
    display: block;
    background: #fff;
}

footer {
    padding: 26px 0 32px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: #e8f1fb;
}

.footer-inner {
    width: min(var(--maxw), calc(100% - 40px));
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    justify-content: space-between;
    color: #6b7f96;
    font-size: 13px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-links a:hover {
    color: #13304d;
}

section[id] {
    scroll-margin-top: 110px;
}

.nav-home {
    width: 44px;
    height: 44px;
    padding: 0 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    color: #4c6782;
    background: rgba(255, 255, 255, .58);
    border: 1px solid rgba(19, 48, 77, .08);
    transition: .2s ease;
}

.nav-home svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.nav-home:hover,
.nav-home.is-active {
    color: #10253d;
    background: rgba(255, 255, 255, .88);
    box-shadow: 0 8px 20px rgba(59, 130, 246, .10);
}

@media (max-width: 1100px) {

    .hero-grid,
    .pricing-wrap,
    .cta-card,
    .three-cols,
    .grid-2,
    .visual-row,
    .quick-links {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: auto;
    }

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

    .cta-left {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

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

    .practice-card,
    .practice-card.wide {
        grid-column: auto;
    }
}

@media (max-width: 900px) {
    :root {
        --section-pad: 84px;
    }

    .top-nav {
        min-height: 80px;
        gap: 12px;
    }

    .logo-area.logo-big img {
        height: 90px;
    }

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: clamp(36px, 11vw, 56px);
    }

    .section-heading h1,
    .section-heading h2 {
        font-size: clamp(30px, 8vw, 42px);
    }

    .slider-head {
        flex-direction: column;
    }

    .section.has-wave-top {
        padding-top: var(--section-pad);
    }

    .section.has-wave-bottom {
        padding-bottom: calc(var(--section-pad) + 28px);
    }

    .section-wave-bottom {
        height: 120px;
    }
}

@media (max-width: 640px) {

    .shell,
    .top-nav,
    .footer-inner {
        width: calc(100% - 24px);
    }

    .top-nav {
        min-height: 74px;
    }

    .logo-area.logo-big img {
        height: 46px;
    }

    .nav-cta .btn {
        padding: 11px 14px;
        font-size: 13px;
    }

    .hero-tag {
        font-size: 12px;
        flex-wrap: wrap;
    }

    .hero-sub,
    .section-heading p,
    .section-intro-card p,
    .card p,
    .quick-link p {
        font-size: 15px;
    }

    .card,
    .quick-link,
    .slider-card,
    .plan-card,
    .cta-left,
    .cta-form {
        padding: 22px;
    }

    .section-intro-card {
        padding: 26px 22px;
    }

    .kpi-box {
        min-width: 160px;
    }

    .kpi-input {
        width: 70px;
        font-size: 20px;
    }

    .section.has-wave-top {
        padding-top: var(--section-pad);
    }

    .section.has-wave-bottom {
        padding-bottom: calc(var(--section-pad) + 22px);
    }

    .section-wave-bottom {
        height: 98px;
    }

    section[id] {
        scroll-margin-top: 88px;
    }
}

@media (max-width: 480px) {
    .nav-cta .btn-primary {
        display: none;
    }

    .btn,
    .btn-cta {
        width: 100%;
    }

    .hero-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .hero-stat-pill {
        width: 100%;
    }

    .meter-row {
        flex-direction: column;
        align-items: flex-start;
    }

    .plan-price {
        gap: 8px;
    }

    .section-heading {
        margin-bottom: 26px;
    }

    #ai .section-heading {
        margin-bottom: 18px;
    }
}
.ai-visual-card.hero-card.hero-mock{
  position: relative;
  z-index: 2;
  overflow: visible;
}

.ai-visual-card .mock-btn{
  display: block;
  width: 100%;
  cursor: zoom-in;
  position: relative;
  z-index: 3;
}

.ai-visual-card .hero-mock-img{
  display: block;
  width: 100%;
  height: auto;
}

/* ===== CLASSIVO V4 OVERRIDES ===== */
.section.section-light,
.section-light{
    position: relative;
    color: var(--light-text);
    background: #f3f8fe;
    margin-top: -2px;
}

.section.section-blue,
.section-blue{
    position: relative;
    overflow: hidden;
    color: #fff;
    background:
      radial-gradient(circle at 15% 20%, rgba(255,255,255,.14), transparent 24%),
      radial-gradient(circle at 85% 15%, rgba(255,255,255,.10), transparent 22%),
      linear-gradient(60deg, #543ab7 0%, #2f7fd3 52%, #00acc1 100%);
}

.section.section-blue > .shell,
.section-blue > .shell{
    position: relative;
    z-index: 2;
}

.section.section-blue .section-heading,
.section.section-blue .section-heading h1,
.section.section-blue .section-heading h2,
.section.section-blue .section-heading h3,
.section.section-blue .section-heading p,
.section.section-blue .section-heading .eyebrow,
.section.section-blue h1,
.section.section-blue h2,
.section.section-blue h3,
.section.section-blue p,
.section.section-blue li,
.section-blue .section-heading,
.section-blue .section-heading h1,
.section-blue .section-heading h2,
.section-blue .section-heading h3,
.section-blue .section-heading p,
.section-blue .section-heading .eyebrow,
.section-blue h1,
.section-blue h2,
.section-blue h3,
.section-blue p,
.section-blue li{
    color: #fff;
}

.section.section-blue .eyebrow,
.section-blue .eyebrow{
    color: rgba(255,255,255,.82);
    letter-spacing: .14em;
}

.section.section-blue .hero-sub,
.section.section-blue .hero-tag > span:last-child,
.section-blue .hero-sub,
.section-blue .hero-tag > span:last-child{
    color: rgba(255,255,255,.9);
}

.section.section-blue .hero-stat-pill,
.section-blue .hero-stat-pill{
    background: rgba(255,255,255,.12);
    border: 1px solid rgba(255,255,255,.20);
    color: #fff;
}

.section.section-blue .hero-card,
.section.section-blue .card,
.section.section-blue .quick-link,
.section.section-blue .ai-highlight,
.section.section-blue .section-intro-card,
.section.section-blue .visual-card,
.section-blue .hero-card,
.section-blue .card,
.section-blue .quick-link,
.section-blue .ai-highlight,
.section-blue .section-intro-card,
.section-blue .visual-card{
    background: rgba(255,255,255,.10);
    border: 1px solid rgba(255,255,255,.18);
    box-shadow: 0 20px 50px rgba(3,16,44,.18);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.section.section-blue .visual-card.clean img,
.section-blue .visual-card.clean img{
    background: linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(243,248,254,.96) 100%);
}

.section.section-blue .section-intro-card p,
.section.section-blue .card p,
.section.section-blue .quick-link p,
.section.section-blue .ai-highlight p,
.section-blue .section-intro-card p,
.section-blue .card p,
.section-blue .quick-link p,
.section-blue .ai-highlight p{
    color: rgba(255,255,255,.92);
}

.section.section-blue .card-badge,
.section.section-blue .ai-highlight-badge,
.section-blue .card-badge,
.section-blue .ai-highlight-badge{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,.14);
    color: #fff;
    border: 1px solid rgba(255,255,255,.18);
}

.section.section-blue .btn-ghost,
.section-blue .btn-ghost{
    border-color: rgba(255,255,255,.24);
    color: #fff;
    background: rgba(255,255,255,.08);
}

.section.section-blue .btn-ghost:hover,
.section-blue .btn-ghost:hover{
    background: rgba(255,255,255,.16);
    color: #fff;
}

.section.section-blue .card-contrast,
.section-blue .card-contrast{
    background: linear-gradient(180deg, rgba(255,255,255,.82) 0%, rgba(248,251,255,.76) 100%) !important;
    border: 1px solid rgba(255,255,255,.30) !important;
    box-shadow: 0 20px 50px rgba(3,16,44,.14) !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.section.section-blue .card-contrast h3,
.section-blue .card-contrast h3{ color: #15385f !important; }
.section.section-blue .card-contrast p,
.section-blue .card-contrast p{ color: #32577d !important; }
.section.section-blue .card-contrast .card-badge,
.section-blue .card-contrast .card-badge{
    background: rgba(21,56,95,.10) !important;
    color: #15385f !important;
    border: 1px solid rgba(21,56,95,.14) !important;
}

/* unified wave system */
.section-wave-bottom,
.wave-fill-1,
.wave-fill-2,
.wave-fill-3,
.wave-fill-4{
    display: none !important;
}

.blue-wave{
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.blue-wave--top{
    top: -1px;
    transform: rotate(180deg);
}

.blue-wave--bottom{
    bottom: -1px;
}

.blue-wave svg{
    display: block;
    width: 100%;
    height: 120px;
}

.blue-wave .layer-1{ fill: rgba(255,255,255,.18); }
.blue-wave .layer-2{ fill: rgba(255,255,255,.12); }
.blue-wave .layer-3{ fill: rgba(255,255,255,.07); }
.blue-wave .layer-4{ fill: #f3f8fe; }

.subpage-hero-illustration{
    max-width: 720px;
    margin: 34px auto 0;
}
.subpage-hero-illustration img{
    width: 100%;
    height: auto;
    display: block;
}
.subpage-cta-row{
    display:flex;
    justify-content:center;
    gap:12px;
    flex-wrap:wrap;
    margin-top:26px;
}

/* header alignment fix */
.top-nav-wrap{
    display:flex;
    align-items:center;
}
.top-nav{
    min-height: 90px;
    display:flex;
    align-items:center !important;
    justify-content:space-between;
    gap:24px;
}
.logo-area.logo-big,
.nav-links,
.nav-cta{
    display:flex;
    align-items:center !important;
}
.nav-links{
    flex:1;
    justify-content:center;
    gap:6px;
}
.nav-links a,
.nav-home,
.nav-cta .btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
}

/* hero refinements */
.hero{
    min-height:auto;
    display:grid;
    align-items:start;
    padding-top:52px;
    padding-bottom:80px;
}
.hero-grid{ align-items:start; }
.hero-copy{ padding-top:0; }
.hero .section-heading{
    margin:0 0 18px;
    text-align:left;
    max-width:820px;
}
.hero .section-heading h1,
.hero .section-heading h2{
    margin:0;
    font-size: clamp(38px, 5.2vw, 58px);
    line-height:1.02;
    font-weight:800;
    letter-spacing:-.03em;
    max-width:820px;
}
.hero-badge-line{
    display:flex;
    justify-content:center;
    margin:20px 0 26px;
}
.hero-badge-line .card-badge{
    margin:0;
    min-height:50px;
    padding:10px 18px;
    text-align:center;
}

@media (max-width: 900px){
    .top-nav{ min-height:80px; }
}
@media (max-width: 768px){
    .blue-wave svg{ height:76px; }
    .hero{ padding-top:20px; padding-bottom:42px; }
    .hero .section-heading h1,
    .hero .section-heading h2{ font-size: clamp(34px, 10vw, 46px); }
}
@media (max-width: 640px){
    .top-nav{ min-height:74px; }
}
/* ===== MOBILE MENU FIX ===== */

.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(19,48,77,.10);
  background: rgba(255,255,255,.78);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  flex: 0 0 auto;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after{
  display: block;
  position: relative;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #13304d;
  content: "";
  transition: .22s ease;
}

.nav-toggle span::before{
  position: absolute;
  left: 0;
  top: -6px;
}

.nav-toggle span::after{
  position: absolute;
  left: 0;
  top: 6px;
}

.top-nav{
  position: relative;
}

@media (max-width: 900px){
  .top-nav{
    min-height: 80px;
    gap: 10px;
  }

  .nav-links{
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 8px;
    padding: 14px;
    border-radius: 22px;
    background: rgba(255,255,255,.96);
    border: 1px solid rgba(19,48,77,.08);
    box-shadow: 0 20px 44px rgba(15,23,42,.12);
    z-index: 120;
  }

  .nav-links.is-open{
    display: flex;
  }

  .nav-links a,
  .nav-home{
    width: 100%;
    justify-content: flex-start;
    border-radius: 14px;
  }

  .nav-home{
    height: 46px;
    padding: 0 14px !important;
  }

  .nav-cta{
    margin-left: auto;
    gap: 8px;
  }

  .nav-cta .btn{
    display: none;
  }

  .nav-toggle{
    display: inline-flex;
  }
}

@media (max-width: 640px){
  .top-nav{
    min-height: 74px;
  }

  .logo-area.logo-big img{
    height: 46px;
  }

  .nav-links{
    top: calc(100% + 8px);
    padding: 12px;
  }
}
/* ===== MOBILE HEADER / HAMBURGER ===== */

.nav-toggle{
    display: none;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(19, 48, 77, .10);
    background: rgba(255,255,255,.78);
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex: 0 0 auto;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after{
    display: block;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: #13304d;
    position: relative;
    transition: .22s ease;
    content: "";
}

.nav-toggle span::before{
    position: absolute;
    left: 0;
    top: -6px;
}

.nav-toggle span::after{
    position: absolute;
    left: 0;
    top: 6px;
}

.nav-toggle.is-open span{
    background: transparent;
}

.nav-toggle.is-open span::before{
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle.is-open span::after{
    top: 0;
    transform: rotate(-45deg);
}

.nav-mobile-cta{
    display: none;
}

@media (max-width: 900px){
    .top-nav{
        min-height: 80px;
        gap: 12px;
        position: relative;
    }

    .nav-toggle{
        display: inline-flex;
    }

    .nav-cta .btn{
        display: none;
    }

    .nav-links{
        display: none;
        position: absolute;
        top: calc(100% + 10px);
        left: 0;
        right: 0;
        z-index: 150;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 8px;
        padding: 14px;
        border-radius: 22px;
        background: rgba(255,255,255,.97);
        border: 1px solid rgba(19, 48, 77, .08);
        box-shadow: 0 20px 44px rgba(15, 23, 42, .12);
    }

    .nav-links.is-open{
        display: flex;
    }

    .nav-links a{
        width: 100%;
        padding: 13px 14px;
        border-radius: 14px;
        justify-content: flex-start;
    }

    .nav-mobile-cta{
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        margin-top: 6px;
        padding-top: 10px;
        border-top: 1px solid rgba(19, 48, 77, .08);
    }

    .nav-mobile-cta .btn{
        width: 100%;
    }
}

@media (max-width: 640px){
    .top-nav{
        min-height: 74px;
    }

    .nav-links{
        top: calc(100% + 8px);
        padding: 12px;
    }
}
@media (max-width: 900px){
  .hero{
    padding-bottom: 110px;
  }

  .hero-visual{
    min-height: auto;
    margin-bottom: 18px;
  }

  .hero-card.hero-mock{
    margin-bottom: 0;
    position: relative;
    z-index: 3;
  }

  .blue-wave--bottom{
    z-index: 1;
  }

  .hero .shell,
  .hero-grid,
  .hero-copy,
  .hero-visual{
    position: relative;
    z-index: 2;
  }
}

@media (max-width: 640px){
  .hero{
    padding-bottom: 1500px;
  }

  .hero-visual{
    margin-bottom: 8px;
  }

  .hero-card.hero-mock{
    border-radius: 28px;
    padding: 8px;
  }

  .hero-mock-img{
    border-radius: 18px;
  }

  .blue-wave svg{
    height: 92px;
  }
}
@media (max-width: 900px){
  .section.section-blue.hero{
    overflow: visible !important;
  }

  .section.section-blue.hero .blue-wave--bottom{
    bottom: -1px;
    z-index: 0 !important;
    pointer-events: none;
  }

  .section.section-blue.hero > .shell{
    position: relative;
    z-index: 3 !important;
  }

  .section.section-blue.hero .hero-visual{
    position: relative;
    z-index: 4;
    margin-bottom: 28px;
  }

  .section.section-blue.hero .hero-card.hero-mock{
    position: relative;
    z-index: 5;
  }
}
.footer-socials{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  align-items:center;
  justify-content:center;
  margin-top:10px;
}

.footer-socials a{
  display:inline-flex;
  align-items:center;
  gap:8px;
  text-decoration:none;
  color:inherit;
  font-weight:600;
  opacity:.95;
  transition:opacity .2s ease, transform .2s ease;
}

.footer-socials a:hover{
  opacity:1;
  transform:translateY(-1px);
}

.footer-socials svg{
  flex:0 0 auto;
}
@media (max-width: 640px){
  .section.section-blue.hero .hero-visual{
    margin-bottom: 34px;
  }

  .section.section-blue.hero .blue-wave svg{
    height: 72px;
  }
}