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

:root {
    --bg: #050c1a;
    --bg2: #081223;
    --surface: #0d1d35;
    --surface2: #112240;
    --border: rgba(0, 229, 195, 0.12);
    --teal: #00E5C3;
    --teal-dim: rgba(0, 229, 195, 0.12);
    --teal-glow: rgba(0, 229, 195, 0.25);
    --white: #f0f6ff;
    --muted: #6b8aad;
    --muted2: #3d5a80;
    --display: 'Bricolage Grotesque', sans-serif;
    --body: 'Figtree', sans-serif;

    /* Fluid typography scale */
    --text-xs: clamp(0.75rem, 0.7rem + 0.2vw, 0.82rem);
    --text-sm: clamp(0.85rem, 0.8rem + 0.25vw, 0.95rem);
    --text-base: clamp(1rem, 0.95rem + 0.3vw, 1.1rem);
    --text-lg: clamp(1.15rem, 1rem + 0.5vw, 1.35rem);

    --h1: clamp(2.4rem, 4vw, 3.6rem);
    --h2: clamp(2rem, 3vw, 2.8rem);
    --h3: clamp(1.5rem, 2vw, 2rem);
    --h4: clamp(1.2rem, 1.5vw, 1.4rem);
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--body);
    font-weight: 300;
    line-height: 1.65;
    overflow-x: hidden;
    cursor: none;
}

/* ─── CUSTOM CURSOR ─── */
#cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    background: var(--teal);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform .12s, opacity .2s, width .25s, height .25s;
    mix-blend-mode: screen;
}

#cursor-ring {
    position: fixed;
    width: 40px;
    height: 40px;
    border: 1.5px solid rgba(0, 229, 195, .45);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .22s cubic-bezier(.25, .46, .45, .94), width .3s, height .3s, opacity .3s, border-color .3s;
}

body.cursor-hover #cursor {
    transform: translate(-50%, -50%) scale(0);
    opacity: 0
}

body.cursor-hover #cursor-ring {
    width: 56px;
    height: 56px;
    border-color: rgba(0, 229, 195, .35)
}

body.cursor-click #cursor {
    transform: translate(-50%, -50%) scale(2);
    opacity: .6
}

/* ─── PARTICLE CANVAS ─── */
#particle-canvas {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: .6;
}

/* ─── FLOATING ORBS ─── */
.orb {
    position: fixed;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(90px);
    animation: orbFloat linear infinite;
    z-index: 0;
}

.orb1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 229, 195, .065), transparent 70%);
    top: -150px;
    left: -150px;
    animation-duration: 28s;
}

.orb2 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(0, 180, 216, .055), transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-duration: 22s;
    animation-delay: -11s;
}

.orb3 {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(0, 229, 195, .04), transparent 70%);
    top: 35%;
    left: 55%;
    animation-duration: 32s;
    animation-delay: -18s;
}

@keyframes orbFloat {
    0% {
        transform: translate(0, 0) scale(1)
    }

    20% {
        transform: translate(70px, -50px) scale(1.05)
    }

    40% {
        transform: translate(140px, 20px) scale(.95)
    }

    60% {
        transform: translate(80px, 90px) scale(1.08)
    }

    80% {
        transform: translate(-20px, 50px) scale(.97)
    }

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

/* ─── SHIMMER KEYFRAME ─── */
@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

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

.shimmer-text {
    background: linear-gradient(90deg, var(--white) 0%, var(--teal) 38%, #00d4ff 50%, var(--teal) 62%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3.5s linear infinite;
}

/* ─── TYPEWRITER ─── */
.typewriter-cursor {
    display: inline-block;
    width: 3px;
    height: .8em;
    background: var(--teal);
    margin-left: 3px;
    vertical-align: middle;
    animation: cursorBlink .75s step-end infinite;
    border-radius: 1px;
}

@keyframes cursorBlink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: 0
    }
}

/* ─── HERO GRID ANIMATION ─── */
.hero::after {
    animation: gridScroll 18s linear infinite
}

@keyframes gridScroll {
    from {
        background-position: 0 0
    }

    to {
        background-position: 72px 72px
    }
}

/* ─── HERO GLOW PULSE ─── */
.hero::before {
    animation: glowPulse 5s ease-in-out infinite alternate
}

@keyframes glowPulse {
    from {
        opacity: .5;
        transform: translate(-50%, -54%) scale(1)
    }

    to {
        opacity: 1;
        transform: translate(-50%, -54%) scale(1.25)
    }
}

/* ─── SCAN LINE ─── */
.hero-scanline {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.hero-scanline::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, rgba(0, 229, 195, .12) 30%, rgba(0, 229, 195, .18) 50%, rgba(0, 229, 195, .12) 70%, transparent 100%);
    animation: scanDown 7s linear infinite;
    top: -2px;
}

@keyframes scanDown {
    from {
        top: -2px
    }

    to {
        top: 100%
    }
}

/* ─── FLOATING HERO BADGE ─── */
@keyframes floatBadge {

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

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

/* ─── BORDER TRAVEL GLOW ─── */
.feature-card {
    position: relative
}

@keyframes borderTravel {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

.feature-card:hover::after {
    content: '';
    position: absolute;
    inset: -1.5px;
    background: linear-gradient(270deg, transparent, rgba(0, 229, 195, .2), rgba(0, 212, 255, .15), transparent);
    background-size: 300% 300%;
    animation: borderTravel 2.5s ease infinite;
    border-radius: inherit;
    z-index: -1;
    pointer-events: none;
}

/* ─── WAVE GLOW ─── */
.wave-bar {
    box-shadow: 0 0 8px rgba(0, 229, 195, .35)
}

/* ─── STAT SEPARATOR ─── */
.stat-item {
    position: relative
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 15%;
    bottom: 15%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, var(--border), transparent);
}

/* ─── SCROLL REVEAL CLASSES ─── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-36px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1);
}

.reveal-left.visible {
    opacity: 1;
    transform: none
}

.reveal-right {
    opacity: 0;
    transform: translateX(36px);
    transition: opacity .85s cubic-bezier(.16, 1, .3, 1), transform .85s cubic-bezier(.16, 1, .3, 1);
}

.reveal-right.visible {
    opacity: 1;
    transform: none
}

/* ─── PROMO BANNER SHIMMER ─── */
.promo-banner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 229, 195, .06), transparent);
    animation: bannerSwipe 3.5s ease-in-out infinite;
    pointer-events: none;
}

@keyframes bannerSwipe {
    0% {
        left: -100%
    }

    100% {
        left: 200%
    }
}

/* ─── SLOTS PULSE ─── */
.promo-slots {
    animation: slotPulse 2.2s ease-in-out infinite
}

@keyframes slotPulse {

    0%,
    100% {
        box-shadow: 0 0 18px var(--teal-glow)
    }

    50% {
        box-shadow: 0 0 38px rgba(0, 229, 195, .55), 0 0 60px rgba(0, 229, 195, .18)
    }
}

/* ─── LOGO SPIN ON HOVER ─── */
.logo-icon {
    transition: transform .55s cubic-bezier(.34, 1.56, .64, 1), box-shadow .3s
}

.logo:hover .logo-icon {
    transform: rotate(360deg);
    box-shadow: 0 0 28px var(--teal-glow)
}

/* ─── NAV LINK UNDERLINE DRAW ─── */
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    right: 0;
    height: 1px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
}

.nav-links a:hover::after {
    transform: scaleX(1)
}

/* ─── PHONE BOB ─── */
.phone-mock {
    animation: phoneBob 4.5s ease-in-out infinite
}

@keyframes phoneBob {

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

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

/* ─── FEATURED CARD TOP SHIMMER ─── */
.pricing-card.featured::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal), #00d4ff, var(--teal), transparent);
    background-size: 200% auto;
    animation: shimmer 2.2s linear infinite;
}

/* ─── ADDON ICON BOUNCE ─── */
@keyframes iconBounce {
    0% {
        transform: scale(1)
    }

    50% {
        transform: scale(1.35) rotate(-10deg)
    }

    100% {
        transform: scale(1)
    }
}

.addon-card:hover .addon-icon {
    animation: iconBounce .45s cubic-bezier(.34, 1.56, .64, 1)
}

/* ─── FOOTER UNDERLINE ─── */
.footer-links a {
    position: relative
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    right: 0;
    height: 1px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s;
}

.footer-links a:hover::after {
    transform: scaleX(1)
}

/* ─── FORM LIFT ON FOCUS ─── */
.form-group input,
.form-group select,
.form-group textarea {
    transition: border-color .25s, box-shadow .25s, transform .2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    transform: translateY(-2px);
}

/* ─── SUBMIT RIPPLE ─── */
.form-submit {
    position: relative;
    overflow: hidden
}

.form-submit::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, .18);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: width .6s ease, height .6s ease, opacity .6s ease;
    opacity: 0;
}

.form-submit:active::after {
    width: 400px;
    height: 200px;
    opacity: 1;
    transition: 0s
}

/* ─── SECTION TAG LINE DRAW ─── */
.section-tag::before {
    animation: tagDraw .9s ease both
}

@keyframes tagDraw {
    from {
        width: 0
    }

    to {
        width: 24px
    }
}

/* ─── TILT 3D STYLE ─── */
.tilt-card {
    transform-style: preserve-3d;
    will-change: transform;
    transition: transform .1s ease
}

/* ─── TESTIMONIAL QUOTE MARK ─── */
.testimonial-card {
    position: relative;
    overflow: hidden
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    right: 16px;
    font-family: var(--display);
    font-size: 6rem;
    font-weight: 800;
    color: rgba(0, 229, 195, .06);
    line-height: 1;
    pointer-events: none;
}

/* ─── STEP NUMBER GLOW ON HOVER ─── */
.step:hover .step-num {
    box-shadow: 0 0 20px var(--teal-glow);
    background: rgba(0, 229, 195, .2);
    transition: box-shadow .3s, background .3s;
}

/* ─── CTA SECTION PULSE RING ─── */
.cta-section::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px solid rgba(0, 229, 195, .08);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: ctaRingPulse 4s ease-in-out infinite;
    pointer-events: none;
}

.cta-section::before {
    z-index: 0
}

@keyframes ctaRingPulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .5
    }

    50% {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0
    }
}

/* ─── INTEGRATION PILL FLOAT ─── */
.integration-pill {
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), border-color .2s, color .2s
}

.integration-pill:hover {
    transform: translateY(-3px) scale(1.04)
}

/* ─── CHECKBOX CHECK ANIMATION ─── */
@keyframes checkPop {
    0% {
        transform: scale(0)
    }

    80% {
        transform: scale(1.3)
    }

    100% {
        transform: scale(1)
    }
}

.addon-check-item input[type="checkbox"]:checked~.addon-check-box svg {
    animation: checkPop .25s cubic-bezier(.34, 1.56, .64, 1);
}

/* ─── STATS NUMBER GLOW ─── */
@keyframes numGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(0, 229, 195, .3)
    }

    50% {
        text-shadow: 0 0 40px rgba(0, 229, 195, .7)
    }
}

.stat-num {
    animation: numGlow 3s ease-in-out infinite
}

/* ─── NOISE OVERLAY ─── */
body::before {
    content: '';
    position: fixed;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.5;
}

/* ─── NAV ─── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 5%;
    background: rgba(5, 12, 26, 0.75);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    animation: fadeDown .7s ease both;
}

@keyframes fadeDown {
    from {
        transform: translateY(-100%);
        opacity: 0
    }

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

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--teal), #00b4d8);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px var(--teal-glow);
}

.logo-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--bg)
}

.logo-name {
    font-family: var(--display);
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--white);
}

.logo-name span {
    color: var(--teal)
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    list-style: none
}

.nav-links a {
    font-size: var(--text-sm);
    font-weight: 400;
    letter-spacing: .01em;
    text-decoration: none;
    color: var(--muted);
    transition: color .2s;
    position: relative;
}

.nav-links a:hover {
    color: var(--white)
}

.nav-cta {
    background: var(--teal);
    color: var(--bg) !important;
    padding: .55rem 1.4rem;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: .82rem !important;
    transition: box-shadow .3s, transform .2s !important;
    box-shadow: 0 0 0 0 var(--teal-glow);
}

.nav-cta:hover {
    box-shadow: 0 0 24px var(--teal-glow) !important;
    transform: scale(1.03) !important;
}

/* ─── HERO ─── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 8rem 5% 5rem;
    position: relative;
    overflow: hidden;
}

/* radial bg gradient */
.hero::before {
    content: '';
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(0, 229, 195, 0.07) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -54%);
    pointer-events: none;
}

/* grid lines */
.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(0, 229, 195, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(0, 229, 195, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid var(--border);
    background: var(--teal-dim);
    color: var(--teal);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .4rem 1.1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
    animation: fadeUp .7s .1s ease both;
}

.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--teal);
    animation: blink 1.4s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
        box-shadow: 0 0 6px var(--teal)
    }

    50% {
        opacity: .3;
        box-shadow: none
    }
}

.hero-title {
    font-family: var(--display);
    font-size: var(--h1);
    font-weight: 800;
    line-height: 1.0;
    letter-spacing: -0.04em;
    max-width: 900px;
    position: relative;
    z-index: 2;
    animation: fadeUp .7s .2s ease both;
}

.hero-title .hl {
    color: var(--teal);
    position: relative;
    white-space: nowrap;
}

.hero-title .hl::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -4px;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--teal), transparent);
    border-radius: 2px;
}

.hero-sub {
    font-size: var(--text-lg);
    color: var(--muted);
    max-width: 520px;
    margin: 1.8rem auto 0;
    line-height: 1.75;
    position: relative;
    z-index: 2;
    animation: fadeUp .7s .35s ease both;
}

/* ─── WAVEFORM ─── */
.waveform-wrap {
    position: relative;
    z-index: 2;
    margin: 3rem auto 3rem;
    width: 360px;
    height: 80px;
    animation: fadeUp .7s .4s ease both;
}

.waveform {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 100%
}

.wave-bar {
    width: 4px;
    border-radius: 4px;
    background: var(--teal);
    opacity: .7;
    animation: wave var(--d, .6s) var(--delay, 0s) ease-in-out infinite alternate;
}

@keyframes wave {
    from {
        height: 6px;
        opacity: .3
    }

    to {
        height: var(--h, 40px);
        opacity: .9
    }
}

.waveform-label {
    position: absolute;
    bottom: -22px;
    left: 50%;
    transform: translateX(-50%);
    font-size: var(--text-xs);
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    position: relative;
    z-index: 2;
    animation: fadeUp .7s .55s ease both;
}

.btn-primary {
    background: var(--teal);
    color: var(--bg);
    border: none;
    padding: .9rem 2.2rem;
    border-radius: 100px;
    font-family: var(--body);
    font-size: .92rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: box-shadow .3s, transform .2s;
    box-shadow: 0 0 0 rgba(0, 229, 195, 0);
}

.btn-primary:hover {
    box-shadow: 0 0 30px rgba(0, 229, 195, .35), 0 8px 24px rgba(0, 229, 195, .2);
    transform: translateY(-2px);
}

.btn-primary svg {
    transition: transform .2s
}

.btn-primary:hover svg {
    transform: translateX(3px)
}

.btn-outline {
    border: 1px solid var(--border);
    color: var(--white);
    background: transparent;
    padding: .9rem 2rem;
    border-radius: 100px;
    font-family: var(--body);
    font-size: var(--text-sm);
    font-weight: 400;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: border-color .25s, background .25s, transform .2s;
}

.btn-outline:hover {
    border-color: var(--teal);
    background: var(--teal-dim);
    transform: translateY(-2px)
}

.hero-trust {
    margin-top: 3.5rem;
    position: relative;
    z-index: 2;
    animation: fadeUp .7s .7s ease both;
}

.hero-trust p {
    font-size: var(--text-xs);
    color: var(--muted2);
    letter-spacing: .06em;
    text-transform: uppercase;
    margin-bottom: .8rem
}

.trust-pills {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap
}

.trust-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    color: var(--muted);
    font-weight: 400;
}

.trust-pill svg {
    color: var(--teal);
    flex-shrink: 0
}

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

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

/* ─── STATS BAR ─── */
.stats-bar {
    background: var(--surface);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 2.5rem 5%;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {}

.stat-num {
    font-family: var(--display);
    font-size: clamp(2rem, 3vw, 2.8rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--teal);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-xs);
    color: var(--muted);
    margin-top: .4rem;
    letter-spacing: .03em
}

/* ─── SECTIONS ─── */
.section {
    padding: 6rem 5%
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-xs);
    letter-spacing: .15em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: 1rem;
}

.section-tag::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--teal);
    display: block;
}

.section-title {
    font-family: var(--display);
    font-size: var(--h2);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    max-width: 600px;
}

.section-title span {
    color: var(--teal)
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 480px;
    margin-top: 1rem;
    line-height: 1.75;
}

/* ─── FEATURES ─── */
.features-section {
    background: var(--bg2)
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    border: 1.5px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.feature-card {
    background: var(--surface);
    padding: 2.2rem;
    position: relative;
    transition: background .3s;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
    opacity: 0;
    transition: opacity .3s;
}

.feature-card:hover {
    background: var(--surface2)
}

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

.feature-icon {
    width: 46px;
    height: 46px;
    background: var(--teal-dim);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    transition: box-shadow .3s;
}

.feature-card:hover .feature-icon {
    box-shadow: 0 0 20px var(--teal-glow)
}

.feature-icon svg {
    color: var(--teal)
}

.feature-title {
    font-family: var(--display);
    font-size: var(--h4);
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: .5rem;
}

.feature-desc {
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.65
}

/* ─── HOW IT WORKS — MANAGED SERVICE JOURNEY ─── */
.how-section {}

/* YOU vs WE banner */
.how-banner {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-top: 3.5rem;
    border: 1px solid var(--border);
    border-radius: 20px;
    overflow: hidden;
}

.how-banner-side {
    padding: 2rem 2.2rem
}

.you-side {
    background: var(--surface)
}

.we-side {
    background: linear-gradient(135deg, rgba(0, 229, 195, .06), rgba(0, 180, 216, .04));
    border-left: 1px solid var(--border)
}

.how-banner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
    padding: 0 1rem;
}

.how-banner-vs {
    font-family: var(--display);
    font-size: var(--text-xs);
    font-weight: 800;
    letter-spacing: .15em;
    color: var(--muted2);
    writing-mode: vertical-rl;
    text-orientation: mixed;
}

.how-banner-label {
    font-family: var(--display);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--muted2);
    margin-bottom: 1.2rem;
}

.we-label {
    color: var(--teal)
}

.how-banner-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--text-sm);
    color: var(--muted);
    padding: .45rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, .03);
    transition: color .2s;
}

.how-banner-item:last-child {
    border-bottom: none
}

.we-side .how-banner-item {
    color: rgba(240, 246, 255, .75)
}

.we-side .how-banner-item svg {
    color: var(--teal)
}

.you-side .how-banner-item svg {
    color: var(--muted)
}

.muted-item {
    opacity: .5
}

.muted-item svg {
    color: rgba(255, 80, 80, .6) !important
}

/* Journey timeline */
.journey-wrap {
    margin-top: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.journey-line {
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(to bottom, var(--teal), rgba(0, 229, 195, .1));
    border-radius: 2px;
    z-index: 0;
}

.journey-step {
    display: flex;
    gap: 2rem;
    padding: 1.8rem 1.8rem 1.8rem 0;
    position: relative;
    z-index: 1;
    transition: background .3s;
    border-radius: 16px;
}

.journey-step:hover {
    background: rgba(0, 229, 195, .025)
}

.journey-icon-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    padding-top: .1rem;
}

.journey-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    position: relative;
    z-index: 2;
    transition: border-color .3s, box-shadow .3s, color .3s, background .3s;
}

.journey-step:hover .journey-icon {
    border-color: rgba(0, 229, 195, .35);
    box-shadow: 0 0 24px rgba(0, 229, 195, .15);
    color: var(--teal);
    background: rgba(0, 229, 195, .06);
}

.we-icon {
    background: rgba(0, 229, 195, .06);
    border-color: rgba(0, 229, 195, .2);
    color: var(--teal);
}

.you-icon {
    background: rgba(0, 180, 216, .06);
    border-color: rgba(0, 180, 216, .2);
    color: #00b4d8;
}

.support-icon {
    background: linear-gradient(135deg, rgba(0, 229, 195, .1), rgba(0, 180, 216, .08));
    border-color: rgba(0, 229, 195, .3);
    color: var(--teal);
    box-shadow: 0 0 20px rgba(0, 229, 195, .12);
}

.journey-connector {
    flex: 1;
    width: 2px;
    min-height: 20px;
    background: transparent
}

.journey-content {
    flex: 1;
    padding-top: .3rem
}

.journey-who {
    display: inline-flex;
    align-items: center;
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    padding: .25rem .75rem;
    border-radius: 100px;
    margin-bottom: .65rem;
}

.you-tag {
    background: rgba(0, 180, 216, .12);
    color: #00b4d8;
    border: 1px solid rgba(0, 180, 216, .2)
}

.we-tag {
    background: rgba(0, 229, 195, .1);
    color: var(--teal);
    border: 1px solid rgba(0, 229, 195, .2)
}

.journey-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: var(--h4);
    letter-spacing: -0.02em;
    margin-bottom: .5rem;
    color: var(--white);
}

.journey-desc {
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.7
}

.journey-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 229, 195, .1);
    border: 1px solid rgba(0, 229, 195, .2);
    color: var(--teal);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .06em;
    padding: .3rem .85rem;
    border-radius: 100px;
    margin-top: .9rem;
}

.journey-sla-row {
    display: flex;
    gap: .6rem;
    flex-wrap: wrap;
    margin-top: .9rem
}

.sla-badge {
    margin-top: 0 !important
}

/* Callout box */
.how-callout {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(0, 229, 195, .07), rgba(0, 180, 216, .04));
    border: 1px solid rgba(0, 229, 195, .2);
    border-radius: 20px;
    padding: 2rem 2.4rem;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
}

.how-callout::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 30px;
    right: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--teal), transparent);
}

.how-callout-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: rgba(0, 229, 195, .12);
    border: 1px solid rgba(0, 229, 195, .25);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    box-shadow: 0 0 24px rgba(0, 229, 195, .15);
    flex-shrink: 0;
}

.how-callout-title {
    font-family: var(--display);
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    margin-bottom: .5rem;
}

.how-callout-desc {
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.7
}

@media(max-width:900px) {
    .how-banner {
        grid-template-columns: 1fr
    }

    .we-side {
        border-left: none;
        border-top: 1px solid var(--border)
    }

    .how-banner-divider {
        display: none
    }

    .journey-line {
        left: 22px
    }

    .journey-icon {
        width: 46px;
        height: 46px;
        min-width: 46px
    }

    .how-callout {
        flex-direction: column;
        gap: 1rem
    }
}

/* ─── PROMO BANNER ─── */
.promo-banner {
    margin-top: 3rem;
    background: linear-gradient(135deg, rgba(0, 229, 195, 0.1), rgba(0, 180, 216, 0.08));
    border: 1px solid rgba(0, 229, 195, 0.3);
    border-radius: 16px;
    padding: 1.2rem 2rem;
    position: relative;
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(to bottom, var(--teal), #00b4d8);
    border-radius: 4px 0 0 4px;
}

.promo-inner {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.promo-fire {
    font-size: 1.4rem
}

.promo-inner div {
    flex: 1;
    min-width: 200px
}

.promo-inner strong {
    display: block;
    font-family: var(--display);
    font-weight: 700;
    font-size: .95rem;
    color: var(--white);
    margin-bottom: .2rem;
}

.promo-inner span {
    font-size: var(--text-xs);
    color: var(--muted)
}

.promo-inner s {
    color: rgba(255, 100, 100, .7);
    text-decoration: line-through
}

.promo-slots {
    background: var(--teal);
    color: var(--bg);
    font-family: var(--display);
    font-weight: 800;
    font-size: var(--text-xs);
    padding: .5rem 1.1rem;
    border-radius: 100px;
    white-space: nowrap;
    box-shadow: 0 0 20px var(--teal-glow);
}

#slotsLeft {
    font-size: 1.1rem
}

/* ─── PLAN CALLS BADGE ─── */
.plan-calls-badge {
    display: inline-flex;
    align-items: center;
    background: var(--surface2);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-family: var(--display);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .04em;
    color: var(--muted);
    padding: .35rem .9rem;
    margin-bottom: 1.5rem;
}

.plan-calls-badge.featured-badge {
    background: rgba(0, 229, 195, 0.12);
    border-color: rgba(0, 229, 195, 0.3);
    color: var(--teal);
}

/* ─── PLAN CONTACT BUTTON ─── */
.plan-btn-contact {
    display: block;
    width: 100%;
    padding: .8rem;
    border-radius: 100px;
    font-family: var(--body);
    font-size: var(--text-sm);
    font-weight: 600;
    text-align: center;
    text-decoration: none;
    border: 1px solid var(--border);
    color: var(--white);
    background: transparent;
    transition: border-color .25s, background .25s, transform .2s;
}

.plan-btn-contact:hover {
    border-color: var(--teal);
    background: var(--teal-dim);
    transform: translateY(-2px);
}

.featured-contact-btn {
    background: var(--teal) !important;
    color: var(--bg) !important;
    border-color: var(--teal) !important;
    box-shadow: 0 0 20px var(--teal-glow);
}

.featured-contact-btn:hover {
    box-shadow: 0 0 36px rgba(0, 229, 195, .4) !important;
}

.addon-divider {
    padding-top: .5rem;
    margin-top: .3rem;
    border-top: 1px solid var(--border);
    color: var(--teal) !important;
    font-weight: 500;
}

.addon-divider svg {
    color: var(--teal) !important
}

/* ─── INTEGRATIONS NOTE ─── */
.integrations-note {
    margin-top: 3rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.2rem;
}

.int-note-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--display);
    font-weight: 600;
    font-size: .9rem;
    color: var(--teal);
}

.int-defaults {
    display: flex;
    align-items: center;
    gap: .8rem;
    flex-wrap: wrap
}

.int-default-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: .4rem .9rem;
    font-size: var(--text-xs);
    color: var(--muted);
    font-weight: 500;
}

.int-default-pill svg {
    color: var(--teal)
}

/* ─── ADD-ONS SECTION ─── */
.addons-section {
    margin-top: 4rem
}

.addons-header {
    text-align: center;
    margin-bottom: 2.5rem
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
}

.addon-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.6rem;
    transition: transform .3s, border-color .3s, box-shadow .3s;
}

.addon-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 229, 195, .25);
    box-shadow: 0 12px 40px rgba(0, 0, 0, .25);
}

.addon-future {
    border-style: dashed;
    opacity: .75
}

.addon-future:hover {
    opacity: 1
}

.addon-icon {
    width: 40px;
    height: 40px;
    background: var(--teal-dim);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--teal);
}

.addon-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: .92rem;
    margin-bottom: .4rem;
}

.addon-desc {
    font-size: var(--text-xs);
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: .8rem
}

.addon-tag {
    display: inline-block;
    background: var(--teal-dim);
    border-radius: 100px;
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: .06em;
    color: var(--teal);
    padding: .25rem .7rem;
}

@media(max-width:900px) {
    .addons-grid {
        grid-template-columns: 1fr 1fr
    }
}

@media(max-width:600px) {
    .addons-grid {
        grid-template-columns: 1fr
    }

    .integrations-note {
        flex-direction: column
    }
}

/* ─── PRICING SECTION ─── */
.pricing-section {
    background: var(--bg2)
}

.pricing-section {
    background: var(--bg2)
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.pricing-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.2rem;
    position: relative;
    overflow: hidden;
    transition: transform .3s, box-shadow .3s;
}

.pricing-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, .3)
}

.pricing-card.featured {
    border-color: var(--teal);
    box-shadow: 0 0 40px rgba(0, 229, 195, .12);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    background: var(--teal);
    color: var(--bg);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: .3rem .7rem;
    border-radius: 100px;
}

.plan-name {
    font-family: var(--display);
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: .8rem
}

.plan-price {
    font-family: var(--display);
    font-size: 2.6rem;
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1;
    margin-bottom: .3rem;
}

.plan-price sup {
    font-size: 1.2rem;
    vertical-align: top;
    margin-top: .5rem;
    font-weight: 600;
    color: var(--teal)
}

.plan-price span {
    font-size: .9rem;
    font-weight: 400;
    color: var(--muted)
}

.plan-desc {
    font-size: var(--text-sm);
    color: var(--muted);
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border)
}

.plan-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .7rem;
    margin-bottom: 2rem
}

.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.4;
}

.plan-features li svg {
    color: var(--teal);
    flex-shrink: 0;
    margin-top: 1px
}

.plan-btn {
    width: 100%;
    padding: .8rem;
    border-radius: 100px;
    font-family: var(--body);
    font-size: var(--text-sm);
    font-weight: 600;
    cursor: pointer;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--white);
    transition: background .2s, border-color .2s, box-shadow .3s;
}

.plan-btn:hover {
    border-color: var(--teal);
    background: var(--teal-dim)
}

.pricing-card.featured .plan-btn {
    background: var(--teal);
    color: var(--bg);
    border-color: var(--teal);
    box-shadow: 0 0 20px var(--teal-glow);
}

.pricing-card.featured .plan-btn:hover {
    box-shadow: 0 0 36px rgba(0, 229, 195, .4)
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2rem;
    transition: transform .3s, box-shadow .3s;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 50px rgba(0, 0, 0, .25)
}

.testimonial-card.featured {
    border-color: rgba(0, 229, 195, .25);
    grid-column: span 1
}

.stars {
    display: flex;
    gap: 3px;
    margin-bottom: 1.2rem
}

.stars svg {
    color: #f59e0b
}

.testimonial-text {
    font-size: var(--text-sm);
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-text em {
    color: var(--white);
    font-style: normal;
    font-weight: 500
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: .8rem
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), #00b4d8);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--display);
    font-weight: 700;
    font-size: .9rem;
    color: var(--bg);
    flex-shrink: 0;
}

.author-name {
    font-family: var(--display);
    font-weight: 700;
    font-size: var(--text-sm)
}

.author-role {
    font-size: var(--text-xs);
    color: var(--muted)
}

/* ─── CTA SECTION ─── */
.cta-section {
    padding: 7rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(0, 229, 195, .08) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.cta-title {
    font-family: var(--display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.05;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto 1rem;
}

.cta-title span {
    color: var(--teal)
}

.cta-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 440px;
    margin: 0 auto 2.5rem;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.cta-note {
    margin-top: 1.2rem;
    font-size: var(--text-xs);
    color: var(--muted2);
    position: relative;
    z-index: 1;
}

/* ─── ADDON CHECKBOXES IN FORM ─── */
.addon-checkboxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .7rem;
    margin-top: .2rem;
}

.addon-check-item {
    display: flex;
    align-items: center;
    gap: .75rem;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: .75rem 1rem;
    cursor: pointer;
    transition: border-color .2s, background .2s;
    user-select: none;
}

.addon-check-item:hover {
    border-color: rgba(0, 229, 195, .3);
    background: var(--surface)
}

.addon-check-item input[type="checkbox"] {
    display: none
}

.addon-check-box {
    width: 20px;
    height: 20px;
    min-width: 20px;
    border: 1.5px solid var(--muted2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background .2s, border-color .2s;
}

.addon-check-box svg {
    opacity: 0;
    transition: opacity .15s;
    color: var(--bg)
}

.addon-check-item input[type="checkbox"]:checked~.addon-check-box {
    background: var(--teal);
    border-color: var(--teal);
    box-shadow: 0 0 10px var(--teal-glow);
}

.addon-check-item input[type="checkbox"]:checked~.addon-check-box svg {
    opacity: 1
}

.addon-check-item input[type="checkbox"]:checked~.addon-check-label {
    color: var(--white)
}

.addon-check-item:has(input:checked) {
    border-color: rgba(0, 229, 195, .35);
    background: rgba(0, 229, 195, .04);
}

.addon-check-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--text-sm);
    color: var(--muted);
    font-weight: 400;
    transition: color .2s;
}

.addon-check-label svg {
    color: var(--teal);
    flex-shrink: 0
}

@media(max-width:600px) {
    .addon-checkboxes {
        grid-template-columns: 1fr
    }
}

/* ─── CONTACT FORM ─── */
.contact-section {
    background: var(--bg2);
    padding: 6rem 5%
}

.contact-inner {
    max-width: 620px;
    margin: 0 auto;
}

.contact-form {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 2.8rem;
    margin-top: 3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 1.2rem
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: .5rem
}

.form-group.full {
    grid-column: span 2
}

.form-group label {
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: .04em;
    color: var(--muted);
    text-transform: uppercase
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: .8rem 1rem;
    font-family: var(--body);
    font-size: var(--text-sm);
    font-weight: 300;
    color: var(--white);
    outline: none;
    transition: border-color .2s, box-shadow .2s;
    appearance: none;
}

.form-group select {
    cursor: pointer
}

.form-group textarea {
    min-height: 100px;
    resize: vertical
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--muted2)
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(0, 229, 195, .1);
}

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--teal);
    color: var(--bg);
    border: none;
    border-radius: 100px;
    font-family: var(--body);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: .5rem;
    transition: box-shadow .3s, transform .2s;
}

.form-submit:hover {
    box-shadow: 0 0 30px rgba(0, 229, 195, .35);
    transform: translateY(-2px);
}

/* ─── FOOTER ─── */
footer {
    padding: 3rem 5%;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-copy {
    font-size: var(--text-xs);
    color: var(--muted2)
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: .6rem 1.5rem;
    list-style: none;
    max-width: 420px;
    justify-content: flex-end;
}

.footer-links a {
    font-size: var(--text-xs);
    color: var(--muted2);
    text-decoration: none;
    transition: color .2s
}

.footer-links a:hover {
    color: var(--teal)
}

/* ─── INTEGRATION LOGOS ─── */
.integrations {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 4rem;
}

.integration-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: .55rem 1.1rem;
    font-size: var(--text-xs);
    color: var(--muted);
    font-weight: 500;
    transition: border-color .2s, color .2s;
}

.integration-pill:hover {
    border-color: var(--teal);
    color: var(--white)
}

.integration-pill svg {
    color: var(--teal)
}

/* ─── FAQ SECTION ─── */
.faq-section {
    background: var(--bg2)
}

.faq-inner {
    max-width: 760px
}

.faq-list {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: .8rem
}

.faq-item {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 14px;
    overflow: hidden;
    transition: border-color .25s;
}

.faq-item[open] {
    border-color: rgba(0, 229, 195, .3)
}

.faq-item[open] .faq-q::after {
    transform: rotate(45deg);
    color: var(--teal)
}

.faq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.4rem;
    font-family: var(--display);
    font-size: .95rem;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    color: var(--white);
    transition: color .2s;
    gap: 1rem;
}

.faq-q::-webkit-details-marker {
    display: none
}

.faq-q::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--muted);
    flex-shrink: 0;
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1), color .2s;
}

.faq-q:hover {
    color: var(--teal)
}

.faq-a {
    padding: 0 1.4rem 1.2rem;
    font-size: var(--text-sm);
    color: var(--muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
}

/* ─── INDUSTRY TICKER ─── */
.industry-ticker-wrap {
    background: var(--bg2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .9rem 0;
    display: flex;
    align-items: center;
    overflow: hidden;
    position: relative;
}

.industry-ticker-wrap::before,
.industry-ticker-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.industry-ticker-wrap::before {
    left: 0;
    background: linear-gradient(to right, var(--bg2), transparent)
}

.industry-ticker-wrap::after {
    right: 0;
    background: linear-gradient(to left, var(--bg2), transparent)
}

.ticker-label {
    font-size: var(--text-xs);
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted2);
    font-weight: 600;
    padding: 0 2rem 0 5%;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
    z-index: 3;
}

.ticker-track {
    overflow: hidden;
    flex: 1
}

.ticker-inner {
    display: flex;
    align-items: center;
    gap: 0;
    animation: tickerScroll 32s linear infinite;
    width: max-content;
}

.ticker-inner:hover {
    animation-play-state: paused
}

@keyframes tickerScroll {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: .35rem 1.4rem;
    font-size: var(--text-xs);
    color: var(--muted);
    font-weight: 500;
    white-space: nowrap;
    border-right: 1px solid var(--border);
    transition: color .2s;
}

.ticker-item svg {
    color: var(--teal);
    flex-shrink: 0
}

.ticker-item:hover {
    color: var(--white)
}

/* ─── RESPONSIVE ─── */
@media(max-width:900px) {
    nav {
        padding: 1rem 5%
    }

    .nav-links {
        display: none
    }

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

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

    .phone-mock {
        display: none
    }

    .pricing-cards {
        grid-template-columns: 1fr
    }

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

    .stats-bar {
        grid-template-columns: 1fr 1fr
    }

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

    .form-group.full {
        grid-column: span 1
    }
}

@media(max-width:600px) {
    .features-grid {
        grid-template-columns: 1fr
    }

    .stats-bar {
        grid-template-columns: 1fr 1fr
    }

    .hero-title {
        font-size: 2.4rem
    }
}