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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    background: #fff;
    color: #111827;
    -webkit-font-smoothing: antialiased
}

/* ── ANIMATIONS ── */
@keyframes blob {

    0%,
    100% {
        transform: translate(0, 0) scale(1)
    }

    33% {
        transform: translate(24px, -20px) scale(1.04)
    }

    66% {
        transform: translate(-18px, 16px) scale(.96)
    }
}

@keyframes floaty {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-12px)
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeIn {
    from {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes ping {
    0% {
        transform: scale(1);
        opacity: .8
    }

    75%,
    100% {
        transform: scale(2);
        opacity: 0
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center
    }

    100% {
        background-position: 200% center
    }
}

@keyframes barGrow {
    from {
        transform: scaleY(0)
    }

    to {
        transform: scaleY(1)
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg)
    }
}

/* ── NAV ── */
nav {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 100;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    transition: background .3s, box-shadow .3s
}

nav.scrolled {
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 #e5e7eb
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1.125rem;
    color: #111827
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.25rem
}

.nav-links a {
    font-size: .875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    transition: color .2s
}

.nav-links a:hover {
    color: #4f46e5
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .2s;
    border: none;
    text-decoration: none;
    line-height: 1
}

.btn-primary {
    background: #4f46e5;
    color: #fff
}

.btn-primary:hover {
    background: #4338ca;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(79, 70, 229, .35)
}

.btn-outline {
    background: transparent;
    color: #374151;
    border: 1.5px solid #d1d5db
}

.btn-outline:hover {
    border-color: #4f46e5;
    color: #4f46e5
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem
}

.btn-white {
    background: #fff;
    color: #4f46e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .1)
}

.btn-white:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, .15)
}

/* ── HERO ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 80px 5% 60px
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #faf5ff 0%, #f0f9ff 50%, #f8fafc 100%)
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(70px);
    pointer-events: none
}

.blob-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, .15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
    animation: blob 9s ease-in-out infinite
}

.blob-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(167, 139, 250, .12) 0%, transparent 70%);
    bottom: -100px;
    left: -100px;
    animation: blob 11s ease-in-out infinite reverse
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, .08) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: blob 7s ease-in-out infinite 2s
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    width: 100%
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ede9fe;
    color: #6d28d9;
    padding: 6px 14px 6px 8px;
    border-radius: 9999px;
    font-size: .75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    animation: fadeUp .6s ease both
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    position: relative
}

.badge-dot::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: #7c3aed;
    animation: ping 1.5s ease infinite
}

.hero h1 {
    font-size: clamp(2.5rem, 4.5vw, 3.75rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.03em;
    color: #111827;
    margin-bottom: 1.5rem;
    animation: fadeUp .6s ease .1s both
}

.gradient-text {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 50%, #06b6d4 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 4s linear infinite
}

.hero p {
    font-size: 1.125rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
    animation: fadeUp .6s ease .2s both
}

.hero-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
    animation: fadeUp .6s ease .3s both
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 2rem;
    animation: fadeUp .6s ease .4s both
}

.proof-avatars {
    display: flex
}

.proof-av {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #fff;
    margin-left: -8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 700;
    color: #fff
}

.proof-av:first-child {
    margin-left: 0
}

.proof-text {
    font-size: .8125rem;
    color: #6b7280;
    font-weight: 500
}

.proof-text strong {
    color: #111827
}

/* ── DASHBOARD MOCKUP ── */
.mockup-wrap {
    position: relative;
    animation: fadeUp .8s ease .2s both
}

.mockup-card {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .1), 0 4px 16px rgba(0, 0, 0, .06);
    padding: 22px;
    max-width: 480px
}

.mkp-top {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid #f3f4f6
}

.mkp-dots {
    display: flex;
    gap: 6px
}

.mkp-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.mkp-title {
    font-size: .75rem;
    font-weight: 600;
    color: #9ca3af;
    margin-left: auto
}

.mkp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 16px
}

.mkp-stat {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-radius: 12px;
    padding: 12px;
    text-align: center
}

.mkp-stat-n {
    font-size: 1.5rem;
    font-weight: 900;
    color: #4f46e5;
    line-height: 1
}

.mkp-stat-l {
    font-size: .6rem;
    color: #6b7280;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: .05em
}

.mkp-progress {
    margin-bottom: 16px
}

.mkp-progress-label {
    display: flex;
    justify-content: space-between;
    font-size: .7rem;
    color: #6b7280;
    font-weight: 600;
    margin-bottom: 6px
}

.mkp-bar {
    height: 6px;
    background: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden
}

.mkp-bar-fill {
    height: 100%;
    border-radius: 9999px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    animation: shimmer 2.5s linear infinite;
    background-size: 200% auto
}

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

.mkp-row {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 11px;
    background: #f9fafb;
    border-radius: 10px;
    transition: background .2s
}

.mkp-row:hover {
    background: #f0f9ff
}

.mkp-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    font-weight: 800;
    color: #fff;
    flex-shrink: 0
}

.mkp-info {
    flex: 1;
    min-width: 0
}

.mkp-name {
    font-size: .75rem;
    font-weight: 700;
    color: #111827;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.mkp-sub {
    font-size: .65rem;
    color: #9ca3af
}

.mkp-badge {
    font-size: .6rem;
    padding: 3px 8px;
    border-radius: 9999px;
    font-weight: 700;
    white-space: nowrap
}

.b-demo {
    background: #dcfce7;
    color: #16a34a
}

.b-wa {
    background: #d1fae5;
    color: #059669
}

.b-email {
    background: #dbeafe;
    color: #2563eb
}

.b-wait {
    background: #fef3c7;
    color: #d97706
}

/* floating notification cards */
.float-card {
    position: absolute;
    background: #fff;
    border-radius: 14px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .12);
    padding: 12px 14px;
    z-index: 2;
    min-width: 180px
}

.fc-1 {
    top: -28px;
    right: -20px;
    animation: floaty 3.5s ease-in-out infinite
}

.fc-2 {
    bottom: 20px;
    left: -28px;
    animation: floaty 4s ease-in-out infinite .6s
}

.fc-3 {
    top: 42%;
    right: -32px;
    animation: floaty 3s ease-in-out infinite 1.2s
}

.fc-row {
    display: flex;
    align-items: center;
    gap: 9px
}

.fc-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.fc-text-title {
    font-size: .7rem;
    font-weight: 700;
    color: #111827
}

.fc-text-sub {
    font-size: .65rem;
    color: #9ca3af;
    margin-top: 1px
}

/* ── SECTIONS ── */
.section {
    padding: 100px 5%
}

.section-alt {
    background: #f9fafb
}

.section-inner {
    max-width: 1160px;
    margin: 0 auto
}

.section-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #4f46e5;
    display: block;
    margin-bottom: 1rem
}

.section-title {
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 900;
    color: #111827;
    line-height: 1.12;
    letter-spacing: -.025em;
    margin-bottom: 1.25rem
}

.section-sub {
    font-size: 1.0625rem;
    color: #6b7280;
    line-height: 1.7;
    max-width: 560px
}

/* ── STATS BAR ── */
.stats-bar {
    background: #fff;
    padding: 0 5% 72px;
    position: relative;
    z-index: 1
}

.stats-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem
}

.stat-card {
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    transition: all .3s ease;
    position: relative;
    overflow: hidden
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(79, 70, 229, .04), transparent);
    opacity: 0;
    transition: opacity .3s
}

.stat-card:hover {
    border-color: #a5b4fc;
    box-shadow: 0 8px 32px rgba(79, 70, 229, .12);
    transform: translateY(-4px)
}

.stat-card:hover::before {
    opacity: 1
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.stat-n {
    font-size: 2.75rem;
    font-weight: 900;
    color: #111827;
    line-height: 1;
    letter-spacing: -.04em
}

.stat-l {
    font-size: .8125rem;
    color: #6b7280;
    font-weight: 500;
    line-height: 1.4
}

.stat-trend {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: .7rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 9999px;
    margin-top: auto
}

.stat-trend.up {
    background: #dcfce7;
    color: #16a34a
}

.stat-trend.blue {
    background: #dbeafe;
    color: #2563eb
}

.stat-divider {
    display: none
}

/* ── FEATURE BLOCKS ── */
.feat-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-bottom: 80px
}

.feat-block:last-child {
    margin-bottom: 0
}

.feat-block.reverse {
    direction: rtl
}

.feat-block.reverse>* {
    direction: ltr
}

.feat-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem
}

.feat-title {
    font-size: 1.75rem;
    font-weight: 800;
    color: #111827;
    letter-spacing: -.02em;
    margin-bottom: 1rem;
    line-height: 1.2
}

.feat-sub {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 1.75rem
}

.feat-list {
    display: flex;
    flex-direction: column;
    gap: .75rem
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .9375rem;
    color: #374151
}

.feat-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ede9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

.feat-visual {
    border-radius: 20px;
    border: 1px solid #e5e7eb;
    box-shadow: 0 16px 48px rgba(0, 0, 0, .08);
    overflow: hidden;
    background: #fff
}

/* feat visual internals */
.fv-header {
    padding: 14px 18px;
    border-bottom: 1px solid #f3f4f6;
    display: flex;
    align-items: center;
    gap: 8px
}

.fv-dots {
    display: flex;
    gap: 5px
}

.fv-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%
}

.fv-body {
    padding: 18px
}

/* map visual */
.map-visual {
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    height: 200px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px
}

.map-grid {
    position: absolute;
    inset: 0;
    opacity: .15;
    background-image: linear-gradient(#0ea5e9 1px, transparent 1px), linear-gradient(90deg, #0ea5e9 1px, transparent 1px);
    background-size: 32px 32px
}

.map-pin {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    animation: floaty 3s ease-in-out infinite
}

.map-pin-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #4f46e5;
    box-shadow: 0 0 0 4px rgba(79, 70, 229, .2)
}

.map-pin-line {
    width: 2px;
    height: 14px;
    background: #4f46e5;
    opacity: .5
}

.map-count {
    font-size: 2rem;
    font-weight: 900;
    color: #0ea5e9;
    position: relative;
    z-index: 1
}

.map-count-sub {
    font-size: .75rem;
    color: #0369a1;
    font-weight: 600;
    position: relative;
    z-index: 1
}

.map-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.map-chip {
    font-size: .75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 9999px;
    background: #f0f9ff;
    color: #0369a1;
    border: 1px solid #bae6fd
}

/* gpt analysis visual */
.gpt-card {
    background: #f9fafb;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px
}

.gpt-msg {
    font-size: .8125rem;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 12px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    border-left: 3px solid #4f46e5
}

.gpt-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.gpt-tag {
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px
}

.gpt-bar {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px
}

.gpt-bar-label {
    font-size: .7rem;
    font-weight: 600;
    color: #6b7280;
    width: 80px;
    flex-shrink: 0
}

.gpt-bar-track {
    flex: 1;
    height: 6px;
    background: #f3f4f6;
    border-radius: 9999px;
    overflow: hidden
}

.gpt-bar-fill {
    height: 100%;
    border-radius: 9999px;
    transform-origin: left;
    animation: barGrow 1s ease .5s both
}

/* pipeline visual */
.pipeline-vis {
    display: flex;
    align-items: center;
    gap: 0;
    margin-bottom: 16px
}

.pipe-stage {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
    font-size: .7rem;
    font-weight: 700;
    color: #374151;
    position: relative
}

.pipe-stage:first-child {
    border-radius: 12px 0 0 12px
}

.pipe-stage:last-child {
    border-radius: 0 12px 12px 0
}

.pipe-stage.active {
    background: linear-gradient(135deg, #f5f3ff, #ede9fe);
    border-color: #a5b4fc;
    color: #4f46e5
}

.pipe-count {
    font-size: 1.25rem;
    font-weight: 900;
    display: block;
    margin-bottom: 2px
}

/* ── SMALL FEATURES GRID ── */
.feat-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem
}

.feat-small {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    padding: 1.5rem;
    transition: all .3s ease
}

.feat-small:hover {
    border-color: #a5b4fc;
    box-shadow: 0 8px 32px rgba(79, 70, 229, .1);
    transform: translateY(-3px)
}

.feat-small-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem
}

.feat-small-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .5rem
}

.feat-small-sub {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.6
}

/* ── STEPS ── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 28px;
    left: calc(16.66% + 28px);
    right: calc(16.66% + 28px);
    height: 2px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed)
}

.step {
    text-align: center
}

.step-num {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: #fff;
    font-size: 1.25rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 24px rgba(79, 70, 229, .3)
}

.step-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: .75rem
}

.step-sub {
    font-size: .9375rem;
    color: #6b7280;
    line-height: 1.6
}

/* ── SECTORS ── */
.sector-tags {
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    margin-top: 2.5rem
}

.sector-tag {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: #fff;
    border: 1.5px solid #e5e7eb;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 600;
    color: #374151;
    transition: all .25s;
    cursor: default
}

.sector-tag:hover {
    border-color: #4f46e5;
    color: #4f46e5;
    background: #f5f3ff;
    transform: translateY(-2px)
}

.sector-tag svg {
    opacity: .6
}

/* ── PRICING ── */
.pricing-toggle {
    display: inline-flex;
    background: #f3f4f6;
    border-radius: 9999px;
    padding: 4px;
    margin-bottom: 3rem
}

.ptoggle-btn {
    padding: 8px 20px;
    border-radius: 9999px;
    font-size: .875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all .2s;
    background: transparent;
    color: #6b7280
}

.ptoggle-btn.active {
    background: #fff;
    color: #111827;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .1)
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: stretch
}

.pricing-card {
    background: #fff;
    border-radius: 24px;
    border: 1.5px solid #e5e7eb;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all .3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .05)
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .12)
}

.pricing-card.popular {
    background: linear-gradient(160deg, #4f46e5, #6d28d9);
    border-color: #4f46e5;
    box-shadow: 0 16px 48px rgba(79, 70, 229, .4);
    transform: scale(1.04)
}

.pricing-card.popular:hover {
    transform: scale(1.04) translateY(-6px)
}

.pricing-card.popular .pricing-plan-label,
.pricing-card.popular .pricing-desc,
.pricing-card.popular .pricing-feat {
    color: rgba(255, 255, 255, .85) !important
}

.pricing-card.popular .pricing-price {
    color: #fff !important
}

.pricing-card.popular .pricing-save {
    color: #86efac !important
}

.pricing-card.popular .pricing-desc {
    border-bottom-color: rgba(255, 255, 255, .2) !important
}

.pricing-card.popular .pf-check {
    background: rgba(255, 255, 255, .2)
}

.pricing-card.popular .pf-check svg {
    stroke: #fff
}

.pricing-plan-label {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: .5rem
}

.pricing-price {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    line-height: 1;
    margin-bottom: .25rem
}

.pricing-price .currency {
    font-size: 1.125rem;
    font-weight: 700;
    color: #9ca3af;
    margin-top: .5rem
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 900;
    color: #111827;
    letter-spacing: -.04em;
    line-height: 1
}

.pricing-price .per {
    font-size: .875rem;
    font-weight: 500;
    color: #9ca3af;
    align-self: flex-end;
    margin-bottom: .25rem
}

.pricing-save {
    font-size: .75rem;
    color: #16a34a;
    font-weight: 600;
    height: 1.2rem;
    margin-bottom: 1rem
}

.pricing-desc {
    font-size: .875rem;
    color: #6b7280;
    line-height: 1.6;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 1.25rem
}

.pricing-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: .75rem;
    margin-bottom: 2rem
}

.pricing-feat {
    display: flex;
    align-items: flex-start;
    gap: .625rem;
    font-size: .875rem;
    color: #374151
}

.pf-check {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #ede9fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px
}

/* ── FAQ ── */
.faq-list {
    max-width: 720px;
    margin: 0 auto
}

.faq-item {
    border-bottom: 1px solid #f3f4f6
}

.faq-q {
    width: 100%;
    text-align: left;
    padding: 1.25rem 0;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111827
}

.faq-q:hover {
    color: #4f46e5
}

.faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .3s, background .2s
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: #ede9fe
}

.faq-a {
    overflow: hidden;
    max-height: 0;
    transition: max-height .4s ease, padding .4s ease
}

.faq-item.open .faq-a {
    max-height: 400px;
    padding-bottom: 1.25rem
}

.faq-a p {
    font-size: .9375rem;
    color: #6b7280;
    line-height: 1.7
}

/* ── CTA BAND ── */
.cta-band {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    padding: 80px 5%;
    text-align: center;
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
}

.cta-band h2 {
    font-size: clamp(1.875rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.025em;
    margin-bottom: 1rem;
    position: relative
}

.cta-band p {
    font-size: 1.125rem;
    color: #c7d2fe;
    margin-bottom: 2.5rem;
    position: relative
}

/* ── CONTACT ── */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 4rem;
    align-items: start
}

.contact-info-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 14px;
    text-decoration: none;
    transition: all .25s;
    margin-bottom: 12px
}

.contact-info-card:hover {
    border-color: #a5b4fc;
    box-shadow: 0 4px 16px rgba(79, 70, 229, .1);
    transform: translateX(4px)
}

.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0
}

.ci-label {
    font-size: .75rem;
    font-weight: 600;
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: .05em
}

.ci-val {
    font-size: .9375rem;
    font-weight: 600;
    color: #111827
}

.form-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 24px;
    padding: 2rem
}

.form-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem
}

.f-group {
    margin-bottom: 1rem
}

.f-label {
    display: block;
    font-size: .8125rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .5rem
}

.f-input {
    width: 100%;
    padding: 11px 14px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    font-family: 'Inter', sans-serif;
    font-size: .9375rem;
    color: #111827;
    transition: border-color .2s, box-shadow .2s;
    outline: none;
    background: #fff
}

.f-input:focus {
    border-color: #4f46e5;
    box-shadow: 0 0 0 3px rgba(79, 70, 229, .1)
}

.f-input::placeholder {
    color: #9ca3af
}

.f-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem
}

.f-btns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .75rem;
    margin-top: 1.5rem
}

/* ── FOOTER ── */
footer {
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    padding: 2.5rem 5%
}

.footer-inner {
    max-width: 1160px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem
}

.footer-right {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1rem;
    font-size: .8125rem;
    color: #9ca3af
}

.footer-right a {
    color: #9ca3af;
    text-decoration: none;
    transition: color .2s
}

.footer-right a:hover {
    color: #4f46e5
}

.footer-badge {
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 9999px;
    background: #f5f3ff;
    color: #6d28d9;
    border: 1px solid #ddd6fe
}

/* ── MOBILE BAR ── */
.mob-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: rgba(255, 255, 255, .97);
    backdrop-filter: blur(20px);
    border-top: 1px solid #e5e7eb;
    padding: 8px 0 max(8px, env(safe-area-inset-bottom))
}

.mob-bar-items {
    display: flex;
    justify-content: space-around
}

.mob-bar-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    font-size: .6rem;
    font-weight: 600;
    color: #9ca3af;
    text-decoration: none;
    padding: 4px 10px;
    border-radius: 10px;
    transition: color .2s
}

.mob-bar-item.active,
.mob-bar-item:hover {
    color: #4f46e5
}

/* ── REVEAL ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease
}

.reveal.in {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .1s
}

.delay-2 {
    transition-delay: .2s
}

.delay-3 {
    transition-delay: .3s
}

.delay-4 {
    transition-delay: .4s
}

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem
    }

    .hero-mockup-col {
        display: none
    }

    .feat-block,
    .feat-block.reverse {
        grid-template-columns: 1fr;
        direction: ltr
    }

    .contact-grid {
        grid-template-columns: 1fr
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr)
    }

    .feat-grid {
        grid-template-columns: 1fr
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto
    }
}

@media(max-width:767px) {

    #mainNav .nav-links,
    #mainNav .btn {
        display: none
    }

    .mob-bar {
        display: block
    }

    body {
        padding-bottom: 74px
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .steps-grid::before {
        display: none
    }

    .f-row {
        grid-template-columns: 1fr
    }

    .f-btns {
        grid-template-columns: 1fr
    }
}