/* ═══════════════════════════════════════════════════════════════════
   UMZUGSKARTON.NET - 2026 DESIGN SYSTEM V3 (PREMIUM OVERHAUL)
   Theme: Galactic Modernism / Dark Luxury
   Focus: Wow Factor, High Conversion, Perfect Alignment
═══════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&display=swap');

:root {
    /* Colors - Deep & Vibrant */
    --color-bg-deep: #020617;
    /* Slate 950 */
    --color-bg-surface: #0f172a;
    /* Slate 900 */
    --color-primary: #6366f1;
    /* Premium Indigo */
    --color-cta: #FF6B35;
    /* Brand Orange */
    --color-cta-glow: rgba(255, 107, 53, 0.4);
    --color-accent: #fbbf24;

    /* Text */
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Glass & Layers */
    --glass-bg: rgba(30, 41, 59, 0.7);
    --glass-border: rgba(255, 255, 255, 0.1);
    --nav-bg: rgba(2, 6, 23, 0.82);
    --mesh-1: rgba(99, 102, 241, 0.2);
    --mesh-2: rgba(255, 107, 53, 0.15);

    /* Spacing & Radii */
    --radius-lg: 24px;
    --radius-md: 16px;
    --container-width: 1300px;
    --section-padding: 8rem;
}

.hidden {
    display: none !important;
}

[data-theme="light"] {
    --color-bg-deep: #f8fafc;
    /* Slate 50 */
    --color-bg-surface: #ffffff;
    --color-primary: #4f46e5;
    /* Indigo 600 */
    --text-primary: #0f172a;
    /* Slate 900 */
    --text-secondary: #475569;
    /* Slate 600 */
    --text-muted: #64748b;
    --glass-bg: rgba(255, 255, 255, 0.8);
    --glass-border: rgba(15, 23, 42, 0.1);
    --nav-bg: rgba(248, 250, 252, 0.85);
    --mesh-1: rgba(99, 102, 241, 0.05);
    --mesh-2: rgba(255, 107, 53, 0.05);
}

/* ─────────────────────────────────────────────────────────────────
   GLOBAL BASICS
───────────────────────────────────────────────────────────────── */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--color-bg-deep);
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    letter-spacing: -0.01em;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

h1,
h2,
h3 {
    line-height: 1.1;
    font-weight: 800;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ─────────────────────────────────────────────────────────────────
   DYNAMIC MESH BACKGROUND
───────────────────────────────────────────────────────────────── */
.mesh-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: var(--color-bg-deep);
    background-image:
        radial-gradient(at 50% 50%, var(--mesh-1) 0px, transparent 60%),
        radial-gradient(at 100% 0%, var(--mesh-2) 0px, transparent 40%),
        radial-gradient(at 0% 100%, var(--mesh-1) 0px, transparent 40%);
    filter: blur(150px);
    opacity: 0.4;
    /* Soften the effect further to prevent "bars" at edges */
}

/* ─────────────────────────────────────────────────────────────────
   PREMIUM NAVBAR
───────────────────────────────────────────────────────────────── */
.navbar {
    position: relative;
    width: 100%;
    height: 80px;
    z-index: 1000;
    display: flex;
    align-items: center;
    background: var(--nav-bg);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.brand span {
    color: var(--color-cta);
    text-shadow: 0 0 15px rgba(255, 107, 53, 0.3);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-links a:hover {
    color: var(--color-primary);
}

/* ─────────────────────────────────────────────────────────────────
   SPLIT HERO SECTION (2026 STYLE)
───────────────────────────────────────────────────────────────── */
.hero {
    min-height: auto;
    padding-top: 60px;
    padding-bottom: 40px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Desktop Hero Layout */
.hero-grid {
    display: grid;
    grid-template-areas:
        "intro visual"
        "actions visual";
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.hero-intro {
    grid-area: intro;
    animation: fadeInUp 1s ease-out;
}

.hero-actions {
    grid-area: actions;
    animation: fadeInUp 1.2s ease-out;
}

.hero-visual {
    grid-area: visual;
    display: block;
    /* Ensure it's shown */
}

.badge-new {
    display: inline-block;
    background: rgba(255, 107, 53, 0.1);
    color: var(--color-cta);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 107, 53, 0.2);
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--text-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero h1 span {
    display: block;
    color: var(--color-cta);
    -webkit-text-fill-color: initial;
    /* Fallback */
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 3rem;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

/* BUTTON SYSTEM */
.btn {
    padding: 1.2rem 2.5rem;
    border-radius: var(--radius-md);
    font-weight: 800;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-primary {
    background: var(--color-cta);
    color: white;
    box-shadow: 0 10px 40px var(--color-cta-glow);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 60px var(--color-cta-glow);
}

.btn-ghost {
    background: var(--glass-bg);
    color: var(--text-primary);
    border: 1px solid var(--glass-border);
}

.btn-ghost:hover {
    background: var(--glass-hover);
    transform: translateY(-2px);
}

/* HERO VISUAL (3D STYLE) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.visual-canvas {
    width: 100%;
    aspect-ratio: 1;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.floating-box {
    font-size: 10rem;
    filter: drop-shadow(0 0 30px rgba(255, 107, 53, 0.3));
    animation: boxFloat 4s ease-in-out infinite;
    will-change: transform;
}

@keyframes boxFloat {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-40px) rotate(5deg);
    }
}

/* ─────────────────────────────────────────────────────────────────
   BENTO GRID SYSTEM
───────────────────────────────────────────────────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.bento-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: 0.3s;
}

.bento-card:hover {
    background: rgba(30, 41, 59, 0.9);
    border-color: rgba(255, 255, 255, 0.2);
}

.bento-card.wide {
    grid-column: span 2;
}

.bento-card.tall {
    grid-row: span 2;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.card-tag {
    color: var(--color-cta);
    background: rgba(255, 107, 53, 0.1);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    margin-bottom: 1rem;
    display: inline-block;
    padding: 4px 12px;
    border-radius: 100px;
    letter-spacing: 0.05em;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

[data-theme="light"] .card-tag {
    background: rgba(79, 70, 229, 0.08);
    color: var(--color-primary);
    border-color: rgba(79, 70, 229, 0.15);
}

/* ─────────────────────────────────────────────────────────────────
   COMPARISON SECTION (V2 REFINED)
───────────────────────────────────────────────────────────────── */
.comparison {
    padding: var(--section-padding) 0;
}

.comp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.comp-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease;
}

.comp-card-link:hover {
    transform: translateY(-10px);
}

.comp-card {
    background: var(--bg-surface);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
}

.comp-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    background: var(--glass-bg);
}

.comp-card.featured {
    background: linear-gradient(180deg, rgba(59, 130, 246, 0.1) 0%, rgba(2, 6, 23, 0) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
}

.comp-card.featured:hover {
    border-color: var(--color-cta);
    box-shadow: 0 20px 40px var(--color-cta-glow);
}

.comp-list {
    list-style: none;
    margin: 2rem 0;
}

.comp-list li {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--glass-border);
    color: var(--text-secondary);
}

.comp-total {
    font-size: 2rem;
    font-weight: 800;
    margin-top: 2rem;
    color: var(--text-primary);
}

/* ─────────────────────────────────────────────────────────────────
   24/7 CONVERSION FORM (The Masterpiece)
───────────────────────────────────────────────────────────────── */
.form-section {
    padding: var(--section-padding) 0;
}

.glass-form {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 40px;
    padding: 5rem;
    border: 1px solid var(--glass-border);
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 5rem;
}

.form-inputs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group.full {
    grid-column: span 2;
}

label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
    letter-spacing: 0.05em;
}

input,
select,
textarea {
    width: 100%;
    background: var(--input-bg);
    border: 1px solid var(--glass-border);
    padding: 1.2rem;
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--color-primary);
    outline: none;
    background: var(--glass-hover);
}

/* Select dropdown options styling */
select option {
    background: var(--color-bg-surface);
    color: var(--text-primary);
    padding: 0.5rem;
}

/* Room Button Interaction */
input[type="radio"]:checked+.room-btn {
    background: var(--color-cta) !important;
    color: white;
    border-color: var(--color-cta);
    box-shadow: 0 0 20px var(--color-cta-glow);
}

.room-btn:hover {
    background: var(--glass-hover) !important;
}

.form-sidebar {
    background: var(--glass-bg);
    border-radius: 24px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
}

.trust-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.trust-item i {
    font-size: 1.5rem;
    color: var(--color-cta);
}

.trust-text h4 {
    font-size: 1.1rem;
    margin-bottom: 0.2rem;
}

.trust-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ─────────────────────────────────────────────────────────────────
   PROCESS SECTION (ABLauf)
───────────────────────────────────────────────────────────────── */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-cta);
    background: rgba(255, 107, 53, 0.1);
    padding: 2px 10px;
    border-radius: 20px;
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 5;
    border: 1px solid rgba(255, 107, 53, 0.2);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2rem;
    margin: 0 auto 2rem;
    color: var(--color-cta);
}

/* ─────────────────────────────────────────────────────────────────
   TESTIMONIALS (Social Proof)
───────────────────────────────────────────────────────────────── */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.testimonial-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 24px;
    height: 100%;
}

.star-rating {
    color: #FF9900;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.star-rating {
    color: #FF9900;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--glass-bg);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.user-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}

/* ─────────────────────────────────────────────────────────────────
   FAQ ACCORDION
───────────────────────────────────────────────────────────────── */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
}

.faq-answer {
    padding: 0 2rem;
    max-height: 0;
    transition: 0.3s ease-out;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.faq-item.active .faq-answer {
    padding-bottom: 1.5rem;
    max-height: 200px;
}

.faq-item.active .faq-question::after {
    content: '−';
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--color-cta);
}

/* ─────────────────────────────────────────────────────────────────
   SCROLL ANIMATIONS
───────────────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Amazon-Specific Styling */
.btn-amazon {
    background: #FF9900;
    color: #000 !important;
    font-weight: 800;
    border: none;
    box-shadow: 0 4px 15px rgba(255, 153, 0, 0.3);
}

.btn-amazon:hover {
    background: #FFAD33;
    transform: translateY(-2px);
}

/* ─────────────────────────────────────────────────────────────────
   FLOATING UI ELEMENTS
───────────────────────────────────────────────────────────────── */
.floating-controls {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 9999;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.fab:hover {
    transform: scale(1.1) translateY(-5px);
}

#theme-toggle-fab {
    background: var(--glass-bg);
    color: var(--text-primary);
}

#scroll-top-fab {
    background: var(--color-cta);
    color: white;
    display: none;
    /* Hidden until scroll */
}

/* ─────────────────────────────────────────────────────────────────
   MOBILE ADAPTATION (Comprehensive)
───────────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero-grid {
        display: flex;
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .hero-intro {
        order: 1;
    }

    .hero-visual {
        order: 2;
        display: block;
        transform: scale(0.65);
        /* Smaller on mobile */
        margin: -4rem 0 -2rem 0;
        /* Reduce gap significantly */
        z-index: -1;
        /* Behind text if needed, but overlap is key */
    }

    .hero-actions {
        order: 3;
        justify-content: center;
        flex-wrap: wrap;
        width: 100%;
        gap: 1rem;
    }

    .glass-form {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        border-radius: 24px;
    }

    .form-inputs {
        grid-template-columns: 1fr;
    }

    .form-group.full {
        grid-column: span 1;
    }

    .form-sidebar {
        display: none;
    }

    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card.wide {
        grid-column: span 1;
    }

    .comp-grid,
    .process-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .process-grid {
        gap: 2rem;
    }

    .step-number {
        top: -15px;
        /* Slight adjustment for mobile badge position */
    }

    /* Compact comparison cards on mobile */
    .comp-card {
        padding: 1.2rem;
    }

    .comp-list li {
        padding: 0.6rem 3rem;
        font-size: 0.9rem;
    }

    .comp-total {
        font-size: 1.4rem;
        margin-top: 1rem;
        padding: 0 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }
}

/* Mobile Navbar - Hide links, stack layout */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        padding: 1rem 0;
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        display: none;
    }

    .brand {
        font-size: 1.3rem;
    }

    .hero {
        padding-top: 40px;
        padding-bottom: 60px;
    }

    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .btn {
        padding: 1rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }

    input,
    select,
    textarea {
        padding: 1rem;
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .floating-controls {
        right: 15px;
        bottom: 20px;
    }

    .fab {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    #whatsapp-fab {
        left: 15px;
        bottom: 20px;
        width: 50px;
        height: 50px;
    }

    .section-header {
        margin-bottom: 3rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

    .section-header p {
        font-size: 1rem;
    }

    .bento-card {
        padding: 1.5rem;
    }

    .comp-card {
        padding: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    /* Reduce section gaps on mobile */
    section {
        padding: 4rem 0 !important;
    }

    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }

    footer {
        padding: 2rem 1rem !important;
    }

    footer p {
        font-size: 0.9rem;
    }
}

/* WhatsApp Floating Button (Left Position) */
#whatsapp-fab {
    position: fixed;
    bottom: 25px;
    left: 25px;
    right: auto;
    z-index: 101;
}

/* ─────────────────────────────────────────────────────────────────
   UTILITIES
───────────────────────────────────────────────────────────────── */
.text-orange {
    color: var(--color-cta);
}

.text-success {
    color: #4ade80;
}

/* ─────────────────────────────────────────────────────────────────
   FINAL FIXES (Overrides)
───────────────────────────────────────────────────────────────── */

/* 1. Mobile Hero Order Enforcer */
@media (max-width: 1100px) {
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .hero-grid {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    /* INTRO FIRST */
    .hero-intro {
        order: 1 !important;
    }

    /* VISUAL SECOND (Floating Nicely) */
    .hero-visual {
        order: 2 !important;
        display: block !important;
        /* Scale up more to match desktop icon spacing */
        transform: scale(0.75);
        margin: -3rem auto -1rem auto !important;
        position: relative;
        z-index: 1;
    }

    /* ACTIONS LAST */
    .hero-actions {
        order: 3 !important;
        width: 100%;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
        z-index: 2;
        /* Ensure buttons click above visual */
    }

    /* Ensure icons don't overlap the box on mobile */
    .hero-shield {
        right: -40% !important;
        top: -8% !important;
        font-size: 3rem !important;
    }

    .hero-truck {
        left: -50% !important;
        bottom: 5% !important;
        font-size: 2.5rem !important;
    }

    /* Remove top margin of visual to pull it up */
    .hero-visual .visual-canvas {
        margin: 0 auto;
    }
}

/* 2. Bento Card Contrast Fix (Profi-Wahl) */
/* Force the 2nd card (Featured) to have Dark BG + White Text always */
.bento-grid .bento-card:nth-child(2) {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%) !important;
    border: 1px solid var(--color-cta) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-grid .bento-card:nth-child(2) h3,
.bento-grid .bento-card:nth-child(2) p,
.bento-grid .bento-card:nth-child(2) span,
.bento-grid .bento-card:nth-child(2) div {
    color: white !important;
}

/* Ensure the tag inside retains its specific color if needed */
.bento-grid .bento-card:nth-child(2) .card-tag {
    color: var(--color-cta) !important;
    background: rgba(255, 107, 53, 0.15) !important;
    border-color: rgba(255, 107, 53, 0.3) !important;
}

/* ─────────────────────────────────────────────────────────────────
   LIGHT MODE CONTRAST FIXES
───────────────────────────────────────────────────────────────── */
[data-theme="light"] .bento-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .bento-card h3,
[data-theme="light"] .bento-card p,
[data-theme="light"] .bento-card .card-icon,
[data-theme="light"] .bento-card strong {
    color: #1e1b4b !important;
    /* Dark indigo for high contrast */
}

[data-theme="light"] .bento-card .card-tag {
    color: var(--color-cta) !important;
}

/* Consolidated Light Mode Styles */

[data-theme="light"] .step-icon {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .step-number {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

/* Ensure no background highlights on text */
#process h2,
#process h3,
#process p,
.section-header h2,
.section-header p {
    background: none !important;
    background-color: transparent !important;
}

/* Comparison Cards Light Mode */
[data-theme="light"] .comp-card {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .comp-card h3,
[data-theme="light"] .comp-card .comp-total {
    color: #0f172a !important;
}

[data-theme="light"] .comp-list li {
    color: #475569 !important;
    /* Darker text for readability */
    border-bottom-color: rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .comp-card.featured {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.15) 0%, #ffffff 100%);
    border: 1px solid rgba(99, 102, 241, 0.3);
}

[data-theme="light"] .comp-card.featured h3,
[data-theme="light"] .comp-card.featured .comp-total,
[data-theme="light"] .comp-card.featured .comp-list li {
    color: #1e1b4b !important;
    /* Indigo-950 for high contrast on featured card */
}

/* Testimonials Light Mode */
[data-theme="light"] #testimonials {
    background: #f1f5f9;
    /* Soft gray for better separation */
}

[data-theme="light"] .testimonial-card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .testimonial-card p,
[data-theme="light"] .testimonial-card strong {
    color: #1e293b !important;
}

[data-theme="light"] .user-info p {
    color: #64748b !important;
}

/* FAQ Light Mode */
[data-theme="light"] .faq-item {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
}

[data-theme="light"] .faq-question {
    color: #1e293b !important;
}

[data-theme="light"] .faq-answer {
    color: #475569 !important;
}

/* Section Headers Light Mode */
[data-theme="light"] .section-header h2 {
    color: #0f172a !important;
}

[data-theme="light"] .section-header p {
    color: #475569 !important;
}

/* Ensure process and testimonials headers are also dark in light mode if background is light */
[data-theme="light"] #process {
    background: #f8fafc;
    /* Lighter background for light mode */
}

[data-theme="light"] #process .section-header h2,
[data-theme="light"] #process .section-header p {
    color: #0f172a !important;
}

[data-theme="light"] .process-step h3,
[data-theme="light"] .process-step p {
    color: #334155 !important;
}

/* Form Section Light Mode */
[data-theme="light"] #form-section {
    background: #f8fafc;
}

[data-theme="light"] .glass-form {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
}

[data-theme="light"] .glass-form h2,
[data-theme="light"] .glass-form p,
[data-theme="light"] .glass-form label {
    color: #1e293b !important;
}

[data-theme="light"] .glass-form h2 span {
    color: var(--color-primary) !important;
}

[data-theme="light"] .trust-text h4 {
    color: #0f172a !important;
}

[data-theme="light"] .trust-text p {
    color: #475569 !important;
}

[data-theme="light"] input,
[data-theme="light"] select,
[data-theme="light"] textarea {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.1);
    color: #1e293b;
}

[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder {
    color: #94a3b8;
}

/* Ensure trust badges in sidebar are also dark */
[data-theme="light"] .form-info .badge h4,
[data-theme="light"] .form-info .badge p {
    color: #1e293b !important;
}

[data-theme="light"] .form-info .badge i {
    color: var(--color-cta) !important;
}