/* ═══════════════════════════════════════════════════════
   FONTS
   ═══════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Sora:wght@400;500;600;700;800&family=DM+Sans:wght@400;500;600;700&family=Plus+Jakarta+Sans:wght@300;400;600;700&display=swap');

/* ═══════════════════════════════════════════════════════
   CSS VARIABLES
   ═══════════════════════════════════════════════════════ */
:root {
    --bg-dark: #07081a;
    --bg-dark2: #0a1020;
    --bg-light: #f4f6ff;
    --bg-light2: #eef1ff;
    --glow-color: #1a1c4d;
    --grid-line: rgba(65, 83, 175, 0.15);
    --accent: #0ea5e9;
    --accent2: #7c3aed;
    --indigo: #4f46e5;
    --text-dark: #0f0d2e;
    --text-light: #f0f4ff;
    --text-muted-d: #94a3b8;
    --text-muted-l: #475569;
    --border-dark: rgba(255, 255, 255, 0.07);
    --border-light: rgba(15, 13, 46, 0.1);
    --n-height: 64px;
    --n-bg: rgba(15, 13, 46, 0.96);
    --n-border-t: rgba(79, 70, 229, 0.45);
    --n-border-b: rgba(255, 255, 255, 0.06);
    --n-text: rgba(255, 255, 255, 0.70);
    --n-text-h: #fff;
    --n-accent: #a5b4fc;
    --n-accent2: #4f46e5;
    --d-bg: #0f0d2e;
    --d-border: rgba(255, 255, 255, 0.05);
    --d-hover: rgba(79, 70, 229, 0.10);
    --d-divider: rgba(255, 255, 255, 0.05);
    --d-cat: rgba(165, 180, 252, 0.50);
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-xl: 1.5rem;
    --spacing-3xl: 3rem;
}

/* ═══════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html,
body {
    font-family: 'DM Sans', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    scroll-behavior: smooth;
    background-color: var(--bg-dark);
    color: var(--text-light);
    overflow-x: hidden;
}

[x-cloak] {
    display: none !important;
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY — H1 (single, hero only)
   ═══════════════════════════════════════════════════════ */
h1.page-h1 {
    font-family: 'Sora', 'DM Sans', sans-serif !important;
    font-weight: 800 !important;
    font-size: 68px !important;
    line-height: 75px !important;
    color: #ffffff !important;
    letter-spacing: -1.5px;
}

@media (max-width: 900px) {
    h1.page-h1 {
        font-size: 42px !important;
        line-height: 50px !important;
    }
}

@media (max-width: 600px) {
    h1.page-h1 {
        font-size: 32px !important;
        line-height: 40px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   TYPOGRAPHY — H2 (section headings)
   ═══════════════════════════════════════════════════════ */
.section-dark h2,
.section-dark .section-heading {
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 46px !important;
    line-height: 53px !important;
    color: var(--text-light) !important;
    letter-spacing: -1px;
}

.section-light h2,
.section-light .section-heading {
    font-family: 'Sora', sans-serif !important;
    font-weight: 800 !important;
    font-size: 46px !important;
    line-height: 53px !important;
    color: var(--text-dark) !important;
    letter-spacing: -1px;
}

@media (max-width: 900px) {

    .section-dark h2,
    .section-light h2,
    .section-dark .section-heading,
    .section-light .section-heading {
        font-size: 32px !important;
        line-height: 40px !important;
    }
}

/* ═══════════════════════════════════════════════════════
   95VH SECTIONS — no scroll, elements fit inside
   ═══════════════════════════════════════════════════════ */
.section-95vh {
    min-height: 95vh;
    max-height: 95vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

/* ═══════════════════════════════════════════════════════
   SECTION THEMES — DARK
   ═══════════════════════════════════════════════════════ */
.section-dark {
    background-color: var(--bg-dark);
    color: var(--text-light);
}

.section-dark p,
.section-dark span:not([class*="text-"]):not([class*="badge"]) {
    color: var(--text-muted-d);
}

.section-dark h3,
.section-dark h4 {
    color: var(--text-light);
}

/* ═══════════════════════════════════════════════════════
   SECTION THEMES — LIGHT
   ═══════════════════════════════════════════════════════ */
.section-light {
    background-color: var(--bg-light);
    color: var(--text-dark);
}

.section-light p {
    color: var(--text-muted-l);
}

.section-light h3,
.section-light h4 {
    color: var(--text-dark);
}

/* ═══════════════════════════════════════════════════════
   PREMIUM GRID BACKGROUND (hero)
   ═══════════════════════════════════════════════════════ */
.premium-grid-bg {
    background-color: var(--bg-dark);
    background-image:
        linear-gradient(var(--grid-line) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid-line) 1px, transparent 1px),
        radial-gradient(circle at 50% 50%, var(--glow-color) 0%, var(--bg-dark) 80%);
    background-size: 40px 40px, 40px 40px, 100% 100%;
    background-position: center;
}

/* ═══════════════════════════════════════════════════════
   GRADIENT TEXT
   ═══════════════════════════════════════════════════════ */
.gradient-text,
.ai-gradient-text {
    background: linear-gradient(135deg, #0ea5e9 0%, #7c3aed 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

/* ═══════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════ */
.btn-primary {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-primary:hover {
    box-shadow: 0 16px 24px -5px rgba(79, 70, 229, 0.4);
    transform: translateY(-2px) scale(1.02);
}

/* ═══════════════════════════════════════════════════════
   MARQUEE
   ═══════════════════════════════════════════════════════ */
@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.animate-marquee {
    animation: marquee 25s linear infinite;
}

.marquee-container:hover .animate-marquee {
    animation-play-state: paused;
}

.marquee-pill {
    flex-shrink: 0;
    padding: 6px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    white-space: nowrap;
}

.section-dark .marquee-pill {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

.section-light .marquee-pill {
    background: rgba(15, 13, 46, 0.06);
    border: 1px solid rgba(15, 13, 46, 0.12);
    color: #475569;
}

/* ═══════════════════════════════════════════════════════
   HERO CARD
   ═══════════════════════════════════════════════════════ */
.hero-card {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(124, 58, 237, 0.08) 100%);
    border: 1px solid rgba(14, 165, 233, 0.2);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(12px);
}

.floating-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    pointer-events: none;
}

.circle-1 {
    width: 30px;
    height: 30px;
    background: #c7d2fe;
    top: -8px;
    left: 16px;
    animation: float-1 4s ease-in-out infinite;
}

.circle-2 {
    width: 36px;
    height: 36px;
    background: #fbbf24;
    bottom: 16px;
    right: -12px;
    animation: float-2 5s ease-in-out infinite;
}

.circle-3 {
    width: 26px;
    height: 26px;
    background: #f9a8d4;
    top: 48px;
    right: 10px;
    animation: float-3 6s ease-in-out infinite;
}

.circle-4 {
    width: 22px;
    height: 22px;
    background: #a78bfa;
    bottom: -8px;
    left: 32px;
    animation: float-1 5s ease-in-out infinite 1s;
}

@keyframes float-1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(8px, -16px);
    }
}

@keyframes float-2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-12px, -12px);
    }
}

@keyframes float-3 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(12px, 16px);
    }
}

.window-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
}

.logo-container {
    animation: gentle-pulse 3s ease-in-out infinite;
}

@keyframes gentle-pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.04);
    }
}

.action-pill {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.18);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 11px;
    color: #94a3b8;
    font-weight: 500;
}

.pill-indicator {
    width: 5px;
    height: 5px;
    border-radius: 50%;
}

.color-square {
    width: 14px;
    height: 14px;
    border-radius: 4px;
}

/* ═══════════════════════════════════════════════════════
   FEATURE CARDS (dark sections)
   ═══════════════════════════════════════════════════════ */
.feature-card-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.feature-card-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-dark:hover::before {
    transform: scaleX(1);
}

.feature-card-dark:hover {
    border-color: rgba(14, 165, 233, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}

.feature-card-dark h3 {
    color: var(--text-light);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.feature-card-dark p {
    color: var(--text-muted-d);
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════
   FEATURE CARDS (light sections)
   ═══════════════════════════════════════════════════════ */
.feature-card-light {
    background: #fff;
    border: 1px solid rgba(15, 13, 46, 0.08);
    border-radius: 16px;
    padding: 18px;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(15, 13, 46, 0.06);
}

.feature-card-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card-light:hover::before {
    transform: scaleX(1);
}

.feature-card-light:hover {
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(15, 13, 46, 0.12);
}

.feature-card-light h3 {
    color: var(--text-dark);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 15px;
}

.feature-card-light p {
    color: var(--text-muted-l);
    font-size: 12px;
}

/* ═══════════════════════════════════════════════════════
   ICON BOX
   ═══════════════════════════════════════════════════════ */
.icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box-dark {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(124, 58, 237, 0.15));
}

.icon-box-light {
    background: linear-gradient(135deg, rgba(79, 70, 229, 0.1), rgba(124, 58, 237, 0.1));
}

/* ═══════════════════════════════════════════════════════
   AUTOMATION ORB CARD
   ═══════════════════════════════════════════════════════ */
.automation-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(14, 165, 233, 0.1) 100%);
    border: 1px solid rgba(14, 165, 233, 0.15);
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}

.orbit-container {
    position: relative;
    width: 220px;
    height: 220px;
}

.orbit-path {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px dashed rgba(14, 165, 233, 0.18);
    border-radius: 50%;
    animation: rotate-orbit 20s linear infinite;
}

@keyframes rotate-orbit {
    from {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

.orbit-item {
    position: absolute;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: counter-rotate 20s linear infinite;
    cursor: pointer;
    transition: all 0.3s ease;
}

.orbit-item:hover {
    transform: scale(1.15) rotate(0deg);
}

@keyframes counter-rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(-360deg);
    }
}

.orbit-item-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.orbit-item-2 {
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.orbit-item-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.orbit-item-4 {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, #10b981, #059669);
}

.center-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: center-pulse 2s ease-in-out infinite;
}

@keyframes center-pulse {

    0%,
    100% {
        transform: translate(-50%, -50%) scale(1);
        box-shadow: 0 12px 32px rgba(79, 70, 229, 0.3);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.08);
        box-shadow: 0 16px 40px rgba(79, 70, 229, 0.5);
    }
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(14, 165, 233, 0.5);
    border-radius: 50%;
    animation: particle-float 4s ease-in-out infinite;
}

@keyframes particle-float {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0;
    }

    50% {
        transform: translate(var(--tx), var(--ty)) scale(1.4);
        opacity: 1;
    }
}

.particle-1 {
    top: 20%;
    left: 20%;
    --tx: -24px;
    --ty: -32px;
    animation-delay: 0s;
}

.particle-2 {
    top: 30%;
    right: 25%;
    --tx: 32px;
    --ty: -24px;
    animation-delay: 0.5s;
}

.particle-3 {
    bottom: 25%;
    left: 30%;
    --tx: -28px;
    --ty: 28px;
    animation-delay: 1s;
}

.particle-4 {
    bottom: 20%;
    right: 20%;
    --tx: 28px;
    --ty: 32px;
    animation-delay: 1.5s;
}

.particle-5 {
    top: 50%;
    left: 10%;
    --tx: -32px;
    --ty: 0px;
    animation-delay: 2s;
}

.particle-6 {
    top: 50%;
    right: 10%;
    --tx: 32px;
    --ty: 0px;
    animation-delay: 2.5s;
}

/* ═══════════════════════════════════════════════════════
   TIMELINE (How It Works)
   ═══════════════════════════════════════════════════════ */
.timeline-container {
    position: relative;
}

.timeline-line {
    position: absolute;
    left: 26px;
    top: 32px;
    bottom: 32px;
    width: 3px;
    background: linear-gradient(180deg, rgba(14, 165, 233, 0.3) 0%, rgba(14, 165, 233, 0.6) 50%, rgba(124, 58, 237, 0.5) 100%);
    border-radius: 2px;
}

.timeline-progress {
    position: absolute;
    left: 26px;
    top: 32px;
    width: 3px;
    background: linear-gradient(180deg, #4f46e5 0%, #7c3aed 100%);
    border-radius: 2px;
    height: 0%;
    transition: height 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step {
    position: relative;
    padding-left: 72px;
    margin-bottom: 16px;
    opacity: 0;
    transform: translateX(-20px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-step.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-step-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 14px;
    padding: 16px;
    border: 1px solid rgba(255, 255, 255, 0.07);
    position: relative;
    transition: all 0.4s ease;
    cursor: pointer;
}

.timeline-step-card:hover {
    transform: translateX(8px) translateY(-3px);
    box-shadow: 0 16px 32px rgba(14, 165, 233, 0.1);
    border-color: rgba(14, 165, 233, 0.25);
}

.step-number {
    position: absolute;
    left: -46px;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    border: 2px solid rgba(14, 165, 233, 0.25);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #6366f1;
    transition: all 0.4s ease;
    z-index: 10;
}

.timeline-step-card:hover .step-number {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    color: white;
    border-color: #4f46e5;
    transform: translateY(-50%) scale(1.1);
}

.step-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(124, 58, 237, 0.15));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    transition: all 0.3s ease;
}

.timeline-step-card:hover .step-icon {
    background: linear-gradient(135deg, #4f46e5, #7c3aed);
    transform: rotate(5deg) scale(1.05);
}

.timeline-step-card h3 {
    color: var(--text-light);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    font-family: 'Sora', sans-serif;
}

.timeline-step-card p {
    color: var(--text-muted-d);
    font-size: 12px;
    line-height: 1.5;
}

.step-arrow {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.timeline-step-card:hover .step-arrow {
    opacity: 1;
    transform: translateY(-50%) translateX(6px);
}

/* ═══════════════════════════════════════════════════════
   USE CASE BENTO GRID
   ═══════════════════════════════════════════════════════ */
.bento-card-dark {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
}

.bento-card-light {
    background: #fff;
    border: 1px solid rgba(15, 13, 46, 0.08);
    border-radius: 18px;
    box-shadow: 0 2px 12px rgba(15, 13, 46, 0.06);
}

/* ═══════════════════════════════════════════════════════
   WHY CHOOSE CARDS
   ═══════════════════════════════════════════════════════ */
.feature-why-card {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 18px;
    transition: all 0.3s ease;
}

.section-dark .feature-why-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.section-dark .feature-why-card:hover {
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px);
}

.section-light .feature-why-card {
    background: #fff;
    border: 1px solid rgba(15, 13, 46, 0.08);
    box-shadow: 0 2px 12px rgba(15, 13, 46, 0.06);
}

.section-light .feature-why-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 16px 40px rgba(15, 13, 46, 0.12);
    transform: translateY(-5px);
}

.feature-why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #4f46e5, #7c3aed);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-why-card:hover::before {
    transform: scaleX(1);
}

.section-dark .feature-why-card h3 {
    color: var(--text-light);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

.section-light .feature-why-card h3 {
    color: var(--text-dark);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
}

/* ═══════════════════════════════════════════════════════
   FAQ
   ═══════════════════════════════════════════════════════ */
.faq-item {
    border-radius: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.section-dark .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
}

.section-dark .faq-item:hover {
    border-color: rgba(14, 165, 233, 0.2);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.section-light .faq-item {
    background: #fff;
    border: 1px solid rgba(15, 13, 46, 0.08);
    box-shadow: 0 2px 8px rgba(15, 13, 46, 0.05);
}

.section-light .faq-item:hover {
    border-color: rgba(79, 70, 229, 0.2);
    box-shadow: 0 8px 24px rgba(15, 13, 46, 0.1);
}

.section-dark .faq-item h4 {
    color: var(--text-light);
}

.section-light .faq-item h4 {
    color: var(--text-dark);
}

.section-dark .faq-item p {
    color: var(--text-muted-d);
}

.section-light .faq-item p {
    color: var(--text-muted-l);
}

/* ═══════════════════════════════════════════════════════
   BLOB ANIMATIONS
   ═══════════════════════════════════════════════════════ */
.animate-blob {
    animation: blob-bounce 7s infinite;
}

@keyframes blob-bounce {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(24px, -40px) scale(1.08);
    }

    66% {
        transform: translate(-16px, 16px) scale(0.92);
    }
}

.animation-delay-2000 {
    animation-delay: 2s;
}

/* ═══════════════════════════════════════════════════════
   BADGE / PILL LABELS
   ═══════════════════════════════════════════════════════ */
.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-family: 'Sora', sans-serif;
}

.badge-indigo-dark {
    background: rgba(79, 70, 229, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(79, 70, 229, 0.3);
}

.badge-purple-dark {
    background: rgba(124, 58, 237, 0.15);
    color: #c4b5fd;
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.badge-indigo-light {
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.badge-purple-light {
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.2);
}

/* ═══════════════════════════════════════════════════════
   SECTION INNER CONTAINER (concise spacing)
   ═══════════════════════════════════════════════════════ */
.section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-header p {
    font-size: 14px;
    margin-top: 8px;
}

/* ═══════════════════════════════════════════════════════
   AUTOMATION PIPELINE FLOW CARD
   ═══════════════════════════════════════════════════════ */
.pipeline-card {
    background: #0f0d2e;
    border-radius: 16px;
    padding: 20px;
    border: 1px solid rgba(79, 70, 229, 0.2);
}

.pipeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    text-align: center;
}

.pipeline-node-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pipeline-node span {
    font-size: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.pipeline-arrow {
    color: rgba(255, 255, 255, 0.2);
}

/* ═══════════════════════════════════════════════════════
   STAT CARD
   ═══════════════════════════════════════════════════════ */
.stat-card {
    border-radius: 16px;
    padding: 18px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.stat-card .stat-value {
    font-family: 'Sora', sans-serif;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
}

.stat-card .stat-label {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
}

/* ═══════════════════════════════════════════════════════
   RELATED CARDS
   ═══════════════════════════════════════════════════════ */
.related-card {
    border-radius: 16px;
    padding: 16px;
    display: block;
    text-decoration: none;
    transition: all 0.25s ease;
}

.section-dark .related-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.07);
    color: var(--text-light);
}

.section-dark .related-card:hover {
    border-color: rgba(14, 165, 233, 0.22);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.section-light .related-card {
    background: #fff;
    border: 1px solid rgba(15, 13, 46, 0.08);
    box-shadow: 0 2px 8px rgba(15, 13, 46, 0.05);
    color: var(--text-dark);
}

.section-light .related-card:hover {
    border-color: rgba(79, 70, 229, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 13, 46, 0.1);
}

.related-card h3 {
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
    transition: color 0.2s;
}

.related-card p {
    font-size: 12px;
    line-height: 1.5;
}

.section-dark .related-card:hover h3 {
    color: var(--accent);
}

.section-light .related-card:hover h3 {
    color: var(--indigo);
}

/* ═══════════════════════════════════════════════════════
   LEARN MORE LINK
   ═══════════════════════════════════════════════════════ */
.learn-more-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 8px;
    transition: gap 0.2s;
    padding: 5px 10px;
    border-radius: 8px;
}

.section-dark .learn-more-link {
    background: rgba(14, 165, 233, 0.08);
    color: #38bdf8;
}

.section-light .learn-more-link {
    background: rgba(79, 70, 229, 0.08);
    color: #4f46e5;
}

.learn-more-link:hover {
    gap: 8px !important;
}

/* ═══════════════════════════════════════════════════════
   PROSE / RICH TEXT CONTENT
   ═══════════════════════════════════════════════════════ */
.prose-dark h2,
h3,
h4 {
    color: var(--text-light);
}

.prose-dark p,
.prose-dark li {
    color: var(--text-muted-d);
    font-size: 13px;
    line-height: 1.7;
}

.prose-light h2,
h3,
h4 {
    color: var(--text-dark);
}

.prose-light p,
.prose-light li {
    color: var(--text-muted-l);
    font-size: 13px;
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════
   STATS ANIMATION CARD
   ═══════════════════════════════════════════════════════ */
.stats-animation-card {
    background: rgba(14, 165, 233, 0.08);
    border: 1px solid rgba(14, 165, 233, 0.15);
    animation: cardFloat 6s ease-in-out infinite;
}

@keyframes cardFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-8px) rotate(0.5deg);
    }
}

/* ═══════════════════════════════════════════════════════
   CALENDAR MODAL
   ═══════════════════════════════════════════════════════ */
.cal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.cal-modal {
    background: #fff;
    border-radius: 24px;
    width: 100%;
    max-width: 750px;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    animation: calSlideUp 0.3s ease;
}

@keyframes calSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    border-bottom: 1px solid #e5e7eb;
    background: #f9fafb;
}

.cal-title {
    font-size: 16px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
    font-family: 'Sora', sans-serif;
}

.cal-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: #6b7280;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: background 0.2s;
    line-height: 1;
}

.cal-close:hover {
    background: rgba(0, 0, 0, 0.06);
    color: #1f2937;
}

.cal-iframe {
    width: 100%;
    height: 520px;
    border: none;
    display: block;
}

@media (max-width: 640px) {
    .cal-iframe {
        height: 480px;
    }
}

/* ═══════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════ */
.footer {
    background: #050714;
    padding: var(--spacing-3xl) var(--spacing-md);
    color: var(--text-light);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: var(--spacing-xl);
}

@media (min-width: 768px) {
    .footer-content {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(6, 1fr);
    }
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.footer-title-button {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    transition: color 0.2s;
    font-family: inherit;
}

.footer-title {
    font-size: 0.9rem;
    font-weight: 700;
    margin: 0;
    color: var(--text-light);
    transition: color 0.2s;
    font-family: 'Sora', sans-serif;
}

.dropdown-icon {
    display: flex;
    align-items: center;
    transition: transform 0.2s;
    color: var(--text-muted-d);
}

.dropdown-icon.expanded {
    transform: rotate(180deg);
}

@media (min-width: 768px) {
    .dropdown-icon {
        display: none;
    }

    .footer-title-button {
        cursor: default;
        pointer-events: none;
    }
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-xs);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.2s;
    opacity: 0;
}

.footer-links.expanded {
    max-height: 500px;
    opacity: 1;
    margin-top: var(--spacing-sm);
}

@media (min-width: 768px) {
    .footer-links {
        max-height: none;
        opacity: 1;
        margin-top: var(--spacing-sm);
    }
}

.footer-link {
    color: #475569;
    text-decoration: none;
    font-size: 0.8rem;
    transition: all 0.2s;
    line-height: 1.6;
    position: relative;
    display: inline-block;
    width: fit-content;
}

.footer-link:hover {
    color: var(--accent);
    transform: translateX(3px);
}

.footer-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1.5px;
    bottom: -1px;
    left: 0;
    background: var(--accent);
    transition: width 0.2s;
}

.footer-link:hover::after {
    width: 100%;
}

/* ═══════════════════════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════════════════════ */
.navbar-container {
    width: 100%;
    background-color: transparent;
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.navbar-inner {
    max-width: 100vw;
    width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
    padding: 0 20px;
    height: var(--n-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--n-bg);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-top: 1px solid var(--n-border-t);
    border-bottom: 1px solid var(--n-border-b);
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: 0 1px 0 rgba(79, 70, 229, 0.14), 0 8px 48px rgba(0, 0, 0, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    position: relative;
    transition: box-shadow 0.3s ease;
}

@media (min-width: 768px) {
    .navbar-inner {
        padding: 0 32px;
    }
}

@media (min-width: 1280px) {
    .navbar-inner {
        padding: 0 52px;
    }
}

.navbar-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1;
    min-width: 0;
}

.navbar-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.navbar-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    margin-right: 40px;
    flex-shrink: 0;
    height: 44px;
}

.navbar-logo-img {
    height: 52%;
    width: auto;
    filter: brightness(1.2) drop-shadow(0 0 8px rgba(165, 180, 252, 0.2));
    transition: filter 0.25s ease, transform 0.3s ease;
}

.navbar-logo:hover .navbar-logo-img {
    filter: brightness(1.4) drop-shadow(0 0 12px rgba(165, 180, 252, 0.35));
    transform: translateY(-1px);
}

.navbar-links {
    display: none;
    align-items: center;
    gap: 2px;
    position: relative;
}

.navbar-links::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -60px;
    right: -60px;
    height: 20px;
    background: transparent;
}

@media (min-width: 1024px) {
    .navbar-links {
        display: flex;
    }
}

.navbar-item {
    position: relative;
}

.navbar-item::after {
    content: '';
    position: absolute;
    top: 100%;
    left: -16px;
    right: -16px;
    height: 16px;
    background: transparent;
    z-index: 99;
}

.navbar-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--n-text);
    letter-spacing: -0.1px;
    border-radius: 8px;
    transition: color 0.18s ease, background 0.18s ease;
    position: relative;
    white-space: nowrap;
    text-decoration: none;
}

.navbar-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    right: 50%;
    height: 1.5px;
    background: var(--n-accent);
    border-radius: 2px;
    opacity: 0;
    transition: left 0.22s ease, right 0.22s ease, opacity 0.22s ease;
}

.navbar-link:hover {
    color: var(--n-text-h);
    background: rgba(79, 70, 229, 0.1);
}

.navbar-link:hover::after {
    left: 14px;
    right: 14px;
    opacity: 0.6;
}

.navbar-login-link {
    display: none;
    padding: 8px 16px;
    background: none;
    border: none;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--n-text);
    cursor: pointer;
    border-radius: 8px;
    text-decoration: none;
    transition: color 0.18s ease, background 0.18s ease;
    white-space: nowrap;
}

.navbar-login-link:hover {
    color: #fff;
    background: rgba(79, 70, 229, 0.1);
}

@media (min-width: 640px) {
    .navbar-login-link {
        display: block;
    }
}

.navbar-btn-primary {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 9px 22px;
    background: linear-gradient(135deg, #4f46e5 0%, #5b21b6 100%);
    color: #fff;
    border: none;
    border-radius: 9px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    white-space: nowrap;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.22s ease;
    box-shadow: 0 0 0 1px rgba(165, 180, 252, 0.2), 0 4px 20px rgba(79, 70, 229, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}

.navbar-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12) 0%, transparent 55%);
    pointer-events: none;
}

.navbar-btn-primary:hover {
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    box-shadow: 0 0 0 1px rgba(165, 180, 252, 0.35), 0 6px 28px rgba(79, 70, 229, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.16);
    transform: translateY(-1px);
}

.navbar-btn-primary:active {
    transform: translateY(0);
}

.navbar-mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: rgba(79, 70, 229, 0.1);
    border: 1px solid rgba(79, 70, 229, 0.25);
    border-radius: 9px;
    color: var(--n-accent);
    cursor: pointer;
    transition: all 0.18s ease;
}

.navbar-mobile-btn:hover {
    background: rgba(79, 70, 229, 0.2);
    border-color: rgba(165, 180, 252, 0.4);
    color: #fff;
}

@media (min-width: 1024px) {
    .navbar-mobile-btn {
        display: none;
    }
}

/* MEGA DROPDOWN */
.navbar-mega-dropdown {
    position: fixed;
    top: var(--n-height);
    left: 0;
    right: 0;
    width: 100%;
    background: var(--d-bg);
    border-top: 1px solid rgba(79, 70, 229, 0.3);
    border-bottom: 1px solid var(--d-border);
    border-left: none;
    border-right: none;
    border-radius: 0;
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.7), 0 8px 32px rgba(15, 13, 46, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.03);
    z-index: 1001;
    overflow-x: hidden;
    box-sizing: border-box;
    display: none;
    animation: navDropDown 0.22s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.navbar-mega-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
    background: transparent;
}

@keyframes navDropDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-solutions-dropdown {
    max-height: 85vh;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(79, 70, 229, 0.4) transparent;
}

.navbar-mega-content {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 24px 52px 0;
    box-sizing: border-box;
    overflow-x: hidden;
}

@media (max-width: 768px) {
    .navbar-mega-content {
        padding: 20px 20px 0;
    }
}

@media (max-width: 480px) {
    .navbar-mega-content {
        padding: 16px 14px 0;
    }
}

.navbar-mega-header {
    margin-bottom: 16px;
}

.navbar-mega-title {
    font-family: 'Sora', sans-serif;
    font-size: 10px;
    font-weight: 700;
    color: var(--n-accent2);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0;
}

.navbar-mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.navbar-solutions-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
}

.navbar-community-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

@media (max-width: 768px) {

    .navbar-mega-grid,
    .navbar-solutions-grid,
    .navbar-community-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (min-width: 769px) and (max-width: 1100px) {
    .navbar-mega-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar-solutions-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .navbar-community-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.navbar-mega-column,
.navbar-solutions-column,
.navbar-community-column {
    display: flex;
    flex-direction: column;
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid var(--d-border);
}

.navbar-mega-column:last-child,
.navbar-solutions-column:last-child,
.navbar-community-column:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.navbar-mega-column-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}

.navbar-mega-column-title {
    font-family: 'Sora', sans-serif;
    font-size: 9.5px;
    font-weight: 700;
    color: var(--d-cat);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.navbar-mega-column-items {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navbar-mega-item {
    display: block;
    width: 100%;
    padding: 8px 10px;
    background: none;
    border: 1px solid transparent;
    border-radius: 8px;
    text-align: left;
    cursor: pointer;
    transition: background 0.14s, border-color 0.14s;
    text-decoration: none;
    color: inherit;
}

.navbar-mega-item:hover {
    background: var(--d-hover);
    border-color: rgba(79, 70, 229, 0.2);
}

.navbar-mega-item-name {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.3;
    transition: color 0.14s;
}

.navbar-mega-item:hover .navbar-mega-item-name {
    color: var(--n-accent);
}

.navbar-mega-item-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.4;
    margin-top: 2px;
}

.navbar-view-all {
    border-color: rgba(79, 70, 229, 0.22) !important;
    background: rgba(79, 70, 229, 0.07) !important;
}

.navbar-view-all:hover {
    background: rgba(79, 70, 229, 0.14) !important;
    border-color: rgba(79, 70, 229, 0.35) !important;
}

.navbar-view-all .navbar-mega-item-name {
    color: var(--n-accent) !important;
}

.navbar-dropdown-footer {
    max-width: 1280px;
    margin: 0 auto;
    padding: 12px 52px 16px;
    border-top: 1px solid var(--d-divider);
    display: flex;
    align-items: center;
    gap: 16px;
}

.navbar-dropdown-buttons {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.navbar-get-started-btn {
    padding: 8px 18px;
    background: linear-gradient(135deg, #4f46e5 0%, #5b21b6 100%);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.18s;
    box-shadow: 0 2px 14px rgba(79, 70, 229, 0.4);
}

.navbar-get-started-btn:hover {
    background: linear-gradient(135deg, #6366f1 0%, #7c3aed 100%);
    transform: translateY(-1px);
}

/* MOBILE MENU */
.navbar-mobile-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    background: #0f0d2e;
    border: 1px solid rgba(79, 70, 229, 0.22);
    border-radius: 16px;
    box-shadow: 0 28px 80px rgba(0, 0, 0, 0.75), inset 0 1px 0 rgba(255, 255, 255, 0.04);
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    z-index: 1002;
    scrollbar-width: thin;
    scrollbar-color: rgba(79, 70, 229, 0.35) transparent;
    animation: mobileMenuIn 0.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes mobileMenuIn {
    from {
        opacity: 0;
        transform: translateY(-8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@media (min-width: 1024px) {
    .navbar-mobile-menu {
        display: none !important;
    }
}

.navbar-mobile-content {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navbar-mobile-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    background: none;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    width: 100%;
    text-align: left;
    transition: background 0.14s, color 0.14s;
    text-decoration: none;
}

.navbar-mobile-link:hover {
    background: rgba(79, 70, 229, 0.12);
    color: #fff;
}

.navbar-mobile-chevron {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.28);
    display: inline-block;
    transition: transform 0.2s, color 0.2s;
}

.navbar-mobile-chevron.rotated {
    transform: rotate(180deg);
    color: var(--n-accent);
}

.navbar-mobile-dropdown {
    padding-left: 12px;
    margin-top: 2px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navbar-mobile-mega-category {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.navbar-mobile-category-title {
    font-family: 'Sora', sans-serif;
    font-size: 9px;
    font-weight: 700;
    color: rgba(165, 180, 252, 0.65);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    padding: 6px 12px 3px;
}

.navbar-mobile-dropdown-item {
    padding: 9px 12px;
    background: none;
    border: none;
    border-radius: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: background 0.14s, color 0.14s;
    text-decoration: none;
}

.navbar-mobile-dropdown-item:hover {
    background: rgba(79, 70, 229, 0.1);
    color: var(--n-accent);
}

.navbar-mobile-item-name {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 1px;
}

.navbar-mobile-item-desc {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.27);
    line-height: 1.4;
}

.navbar-mobile-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0 4px;
    margin-top: 8px;
    border-top: 1px solid rgba(79, 70, 229, 0.12);
}

.navbar-mobile-login {
    padding: 11px 14px;
    background: none;
    border: 1px solid rgba(165, 180, 252, 0.15);
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.55);
    cursor: pointer;
    width: 100%;
    text-align: center;
    transition: all 0.14s;
    text-decoration: none;
}

.navbar-mobile-login:hover {
    border-color: rgba(165, 180, 252, 0.35);
    color: var(--n-accent);
    background: rgba(79, 70, 229, 0.08);
}

.navbar-mobile-btn-primary {
    padding: 13px 14px;
    background: linear-gradient(135deg, #4f46e5 0%, #5b21b6 100%);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    width: 100%;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.45);
}

.navbar-mobile-btn-primary:hover {
    background: linear-gradient(135deg, #6366f1, #7c3aed);
    transform: translateY(-1px);
}

.navbar-solutions-dropdown .navbar-mega-title {
    font-size: 10px;
}

/* ═══════════════════════════════════════════════════════
   TAILWIND DARK OVERRIDES (for any residual tw classes)
   ═══════════════════════════════════════════════════════ */
.section-dark .bg-white {
    background-color: rgba(255, 255, 255, 0.04) !important;
}

.section-dark .text-gray-900 {
    color: var(--text-light) !important;
}

.section-dark .text-gray-700 {
    color: #cbd5e1 !important;
}

.section-dark .text-gray-600 {
    color: var(--text-muted-d) !important;
}

.section-dark .border-gray-100 {
    border-color: var(--border-dark) !important;
}

.section-dark .shadow-sm {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4) !important;
}

.section-dark .shadow-lg {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5) !important;
}

.section-dark .text-indigo-600 {
    color: #38bdf8 !important;
}

.section-dark .bg-indigo-100 {
    background: rgba(14, 165, 233, 0.12) !important;
}

.section-dark .bg-indigo-50 {
    background: rgba(14, 165, 233, 0.07) !important;
}

.section-dark .bg-gray-900 {
    background: #0a0d1a !important;
}

.section-light .bg-white {
    background-color: #fff !important;
}

.section-light .text-gray-900 {
    color: var(--text-dark) !important;
}

.section-light .text-gray-600 {
    color: var(--text-muted-l) !important;
}

.section-light .rounded-2xl,
.section-light .rounded-3xl {
    border-color: rgba(15, 13, 46, 0.08) !important;
}

/* Global section paragraph sizing */
.section-95vh .max-w-7xl,
.section-95vh .max-w-4xl {
    padding-top: 0;
}

/* Ensure no text overflows */
.section-95vh * {
    max-width: 100%;
}

/* AOS respects 95vh */
@media (min-height: 700px) {
    .section-95vh [data-aos] {
        transition-duration: 600ms !important;
    }
}

/* ═══════════════════════════════════════════════════════
   MOBILE RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .section-95vh {
        max-height: none;
        min-height: auto;
        padding: 40px 0;
    }

    .timeline-line,
    .timeline-progress {
        left: 16px;
    }

    .timeline-step {
        padding-left: 60px;
        margin-bottom: 14px;
    }

    .step-number {
        left: -40px;
        width: 44px;
        height: 44px;
        font-size: 15px;
    }

    .orbit-container {
        width: 180px;
        height: 180px;
    }

    .orbit-path:first-child {
        width: 180px !important;
        height: 180px !important;
    }

    .orbit-path:last-of-type {
        width: 130px !important;
        height: 130px !important;
    }
}