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

:root {
    /* Color Palette - Green & White (Light Mode) */
    --bg-body: #ffffff;
    --bg-gradient-start: #ffffff;
    --bg-gradient-end: #f0fdf4;

    --sub-header-bg: #111827;
    /* Dark slate for contrast */
    --sub-header-text: #f3f4f6;

    --mascot-color: #22c55e;
    /* Vibrant Crab Green */

    --accent-primary: #16a34a;
    /* Green 600 */
    --accent-secondary: #4ade80;
    /* Green 400 */
    --accent-glow: rgba(22, 163, 74, 0.2);

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

    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(22, 163, 74, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(22, 163, 74, 0.05);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;

    --transition-fast: 0.2s ease;
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode (CRED-inspired: Black/Gray) */
body.dark-mode {
    --bg-body: #050505;
    --bg-gradient-start: #050505;
    --bg-gradient-end: #0a0a0a;

    --text-main: #f3f4f6;

    --text-main-input: #0f172a;

    --text-muted: #9ca3af;

    --glass-bg: rgba(20, 20, 20, 0.6);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    /* Update accents for dark mode if needed, or keep green pop */
    --accent-glow: rgba(74, 222, 128, 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 {
    background: linear-gradient(to right, #ffffff, #9ca3af);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-body);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(22, 163, 74, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(74, 222, 128, 0.1) 0%, transparent 20%);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(to right, #0f172a, #334155);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

p {
    color: var(--text-muted);
}

.gradient-text {
    background: linear-gradient(to right, var(--accent-secondary), #c084fc);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* 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: 80px;
    /* Header offset */
    display: block;
    width: 100%;
}

/* HERO SECTION */
.hero-section {
    text-align: center;
    padding: 140px 0 100px;
    overflow: visible;
    /* Allow 3D overflow */
    perspective: 2000px;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto 4rem;
    animation: fadeUp 0.8s var(--transition-smooth);
}

.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 */
.hero-visual-container {
    max-width: 800px;
    margin: 0 auto;
    transform-style: preserve-3d;
    transform: rotateX(10deg) rotateY(0deg) scale(0.95);
    transition: transform 0.5s ease;
}

.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: #22c55e;
}

.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 */

/* SEO SCORE BADGE overlay */
.score-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

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

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

.score-circle {
    width: 50px;
    height: 50px;
    background: conic-gradient(#16a34a 0%, #16a34a 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    position: relative;
    box-shadow: 0 4px 10px rgba(22, 163, 74, 0.4);
}

.score-label {
    display: flex;
    flex-direction: column;
}

.score-label strong {
    color: #0f172a;
    font-size: 0.9rem;
}

.score-label span {
    color: #64748b;
    font-size: 0.75rem;
}

/* 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-lg);
    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: 3rem;
    border-radius: var(--radius-md);
}

.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-sm);
    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: 14px 24px;
    border-radius: var(--radius-sm);
    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: 100px 0;
    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: 4rem;
    align-items: center;
}

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

.feature-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: var(--text-muted);
}

.feature-image {
    position: relative;
    border-radius: var(--radius-lg);
    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;
    }
}

/* 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-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-md);
    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: 10px 20px;
    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-lg);
    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: 600px;
}

.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: 12px;
    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: 12px;
    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;
    margin: 0 0 1rem 0;
    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: 24px 24px 0 0;
        padding: 32px 24px;
        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;
}

.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;
    }
}

/* 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: 20;
    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: 300px;
    height: 300px;
    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: 1.2rem;
    color: var(--text-muted);
}

.reliability-visual {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    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;
}

/* Orb Styles - Green/Blue tones matching brand */
.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(22, 163, 74, 0.6) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: floatOrb1 20s ease-in-out infinite;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.5) 0%, transparent 70%);
    top: 30%;
    right: -5%;
    animation: floatOrb2 25s ease-in-out infinite;
}

.orb-3 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.4) 0%, transparent 70%);
    bottom: -10%;
    left: 20%;
    animation: floatOrb3 22s ease-in-out infinite;
}

.orb-4 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.35) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    animation: floatOrb4 18s ease-in-out infinite;
}

.orb-5 {
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    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;
}