@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600;800&family=Inter:wght@300;400;500;700&display=swap');

:root {
    --primary: #007cf0;
    --primary-glow: rgba(0, 124, 240, 0.4);
    --secondary: #00f2ff;
    --accent: #00f2ff;
    --accent-glow: rgba(0, 242, 255, 0.4);
    --gradient: linear-gradient(135deg, #007cf0 0%, #00f2ff 100%);
    --bg-dark: #05070a;
    --bg-soft: #0a0d14;
    --bg-card: rgba(255, 255, 255, 0.03);
    --bg-glass: rgba(10, 15, 30, 0.85);
    --text-main: #ffffff;
    --text-muted: #a1a1aa;
    --border: rgba(255, 255, 255, 0.1);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    padding: 100px 8%;
    max-width: 1400px;
    margin: 0 auto;
}

.bg-soft { background-color: var(--bg-soft); }

/* Glassmorphism */
.glass {
    background: var(--bg-glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--border);
}

.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.07);
    border-color: var(--accent);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.hero-title {
    font-size: clamp(2.8rem, 8vw, 4.8rem);
    line-height: 1.1;
    margin: 15px 0 25px;
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

/* Buttons */
.btn {
    padding: 16px 36px;
    border-radius: 14px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);
    cursor: pointer;
    font-size: 1.05rem;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 124, 240, 0.3);
    animation: btnPulse 3s infinite;
}

@keyframes btnPulse {
    0% { box-shadow: 0 10px 25px rgba(0, 124, 240, 0.3); }
    50% { box-shadow: 0 10px 40px rgba(0, 242, 255, 0.5); }
    100% { box-shadow: 0 10px 25px rgba(0, 124, 240, 0.3); }
}

.btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 124, 240, 0.5);
    background: linear-gradient(90deg, #00f2ff, #007cf0);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: white;
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(0, 242, 255, 0.05);
}

.btn-sm { padding: 10px 20px; font-size: 0.9rem; border-radius: 10px; }

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 320px;
    padding: 24px;
    border-radius: 20px;
    z-index: 2000;
    background: rgba(10, 15, 30, 0.95);
    border: 1px solid var(--border);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
    transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.cookie-banner p { font-size: 0.85rem; line-height: 1.6; color: var(--text-muted); }
.cookie-banner button { border-radius: 12px; width: 100%; }

.cookie-banner.hidden { transform: translateY(150%); opacity: 0; }

/* Trust Bar */
.prestige-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    width: 100%;
}

/* Trust Bar */
.trust-bar {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    opacity: 0.4;
    font-size: 0.65rem;
    font-weight: 700;
    transition: var(--transition);
}

.trust-bar:hover { opacity: 0.8; }

.hero {
    position: relative;
    padding-top: 200px;
    padding-bottom: 100px;
    min-height: 95vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle at center, rgba(0, 124, 240, 0.08) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.trust-label { color: var(--text-muted); white-space: nowrap; }
.trust-icons { display: flex; gap: 20px; color: white; opacity: 0.8; }
.trust-icons span { letter-spacing: 0.1rem; }

/* Navbar */
nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 90%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

nav.scrolled {
    padding: 15px 0;
    background: rgba(5, 7, 10, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(1.1rem, 4vw, 1.4rem);
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.nav-logo {
    height: 48px;
    width: auto;
    filter: hue-rotate(160deg) saturate(1.8) brightness(1.1);
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links li {
    position: relative;
    padding: 10px 0;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: 0.3s;
    opacity: 0.8;
}

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

/* Dropdown Premium Styles */
.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: 220px;
    background: rgba(10, 11, 16, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 0;
    list-style: none; /* NO BULLETS */
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    z-index: 1000;
}

.dropdown li {
    padding: 0;
}

.dropdown a {
    display: block;
    padding: 10px 25px;
    font-size: 0.9rem;
    color: white;
    width: 100%;
}

.dropdown a:hover {
    background: rgba(0, 124, 240, 0.1);
    color: var(--accent);
    padding-left: 30px;
}

.badge {
    background: rgba(0, 124, 240, 0.15);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.2rem;
    display: inline-block;
    border: 1px solid var(--primary);
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 50px;
}

.stat-item { display: flex; flex-direction: column; }
.stat-num { font-size: 2.5rem; font-weight: 800; color: white; line-height: 1; margin-bottom: 5px; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.1rem; }

/* Multi-Step Form */
.hero-form-container { flex: 2; min-width: 600px; transition: var(--transition); }
.form-card {
    padding: 60px 60px;
    border-radius: 40px;
    box-shadow: 0 50px 120px rgba(0, 0, 0, 0.7);
    width: 100%;
    max-width: 700px;
    margin-left: auto;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.form-header { margin-bottom: 30px; text-align: center; }
.form-header h3 { font-size: 1.8rem; margin-bottom: 5px; }
.form-header p { color: var(--text-muted); font-size: 0.9rem; }

.trust-signals {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 10px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #44ffaa;
    letter-spacing: 0.05rem;
    opacity: 0.8;
}

.trust-signals span { display: flex; align-items: center; gap: 5px; }

.progress-bar {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    margin-top: 20px;
    overflow: hidden;
}

.progress {
    height: 100%;
    background: var(--gradient);
    border-radius: 10px;
    transition: width 0.6s ease;
}

.form-step { display: none; text-align: center; }
.form-step.active { display: block; animation: fadeIn 0.5s ease; }
.form-step h4 { margin-bottom: 5px; font-size: 1.2rem; }
.step-subtext { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 25px; }

.amount-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.amount-opt {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    padding: 20px;
    border-radius: 15px;
    color: white;
    cursor: pointer;
    font-weight: 700;
    transition: var(--transition);
}

.amount-opt:hover { 
    border-color: var(--accent); 
    background: rgba(0, 242, 255, 0.05); 
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.1);
    transform: scale(1.02);
}

.state-availability {
    font-size: 0.7rem;
    color: var(--accent);
    margin-bottom: 10px;
    font-weight: 700;
    letter-spacing: 0.05rem;
}

.resolved-info {
    font-size: 0.8rem;
    color: var(--accent);
    margin-top: -8px;
    margin-bottom: 24px;
    text-align: center;
    min-height: 1.4rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05rem;
}

.zip-entry input {
    font-size: 1.5rem !important;
    text-align: center;
    letter-spacing: 0.3rem;
    font-weight: 800;
    max-width: 300px;
    margin: 0 auto 15px !important;
    display: block !important;
    border-color: rgba(0, 242, 255, 0.2) !important;
    background: rgba(0, 242, 255, 0.03) !important;
}

.form-step select, .form-step input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 12px;
    color: white;
    margin-bottom: 12px;
    font-size: 1rem;
    outline: none;
    transition: var(--transition);
}

.form-step select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.resolved-info {
    font-size: 0.75rem;
    color: var(--accent);
    margin-bottom: 20px;
    text-align: left;
    min-height: 1.2rem;
    font-weight: 700;
}

.form-step select option {
    background-color: var(--bg-soft);
    color: white;
}

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

/* Process */
.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.process-step { position: relative; padding: 40px; }
.step-num {
    font-size: 6rem;
    font-weight: 900;
    opacity: 0.05;
    position: absolute;
    top: -20px;
    left: 20px;
}

/* Results Table */
.results-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.results-table th, .results-table td {
    padding: 25px;
    border-bottom: 1px solid var(--border);
}

.results-table th { color: var(--text-muted); font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.1rem; }
.results-table td { font-weight: 600; font-size: 1.1rem; }
.savings { color: #00ffaa; font-weight: 800; }

/* FAQ */
.faq-container { max-width: 900px; margin: 0 auto; }
.faq-item { margin-bottom: 20px; padding: 0; cursor: pointer; overflow: hidden; }
.faq-question {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 40px 30px;
    display: none;
    color: var(--text-muted);
}

.faq-item.active .faq-answer { display: block; }
.faq-item.active .plus { transform: rotate(45deg); }

.success-ticker {
    background: rgba(0, 0, 0, 0.8);
    border-top: 1px solid var(--border);
    padding: 15px 0;
    overflow: hidden;
    position: relative;
}

.ticker-content {
    display: flex;
    white-space: nowrap;
    animation: ticker 30s linear infinite;
    gap: 100px;
}

.ticker-item {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.1rem;
    opacity: 0.8;
}

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

/* Footer */
footer {
    background: #030406;
    padding: 100px 8% 40px;
    border-top: 1px solid var(--border);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 3fr;
    gap: 80px;
    padding-bottom: 80px;
}

.footer-logo { height: 40px; margin-bottom: 30px; filter: hue-rotate(160deg); }
.footer-brand p { color: var(--text-muted); max-width: 350px; }

.footer-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h4 { margin-bottom: 25px; font-size: 1.1rem; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 15px; }
.footer-col a { color: var(--text-muted); text-decoration: none; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); }

.footer-legal { border-top: 1px solid var(--border); padding-top: 60px; text-align: center; }
.legal-container { max-width: 1000px; margin: 0 auto; }
.footer-legal p { font-size: 0.85rem; color: var(--text-muted); line-height: 2; margin-bottom: 40px; }

.accreditations {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.9rem;
}

/* Animations & Visibility Recovery */
.animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s cubic-bezier(0.23, 1, 0.32, 1), transform 1s cubic-bezier(0.23, 1, 0.32, 1);
}

.animate.fade-in {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }

/* Testimonials Alpha */
.testimonial-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-top: 50px; }
.testimonial-card { padding: 40px; border-radius: 30px; position: relative; }
.test-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; }
.verified-res { background: rgba(0, 242, 255, 0.1); color: var(--accent); padding: 5px 12px; border-radius: 6px; font-size: 0.7rem; font-weight: 800; text-transform: uppercase; }
.test-quote { font-style: italic; color: var(--text-main); margin-bottom: 25px; line-height: 1.7; }
.test-author { display: flex; align-items: center; gap: 15px; }
.auth-info h4 { font-size: 1rem; margin-bottom: 2px; }
.auth-info p { font-size: 0.8rem; color: var(--text-muted); }

/* Subpage Recovery */
.subpage { padding-top: 100px; }
.contact-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-top: 60px; }
.form-group label { display: block; margin-bottom: 10px; font-size: 0.85rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05rem; }
.w-full { width: 100%; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 768px) { .grid-2 { grid-template-columns: 1fr; } .contact-grid { grid-template-columns: 1fr; } .testimonial-grid { grid-template-columns: 1fr; } }

/* Hero/Subpage Styles */
.sub-hero { padding-top: 140px; text-align: center; background: radial-gradient(circle at center, rgba(0, 124, 240, 0.1) 0%, transparent 70%); }

/* FAQ Styles */
.faq-categories { display: flex; justify-content: center; gap: 20px; margin-bottom: 60px; }
.cat-btn { background: rgba(255, 255, 255, 0.05); border: 1px solid var(--border); color: white; padding: 12px 24px; border-radius: 50px; cursor: pointer; transition: var(--transition); font-weight: 600; }
.cat-btn.active, .cat-btn:hover { background: var(--gradient); border-color: transparent; box-shadow: 0 10px 20px rgba(0, 124, 240, 0.3); }

.faq-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(400px, 1fr)); gap: 30px; }
.faq-card { padding: 40px; border-radius: 24px; }
.faq-card h3 { color: var(--accent); margin-bottom: 15px; font-size: 1.3rem; }

/* Enterprise Section Refinement */
.marketing-division {
    background: linear-gradient(135deg, #0a0b10 0%, #1a1b25 100%);
    padding: 100px 5%;
    position: relative;
    overflow: hidden;
}

.marketing-division::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 124, 240, 0.05) 0%, transparent 70%);
    transform: rotate(-15deg);
}

.division-card {
    max-width: 1200px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background: rgba(255, 255, 255, 0.02);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 60px;
    border-radius: 40px;
}

.division-viz {
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    height: 300px;
    position: relative;
    border: 1px solid rgba(0, 242, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.viz-data-stream {
    width: 80%;
    height: 60%;
    background: repeating-linear-gradient(0deg, transparent, transparent 19px, rgba(0, 242, 255, 0.05) 20px);
    position: relative;
}

.viz-node {
    position: absolute;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 15px var(--accent);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3); opacity: 0; }
}

.division-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.div-feat h4 {
    color: var(--accent);
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.div-feat p {
    font-size: 0.9rem;
    color: var(--text-dim);
}

/* Footer Clean Up */
.clean-list {
    list-style: none;
    padding: 0;
}

.clean-list li {
    margin-bottom: 12px;
}

.clean-list a {
    color: var(--text-dim);
    transition: 0.3s;
    font-size: 0.95rem;
}

.clean-list a:hover {
    color: var(--primary);
    padding-left: 5px;
}

@media (max-width: 992px) {
    .division-card {
        grid-template-columns: 1fr;
        padding: 40px 20px;
        text-align: center;
    }
    .division-viz {
        height: 200px;
        order: -1;
    }
    .division-grid {
        justify-items: center;
    }
}

/* Options Styles */
.options-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 40px; }
.option-card { display: flex; flex-direction: column; }
.opt-header { margin-bottom: 25px; }
.rank { background: #00ffaa; color: #003322; padding: 4px 12px; border-radius: 4px; font-size: 0.75rem; font-weight: 800; display: inline-block; margin-bottom: 15px; }
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 25px; margin-top: 30px; border-top: 1px solid var(--border); padding-top: 25px; }
.pc-col h4 { margin-bottom: 15px; font-size: 0.9rem; text-transform: uppercase; color: var(--text-muted); }
.pc-col ul { list-style: none; padding: 0; }
.pc-col li { font-size: 0.85rem; margin-bottom: 10px; color: var(--text-muted); position: relative; padding-left: 20px; }
.pc-col li::before { content: '•'; position: absolute; left: 0; color: var(--accent); }

.highlight { background: rgba(0, 242, 255, 0.05); }
.table-note { font-size: 0.85rem; color: var(--text-muted); text-align: center; margin-top: 20px; font-style: italic; }

@media (max-width: 1024px) {
    section { padding: 80px 5%; }
    .prestige-container { flex-direction: column; gap: 40px; align-items: center; }
    .hero { 
        flex-direction: column; 
        text-align: center; 
        padding-top: 100px;
        gap: 40px;
        width: 100%;
    }
    .hero-content { display: flex; flex-direction: column; align-items: center; padding: 0 10px; width: 100%; }
    .hero-form-container { width: 100%; min-width: 0; margin-left: 0; }
    .form-card { 
        padding: 40px 25px; 
        border-radius: 24px; 
        max-width: 100%; 
        width: 100%;
        margin: 0;
    }
    .hero-stats { justify-content: center; }
    .nav-links { display: none; } /* Mobile menu toggle logic needed */
    .nav-cta { display: none; }
    .menu-toggle { display: flex; flex-direction: column; gap: 6px; cursor: pointer; }
    .menu-toggle span { width: 30px; height: 3px; background: white; border-radius: 3px; transition: 0.3s; }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: 0;
        width: 70%;
        height: 100vh;
        background: var(--bg-soft);
        padding: 100px 40px;
        z-index: 999;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        animation: slideIn 0.4s ease forwards;
    }

    @keyframes slideIn {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }

    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
}

.strategy-fit {
    font-size: 0.75rem;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.1rem;
    margin-top: 10px;
    font-weight: 700;
}

.roadmap-section { margin-top: 100px; text-align: center; }
.roadmap-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    padding: 60px 40px;
    margin-top: 50px;
    border-radius: 30px;
}

.roadmap-step { position: relative; text-align: left; }
.rm-num {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 10px;
}

.roadmap-step h3 { font-size: 1.2rem; margin-bottom: 15px; color: white; }
.roadmap-step p { font-size: 0.85rem; color: var(--text-muted); }

@media (max-width: 1024px) {
    .roadmap-container { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .roadmap-container { grid-template-columns: 1fr; }
}
