:root {
    --c0: #06080f;
    --c1: #0d1120;
    --c2: #131829;
    --c3: #1c2238;
    --c4: #252d45;
    --c5: #323c57;
    --accent: #00D9FF;
    --accent2: #0066FF;
    --accent3: #ff6b6b;
    --warm: #ffcf77;
    --txt0: #ffffff;
    --txt1: #cdd5e8;
    --txt2: #7a87a4;
    --txt3: #454f68;
    --r8: 8px;
    --r12: 12px;
    --r16: 16px;
    --r24: 24px;
    --r32: 32px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    font-family: "DM Sans", sans-serif;
    background: var(--c0);
    color: var(--txt1);
    overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
    font-family: "Bricolage Grotesque", sans-serif;
    color: var(--txt0);
}

/* 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='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1000;
    opacity: 0.35;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    padding: 1.1rem 0;
    transition: all 0.4s;
}
nav.stuck {
    background: rgba(6, 8, 15, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.logo img {
    height: 36px;
    width: auto;
    display: block;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-left: auto;
}
.nav-links a {
    color: var(--txt2);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 0.5rem 0.85rem;
    border-radius: var(--r8);
    transition: all 0.25s;
}
.nav-links a:hover {
    color: var(--txt0);
    background: rgba(255, 255, 255, 0.05);
}
.nav-cta {
    margin-left: 0.5rem;
    background: var(--accent);
    color: #06080f !important;
    font-weight: 700 !important;
    border-radius: var(--r8) !important;
}
.nav-cta:hover {
    background: #3de0ae !important;
    transform: translateY(-1px);
}
.nav-hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--r8);
    padding: 0.5rem 0.65rem;
    color: var(--txt1);
    cursor: pointer;
    margin-left: auto;
}
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--c0);
    z-index: 950;
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
}
.mobile-nav.open {
    display: flex;
}
.mobile-nav a {
    color: var(--txt1);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--txt1);
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 1rem;
}

/* HERO */
.hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 5rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.hero-mesh {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.hero-mesh::before {
    content: "";
    position: absolute;
    width: 900px;
    height: 900px;
    background: radial-gradient(
        ellipse,
        rgba(74, 243, 192, 0.08) 0%,
        transparent 65%
    );
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 50%;
}
.hero-mesh::after {
    content: "";
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(
        ellipse,
        rgba(123, 108, 255, 0.07) 0%,
        transparent 65%
    );
    bottom: -300px;
    right: -150px;
    border-radius: 50%;
}
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(
        ellipse 80% 80% at 50% 50%,
        #000 30%,
        transparent 100%
    );
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(74, 243, 192, 0.08);
    border: 1px solid rgba(74, 243, 192, 0.2);
    color: var(--accent);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.4rem 1rem;
    border-radius: 100px;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}
.badge-pill .live-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.2;
    }
}

.hero h1 {
    font-size: clamp(2.8rem, 6vw, 5.2rem);
    font-weight: 800;
    line-height: 1.06;
    letter-spacing: -0.03em;
    max-width: 880px;
    position: relative;
    z-index: 2;
    margin-bottom: 1.5rem;
}
.hero h1 em {
    font-style: normal;
    color: var(--accent);
}
.hero p {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--txt2);
    max-width: 580px;
    line-height: 1.75;
    position: relative;
    z-index: 2;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
    margin-bottom: 3.5rem;
}
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--accent);
    color: #06080f;
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: var(--r12);
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
    position: relative;
}
.btn-primary::after {
    content: "";
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--r12) + 1px);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    pointer-events: none;
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(74, 243, 192, 0.25);
}
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--txt1);
    font-family: "Bricolage Grotesque", sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 0.85rem 2rem;
    border-radius: var(--r12);
    border: 1px solid rgba(255, 255, 255, 0.1);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.25s;
}
.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.channels {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 2;
}
.ch-label {
    font-size: 0.72rem;
    color: var(--txt3);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-right: 0.25rem;
}
.ch-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.38rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    padding: 0.3rem 0.75rem;
    font-size: 0.78rem;
    color: var(--txt2);
    font-weight: 500;
    transition: 0.2s;
}
.ch-chip:hover {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--txt0);
}

/* LIVE DOT SM */
.live-dot-sm {
    width: 5px;
    height: 5px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 6px var(--accent);
    animation: blink 1.8s infinite;
    display: inline-block;
}

/* ── HERO FEATURE SLIDER ── */
.hero-slider-wrap {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1100px;
    margin: 4.5rem auto 0;
}

/* Tab pills */
.slider-tabs {
    display: flex;
    justify-content: center;
    gap: 0.4rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}
.slider-tab {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.03);
    color: var(--txt3);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    user-select: none;
}
.slider-tab i {
    font-size: 0.95rem;
}
.slider-tab.active {
    border-color: rgba(74, 243, 192, 0.35);
    color: var(--accent);
}
.slider-tab:hover:not(.active) {
    border-color: rgba(255, 255, 255, 0.15);
    color: var(--txt1);
}

/* The sliding panel */
.slider-panel {
    border-radius: var(--r24);
    border: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(255, 255, 255, 0.025);
    overflow: hidden;
    box-shadow:
        0 50px 120px rgba(0, 0, 0, 0.6),
        0 0 0 1px rgba(74, 243, 192, 0.05);
    position: relative;
}
.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}
.slide {
    flex: 0 0 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 340px;
}

/* Left copy pane */
.slide-copy {
    padding: 3rem 3rem 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.09em;
    padding: 0.28rem 0.75rem;
    border-radius: 100px;
    margin-bottom: 1.2rem;
    width: fit-content;
}
.slide-copy h3 {
    font-size: 1.65rem;
    font-weight: 800;
    letter-spacing: -0.025em;
    color: var(--txt0);
    line-height: 1.18;
    margin-bottom: 0.75rem;
}
.slide-copy p {
    font-size: 0.9rem;
    color: var(--txt2);
    line-height: 1.8;
    margin-bottom: 1.4rem;
}
.slide-bullets {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.slide-bullet {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.85rem;
    color: var(--txt2);
}
.slide-bullet i {
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Right visual pane */
.slide-visual {
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.slide-visual::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
}

/* Slide 1 — Ticketing visual */
.vis-ticket-board {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.vtb-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}
.vtb-title {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--txt2);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.vtb-badge {
    font-size: 0.62rem;
    padding: 0.15rem 0.5rem;
    border-radius: 100px;
    font-weight: 700;
}
.vtb-row {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.55rem 0.75rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r12);
    transition: 0.2s;
}
.vtb-row:hover {
    border-color: rgba(74, 243, 192, 0.2);
    background: rgba(74, 243, 192, 0.03);
}
.vtb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}
.vtb-text {
    font-size: 0.75rem;
    color: var(--txt1);
    flex: 1;
}
.vtb-tag {
    font-size: 0.6rem;
    padding: 0.12rem 0.42rem;
    border-radius: 4px;
    font-weight: 600;
    flex-shrink: 0;
}
.vtb-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.55rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

/* Slide 2 — WhatsApp / conversation visual */
.vis-chat {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.vc-header {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.6rem 0.75rem;
    background: rgba(37, 211, 102, 0.06);
    border: 1px solid rgba(37, 211, 102, 0.12);
    border-radius: var(--r12);
    margin-bottom: 0.25rem;
}
.vc-av {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, #25d366, #128c7e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}
.vc-name {
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--txt0);
}
.vc-status {
    font-size: 0.62rem;
    color: #25d366;
}
.vc-msg {
    display: flex;
    gap: 0.4rem;
}
.vc-msg.out {
    flex-direction: row-reverse;
}
.vc-bubble {
    padding: 0.5rem 0.7rem;
    border-radius: var(--r12);
    font-size: 0.72rem;
    line-height: 1.55;
    max-width: 78%;
}
.vc-msg:not(.out) .vc-bubble {
    background: rgba(255, 255, 255, 0.06);
    color: var(--txt1);
    border-radius: 4px var(--r12) var(--r12) var(--r12);
}
.vc-msg.out .vc-bubble {
    background: rgba(37, 211, 102, 0.12);
    color: #a8f0c0;
    border-radius: var(--r12) 4px var(--r12) var(--r12);
}
.vc-time {
    font-size: 0.58rem;
    color: var(--txt3);
    margin-top: 0.15rem;
    text-align: right;
}
.vc-typing {
    display: flex;
    align-items: center;
    gap: 3px;
    padding: 0.5rem 0.7rem;
    background: rgba(255, 255, 255, 0.04);
    border-radius: var(--r12);
    width: fit-content;
}
.vc-dot-t {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--txt3);
    animation: typeDot 1.2s ease-in-out infinite;
}
.vc-dot-t:nth-child(2) {
    animation-delay: 0.2s;
}
.vc-dot-t:nth-child(3) {
    animation-delay: 0.4s;
}
@keyframes typeDot {
    0%,
    100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-3px);
    }
}

/* Slide 3 — 3CX Call visual */
.vis-call-ui {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.1rem;
}
.vcu-caller {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    position: relative;
}
.vcu-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 2px solid rgba(74, 243, 192, 0.2);
    animation: ringPulse 2.2s ease-in-out infinite;
}
.vcu-ring2 {
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 1px solid rgba(74, 243, 192, 0.08);
    animation: ringPulse 2.2s ease-in-out 0.6s infinite;
}
@keyframes ringPulse {
    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.4;
    }
}
.vcu-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--txt0);
}
.vcu-status {
    font-size: 0.72rem;
    color: var(--accent);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.vcu-timer {
    font-size: 0.68rem;
    color: var(--txt3);
    font-family: monospace;
}
.vcu-btns {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
}
.vcu-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    border: none;
    cursor: pointer;
    transition: 0.2s;
}
.vcu-cdr {
    width: 100%;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r12);
    padding: 0.75rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
    text-align: center;
}
.vcu-cdr-n {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    color: var(--txt0);
}
.vcu-cdr-l {
    font-size: 0.6rem;
    color: var(--txt3);
    margin-top: 0.1rem;
}

/* Slide 4 — Analytics visual */
.vis-analytics {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.va-bars {
    display: flex;
    align-items: flex-end;
    gap: 0.35rem;
    height: 80px;
    margin-bottom: 0.25rem;
}
.va-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    position: relative;
    transition: 0.3s;
}
.va-bar::after {
    content: attr(data-v);
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.58rem;
    color: var(--txt3);
    white-space: nowrap;
}
.va-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
}
.va-kpi {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--r8);
    padding: 0.6rem;
    text-align: center;
}
.va-kpi-n {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--txt0);
}
.va-kpi-l {
    font-size: 0.6rem;
    color: var(--txt3);
    margin-top: 0.1rem;
}
.va-kpi-d {
    font-size: 0.62rem;
    font-weight: 700;
    margin-top: 0.1rem;
}

/* Slide 5 — AI visual */
.vis-ai-ui {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.vai-prompt {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r12);
    padding: 0.75rem;
    font-size: 0.74rem;
    color: var(--txt2);
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.vai-user-av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: var(--txt2);
    flex-shrink: 0;
}
.vai-resp {
    background: rgba(74, 243, 192, 0.06);
    border: 1px solid rgba(74, 243, 192, 0.14);
    border-radius: var(--r12);
    padding: 0.75rem;
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
}
.vai-ai-av {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(74, 243, 192, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    color: var(--accent);
    flex-shrink: 0;
}
.vai-text {
    font-size: 0.74rem;
    color: var(--txt1);
    line-height: 1.6;
}
.vai-sentiment {
    display: flex;
    gap: 0.45rem;
    flex-wrap: wrap;
}
.vai-chip {
    font-size: 0.64rem;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    font-weight: 600;
}

/* Progress + dots nav */
.slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}
.sp-dot {
    width: 7px;
    height: 7px;
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.35s;
}
.sp-dot.active {
    width: 26px;
    background: var(--accent);
}
.s-arrow {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    color: var(--txt2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.25s;
    flex-shrink: 0;
}
.s-arrow:hover {
    background: rgba(74, 243, 192, 0.1);
    border-color: rgba(74, 243, 192, 0.3);
    color: var(--accent);
}

/* Auto-progress bar on active tab */
.slider-tabs-wrap {
    position: relative;
}
.tab-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition:
        width 0.1s linear,
        left 0.35s ease;
    pointer-events: none;
    opacity: 0;
}
.tab-progress.visible {
    opacity: 1;
}

@media (max-width: 900px) {
    .slide {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    .slide-copy {
        padding: 2rem;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    .slide-visual {
        padding: 1.75rem 2rem;
    }
    .slide-copy h3 {
        font-size: 1.35rem;
    }
    .slider-tab {
        font-size: 0.75rem;
        padding: 0.42rem 0.8rem;
    }
    .vcu-cdr {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* SECTION COMMON */
section {
    padding: 7rem 2rem;
}
.container {
    max-width: 1280px;
    margin: 0 auto;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent);
    margin-bottom: 1rem;
}
.section-label::before {
    content: "";
    width: 18px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}
.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 0.85rem;
}
.section-title em {
    font-style: normal;
    color: var(--accent);
}
.section-sub {
    color: var(--txt2);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 520px;
}
.text-center {
    text-align: center;
}
.text-center .section-sub {
    margin: 0 auto;
}

/* STATS STRIP */
.stats-strip {
    padding: 4rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.012);
}
.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}
.stat-n {
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--txt0);
    line-height: 1;
}
.stat-n span {
    color: var(--accent);
}
.stat-l {
    font-size: 0.82rem;
    color: var(--txt3);
    font-weight: 500;
    margin-top: 0.35rem;
}

/* FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
}
.feat {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r20, 20px);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    transition: all 0.35s;
    cursor: default;
}
.feat::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(74, 243, 192, 0.05),
        transparent 60%
    );
    opacity: 0;
    transition: 0.35s;
}
.feat:hover {
    border-color: rgba(74, 243, 192, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}
.feat:hover::before {
    opacity: 1;
}
.feat-ico {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}
.feat h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--txt0);
    margin-bottom: 0.6rem;
    position: relative;
    z-index: 1;
}
.feat p {
    font-size: 0.86rem;
    color: var(--txt2);
    line-height: 1.75;
    position: relative;
    z-index: 1;
}
.feat-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.66rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 100px;
    margin-top: 0.85rem;
    position: relative;
    z-index: 1;
}

/* WORKFLOW */
.workflow-section {
    background: rgba(255, 255, 255, 0.012);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.steps-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}
.step-conn {
    position: absolute;
    top: 40px;
    left: 16.67%;
    right: 16.67%;
    height: 1px;
    background: linear-gradient(90deg, var(--accent), var(--accent2));
    opacity: 0.25;
    pointer-events: none;
}
.step {
    text-align: center;
    padding: 0 1.5rem;
}
.step-num {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--txt0);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}
.step:nth-child(1) .step-num {
    background: linear-gradient(135deg, #1a2a3a, #0d1f35);
    border: 2px solid rgba(74, 243, 192, 0.3);
}
.step:nth-child(2) .step-num {
    background: linear-gradient(135deg, #1a1a35, #0d0d25);
    border: 2px solid rgba(123, 108, 255, 0.35);
}
.step:nth-child(3) .step-num {
    background: linear-gradient(135deg, #2a1a2a, #1a0d25);
    border: 2px solid rgba(255, 107, 107, 0.3);
}
.step h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--txt0);
    margin-bottom: 0.6rem;
}
.step p {
    font-size: 0.86rem;
    color: var(--txt2);
    line-height: 1.7;
}

/* MARQUEE */
.marquee-section {
    padding: 3rem 0;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.marquee-label {
    text-align: center;
    font-size: 0.7rem;
    color: var(--txt3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.75rem;
}
.marquee-track {
    display: flex;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(
        90deg,
        transparent,
        #000 15%,
        #000 85%,
        transparent
    );
    mask-image: linear-gradient(
        90deg,
        transparent,
        #000 15%,
        #000 85%,
        transparent
    );
}
.marquee-slide {
    display: flex;
    will-change: transform;
}
.marquee-inner {
    display: flex;
    flex-shrink: 0;
}
.mi {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0 2.5rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--txt3);
    white-space: nowrap;
    transition: 0.2s;
}
.mi:hover {
    color: var(--txt1);
}
.mi i {
    font-size: 1.5rem;
}

/* TESTIMONIALS */
.test-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 4rem;
}
.test-card {
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: var(--r20, 20px);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    transition: all 0.3s;
}
.test-card:hover {
    border-color: rgba(255, 255, 255, 0.14);
    transform: translateY(-3px);
}
.stars {
    color: #ffcf77;
    font-size: 0.88rem;
    letter-spacing: 1px;
}
.test-quote {
    font-size: 0.9rem;
    color: var(--txt2);
    line-height: 1.78;
    font-style: italic;
    flex: 1;
}
.test-quote::before {
    content: "\201C";
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 3rem;
    color: var(--accent);
    opacity: 0.2;
    display: block;
    height: 1.5rem;
    line-height: 1;
}
.test-author {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}
.test-av {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid rgba(74, 243, 192, 0.15);
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
}
.test-av img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.test-name {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--txt0);
    margin-bottom: 0.1rem;
}
.test-role {
    font-size: 0.74rem;
    color: var(--txt3);
}
.test-co {
    font-size: 0.68rem;
    color: var(--accent);
    font-weight: 600;
}

/* FAQ */
.faq-section {
    background: rgba(255, 255, 255, 0.012);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.faq-wrap {
    max-width: 720px;
    margin: 3.5rem auto 0;
}
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.35rem 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--txt0);
    font-family: "Bricolage Grotesque", sans-serif;
    font-size: 1rem;
    font-weight: 600;
}
.faq-q .faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: 0.3s;
    font-size: 0.8rem;
    color: var(--txt3);
}
.faq-item.open .faq-icon {
    background: rgba(74, 243, 192, 0.1);
    border-color: rgba(74, 243, 192, 0.3);
    color: var(--accent);
    transform: rotate(45deg);
}
.faq-a {
    display: none;
    padding-bottom: 1.35rem;
    font-size: 0.9rem;
    color: var(--txt2);
    line-height: 1.78;
}
.faq-item.open .faq-a {
    display: block;
}

/* CTA */
.cta-section {
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 60% 70% at 50% 50%,
        rgba(74, 243, 192, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.cta-border {
    position: absolute;
    inset: 0;
    border-top: 1px solid rgba(74, 243, 192, 0.08);
    border-bottom: 1px solid rgba(74, 243, 192, 0.08);
}
.cta-inner {
    position: relative;
    z-index: 2;
}
.cta-section h2 {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}
.cta-section p {
    color: var(--txt2);
    font-size: 1.05rem;
    max-width: 500px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}
.cta-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-row {
    margin-top: 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}
.trust-label {
    font-size: 0.7rem;
    color: var(--txt3);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
}
.trust-logos {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
    justify-content: center;
}
.trust-co {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--txt3);
    transition: 0.2s;
}
.trust-co:hover {
    color: var(--txt2);
}

/* FOOTER */
footer {
    padding: 5rem 2rem 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 3rem;
}
.footer-brand p {
    font-size: 0.86rem;
    color: var(--txt3);
    line-height: 1.75;
    margin-top: 1rem;
    max-width: 280px;
}
.footer-logo img {
    height: 32px;
    width: auto;
}
.footer-col h4 {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--txt0);
    margin-bottom: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.footer-col a {
    display: block;
    font-size: 0.85rem;
    color: var(--txt3);
    text-decoration: none;
    margin-bottom: 0.6rem;
    transition: 0.2s;
}
.footer-col a:hover {
    color: var(--txt1);
}
.footer-social {
    display: flex;
    gap: 0.65rem;
    margin-top: 1.25rem;
}
.soc-link {
    width: 36px;
    height: 36px;
    border-radius: var(--r8);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--txt3);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.25s;
}
.soc-link:hover {
    background: rgba(74, 243, 192, 0.08);
    border-color: rgba(74, 243, 192, 0.2);
    color: var(--accent);
}
.footer-bottom {
    max-width: 1280px;
    margin: 3rem auto 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.82rem;
    color: var(--txt3);
}

/* REVEAL ANIMATION */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.in {
    opacity: 1;
    transform: none;
}
.d1 {
    transition-delay: 0.1s;
}
.d2 {
    transition-delay: 0.2s;
}
.d3 {
    transition-delay: 0.3s;
}
.d4 {
    transition-delay: 0.4s;
}
.d5 {
    transition-delay: 0.5s;
}
.d6 {
    transition-delay: 0.6s;
}

/* RESPONSIVE */
@media (max-width: 1100px) {
    .fc-left,
    .fc-right,
    .fc-bot {
        display: none;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .test-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}
@media (max-width: 820px) {
    section {
        padding: 5rem 1.5rem;
    }
    .nav-links {
        display: none;
    }
    .nav-hamburger {
        display: flex;
        align-items: center;
        gap: 0.4rem;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .steps-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .step-conn {
        display: none;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .test-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 600px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-ghost {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr;
    }
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}
