/* ═══════════════════════════════════════════════════════════
   ClassoNix — Premium SaaS Marketing Website
   Design System inspired by Sastik Home-2
═══════════════════════════════════════════════════════════ */

/* ── CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
    /* Brand Colors */
    --primary:        #533AFD;
    --primary-dark:   #3B28D8;
    --primary-light:  #7B68FF;
    --primary-glow:   rgba(83, 58, 253, 0.15);
    --lavender:       #D4CEFF;
    --lavender-dark:  #B8AEFF;

    /* Neutral */
    --white:   #FFFFFF;
    --dark:    #09011C;
    --dark-2:  #1A0F3C;
    --body-bg: #FAFAFA;

    /* Text */
    --text-h:    #09011C;
    --text-body: #4B4B6B;
    --text-muted:#7A7A9A;

    /* Card Backgrounds */
    --card-purple: #533AFD;
    --card-green:  #E4F6EE;
    --card-cream:  #FFF8E7;
    --card-pink:   #FFF0F5;
    --card-indigo: #EEF0FF;
    --card-pale:   #F0FDF4;
    --card-white:  #FFFFFF;

    /* Borders & Shadows */
    --border:      rgba(83, 58, 253, 0.10);
    --border-soft: #EBEBFA;
    --shadow-sm:   0 2px 12px rgba(83, 58, 253, 0.06);
    --shadow:      0 8px 32px rgba(83, 58, 253, 0.10);
    --shadow-lg:   0 24px 64px rgba(83, 58, 253, 0.15);

    /* Layout */
    --radius-sm:  8px;
    --radius:    16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s var(--ease);
}

/* ── RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.65;
    color: var(--text-body);
    background: var(--body-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; display: block; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY UTILITIES ──────────────────────────────── */
.text-grad {
    background: linear-gradient(135deg, var(--primary) 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── LAYOUT WRAPPERS ────────────────────────────────────── */
.body_wrap, .body-container { width: 100%; }
.body-inner { width: 100%; }

/* ── CONTAINER ─────────────────────────────────────────── */
.container { max-width: 1240px; padding: 0 24px; margin: 0 auto; }

/* ── BUTTONS ───────────────────────────────────────────── */
.fintech-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary);
    color: #fff !important;
    font-weight: 700;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    transition: var(--transition);
    letter-spacing: -0.2px;
    white-space: nowrap;
}
.fintech-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(83, 58, 253, 0.35);
}
.fintech-btn--lg { padding: 18px 36px; font-size: 16px; }
.fintech-btn--white {
    background: var(--white);
    color: var(--primary) !important;
    border-color: var(--white);
}
.fintech-btn--white:hover {
    background: var(--lavender);
    border-color: var(--lavender);
    box-shadow: none;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--text-h) !important;
    font-weight: 600;
    font-size: 15px;
    padding: 14px 28px;
    border-radius: 50px;
    border: 2px solid var(--border-soft);
    transition: var(--transition);
}
.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary) !important;
    background: var(--primary-glow);
}

.btn-login {
    display: inline-flex;
    align-items: center;
    color: var(--text-h);
    font-weight: 600;
    font-size: 15px;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}
.btn-login:hover { color: var(--primary); }

/* ── SECTION HEADER SYSTEM ──────────────────────────────── */
.section-tag {
    display: inline-block;
    background: var(--primary-glow);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    color: var(--text-h);
    line-height: 1.2;
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 17px;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto 0;
    line-height: 1.7;
}

.section-head { margin-bottom: 60px; }

/* ── LINE PATTERN BACKGROUND ────────────────────────────── */
.xb-line-pattern {
    position: relative;
    background-image:
        linear-gradient(to right, rgba(83, 58, 253, 0.04) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(83, 58, 253, 0.04) 1px, transparent 1px);
    background-size: 64px 64px;
}

/* ═══════════════════════════════════════════════════════════
   PRELOADER
═══════════════════════════════════════════════════════════ */
.xb-preloader {
    position: fixed;
    inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s var(--ease), visibility 0.5s var(--ease);
}
.xb-preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.xb-preloader-inner { text-align: center; }
.xb-preloader-inner img {
    width: 64px;
    height: 64px;
    object-fit: contain;
    border-radius: 16px;
    margin: 0 auto 16px;
    animation: preloaderPulse 1s ease-in-out infinite;
}
.xb-preloader-bar {
    width: 120px;
    height: 3px;
    background: var(--lavender);
    border-radius: 10px;
    margin: 0 auto;
    overflow: hidden;
}
.xb-preloader-progress {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    animation: preloaderBar 1.5s ease-in-out forwards;
}
@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
@keyframes preloaderBar {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* ═══════════════════════════════════════════════════════════
   HEADER
═══════════════════════════════════════════════════════════ */
.xb-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    transition: var(--transition);
}

/* At top — fully transparent, no blur */
.header-inner {
    background: transparent;
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
    border-bottom: 1px solid transparent;
    transition: background 0.4s var(--ease),
                backdrop-filter 0.4s var(--ease),
                -webkit-backdrop-filter 0.4s var(--ease),
                border-bottom-color 0.4s var(--ease),
                box-shadow 0.4s var(--ease);
}

/* Scrolled — glassmorphism */
.xb-header.scrolled .header-inner {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow:
        0 8px 32px rgba(83, 58, 253, 0.10),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.header-row {
    display: flex;
    align-items: center;
    gap: 32px;
    padding: 18px 0;
    transition: padding 0.4s var(--ease);
}
.xb-header.scrolled .header-row { padding: 10px 0; }

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}
.logo-img {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-radius: 8px;
}
.logo-text {
    font-size: 22px;
    font-weight: 600;
    color: var(--text-h);
    letter-spacing: -0.5px;
}
.logo-text b { color: var(--primary); font-weight: 800; }

/* Nav */
.header-nav { flex: 1; }
.nav-list {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.nav-link-item {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--transition);
}
.nav-link-item:hover { color: var(--primary); background: var(--primary-glow); }

/* Header Action */
.header-action {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

/* Mobile Toggle */
.xb-mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    padding: 4px;
    flex-shrink: 0;
}
.xb-mobile-toggle span {
    display: block;
    height: 2px;
    background: var(--text-h);
    border-radius: 2px;
    transition: var(--transition);
}
.xb-mobile-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.xb-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.xb-mobile-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Header corner dots */
.header-dot {
    position: absolute;
    width: 80px;
    height: 80px;
    top: 0;
    background-image: radial-gradient(circle, rgba(83, 58, 253, 0.18) 1px, transparent 1px);
    background-size: 10px 10px;
    opacity: 0.6;
    pointer-events: none;
}
.header-dot--tl { left: 0; }
.header-dot--tr { right: 0; }

/* Mobile Menu */
.xb-mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(9, 1, 28, 0.6);
    z-index: 999;
    backdrop-filter: blur(4px);
}
.xb-mobile-menu.open { display: block; }
.mobile-menu-inner {
    position: absolute;
    top: 0; right: 0;
    width: min(320px, 90vw);
    height: 100%;
    background: var(--white);
    padding: 80px 24px 32px;
    box-shadow: -8px 0 40px rgba(0,0,0,0.15);
    animation: slideInRight 0.3s var(--ease);
    overflow-y: auto;
}
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 4px; margin-bottom: 32px; }
.mobile-nav-list a {
    display: block;
    padding: 12px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-h);
    border-radius: 10px;
    transition: var(--transition);
}
.mobile-nav-list a:hover { background: var(--primary-glow); color: var(--primary); }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════ */
.xb-hero-sec {
    padding: 140px 0 60px;
    position: relative;
    overflow: hidden;
}

.hero-content { position: relative; z-index: 2; }

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    color: var(--text-body);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}
.hero-tag-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    display: inline-block;
    animation: tagPulse 2s ease-in-out infinite;
}
@keyframes tagPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(83, 58, 253, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(83, 58, 253, 0); }
}

.hero-headline {
    font-size: clamp(36px, 5.5vw, 72px);
    font-weight: 800;
    color: var(--text-h);
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 24px;
}

/* Bracketed selection box around key phrase */
.hero-box-wrap {
    position: relative;
    display: inline-block;
    padding: 4px 14px 4px 10px;
    border: 2px dashed var(--primary);
    border-radius: 6px;
}

/* Corner handle squares — exactly like the CRM screenshot */
.hero-box-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
}
.hero-box-corner--tl { top: -5px;    left: -5px;  }
.hero-box-corner--tr { top: -5px;    right: -5px; }
.hero-box-corner--bl { bottom: -5px; left: -5px;  }
.hero-box-corner--br { bottom: -5px; right: -5px; }

.hero-subtext {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-muted);
}
.trust-sep { opacity: 0.4; }
.trust-item { display: flex; align-items: center; gap: 6px; }

/* Floating Feature Badges */
.hero-float-badges {
    position: relative;
    height: 100px;
    margin-top: 60px;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}

.float-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-h);
    box-shadow: var(--shadow);
    white-space: nowrap;
}
.fb-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-glow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 14px;
    flex-shrink: 0;
}

.float-badge--1 { left: 0; top: 0; animation: floatY 3s ease-in-out infinite; }
.float-badge--2 { left: 25%; top: 55px; animation: floatY 3.5s ease-in-out infinite 0.5s; }
.float-badge--3 { right: 25%; top: 0; animation: floatY 4s ease-in-out infinite 1s; }
.float-badge--4 { right: 0; top: 55px; animation: floatY 3.2s ease-in-out infinite 0.3s; }

@keyframes floatY {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

/* ═══════════════════════════════════════════════════════════
   DASHBOARD TAB VIEWER
═══════════════════════════════════════════════════════════ */
.xb-dashboard-sec {
    padding: 60px 0 100px;
}

.fs-dashboard-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.tab-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 50px;
    border: 1.5px solid var(--border-soft);
    background: var(--white);
    color: var(--text-body);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.tab-pill:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-glow);
}
.tab-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(83, 58, 253, 0.3);
}
.tab-pill i { font-size: 13px; }

/* Browser Frame */
.fs-dashboard-frame {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(83, 58, 253, 0.18);
    border: 1px solid var(--border-soft);
}

.browser-chrome {
    background: #F0EFF8;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--border-soft);
}
.browser-dots { display: flex; gap: 6px; }
.bdot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.bdot--red    { background: #FF5F57; }
.bdot--yellow { background: #FEBC2E; }
.bdot--green  { background: #28C840; }

.browser-url {
    flex: 1;
    background: var(--white);
    border-radius: 6px;
    padding: 6px 12px;
    font-size: 13px;
    color: var(--text-muted);
    max-width: 300px;
    margin: 0 auto;
}

.browser-viewport { position: relative; }

.tab-pane {
    display: none;
    width: 100%;
}
.tab-pane.active { display: block; }
.tab-pane img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 600px;
    object-fit: cover;
    object-position: top;
}

/* ═══════════════════════════════════════════════════════════
   BRAND / TRUST BAR
═══════════════════════════════════════════════════════════ */
.xb-brand-sec {
    padding: 70px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    background: var(--white);
    overflow: hidden;
}

.brand-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 32px;
}

.marquee-outer { overflow: hidden; }

.marquee-track {
    display: flex;
    width: max-content;
    gap: 16px;
}
.marquee-track--fwd { animation: marqueeScrollFwd 25s linear infinite; }
.marquee-track--rev { animation: marqueeScrollRev 25s linear infinite; }

@keyframes marqueeScrollFwd {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}
@keyframes marqueeScrollRev {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.marquee-track:hover { animation-play-state: paused; }

.marquee-slide {
    display: flex;
    gap: 16px;
    padding: 0 8px;
}

.school-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--body-bg);
    border: 1.5px solid var(--border-soft);
    border-radius: 50px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-h);
    white-space: nowrap;
    transition: var(--transition);
}
.school-badge i { color: var(--primary); font-size: 13px; }
.school-badge:hover {
    border-color: var(--primary);
    background: var(--primary-glow);
    color: var(--primary);
}

/* ═══════════════════════════════════════════════════════════
   ANIMATED BACKGROUND LAYER
═══════════════════════════════════════════════════════════ */
.xb-bg-anim {
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* Moving diagonal lines */
.bg-lines {
    position: absolute;
    inset: -50%;
    background-image: repeating-linear-gradient(
        115deg,
        transparent 0,
        transparent 80px,
        rgba(83, 58, 253, 0.025) 80px,
        rgba(83, 58, 253, 0.025) 81px
    );
    animation: bgLinesMove 30s linear infinite;
}
@keyframes bgLinesMove {
    0%   { transform: translate(0, 0); }
    100% { transform: translate(80px, 80px); }
}

/* Floating gradient orbs */
.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
    animation: orbFloat 18s ease-in-out infinite;
}
.bg-orb--1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(83, 58, 253, 0.35), transparent 70%);
    top: -120px; left: -120px;
}
.bg-orb--2 {
    width: 520px; height: 520px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.25), transparent 70%);
    top: 40%; right: -160px;
    animation-delay: -6s;
    animation-duration: 22s;
}
.bg-orb--3 {
    width: 420px; height: 420px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.22), transparent 70%);
    bottom: -100px; left: 30%;
    animation-delay: -12s;
    animation-duration: 26s;
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33%      { transform: translate(40px, -30px) scale(1.08); }
    66%      { transform: translate(-30px, 40px) scale(0.95); }
}

/* Animated SVG flowing paths with traveling dots */
.bg-svg-flow {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 1;
}

.flow-path {
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.flow-path--1 { stroke: url(#flowGrad1); }
.flow-path--2 { stroke: url(#flowGrad2); }
.flow-path--3 { stroke: url(#flowGrad3); }

/* Traveling glowing dots */
.flow-dot {
    opacity: 0;
}
.flow-dot--1 { fill: #533AFD; animation: dotFade 7s ease-in-out infinite 0s; }
.flow-dot--2 { fill: #A855F7; animation: dotFade 9s ease-in-out infinite -3s; }
.flow-dot--3 { fill: #6366F1; animation: dotFade 8s ease-in-out infinite -5s; }

@keyframes dotFade {
    0%   { opacity: 0; }
    10%  { opacity: 1; }
    85%  { opacity: 1; }
    100% { opacity: 0; }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .bg-lines, .bg-orb, .flow-path, .flow-dot { animation: none !important; }
    .flow-dot { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SOLUTION / COMPARISON SECTION
═══════════════════════════════════════════════════════════ */
.xb-solution-sec {
    padding: 100px 0;
    background:
        radial-gradient(ellipse at top, rgba(83, 58, 253, 0.10), transparent 60%),
        radial-gradient(ellipse at bottom, rgba(168, 85, 247, 0.08), transparent 60%),
        #EBE8FF;
    position: relative;
    overflow: hidden;
}

/* Outer wrapper with dashed border + corner markers */
.cmp-outer {
    position: relative;
    max-width: 940px;
    margin: 0 auto;
    border: 1.5px dashed rgba(83, 58, 253, 0.28);
    border-radius: 28px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

/* Corner square markers */
.cmp-corner {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--primary);
    border-radius: 2px;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(83, 58, 253, 0.12);
}
.cmp-corner--tl { top: -5px;  left: -5px;  }
.cmp-corner--tr { top: -5px;  right: -5px; }
.cmp-corner--bl { bottom: -5px; left: -5px;  }
.cmp-corner--br { bottom: -5px; right: -5px; }

/* Two-column grid */
.cmp-grid {
    display: flex;
    align-items: stretch;
    min-height: 500px;
}

/* Columns */
.cmp-col {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* LEFT — Other Schools (dull background, but icons keep their red) */
.cmp-col--others {
    background: #F4F4F8;
}

/* RIGHT — ClassoNix (vibrant gradient + glow) */
.cmp-col--classonix {
    background:
        linear-gradient(180deg, rgba(83, 58, 253, 0.08) 0%, rgba(168, 85, 247, 0.10) 100%);
    overflow: hidden;
    box-shadow: inset 0 0 60px rgba(83, 58, 253, 0.08);
}
.cmp-col-glow {
    position: absolute;
    top: -40%;
    right: -30%;
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, rgba(83, 58, 253, 0.25), transparent 70%);
    filter: blur(40px);
    pointer-events: none;
    animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50%      { opacity: 1; transform: scale(1.15); }
}

/* Winner badge */
.cmp-winner-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #F59E0B, #F97316);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.4);
    z-index: 3;
    animation: badgeBounce 2.5s ease-in-out infinite;
}
@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50%      { transform: translateY(-3px); }
}

/* Vertical divider between columns */
.cmp-vdivider {
    width: 1.5px;
    background: linear-gradient(180deg, transparent, rgba(83, 58, 253, 0.25), transparent);
    flex-shrink: 0;
}

/* Column header */
.cmp-col-head {
    margin: 24px 24px 8px;
    padding: 16px 20px;
    background: #FFFFFF;
    border: 1.5px solid rgba(83, 58, 253, 0.10);
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 14px rgba(83, 58, 253, 0.06);
}
.cmp-col--classonix .cmp-col-head {
    border: 1.5px solid transparent;
    background:
        linear-gradient(#FFFFFF, #FFFFFF) padding-box,
        linear-gradient(135deg, var(--primary), #A855F7) border-box;
    box-shadow: 0 6px 24px rgba(83, 58, 253, 0.18);
}
.cmp-col--classonix .cmp-head-label {
    background: linear-gradient(135deg, var(--primary), #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cmp-head-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}
.cmp-head-icon--gray {
    background: #E5E5EC;
    color: #8A8A9A;
}

.cmp-brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    border-radius: 10px;
    flex-shrink: 0;
}

.cmp-head-label {
    display: block;
    font-size: 17px;
    font-weight: 800;
    color: var(--text-h);
    letter-spacing: -0.3px;
    line-height: 1.2;
}
.cmp-col--others .cmp-head-label { color: #6A6A7A; }

.cmp-head-sub {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 2px;
}
.cmp-col--others .cmp-head-sub { color: #9A9AAB; }

/* List of comparison items */
.cmp-list {
    flex: 1;
    padding: 8px 0 0;
}

.cmp-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 28px;
    font-size: 14.5px;
    font-weight: 500;
    color: var(--text-body);
    border-bottom: 1px solid rgba(83, 58, 253, 0.06);
    line-height: 1.45;
    transition: background 0.2s ease, padding-left 0.2s ease;
}
.cmp-list li:last-child { border-bottom: none; }

.cmp-col--others .cmp-list li {
    color: #8A8A9A;
}
.cmp-col--others .cmp-list li:hover  { background: rgba(0, 0, 0, 0.02); }
.cmp-col--classonix .cmp-list li:hover {
    background: rgba(83, 58, 253, 0.06);
    padding-left: 32px;
}

/* Icons */
.cmp-x {
    font-size: 17px;
    color: #DE3D3D;
    flex-shrink: 0;
}
.cmp-check {
    font-size: 17px;
    color: var(--primary);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(83, 58, 253, 0.3));
}

/* FREE setup highlight */
.cmp-check--free {
    color: #10B981;
    filter: drop-shadow(0 2px 6px rgba(16, 185, 129, 0.4));
}
.cmp-free-text {
    color: #10B981;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.3px;
}

/* Stat rows (integrated into the list) */
.cmp-stat-row {
    background: rgba(0, 0, 0, 0.03);
    font-size: 15px !important;
}
.cmp-stat-row--brand {
    background: rgba(83, 58, 253, 0.08);
}
.cmp-stat-text {
    font-size: 14.5px;
    color: var(--text-body);
}
.cmp-stat-text b {
    font-size: 17px;
    font-weight: 800;
    color: var(--text-h);
}
.cmp-col--others .cmp-stat-text b { color: #DE3D3D; }
.cmp-stat-row--brand .cmp-stat-text b {
    background: linear-gradient(135deg, var(--primary), #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Responsive: stack on mobile */
@media (max-width: 640px) {
    .cmp-grid { flex-direction: column; }
    .cmp-vdivider { width: auto; height: 1.5px; }
    .cmp-col--others { border-radius: 0; }
    .cmp-winner-badge { top: 12px; right: 12px; }
}

/* ═══════════════════════════════════════════════════════════
   FEATURES BENTO GRID
═══════════════════════════════════════════════════════════ */
.xb-feature-sec {
    padding: 100px 0;
    background: var(--white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
}

/* Row 1: Large (8) + Medium (4) */
.bento-grid > *:nth-child(1) { grid-column: span 8; min-height: 360px; }
.bento-grid > *:nth-child(2) { grid-column: span 4; }

/* Row 2: Three equal (4 each) */
.bento-grid > *:nth-child(3) { grid-column: span 4; }
.bento-grid > *:nth-child(4) { grid-column: span 4; }
.bento-grid > *:nth-child(5) { grid-column: span 4; }

/* Row 3: Two equal (6 each) */
.bento-grid > *:nth-child(6) { grid-column: span 6; }
.bento-grid > *:nth-child(7) { grid-column: span 6; }

.bento-card {
    border-radius: var(--radius-lg);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.bento-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

/* Colors */
.bento-card--purple {
    background: var(--card-purple);
    color: var(--white);
}
.bento-card--green  { background: var(--card-green); }
.bento-card--cream  { background: var(--card-cream); }
.bento-card--pink   { background: var(--card-pink); }
.bento-card--indigo { background: var(--card-indigo); }
.bento-card--pale   { background: var(--card-pale); }
.bento-card--white  { background: var(--card-white); border: 1.5px solid var(--border-soft); }

.bento-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 20px;
}
.bento-card--purple .bento-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.bento-card--green  .bento-icon { background: rgba(16,185,129,0.12); color: #10B981; }
.bento-card--cream  .bento-icon { background: rgba(245,158,11,0.12); color: #D97706; }
.bento-card--pink   .bento-icon { background: rgba(236,72,153,0.12); color: #DB2777; }
.bento-card--indigo .bento-icon { background: rgba(83,58,253,0.12); color: var(--primary); }
.bento-card--pale   .bento-icon { background: rgba(16,185,129,0.10); color: #059669; }
.bento-card--white  .bento-icon { background: var(--primary-glow); color: var(--primary); }

.bento-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 10px;
    line-height: 1.3;
}
.bento-card--purple h3 { color: var(--white); }

.bento-card p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.6;
}
.bento-card--purple p { color: rgba(255,255,255,0.75); }

/* Large card extras */
.bento-card--large { display: flex; gap: 32px; align-items: flex-start; }
.bento-body { flex: 1; }
.bento-visual { flex: 1; display: flex; align-items: center; justify-content: center; }
.bento-screenshot {
    border-radius: var(--radius);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    max-height: 260px;
    object-fit: cover;
    object-position: top;
    width: 100%;
}

.bento-stats-row {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.bento-mini-stat { display: flex; flex-direction: column; gap: 2px; }
.bms-num { font-size: 24px; font-weight: 800; color: var(--white); }
.bms-label { font-size: 12px; color: rgba(255,255,255,0.6); }

.bento-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.bento-tag {
    background: rgba(83,58,253,0.08);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
}
.bento-card--green .bento-tag  { background: rgba(16,185,129,0.10); color: #059669; }
.bento-card--cream .bento-tag  { background: rgba(245,158,11,0.10); color: #B45309; }

/* ═══════════════════════════════════════════════════════════
   SECURITY SECTION
═══════════════════════════════════════════════════════════ */
.xb-security-sec {
    padding: 100px 0;
    background: var(--body-bg);
}

.security-inner {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 60px;
    border: 1.5px solid var(--border-soft);
    overflow: hidden;
}

.security-list { display: flex; flex-direction: column; gap: 24px; margin-top: 32px; }
.sec-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}
.sec-item-icon {
    width: 44px;
    height: 44px;
    background: var(--primary-glow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 18px;
    flex-shrink: 0;
}
.sec-item h4 { font-size: 16px; font-weight: 700; color: var(--text-h); margin-bottom: 4px; }
.sec-item p { font-size: 14px; color: var(--text-body); }

/* Security Globe */
.security-visual { display: flex; align-items: center; justify-content: center; }
.security-globe {
    position: relative;
    width: 380px;
    height: 380px;
}
.sg-ring {
    position: absolute;
    border: 1.5px dashed rgba(83,58,253,0.2);
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: spinRing 12s linear infinite;
}
.sg-ring--1 { width: 100px; height: 100px; }
.sg-ring--2 { width: 200px; height: 200px; animation-duration: 20s; animation-direction: reverse; }
.sg-ring--3 { width: 336px; height: 336px; animation-duration: 28s; }

@keyframes spinRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to   { transform: translate(-50%, -50%) rotate(360deg); }
}

.sg-core {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: 0 0 0 16px rgba(83,58,253,0.12), 0 0 0 32px rgba(83,58,253,0.06);
    animation: corePulse 3s ease-in-out infinite;
}
@keyframes corePulse {
    0%, 100% { box-shadow: 0 0 0 16px rgba(83,58,253,0.12), 0 0 0 32px rgba(83,58,253,0.06); }
    50% { box-shadow: 0 0 0 24px rgba(83,58,253,0.08), 0 0 0 48px rgba(83,58,253,0.03); }
}

/* Orbit icons — centered on each dashed ring using CSS rotate/translate */
.sg-node {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 44px;
    height: 44px;
    background: var(--white);
    border: 2px solid var(--border-soft);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 16px;
    box-shadow: var(--shadow-sm);
    --orbit: 168px;
    --angle: 0deg;
    transform: translate(-50%, -50%) rotate(var(--angle)) translateY(var(--orbit)) rotate(calc(-1 * var(--angle)));
}
/* Outer ring (336px / radius 168px) — 4 nodes */
.sg-node--1 { --angle: 0deg; }          /* top */
.sg-node--2 { --angle: 90deg; }         /* right */
.sg-node--3 { --angle: 180deg; }        /* bottom */
.sg-node--4 { --angle: 270deg; }        /* left */
/* Middle ring (200px / radius 100px) — 2 nodes */
.sg-node--5 { --orbit: 100px; --angle: 45deg; }
.sg-node--6 { --orbit: 100px; --angle: 225deg; }
/* Inner ring (100px / radius 50px) — 1 node */
.sg-node--7 { --orbit: 50px; --angle: 135deg; }

/* ═══════════════════════════════════════════════════════════
   PROCESS SECTION
═══════════════════════════════════════════════════════════ */
.xb-process-sec {
    padding: 100px 0;
    background: var(--white);
}

.process-accordion { display: flex; flex-direction: column; gap: 12px; }

.process-step {
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.process-step.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(83,58,253,0.1);
}

.step-head {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    cursor: pointer;
    user-select: none;
}
.step-num {
    font-size: 13px;
    font-weight: 800;
    color: var(--primary);
    background: var(--primary-glow);
    border-radius: 8px;
    padding: 6px 10px;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.process-step.active .step-num { background: var(--primary); color: var(--white); }

.step-title-wrap { flex: 1; }
.step-title-wrap h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 4px;
}
.step-title-wrap p { font-size: 14px; color: var(--text-body); }

.step-toggle {
    width: 32px;
    height: 32px;
    background: var(--body-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 12px;
    flex-shrink: 0;
    transition: var(--transition);
}
.process-step.active .step-toggle {
    background: var(--primary);
    color: var(--white);
    transform: rotate(180deg);
}

.step-body {
    display: none;
    padding: 0 24px 24px;
}
.process-step.active .step-body { display: block; }

.step-list { display: flex; flex-direction: column; gap: 10px; }
.step-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}
.step-list li i { color: #10B981; font-size: 13px; }

/* Process Visual */
.process-visual { position: sticky; top: 100px; }
.process-img-wrap { position: relative; }
.process-screenshot {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.process-badge {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-h);
    box-shadow: var(--shadow);
}
.process-badge i { color: var(--primary); }
.process-badge--1 { top: -20px; right: -20px; }
.process-badge--2 { bottom: -20px; left: -20px; }

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════ */
.xb-testimonial-sec {
    padding: 100px 0;
    background: var(--body-bg);
}

.testimonial-swiper {
    padding: 20px 8px 60px !important;
    overflow: visible !important;
}
.testimonial-swiper .swiper-wrapper { align-items: stretch; }

.testi-card {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.testi-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.testi-quote { color: var(--primary); font-size: 28px; opacity: 0.3; }

.testi-text {
    font-size: 16px;
    color: var(--text-h);
    font-weight: 500;
    line-height: 1.7;
    flex: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}
.testi-avatar {
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 14px;
    flex-shrink: 0;
}
.testi-author h4 { font-size: 15px; font-weight: 700; color: var(--text-h); margin-bottom: 2px; }
.testi-author span { font-size: 13px; color: var(--text-muted); }
.testi-stars { margin-left: auto; color: #F59E0B; font-size: 14px; display: flex; gap: 2px; }

.testi-result { }
.result-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary-glow);
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 50px;
}
.result-pill i { font-size: 12px; }

.testimonial-pagination { bottom: 24px !important; }
.testimonial-pagination .swiper-pagination-bullet {
    background: var(--border-soft);
    opacity: 1;
    width: 8px;
    height: 8px;
    transition: var(--transition);
}
.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--primary);
    width: 24px;
    border-radius: 4px;
}
.testimonial-prev, .testimonial-next {
    color: var(--primary) !important;
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: 50% !important;
    width: 44px !important;
    height: 44px !important;
    box-shadow: var(--shadow-sm);
}
.testimonial-prev::after, .testimonial-next::after { font-size: 14px !important; }
.testimonial-prev { left: -8px !important; }
.testimonial-next { right: -8px !important; }

/* ═══════════════════════════════════════════════════════════
   PRICING SECTION
═══════════════════════════════════════════════════════════ */
.xb-pricing-sec {
    padding: 100px 0;
    background: var(--lavender);
    position: relative;
    overflow: hidden;
}
.xb-pricing-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(83, 58, 253, 0.06) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(83, 58, 253, 0.06) 1px, transparent 1px);
    background-size: 64px 64px;
}
.xb-pricing-sec .container { position: relative; }

/* Billing Toggle — 3-state segmented control */
.billing-toggle-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 16px;
}
.billing-segmented {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px;
    background: var(--white);
    border: 2px solid var(--primary-glow);
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(83,58,253,0.08);
}
.bt-seg {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    background: transparent;
    color: var(--text-body);
    font-size: 14px;
    font-weight: 600;
    padding: 9px 20px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}
.bt-seg:hover { color: var(--primary); }
.bt-seg.active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 4px 14px rgba(83,58,253,0.3);
}
.bt-seg.active .bt-save { background: var(--white); color: var(--primary); }
.bt-save {
    background: #10B981;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
}

/* Yearly discount banner */
.yearly-discount-banner {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, #10B981, #059669);
    border: 2px solid #10B981;
    border-radius: 50px;
    padding: 12px 28px;
    margin: 18px auto 0;
    max-width: 760px;
    box-shadow: 0 8px 24px rgba(16, 185, 129, 0.35);
    animation: bannerFadeIn 0.3s ease;
    white-space: nowrap;
}
.yearly-discount-banner i { margin-right: 8px; }
.yearly-discount-banner b { font-weight: 800; font-size: 16px; }
@keyframes bannerFadeIn {
    from { opacity: 0; transform: translateY(-8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* Per-card yearly savings note — rounded highlight box with dashed border */
.price-note-yearly {
    display: inline-block;
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #0f7a4d !important;
    background: rgba(16, 185, 129, 0.12);
    border: 2px dashed #10B981;
    border-radius: 50px;
    padding: 6px 14px !important;
    margin-top: 10px !important;
}
.pricing-card--featured .price-note-yearly {
    color: #059669 !important;
    background: var(--white);
    border: 2px dashed #10B981;
}

/* Pricing Cards */
.pricing-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 36px;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}
.pricing-card:hover {
    border-color: var(--primary);
    box-shadow: 0 20px 60px rgba(83,58,253,0.15);
    transform: translateY(-4px);
}
.pricing-card--featured {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 28px 80px rgba(83,58,253,0.45);
    transform: translateY(-16px) scale(1.03);
    z-index: 2;
}
.pricing-card--featured:hover { transform: translateY(-20px) scale(1.03); }

.pc-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #F59E0B;
    color: var(--white);
    font-size: 12px;
    font-weight: 800;
    padding: 4px 16px;
    border-radius: 50px;
    white-space: nowrap;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pc-head { }
.pc-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-glow);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 16px;
}
.pricing-card--featured .pc-icon { background: rgba(255,255,255,0.15); color: var(--white); }
.pc-name {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 6px;
}
.pricing-card--featured .pc-name { color: var(--white); }
.pc-desc { font-size: 14px; color: var(--text-muted); }
.pricing-card--featured .pc-desc { color: var(--white); }

.pc-price { }
.price-currency { font-size: 16px; font-weight: 700; color: var(--primary); vertical-align: top; margin-top: 8px; display: inline-block; }
.pricing-card--featured .price-currency { color: var(--white); }
.price-amount { font-size: 48px; font-weight: 800; color: var(--text-h); letter-spacing: -2px; line-height: 1; }
.pricing-card--featured .price-amount { color: var(--white); }
.price-period { font-size: 15px; color: var(--text-muted); }
.pricing-card--featured .price-period { color: var(--white); }
.price-note { font-size: 12px; color: var(--text-muted); margin-top: 6px; }
.pricing-card--featured .price-note { color: var(--white); }

.pc-features { flex: 1; display: flex; flex-direction: column; gap: 12px; }
.pc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-body);
}
.pricing-card--featured .pc-features li { color: var(--white); }
.pc-features li i { color: #10B981; flex-shrink: 0; }
.pc-feat-disabled { opacity: 0.5; }
.pc-feat-disabled i { color: var(--text-muted) !important; }

.pc-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    border-radius: 50px;
    background: var(--primary);
    color: var(--white) !important;
    font-weight: 700;
    font-size: 15px;
    transition: var(--transition);
    border: 2px solid var(--primary);
}
.pc-cta:hover { background: var(--primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(83,58,253,0.3); }
.pricing-card--featured .pc-cta {
    background: var(--white);
    color: var(--primary) !important;
    border-color: var(--white);
}
.pricing-card--featured .pc-cta:hover {
    background: var(--lavender);
    border-color: var(--lavender);
    box-shadow: none;
}

.pricing-guarantee {
    font-size: 14px;
    color: var(--text-body);
}

/* Branch pricing box — green border lining at bottom of each card */
.pc-branch-box {
    margin-top: 4px;
    padding: 14px 16px;
    border: 2px solid #10B981;
    border-radius: 14px;
    background: rgba(16, 185, 129, 0.06);
}
.pricing-card--featured .pc-branch-box {
    background: rgba(255, 255, 255, 0.12);
    border-color: #10B981;
}
.pc-branch-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}
.pc-branch-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #0f7a4d;
}
.pricing-card--featured .pc-branch-label { color: #6ee7b7; }
.pc-branch-label i { font-size: 13px; }
.pc-branch-price {
    font-size: 15px;
    font-weight: 800;
    color: #0f7a4d;
    white-space: nowrap;
}
.pricing-card--featured .pc-branch-price { color: #6ee7b7; }
.pc-branch-unit {
    font-size: 11px;
    font-weight: 600;
    color: #0f7a4d;
    opacity: 0.75;
    margin-left: 2px;
}
.pricing-card--featured .pc-branch-unit { color: #6ee7b7; }

/* ═══════════════════════════════════════════════════════════
   FAQ SECTION
═══════════════════════════════════════════════════════════ */
.xb-faq-sec {
    padding: 100px 0;
    background: var(--body-bg);
}

.faq-left .section-title { text-align: left; }

.faq-img-wrap {
    border-radius: var(--radius-lg);
    overflow: hidden;
    margin: 28px 0;
    box-shadow: var(--shadow);
}
.faq-img { width: 100%; object-fit: cover; max-height: 220px; }

.faq-cta-box {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}
.faq-cta-box p { font-size: 15px; font-weight: 600; color: var(--text-h); }

/* FAQ Accordion */
.faq-accordion { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
    background: var(--white);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(83,58,253,0.08);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    text-align: left;
    cursor: pointer;
    transition: var(--transition);
}
.faq-question span {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-h);
    line-height: 1.4;
}
.faq-icon {
    width: 28px;
    height: 28px;
    background: var(--body-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 13px;
    flex-shrink: 0;
    transition: var(--transition);
}
.faq-item.active .faq-icon {
    background: var(--primary);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-answer {
    display: none;
    padding: 0 24px 20px;
}
.faq-item.active .faq-answer { display: block; }
.faq-answer p { font-size: 15px; color: var(--text-body); line-height: 1.7; }

/* ═══════════════════════════════════════════════════════════
   ACTIVITY FEED MARQUEE
═══════════════════════════════════════════════════════════ */
.xb-activity-sec {
    padding: 80px 0;
    background: var(--white);
    overflow: hidden;
}

.activity-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 28px;
}

.activity-marquee-outer { overflow: hidden; }

.activity-track {
    display: flex;
    width: max-content;
    gap: 12px;
}
.activity-track--fwd { animation: marqueeScrollFwd 30s linear infinite; }
.activity-track--rev { animation: marqueeScrollRev 30s linear infinite; }
.activity-track:hover { animation-play-state: paused; }

.activity-slide { display: flex; gap: 12px; padding: 0 6px; }

.activity-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
    border: 1.5px solid transparent;
}
.activity-pill--green  { background: #F0FDF4; border-color: #BBF7D0; color: #065F46; }
.activity-pill--blue   { background: #EFF6FF; border-color: #BFDBFE; color: #1E40AF; }
.activity-pill--purple { background: #F5F3FF; border-color: #DDD6FE; color: #5B21B6; }
.activity-pill--orange { background: #FFFBEB; border-color: #FDE68A; color: #92400E; }
.activity-pill--red    { background: #FFF1F2; border-color: #FECDD3; color: #9F1239; }

/* ═══════════════════════════════════════════════════════════
   FOOTER — Light gradient style with ClassoNix Brand
═══════════════════════════════════════════════════════════ */
.xb-footer {
    background:
        radial-gradient(ellipse at top right, rgba(168, 85, 247, 0.18), transparent 60%),
        radial-gradient(ellipse at bottom left, rgba(83, 58, 253, 0.22), transparent 55%),
        linear-gradient(135deg, #FFFFFF 0%, #F6F4FF 50%, #EFEAFF 100%);
    color: #4A4A5E;
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.xb-footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), #A855F7, var(--primary));
    background-size: 200% 100%;
    animation: footerGradient 6s ease infinite;
}
@keyframes footerGradient {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* Footer Top — Logo + Newsletter */
.ft-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
    padding-bottom: 50px;
}

.ft-brand { flex: 1; min-width: 280px; }

.ft-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}
.ft-logo img {
    border-radius: 8px;
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.ft-logo span { color: var(--dark); }
.ft-logo b { color: var(--primary); font-weight: 800; }

.ft-tagline {
    font-size: 15px;
    color: #6A6A7A;
    line-height: 1.7;
    max-width: 380px;
}

.ft-newsletter { flex: 1; min-width: 320px; max-width: 480px; }

.ft-newsletter-form {
    display: flex;
    background: rgba(83, 58, 253, 0.06);
    border: 1.5px solid rgba(83, 58, 253, 0.25);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
    transition: var(--transition);
}
.ft-newsletter-form:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(83, 58, 253, 0.15);
    background: rgba(83, 58, 253, 0.10);
}

.ft-newsletter-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 16px 24px;
    font-size: 15px;
    color: var(--dark);
    font-family: inherit;
}
.ft-newsletter-input::placeholder { color: #9A9AAF; }

.ft-newsletter-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 0 32px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
    white-space: nowrap;
}
.ft-newsletter-btn:hover {
    background: var(--primary-dark);
    letter-spacing: 0.5px;
}

.ft-newsletter-note {
    font-size: 13px;
    color: #8A8A9A;
    line-height: 1.5;
}

/* Divider */
.ft-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(83, 58, 253, 0.20), transparent);
    margin: 0 0 50px;
}

/* Footer Links Grid */
.ft-links-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
}

.ft-col-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    letter-spacing: -0.2px;
    position: relative;
    padding-bottom: 12px;
}
.ft-col-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* Contact block */
.ft-contact-block { display: flex; flex-direction: column; gap: 16px; }
.ft-contact-block p {
    font-size: 14px;
    color: #6A6A7A;
    line-height: 1.6;
}
.ft-contact-block a {
    color: #4A4A5E;
    transition: var(--transition);
}
.ft-contact-block a:hover { color: var(--primary); }
.ft-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

/* Link lists */
.ft-links { display: flex; flex-direction: column; gap: 14px; }
.ft-links a {
    font-size: 14px;
    color: #6A6A7A;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}
.ft-links a:hover { color: var(--primary); padding-left: 4px; }

/* Social links */
.ft-social-icon {
    color: var(--primary) !important;
    font-size: 16px;
    width: 20px;
    text-align: center;
    transition: var(--transition);
}
.ft-links--social a:hover .ft-social-icon { color: var(--primary-dark) !important; }

/* Footer Bottom Bar — rounded dark card inside container */
.ft-bottom {
    background: linear-gradient(135deg, #1A1340 0%, #2D1B6B 100%);
    border-radius: 20px;
    padding: 20px 40px;
    margin: 0 auto 30px;
    max-width: 1200px;
    box-shadow: 0 8px 32px rgba(83, 58, 253, 0.20);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: nowrap;
}
.ft-copy {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
    margin: 0;
    white-space: nowrap;
}
.ft-legal {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: nowrap;
}
.ft-legal a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
    font-weight: 500;
    padding: 0 16px;
    white-space: nowrap;
}
.ft-legal a:not(:last-child) {
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}
.ft-legal a:hover { color: var(--lavender); }

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════ */
/* WhatsApp Floating Widget */
.whatsapp-float {
    position: fixed;
    bottom: 32px;
    right: 32px;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    transition: var(--transition);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
    z-index: 900;
    animation: whatsappPulse 2.5s infinite;
}
.whatsapp-float:hover {
    background: #1eb855;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.6);
}
.whatsapp-float-tooltip {
    position: absolute;
    right: 68px;
    background: var(--text-h);
    color: var(--white);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 8px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(8px);
    transition: var(--transition);
    pointer-events: none;
}
.whatsapp-float-tooltip::after {
    content: '';
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    border-left: 6px solid var(--text-h);
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
}
.whatsapp-float:hover .whatsapp-float-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}
@keyframes whatsappPulse {
    0%   { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 16px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ═══════════════════════════════════════════════════════════
   SCROLL POPUP — "Still scrolling?"
═══════════════════════════════════════════════════════════ */
.scroll-popup-overlay {
    position: fixed;
    inset: 0;
    background: rgba(35, 25, 90, 0.65);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 20px;
}
.scroll-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}
.scroll-popup {
    background: linear-gradient(145deg, #fff8e7 0%, #fff3d1 100%);
    border-radius: 28px;
    padding: 42px 38px 34px;
    max-width: 480px;
    width: 100%;
    text-align: center;
    position: relative;
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.35),
        0 0 0 3px #ffc107,
        0 0 0 10px rgba(255, 193, 7, 0.25),
        0 0 0 22px rgba(255, 193, 7, 0.12);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.scroll-popup::before {
    content: '🙄';
    position: absolute;
    top: -24px;
    left: -24px;
    font-size: 42px;
    transform: rotate(-18deg);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}
.scroll-popup::after {
    content: '😏';
    position: absolute;
    bottom: -18px;
    right: -20px;
    font-size: 38px;
    transform: rotate(22deg);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.15));
}
.scroll-popup-overlay.active .scroll-popup {
    transform: translateY(0) scale(1);
}
.scroll-popup-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: rgba(255, 193, 7, 0.18);
    border: none;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 24px;
    color: #7a5c12;
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-popup-close:hover { background: #ffc107; color: var(--white); transform: scale(1.15) rotate(90deg); }
.scroll-popup-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: #ffc107;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    color: #4a3b10;
    box-shadow: 0 12px 30px rgba(255, 193, 7, 0.45);
    animation: popupIconBounce 0.6s ease 0.2s both;
}
@keyframes popupIconBounce {
    0%   { transform: scale(0); }
    60%  { transform: scale(1.2); }
    100% { transform: scale(1); }
}
.scroll-popup-title {
    font-size: 27px;
    font-weight: 900;
    color: #4a3b10;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
}
.scroll-popup-text {
    font-size: 15px;
    line-height: 1.65;
    color: #5d4c1c;
    margin-bottom: 24px;
    text-align: justify;
}
.scroll-popup-text em { color: #b38608; font-style: italic; font-weight: 700; }
.scroll-popup-text b { color: #4a3b10; }
.scroll-popup-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #4a3b10;
    color: #fff8e7 !important;
    font-weight: 800;
    font-size: 16px;
    padding: 15px 38px;
    border-radius: 50px;
    transition: var(--transition);
    border: 2px dashed #ffc107;
    box-shadow: 0 10px 28px rgba(74, 59, 16, 0.3);
}
.scroll-popup-btn:hover {
    background: #362b0c;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 14px 36px rgba(74, 59, 16, 0.45);
}
.scroll-popup-sub {
    font-size: 13px;
    color: #8a7226;
    margin-top: 14px;
    font-style: italic;
}

/* ═══════════════════════════════════════════════════════════
   PRIVACY POLICY PAGE
═══════════════════════════════════════════════════════════ */
.pp-section {
    padding: 120px 0 80px;
    background: var(--body-bg);
    min-height: 100vh;
}
.pp-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 48px;
    align-items: start;
}

/* Sidebar TOC */
.pp-sidebar {
    position: sticky;
    top: 100px;
}
.pp-toc {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px 20px;
    box-shadow: var(--shadow-sm);
}
.pp-toc-title {
    font-size: 14px;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.pp-toc ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.pp-toc-link {
    display: block;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    text-decoration: none;
}
.pp-toc-link:hover {
    background: var(--primary-glow);
    color: var(--primary);
}
.pp-toc-link.active {
    background: var(--primary);
    color: var(--white);
    font-weight: 700;
}

/* Main content */
.pp-content { max-width: 760px; }
.pp-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: var(--text-h);
    letter-spacing: -1.5px;
    margin-bottom: 8px;
}
.pp-updated {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

/* Intro box */
.pp-intro-box {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    background: var(--primary-glow);
    border: 1px solid rgba(83, 58, 253, 0.15);
    border-radius: var(--radius);
    padding: 20px 24px;
    margin-bottom: 40px;
}
.pp-intro-box i {
    font-size: 22px;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 2px;
}
.pp-intro-box p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
    margin: 0;
}

/* Content blocks */
.pp-block {
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}
.pp-block h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--border-soft);
}
.pp-block h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-h);
    margin: 24px 0 12px;
}
.pp-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-body);
    margin-bottom: 14px;
}
.pp-block strong { color: var(--text-h); font-weight: 700; }

/* Lists */
.pp-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pp-list li {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-body);
    padding-left: 28px;
    position: relative;
}
.pp-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #10B981;
    font-size: 13px;
    position: absolute;
    left: 0;
    top: 3px;
}

/* Links */
.pp-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}
.pp-link:hover { color: var(--primary-dark); text-decoration: underline; }

/* Contact cards */
.pp-contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-top: 20px;
}
.pp-contact-card {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    padding: 24px 20px;
    text-align: center;
    transition: var(--transition);
}
.pp-contact-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}
.pp-contact-card i {
    font-size: 24px;
    color: var(--primary);
    margin-bottom: 12px;
}
.pp-contact-card h5 {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}
.pp-contact-card .pp-link { font-size: 15px; }

/* Back link */
.pp-back {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
}
.pp-back-link {
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.pp-back-link:hover { color: var(--primary-dark); gap: 12px; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 1200px) {
    .bento-grid > *:nth-child(1) { grid-column: span 12; flex-direction: column; }
    .bento-grid > *:nth-child(2),
    .bento-grid > *:nth-child(3),
    .bento-grid > *:nth-child(4),
    .bento-grid > *:nth-child(5) { grid-column: span 6; }
    .bento-grid > *:nth-child(6),
    .bento-grid > *:nth-child(7) { grid-column: span 6; }
    .bento-visual { display: none; }
}

@media (max-width: 991px) {
    .header-nav, .header-action { display: none; }
    .xb-mobile-toggle { display: flex; }

    .hero-float-badges { display: none; }
    .xb-hero-sec { padding: 110px 0 60px; }

    .security-inner { padding: 40px 28px; }
    .security-globe { width: 260px; height: 260px; }
    .sg-ring--3 { width: 200px; height: 200px; }
    .sg-ring--2 { width: 120px; height: 120px; }
    .sg-ring--1 { width: 60px; height: 60px; }
    .sg-node { --orbit: 100px; }
    .sg-node--5, .sg-node--6 { --orbit: 60px; }
    .sg-node--7 { --orbit: 30px; }

    .process-visual { position: static; }
    .footer-cta-inner { flex-direction: column; text-align: center; }
    .footer-cta-text p { margin: 0 auto; }
    .footer-cta-action { align-items: center; }

    /* Privacy policy — sidebar moves to top */
    .pp-layout { grid-template-columns: 1fr; gap: 32px; }
    .pp-sidebar { position: static; }
    .pp-toc { max-height: 200px; overflow-y: auto; }
}

@media (max-width: 768px) {
    .bento-grid > * { grid-column: span 12 !important; }

    .sol-card { padding: 24px; }
    .sol-card-footer { flex-wrap: wrap; gap: 12px; }

    .pricing-card--featured { transform: none; scale: 1; }
    .pricing-card--featured:hover { transform: translateY(-4px); scale: 1; }

    .xb-footer { padding: 60px 0 30px; }
    .ft-top { flex-direction: column; gap: 32px; }
    .ft-links-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
    .xb-solution-sec, .xb-feature-sec, .xb-security-sec,
    .xb-process-sec, .xb-testimonial-sec, .xb-faq-sec,
    .xb-activity-sec, .xb-dashboard-sec { padding: 70px 0; }

    .section-head { margin-bottom: 40px; }

    .process-badge--1, .process-badge--2 { display: none; }
    .float-badge { display: none; }

    /* Privacy policy — contact cards stack */
    .pp-contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-headline { letter-spacing: -0.5px; }
    .hero-cta-row { flex-direction: column; }
    .hero-cta-row .fintech-btn, .hero-cta-row .btn-ghost { width: 100%; }

    .fs-dashboard-nav { gap: 6px; }
    .tab-pill { font-size: 12px; padding: 8px 14px; }

    .billing-toggle-wrap { flex-wrap: wrap; }
    .billing-segmented { flex-wrap: wrap; justify-content: center; }
    .bt-seg { padding: 8px 14px; font-size: 13px; }

    .ft-links-grid { grid-template-columns: 1fr; gap: 28px; }
    .ft-newsletter-form { flex-direction: column; border-radius: 16px; }
    .ft-newsletter-input { padding: 14px 18px; }
    .ft-newsletter-btn { padding: 14px; border-radius: 12px; }
    .ft-bottom { flex-direction: column; text-align: center; gap: 12px; padding: 20px; }
    .ft-legal a { padding: 0 10px; }
    .ft-legal { gap: 0; }

    /* Yearly discount banner — allow wrap on small screens */
    .yearly-discount-banner { white-space: normal; font-size: 13px; padding: 10px 18px; }

    /* Scroll popup — fit small screens */
    .scroll-popup { padding: 32px 22px 26px; max-width: calc(100vw - 40px); }
    .scroll-popup::before { top: -16px; left: -10px; font-size: 32px; }
    .scroll-popup::after { bottom: -12px; right: -8px; font-size: 28px; }
    .scroll-popup-title { font-size: 22px; }
    .scroll-popup-text { font-size: 14px; }
    .scroll-popup-btn { padding: 13px 28px; font-size: 15px; }

    /* WhatsApp float — slightly smaller on mobile */
    .whatsapp-float { width: 50px; height: 50px; font-size: 24px; bottom: 20px; right: 20px; }
    .whatsapp-float-tooltip { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE — Funnel sections
═══════════════════════════════════════════════════════════ */

/* Pricing hero section */
.pp-pricing-hero {
    padding: 140px 0 80px;
    position: relative;
}
.pp-pricing-hero .section-head { margin-bottom: 36px; }
.pp-pricing-hero .section-title { font-size: 48px; }
.pp-pricing-hero .section-sub { max-width: 620px; margin: 16px auto 0; }

/* Trust bar */
.pricing-trust-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 28px;
    margin: 0 auto 40px;
    max-width: 920px;
}
.ptb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-body);
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: 999px;
    padding: 8px 18px;
    transition: var(--transition);
}
.ptb-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(83,58,253,0.10);
    transform: translateY(-2px);
}
.ptb-item i { color: var(--primary); font-size: 14px; }

/* Pricing guarantee line */
.pricing-guarantee {
    margin-top: 40px;
}
.pricing-guarantee p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
}
.pricing-guarantee .text-success { color: #10B981 !important; }

/* ═══════════════════════════════════════════════════════════
   PLAN FINDER SECTION
═══════════════════════════════════════════════════════════ */
.xb-plan-guide-sec {
    padding: 80px 0;
    background: var(--white);
}
.plan-guide-card {
    position: relative;
    background: var(--body-bg);
    border: 1.5px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 36px 28px 28px;
    height: 100%;
    transition: var(--transition);
}
.plan-guide-card:hover {
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(83,58,253,0.10);
    transform: translateY(-4px);
}
.plan-guide-card--featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(83,58,253,0.04), var(--body-bg));
    box-shadow: 0 8px 30px rgba(83,58,253,0.08);
}
.pgc-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    padding: 5px 16px;
    border-radius: 999px;
    white-space: nowrap;
}
.pgc-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 18px;
}
.pgc-icon--starter { background: rgba(16,185,129,0.12); color: #10B981; }
.pgc-icon--pro { background: rgba(83,58,253,0.12); color: var(--primary); }
.pgc-icon--elite { background: rgba(245,158,11,0.12); color: #F59E0B; }
.plan-guide-card h3 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 16px;
}
.plan-guide-card ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.plan-guide-card li {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-body);
    padding-left: 26px;
    position: relative;
}
.plan-guide-card li i {
    position: absolute;
    left: 0;
    top: 3px;
    color: #10B981;
    font-size: 13px;
}
.pgc-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
}
.pgc-link:hover { color: var(--primary-dark); gap: 8px; }

/* ═══════════════════════════════════════════════════════════
   COMPARISON TABLE
═══════════════════════════════════════════════════════════ */
.xb-comparison-sec {
    padding: 80px 0;
    background: var(--body-bg);
}
.comparison-table-wrap {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.04);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
}
.comparison-table th,
.comparison-table td {
    padding: 14px 18px;
    text-align: center;
    font-size: 14px;
    border-bottom: 1px solid var(--border-soft);
}
.comparison-table th {
    background: var(--body-bg);
    font-weight: 800;
    color: var(--text-h);
    font-size: 15px;
    padding: 18px;
}
.comparison-table .ct-feature {
    text-align: left;
    font-weight: 600;
    color: var(--text-h);
    width: 40%;
}
.comparison-table .ct-plan {
    width: 20%;
    color: var(--text-body);
}
.comparison-table .ct-plan--featured {
    background: rgba(83,58,253,0.04);
    color: var(--primary);
    font-weight: 700;
}
.comparison-table th.ct-plan--featured {
    background: var(--primary);
    color: var(--white);
    position: relative;
}
.comparison-table th.ct-plan--featured::after {
    content: 'Popular';
    display: block;
    font-size: 11px;
    font-weight: 600;
    opacity: 0.85;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.comparison-table td.ct-plan--featured {
    font-weight: 700;
}
.comparison-table tbody tr:hover td {
    background: rgba(83,58,253,0.02);
}
.comparison-table .ct-group-row td {
    background: var(--body-bg);
    font-weight: 800;
    color: var(--text-h);
    text-align: left;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 12px 18px;
}
.ct-yes { color: #10B981; font-size: 15px; }
.ct-no { color: #CBD5E1; font-size: 15px; }

/* ═══════════════════════════════════════════════════════════
   PRICING FAQ LIST (uses existing .faq-item styles)
═══════════════════════════════════════════════════════════ */
.pricing-faq-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* ═══════════════════════════════════════════════════════════
   FINAL CTA SECTION
═══════════════════════════════════════════════════════════ */
.xb-pricing-cta-sec {
    padding: 80px 0 100px;
    background: var(--white);
}
.pricing-cta-box {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #7B5CFF 100%);
    border-radius: var(--radius-lg);
    padding: 64px 40px;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}
.pricing-cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.pricing-cta-box h2 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 14px;
    position: relative;
}
.pricing-cta-box p {
    font-size: 17px;
    line-height: 1.6;
    max-width: 560px;
    margin: 0 auto 32px;
    opacity: 0.95;
    position: relative;
}
.pricing-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    margin-bottom: 28px;
}
.pricing-cta-buttons .fintech-btn {
    background: var(--white) !important;
    color: var(--primary) !important;
    border: none;
}
.pricing-cta-buttons .fintech-btn:hover {
    background: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.20);
}
.pricing-cta-buttons .btn-ghost {
    background: transparent !important;
    color: var(--white) !important;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.pricing-cta-buttons .btn-ghost:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: var(--white);
    color: var(--white) !important;
}
.pricing-cta-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
    position: relative;
}
.pricing-cta-trust span {
    font-size: 13px;
    font-weight: 600;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.pricing-cta-trust .text-success { color: #6EE7B7 !important; }

/* ═══════════════════════════════════════════════════════════
   PRICING PAGE — RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .pp-pricing-hero { padding: 110px 0 60px; }
    .pp-pricing-hero .section-title { font-size: 38px; }
    .pricing-cta-box { padding: 48px 28px; }
    .pricing-cta-box h2 { font-size: 28px; }
    .comparison-table-wrap { overflow-x: auto; }
    .comparison-table { min-width: 640px; }
}

@media (max-width: 768px) {
    .pp-pricing-hero { padding: 100px 0 50px; }
    .pp-pricing-hero .section-title { font-size: 32px; }
    .xb-plan-guide-sec,
    .xb-comparison-sec,
    .xb-pricing-cta-sec { padding: 60px 0; }
    .pricing-cta-box { padding: 40px 22px; }
    .pricing-cta-box h2 { font-size: 24px; }
    .pricing-cta-box p { font-size: 15px; }
    .pricing-cta-buttons { flex-direction: column; align-items: stretch; }
    .pricing-cta-buttons .fintech-btn,
    .pricing-cta-buttons .btn-ghost { width: 100%; justify-content: center; }
    .pricing-cta-trust { gap: 16px; }
    .ptb-item { font-size: 13px; padding: 7px 14px; }
}

@media (max-width: 480px) {
    .pp-pricing-hero .section-title { font-size: 28px; }
    .plan-guide-card { padding: 28px 22px 22px; }
    .comparison-table th,
    .comparison-table td { padding: 10px 12px; font-size: 13px; }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
═══════════════════════════════════════════════════════════ */

/* Contact hero */
.pp-contact-hero {
    padding: 100px 0 0;
    position: relative;
}
.pp-contact-hero .section-head { margin-bottom: 8px; }
.pp-contact-hero .section-title { font-size: 48px; }
.pp-contact-hero .section-sub { max-width: 580px; margin: 10px auto 0; }

/* Contact section */
.xb-contact-sec {
    padding: 0 0 80px;
}

/* Left column — contact info */
.contact-info-col {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
}
.contact-info-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 8px;
}
.contact-info-sub {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-body);
    margin-bottom: 28px;
}
.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}
.ci-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.ci-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(83,58,253,0.08);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
}
.ci-text { display: flex; flex-direction: column; gap: 2px; }
.ci-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.ci-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-h);
    text-decoration: none;
    transition: var(--transition);
    line-height: 1.5;
}
a.ci-value:hover { color: var(--primary); }

/* Response badge */
.contact-response-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(16,185,129,0.08);
    border: 1px solid rgba(16,185,129,0.2);
    border-radius: 12px;
    padding: 14px 18px;
    font-size: 14px;
    color: var(--text-body);
}
.contact-response-badge i { color: #10B981; font-size: 16px; }
.contact-response-badge b { color: #065F46; }

/* Right column — form */
.contact-form-wrap {
    background: var(--white);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}
.contact-form-head { margin-bottom: 28px; }
.contact-form-head h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 6px;
}
.contact-form-head p {
    font-size: 14px;
    color: var(--text-body);
}

/* Form fields */
.cn-field { margin-bottom: 4px; }
.cn-field label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-h);
    margin-bottom: 6px;
}
.cn-field .req { color: #DC2626; }
.cn-field input,
.cn-field select,
.cn-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-soft);
    border-radius: 10px;
    font-size: 14px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-h);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}
.cn-field input::placeholder,
.cn-field textarea::placeholder { color: var(--text-muted); }
.cn-field input:focus,
.cn-field select:focus,
.cn-field textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(83,58,253,0.1);
}
.cn-field textarea { resize: vertical; min-height: 120px; }

/* Submit row */
.cn-submit-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}
.cn-submit-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 10px;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}
.cn-submit-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(83,58,253,0.25);
}
.cn-submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}
.cn-form-note {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
    display: flex;
    align-items: center;
    gap: 6px;
}
.cn-form-note i { font-size: 11px; }

/* Success message */
.cn-form-success {
    text-align: center;
    padding: 40px 20px;
    background: rgba(16,185,129,0.06);
    border: 1.5px solid rgba(16,185,129,0.2);
    border-radius: var(--radius);
    margin-top: 20px;
}
.cn-success-icon {
    font-size: 48px;
    color: #10B981;
    margin-bottom: 16px;
}
.cn-form-success h4 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 8px;
}
.cn-form-success p {
    font-size: 15px;
    color: var(--text-body);
    margin-bottom: 20px;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}
.cn-success-reset {
    background: var(--white);
    color: var(--primary);
    border: 1.5px solid var(--primary);
    border-radius: 10px;
    padding: 10px 24px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    cursor: pointer;
    transition: var(--transition);
}
.cn-success-reset:hover {
    background: var(--primary);
    color: var(--white);
}

/* Error message */
.cn-form-error {
    text-align: center;
    padding: 32px 20px;
    background: rgba(220,38,38,0.06);
    border: 1.5px solid rgba(220,38,38,0.2);
    border-radius: var(--radius);
    margin-top: 20px;
}
.cn-error-icon {
    font-size: 40px;
    color: #DC2626;
    margin-bottom: 14px;
}
.cn-form-error h4 {
    font-size: 18px;
    font-weight: 800;
    color: var(--text-h);
    margin-bottom: 6px;
}
.cn-form-error p {
    font-size: 14px;
    color: var(--text-body);
}

/* Quick CTA */
.xb-contact-cta-sec {
    padding: 0 0 80px;
}
.contact-cta-box {
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, #7B5CFF 100%);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
    overflow: hidden;
    color: var(--white);
}
.contact-cta-glow {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 60%);
    pointer-events: none;
}
.contact-cta-box h2 {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 10px;
    position: relative;
}
.contact-cta-box p {
    font-size: 16px;
    opacity: 0.95;
    max-width: 480px;
    margin: 0 auto 28px;
    position: relative;
}
.contact-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
}
.contact-cta-buttons .fintech-btn {
    background: var(--white) !important;
    color: var(--primary) !important;
    border: none;
}
.contact-cta-buttons .fintech-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.20);
}
.contact-cta-buttons .btn-ghost {
    background: transparent !important;
    color: var(--white) !important;
    border: 1.5px solid rgba(255,255,255,0.5);
}
.contact-cta-buttons .btn-ghost:hover {
    background: rgba(255,255,255,0.15) !important;
    border-color: var(--white);
    color: var(--white) !important;
}

/* Hidden honeypot */
.hidden { display: none !important; }

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE — RESPONSIVE
═══════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
    .pp-contact-hero { padding: 100px 0 0; }
    .pp-contact-hero .section-head { margin-bottom: 6px; }
    .pp-contact-hero .section-title { font-size: 36px; }
    .contact-form-wrap { padding: 28px 24px; }
    .contact-info-col { margin-bottom: 0; }
}

@media (max-width: 768px) {
    .pp-contact-hero { padding: 95px 0 0; }
    .pp-contact-hero .section-head { margin-bottom: 4px; }
    .pp-contact-hero .section-title { font-size: 30px; }
    .xb-contact-sec { padding: 0 0 60px; }
    .contact-form-wrap { padding: 24px 20px; }
    .contact-info-col { padding: 28px 22px; }
    .contact-cta-box { padding: 36px 22px; }
    .contact-cta-box h2 { font-size: 22px; }
    .contact-cta-buttons { flex-direction: column; align-items: stretch; }
    .contact-cta-buttons .fintech-btn,
    .contact-cta-buttons .btn-ghost { width: 100%; justify-content: center; }
    .cn-submit-row { flex-direction: column; align-items: stretch; }
    .cn-submit-btn { width: 100%; justify-content: center; }
}

@media (max-width: 480px) {
    .pp-contact-hero .section-title { font-size: 26px; }
    .contact-form-wrap { padding: 20px 16px; }
}
