/* ==========================================================================
   1. VARIABLES & RESET
   ========================================================================== */
:root {
    /* Colors */
    --primary-blue: #1E40AF;
    --secondary-green: #10B981;
    --accent-amber: #F59E0B;

    --dark: #111827;
    --dark-secondary: #374151;
    --light-bg: #F9FAFB;
    --white: #FFFFFF;

    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #1E40AF 0%, #3B82F6 100%);
    --gradient-cta: linear-gradient(135deg, #10B981 0%, #059669 100%);
    --gradient-amber: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.1);

    /* Typography */
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;
}

[data-theme="dark"] {
    --primary-blue: #3B82F6;
    --secondary-green: #34D399;
    --accent-amber: #FBBF24;
    --dark: #F9FAFB;
    --dark-secondary: #D1D5DB;
    --light-bg: #111827;
    --white: #1F2937;
    --glass-bg: rgba(31, 41, 55, 0.6);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.4);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light-bg);
    line-height: 1.6;
    transition: background-color 0.3s ease, color 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark);
}

p {
    margin-bottom: 1rem;
    color: var(--dark-secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* ==========================================================================
     2. UTILITIES & COMPONENTS
     ========================================================================== */

/* Typography Sizes */
.headline-xl {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 700;
}

.headline-lg {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
}

.headline-md {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

.body-xl {
    font-size: 1.25rem;
}

.body-lg {
    font-size: 1.125rem;
}

.body-sm {
    font-size: 0.875rem;
}

.stat-number {
    font-family: var(--font-mono);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary-green);
}

.highlight-green {
    color: var(--secondary-green);
}

.highlight-amber {
    color: var(--accent-amber);
}

/* Buttons */
.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
    background: var(--gradient-cta);
    color: white;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--primary-blue);
    color: var(--primary-blue);
}

[data-theme="dark"] .btn-secondary {
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: white;
}

.btn-lg {
    padding: 1rem 3rem;
    font-size: 1.1rem;
}

.w-100 {
    width: 100%;
}

/* Glass Card */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s;
}

.glass-card:hover {
    transform: translateY(-5px);
}

/* Scarcity Badge */
.scarcity-box {
    display: inline-block;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--accent-amber);
    color: var(--accent-amber);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    margin-bottom: 2rem;
    /* Added margin to fix "glue" issue */
}

/* Scroll Progress */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--secondary-green);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s;
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--primary-blue);
    color: white;
    width: 50px;
    height: 50px;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: all;
}

/* ==========================================================================
     3. NAVBAR
     ========================================================================== */
.navbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1200px;
    padding: 0.8rem 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    z-index: 1000;
    border-radius: 50px;
}

/* Fix for navbar jumping on hover */
.navbar.glass-card:hover {
    transform: translateX(-50%);
    /* Keeps centering, overrides the generic translateY bump */
}

.nav-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-weight: 800;
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    font-size: 0.95rem;
}

.nav-links a:hover {
    color: var(--primary-blue);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.theme-toggle {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
}

/* Mobile Nav */
.curr-hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.curr-hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .curr-hamburger {
        display: flex;
        margin-left: 1rem;
    }

    .navbar {
        padding: 0.8rem 1rem;
        justify-content: space-between;
    }

    .logo {
        font-size: 1.2rem;
    }

    /* Hide CTA text on mobile to prevent overlap */
    .mobile-hide-text span {
        display: none;
    }

    .mobile-hide-text {
        padding: 0.6rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }
}

/* ==========================================================================
     4. HERO SECTION
     ========================================================================== */
.hero-section {
    padding-top: 140px;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: rgba(30, 64, 175, 0.1);
    color: var(--primary-blue);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.hero-benefits {
    margin: 1.5rem 0;
    display: flex;
    flex-wrap: wrap;
    /* Changed to row/wrap for better look */
    gap: 1rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(16, 185, 129, 0.1);
    /* Subtle pill background */
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    color: var(--dark-secondary);
}

.checkmark {
    font-size: 1rem;
    /* Smaller icon */
    color: var(--secondary-green);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
}

.hero-image-container {
    width: 100%;
    aspect-ratio: 1/1;
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    backface-visibility: hidden;
    /* Fix for flicker */
    transform: translateZ(0);
    /* Fix for flicker */
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.hero-image-container:hover .hero-main-img {
    transform: scale(1.02);
    /* Reduced from 1.05 to avoid disappearance */
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    animation: float 6s ease-in-out infinite;
    z-index: 20;
    /* Ensure above image */
    min-width: 120px;
    will-change: transform;
    pointer-events: none;
    /* Prevent blocking interactions */
}

.stat-card {
    top: 10%;
    left: -20px;
}

.roi-card {
    bottom: 10%;
    right: -20px;
    animation-delay: 2s;
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 100px;
        text-align: center;
        /* Center align everything */
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-benefits {
        justify-content: center;
        /* Center pills */
    }

    .hero-cta {
        justify-content: center;
        /* Center buttons */
    }

    .headline-xl {
        font-size: 2.5rem;
        /* Smaller headline for mobile */
    }

    .hero-image-container {
        max-width: 350px;
        margin: 0 auto;
        /* Center image */
    }

    .roi-card {
        right: -10px;
        bottom: 0;
        /* Lower it significantly */
    }

    .stat-card {
        top: 0;
        /* Raise it */
        left: -10px;
    }

    .floating-card {
        transform: scale(0.85);
        /* Shrink cards */
        padding: 0.8rem;
        min-width: auto;
        /* Allow sizing to fit content */
        z-index: 25;
        /* Ensure visibility */
    }

    /* Trust Badges - Stack Vertically */
    .trust-badges {
        flex-direction: column;
        gap: 0.8rem;
        margin-top: 2rem;
        align-items: center;
        /* Center stack */
    }

    .badge-separator {
        display: none;
        /* Hide pipes */
    }
}

.stat-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6B7280;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }

    /* Reduced amplitude */
    100% {
        transform: translateY(0px);
    }
}

.trust-badges {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    opacity: 0.8;
}

/* ==========================================================================
     5. PROBLEM SECTION (CALCULATOR)
     ========================================================================== */
.section-problema {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    color: var(--primary-blue);
    font-weight: 700;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.problem-card {
    padding: 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    /* transition handled in glass-card */
}

.problem-card:hover {
    border-color: var(--secondary-green);
}

/* Hide native checkbox */
.checkbox-styled {
    display: none;
}

.problem-card label {
    display: block;
    padding: 2rem;
    cursor: pointer;
}

.checkbox-styled:checked+label {
    background: rgba(16, 185, 129, 0.05);
}

.checkbox-styled:checked+label .icon-container {
    background: var(--secondary-green);
    color: white;
}

.icon-container {
    width: 50px;
    height: 50px;
    background: #e5e7eb;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    transition: 0.3s;
    color: var(--primary-blue);
}

.time-saved {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 1rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
    width: fit-content;
}

.savings-calculator {
    display: flex;
    justify-content: center;
}

.calculator-result {
    text-align: center;
    max-width: 600px;
    border: 2px solid var(--secondary-green);
}

/* ==========================================================================
     6. SOLUTION / PILLARS
     ========================================================================== */
.section-solucao {
    padding: 6rem 0;
    background: var(--white);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pillar-card {
    position: relative;
}

.pillar-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary-blue);
}

.check-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.check-list li i {
    color: var(--secondary-green);
    font-weight: bold;
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-amber);
    color: white;
    padding: 4px 12px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 0.8rem;
}

/* ==========================================================================
     7. TIMELINE & CASES
     ========================================================================== */
.section-processo {
    padding: 6rem 0;
}

.timeline-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

@media (min-width: 769px) {
    .timeline-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .timeline-step {
        flex: 1;
    }
}

.step-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 3rem;
    opacity: 0.2;
    font-weight: 800;
}

.step-icon {
    font-size: 1.5rem;
    color: var(--primary-blue);
    background: rgba(30, 64, 175, 0.1);
    padding: 10px;
    border-radius: 50%;
    display: flex;
}

.step-duration {
    font-weight: 600;
    color: var(--secondary-green);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Case Studies */
.section-casos-uso {
    padding: 6rem 0;
}

.casos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.caso-featured {
    grid-column: span 1;
    border-left: 4px solid var(--secondary-green);
}

@media(min-width: 900px) {
    .caso-featured {
        grid-column: span 2;
    }
}

.caso-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    opacity: 0.8;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.caso-icon {
    font-size: 1.2rem;
    color: var(--primary-blue);
}

.caso-stats {
    display: flex;
    gap: 2rem;
    margin-top: 1.5rem;
}

.caso-stats-mini {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--dark-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
     8. ANTI-VENDA & PRICING
     ========================================================================== */
.section-anti-venda {
    padding: 6rem 0;
    background: var(--dark);
    color: var(--white);
}

[data-theme="dark"] .section-anti-venda {
    background: #000;
}

.section-anti-venda .headline-lg,
.section-anti-venda p {
    color: white;
}

.anti-venda-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.col-nao ul li,
.col-sim ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* CSS pseudo-elements removed for anti-venda, using HTML icons now */

@media(max-width: 768px) {
    .anti-venda-grid {
        grid-template-columns: 1fr;
    }
}

/* Pricing */
.section-investimento {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark);
    margin: 1rem 0 0.5rem;
}

.setup {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.pricing-list li {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-list li i {
    color: var(--secondary-green);
    font-weight: bold;
}

/* ==========================================================================
     9. FAQ & FOOTER
     ========================================================================== */
.section-faq {
    padding: 6rem 0;
    background: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 1.5rem 0;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    color: var(--dark);
}

.faq-answer {
    display: none;
    padding-bottom: 1.5rem;
    font-size: 1rem;
    opacity: 0.9;
}

.faq-item.active .faq-answer {
    display: block;
}

.section-cta-final {
    padding: 6rem 0;
    background: var(--gradient-hero);
    color: white;
}

.section-cta-final h2,
.section-cta-final p {
    color: white;
}

.cta-form {
    max-width: 500px;
    margin: 0 auto;
    background: white;
    color: var(--dark);
    text-align: left;
}

.form-grid {
    display: grid;
    gap: 1rem;
    margin-top: 1.5rem;
}

input,
select {
    width: 100%;
    padding: 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-family: inherit;
}

.footer {
    background: var(--dark);
    color: white;
    padding: 4rem 1rem 2rem;
}

.footer p,
.footer a {
    color: #9CA3AF;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    font-size: 0.9rem;
}

/* About Image Styling */
.sobre-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.sobre-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    aspect-ratio: 3/4;
}

.sobre-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.badge-exp {
    position: absolute;
    bottom: 20px;
    right: -20px;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
    z-index: 5;
}

.badge-exp strong {
    font-size: 2rem;
    color: var(--primary-blue);
    line-height: 1;
}

.badge-exp span {
    font-size: 0.8rem;
    color: #6B7280;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-image-container {
        width: 80%;
        margin: 0 auto;
    }

    .nav-links {
        display: none;
    }

    .sobre-grid {
        grid-template-columns: 1fr;
    }

    .sobre-img {
        width: 80%;
        margin: 0 auto 2rem;
    }
}

/* TAGLINE */
.tagline-small {
    font-size: 0.6em;
    font-weight: 400;
    color: #4b5563;
    letter-spacing: 0.5px;
    margin-left: 5px;
}

/* STICKY CTA */
.mobile-sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 0.8rem 1rem;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    display: none;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(100%);
    animation: slideUp 0.5s forwards 1s;
}

.sticky-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.sticky-text {
    display: flex;
    flex-direction: column;
}

.sticky-title {
    font-weight: 700;
    font-size: 0.9rem;
    color: #1E40AF;
}

.sticky-sub {
    font-size: 0.75rem;
    color: #4b5563;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .mobile-sticky-cta {
        display: block;
    }

    body {
        padding-bottom: 80px;
    }
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 90px !important;
        /* Raise above sticky CTA */
    }
}

/* Global Overflow Fix */
html,
body {
    overflow-x: hidden;
    position: relative;
}

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(255, 255, 255, 0.98);
        padding: 2rem;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        z-index: 1000;
        backdrop-filter: blur(10px);
    }
}

/* EXPANDABLE CARDS (Use Cases) */
.caso-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

.caso-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.case-expanded-content {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 1rem;
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.case-details-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    text-align: left;
}

.case-details-list li {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.caso-stats-visible {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--primary-blue);
}

/* LEAD MAGNET SECTION */
.lead-magnet-section {
    position: relative;
    z-index: 2;
}

.lead-magnet-box {
    border: 1px dashed var(--primary-blue);
    padding: 2rem;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.magnet-form-inline {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 800px;
    margin: 0 auto;
}

.magnet-form-inline input,
.magnet-form-inline select {
    padding: 0.8rem 1rem;
    border: 1px solid #ccc;
    border-radius: 8px;
    flex: 1;
    min-width: 200px;
}

/* FINAL CTA 3-OPTION GRID */
.final-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.option-card {
    position: relative;
    padding: 2rem;
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.option-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-blue);
}

.featured-option {
    border: 2px solid var(--primary-blue);
    background: linear-gradient(to bottom, #ffffff, #f0f7ff);
    transform: scale(1.05);
    z-index: 2;
}

.option-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: bold;
    color: white;
}

.bg-green {
    background-color: var(--accent-green);
}

.bg-blue {
    background-color: var(--primary-blue);
}

.option-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* FOOTER UPDATES */
.social-icon img {
    transition: transform 0.2s;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.footer-brand {
    margin-bottom: 1rem;
}

/* PRICING LIST CHECKS */
.pricing-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 768px) {
    .magnet-form-inline {
        flex-direction: column;
    }

    .featured-option {
        transform: scale(1);
    }
}