/* ===== Google Fonts ===== */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

/* ===== CSS Variables (Logo Colors) ===== */
:root {
    --primary: #7918bf;
    --primary-dark: #462e8d;
    --secondary: #9332d1;
    --accent-pink: #ec4899;
    --accent-orange: #f97316;
    --accent-magenta: #d946ef;
    --gradient-main: linear-gradient(135deg, #462e8d 0%, #7918bf 30%, #d946ef 70%, #f97316 100%);
    --gradient-purple: linear-gradient(135deg, #7918bf, #9332d1);
    --gradient-pink: linear-gradient(135deg, #d946ef, #ec4899);
    --gradient-orange: linear-gradient(135deg, #f97316, #ec4899);
    --gradient-deep: linear-gradient(135deg, #462e8d, #7918bf);
    --bg-main: #ffffff;
    --bg-light: #f8f6ff;
    --bg-dark: #0c0a1a;
    --bg-dark-card: #150f2e;
    --text-main: #0f0a2a;
    --text-body: #4a4565;
    --text-muted: #7c7599;
    --text-light: #f8fafc;
    --border-color: rgba(121, 24, 191, 0.1);
    --border-light: rgba(255, 255, 255, 0.08);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 30px;
    --shadow-sm: 0 2px 8px rgba(121, 24, 191, 0.06);
    --shadow-md: 0 8px 24px rgba(121, 24, 191, 0.1);
    --shadow-lg: 0 16px 48px rgba(121, 24, 191, 0.12);
    --shadow-glow: 0 0 60px rgba(121, 24, 191, 0.2);
    --max-width: 1200px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-main);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    width: 100%;
}

/* ===== Typography ===== */
h1,
h2,
h3,
h4,
h5 {
    color: var(--text-main);
    line-height: 1.2;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.25rem;
}

p {
    margin-bottom: 1rem;
    color: var(--text-body);
}

.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* ===== Preloader ===== */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease;
}

#preloader.hidden {
    opacity: 0;
    pointer-events: none;
}

.preloader-inner {
    text-align: center;
}

.preloader-logo img {
    height: 50px;
    margin-bottom: 1.5rem;
    animation: pulse 1.5s infinite;
}

.preloader-bar {
    width: 200px;
    height: 4px;
    background: rgba(121, 24, 191, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.preloader-progress {
    height: 100%;
    width: 0;
    background: var(--gradient-main);
    border-radius: 4px;
    animation: preload 1.5s ease forwards;
}

@keyframes preload {
    to {
        width: 100%;
    }
}

@keyframes pulse {

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

    50% {
        transform: scale(1.05);
    }
}

/* ===== Particles Canvas ===== */
#particles-canvas {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.4;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    padding: .65rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    transition: var(--transition);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-purple);
    color: #fff !important;
    box-shadow: 0 4px 20px rgba(121, 24, 191, .25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(121, 24, 191, .35);
    filter: brightness(1.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(121, 24, 191, .04);
}

.btn-ghost {
    background: transparent;
    color: var(--text-body);
}

.btn-ghost:hover {
    color: var(--primary);
}

.btn-white {
    background: #fff;
    color: var(--primary) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .15);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, .2);
}

.btn-lg {
    padding: .85rem 2rem;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn i {
    font-size: .85rem;
}

/* ===== Chips / Badges ===== */
.chip {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .4rem 1rem;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--primary);
    background: rgba(121, 24, 191, .06);
    border: 1px solid rgba(121, 24, 191, .1);
}

.chip-light {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .15);
}

/* ===== Glass Card ===== */
.glass-card {
    background: rgba(255, 255, 255, .7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(121, 24, 191, .08);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: rgba(121, 24, 191, .2);
    box-shadow: var(--shadow-md);
}

.glass-card-dark {
    background: rgba(255, 255, 255, .04);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.glass-card-dark:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .15);
}

/* ===== Section Defaults ===== */
section {
    padding: 5rem 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 3.5rem;
    position: relative;
}

.section-header .chip {
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, .85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    padding: .75rem 0;
    transition: var(--transition);
}

.header.scrolled {
    border-bottom-color: var(--border-color);
    box-shadow: var(--shadow-sm);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: .5rem;
}

.logo-img {
    height: 40px;
}

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

.nav-link {
    color: var(--text-body);
    font-weight: 500;
    font-size: .95rem;
    position: relative;
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    border-radius: 2px;
    transition: width .3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta-desktop {
    display: flex;
    gap: .75rem;
    align-items: center;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: .5rem;
    z-index: 1001;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--text-main);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, rgba(248, 246, 255, 1) 0%, rgba(240, 235, 255, 1) 40%, rgba(255, 245, 240, 1) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(121, 24, 191, .08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite alternate;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(249, 115, 22, .06) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 10s ease-in-out infinite alternate-reverse;
}

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

    100% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem 1rem;
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .1);
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: .3;
    }
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    max-width: 520px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.trust-avatars {
    display: flex;
}

.trust-avatars .avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .7rem;
    border: 2px solid #fff;
    margin-right: -8px;
}

.trust-info {
    font-size: .85rem;
    color: var(--text-muted);
}

.trust-info strong {
    color: var(--text-main);
}

.trust-stars {
    color: #f59e0b;
    font-size: .75rem;
    margin-bottom: 2px;
}

.hero-visual {
    position: relative;
}

.hero-mockup {
    position: relative;
}

.mockup-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, rgba(121, 24, 191, .1) 0%, transparent 60%);
    z-index: 0;
    animation: pulse 4s ease-in-out infinite;
}

.hero-dashboard-img {
    position: relative;
    z-index: 1;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    animation: floatMain 6s ease-in-out infinite;
}

@keyframes floatMain {

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

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

/* Float Cards */
.float-card {
    position: absolute;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: .6rem;
    padding: .7rem 1rem;
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(121, 24, 191, .06);
}

.float-card-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: #fff;
}

.float-card-icon.green {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.float-card-icon.purple {
    background: var(--gradient-purple);
}

.float-card-icon.orange {
    background: var(--gradient-orange);
}

.float-card-text strong {
    display: block;
    font-size: .85rem;
    color: var(--text-main);
}

.float-card-text span {
    font-size: .7rem;
    color: var(--text-muted);
}

.float-card-1 {
    top: 10%;
    left: -10%;
    animation: floatCard 5s ease-in-out infinite 0.5s;
}

.float-card-2 {
    bottom: 25%;
    right: -5%;
    animation: floatCard 6s ease-in-out infinite 1s;
}

.float-card-3 {
    top: 55%;
    left: -5%;
    animation: floatCard 7s ease-in-out infinite 1.5s;
}

@keyframes floatCard {

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

    50% {
        transform: translateY(-10px);
    }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ===== Logos Bar ===== */
.logos-bar {
    padding: 2rem 0;
    background: var(--bg-main);
    border-bottom: 1px solid rgba(121, 24, 191, .04);
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-size: .85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
}

.logos-track {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.logos-slide {
    display: flex;
    gap: 3rem;
    animation: scroll 25s linear infinite;
    width: max-content;
}

.logo-item {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--text-muted);
    font-size: .9rem;
    font-weight: 500;
    white-space: nowrap;
}

.logo-item i {
    font-size: 1.4rem;
    color: var(--text-muted);
    opacity: .6;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ===== Features ===== */
.features-section {
    background: var(--bg-light);
}

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

.feature-card {
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient-main);
    opacity: 0;
    transition: opacity .3s;
}

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

.feature-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1.25rem;
}

.gradient-1 {
    background: var(--gradient-purple);
}

.gradient-2 {
    background: var(--gradient-pink);
}

.gradient-3 {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.gradient-4 {
    background: var(--gradient-orange);
}

.gradient-5 {
    background: var(--gradient-deep);
}

.gradient-6 {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
}

.feature-card h3 {
    margin-bottom: .6rem;
}

.feature-card>p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.feature-checklist {
    display: flex;
    flex-direction: column;
    gap: .4rem;
}

.feature-checklist li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .85rem;
    font-weight: 500;
    color: var(--text-body);
}

.feature-checklist li i {
    color: var(--secondary);
    font-size: .7rem;
}

/* ===== How It Works ===== */
.how-it-works-section {
    background: var(--bg-main);
}

.steps-timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline-line {
    position: absolute;
    left: 32px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), var(--accent-orange));
    opacity: .15;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-number {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--gradient-main);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    z-index: 2;
    box-shadow: 0 4px 20px rgba(121, 24, 191, .25);
}

.step-card {
    flex: 1;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 14px;
    background: rgba(121, 24, 191, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--primary);
}

.step-content h3 {
    margin-bottom: .5rem;
}

.step-content p {
    font-size: .9rem;
    color: var(--text-muted);
    margin-bottom: .75rem;
}

.step-tag {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .75rem;
    font-weight: 600;
    color: var(--primary);
    background: rgba(121, 24, 191, .06);
    padding: .3rem .75rem;
    border-radius: 50px;
}

.steps-cta {
    text-align: center;
    margin-top: 2rem;
}

.steps-cta-note {
    display: block;
    margin-top: .75rem;
    font-size: .8rem;
    color: var(--text-muted);
}

/* ===== Channels Section (Infographic) ===== */
.channels-section {
    background: var(--bg-light);
    overflow: hidden;
}

/* Stats Bar */
.channel-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .06);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    overflow: hidden;
}

.channel-stat {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
    margin-bottom: .25rem;
}

.stat-label {
    font-size: .8rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, rgba(121, 24, 191, .15), transparent);
    flex-shrink: 0;
}

/* Central Hub Infographic */
.infographic-hub {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    padding: 1.5rem 0;
}

.hub-center {
    position: relative;
    z-index: 2;
}

.hub-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    box-shadow: 0 8px 32px rgba(121, 24, 191, .3);
    position: relative;
    z-index: 3;
}

.hub-icon {
    font-size: 1.5rem;
    margin-bottom: .15rem;
}

.hub-circle span {
    font-size: .6rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    text-align: center;
    line-height: 1.2;
}

.hub-pulse-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130px;
    height: 130px;
    border-radius: 50%;
    border: 2px solid rgba(121, 24, 191, .15);
    animation: hubPulse 2.5s ease-out infinite;
}

.hub-pulse-ring.ring-2 {
    width: 160px;
    height: 160px;
    animation-delay: .8s;
}

@keyframes hubPulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: .6;
    }

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

.hub-connectors {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.connector-line {
    position: absolute;
    background: linear-gradient(90deg, rgba(121, 24, 191, .06), rgba(121, 24, 191, .15), rgba(121, 24, 191, .06));
    border-radius: 2px;
}

.connector-line.line-left {
    height: 2px;
    width: 35%;
    right: 55%;
    top: 50%;
}

.connector-line.line-right {
    height: 2px;
    width: 35%;
    left: 55%;
    top: 50%;
}

.connector-line.line-top {
    width: 2px;
    height: 30px;
    top: 0;
    left: 50%;
}

/* Infographic Channel Groups */
.infographic-channels {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.channel-info-group {
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.channel-info-group:hover {
    border-color: rgba(121, 24, 191, .15);
    box-shadow: var(--shadow-md);
}

.channel-group-header {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(121, 24, 191, .06);
}

.channel-group-badge {
    width: 52px;
    height: 52px;
    min-width: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.channel-group-header h3 {
    font-size: 1.2rem;
    margin-bottom: .35rem;
}

.channel-group-desc {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Channel Detail Grid */
.channel-detail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .75rem;
    max-width: 100%;
    overflow: hidden;
}

.channel-detail-card {
    display: flex;
    align-items: center;
    gap: .75rem;
    padding: .85rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    border: 1px solid rgba(121, 24, 191, .04);
    transition: var(--transition);
    cursor: default;
    min-width: 0;
    overflow: hidden;
}

.channel-detail-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    background: #fff;
    border-color: rgba(121, 24, 191, .12);
}

.channel-detail-card>i {
    font-size: 1.6rem;
    min-width: 28px;
    text-align: center;
}

.channel-detail-info {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.channel-detail-info strong {
    font-size: .85rem;
    color: var(--text-main);
    line-height: 1.2;
}

.channel-detail-info span {
    font-size: .72rem;
    color: var(--text-muted);
    line-height: 1.4;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Connect Banner (Flow Diagram) */
.channel-connect-banner {
    padding: 2.5rem;
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 100%;
    overflow: hidden;
}

.connect-banner-visual {
    flex: 1;
    min-width: 0;
}

.connect-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    max-width: 100%;
}

.connect-node {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(121, 24, 191, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.connect-node.node-hub {
    width: 64px;
    height: 64px;
    background: var(--gradient-main);
    color: #fff;
    box-shadow: 0 4px 20px rgba(121, 24, 191, .25);
}

.connect-arrow {
    color: var(--primary);
    opacity: .3;
    font-size: 1.1rem;
}

.connect-labels {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
}

.connect-labels span {
    width: 56px;
    text-align: center;
    font-size: .65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .03em;
    line-height: 1.3;
}

.connect-labels span:nth-child(3) {
    width: 64px;
    color: var(--primary);
}

.connect-banner-text {
    flex: 1;
    min-width: 0;
}

.connect-banner-text h4 {
    font-size: 1.2rem;
    margin-bottom: .5rem;
}

.connect-banner-text p {
    font-size: .9rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.connect-banner-text strong {
    color: var(--primary);
}

/* ===== Differentiators (Infographic) ===== */
.differentiators-section {
    background: var(--bg-main);
}

/* Comparison Bar */
.diff-comparison-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .06);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    overflow: hidden;
}

.comp-item {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.comp-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(121, 24, 191, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--primary);
    flex-shrink: 0;
}

.comp-text strong {
    display: block;
    font-size: .85rem;
    color: var(--text-main);
    line-height: 1.2;
}

.comp-text span {
    font-size: .72rem;
    color: var(--text-muted);
}

.comp-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(to bottom, transparent, rgba(121, 24, 191, .12), transparent);
    flex-shrink: 0;
}

/* Infographic Grid */
.diff-infographic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.diff-info-card {
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .06);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.diff-info-card:hover {
    border-color: rgba(121, 24, 191, .15);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

/* Card Header */
.diff-info-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.diff-badge-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #fff;
}

.diff-tag {
    display: inline-block;
    padding: .25rem .7rem;
    background: rgba(121, 24, 191, .06);
    color: var(--primary);
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.diff-info-card h3 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.diff-desc {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1.25rem;
}

/* Highlights Grid */
.diff-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .5rem;
    margin-bottom: 1.25rem;
}

.diff-highlight {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .5rem .65rem;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: .78rem;
    color: var(--text-body);
    transition: var(--transition);
}

.diff-highlight:hover {
    background: rgba(121, 24, 191, .06);
}

.diff-highlight i {
    font-size: .75rem;
    color: var(--primary);
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

/* VS Comparison Badge */
.diff-vs-badge {
    display: flex;
    align-items: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid rgba(121, 24, 191, .08);
}

.vs-side {
    flex: 1;
    padding: .65rem .85rem;
    text-align: center;
}

.vs-side strong {
    display: block;
    font-size: .78rem;
    margin-bottom: .1rem;
}

.vs-side span {
    font-size: .68rem;
    color: var(--text-muted);
}

.vs-us {
    background: rgba(121, 24, 191, .04);
}

.vs-us strong {
    color: var(--primary);
}

.vs-them {
    background: rgba(0, 0, 0, .02);
}

.vs-them strong {
    color: var(--text-muted);
}

.vs-divider {
    padding: .4rem .6rem;
    font-size: .65rem;
    font-weight: 800;
    color: var(--text-muted);
    background: rgba(121, 24, 191, .06);
    text-transform: uppercase;
    letter-spacing: .05em;
    flex-shrink: 0;
}

/* Channel Strip */
.diff-channel-strip {
    display: flex;
    align-items: center;
    gap: .5rem;
    padding: .75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    justify-content: center;
}

.strip-icon {
    width: 36px;
    height: 36px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 0, 0, .04);
    transition: var(--transition);
}

.strip-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.strip-more {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(121, 24, 191, .08);
}

/* AI Metrics */
.diff-ai-metrics {
    display: flex;
    gap: 1rem;
    padding: .75rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    justify-content: center;
}

.ai-metric {
    text-align: center;
    flex: 1;
}

.ai-metric-value {
    font-size: 1.3rem;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.ai-metric-label {
    font-size: .68rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

/* Handoff Flow Diagram */
.diff-handoff-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    padding: .85rem 1rem;
    background: var(--bg-light);
    border-radius: var(--radius-md);
    flex-wrap: wrap;
}

.handoff-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .3rem;
}

.handoff-node {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #fff;
}

.handoff-step span {
    font-size: .65rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .03em;
    text-align: center;
    line-height: 1.3;
}

.handoff-arrow {
    color: var(--primary);
    opacity: .25;
    font-size: .6rem;
    display: flex;
    gap: .1rem;
}

/* ===== Live Chat (Infographic) ===== */
.livechat-section {
    background: var(--bg-light);
}

/* Live Chat Stats Bar */
.livechat-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .06);
    border-radius: var(--radius-lg);
    padding: 1.5rem 2rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    overflow: hidden;
}

.lc-stat {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.lc-stat-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(121, 24, 191, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: var(--primary);
    flex-shrink: 0;
}

.lc-stat strong {
    display: block;
    font-size: .85rem;
    color: var(--text-main);
    line-height: 1.2;
}

.lc-stat span {
    font-size: .72rem;
    color: var(--text-muted);
}

.lc-stat-divider {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(121, 24, 191, .12), transparent);
    flex-shrink: 0;
}

/* Live Chat Feature Cards Grid */
.livechat-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.lc-feature-card {
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .06);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}

.lc-feature-card:hover {
    border-color: rgba(121, 24, 191, .15);
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.lc-feature-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}

.lc-feature-badge {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: #fff;
}

.lc-feature-card h3 {
    font-size: 1.1rem;
    margin-bottom: .4rem;
}

.lc-feature-card>p {
    font-size: .85rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Feature Highlights */
.lc-feature-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .4rem;
}

.lc-highlight {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .76rem;
    color: var(--text-body);
    padding: .4rem .5rem;
    background: var(--bg-light);
    border-radius: 6px;
    transition: var(--transition);
}

.lc-highlight:hover {
    background: rgba(121, 24, 191, .06);
}

.lc-highlight i {
    font-size: .65rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* Workflow Banner */
.lc-workflow-banner {
    padding: 2.5rem;
    text-align: center;
    overflow: hidden;
}

.lc-workflow-visual h4 {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
}

.lc-workflow-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.lc-flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .35rem;
    min-width: 80px;
}

.lc-flow-node {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .1);
    transition: var(--transition);
}

.lc-flow-node:hover {
    transform: scale(1.1);
}

.lc-flow-step strong {
    font-size: .75rem;
    color: var(--text-main);
    line-height: 1.2;
}

.lc-flow-step span {
    font-size: .65rem;
    color: var(--text-muted);
}

.lc-flow-arrow {
    color: var(--primary);
    opacity: .3;
    font-size: 1.1rem;
}

/* Integration Icons Strip */
.lc-integrations {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(121, 24, 191, .06);
    text-align: center;
}

.lc-integrations-label {
    display: block;
    font-size: .75rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: .06em;
    margin-bottom: .75rem;
}

.lc-integration-icons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    flex-wrap: wrap;
}

.lc-int-icon {
    width: 38px;
    height: 38px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(0, 0, 0, .04);
    transition: var(--transition);
}

.lc-int-icon:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.lc-int-more {
    font-size: .7rem;
    font-weight: 700;
    color: var(--primary) !important;
    background: rgba(121, 24, 191, .08);
    border: none;
}

/* ===== Forms Section ===== */
.forms-section {
    background: var(--bg-main);
}

.forms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-card {
    padding: 2rem;
    text-align: center;
}

.form-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    margin: 0 auto 1.25rem;
}

.form-card:hover {
    transform: translateY(-5px);
}

.form-builder-banner {
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.fbb-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.fbb-content i {
    font-size: 1.8rem;
    color: var(--primary);
}

.fbb-content h4 {
    margin-bottom: .2rem;
}

.fbb-content p {
    font-size: .9rem;
    color: var(--text-muted);
    margin: 0;
}

/* ===== Integrations (Infographic) ===== */
.integrations-section {
    background: var(--bg-light);
}

/* Integration Stats Bar */
.int-stats-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.75rem;
    flex-wrap: wrap;
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .06);
    border-radius: var(--radius-lg);
    padding: 1.25rem 2rem;
    margin-bottom: 2.5rem;
    box-shadow: var(--shadow-sm);
    max-width: 100%;
    overflow: hidden;
}

.int-stat-item {
    text-align: center;
}

.int-stat-item strong {
    display: block;
    font-size: 1rem;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.int-stat-item span {
    font-size: .7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .04em;
}

.int-stat-sep {
    width: 1px;
    height: 32px;
    background: linear-gradient(to bottom, transparent, rgba(121, 24, 191, .12), transparent);
    flex-shrink: 0;
}

/* Integration Infographic Grid */
.int-infographic-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.int-info-card {
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .06);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: relative;
}

.int-info-card:hover {
    border-color: rgba(121, 24, 191, .15);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

/* Card Header */
.int-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: .75rem;
}

.int-card-icon {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    color: #fff;
}

.int-setup-badge {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .25rem .65rem;
    background: rgba(121, 24, 191, .05);
    color: var(--text-muted);
    border-radius: 50px;
    font-size: .65rem;
    font-weight: 600;
}

.int-setup-badge i {
    font-size: .55rem;
    color: var(--primary);
}

.int-info-card h3 {
    font-size: 1.05rem;
    margin-bottom: .3rem;
}

/* Category Tag */
.int-category-tag {
    display: inline-block;
    padding: .15rem .55rem;
    background: rgba(121, 24, 191, .06);
    color: var(--primary);
    border-radius: 50px;
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
    margin-bottom: .65rem;
}

.int-info-card>p {
    font-size: .82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Feature Checklist */
.int-card-features {
    display: flex;
    flex-direction: column;
    gap: .35rem;
}

.int-feat {
    display: flex;
    align-items: center;
    gap: .4rem;
    font-size: .74rem;
    color: var(--text-body);
    padding: .3rem .5rem;
    background: var(--bg-light);
    border-radius: 6px;
    transition: var(--transition);
}

.int-feat:hover {
    background: rgba(121, 24, 191, .06);
}

.int-feat i {
    font-size: .6rem;
    color: var(--primary);
    flex-shrink: 0;
}

/* API Banner */
.int-api-banner {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2.5rem;
    overflow: hidden;
}

.int-api-visual {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    position: relative;
}

.api-node-center {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 4px 20px rgba(121, 24, 191, .25);
    z-index: 2;
}

.api-orbiting-icons {
    position: absolute;
    inset: 0;
    animation: orbitSpin 30s linear infinite;
}

.api-orbit-icon {
    position: absolute;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--color);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, .04);
    top: 50%;
    left: 50%;
    transform: rotate(var(--angle)) translateX(80px) rotate(calc(-1 * var(--angle)));
    animation: orbitCounterSpin 30s linear infinite;
}

@keyframes orbitSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes orbitCounterSpin {
    from {
        transform: rotate(var(--angle)) translateX(80px) rotate(calc(-1 * var(--angle)));
    }

    to {
        transform: rotate(calc(var(--angle) + 360deg)) translateX(80px) rotate(calc(-1 * (var(--angle) + 360deg)));
    }
}

.int-api-text h4 {
    font-size: 1.15rem;
    margin-bottom: .5rem;
}

.int-api-text>p {
    font-size: .88rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin-bottom: 1rem;
}

.int-api-text strong {
    color: var(--primary);
}

.int-api-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: .5rem;
}

.int-api-highlights span {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    font-size: .76rem;
    color: var(--text-body);
    padding: .35rem .6rem;
    background: var(--bg-light);
    border-radius: 6px;
}

.int-api-highlights span i {
    font-size: .6rem;
    color: var(--primary);
}

/* ===== Pricing ===== */
.pricing-section {
    background: var(--bg-main);
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.toggle-label {
    font-size: .95rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-label.active {
    color: var(--text-main);
}

.save-badge {
    background: var(--gradient-orange);
    color: #fff;
    font-size: .65rem;
    padding: .15rem .5rem;
    border-radius: 50px;
    margin-left: .3rem;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: var(--gradient-purple);
    border-radius: 50px;
    position: relative;
    cursor: pointer;
}

.toggle-knob {
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, .1);
}

.toggle-switch.active .toggle-knob {
    left: 24px;
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.pricing-card {
    padding: 2.5rem 2rem;
    position: relative;
    text-align: center;
}

.pricing-card.popular {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.04);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #fff;
    padding: .3rem 1rem;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .05em;
}

.pricing-header h3 {
    margin-bottom: .3rem;
}

.pricing-header p {
    font-size: .85rem;
    color: var(--text-muted);
}

.pricing-price {
    margin: 1.5rem 0;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}

.price-period {
    font-size: .9rem;
    color: var(--text-muted);
}

.pricing-features {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: .5rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: .5rem;
    font-size: .9rem;
    color: var(--text-body);
}

.pricing-features li i {
    color: var(--secondary);
    font-size: .7rem;
}



/* ===== FAQ ===== */
.faq-section {
    background: var(--bg-light);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: .75rem;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(121, 24, 191, .06);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-main);
    text-align: left;
}

.faq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(121, 24, 191, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .65rem;
    color: var(--primary);
    transition: transform .3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: #fff;
}

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

.faq-answer p {
    padding: 0 1.5rem 1.25rem;
    color: var(--text-muted);
    font-size: .95rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* ===== Final CTA ===== */
.final-cta-section {
    padding: 3rem 0 5rem;
    background: var(--bg-main);
}

.final-cta-card {
    position: relative;
    overflow: hidden;
    background: var(--gradient-main);
    padding: 4rem;
    border-radius: var(--radius-xl);
    text-align: center;
    color: #fff;
    box-shadow: var(--shadow-lg);
}

.final-cta-card h2,
.final-cta-card p {
    color: #fff;
}

.final-cta-card p {
    opacity: .9;
    max-width: 500px;
    margin: 0 auto 2rem;
}

.cta-glow {
    position: absolute;
    top: -50%;
    right: -30%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 255, 255, .1) 0%, transparent 60%);
    border-radius: 50%;
}

.cta-actions {
    position: relative;
    z-index: 2;
}

.cta-note {
    display: block;
    margin-top: 1rem;
    font-size: .8rem;
    opacity: .7;
}

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    padding: 4rem 0 2rem;
    color: rgba(255, 255, 255, .6);
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 36px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    font-size: .9rem;
    margin-bottom: 1.25rem;
}

.footer-social {
    display: flex;
    gap: .6rem;
}

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: .85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: .6rem;
}

.footer-col a {
    font-size: .9rem;
    color: rgba(255, 255, 255, .5);
    transition: var(--transition);
}

.footer-col a:hover {
    color: #fff;
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .85rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .4);
}

.footer-bottom a:hover {
    color: #fff;
}

.dot-sep {
    color: rgba(255, 255, 255, .2);
}

/* ===== Back to Top ===== */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-purple);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
    font-size: .9rem;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

/* ===== Animations ===== */
[data-animate] {
    opacity: 0;
    transition: opacity .7s ease, transform .7s ease;
}

[data-animate="fade-up"] {
    transform: translateY(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* ===== Responsive ===== */
@media(max-width:1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-description {
        margin: 0 auto 2rem;
        max-width: none;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

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

    .channel-connect-banner {
        flex-direction: column;
        text-align: center;
    }

    .connect-banner-text {
        text-align: center;
    }

    .channel-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

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

    .livechat-stats {
        flex-wrap: wrap;
        gap: 1.25rem;
    }

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

    .int-api-banner {
        flex-direction: column;
        text-align: center;
    }

    .int-api-highlights {
        justify-content: center;
    }

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

    .pricing-card.popular {
        transform: none;
    }


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

@media(max-width:768px) {
    section {
        padding: 3.5rem 0;
    }

    .features-grid,
    .forms-grid,
    .diff-infographic-grid,
    .int-infographic-grid {
        grid-template-columns: 1fr;
    }

    .int-stats-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .int-stat-sep {
        width: 60px;
        height: 1px;
    }

    .int-api-visual {
        display: none;
    }

    .int-api-banner {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }

    .int-api-highlights {
        justify-content: center;
    }

    .diff-comparison-bar {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .comp-divider {
        width: 60px;
        height: 1px;
    }

    .diff-highlights {
        grid-template-columns: 1fr;
    }

    .diff-vs-badge {
        flex-direction: column;
    }

    .diff-channel-strip {
        flex-wrap: wrap;
    }

    .channel-detail-grid {
        grid-template-columns: 1fr;
    }

    .channel-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .stat-divider {
        width: 60px;
        height: 1px;
    }

    .infographic-hub {
        display: none;
    }

    .channel-group-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .connect-flow {
        gap: .4rem;
    }

    .connect-node {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .connect-node.node-hub {
        width: 48px;
        height: 48px;
    }

    .connect-labels span {
        width: 40px;
        font-size: .55rem;
    }

    .connect-labels span:nth-child(3) {
        width: 48px;
    }

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

    .livechat-stats {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .lc-stat-divider {
        width: 60px;
        height: 1px;
    }

    .lc-feature-highlights {
        grid-template-columns: 1fr;
    }

    .lc-workflow-flow {
        gap: .6rem;
    }

    .lc-flow-node {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .lc-flow-step {
        min-width: 60px;
    }

    .lc-workflow-banner {
        padding: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 2rem;
        box-shadow: var(--shadow-lg);
        text-align: center;
        gap: 1rem;
        z-index: 999;
        border-top: 1px solid var(--border-color);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-cta-mobile {
        display: flex;
        flex-direction: column;
        gap: .75rem;
        width: 100%;
    }

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

    .hamburger {
        display: flex;
    }

    .step-card {
        flex-direction: column;
    }

    .form-builder-banner {
        flex-direction: column;
        text-align: center;
    }

    .fbb-content {
        flex-direction: column;
        text-align: center;
    }

    .float-card {
        display: none;
    }
}