/* assets/css/main.css */
@import url('https://fonts.googleapis.com/css2?family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --bg-color: #0d1117;
    --text-color: #ffffff;
    --text-muted: #8b949e;
    --primary-color: #72f718;
    --primary-hover: #5ad512;
    --card-bg: #161b22;
    --card-border: #30363d;
    --font-sans: 'Inter', sans-serif;
    --font-mono: 'Space Mono', monospace;
    --transition: 0.3s ease;
    --glow-color: rgba(114, 247, 24, 0.4);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-sans);
    font-weight: 500;
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-hover);
}

ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 15px;
}

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

.section-title {
    font-size: 3rem;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.section-badge {
    display: inline-block;
    color: var(--primary-color);
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

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

.center-badge {
    text-align: center;
    display: block;
}

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

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

.brand-highlight {
    color: var(--primary-color);
    font-weight: 700;
    text-shadow: 0 0 12px rgba(114, 247, 24, 0.4);
}

.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }
.pt-4 { padding-top: 2rem; }
.spacer-80 { height: 80px; }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(114, 247, 24, 0.4);
}

.btn-primary:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: translateY(-2px);
}

.btn-primary:hover.btn-glow {
    box-shadow: 0 0 40px rgba(114, 247, 24, 0.8), 0 0 15px rgba(255, 255, 255, 0.3) inset;
}

.btn-outline {
    background-color: transparent;
    border-color: var(--text-color);
    color: var(--text-color);
}

.btn-outline:hover {
    background-color: rgba(255,255,255,0.1);
}

.btn-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.btn-full {
    width: 100%;
    display: inline-block;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0; /* Reduced from 30px */
    transition: background-color 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.navbar.scrolled {
    background-color: rgba(13, 17, 23, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

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

.navbar-logo {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 800; /* Bolder logo */
    letter-spacing: -0.5px;
    color: var(--text-color);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    color: var(--text-color);
    font-size: 0.95rem;
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 180px 0 100px;
    overflow: hidden;
}

.hero-virtual-decoration {
    position: absolute;
    top: 15%;
    right: 15%;
    width: 150px;
    opacity: 0.8;
    animation: rotateSlow 20s linear infinite;
    z-index: 1;
}

@keyframes rotateSlow {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -2;
    opacity: 0.6; /* Darken the background generally to make it less prominent */
}

#hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(13, 17, 23, 1) 20%, rgba(13, 17, 23, 0.7) 45%, rgba(13, 17, 23, 0.1) 100%);
    backdrop-filter: blur(1px); /* Slight blur */
    z-index: -1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-text-col {
    max-width: 580px; /* Reduced to match wrapping */
}

.hero-title {
    font-size: 5.5rem; /* Larger */
    margin-bottom: 25px;
    line-height: 1; /* Tighter line height */
    letter-spacing: -2px; /* Tightly tracked */
    font-family: var(--font-mono);
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.1rem; /* Slightly smaller */
    color: var(--text-muted);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 85%;
}
.hero-subtitle strong {
    color: var(--text-color);
    font-weight: 600; /* Not as heavy */
}

/* --- PRE-FOOTER CTA SECTION --- */
.pre-footer-cta {
    padding-top: 150px;
    padding-bottom: 80px;
}
.cta-box {
    padding: 140px 40px 80px 40px;
}
.cta-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}
.cta-desc {
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 40px auto;
}
.cta-btn {
    padding: 15px 40px;
    font-size: 1.1rem;
}
.cta-robot {
    top: -150px;
    width: 280px;
}
.cta-star {
    bottom: 60px;
    right: 15%;
    width: 50px;
}

/* --- FOOTER --- */

.hero-metrics {
    display: flex;
    gap: 40px; /* Reduced gap */
    margin-top: 50px; /* Closer to CTA */
}

.metric-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.metric-icon {
    width: 35px;
    height: 35px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.8));
}

.metric-data {
    display: flex;
    flex-direction: column;
}

.metric-value {
    font-family: var(--font-sans); /* Use sans for numbers */
    font-size: 1.6rem; 
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.5px;
}

.metric-label {
    font-size: 0.65rem; /* Smaller */
    color: var(--text-muted);
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-image-col {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-col::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(114,247,24,0.15) 0%, rgba(13,17,23,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    border-radius: 50%;
}

.hero-bot-img {
    width: 680px; /* Fixed width to make it huge */
    max-width: 170%; /* Overflowing its container */
    height: auto;
    margin-right: -40%; /* Pulling it to the right */
    margin-top: -15%; /* Pulling it upwards */
    position: relative;
    z-index: 5;
    filter: drop-shadow(0 20px 50px rgba(0,0,0,0.6)); /* Stronger shadow */
}


/* Sponsors */
.sponsors-section {
    padding: 40px 0;
    background-color: #080b0f;
    border-bottom: 1px solid var(--card-border);
    overflow: hidden;
}

.sponsors-marquee {
    display: flex;
    overflow: hidden;
    user-select: none;
}

.sponsors-track {
    display: flex;
    gap: 60px;
    animation: scroll 20s linear infinite;
    align-items: center;
}

.sponsor-item img {
    height: 30px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: var(--transition);
}

.sponsor-item img:hover {
    opacity: 1;
    filter: none;
}

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

/* Info & Generic Sections */
.info-section, .how-it-works-section, .features-section, .ai-execution-section, .pricing-section, .faq-section, .testimonials-section {
    padding: 100px 0;
}

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

.info-grid-reverse .info-image-col {
    order: 2;
}

.info-grid-reverse .info-text-col {
    order: 1;
}

.image-wrapper {
    position: relative;
}

.info-main-image {
    width: 100%;
    height: auto;
    object-fit: contain;
}

/* VR Composition Overlay inside image-wrapper */
.vr-composition {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
}

/* Green decorative grid behind */
.vr-grid {
    position: absolute;
    width: 130%;
    max-width: none;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%) rotate(32deg);
    z-index: 0;
    opacity: 0.6;
}

/* VR Couple */
.vr-main-img {
    position: relative;
    z-index: 2;
    width: 115%; /* Overflow container */
    max-width: none;
    height: auto;
    margin-left: -15%;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.5));
}

/* Rotating Circle Badge */
.vr-circle {
    position: absolute;
    top: -15%;
    left: 10%;
    width: 140px;
    z-index: 3;
    animation: rotateCircle 15s linear infinite;
    filter: drop-shadow(0 0 15px rgba(114, 247, 24, 0.2));
}

@keyframes rotateCircle {
    from { transform: rotate(-180deg); }
    to { transform: rotate(180deg); }
}

.earth-globe {
    max-width: 80%;
}

.float-animation {
    animation: floating 4s ease-in-out infinite;
}

.float-animation-slow {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0); }
}

/* How It Works Steps */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.step-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 40px 30px;
    text-align: left;
    transition: var(--transition);
}

.glow-on-hover:hover {
    box-shadow: 0 0 30px rgba(114, 247, 24, 0.1);
    border-color: rgba(114, 247, 24, 0.3);
    transform: translateY(-5px);
}

.step-icon img {
    width: 50px;
    margin-bottom: 20px;
}

.step-number {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 60px;
    margin-top: 40px;
    text-align: left;
}

.feature-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.feature-dot {
    width: 15px;
    height: 15px;
    background-color: #8b5cf6;
    border-radius: 50%;
    box-shadow: 0 0 10px #8b5cf6;
}

.feature-title {
    font-size: 1.25rem;
}

/* Stats */
.stats-row {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.stat-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    flex: 1;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    letter-spacing: 1px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 50px auto 0;
}

.pricing-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: left;
    position: relative;
    display: flex;
    flex-direction: column;
}

.popular-plan {
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(114, 247, 24, 0.15);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: #000;
    font-weight: 700;
    padding: 5px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
}

/* Dashboard Floating Icons */
.dash-float-icon {
    position: absolute;
    z-index: 1;
    filter: drop-shadow(0 10px 20px rgba(0,0,0,0.5));
}
.icon-1 { top: -10%; left: 10%; width: 60px; }
.icon-2 { top: -5%; right: 5%; width: 80px; }
.icon-3 { bottom: 20%; left: -5%; width: 70px; }
.icon-4 { bottom: -10%; right: 15%; width: 50px; }

/* Customers Masonry Gallery */
.gallery-masonry {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}
.gallery-col {
    display: flex;
    flex-direction: column;
    flex: 1;
}
.gallery-col-left {
    margin-top: 50px;
}
.gallery-img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}
.gallery-img:hover {
    transform: scale(1.02);
}
.mt-gap {
    margin-top: 30px;
}


.plan-name {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.plan-desc {
    color: var(--text-muted);
    margin-bottom: 30px;
    min-height: 50px;
}

.plan-price-wrapper {
    margin-bottom: 30px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.plan-price {
    font-family: var(--font-mono);
    font-size: 3.5rem;
    font-weight: 700;
}

.plan-period {
    color: var(--text-muted);
}

.plan-features {
    margin-bottom: 40px;
    flex-grow: 1;
}

.plan-features li {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.check-icon {
    color: var(--primary-color);
    font-weight: bold;
}

/* FAQ */
.faq-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    text-align: left;
}

.faq-item {
    border-bottom: 1px solid var(--card-border);
}

.faq-question {
    width: 100%;
    background: transparent;
    border: none;
    color: var(--text-color);
    font-size: 1.1rem;
    font-family: var(--font-sans);
    font-weight: 600;
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
}

.faq-icon {
    font-size: 1.5rem;
    transition: var(--transition);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding-bottom: 25px;
    color: var(--text-muted);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-color);
}

/* Testimonials Carousel */
.testimonials-section {
    background: linear-gradient(180deg, var(--bg-color) 0%, #0a0e14 100%);
}

.testimonials-carousel {
    padding: 40px 10px 60px;
}

.testimonial-card {
    background-color: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 12px;
    padding: 30px;
    text-align: left;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-rating {
    color: #f1c40f;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 25px;
    flex-grow: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar, .img-fallback {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    background-color: #30363d;
}

.author-name {
    font-size: 1rem;
    margin-bottom: 2px;
}

.author-role {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.swiper-pagination-bullet {
    background: var(--text-color);
}
.swiper-pagination-bullet-active {
    background: var(--primary-color);
}
.swiper-button-next, .swiper-button-prev {
    color: var(--primary-color);
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
    background: var(--card-bg);
    width: 40px;
    height: 40px;
    border-radius: 50%;
}
.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 1rem;
    font-weight: bold;
}

/* Pre-Footer CTA */
.pre-footer-cta {
    padding: 80px 0;
}
.cta-box {
    background: linear-gradient(180deg, #161C24 0%, #0B0F19 100%);
    border-radius: 20px;
    border: 1px solid var(--card-border);
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    padding: 60px 40px;
}
.cta-robot {
    position: absolute;
    top: -120px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    z-index: 3;
}
.cta-title {
    position: relative;
    z-index: 4;
}

/* Footer */
.site-footer {
    background-color: var(--bg-color);
    padding: 80px 0 40px;
}

.footer-top {
    text-align: center;
    margin-bottom: 60px;
}

.footer-logo h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-bottom {
    display: flex;
    flex-direction: column; /* Desktop relies on column too now since width is full */
    align-items: center;
    gap: 30px;
    padding-top: 30px;
}

.footer-social-links {
    display: flex;
    gap: 15px; /* Tighter gap */
    justify-content: center;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px; /* Smaller icon footprint */
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    text-decoration: none;
    transition: 0.3s ease;
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--primary-color);
    color: #000;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.4); /* Dimmer, more discreet */
    font-size: 0.8rem;
    margin: 0;
}

.footer-menu-wrapper {
    margin: 0;
}

.footer-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.footer-menu li a {
    color: var(--text-color); /* Match reference solid white tint */
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-menu li a:hover {
    color: var(--primary-color);
}


/* Base Responsive */
@media (max-width: 1024px) {
    .section-title {
        font-size: 3.5rem;
    }
    .hero-title {
        font-size: 4rem; /* Scaled down for tablets */
        letter-spacing: -1px;
    }
    .hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    .hero-text-col {
        max-width: 100%;
    }
    .hero-virtual-decoration {
        display: none;
    }
    .hero-bot-img {
        max-width: 120%;
        width: 100%;
        margin-right: -10%;
        margin-top: 0;
    }
    .vr-main-img {
        width: 100%;
        margin-left: 0;
    }
    .vr-circle {
        width: 100px;
        top: -5%;
        left: 0;
    }
    .vr-grid {
        width: 110%;
    }
    .info-grid {
        gap: 30px;
    }
    .features-grid {
        padding: 40px;
    }
    .pricing-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: rgba(13, 17, 23, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: center;
        transition: left 0.3s ease;
    }
    .navbar-menu.active {
        left: 0;
    }
    .nav-links {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .menu-toggle {
        display: flex;
        order: -1; /* Move hamburger to the left */
    }
    
    .navbar-container {
        justify-content: space-between;
    }
    
    .navbar-logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    
    .hero-section {
        padding-top: 100px; /* Reduced from 120px to push it up further */
        text-align: center;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
    }
    
    .hero-text-col {
        margin: 0 auto;
    }

    .hero-title {
        font-size: 3.5rem;
        line-height: 1.1;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        margin: 0 auto 30px;
        max-width: 400px;
    }

    .hero-metrics {
        justify-content: center;
    }
    
    .hero-bot-img {
        max-width: 120%;
        width: 100%;
        margin-right: -10%;
        margin-top: 0;
    }
    
    .info-grid, .info-grid-reverse {
        grid-template-columns: 1fr;
    }
    .info-grid-reverse .info-image-col {
        order: -1;
    }
    .info-text-col {
        text-align: center;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-row {
        flex-direction: column;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .popular-plan {
        transform: scale(1);
    }
    
    .site-footer {
        padding: 40px 0 20px 0 !important; /* Extremely minimal outer padding */
    }
    .site-footer h2 {
        font-size: 2rem !important;
        margin-bottom: 5px !important;
    }
    .site-footer p.footer-subtitle {
        margin-bottom: 25px !important; /* Short gap before the line */
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px !important; /* Extremely tight spaces between all elements */
        text-align: center;
        justify-content: center;
        padding-top: 0;
    }
    .footer-divider {
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        width: 100%;
        margin: 0; 
    }
    .footer-social-links {
        justify-content: center; 
        margin: 10px 0 0px 0 !important; /* Tight under divider */
    }
    .footer-menu-wrapper {
        padding-top: 0 !important; 
    }
    .footer-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px !important; /* Dense menu row */
        margin-bottom: 0 !important;
    }
    .footer-menu li a {
        font-size: 0.9rem; 
    }
    .footer-copyright {
        margin: 5px 0 0 0 !important; /* Colado no menu, mas proporcional */
        padding: 0 !important;
    }
    .hide-on-mobile {
        display: none !important;
    }
    
    /* FAQ reduction to CTA gap */
    .faq-section {
        padding-bottom: 0 !important;
        margin-bottom: 10px !important; 
    }

    /* Pre-Footer CTA Tight Mobile Fixes */
    .pre-footer-cta {
        padding-top: 130px !important; /* Space for the raised robot head without creating a massive gap */
        padding-bottom: 40px !important; 
        margin-top: 20px !important; 
    }
    .cta-box {
        padding: 110px 20px 45px 20px !important; /* Huge top padding visually sinks the text away from the feet into the vertical center */
        width: 100% !important;
        max-width: 100% !important; 
        margin-left: auto;
        margin-right: auto;
        border-radius: 20px !important; 
        box-sizing: border-box !important; 
        /* overflow is deliberately NOT hidden, so robot can clip out the top */
    }
    .cta-robot {
        top: -145px !important; /* Dropped explicitly so the feet overlap the dark top border, just like the reference */
        left: 50% !important; 
        right: auto !important; 
        transform: translateX(-50%) !important; 
        width: 195px !important; 
        max-width: none !important; 
        z-index: 10;
    }
    .cta-title {
        font-size: 1.85rem !important; 
        white-space: nowrap !important; /* Official look */
        max-width: 100% !important; 
        margin: 0 auto 10px auto !important; 
        line-height: 1.1;
        position: relative;
        z-index: 2;
    }
    .cta-desc {
        font-size: 0.95rem !important;
        margin: 0 auto 25px auto !important;
        width: 95% !important; /* Dynamic width */
        max-width: 100% !important; /* Zoom protection */
        word-wrap: break-word !important; 
        overflow-wrap: break-word !important; /* Never bleed outside card */
        line-height: 1.4 !important;
        position: relative;
        z-index: 2;
    }
    .cta-btn {
        padding: 14px 40px !important; /* Slightly wider button */
        font-size: 1.05rem !important;
    }
    .cta-star {
        bottom: 30px !important; 
        right: 8% !important;
        width: 45px !important; 
    }

}

@media (max-width: 480px) {
    .hero-section {
        padding-top: 80px; 
        padding-bottom: 30px; /* Slashes the 100px desktop gap */
        min-height: auto; /* Releases the 100vh hold */
    }
    .section-badge {
        margin-bottom: 12px; 
    }
    .hero-title {
        font-size: 3rem; /* Adjusted down */
        letter-spacing: -1.5px;
        margin: 0 auto 15px auto; 
        line-height: 1.1;
        width: 100%; /* Take full space */
        padding: 0 10px; /* Slight edge buffer */
        white-space: pre-line; /* Essential to honor \n from config but collapse normal space */
    }
    .hero-subtitle {
        font-size: 0.95rem; 
        width: 85%; /* Using width percentage forces the exactly 2 lines look */
        margin: 0 auto 25px auto;
        line-height: 1.4;
    }
    .hero-cta {
        margin-bottom: 30px; /* Pushed button up, pushed metrics down slightly */
    }
    .hero-metrics {
        flex-direction: row; /* FORCE SIDE-BY-SIDE */
        justify-content: center;
        align-items: center;
        gap: 25px; /* Spacing between the 2 metrics */
        margin-top: 5px;
    }
    .metric-value {
        font-size: 1.25rem; /* Smaller number so they fit side by side */
    }
    .metric-label {
        font-size: 0.55rem;
    }
    .metric-icon {
        width: 25px;
        height: 25px;
    }
    .hero-bot-img {
        max-width: 135%;
        width: 115%; /* 15% larger */
        margin-left: -7.5%; /* Keeps it horizontally centered */
        margin-right: -7.5%;
        margin-top: 50px; /* Pushes it exactly halfway visually */
        margin-bottom: 0px; 
    }
    .section-title {
        font-size: 2rem;
    }
    .info-section .info-text-col {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
    }
    .info-section .section-title {
        font-size: 2.5rem; /* ~40px */
        line-height: 1.2;
        font-weight: 700;
        margin-bottom: 25px; /* Spacing between title and description */
    }
    .info-section .section-description p {
        font-size: 1rem; /* ~16px */
        line-height: 1.6;
        margin: 0 auto 35px auto; /* Centered with bottom spacing */
        max-width: 95%; /* Make it wider, less squeezed */
    }
    .info-section .info-cta {
        margin-top: 0; /* Clear previous forced margin */
    }

    /* AI Trabalha Section specific fixes */
    .ai-execution-section {
        padding-top: 40px; 
        padding-bottom: 20px;
    }
    .ai-execution-section .info-grid-reverse {
        gap: 20px; /* Strip the massive inherited 60px gap */
    }
    .ai-execution-section .image-wrapper.pt-4 {
        padding-top: 0; /* Clear desktop padding */
    }
    .ai-execution-section .vr-composition {
        transform: scale(0.75); /* Radically shrink the huge VR couple */
        transform-origin: center center;
        margin: -40px auto; /* Pull it much closer to borders to kill trailing whitespace */
    }
    .ai-execution-section .section-badge {
        margin-bottom: 10px;
    }
    .ai-execution-section .section-title {
        font-size: 2.2rem; /* Bring down the 4-line monstrosity to 2 neat lines */
        line-height: 1.1;
        margin-bottom: 15px;
        max-width: 320px;
        margin-left: auto;
        margin-right: auto;
    }
    .ai-execution-section .section-description p {
        font-size: 0.95rem; /* Compact paragraph */
        line-height: 1.5;
        margin-bottom: 25px;
        max-width: 95%;
        margin-left: auto;
        margin-right: auto;
    }
    .ai-execution-section .info-cta {
        margin-top: 0;
    }
}
