:root {
    /* Primary Brand - Deep Blue Group */
    --brand-blue: #104585;
    --brand-navy: #072036;
    --brand-maroon: #601217;
    --brand-rose: #BA464C;

    --primary-color: var(--brand-blue);
    --primary-hover: #0d3a6f;
    --primary-soft: rgba(16, 69, 133, 0.1);
    --secondary-color: var(--brand-blue);
    --header-footer-bg: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));

    /* Premium Light Theme Palette */
    --bg-deep: #ffffff;
    --bg-dark: #fcfcfc;
    --bg-card: rgba(255, 255, 255, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.4);

    /* Text Palette */
    --text-main: #000000;
    --text-muted: #222222;
    --text-dim: #555555;

    /* Accents & States */
    --accent-gold: #D4AF37;
    --success: #00c853;
    --warning: #ff8f00;
    --error: #d50000;

    /* Glassmorphism - Premium Light */
    --glass-border: rgba(0, 0, 0, 0.08);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.08);

    /* HSL for Box Shadows */
    --primary-h: 212;
    --primary-s: 78%;
    --primary-l: 29%;

    /* Layout */
    --container-width: 1350px;
    --section-padding: 60px 0;
}

body, html {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

html, body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    background: radial-gradient(circle at center, #ffffff 0%, #f4f4f4 100%);
    color: var(--text-main);
    line-height: 1.6;
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}


.container {
    max-width: var(--container-width, 1350px);
    margin: 0 auto;
    width: 100%;
    padding: 0 24px;
    position: relative;
    z-index: 20;
}

.center { text-align: center; }

/* Navbar Enhancement */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px max(5%, calc((100vw - var(--container-width, 1350px)) / 2));
    position: fixed;
    top: 0;
    width: 100%;
    background: var(--header-footer-bg);
    z-index: 2000;
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 12px max(5%, calc((100vw - var(--container-width, 1350px)) / 2));
    background: hsla(212, 78%, 15%, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none !important;
}

.nav-logo {
    height: 42px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    color: #ff4d4d;
    text-shadow: 0 0 15px rgba(255, 77, 77, 0.2);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.btn-nav {
    background: var(--primary-color);
    color: white !important;
    height: 44px;
    padding: 0 24px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.4);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 5% 60px;
    position: relative;
    overflow: hidden;
    background: transparent;
    /* Fixed background properties for landing page */
    background-attachment: fixed;
    background-position: center;
    background-size: cover;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.4));
    z-index: 2;
}

.hero-container {
    width: 100%;
    max-width: var(--container-width, 1350px);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 20;
    animation: heroFadeIn 1s ease-out;
}

.hero-text {
    flex: 1.2;
}

.hero-video-box {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #020712; /* Solid fallback for visibility */
    backdrop-filter: blur(5px);
    height: 650px;
}

.hero-vid {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transform: scale(1.0);
}

@keyframes heroFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-cta-group {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 64px;
    flex-wrap: wrap;
}

.btn-pill-hero {
    padding: 20px 48px;
    background: var(--brand-navy);
    color: white;
    border-radius: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    text-decoration: none;
    letter-spacing: 1px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: inline-block;
}

.btn-pill-hero:hover {
    background: var(--primary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 50px rgba(16, 69, 133, 0.3);
}

.hero-secondary-text {
    font-weight: 700;
    color: var(--text-muted);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.accent-text {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-main);
    margin-bottom: 32px;
    font-weight: 800;
    display: block;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-main);
    margin-bottom: 48px;
    max-width: 650px;
    line-height: 1.7;
}

.trust-proof {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(16, 69, 133, 0.15);
    padding: 4px;
    border-radius: 16px;
    gap: 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.trust-item {
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 24px;
    color: var(--brand-navy);
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
}

.trust-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(16, 69, 133, 0.15);
}

.trust-item:hover {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    transform: translateY(-2px);
}

.trust-item svg {
    color: var(--success);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-proof {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        padding: 10px;
        background: rgba(255, 255, 255, 0.4);
    }
    .trust-item {
        width: 100%;
        border-right: none !important;
        padding: 12px 16px;
    }
    .trust-item:not(:last-child)::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 10%;
        right: 10%;
        top: auto;
        height: 1px;
        width: 80%;
        background: rgba(16, 69, 133, 0.1);
    }
}

.micro-trigger {
    background: linear-gradient(90deg, var(--primary-soft), transparent);
    padding: 20px 30px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 48px;
    border-radius: 0 12px 12px 0;
    display: flex;
    align-items: center;
}

.micro-trigger p {
    margin-bottom: 0;
}

/* Buttons & Actions */
.cta-group {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    display: inline-block;
    cursor: pointer;
    border: none;
    font-family: inherit;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.3);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.4);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-huge {
    padding: 18px 48px;
    font-size: 1.2rem;
    border-radius: 50px;
    box-shadow: 0 10px 25px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.2);
}

.btn-huge:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px hsla(var(--primary-h), var(--primary-s), var(--primary-l), 0.3);
}

/* Back to Top Button */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.95);
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 9999;
    backdrop-filter: blur(12px);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-5px);
}

/* Section Common */
.section {
    padding: var(--section-padding, 80px 0);
    width: 100%;
    overflow: hidden;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 32px;
    text-align: center;
    letter-spacing: -1px;
    color: var(--brand-navy);
}

/* Problem Section Enhancement */
/* Problem Section Restructure */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px;
}

.problem-hook {
    font-size: 1.25rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.heat-journey-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    width: 100%;
}

.journey-card {
    background: var(--bg-glass);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(15px);
    border-radius: 24px;
    padding: 48px;
    display: flex;
    align-items: center;
    gap: 32px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    counter-increment: journey-counter;
}

.journey-card::before {
    content: "0" counter(journey-counter);
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 8rem;
    font-weight: 900;
    color: var(--primary-color);
    opacity: 0.04;
    font-family: inherit;
    pointer-events: none;
}

.journey-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(16, 69, 133, 0.1);
    background: white;
}

.journey-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: var(--brand-blue);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(16, 69, 133, 0.15);
}

.journey-card:hover .journey-icon {
    transform: rotate(10deg) scale(1.1);
    box-shadow: 0 15px 40px rgba(16, 69, 133, 0.3);
}

.journey-icon svg {
    width: 36px;
    height: 36px;
}

.journey-content h3 {
    margin-bottom: 12px;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-navy);
}

.journey-content p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    font-weight: 600;
}

.truth-banner {
    background: var(--brand-navy);
    color: white;
    padding: 40px 30px;
    border-radius: 30px;
    text-align: center;
    margin: 80px auto;
    max-width: 900px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 70px rgba(7, 32, 54, 0.2);
}

.truth-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at 10% 20%, rgba(16, 69, 133, 0.25) 0%, transparent 40%);
    pointer-events: none;
}

.truth-label {
    display: inline-block;
    background: var(--brand-navy);
    color: white;
    padding: 12px 24px; /* Slightly tighter padding for better box ratio */
    border-radius: 8px; /* Reduced from 100px for a more technical look */
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.15);
    margin-bottom: 40px;
}

.truth-split {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: 30px;
    margin: 30px auto 30px;
    max-width: 800px;
}

.side-item {
    flex: 1;
    padding: 20px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.side-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.side-icon {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-icon svg {
    width: 48px;
    height: 48px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.side-item:hover .side-icon svg {
    transform: scale(1.15) rotate(5deg);
}

.side-item h4 {
    color: #82b1ff; /* light blue */
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 2px;
    margin-bottom: 16px;
    font-weight: 800;
}

.side-item.reality h4 {
    color: #ff6b6b;
}

.side-item p {
    font-size: 1.05rem;
    color: white;
    line-height: 1.5;
    margin: 0;
    font-weight: 600;
}

.side-divider {
    align-self: center;
    font-weight: 900;
    font-size: 1.5rem;
    color: #82b1ff;
    letter-spacing: 4px;
}

.truth-conclusion {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    margin-top: 20px;
}

.truth-conclusion p {
    font-size: clamp(1.2rem, 3vw, 2.2rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    letter-spacing: -1px;
}

.truth-conclusion p strong {
    color: var(--primary-color);
    display: block;
    margin-top: 10px;
    text-transform: uppercase;
    font-size: 0.7em;
    letter-spacing: 2px;
}

.self-test {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 40px 60px;
    max-width: 1100px;
    margin: 80px auto;
    box-shadow: var(--glass-shadow);
    position: relative;
    overflow: hidden;
}

.test-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary-color);
    font-weight: 800;
}

.test-checklist {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 50px;
    margin-bottom: 30px;
}

.check-item {
    display: flex;
    gap: 20px;
    font-size: 1.15rem;
    color: var(--text-main);
    align-items: center;
    padding: 20px;
    background: var(--bg-card);
    border-radius: 20px;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.check-item:hover {
    background: var(--bg-dark);
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.check-item span {
    color: var(--success);
    font-weight: 900;
    font-size: 1.5rem;
    line-height: 1;
}

.test-footer {
    text-align: center;
    padding-top: 25px;
    border-top: 1px solid var(--glass-border);
}

.test-footer p {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-color);
    background: linear-gradient(90deg, var(--primary-color), var(--warning));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

/* How Section Revamped */
.how-content-revamped {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.how-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 20px;
}

.how-intro p {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 600;
    color: var(--brand-navy);
    line-height: 1.4;
}

.how-intro .accent-text {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-top: 10px;
    display: block;
}

.how-grid-revamped {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    width: 100%;
}

.how-card {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.how-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(16, 69, 133, 0.1);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
}

.card-icon svg {
    width: 30px;
    height: 30px;
}

.how-card h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 16px;
}

.how-card p {
    font-size: 1.1rem;
    color: #000000;
    line-height: 1.7;
}

.card-divider {
    border: 0;
    height: 1px;
    background: var(--glass-border);
    margin: 20px 0;
}

.result-card-new {
    background: linear-gradient(135deg, rgba(16, 69, 133, 0.03), rgba(16, 69, 133, 0.08));
    border: 1px solid rgba(16, 69, 133, 0.15);
}

.result-highlight {
    margin-bottom: 30px;
}

.result-highlight .label {
    display: inline-block;
    padding: 6px 16px;
    background: var(--primary-soft);
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 800;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.result-highlight h4 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--brand-navy);
    line-height: 1.4;
}

.clarity-box {
    display: flex;
    gap: 20px;
    background: white;
    padding: 24px;
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    align-items: center;
}

.info-icon {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--primary-soft);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
}

.clarity-box p {
    font-size: 1rem;
    color: var(--brand-navy);
    margin: 0;
}

.comparison-banner {
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background: var(--brand-navy);
    border-radius: 20px;
    padding: 30px;
    margin-top: 20px;
    color: white;
    box-shadow: 0 10px 30px rgba(7, 32, 54, 0.3);
    flex-wrap: wrap;
    gap: 20px;
}

.compare-item {
    text-align: center;
}

.compare-item strong {
    font-size: 1.4rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
}

.compare-item span {
    font-size: 1rem;
    opacity: 0.7;
}

.compare-vs {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1rem;
    color: var(--primary-color);
    background: white;
}

.compare-item.highlight strong {
    color: #ff4d4d;
}
.compare-item.highlight span {
    opacity: 1;
}

/* Proof Section & Heat Slider */
.proof-container {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--glass-shadow);
    border: 1px solid var(--glass-border);
}

.visualizer-container-new {
    margin: 40px auto;
    max-width: 900px;
    background: #020712;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
}

.viz-controls {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    justify-content: center;
}

.viz-toggle-btn {
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 700;
    transition: all 0.3s ease;
}

.viz-toggle-btn.active {
    background: var(--brand-blue);
    border-color: #82b1ff;
    box-shadow: 0 0 20px rgba(16, 69, 133, 0.4);
}

.radiation-deflector {
    position: relative;
    width: 100%;
    height: 400px;
    background: linear-gradient(to bottom, #030a1a, #050f26);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

#viz-canvas {
    width: 100%;
    height: 100%;
    display: block;
}

.viz-data-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.temp-badge {
    background: rgba(0, 0, 0, 0.6);
    padding: 10px 20px;
    border-radius: 100px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.temp-badge.hot {
    color: #ff4d4d;
    border-color: rgba(255, 77, 77, 0.4);
    box-shadow: 0 0 20px rgba(255, 77, 77, 0.2);
}

.status-indicator {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 900;
    padding: 6px 14px;
    border-radius: 4px;
    background: rgba(130, 177, 255, 0.2);
    color: #82b1ff;
}

.status-indicator.hot {
    background: rgba(255, 77, 77, 0.2);
    color: #ff4d4d;
}

.impact-list {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.impact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--brand-navy);
}

.impact-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.proof-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    width: 100%;
    margin: 40px 0;
}

.proof-card {
    background: var(--bg-glass);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: var(--glass-shadow);
    transition: var(--transition);
}

.proof-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(16, 69, 133, 0.1);
}

.proof-card.highlight {
    background: linear-gradient(135deg, rgba(16, 69, 133, 0.02), rgba(16, 69, 133, 0.08));
    border-color: rgba(16, 69, 133, 0.2);
}

.proof-card h3 {
    font-weight: 800;
    color: var(--brand-navy);
}

.proof-card p {
    font-size: 4rem;
    font-weight: 900;
    margin: 15px 0;
    color: var(--primary-color);
    text-shadow: 2px 2px 10px rgba(16,69,133,0.1);
}

.proof-card p.temp-hot {
    color: #ff4d4d;
    text-shadow: 2px 2px 15px rgba(255, 77, 77, 0.3);
}

.proof-card span {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-muted);
    padding: 8px 20px;
    background: white;
    border-radius: 30px;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* --- 9) DEALER SECTION (Astro-Command Split Card) --- */
.dealer-command-card {
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);

}

.dealer-command-left {
    flex: 1;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    padding: 48px 44px;
    color: white;
    display: flex;
    align-items: stretch;
}

.dealer-command-inner {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
}

.dealer-command-header {
    margin-bottom: 32px;
}

.dealer-command-title {
    font-size: clamp(1.6rem, 2.5vw, 2.2rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 14px;
    color: white;
}

.dealer-command-sub {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 40px;
}

/* Vertical Timeline */
.dealer-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.timeline-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.timeline-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.t-dot {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.7);
    flex-shrink: 0;
}

.t-dot.active {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.15);
}

.t-line {
    width: 1px;
    flex: 1;
    min-height: 32px;
    background: rgba(255, 255, 255, 0.12);
    margin: 6px 0;
}

.timeline-content {
    padding-bottom: 32px;
}

.timeline-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 6px;
}

.timeline-content p {
    font-size: 0.875rem;
    opacity: 0.65;
    line-height: 1.5;
}

/* Right side */
.dealer-command-right {
    flex: 1.1;
    background: #ffffff;
    padding: 48px 52px;
    display: flex;
    align-items: center;
}

.dealer-command-form-inner {
    width: 100%;
}

.dealer-right-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.dealer-right-sub {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.dealer-partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 36px;
}

.dealer-partner-tile {
    background: #f4f7f9;
    border-radius: 14px;
    padding: 24px 20px;
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.3s ease;
}

.dealer-partner-tile:hover {
    border-color: var(--brand-blue);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(16, 69, 133, 0.08);
}

.dp-icon {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.dp-icon svg {
    width: 38px;
    height: 38px;
    stroke: var(--brand-blue);
    stroke-width: 1.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dealer-partner-tile:hover .dp-icon svg {
    stroke: var(--primary-hover);
    transform: translateY(-2px) scale(1.1);
}

.dealer-partner-tile h4 {
    font-size: 0.95rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 6px;
}

.dealer-partner-tile p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
}

.dealer-command-hook {
    padding-top: 24px;
    border-top: 1px solid rgba(0,0,0,0.06);
    font-size: 1rem;
    color: var(--brand-navy);
}

@media (max-width: 992px) {
    .dealer-command-card { flex-direction: column; }
    .dealer-command-right { padding: 40px 32px; }
    .dealer-partner-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
    .dealer-partner-grid { grid-template-columns: 1fr; }
}


.impact-list {
    display: flex;
    justify-content: space-around;
    gap: 24px;
    margin: 60px 0;
    flex-wrap: wrap;
}

.impact-item {
    padding: 16px 32px;
    background: white;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--brand-navy);
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    transition: var(--transition);
}

.impact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(16, 69, 133, 0.1);
    border-color: var(--primary-color);
}

.impact-item span {
    color: var(--success);
    font-weight: 900;
}

.matters-box {
    background: var(--bg-glass);
    backdrop-filter: blur(10px);
    padding: 48px;
    border-radius: 20px;
    text-align: center;
    font-size: 1.1rem;
    line-height: 1.8;
    border: 1px solid var(--glass-border);
    max-width: 900px;
    margin: 0 auto;
}

/* Specs & Process Overhaul */
.specs-table {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 60px;
    width: 100%;
}

.spec-icon {
    width: 52px;
    height: 52px;
    background: var(--brand-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 24px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(16, 69, 133, 0.1);
}

.spec-icon svg {
    width: 26px;
    height: 26px;
}

.spec-row:hover .spec-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(16, 69, 133, 0.3);
}

.spec-row {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 30px 30px 30px 40px; /* Offset left for accent bar */
    background: #ffffff;
    border: none; /* Removed stork/stroke */
    border-radius: 16px;
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
}

/* Vertical Accent Bar (Visible) */
.spec-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 6px; /* Thick accent bar */
    background: var(--brand-blue);
    transition: background 0.3s ease;
}

.spec-row:hover {
    transform: translateY(-8px); /* Clear "box" lift */
    border-color: rgba(16, 69, 133, 0.2);
}

.spec-row:hover::before {
    background: #82b1ff; /* Accent color change on hover */
}

.spec-row span {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.spec-row strong {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--brand-navy);
}

/* 3D Glowing Carousel - Neon Cyber Edition */
#process {
    background: transparent;
    padding: 100px 0;
    overflow: hidden;
}

.process-waterfall-procedural {
    position: relative;
    max-width: 1100px;
    margin: 80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 100px;
    padding: 0 20px;
}

.waterfall-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, rgba(16, 69, 133, 0.2) 10%, rgba(16, 69, 133, 0.2) 90%, transparent);
    transform: translateX(-50%);
    z-index: 1;
}

.waterfall-step {
    display: flex;
    align-items: center;
    gap: 80px;
    position: relative;
    z-index: 2;
}

.waterfall-step:nth-child(even) {
    flex-direction: row-reverse;
}

.step-media {
    flex: 1;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    height: 380px;
}

.step-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.waterfall-step:hover .step-media img {
    transform: scale(1.05);
}

.step-info {
    flex: 1;
    text-align: left;
}

.step-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--brand-blue);
    color: white;
    padding: 8px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 1rem;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(16, 69, 133, 0.3);
}

.step-info h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--brand-navy);
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.step-desc {
    font-size: 1.15rem;
    color: var(--text-main);
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.8;
}

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-list li {
    font-size: 1.05rem;
    display: grid;
    grid-template-columns: 24px 185px 1fr;
    gap: 5px;
    align-items: baseline;
    margin-bottom: 2px;
}

.step-list li::before {
    content: '→';
    color: var(--brand-blue);
    font-weight: 900;
}

.sl-label {
    color: var(--brand-navy);
    font-weight: 800;
    white-space: nowrap;
}

.sl-text {
    line-height: 1.5;
    color: var(--text-muted);
}

@media (max-width: 600px) {
    .step-list li {
        grid-template-columns: 24px 1fr;
        gap: 2px 10px;
    }
    .sl-label {
        grid-column: 2;
        white-space: normal;
        margin-bottom: 2px;
    }
    .sl-text {
        grid-column: 2;
        font-size: 0.95rem;
        display: block;
    }
}

.tech-warning {
    margin-top: 30px;
    background: rgba(255, 107, 107, 0.08);
    border: 1px solid rgba(255, 107, 107, 0.2);
    border-left: 4px solid #ff6b6b;
    padding: 18px 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ff6b6b;
    font-weight: 700;
}

.neon-warning svg {
    color: #ff4d4d;
    flex-shrink: 0;
}

/* Indicators Override */
.carousel .indicators .indicator-item {
    background-color: rgba(0, 243, 255, 0.3);
}

.carousel .indicators .indicator-item.active {
    background-color: #00f3ff;
    box-shadow: 0 0 10px #00f3ff;
}

.neon-authority {
    border: 1px solid rgba(0, 243, 255, 0.3);
    box-shadow: 0 0 20px rgba(0, 243, 255, 0.1);
}

.manual-guide {
    margin-top: 16px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 12px;
}

.manual-guide strong {
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--text-main);
}

.warning-text {
    margin-top: 20px;
    color: var(--error);
    font-weight: 800;
    text-align: center;
    background: rgba(213, 0, 0, 0.05);
    padding: 10px;
    border-radius: 8px;
}

.success-step {
    border: 1px solid var(--success);
}

.qc-checklist {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.qc-item {
    display: flex;
    gap: 12px;
    align-items: center;
    font-weight: 600;
    color: var(--text-main);
}

.qc-item span {
    color: var(--success);
    font-weight: 900;
}

.authority-banner {
    margin: 64px auto 0;
    max-width: 800px;
    background: var(--brand-blue);
    color: white;
    padding: 24px 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.authority-banner::before {
    content: '⚠';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 20rem;
    opacity: 0.03;
    pointer-events: none;
}

.authority-banner p {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    font-weight: 800;
    line-height: 1.4;
    position: relative;
    z-index: 1;
}

/* FAQ & Forms */
details {
    background: var(--bg-card);
    margin-bottom: 16px;
    border-radius: 16px;
    padding: 0;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: var(--transition);
}

details[open] {
    border-color: var(--primary-color);
}

summary {
    padding: 24px 32px;
    font-weight: 700;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 15px;
}

summary::after {
    content: '↓';
    margin-left: auto;
    transition: transform 0.3s;
    color: var(--primary-color);
}

details[open] summary::after {
    transform: rotate(180deg);
}

details p {
    padding: 0 32px 24px;
    color: var(--text-muted);
}

/* --- 8) CONVERSION SECTION (Split Showcase Layout) --- */
.conversion-section {
    padding: var(--section-padding);
    background: #fbfbfd;
}

.split-showcase-container {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.05);
    margin: 40px auto;
    max-width: var(--container-width, 1350px);
    width: 100%;
}

.showcase-content {
    flex: 1.1; /* Adjusted from 1.2 to give visual more room */
    padding: 70px; /* Increased from 60px */
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(16, 69, 133, 0.1);
    color: var(--brand-blue);
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
    width: fit-content;
}

.showcase-title {
    font-size: clamp(2.4rem, 4vw, 3rem); /* Increased size */
    font-weight: 900;
    color: var(--brand-navy);
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.showcase-title .highlight {
    color: var(--primary-color);
}

.showcase-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Modern Scarcity Bar */
.modern-scarcity {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
}

.scarcity-label-row {
    display: flex;
    justify-content: space-between;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--brand-navy);
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.scarcity-progress-track {
    width: 100%;
    height: 8px;
    background: #e0e6ed;
    border-radius: 4px;
    overflow: hidden;
}

.scarcity-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff9800, #ff5722);
    width: 24%;
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Image Side */
.showcase-visual {
    flex: 0.9; /* Increased from 0.8 */
    background: #f4f7f9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px; /* Decreased from 40px to make image significantly larger */
}

.showcase-visual img {
    max-width: 110%; /* Allow image to grow slightly beyond box */
    height: auto;
    border-radius: 12px;
    transform: scale(1.15); /* Significantly larger zoom */
    transition: transform 0.5s ease;
    mix-blend-mode: multiply; /* Helps white background images blend into light grey container */
}

.split-showcase-container:hover .showcase-visual img {
    transform: scale(1.22);
}

@media (max-width: 900px) {
    .split-showcase-container {
        flex-direction: column;
    }
    .showcase-content {
        padding: 40px 30px;
    }
    .showcase-visual {
        padding: 20px;
    }
}

/* --- 10) CONTACT SECTION (Astro-Style Split Design) --- */
.contact-astro-section {
    padding: 100px 5%;
    background: #fbfbfd;
}

.container-astro {
    max-width: var(--container-width, 1350px);
    margin: 0 auto;
    width: 100%;
}

.astro-card {
    display: flex;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    min-height: 500px; /* Reduced from 600px */
}

.astro-left {
    flex: 1.1;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    padding: 40px; /* Reduced from 60px */
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

.astro-visual-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

#astro-visual-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.8;
}

.astro-logo-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.7rem;
    letter-spacing: 2.5px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #ff4d4d;
}

.astro-visual-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.astro-visual-credit {
    font-size: 0.8rem;
    font-weight: 700;
    opacity: 0.7;
    letter-spacing: 2px;
}

.astro-visual-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.astro-footer-meta {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1px;
    opacity: 0.6;
    text-transform: uppercase;
}

.astro-footer-meta .dim {
    margin: 0 8px;
    opacity: 0.4;
}

.astro-footer-socials {
    display: flex;
    gap: 16px;
}

.astro-footer-socials a {
    color: white;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.astro-footer-socials a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.astro-visual-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    z-index: 1;
}

.astro-right {
    flex: 1;
    padding: 40px 60px; /* Reduced from 80px 60px */
}

.astro-form-inner {
    max-width: 420px;
    margin: 0 auto;
}

.astro-form-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--brand-navy);
    margin-bottom: 40px;
    letter-spacing: -1px;
}

.astro-field {
    margin-bottom: 24px;
}

.astro-field label {
    display: block;
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--brand-navy);
    margin-bottom: 10px;
}

.astro-field input, 
.astro-field textarea {
    width: 100%;
    padding: 16px 24px;
    background: #f4f7f9;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
    color: var(--text-main);
}

.astro-field textarea {
    border-radius: 12px;
    resize: none;
}

.astro-field input:focus, 
.astro-field textarea:focus {
    outline: none;
    background: #eef1f4;
    box-shadow: inset 0 0 0 2px rgba(16, 69, 133, 0.1);
}

.astro-footer {
    display: flex;
    justify-content: center;
}

.btn-astro-send {
    width: auto;
    min-width: 200px;
    margin-top: 16px;
    padding: 14px 50px;
    background: var(--brand-blue);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.btn-astro-send:hover {
    transform: translateY(-3px);
    background: var(--primary-hover);
}

@media (max-width: 992px) {
    .astro-card { flex-direction: column; }
    .astro-left { padding: 40px 30px; }
}




/* Footer & Utils */
.site-footer {
    background: var(--brand-navy);
    color: rgba(255, 255, 255, 0.7);
    padding: 40px 5% 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.brand-col .footer-logo {
    color: white;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.footer-mission {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 400px;
}

.footer-socials {
    display: flex;
    gap: 16px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-heading {
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 24px;
}

.footer-link-list {
    list-style: none;
/* Mobile Responsive */
@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    .accent-text { font-size: 1.6rem; }
    .nav-links { display: none; }
    .hero { height: auto; padding: 100px 5%; }
    .problem-grid, .proof-grid, .dealer-grid, .contact-card, .heat-journey-grid, .test-checklist {
        grid-template-columns: 1fr;
    }
    .journey-card { padding: 30px; }
    .truth-banner { padding: 40px 20px; }
    .truth-banner p { font-size: 1.2rem; }
    .self-test { padding: 40px 20px; }
    .impact-list { flex-direction: column; gap: 20px; }
    .contact-split-new { flex-direction: column; gap: 60px; }
    .dot-grid { display: none; }
    
    .hero-container { flex-direction: column; gap: 40px; text-align: center; padding-top: 40px; }
    .hero-cta-group { justify-content: center; }
    .trust-proof { justify-content: center; }
    
    .process-waterfall-procedural {
        gap: 60px;
        margin-top: 40px;
    }
    .waterfall-line {
        display: none;
    }
    .waterfall-step, .waterfall-step:nth-child(even) {
        flex-direction: column;
        gap: 30px;
    }
    .step-media {
        width: 100%;
        height: 280px;
    }
    .step-info h3 {
        font-size: 1.8rem;
    }
}

/* Animations & Reveal Effects */
.reveal-init {
    opacity: 0 !important;
    transform: translateY(20px) !important;
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) !important;
    pointer-events: none;
}

.reveal-init.reveal {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto;
}

/* Specific Section Variations */
section.reveal-init {
    transition-delay: 0.1s;
}

@media (prefers-reduced-motion: reduce) {
    .reveal-init {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* AI Chatbot Floating Button */
#chat-fab {
    position: fixed;
    bottom: 110px;
    right: 30px;
    z-index: 9998;
    display: flex;
    align-items: center;
    gap: 0;
    padding: 10px;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    color: white;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(7, 32, 54, 0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    white-space: nowrap;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    visibility: hidden;
}

#chat-fab.visible {
    opacity: 1;
    visibility: visible;
}

.chat-label {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    opacity: 0;
    max-width: 0;
    transition: all 0.4s ease;
    margin: 0;
}

.chat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

#chat-fab:hover {
    padding: 10px 24px 10px 10px;
    background: var(--brand-blue);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(186, 70, 76, 0.4);
    gap: 12px;
}

#chat-fab:hover .chat-label {
    opacity: 1;
    max-width: 200px;
}

#chat-fab::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50px;
    background: inherit;
    z-index: -1;
    animation: chat-pulse 2s infinite;
}

@keyframes chat-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 768px) {
    #chat-fab {
        bottom: 100px;
        right: 20px;
    }
}

/* In-Website Chat Widget */
#chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 420px;
    height: 700px;
    max-height: 85vh;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    z-index: 10000;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: bottom right;
}

.chat-widget-hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(40px);
    pointer-events: none;
}

.chat-header {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    padding: 20px 24px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.chat-title span {
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
}

.online-indicator {
    width: 10px;
    height: 10px;
    background: #4cd964;
    border-radius: 50%;
    box-shadow: 0 0 10px #4cd964;
}

#close-chat {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

#close-chat:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: rotate(90deg);
}

.chat-body {
    flex: 1;
    position: relative;
    z-index: 1;
    overflow: hidden; /* Static layer for background */
    background: #fbfbfd;
}

.chat-messages {
    height: 100%;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    overflow-y: auto; /* Scrollable content layer */
    scrollbar-width: thin;
    z-index: 2;
}

.chat-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/ir_circular_bg.png');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.15;
    z-index: -1;
    pointer-events: none;
    filter: grayscale(0);
    mask-image: radial-gradient(circle, black 80%, transparent 100%);
    -webkit-mask-image: radial-gradient(circle, black 80%, transparent 100%);
}

.chat-messages::-webkit-scrollbar {
    width: 5px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

/* Message Styles */
.message {
    max-width: 80%;
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 0.95rem;
    line-height: 1.5;
    animation: message-in 0.3s ease forwards;
}

.message-ai {
    background: white;
    color: var(--text-main);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
}

.message-user {
    background: var(--brand-blue);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(16, 69, 133, 0.2);
}

@keyframes message-in {
    from { opacity: 0; transform: translateY(10px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 4px;
    padding: 12px 16px;
    background: white;
    border-radius: 18px;
    width: fit-content;
    border: 1px solid rgba(0,0,0,0.05);
}

.dot {
    width: 6px;
    height: 6px;
    background: #ccc;
    border-radius: 50%;
    animation: dot-pulse 1.5s infinite ease-in-out;
}

.dot:nth-child(2) { animation-delay: 0.2s; }
.dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes dot-pulse {
    0%, 100% { transform: scale(1); opacity: 0.4; }
    50% { transform: scale(1.3); opacity: 1; }
}

.chat-input-area {
    padding: 16px 20px;
    background: white;
    border-top: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 12px;
    align-items: center;
}

#user-input {
    flex: 1;
    border: none;
    background: #f4f4f4;
    padding: 12px 16px;
    border-radius: 24px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

#user-input:focus {
    outline: none;
    background: #eeeeee;
    box-shadow: inset 0 0 0 1px rgba(16, 69, 133, 0.1);
}

#send-btn {
    background: var(--brand-blue);
    color: white;
    border: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(16, 69, 133, 0.2);
}

#send-btn:hover {
    transform: scale(1.1) rotate(-10deg);
    background: var(--brand-navy);
}

/* Chat CTA Button */
.chat-cta {
    display: block;
    margin-top: 10px;
    padding: 12px;
    background: var(--brand-blue);
    color: white;
    text-align: center;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.chat-cta:hover {
    background: #9d1c22;
    transform: translateY(-2px);
}

@media (max-width: 500px) {
    #chat-widget {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}

/* Chat Quick Link Chips */
.chat-chips {
    display: flex;
    gap: 8px;
    padding: 10px 20px;
    background: #fcfcfc;
    overflow-x: auto;
    border-top: 1px solid rgba(0,0,0,0.03);
    scrollbar-width: none;
}

.chat-chips::-webkit-scrollbar {
    display: none;
}

.chip {
    padding: 6px 16px;
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--brand-blue);
    white-space: nowrap;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chip:hover {
    background: var(--brand-blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(16, 69, 133, 0.1);
}

/* Rich Message Styling */
.message-ai ul {
    margin-top: 8px;
    padding-left: 18px;
    list-style: none;
}

.message-ai li {
    position: relative;
    margin-bottom: 4px;
}

.message-ai li::before {
    content: "•";
    position: absolute;
    left: -15px;
    color: var(--brand-navy);
    font-weight: bold;
}

.message-ai strong {
    color: var(--brand-navy);
}

/* Diagnostic Assessment Styles */
.diagnostic-box {
    max-width: 1100px;
    margin: 40px auto;
    background: white;
    padding: 80px 60px;
    border-radius: 48px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.diagnostic-lead {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    line-height: 1.8;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.diagnostic-targets {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.target-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    background: transparent;
    border-radius: 0;
    border: none;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-align: center;
    box-shadow: none;
}

.target-item:hover {
    transform: translateY(-5px);
}

.target-icon {
    width: 58px;
    height: 58px;
    background: var(--brand-blue);
    border-radius: 16px;
    color: white;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 20px rgba(16, 69, 133, 0.1);
}

.target-item:hover .target-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 15px 30px rgba(16, 69, 133, 0.3);
}

.target-icon svg {
    width: 100%;
    height: 100%;
}

.target-item strong {
    font-size: 1.15rem;
    color: var(--brand-navy);
    display: block;
    margin-bottom: 10px;
    font-weight: 800;
}

.target-item span {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .diagnostic-box {
        padding: 30px 20px;
    }
    .diagnostic-targets {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SUPABASE FORMS — LEAD MODAL, DEALER FORM, CONTACT FEEDBACK
   ============================================================ */

/* --- Lead Capture Modal Overlay --- */
.lead-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lead-modal-box {
    background: white;
    border-radius: 28px;
    padding: 48px 40px;
    max-width: 480px;
    width: 100%;
    position: relative;
    box-shadow: 0 40px 100px rgba(0,0,0,0.2);
    animation: modalSlideIn 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

@keyframes modalSlideIn {
    from { transform: translateY(30px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.lead-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-muted);
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 8px;
    transition: background 0.2s;
}
.lead-modal-close:hover { background: #f1f5f9; }

.lead-modal-header { text-align: center; margin-bottom: 28px; }
.lead-modal-badge {
    display: inline-block;
    background: #fff0f0;
    color: #ff4d4d;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}
.lead-modal-header h2 { font-size: 1.6rem; color: var(--brand-navy); margin-bottom: 8px; }
.lead-modal-header p  { color: var(--text-muted); font-size: 0.95rem; }

/* --- Lead Form Fields --- */
.lead-form { display: flex; flex-direction: column; gap: 16px; }
.lead-field { display: flex; flex-direction: column; gap: 6px; }
.lead-field label { font-size: 0.85rem; font-weight: 600; color: var(--brand-navy); }
.lead-field input {
    padding: 13px 16px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.lead-field input:focus { border-color: var(--brand-blue); }

.lead-submit-btn {
    width: 100%;
    padding: 16px;
    background: var(--brand-navy);
    color: white;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.2s;
}
.lead-submit-btn:hover { background: var(--brand-blue); transform: translateY(-2px); }
.lead-feedback-msg { text-align: center; font-size: 0.9rem; font-weight: 600; min-height: 20px; margin-top: 4px; }

/* --- Dealer Inquiry Form --- */
.dp-inquiry-form { display: flex; flex-direction: column; gap: 12px; margin-top: 20px; }
.dp-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.dp-field { display: flex; flex-direction: column; }
.dp-field input,
.dp-field select {
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1.5px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: white;
    font-size: 0.9rem;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
}
.dp-field input::placeholder { color: rgba(255,255,255,0.4); }
.dp-field input:focus,
.dp-field select:focus { border-color: rgba(255, 255, 255, 0.5); }
.dp-field select { cursor: pointer; }
.dp-field select option { background: var(--brand-navy); color: white; }

.dp-submit-btn {
    width: 100%;
    padding: 14px;
    background: white;
    color: var(--brand-navy);
    border: none;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    margin-top: 4px;
    transition: background 0.2s, transform 0.2s;
}
.dp-submit-btn:hover { background: #e2e8f0; transform: translateY(-2px); }
.dp-feedback-msg { text-align: center; font-size: 0.88rem; font-weight: 600; min-height: 20px; }

/* --- Contact Form Feedback --- */
.contact-feedback-msg {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 20px;
    margin-top: 8px;
}


/* ============================================================
   12) PROFESSIONAL CENTERED FOOTER (4-COLUMN)
   ============================================================ */
.footer-ob * {
    box-sizing: border-box;
}

.footer-ob {
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-navy));
    color: #ffffff;
    padding: 60px 0 30px;
    position: relative;
    font-family: 'Inter', sans-serif;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.footer-ob .ob-wrapper {
    width: 100%;
    padding: 0 max(5%, calc((100vw - var(--container-width, 1350px)) / 2));
    position: relative;
}

.ob-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
    align-items: start;
    margin-bottom: 40px;
}

.ob-logo {
    font-size: 2rem;
    font-weight: 950;
    margin-bottom: 5px;
    color: #ffffff;
    letter-spacing: -1px;
}

.ob-tagline {
    color: #666;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 25px;
}

.ob-heading {
    color: #ff9800;
    text-transform: uppercase;
    font-size: 1.15rem;
    font-weight: 800;
    margin-bottom: 25px;
    letter-spacing: 1.2px;
}

.ob-text {
    color: #ffffff;
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 30px;
}

.ob-links {
    list-style: none;
    padding: 0;
}

.ob-links li {
    margin-bottom: 12px;
}

.ob-links a {
    color: #bbbbbb;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.ob-links a:hover {
    color: #ff9800;
}

.ob-contact-list {
    list-style: none;
    padding: 0;
}

.ob-contact-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: #bbbbbb;
}

.ob-contact-list svg {
    color: #ff9800;
    flex-shrink: 0;
}

.ob-divider {
    border: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 40px 0 25px;
}

.ob-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.ob-socials {
    display: flex;
    gap: 20px;
}

.ob-social-icon {
    width: 44px;
    height: 44px;
    background: #ff9800;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

.ob-social-icon:hover {
    transform: translateY(-5px);
}

.ob-copyright {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .ob-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 600px) {
    .ob-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .ob-contact-list li {
        justify-content: center;
    }
}

/* ============================================================
   13) UNIFIED AI CHAT WIDGET
   ============================================================ */
#chat-fab {
    position: fixed;
    bottom: 110px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #ff9800;
    color: white;
    padding: 10px 10px 10px 24px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 10px 30px rgba(255, 152, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    opacity: 1 !important;
    visibility: visible !important;
}

#chat-fab:hover {
    transform: scale(1.05) translateY(-3px);
}

.chat-label {
    font-size: 0.9rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.chat-icon {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#chat-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    width: 380px;
    height: 600px;
    background: #121212;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    z-index: 10000;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.chat-widget-hidden {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.8) translateY(40px);
    pointer-events: none;
}

.chat-header {
    background: #ff9800;
    padding: 20px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
    background: #121212;
}

.chat-input-area {
    padding: 20px;
    background: #1a1a1a;
    display: flex;
    gap: 12px;
}

#user-input {
    flex: 1;
    background: #2a2a2a;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 12px 15px;
    color: white;
}

#send-btn {
    background: #ff9800;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 10px;
    cursor: pointer;
}
