/* ==========================================================================
   NEXIOS IMOB - DESIGN SYSTEM & BRANDING
   Senior Front-end & UI/UX Design System
   ========================================================================== */

/* Google Fonts Import & Theme Settings */
:root {
    /* Fonts */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Color Palette (HSL Tailored for Rich Aesthetics) */
    --bg-primary: hsl(215, 35%, 4%);        /* Grafite ultra profundo (#070a0f) */
    --bg-secondary: hsl(216, 25%, 8%);      /* Slate cinza escuro (#0f131a) */
    --bg-tertiary: hsl(217, 24%, 12%);       /* Dark Slate (#181e28) */
    
    --accent-neon: hsl(92, 100%, 54%);       /* Lime Green / Verde Neon (#89ff14) */
    --accent-neon-glow: hsla(92, 100%, 54%, 0.4);
    --accent-neon-dim: hsla(92, 100%, 54%, 0.15);
    
    --accent-green: #22c55e;
    --accent-green-dim: rgba(34, 197, 94, 0.15);
    
    --text-primary: #f8fafc;                 /* Slate claro */
    --text-secondary: #94a3b8;               /* Muted slate */
    --text-muted: #64748b;                  /* Dark muted slate */

    /* Glassmorphism & Borders */
    --border-color: rgba(30, 41, 59, 0.5);   /* Slate 800 semi-transparente */
    --border-hover: rgba(137, 255, 20, 0.3);  /* Verde neon sutil */
    --glass-bg: rgba(15, 19, 26, 0.7);
    --glass-blur: blur(12px);
    --card-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Core Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

/* Tech Grid Background Design Pattern */
.tech-grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    background-image: 
        linear-gradient(rgba(137, 255, 20, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(137, 255, 20, 0.015) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center top;
}
.tech-grid-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 30%, transparent 20%, var(--bg-primary) 80%);
}

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

/* Typography Utility Styles */
.text-glow-neon {
    color: var(--accent-neon);
    text-shadow: 0 0 15px var(--accent-neon-glow);
}

.text-glow-neon.green {
    color: var(--accent-green);
    text-shadow: 0 0 15px rgba(34, 197, 94, 0.4);
}

.font-neon {
    font-family: var(--font-heading);
    color: var(--accent-neon);
    font-weight: 700;
}

/* Button UI Components */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-full {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent-neon);
    color: #000;
    box-shadow: 0 4px 20px var(--accent-neon-glow);
}
.btn-primary:hover {
    background-color: #a4ff47;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px var(--accent-neon-glow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--border-color);
}
.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: var(--text-secondary);
}

.btn-outline {
    background-color: transparent;
    color: var(--text-primary);
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px rgba(137, 255, 20, 0.1);
}
.btn-outline:hover {
    background-color: var(--accent-neon-dim);
    transform: translateY(-2px);
}

/* Badge System */
.tech-badge {
    display: inline-flex;
    align-items: center;
    background-color: rgba(137, 255, 20, 0.1);
    color: var(--accent-neon);
    border: 1px solid rgba(137, 255, 20, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.tech-badge.green {
    background-color: rgba(34, 197, 94, 0.1);
    color: var(--accent-green);
    border: 1px solid rgba(34, 197, 94, 0.2);
}

.pulse-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent-neon);
    border-radius: 50%;
    margin-right: 8px;
    animation: pulse 1.8s infinite;
}

.tech-badge.green .pulse-dot {
    background-color: var(--accent-green);
}

@keyframes pulse {
    0% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(137, 255, 20, 0.7);
    }
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 8px rgba(137, 255, 20, 0);
    }
    100% {
        transform: scale(0.85);
        box-shadow: 0 0 0 0 rgba(137, 255, 20, 0);
    }
}

/* ==========================================================================
   Header (Navegação Glassmorphic)
   ========================================================================== */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(7, 10, 15, 0.85);
    backdrop-filter: var(--glass-blur);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition-smooth);
}

.header-container {
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-brand-group {
    display: flex;
    align-items: center;
    gap: 3rem;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-img {
    height: 105px;
    width: auto;
    object-fit: contain;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: 0.5rem 0;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-neon);
    transition: var(--transition-smooth);
}
.nav-link:hover {
    color: var(--text-primary);
}
.nav-link:hover::after {
    width: 100%;
}

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

.nav-cta-sec {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.nav-cta {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
}

/* Menu Hamburguer Mobile */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.mobile-menu-toggle .bar {
    width: 100%;
    height: 2px;
    background-color: var(--text-primary);
    border-radius: 2px;
    transition: var(--transition-smooth);
}

/* Active Hamburger menu state */
.mobile-menu-toggle.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}
.mobile-menu-toggle.active .bar:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Nav Modal Panel */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: var(--bg-primary);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.5rem;
    width: 80%;
}

.mobile-link {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-secondary);
}
.mobile-link:hover {
    color: var(--accent-neon);
}

.mobile-cta {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
}

/* ==========================================================================
   Hero Section Layout & Mockup
   ========================================================================== */
.hero-section {
    padding-top: 215px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-title {
    font-size: clamp(2.5rem, 4.5vw, 3.8rem);
    line-height: 1.15;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    max-width: 540px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent-neon);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-lbl {
    font-size: 0.8rem;
    color: var(--text-secondary);
    max-width: 140px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.stat-border {
    width: 1px;
    height: 40px;
    background-color: var(--border-color);
}

/* Hero Visual (Dashboard renderizado via CSS) */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.mockup-container {
    width: 100%;
    max-width: 480px;
    position: relative;
}

.mockup-glow {
    position: absolute;
    width: 120%;
    height: 120%;
    top: -10%;
    left: -10%;
    background: radial-gradient(circle, var(--accent-neon-dim) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
}

.mockup-frame {
    position: relative;
    z-index: 2;
    background-color: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: var(--transition-smooth);
}
.mockup-frame:hover {
    border-color: var(--border-hover);
}

.mockup-header {
    background-color: rgba(0, 0, 0, 0.3);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.mockup-dots {
    display: flex;
    gap: 6px;
    margin-right: 1.5rem;
}

.mockup-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}
.mockup-dots span:nth-child(1) { background-color: #ef4444; }
.mockup-dots span:nth-child(2) { background-color: #eab308; }
.mockup-dots span:nth-child(3) { background-color: #22c55e; }

.mockup-title {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mockup-status-badge {
    margin-left: auto;
    font-size: 0.7rem;
    background-color: rgba(34, 197, 94, 0.15);
    color: #22c55e;
    border: 1px solid rgba(34, 197, 94, 0.3);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mockup-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    position: relative;
}

/* Glassmorphism Mockup Cards */
.mockup-card {
    background-color: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.2rem;
    position: relative;
    transition: var(--transition-smooth);
}
.mockup-card:hover {
    background-color: rgba(255, 255, 255, 0.04);
}

.card-tag {
    position: absolute;
    top: 1rem;
    right: 1.2rem;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.card-tag.accent {
    color: var(--accent-neon);
}

.card-name {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
}

.card-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.detail-badge {
    background-color: var(--bg-tertiary);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
}

.detail-badge.price {
    background-color: rgba(137, 255, 20, 0.08);
    color: var(--accent-neon);
    border-color: rgba(137, 255, 20, 0.2);
    font-weight: 600;
}

/* Match Rate connection line rendering */
.mockup-connection {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 35px;
    margin: -0.4rem 0;
}

.connection-line {
    position: absolute;
    width: 2px;
    height: 100%;
    background-image: linear-gradient(to bottom, var(--border-color), var(--accent-neon), var(--border-color));
}

.ai-node {
    position: relative;
    z-index: 3;
    width: 32px;
    height: 32px;
    background-color: var(--bg-tertiary);
    border: 1px solid var(--accent-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-neon);
    box-shadow: 0 0 15px var(--accent-neon-glow);
}

.ai-brain-icon {
    width: 16px;
    height: 16px;
}

.ai-glow-pulse {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid var(--accent-neon);
    animation: sonarPulse 2s infinite ease-out;
}

@keyframes sonarPulse {
    0% {
        transform: scale(1);
        opacity: 0.8;
    }
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

/* Floating Match Badge */
.match-percentage-badge {
    position: absolute;
    bottom: 3.5rem;
    right: -1rem;
    z-index: 10;
    background-color: #070a0f;
    border: 2px solid var(--accent-neon);
    padding: 0.8rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 90px;
    box-shadow: 0 0 25px var(--accent-neon-glow);
    animation: float 4s ease-in-out infinite;
}

.badge-glow-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-neon-dim) 0%, transparent 80%);
    z-index: -1;
}

.match-percentage-badge .pct-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-neon);
    line-height: 1;
}

.match-percentage-badge .pct-txt {
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--text-secondary);
    letter-spacing: 0.05em;
    margin-top: 0.2rem;
}

@keyframes float {
    0% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(1deg); }
    100% { transform: translateY(0px) rotate(0deg); }
}

/* ==========================================================================
   Features Section (4 Pilares)
   ========================================================================== */
.features-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

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

.section-tag {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--accent-neon);
    text-transform: uppercase;
}

.section-tag.green {
    color: var(--accent-green);
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    margin-top: 0.8rem;
    margin-bottom: 1.2rem;
    font-weight: 800;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
}

/* Grid layout for features cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2.2rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    transition: var(--transition-slow);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(137, 255, 20, 0.03), transparent 50%);
    z-index: 1;
}

.card-glow {
    position: absolute;
    top: -100px;
    left: -100px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, var(--accent-neon-dim) 0%, transparent 60%);
    z-index: 0;
    opacity: 0;
    transition: var(--transition-smooth);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-neon);
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}

.feature-icon {
    width: 22px;
    height: 22px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.feature-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    position: relative;
    z-index: 2;
}

.card-tech-detail {
    font-size: 0.65rem;
    font-family: var(--font-heading);
    color: var(--text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    display: inline-block;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border-color);
    width: 100%;
    padding-top: 0.8rem;
}

/* Card Hover States */
.feature-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.feature-card:hover .card-glow {
    opacity: 1;
}

.feature-card:hover .feature-icon-wrapper {
    background-color: var(--accent-neon-dim);
    border-color: var(--accent-neon);
    color: var(--accent-neon);
    box-shadow: 0 0 15px var(--accent-neon-glow);
}

/* ==========================================================================
   Interactive Simulator Section
   ========================================================================== */
.simulator-section {
    padding: 100px 0;
    position: relative;
}

.simulator-widget {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
}
.simulator-widget:hover {
    border-color: rgba(30, 41, 59, 0.8);
}

.simulator-glow {
    position: absolute;
    width: 50%;
    height: 100%;
    top: 0;
    right: 0;
    background: radial-gradient(circle at 60% 40%, rgba(137, 255, 20, 0.04), transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.simulator-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    z-index: 2;
    position: relative;
}

.sim-panel {
    padding: 3rem;
}

.sim-controls {
    border-right: 1px solid var(--border-color);
}

.sim-panel-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.sim-panel-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

/* Selectable Lead List */
.lead-select-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.lead-option {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.lead-avatar-placeholder {
    width: 40px;
    height: 40px;
    background-color: var(--bg-tertiary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-neon);
    border: 1px solid var(--border-color);
    font-size: 0.85rem;
}

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

.lead-name {
    font-size: 0.95rem;
    font-weight: 600;
}

.lead-desc {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.lead-option:hover {
    background-color: rgba(255,255,255,0.02);
    border-color: rgba(255, 255, 255, 0.1);
}

.lead-option.active {
    background-color: rgba(137, 255, 20, 0.04);
    border-color: var(--accent-neon);
}
.lead-option.active .lead-avatar-placeholder {
    background-color: var(--accent-neon-dim);
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px var(--accent-neon-glow);
}

/* Detail Box Preview */
.selected-lead-details {
    background-color: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 1.2rem;
    margin-bottom: 2rem;
}

.details-subtitle {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.details-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.details-tags .tag {
    background-color: var(--bg-tertiary);
    border: 1px solid rgba(255,255,255,0.03);
    color: var(--text-secondary);
    font-size: 0.75rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
}

/* Simulator output screen (Terminal / Results) */
.sim-output {
    background-color: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Idle state styling */
.output-state-idle {
    text-align: center;
    max-width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.radar-box {
    width: 90px;
    height: 90px;
    position: relative;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.radar-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border-color);
    border-radius: 50%;
}

.radar-circle.circle1 {
    animation: radarScan 4s infinite linear;
}
.radar-circle.circle2 {
    width: 70%;
    height: 70%;
    animation: radarScan 4s infinite reverse linear;
}
.radar-circle.circle3 {
    width: 40%;
    height: 40%;
}

.radar-brain {
    width: 32px;
    height: 32px;
    color: var(--accent-neon);
    position: relative;
    z-index: 2;
}

@keyframes radarScan {
    0% { transform: rotate(0deg); border-color: var(--border-color); }
    50% { border-color: var(--accent-neon); }
    100% { transform: rotate(360deg); border-color: var(--border-color); }
}

.output-title {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.output-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Processing scanner active animation styling */
.output-state-processing {
    width: 100%;
    max-width: 400px;
    background-color: #030712;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    font-family: monospace;
    position: relative;
    box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.scanner-container {
    height: 60px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    background-color: rgba(255,255,255,0.01);
}

.scan-bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 4px;
    background-color: var(--accent-neon);
    box-shadow: 0 0 15px var(--accent-neon);
    animation: scanAnim 1.5s infinite ease-in-out;
}

@keyframes scanAnim {
    0% { top: 0%; }
    50% { top: 95%; }
    100% { top: 0%; }
}

.searching-visual-lines {
    display: flex;
    justify-content: space-around;
    height: 100%;
    align-items: center;
    padding: 0 1rem;
}

.s-line {
    width: 4px;
    height: 40%;
    background-color: var(--accent-neon-glow);
    border-radius: 20px;
    animation: heightBar 1s infinite ease-in-out;
}
.s-line:nth-child(1) { animation-delay: 0.1s; }
.s-line:nth-child(2) { animation-delay: 0.4s; }
.s-line:nth-child(3) { animation-delay: 0.2s; }
.s-line:nth-child(4) { animation-delay: 0.6s; }

@keyframes heightBar {
    0%, 100% { height: 20%; background-color: var(--accent-neon-dim); }
    50% { height: 75%; background-color: var(--accent-neon); }
}

.loading-console {
    font-size: 0.75rem;
    color: var(--text-secondary);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.text-neon {
    color: var(--accent-neon);
}

/* Spinner element */
.spinner {
    display: inline-block;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 50%;
    border-top-color: #000;
    animation: spin 1s ease-in-out infinite;
    margin-left: 8px;
}

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

.hidden {
    display: none !important;
}

/* Result visualization styling */
.output-state-result {
    width: 100%;
    animation: fadeIn 0.4s forwards;
}

@keyframes fadeIn {
    from { opacity: 0; transform: scale(0.97); }
    to { opacity: 1; transform: scale(1); }
}

.result-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
}

.result-badge {
    background-color: var(--accent-neon-dim);
    color: var(--accent-neon);
    border: 1px solid var(--accent-neon);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.05em;
    box-shadow: 0 0 10px var(--accent-neon-glow);
}

.score-stars {
    color: var(--accent-neon);
    letter-spacing: 2px;
    font-size: 0.95rem;
}

.matched-property-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.8rem;
    box-shadow: var(--card-shadow);
}

.property-img-placeholder {
    height: 180px;
    background-color: var(--bg-tertiary);
    background-image: 
        linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.6)),
        repeating-linear-gradient(45deg, rgba(255,255,255,0.01) 0px, rgba(255,255,255,0.01) 2px, transparent 2px, transparent 10px);
    position: relative;
    display: flex;
    align-items: flex-end;
    padding: 1.2rem;
}

.prop-overlay-info {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
    z-index: 2;
}

.prop-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--accent-neon);
    text-shadow: 0 2px 4px rgba(0,0,0,0.8);
}

.prop-loc {
    font-size: 0.75rem;
    color: #fff;
    background-color: rgba(0,0,0,0.6);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255,255,255,0.1);
}

.property-info-body {
    padding: 1.5rem;
}

.property-title {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.property-description {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.2rem;
    line-height: 1.5;
}

.match-reasons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    border-top: 1px solid var(--border-color);
    padding-top: 1.2rem;
}

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.check-icon {
    width: 14px;
    height: 14px;
    color: var(--accent-neon);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.reason-item span {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* ==========================================================================
   Sustentabilidade (ODS 11) Section
   ========================================================================== */
.sustainability-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.sustainability-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
}

.sust-content {
    display: flex;
    flex-direction: column;
}

.sust-content .section-title {
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
}

.sust-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    line-height: 1.6;
}

.sust-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sust-item {
    display: flex;
    gap: 1.2rem;
}

.sust-icon-box {
    width: 48px;
    height: 48px;
    background-color: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.2);
    color: var(--accent-green);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sust-icon {
    width: 22px;
    height: 22px;
}

.sust-text h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}

.sust-text p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* Sust stats visualization */
.sust-visual {
    display: flex;
    justify-content: center;
}

.sust-stats-card {
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    width: 100%;
    max-width: 420px;
    box-shadow: var(--card-shadow);
    position: relative;
    overflow: hidden;
}

.sust-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom right, rgba(34, 197, 94, 0.03), transparent 60%);
    z-index: 1;
}

/* Radial SVG indicator */
.card-radial-meter {
    display: flex;
    justify-content: center;
    margin-bottom: 2rem;
}

.radial-progress-wrapper {
    position: relative;
    width: 160px;
    height: 160px;
}

.radial-svg {
    width: 160px;
    height: 160px;
    transform: rotate(-90deg);
}

.radial-bg {
    fill: none;
    stroke: var(--bg-tertiary);
    stroke-width: 8;
}

.radial-bar {
    fill: none;
    stroke: var(--accent-green);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 251.2;
    stroke-dashoffset: 50.24; /* 80% progress (251.2 * 0.2) */
    filter: drop-shadow(0px 0px 4px rgba(34, 197, 94, 0.6));
}

.radial-inner-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    display: flex;
    flex-direction: column;
}

.radial-inner-value .val-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.radial-inner-value .val-lbl {
    font-size: 0.6rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.3rem;
    max-width: 80px;
}

.sust-details-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.sust-stat-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-color);
}
.sust-stat-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sust-stat-row .row-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.sust-stat-row .row-val {
    font-size: 0.95rem;
    color: var(--accent-green);
    text-shadow: 0 0 10px rgba(34, 197, 94, 0.2);
}

/* ==========================================================================
   Pricing Section Design
   ========================================================================== */
.pricing-section {
    padding: 100px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.price-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    transition: var(--transition-smooth);
}

.price-card:hover {
    border-color: rgba(255,255,255,0.1);
}

.price-card.featured {
    border-color: var(--accent-neon);
    background-color: var(--bg-tertiary);
    box-shadow: 0 8px 32px rgba(137, 255, 20, 0.05);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-neon);
    color: #000;
    font-family: var(--font-heading);
    font-size: 0.65rem;
    font-weight: 800;
    padding: 0.35rem 1rem;
    border-radius: 50px;
    letter-spacing: 0.08em;
}

.price-header {
    margin-bottom: 2rem;
}

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

.plan-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.plan-price {
    display: flex;
    align-items: baseline;
}

.plan-price .currency {
    font-size: 1.2rem;
    font-weight: 600;
    margin-right: 0.2rem;
}

.plan-price .price-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    color: var(--text-primary);
}

.price-card.featured .plan-price .price-val {
    color: var(--accent-neon);
    text-shadow: 0 0 15px var(--accent-neon-glow);
}

.plan-price .period {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-left: 0.3rem;
}

.plan-promo-tag {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.06);
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    border: 1px solid var(--border-color);
}

.plan-promo-tag.highlight {
    background-color: rgba(137, 255, 20, 0.1);
    color: var(--accent-neon);
    border-color: rgba(137, 255, 20, 0.3);
}

.price-original {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-top: 0.4rem;
}

.price-features {
    margin-bottom: 2.5rem;
}

.price-features ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.price-features li {
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    padding-left: 1.5rem;
}
.price-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-neon);
    font-weight: bold;
}

.price-card.featured .price-features li::before {
    color: var(--accent-neon);
}

.price-footer {
    margin-top: auto;
}

/* ==========================================================================
   Call to Action (CTA) Section & B2B Capturing Form
   ========================================================================== */
.cta-form-section {
    padding: 100px 0;
    position: relative;
    border-top: 1px solid var(--border-color);
}

.cta-form-section::before {
    content: '';
    position: absolute;
    width: 60%;
    height: 80%;
    bottom: 0;
    left: 0;
    background: radial-gradient(circle, var(--accent-neon-dim) 0%, transparent 60%);
    z-index: 1;
    pointer-events: none;
    opacity: 0.3;
}

.cta-container {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 4.5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cta-text-wrapper {
    display: flex;
    flex-direction: column;
}

.cta-text-wrapper .section-title {
    margin-top: 0.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-text-wrapper .section-desc {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 3rem;
    max-width: 520px;
}

.trust-indicators {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.trust-icon-svg {
    width: 16px;
    height: 16px;
    color: var(--accent-neon);
    flex-shrink: 0;
}

.trust-item span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Form Container Card - Inspired by high-fidelity ref image */
.form-card-wrapper {
    position: relative;
}

.form-glow {
    position: absolute;
    width: 110%;
    height: 110%;
    top: -5%;
    left: -5%;
    background: radial-gradient(circle, rgba(137, 255, 20, 0.05) 0%, transparent 70%);
    z-index: 1;
    pointer-events: none;
}

.form-card {
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--card-shadow);
    position: relative;
    z-index: 2;
    transition: var(--transition-smooth);
}
.form-card:hover {
    border-color: rgba(30, 41, 59, 0.8);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1.5rem;
}

.form-badge {
    display: inline-block;
    font-size: 0.65rem;
    background-color: rgba(255,255,255,0.05);
    color: var(--text-secondary);
    border: 1px solid var(--border-color);
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.08em;
    margin-bottom: 0.8rem;
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 0.4rem;
}

.form-subtitle {
    font-size: 0.8rem;
    color: var(--text-secondary);
}

/* Capture Form Fields */
.main-capture-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.form-group-title {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--accent-neon);
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    margin-bottom: 0.2rem;
}

.main-capture-form .form-group-title:first-child {
    margin-top: 0;
}

.form-field {
    width: 100%;
}

.input-icon-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}

.input-icon {
    position: absolute;
    left: 1.2rem;
    width: 18px;
    height: 18px;
    color: var(--text-muted);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.input-icon-wrapper input,
.input-icon-wrapper textarea {
    width: 100%;
    background-color: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.9rem 1rem 0.9rem 3rem;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.9rem;
    outline: none;
    transition: var(--transition-smooth);
}

.input-icon-wrapper textarea {
    resize: none;
    padding-top: 0.8rem;
}

.input-icon-wrapper input:focus,
.input-icon-wrapper textarea:focus {
    border-color: var(--accent-neon);
    box-shadow: 0 0 10px var(--accent-neon-dim);
}

.input-icon-wrapper input:focus + .input-icon,
.input-icon-wrapper textarea:focus + .input-icon {
    color: var(--accent-neon);
}

.btn-submit-lead {
    margin-top: 1rem;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    padding: 1rem;
}

.form-footer-compliance {
    text-align: center;
    font-size: 0.65rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

/* ==========================================================================
   Feedback Modal Component (Envio com Sucesso)
   ========================================================================== */
.feedback-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: rgba(7, 10, 15, 0.9);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
}

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

.feedback-modal {
    background-color: var(--bg-secondary);
    border: 1px solid var(--accent-neon);
    border-radius: 16px;
    padding: 3rem;
    max-width: 440px;
    width: 90%;
    text-align: center;
    box-shadow: 0 0 30px var(--accent-neon-glow);
    transform: translateY(20px);
    transition: var(--transition-smooth);
}

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

.feedback-icon-glow {
    width: 64px;
    height: 64px;
    background-color: var(--accent-neon-dim);
    border: 1px solid var(--accent-neon);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-neon);
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px var(--accent-neon-glow);
}

.modal-success-icon {
    width: 28px;
    height: 28px;
}

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.modal-message {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.5;
}

/* ==========================================================================
   Footer Style
   ========================================================================== */
.main-footer {
    background-color: #030712;
    border-top: 1px solid var(--border-color);
    padding: 80px 0 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 60px;
}

.footer-brand {
    max-width: 320px;
}

.footer-logo {
    height: 120px;
    margin-bottom: 1.2rem;
}

.footer-brand-desc {
    font-size: 0.85rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

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

.footer-link-col h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-link-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-link-col a {
    font-size: 0.85rem;
    color: var(--text-secondary);
}
.footer-link-col a:hover {
    color: var(--accent-neon);
    padding-left: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 2rem 0;
    background-color: rgba(0, 0, 0, 0.2);
}

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

.copyright {
    font-size: 0.8rem;
    color: var(--text-muted);
}
.copyright a {
    color: var(--text-secondary);
}
.copyright a:hover {
    color: var(--accent-neon);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 18px;
    height: 18px;
    color: var(--text-muted);
}
.social-icon:hover {
    color: var(--accent-neon);
}

/* ==========================================================================
   Scroll-Triggered Reveal Animations
   ========================================================================== */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.scroll-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Adicionando delays sequenciais para o grid de features */
.features-grid .feature-card:nth-child(1) { transition-delay: 0.1s; }
.features-grid .feature-card:nth-child(2) { transition-delay: 0.2s; }
.features-grid .feature-card:nth-child(3) { transition-delay: 0.3s; }
.features-grid .feature-card:nth-child(4) { transition-delay: 0.4s; }

/* Delay na dobra principal (hero) */
.hero-content .scroll-reveal:nth-child(1) { transition-delay: 0.1s; }
.hero-content .scroll-reveal:nth-child(2) { transition-delay: 0.2s; }
.hero-content .scroll-reveal:nth-child(3) { transition-delay: 0.3s; }
.hero-content .scroll-reveal:nth-child(4) { transition-delay: 0.4s; }
.hero-visual.scroll-reveal { transition-delay: 0.4s; }

/* Custom Scrollbar for Premium Feel */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 10px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--accent-neon);
}

/* ==========================================================================
   Responsiveness Media Queries (Mobile First Layout)
   ========================================================================== */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .simulator-grid {
        grid-template-columns: 1fr;
    }
    
    .sim-controls {
        border-right: none;
        border-bottom: 1px solid var(--border-color);
    }
    
    .sustainability-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .cta-container {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-section {
        padding-top: 185px;
        padding-bottom: 60px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .match-percentage-badge {
        right: 1rem;
        bottom: 1.5rem;
    }
    
    .sim-panel {
        padding: 2rem 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .form-card {
        padding: 1.8rem 1.2rem;
    }
    
    .footer-links-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-bottom-container {
        flex-direction: column;
        gap: 1.2rem;
        text-align: center;
    }
}
