/*
  Premium SaaS Contact Page Styles
  Theme: Dark Modern / Glassmorphism
Trigger-1
*/

:root {
    /* Color Palette - Concentrated Accent (Light Mode) */
    --bg-body: #ffffff;
    --bg-gradient-start: #ffffff;
    --bg-gradient-end: #ffffff; /* Removed Green tint */

    --sub-header-bg: #111827;
    --sub-header-text: #f3f4f6;

    --accent-primary: #16a34a; /* Consistently Green 600 */
    --accent-secondary: var(--accent-primary); /* Sync to remove gradient duality */
    --accent-glow: rgba(22, 163, 74, 0.15);
    --mascot-color: var(--accent-primary);

    --text-main: #0f172a;
    /* Slate 900 */
    --text-muted: #475569;
    /* Slate 600 */

    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(22, 163, 74, 0.15);
    --glass-shadow: 0 12px 40px rgba(22, 163, 74, 0.08);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 32px;

    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 8rem;
}

/* Dark Mode refinements for high-end look */
body.dark-mode {
    --bg-body: #0a0a0b;
    --bg-gradient-start: #0a0a0b;
    --bg-gradient-end: #0a0a0b;

    --text-main: #f8fafc;
    --text-muted: #94a3b8;

    --glass-bg: rgba(15, 23, 42, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);

    --accent-glow: rgba(22, 163, 74, 0.15);
}

body.dark-mode .advantage-card,
body.dark-mode .feature-image,
body.dark-mode .browser-window,
body.dark-mode .testimonial-card,
body.dark-mode .pricing-card.featured,
body.dark-mode .challenge-block img {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.08);
}

body.dark-mode .pricing-card {
    background: #0a0a0a;
}

body.dark-mode h2 {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: initial;
}

body.dark-mode .nav-btn,
body.dark-mode .btn-primary {
    color: #000;
    /* Contrast against green */
}

body.dark-mode .site-footer {
    background: #050505;
    border-top-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .feature-section:nth-child(even),
body.dark-mode .testimonial-card:hover {
    background: #0a0a0a;
}

/* Theme Toggle Button */
.theme-toggle {
    background: none;
    border: 1px solid rgba(0, 0, 0, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--text-main);
    transition: var(--transition-fast);
    margin-right: 1rem;
}

.theme-toggle:hover {
    background: rgba(0, 0, 0, 0.05);
}

/* body.dark-mode .theme-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
} */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section,
div[id] {
    scroll-margin-top: 100px;
    /* height of your fixed header */
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    background-image: none;
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography Definitions */
/* Set a standard base mapping for headings and paragraphs */
h1,
.heading-xl {
    font-family: var(--font-heading);
    font-size: 2.12rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

h2,
.heading-lg {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    line-height: 1.25;
    letter-spacing: -0.01em;
    color: var(--text-main);
}

h3,
.heading-md {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.3;
    color: var(--text-main);
}

h4,
.heading-sm {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.4;
    color: var(--text-main);
}

p,
.text-body {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.text-lead {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-muted);
    /*line-height: 1.6;*/
    margin: 20px;
}

.text-sm {
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text-muted);
}

.text-xs {
    font-family: var(--font-body);
    font-size: 0.75rem;
    color: var(--text-muted);
}

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

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

/* Solid Accents & Text */
.gradient-text {
    color: var(--accent-primary);
    background: none;
    -webkit-text-fill-color: initial;
    display: inline-block;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 32px 0;
    /* Drastic reduction from 60px */
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2rem;
    /* Reduced margin */
}

/* Sub Header Bar */
.sub-header-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 32px;
    background: var(--sub-header-bg);
    color: var(--sub-header-text);
    z-index: 1000;
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 500;
}

.sub-header-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 1.5rem;
}

.sub-header-link {
    color: var(--accent-secondary);
    text-decoration: none;
    transition: var(--transition-fast);
}

.sub-header-link:hover {
    color: var(--accent-primary);
    text-shadow: 0 0 8px var(--accent-glow);
}

header {
    padding: 10px 0;
    position: fixed;
    top: 32px;
    /* Positioned below sub-header */
    width: 100%;
    z-index: 100;
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Light border */
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    letter-spacing: -0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-primary);
    animation: breathe 2s infinite ease-in-out;
    transition: all 1s ease;
}

/* LOADER STYLES */
.loader-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--bg-body);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out, visibility 0.5s step-end;
}

.loader-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-mover {
    transition: transform 1s cubic-bezier(0.6, 0, 0.2, 1);
    /* Smooth ease-in-out movement */
    will-change: transform;
}

/* Big & Fast state when in loader */
.loader-mover .logo-dot {
    width: 60px;
    height: 60px;
    box-shadow: 0 0 30px var(--accent-primary);
    animation-duration: 0.5s;
    /* Fast breathing */
}

/* Revert to normal when moving */
.loader-mover.moving .logo-dot {
    width: 10px;
    height: 10px;
    box-shadow: 0 0 10px var(--accent-primary);
    animation-duration: 2s;
}

@keyframes breathe {
    0% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
    }

    50% {
        transform: scale(1.2);
        opacity: 0.8;
        box-shadow: 0 0 0 6px rgba(22, 163, 74, 0);
    }

    100% {
        transform: scale(1);
        opacity: 1;
        box-shadow: 0 0 0 0 rgba(22, 163, 74, 0);
    }
}

/* CRAB MASCOT STYLES */
.crawler-container {
    position: fixed;
    bottom: 40px;
    /* Up a bit from the bottom */
    right: 40px;
    /* Fixed on the right */
    width: 40px;
    height: 40px;
    z-index: 999;
    pointer-events: auto;
    cursor: pointer;
    opacity: 0;
    transform: none;
    will-change: opacity;
    transition: opacity 1s ease;
}

.crawler-container.active {
    opacity: 1;
}

/* Tooltip above mascot */
.crawler-tooltip {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--glass-shadow);
    white-space: nowrap;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.crawler-tooltip::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid var(--glass-bg);
}

.crawler-tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    animation: tooltip-bounce 2s ease-in-out infinite;
}

@keyframes tooltip-bounce {

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

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

.crawler-body {
    width: 32px;
    height: 22px;
    background: var(--mascot-color);
    border-radius: 50% 50% 30% 30%;
    position: relative;
    box-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
    z-index: 2;
    animation: crab-body-bob 0.6s infinite ease-in-out;
}

@keyframes crab-body-bob {

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

    50% {
        transform: translateY(-1px) rotate(1deg);
    }
}

/* Serrated shell look */
.crawler-body::before {
    content: '';
    position: absolute;
    top: -3px;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--mascot-color);
    clip-path: polygon(0% 100%, 10% 0%, 20% 100%, 30% 0%, 40% 100%, 50% 0%, 60% 100%, 70% 0%, 80% 100%, 90% 0%, 100% 100%);
}

/* Large Curved Claws (Matching reference image) */
.claw {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--mascot-color);
    border-radius: 60% 40% 40% 40%;
    top: -12px;
    z-index: 3;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.claw::after {
    /* Inner pincer */
    content: '';
    position: absolute;
    width: 6px;
    height: 8px;
    background: var(--mascot-color);
    border-radius: 50%;
    top: 2px;
}

.claw.left {
    left: -8px;
    transform: rotate(-30deg);
    transform-origin: bottom right;
    animation: crab-claw-l 1s infinite alternate ease-in-out;
}

.claw.left::after {
    right: -2px;
    transform: rotate(20deg);
}

.claw.right {
    right: -8px;
    transform: rotate(30deg);
    transform-origin: bottom left;
    animation: crab-claw-r 1s infinite alternate ease-in-out;
}

.claw.right::after {
    left: -2px;
    transform: rotate(-20deg);
}

@keyframes crab-claw-l {
    from {
        transform: rotate(-40deg);
    }

    to {
        transform: rotate(-10deg);
    }
}

@keyframes crab-claw-r {
    from {
        transform: rotate(40deg);
    }

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

.crawler-eye {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    top: -4px;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.crawler-eye.left {
    left: 5px;
}

.crawler-eye.right {
    right: 5px;
}

.crawler-mouth {
    position: absolute;
    width: 10px;
    height: 5px;
    border-bottom: 2.5px solid white;
    border-radius: 0 0 8px 8px;
    top: 7px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
    filter: drop-shadow(0 0 2px rgba(0, 0, 0, 0.5));
}

.crawler-pupil {
    width: 4px;
    height: 4px;
    background: black;
    border-radius: 50%;
    transition: transform 0.1s ease-out;
}

.crawler-leg {
    position: absolute;
    width: 14px;
    height: 1.5px;
    background: var(--mascot-color);
    z-index: 1;
    border-radius: 2px;
}

/* 4 Legs per side */
.leg-l1,
.leg-l2,
.leg-l3,
.leg-l4 {
    left: -10px;
    transform-origin: right center;
}

.leg-r1,
.leg-r2,
.leg-r3,
.leg-r4 {
    right: -10px;
    transform-origin: left center;
}

.leg-l1 {
    top: 4px;
    animation: crab-scuttle 0.4s infinite ease-in-out;
}

.leg-l2 {
    top: 9px;
    animation: crab-scuttle 0.4s infinite ease-in-out -0.1s;
}

.leg-l3 {
    top: 14px;
    animation: crab-scuttle 0.4s infinite ease-in-out -0.2s;
}

.leg-l4 {
    top: 19px;
    animation: crab-scuttle 0.4s infinite ease-in-out -0.3s;
}

.leg-r1 {
    top: 4px;
    animation: crab-scuttle 0.4s infinite ease-in-out -0.05s;
}

.leg-r2 {
    top: 9px;
    animation: crab-scuttle 0.4s infinite ease-in-out -0.15s;
}

.leg-r3 {
    top: 14px;
    animation: crab-scuttle 0.4s infinite ease-in-out -0.25s;
}

.leg-r4 {
    top: 19px;
    animation: crab-scuttle 0.4s infinite ease-in-out -0.35s;
}

@keyframes crab-scuttle {

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

    50% {
        transform: rotate(-10deg) translateY(-2px) translateX(2px);
    }
}

.nav-btn {
    width: auto !important;
    padding: 10px 20px;
    font-size: 0.9rem;
    background: var(--accent-primary) !important;
    box-shadow: none !important;
}

.nav-btn:hover {
    background: var(--accent-secondary) !important;
    box-shadow: none !important;
}

main {
    flex: 1;
    /* Kept for body flex column */
    padding-top: 30px;
    /* Header offset */
    display: block;
    width: 100%;
}

/* HERO SECTION */
.hero-section {
    text-align: center;
    padding: 60px 0 40px;
    /* Balanced spacing */
    overflow: hidden;
    /* Prevent horizontal scroll from slides */
    position: relative;
    background: rgba(25, 25, 25, 0.5);
    /* Subtle glow */
}

.hero-content {
    max-width: 800px;
    margin: 0 auto 2rem;
    /* Spacing between text and carousel */
    animation: fadeUp 0.8s var(--transition-smooth);
    position: relative;
    z-index: 20;
    /* Keep text above everything */
}

.hero-subtext {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}

.hero-actions .btn-primary,
.hero-actions .btn-outline {
    width: auto;
    min-width: 160px;
}

/* 3D BROWSER VISUAL & SLIDES */
/* HERO STATIC SECTION */
.hero-static-section {
    padding: 120px 0;
    min-height: 85vh;
    display: flex;
    align-items: center;
    background: rgba(22, 163, 74, 0.02); /* Very subtle solid tint */
    overflow: hidden;
}

.hero-static-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-content {
    display: flex;
    flex-direction: column;
    min-height: 400px; /* Accommodate max text length + buttons */
}

.hero-text-content h1 {
    font-size: 3.5rem;
    line-height: 1.05;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
    transition: opacity 0.5s ease;
}

.hero-text-content .hero-description {
    font-size: 1.3rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 580px;
    transition: opacity 0.5s ease;
}

.hero-text-content.fade-out h1,
.hero-text-content.fade-out .hero-description {
    opacity: 0;
}

.hero-actions {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: flex-start; /* Reset from carousel's center */
    margin-top: auto; /* Pin to bottom of hero-text-content */
    padding-bottom: 20px;
}

.btn-hero {
    padding: 16px 32px;
    font-size: 1.1rem;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

/* HERO COLLAGE */
.hero-collage {
    position: relative;
    height: 480px;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 13px;
}

.collage-item {
    position: relative;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.collage-item:hover {
    transform: translateY(-15px) scale(1.03);
    z-index: 10;
    box-shadow: 0 40px 80px -15px rgba(0, 0, 0, 0.35);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Precise Collage Grid (matching image style) */
.item-1 { grid-area: 1 / 4 / 4 / 7; z-index: 2; } /* Top Right Portrait */
.item-2 { grid-area: 2 / 1 / 5 / 4; z-index: 1; } /* Middle Left Square-ish */
.item-3 { grid-area: 4 / 4 / 7 / 6; z-index: 3; } /* Bottom Center Portrait */
.item-4 { grid-area: 5 / 1 / 7 / 4; z-index: 2; } /* Bottom Left Landscape */
.item-5 { grid-area: 4 / 6 / 6 / 7; z-index: 1; } /* Tiny right accent */

@media (max-width: 1100px) {
    .hero-text-content h1 { font-size: 3.5rem; }
}

@media (max-width: 1024px) {
    .hero-static-section { padding: 80px 0; }
    .hero-static-grid { grid-template-columns: 1fr; text-align: center; gap: 80px; }
    .hero-text-content .hero-description { margin: 0 auto 40px; }
    .hero-actions { justify-content: center; }
    .hero-collage { height: 450px; max-width: 600px; margin: 0 auto; }
}

/* PROFESSIONAL CARD STYLING FOR SLIDE CONTENT */
.reliability-visual,
.browser-window {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    /* Clean white */
    border-radius: 16px;
    /* Modern radius */
    box-shadow:
        0 4px 6px -1px rgba(0, 0, 0, 0.05),
        0 20px 40px -6px rgba(0, 0, 0, 0.1);
    /* Deep premium shadow */
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transform: rotateX(0deg) !important;
    /* Remove 3D tilt for professional cleanliness */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-visual-container:hover .reliability-visual,
.hero-visual-container:hover .browser-window {
    transform: translateY(-5px);
    /* Subtle lift on hover */
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.05),
        0 30px 60px -10px rgba(0, 0, 0, 0.15);
}

/* Ensure content inside slides scales correctly */
.reliability-visual,
.browser-window {
    width: 100%;
    max-width: 100%;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(0deg) scale(0.9);
    /* Apply 3D transform here */
    transition: transform 0.5s ease;
}

.hero-visual-container:hover .reliability-visual,
.hero-visual-container:hover .browser-window {
    transform: rotateX(5deg) scale(0.95);
}

.hero-visual-container:hover {
    transform: rotateX(5deg) scale(1);
}

.browser-window {
    background: #1e293b;
    /* Dark Editor Theme */
    border-radius: 12px;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    overflow: hidden;
    text-align: left;
    position: relative;
}

.browser-header {
    background: #0f172a;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid #334155;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #475569;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: var(--accent-primary);
}

.browser-address {
    flex: 1;
    background: #1e293b;
    color: #94a3b8;
    font-size: 0.8rem;
    padding: 4px 12px;
    border-radius: 4px;
    text-align: center;
    font-family: monospace;
}

.browser-content {
    padding: 30px;
    position: relative;
    font-family: 'Fira Code', monospace;
}

.code-preview {
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.code-line {
    margin-bottom: 4px;
}

.indent {
    padding-left: 20px;
}

.double-indent {
    padding-left: 40px;
}

.tag {
    color: #f472b6;
}

/* Pink */
.attr {
    color: #60a5fa;
}

/* Blue */
.val {
    color: #a3e635;
}

/* Lime */

/* FORMAT BADGES (Slide 1) */
.format-badges {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.format-badges .badge {
    background: rgba(22, 163, 74, 0.1);
    color: var(--accent-primary);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

/* AI VISUAL (Slide 2) */
.ai-visual {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #0f172a;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.ai-node-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    z-index: 2;
}

.ai-node {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 15px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: white;
    font-size: 0.8rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    animation: float 4s ease-in-out infinite;
}

.ai-node i {
    font-size: 1.5rem;
    color: var(--accent-secondary);
}

.ai-node:nth-child(2) { animation-delay: 1s; }
.ai-node:nth-child(3) { animation-delay: 2s; }

.ai-connection-lines {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--accent-glow);
    background-size: 40px 40px;
    z-index: 1;
}

/* PRICING SECTION */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    align-items: start;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: var(--radius-ssm);
    position: relative;
    cursor: pointer;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--glass-shadow), 0 0 20px rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.3);
}

.pricing-card.featured {
    border-color: var(--accent-primary);
    background: #ffffff;
    /* Was dark glass */
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-primary);
    color: white;
    padding: 4px 12px;
    border-radius: 99px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.card-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-main);
}

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

.plan-features {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
}

.plan-features li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

/* CONTACT SECTION */
.contact-form-wrapper.centered-form {
    max-width: 700px;
    margin: 0 auto;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 1.5rem;
    border-radius: var(--radius-ssm);
}

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

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-main);
}

.form-input,
.form-textarea {
    width: 100%;
    background: #f8fafc;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    border-radius: var(--radius-ssm);
    color: var(--text-main-input);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.1);
}

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

/* Buttons */
.btn-primary,
.btn-outline {
    display: inline-block;
    /* width: 100%; */
    padding: 7px 12px;
    border-radius: var(--radius-ssm);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
    text-align: center;
    text-decoration: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(22, 163, 74, 0.4);
}

.btn-outline {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: var(--text-main);
}

body.dark-mode .btn-outline {
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--accent-primary);
    color: var(--accent-primary);
    background: rgba(22, 163, 74, 0.05);
}

.btn-block {
    width: 100%;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.875rem;
    color: var(--text-muted);
}

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

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

/* FEATURE SECTIONS */
.feature-section {
    padding: 32px 0;
    /* Consistent drastic reduction */
    position: relative;
    overflow: hidden;
}

.feature-section:nth-child(even) {
    background: #f8fafc;
    /* Light gray/white alternate */
}

.feature-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    /* Reduced from 4rem */
    align-items: center;
}

.feature-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.feature-text p {
    font-size: 1rem;
    /* Slightly reduced/standardized */
    margin-bottom: 1rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.feature-text h2 .gradient-text {
    background: none;
    -webkit-text-fill-color: var(--text-main);
    color: var(--text-main);
}

.feature-image {
    position: relative;
    border-radius: var(--radius-ssm);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.feature-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.feature-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent-primary);
}

.feature-image:hover img {
    transform: scale(1.03);
}

.feature-reversed .feature-container {
    direction: rtl;
    /* Simple way to swap columns visually, but better to use order */
    grid-template-areas: "image text";
}

.feature-reversed .feature-text {
    direction: ltr;
}

.feature-reversed .feature-image {
    direction: ltr;
}

/* Specific Feature Tweaks */
.tech-highlight {
    color: var(--accent-secondary);
    font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 900px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .hero-advantages {
        grid-template-columns: 1fr;
    }

    .feature-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        direction: ltr !important;
    }

    .feature-reversed .feature-container {
        direction: ltr;
        grid-template-areas: unset;
    }

    .feature-image {
        order: -1;
        /* Show image before text on mobile usually looks better, or remove this to keep text first */
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

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

    .contact-form-wrapper.centered-form {
        padding: 1.5rem;
    }
}

/* ==========================================================================
   APPLE-STYLE PRODUCT SHOWCASE
   ========================================================================== */

.heading-xxl {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

.dark-mode .heading-xxl {
    color: #ffffff;
    background: none;
    -webkit-text-fill-color: initial;
}

.apple-toggle-section {
    padding: 2rem 0;
    overflow: hidden;
}

.toggle-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    align-items: center;
}

.toggle-tabs {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.toggle-tab {
    cursor: pointer;
    padding: 1rem;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
    opacity: 0.5;
}

.toggle-tab:hover {
    background: rgba(0, 0, 0, 0.03);
    opacity: 0.8;
}

.dark-mode .toggle-tab:hover {
    background: rgba(255, 255, 255, 0.05);
}

.toggle-tab.active {
    opacity: 1;
    border-left-color: var(--accent-primary);
    background: rgba(22, 163, 74, 0.05);
    /* Accent primary with opacity */
}

.toggle-tab h2 {
    margin-bottom: 0.5rem;
}

.toggle-desc {
    margin: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
}

.toggle-tab.active .toggle-desc {
    max-height: 200px;
    opacity: 1;
    margin-top: 1rem;
}

.toggle-images {
    position: relative;
    width: 100%;
    aspect-ratio: 2;
}

.apple-showcase-image.toggle-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    margin: 0;
    /* Override generic margin */
}

.apple-showcase-image.toggle-img.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
    z-index: 2;
}

.apple-showcase-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.15);
}

.apple-showcase-image::after {
    /* Glassmorphism Inner Border overlay to make image look framed */
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

.apple-showcase-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Scaling */
@media (max-width: 991px) {
    .toggle-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .toggle-images {
        order: -1;
    }
}

@media (max-width: 768px) {
    .heading-xxl {
        font-size: 2.8rem;
    }

    .apple-toggle-section {
        padding: 4rem 0;
    }
}

/* Reveal on Scroll Animation */
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
    align-items: self-start;
}

/* ==========================================================================
   DASHBOARD SHOWCASE
   ========================================================================== */

.dashboard-showcase-wrapper {
    position: relative;
    padding: 0 0 6rem;
    overflow: hidden;
    z-index: 10;
}

.dashboard-collage {
    position: relative;
    max-width: 1000px;
    height: 480px;
    margin: -100px auto 0;
    /* Pulls up slightly over hero */
    display: flex;
    justify-content: center;
    align-items: center;
}

.dashboard-collage .panel {
    position: absolute;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.dashboard-collage .panel img {
    width: 100%;
    height: auto;
    display: block;
}

/* Positioning */
.panel-center {
    width: 65%;
    z-index: 3;
    left: 17.5%;
    top: 40px;
}

.panel-left {
    width: 45%;
    z-index: 2;
    left: 0;
    top: 100px;
    transform: translateX(-5%) rotate(-4deg);
    filter: blur(2px) brightness(0.8);
}

.panel-right {
    width: 45%;
    z-index: 2;
    right: 0;
    top: 100px;
    transform: translateX(5%) rotate(4deg);
    filter: blur(2px) brightness(0.8);
}

/* Hover Effects */
.dashboard-collage:hover .panel {
    filter: blur(0) brightness(1);
}

.dashboard-collage:hover .panel-left {
    transform: translateX(-35%) rotate(-7deg) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.dashboard-collage:hover .panel-right {
    transform: translateX(35%) rotate(7deg) scale(1.02);
    box-shadow: 0 30px 60px -15px rgba(0, 0, 0, 0.3);
}

.dashboard-collage:hover .panel-center {
    transform: scale(1.05);
}

/* Entrance Animation */
.showcase-slide-up {
    opacity: 0;
    animation: slideUpCollage 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.4s;
}

@keyframes slideUpCollage {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dark Mode Overrides */
.dark-mode .dashboard-collage .panel {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
}

/* Responsive */
@media (max-width: 900px) {
    .dashboard-collage {
        height: 380px;
    }

    .panel-center {
        width: 75%;
        left: 12.5%;
    }

    .panel-left {
        transform: translateX(0) rotate(-3deg);
        width: 60%;
        left: 0;
    }

    .panel-right {
        transform: translateX(0) rotate(3deg);
        width: 60%;
        right: 0;
    }

    .dashboard-collage:hover .panel-left {
        transform: translateX(-15%) rotate(-5deg);
    }

    .dashboard-collage:hover .panel-right {
        transform: translateX(15%) rotate(5deg);
    }
}

@media (max-width: 600px) {
    .dashboard-collage {
        height: 280px;
        margin-top: -50px;
    }

    .panel-left,
    .panel-right {
        display: none;
    }

    .panel-center {
        width: 90%;
        left: 5%;
        top: 40px;
    }

    .dashboard-collage:hover .panel-center {
        transform: none;
    }
}

/* TRUSTED BY SECTION */
.trusted-by-section {
    padding: 2rem 0 4rem;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trusted-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 2rem;
    font-weight: 600;
}

/* Marquee Animations */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.slow-marquee {
    animation-duration: 60s;
    gap: 2rem;
}

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

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

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

/* LOGO UPDATES */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 500;
    color: var(--text-main);
    letter-spacing: -0.03em;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.65rem;
    color: var(--text-muted);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    white-space: nowrap;
    /* prevent wrap */
}

.logo-item {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.5px;
    opacity: 0.6;
    white-space: nowrap;
}

/* TESTIMONIALS SECTION */
.testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-ssm);
    transition: var(--transition-fast);
    width: 350px;
    flex-shrink: 0;
}

.testimonial-card:hover {
    background: #f8fafc;
}

.quote {
    font-size: 1rem;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-main);
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.875rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 0.9rem;
    color: var(--text-main);
}

.author-info span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* IMPROVED FOOTER */
.site-footer {
    padding: 4rem 0 2rem;
    background: #f1f5f9;
    /* Light footer bg */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-main);
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--text-main);
}

.copyright {
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.875rem;
}

/* CHALLENGES SECTION (Sticky Scroll) */
.challenges-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.challenges-left {
    position: relative;
}

.sticky-wrapper {
    position: sticky;
    top: 150px;
    /* Offset from header */
}

.sticky-wrapper h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    max-width: 400px;
}

.challenges-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 20px;
}

.challenge-item {
    font-size: 1.1rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    padding-left: 1rem;
    border-left: 2px solid rgba(0, 0, 0, 0.1);
}

.challenge-item:hover {
    color: var(--text-main);
}

.challenge-item.active {
    color: #4ade80;
    /* Green highlight like the image */
    font-weight: 600;
    border-left: 4px solid #4ade80;
}

.challenges-right {
    position: relative;
    /* Remove large gaps */
    min-height: 400px;
}

.challenge-block {
    display: none;
    /* Hidden by default */
    animation: fadeIn 0.4s ease;
}

.challenge-block.active {
    display: block;
    /* Show when active */
}

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

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

.challenge-block h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.challenge-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.challenge-block img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
    background: #ffffff;
}

.challenge-block:hover img {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, 0.1);
}

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

    .sticky-wrapper {
        position: static;
    }

    .challenges-right {
        gap: 4rem;
        padding-bottom: 0;
    }

    .challenge-block {
        min-height: auto;
    }

    /* Hide the list on mobile and show content directly? Or simplify. */
    .challenges-list {
        display: none;
        /* Simplification for mobile */
    }
}

@media (max-width: 900px) {
    /* No specific changes needed for marquee on mobile as it scrolls */
}

/* PWA / Mobile Header Fixes */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.nav-login-btn {
    padding: 7px 14px;
    text-decoration: none;
    font-size: 0.9rem;
}

@media (max-width: 600px) {
    header {
        padding: 18px 0;
    }

    .container.nav-content {
        padding: 0 16px;
    }

    /*.logo-text {*/
    /*    !*display: none;*!*/
    /*    !* Hide text on mobile to save space *!*/
    /*}*/

    .nav-actions {
        gap: 0.75rem;
    }

    .logo-dot {
        width: 12px;
        height: 12px;
    }

    .nav-btn {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
        white-space: nowrap;
    }

    .nav-login-btn {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .theme-toggle {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        margin-right: 0;
    }
}

/* CHATBOT STYLES */
.chatbot-window {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 350px;
    height: 500px;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-ssm);
    box-shadow: var(--glass-shadow);
    z-index: 1000;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px) scale(0.95);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

.chatbot-window.active {
    transform: translateY(0) scale(1);
    opacity: 1;
    visibility: visible;
}

.chatbot-header {
    background: var(--accent-primary);
    color: white;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chatbot-header h3 {
    font-size: 1.1rem;
    margin: 0;
}

.chatbot-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.8;
    transition: var(--transition-fast);
}

.chatbot-close:hover {
    opacity: 1;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    max-width: 80%;
    padding: 0.8rem 1rem;
    border-radius: var(--radius-md);
    font-size: 0.9rem;
}

.message.bot {
    background: rgba(0, 0, 0, 0.05);
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

body.dark-mode .message.bot {
    background: rgba(255, 255, 255, 0.05);
}

.message.user {
    background: var(--accent-primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.chat-input-area {
    padding: 1.5rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 0.8rem;
}

.chat-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.05);
    border: 1px solid transparent;
    border-radius: var(--radius-sm);
    padding: 0.8rem 1rem;
    color: var(--text-main);
    font-family: inherit;
    transition: var(--transition-fast);
}

body.dark-mode .chat-input {
    background: rgba(255, 255, 255, 0.05);
}

.chat-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    background: transparent;
}

.chat-send {
    background: var(--accent-primary);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.chat-send:hover {
    background: var(--accent-secondary);
    transform: scale(1.05);
}

@media (max-width: 480px) {
    .chatbot-window {
        width: calc(100% - 40px);
        height: 60vh;
        bottom: 80px;
        right: 20px;
    }
}

/* AUTH MODAL STYLES */
/* AUTH MODAL STYLES REFINED */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    /* Allow scrolling for tall content */
    justify-content: center;
    overflow-y: auto;
    /* Overlay handles scroll */

    opacity: 1;
    visibility: visible;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    backdrop-filter: blur(0px);
}

.auth-modal {
    background: var(--bg-body);
    width: 100%;
    max-width: 380px;
    /* Reduced from 480px */
    padding: 30px;
    /* Reduced from 40px */
    border-radius: 24px;
    /* Softer corners */
    box-shadow:
        0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 8px 10px -6px rgba(0, 0, 0, 0.1);
    position: relative;
    margin: auto;
    /* Centers vertical in flex container */
    transform: scale(1);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), max-width 0.3s ease;
    /* Bouncy pop */
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.auth-modal.wide {
    max-width: 520px;
}

.modal-overlay.hidden .auth-modal {
    transform: scale(0.95) translateY(10px);
    opacity: 0;
}

body.dark-mode .auth-modal {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.close-modal {
    position: absolute;
    top: 24px;
    right: 24px;
    background: transparent;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-modal:hover {
    background: rgba(0, 0, 0, 0.05);
    color: var(--text-main);
}

body.dark-mode .close-modal:hover {
    background: rgba(255, 255, 255, 0.1);
}

.auth-form {
    display: none;
    animation: fadeIn 0.4s ease;
}

.auth-form.active {
    display: block;
}

.auth-form h2 {
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.auth-subtitle {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

/* Form Groups */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-group {
    margin-bottom: 0px;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-main);
}

.form-input {
    width: 100%;
    padding: 0 16px;
    height: 42px;
    /* Reduced from 48px */
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: var(--radius-ssm);
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--bg-body);
    color: var(--text-main);
    transition: all 0.2s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-glow);
}

body.dark-mode .form-input {
    background: rgba(255, 255, 255, 0.03);
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .form-input:focus {
    border-color: var(--accent-secondary);
}

.input-error {
    border-color: #ef4444 !important;
}

.error-msg {
    display: block;
    font-size: 0.85rem;
    color: #ef4444;
    margin-top: 6px;
    min-height: 20px;
}

.btn-block {
    width: 100%;
    height: 44px;
    /* Reduced from 50px */
    border-radius: 2px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.25);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(22, 163, 74, 0.35);
}

.btn-loading {
    pointer-events: none;
    opacity: 0.8;
}

.btn-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 0.8s linear infinite;
    display: inline-block;
    margin-right: 8px;
    vertical-align: middle;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Social Login */
.social-login {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 1rem;
}

.btn-social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 42px;
    /* Reduced from 46px */
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    background: white;
    color: var(--text-main);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.95rem;
}

.btn-social i {
    font-size: 1.1rem;
}

body.dark-mode .btn-social {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn-social:hover {
    background: #f8fafc;
    border-color: rgba(0, 0, 0, 0.2);
    transform: translateY(-1px);
}

body.dark-mode .btn-social:hover {
    background: rgba(255, 255, 255, 0.1);
}

.divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

body.dark-mode .divider::before,
body.dark-mode .divider::after {
    border-color: rgba(255, 255, 255, 0.1);
}

.divider span {
    padding: 0 16px;
}

.auth-link {
    color: var(--accent-primary);
    font-size: 0.8rem;
    /*text-decoration: none;*/
    font-weight: 200;
    transition: color 0.2s;
}

.auth-link:hover {
    color: var(--accent-secondary);
    text-decoration: underline;
}

/* MOBILE / PWA OPTIMIZATIONS */
@media (max-width: 600px) {
    .modal-overlay {
        padding: 0;
        align-items: flex-end;
        /* Bottom sheet feel on mobile */
    }

    .auth-modal {
        max-width: 100%;
        margin: 0;
        border-radius: 12px 12px 0 0;
        padding: 16px 12px;
        min-height: 60vh;
    }

    .modal-overlay.hidden .auth-modal {
        transform: translateY(100%);
    }

    .close-modal {
        top: 20px;
        right: 20px;
    }

    /* Prevent zoom on inputs */
    .form-input {
        font-size: 16px;
    }
}



.auth-link:hover {
    text-decoration: underline;
}

.auth-footer {
    text-align: center;
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* VALIDATION STYLES */
.input-error {
    border-color: #ef4444 !important;
    /* Red 500 */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23ef4444'%3E%3Ccircle cx='6' cy='6' r='4.5'/%3E%3Cpath stroke-linecap='round' d='M6 3.5v3M6 8.5h0'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 2.5rem;
}

.error-msg {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 0.25rem;
    display: block;
    min-height: 1.2em;
    /* Prevent layout jump */
}

.global-error {
    color: #ef4444;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    border: 1px solid rgba(239, 68, 68, 0.2);
    background: rgba(239, 68, 68, 0.05);
    /* Very light red */
    padding: 0.5rem;
    border-radius: var(--radius-sm);
    display: none;
}

.global-error:not(:empty) {
    display: block;
}

/* INFRASTRUCTURE SECTION */
.infrastructure-section {
    background: var(--bg-body);
}

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

.infrastructure-grid-four {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.inf-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2rem;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.inf-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--glass-shadow);
    border-color: var(--accent-primary);
}

.inf-icon {
    font-size: 2rem;
    color: var(--accent-primary);
    margin-bottom: 1rem;
    background: rgba(22, 163, 74, 0.1);
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.inf-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-main);
}

.inf-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 900px) {
    .infrastructure-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

@media (max-width: 900px) {
    .infrastructure-grid-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

/* LOGO CAROUSEL */
.logo-slider-section {
    padding: 20px 0;
    /* reduced from implicit or default */
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 0;
}

/* ADVANTAGE CAROUSEL */
.advantage-carousel-section {
    padding: 2rem 0;
    background: var(--bg-body);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.advantage-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 300px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    white-space: normal;
    /* Allow text wrapping inside if needed, but flex keeps it row */
}

.adv-icon {
    font-size: 1.5rem;
    color: var(--accent-primary);
    background: rgba(22, 163, 74, 0.1);
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.adv-content h4 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 0.1rem;
    color: var(--text-main);
}

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

/* HERO CAROUSEL */
.hero-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0;
    /* Use 100vh to fit screen, but allow expansion if content is taller */
    min-height: 100vh;
    height: 100vh;
    /* Enforce height as baseline */
    display: flex;
    align-items: center;
}

.hero-carousel-container {
    width: 100%;
    position: relative;
    height: 100%;
    display: grid;
    grid-template-areas: "slide";
    align-items: center;
    /* Center slides vertically in the grid */
}

.hero-slide {
    grid-area: slide;
    opacity: 0;
    pointer-events: none;
    transform: scale(0.98) translateY(10px);
    transition: opacity 1s cubic-bezier(0.4, 0, 0.2, 1), transform 1s cubic-bezier(0.4, 0, 0.2, 1);
    /* Reduced padding to ensure it fits in 100vh including header */
    padding: 80px 0 40px;
    width: 100%;
    display: flex;
    /* Ensure content centering */
    align-items: center;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    transform: scale(1) translateY(0);
    z-index: 2;
}

/* CAROUSEL CONTROLS */
.hero-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem;
    cursor: pointer;
    font-size: 1.5rem;
    border-radius: 50%;
    z-index: 100;
    /* Ensure strictly above everything */
    transition: var(--transition-fast);
}

.hero-nav:hover {
    background: var(--accent-primary);
    color: white;
}

.hero-nav.prev {
    left: 20px;
}

.hero-nav.next {
    right: 20px;
}

.hero-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.dot {
    width: 12px;
    height: 12px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-fast);
}

body.dark-mode .dot {
    background: rgba(255, 255, 255, 0.2);
}

.dot.active,
.dot:hover {
    background: var(--accent-primary);
    transform: scale(1.2);
}

/* NEW SLIDE VISUALS */
.speed-visual {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    width: 250px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 0 40px rgba(22, 163, 74, 0.2);
    animation: pulseGlow 2s infinite;
}

.speed-gauge {
    font-size: 3rem;
    color: var(--accent-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.speed-gauge span {
    font-size: 4rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.speed-label {
    margin-top: 1rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.reliability-visual {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-ssm);
    padding: 3rem;
    max-width: 400px;
    margin: 0 auto;
    box-shadow: var(--glass-shadow);
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.check-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.25rem;
    font-weight: 500;
}

.check-item i {
    color: var(--accent-primary);
    font-size: 1.5rem;
}

@keyframes pulseGlow {
    0% {
        box-shadow: 0 0 20px rgba(22, 163, 74, 0.2);
    }

    50% {
        box-shadow: 0 0 50px rgba(22, 163, 74, 0.5);
    }

    100% {
        box-shadow: 0 0 20px rgba(22, 163, 74, 0.2);
    }
}

@media(max-width: 768px) {
    .hero-nav {
        display: none;
    }

    /* Hide arrows on mobile */
    .hero-carousel-wrapper {
        min-height: auto;
    }
}

/* INTERACTIVE BACKGROUND */
.interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.bg-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    will-change: transform;
    transition: transform 0.15s ease-out;
}

/* Background Glows - Simplified */
.orb {
    pointer-events: none;
    background: var(--accent-glow);
    filter: blur(80px);
    border-radius: 50%;
    position: absolute;
    opacity: 0.5;
}

.orb-1 { width: 600px; height: 600px; top: -10%; left: -5%; animation: floatOrb1 20s ease-in-out infinite; }
.orb-2 { width: 400px; height: 400px; top: 30%; right: -5%; animation: floatOrb2 25s ease-in-out infinite; }
.orb-3 { width: 500px; height: 500px; bottom: -10%; left: 20%; animation: floatOrb3 22s ease-in-out infinite; }
.orb-4 { width: 350px; height: 350px; top: 50%; left: 50%; animation: floatOrb4 18s ease-in-out infinite; }
.orb-5 { width: 450px; height: 450px; bottom: 20%; right: 15%; animation: floatOrb5 24s ease-in-out infinite; }

/* Float Animations */
@keyframes floatOrb1 {

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

    50% {
        transform: translate(30px, 40px) scale(1.05);
    }
}

@keyframes floatOrb2 {

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

    50% {
        transform: translate(-40px, 30px) scale(1.03);
    }
}

@keyframes floatOrb3 {

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

    50% {
        transform: translate(50px, -30px) scale(1.04);
    }
}

@keyframes floatOrb4 {

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

    50% {
        transform: translate(-30px, -40px) scale(1.02);
    }
}

@keyframes floatOrb5 {

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

    50% {
        transform: translate(40px, 20px) scale(1.03);
    }
}

/* Dark mode adjustments - slightly brighter */
body.dark-mode .bg-orb {
    opacity: 0.25;
}

/* PROCESS SECTION */
.process-section {
    background: #ffffff;
    text-align: center;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    margin-top: 4rem;
    gap: 2rem;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    border: 2px solid var(--accent-primary);
    border-radius: 20px;
    /* Squircle ish */
    border-top-left-radius: 4px;
    /* Stylistic corner */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--text-main);
    background: #ffffff;
    margin-bottom: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}



.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-main);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    max-width: 300px;
}

.step-btn {
    font-size: 0.85rem !important;
    padding: 8px 20px !important;
    color: var(--accent-primary);
    border-color: var(--accent-primary);
}

.step-btn:hover {
    background: var(--accent-primary);
    color: white;
}


/* Connector Line Logic - Simplified for web */
.step-connector {
    display: none;
    /* Hide custom complex connector for now, use simple line */
}

/* We'll visualize the green line horizontally behind */
.process-steps::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--accent-secondary);
    z-index: 1;
    opacity: 0.5;
}


/* CONNECTOR (The Bracket Style from image) */
/* Ideally this requires more complex HTML structure or SVG. 
   Let's attempt a CSS approximation for the labels on the line */

.process-section .step-connector {
    position: absolute;
    top: 130px;
    /* Below icons */
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 10%;
    pointer-events: none;
    z-index: 1;
}

/* POTENTIAL SECTION */
.potential-section {
    position: relative;
    padding: 32px 0;
    /* Consistent reduction */
}

.potential-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

/* .potential-image {
    flex: 1;
    display: flex;
    justify-content: center;
    position: relative;
} */

/* Roadmap Section (5 Steps from Image) */
.roadmap-section {
    padding: 60px 0;
    text-align: center;
    background: #fdfdfd;
}

.roadmap-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    max-width: 1100px;
    margin: 3rem auto 0;
    padding: 0 20px;
}

.roadmap-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
}

.roadmap-circle {
    width: 140px;
    height: 140px;
    background: var(--accent-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #ffffff;
    /* Blue text from image */
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 25px var(--accent-glow);
    transition: transform 0.3s ease;
    text-align: center;
    padding: 20px;
}

.roadmap-circle:hover {
    transform: translateY(-5px) scale(1.05);
}

.roadmap-content {
    max-width: 180px;
}

.roadmap-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.4;
}

/* Connectors (Dashed Arrows) */
.roadmap-connector {
    position: absolute;
    top: 30px;
    width: 120px;
    height: 60px;
    pointer-events: none;
    z-index: 1;
}

.roadmap-connector svg {
    width: 100%;
    height: 100%;
}

.roadmap-connector path {
    fill: none;
    stroke: #94a3b8;
    stroke-width: 2;
    stroke-dasharray: 6, 4;
}

.roadmap-connector.pos-1 {
    left: 14%;
    top: 10px;
}

.roadmap-connector.pos-2 {
    left: 34%;
    top: 50px;
}

.roadmap-connector.pos-3 {
    left: 54%;
    top: 10px;
}

.roadmap-connector.pos-4 {
    left: 74%;
    top: 50px;
}

@media (max-width: 991px) {
    .roadmap-container {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .roadmap-connector {
        display: none;
    }
}

.potential-content {
    flex: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    /* Center align for text-only layout */
}

.potential-content h2 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.potential-content h2 .gradient-text {
    background: none;
    -webkit-text-fill-color: var(--text-main);
    color: var(--text-main);
}

.potential-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    /* 2-column grid for compactness */
    gap: 1.5rem;
    text-align: left;
}

.potential-list li {
    display: flex;
    gap: 16px;
    /* Increased gap */
    padding: 20px;
    /* Increased padding */
    background: var(--bg-body);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    /* Slightly larger radius */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    /* Better depth */
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.potential-list li:active {
    transform: scale(0.98);
    background: var(--bg-surface);
    /* Subtle darken on touch */
}

.list-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: transparent;
    /* Removed colorful background */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    /* Use primary color */
    font-size: 1.25rem;
    border: 1px solid var(--glass-border);
}

.list-text strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-main);
    margin-bottom: 0.5rem;
}

.list-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin: 0;
}

.potential-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    /* Placeholder height */
    background: var(--accent-glow);
    border-radius: var(--radius-ssm);
}


/* Dark Mode for New Sections */
body.dark-mode .process-section {
    background: #0a0a0a;
}

body.dark-mode .step-icon {
    background: #111111;
    border-color: rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}

body.dark-mode .step-content h3 {
    color: var(--text-main);
}

body.dark-mode .potential-section {
    background: #050505;
}

body.dark-mode .list-text strong {
    color: var(--text-main);
}

/* COMPARISON TABLE BASE (Desktop & Mobile Alignment) */
.pricing-table-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    background: transparent;
}

.pricing-col {
    flex: 1;
    background: var(--bg-body);
    transition: background 0.3s ease;
}

body.dark-mode .pricing-col {
    background: rgba(255, 255, 255, 0.02);
}

.pricing-header {
    height: 180px;
    /* Increased height for better breathing room */
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    background: rgba(0, 0, 0, 0.01);
}

body.dark-mode .pricing-header {
    background: rgba(255, 255, 255, 0.02);
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.pricing-col.plan-col .pricing-header {
    align-items: center;
    text-align: center;
}

.pricing-row {
    height: 64px;
    /* Standardized height for perfect alignment */
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--text-muted);
    font-size: 0.95rem;
}

body.dark-mode .pricing-row {
    border-bottom-color: rgba(255, 255, 255, 0.05);
}

.pricing-col.features-col .pricing-row {
    font-weight: 600;
    color: var(--text-main);
    background: rgba(0, 0, 0, 0.01);
}

body.dark-mode .pricing-col.features-col .pricing-row {
    background: rgba(255, 255, 255, 0.01);
}

.pricing-col.plan-col .pricing-row {
    justify-content: center;
    color: var(--text-main);
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--accent-primary);
    margin-bottom: 0.5rem;
}

.plan-price {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-main);
}

/* MOBILE PRICING - HORIZONTAL SCROLL REFINED */
@media (max-width: 900px) {
    .pricing-table-wrapper {
        overflow-x: auto;
        gap: 0;
        padding-bottom: 20px;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        scroll-snap-type: x mandatory;
        margin: 2rem 0;
    }

    .pricing-col {
        min-width: 260px;
        flex-shrink: 0;
        scroll-snap-align: start;
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }

    body.dark-mode .pricing-col {
        border-color: rgba(255, 255, 255, 0.05);
    }

    /* Sticky First Column */
    .pricing-col.features-col {
        position: sticky;
        left: 0;
        z-index: 20;
        background: var(--bg-body);
        border-right: 1px solid rgba(0, 0, 0, 0.1);
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.05);
        min-width: 160px;
    }

    body.dark-mode .pricing-col.features-col {
        background: #050505 !important;
        color: #fff;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: 4px 0 15px rgba(0, 0, 0, 0.5);
    }

    .pricing-header {
        height: 160px;
        /* Slightly shorter on mobile */
        padding: 1.5rem;
    }

    .pricing-row {
        height: 60px;
        padding: 0 1rem;
        font-size: 0.85rem;
    }

    /* Hide the old pseudo elements */
    .pricing-col.plan-col .pricing-row::before {
        content: none;
    }

    .pricing-col.plan-col {
        border-right: 1px solid rgba(0, 0, 0, 0.05);
    }

    body.dark-mode .pricing-col.plan-col {
        border-right: 1px solid rgba(255, 255, 255, 0.05);
    }

    /* Process Section Mobile */
    .process-steps {
        flex-direction: column;
        gap: 4rem;
        align-items: center;
    }

    .process-steps::before {
        display: none;
    }

    .step-icon {
        background: var(--bg-body);
        z-index: 2;
    }

    body.dark-mode .step-icon {
        background: #111111;
        border-color: rgba(255, 255, 255, 0.1);
    }

    .potential-container {
        grid-template-columns: 1fr;
    }

    .potential-image {
        order: -1;
    }
}

/* Header Smart Scroll Logic */
header {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

body.scroll-down header {
    transform: translateY(-100%);
}

body.scroll-up header {
    transform: translateY(0);
}

/* Spacer for Process Connectors */
.step-connector-spacer {
    flex: 1;
    height: 2px;
    margin-top: 40px;
}

/* Contact Page Styles */
.contact-hero {
    padding-top: 140px;
    padding-bottom: 80px;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    background: var(--bg-body);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-ssm);
    padding: 40px 30px;
    box-shadow: var(--glass-shadow);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

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

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main);
}

.card-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}

.text-link {
    color: var(--text-main);
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

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

/* Info Cards Layout */
.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.info-card {
    justify-content: space-between;
    background: var(--bg-body);
    padding: 20px 15px;

    text-align: center;
    border-radius: var(--radius-ssm);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.info-icon {
    font-size: 2.5rem;
    color: var(--accent-primary);
    margin-bottom: 16px;
}

.info-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-main);
}

.info-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* Chat Widget Mockup */
.support-avatar-container {
    height: 60px;
    width: 60px;
    border-radius: 50%;
    background: #e2e8f0;
    background-image: url('https://i.pravatar.cc/150?img=11');
    /* Placeholder avatar */
    background-size: cover;
    background-position: center;
    position: absolute;
    bottom: 30px;
    right: 30px;
    border: 3px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.support-avatar-container::after {
    content: '';
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: var(--accent-primary);
    border: 2px solid #fff;
    border-radius: 50%;
}

/* Main Navigation Styles */
.main-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    margin: 0 auto;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s ease;
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

@media (max-width: 1024px) {

    .main-nav,
    .nav-actions {
        display: none;
        /* Hide on mobile/tablet, rely on mobile menu */
    }
}

/* Contact Card Dark Mode */
.dark-mode .contact-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .info-card {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.dark-mode .card-title {
    color: #ffffff;
}

.dark-mode .card-desc {
    color: #94a3b8;
    /* slate-400 */
}

.dark-mode .text-link {
    color: #ffffff;
}

.dark-mode .text-link:hover {
    color: var(--accent-primary);
}

/* Mobile Menu Implementation */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 2000;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--text-main);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1004;
    /* Below menu, above header */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-back {
    align-self: flex-start;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: color 0.2s;
}

.mobile-menu-back span {
    font-size: 1rem;
    font-weight: 500;
}

.mobile-menu-back:hover {
    color: var(--accent-primary);
}

/* Hamburger Animation */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

.mobile-menu {
    justify-content: space-between;
    position: fixed;
    top: 0;
    left: auto;
    right: 0;
    width: 85%;
    /*max-width: 320px;*/
    height: 100vh;
    background: var(--bg-body);
    z-index: 1005;
    /* Above header */
    padding-top: 10px;
    padding-left: 20px;
    padding-right: 20px;
    padding-bottom: 10px;
    transform: translateX(100%);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    border-left: 1px solid var(--glass-border);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.05);
}

body.dark-mode .mobile-menu {
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
}

.mobile-menu.active {
    transform: translateX(0);
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
    /*align-items: center;*/
    width: 100%;
}

.mobile-nav-link {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-main);
    text-decoration: none;
    width: 100%;
    text-align: center;
    padding: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.mobile-nav-link.active {
    color: var(--accent-primary);
}

.mobile-actions {
    margin-bottom: 40px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 300px;
}

.no-scroll {
    overflow: hidden;
}

@media (max-width: 1024px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Callback Modal Styles */
.callback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 5000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.callback-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.callback-modal {
    background: #fff;
    width: 100%;
    max-width: 450px;
    border-radius: 4px;
    /* Sharper corners as per screenshot? Or stick to theme radius? Screenshot looks fairly sharp */
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.callback-modal-overlay.active .callback-modal {
    transform: translateY(0);
}

/* Green Header */
.modal-header {
    background: var(--accent-primary);
    /* Green from screenshot */
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 10;
}

.modal-header h3 {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
}

.modal-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.modal-body {
    padding: 1px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Form Styles */
.form-group {
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #333;
}

.form-group label .required {
    color: #dc2626;
    margin-left: 2px;
}

.label-hint {
    font-size: 0.75rem;
    color: #888;
    margin-top: -3px;
    margin-bottom: 3px;
}

.form-group input,
.form-group textarea {
    padding: 10px;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
    font-size: 0.95rem;
    background: #f8fafc;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #3fa12a;
    background: #fff;
}

.form-check {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 5px;
}

.form-check label {
    font-size: 0.9rem;
    color: #555;
    cursor: pointer;
}

.btn-submit {
    background: var(--accent-primary);
    color: white;
    font-weight: 700;
    padding: 12px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 10px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #358a23;
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* User Avatar in Modal (Bottom Right) */
.modal-user-avatar {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    /* Let clicks pass through if covering cancel/submit? Check layout */
}

.modal-user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark Mode Overrides for Modal */
.dark-mode .callback-modal {
    background: #1e293b;
    color: #fff;
}

.dark-mode .modal-header {
    background: var(--accent-primary);
    /* Slightly differert green or keep same? */
}

.dark-mode .form-group label {
    color: #e2e8f0;
}

.dark-mode .label-hint {
    color: #94a3b8;
}

.dark-mode .form-group input,
.dark-mode .form-group textarea {
    background: #0f172a;
    border-color: #334155;
    color: #fff;
}

.dark-mode .form-group input:focus,
.dark-mode .form-group textarea:focus {
    border-color: var(--accent-primary);
}

.dark-mode .form-check label {
    color: #cbd5e1;
}

/* ==========================================================================
   FAQ PAGE ACCORDION STYLES
   ========================================================================== */

.faq-container {
    max-width: 800px;
    margin: 40px auto 100px;
}

.faq-category-title {
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.dark-mode .faq-category-title {
    color: #f1f5f9;
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: var(--bg-body);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    box-shadow: var(--glass-shadow);
    overflow: hidden;
    transition: all 0.3s ease;
}

.dark-mode .faq-item {
    background: rgba(30, 41, 59, 0.7);
    border-color: rgba(255, 255, 255, 0.1);
}

.faq-item:hover {
    border-color: var(--accent-primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.dark-mode .faq-item:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.faq-question {
    padding: 12px 15px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-main);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s ease, color 0.2s ease;
}

.dark-mode .faq-question {
    color: #f8fafc;
}

.faq-question:hover {
    color: var(--accent-primary);
}

.faq-question i {
    color: var(--text-muted);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--accent-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 25px;
    color: var(--text-muted);
    line-height: 1.6;
    transition: all 0.3s ease-in-out;
    opacity: 0;
}

.dark-mode .faq-answer {
    color: #94a3b8;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 0 25px 25px;
    opacity: 1;
}

.faq-answer p {
    margin-bottom: 15px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    margin-bottom: 8px;
}

/* MEGA MENU STYLES */
.nav-item-dropdown {
    position: static;
}

.main-nav {
    position: static !important;
    /* Let mega menu position relative to header */
}

.mega-menu {
    position: absolute;
    top: 100%;
    /* Just below header */
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 99;
}

/* Show mega menu on hover of the dropdown wrapper */
.nav-item-dropdown:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.mega-menu-content {
    display: flex;
    gap: 60px;
    padding: 40px 24px;
}

.mega-column {
    min-width: 240px;
    display: flex;
    flex-direction: column;
}

.mega-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary, #6b7280);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.mega-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 5px 7px;
    color: var(--text-main, #111827);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.2s ease;
    margin-bottom: 4px;
}

.mega-link i {
    font-size: 1.1rem;
    color: var(--accent-primary, #16a34a);
    opacity: 0.8;
    transition: transform 0.2s ease;
}

.mega-link:hover {
    background: rgba(22, 163, 74, 0.05);
    color: var(--accent-primary, #16a34a);
}

.mega-link:hover i {
    transform: scale(1.1);
    opacity: 1;
}

body.dark-mode .mega-menu {
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

body.dark-mode .mega-link {
    color: #f3f4f6;
}

body.dark-mode .mega-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #4ade80;
}

.tag-text {
    color: var(--accent-primary);
    font-weight: 500;
    font-size: 1.2rem;
}

/* MOBILE SLIDE-IN NAV STYLES */
.mobile-nav-wrapper {
    position: relative;
    width: 100%;
    overflow-x: hidden;
    /* We need to ensure the wrapper itself takes the full width and handles relative pos well */
}

/* The track that will slide left and right */
.mobile-nav-track {
    display: flex;
    width: 200%;
    /* 100% for main, 100% for sub */
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform: translateX(0);
}

.mobile-nav-wrapper.slide-active .mobile-nav-track {
    transform: translateX(-50%);
    /* Slide halfway to reveal the 2nd half (submenu) */
}

.mobile-nav-main,
.mobile-nav-sub {
    width: 50%;
    /* Half of the 200% track */
    flex: 0 0 50%;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: opacity 0.3s ease;
}

.mobile-nav-sub {
    /* Set to completely hide inactive submenus so they don't stretch the track */
    display: none;
    opacity: 0;
    visibility: hidden;
    background: var(--bg-body);
}

/* Inherit dark mode background for submenu */
body.dark-mode .mobile-nav-sub {
    background: #111111;
}

.mobile-nav-sub.active {
    display: flex;
    opacity: 1;
    visibility: visible;
}


.mobile-slide-btn {
    /*display: flex;*/
    justify-content: space-between;
    /*align-items: center;*/
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--glass-border);
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-main);
    padding: 10px;
    /*text-align: left;*/
    cursor: pointer;
    font-family: inherit;
}

.mobile-slide-btn i {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.mobile-slide-back {
    display: flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--accent-primary);
    padding: 0 0 15px 0;
    margin-bottom: 5px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    text-align: left;
    cursor: pointer;
    font-family: inherit;
}

body.dark-mode .mobile-slide-back {
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.mobile-sub-header {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--accent-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}

.mobile-sublink {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--text-main);
    text-decoration: none;
    font-weight: 300;
    transition: color 0.2s ease;
    margin-left: 30px;
}

.mobile-sublink i {
    font-size: 1.3rem;
    color: var(--accent-primary);
    opacity: 0.8;
}

body.dark-mode .mobile-slide-btn {
    color: #f3f4f6;
}

body.dark-mode .mobile-slide-btn i {
    color: #9ca3af;
}

body.dark-mode .mobile-sublink {
    color: #f3f4f6;
}