/* -------------------------------------------------------------
   ONEONELOCAL MODERN PREMIUM DESIGN SYSTEM
   ------------------------------------------------------------- */

:root {
    /* Color Palette (HSL Tailored) */
    --bg-dark-base: 228, 24%, 6%;       /* #090A0F */
    --bg-dark-card: 222, 47%, 11%;      /* #0F172A */
    --primary: 245, 100%, 65%;          /* #6366F1 */
    --primary-glow: 245, 100%, 75%;
    --secondary: 217, 91%, 60%;         /* #3B82F6 */
    --accent: 142, 70%, 45%;            /* #10B981 */
    
    --text-primary: 0, 0%, 100%;
    --text-muted: 215, 20%, 65%;
    --border-color: 217, 32%, 17%;
    --border-glow: 245, 100%, 60%;
    
    /* Font Families */
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

/* Base Resets & Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: hsl(var(--bg-dark-base));
    color: hsl(var(--text-primary));
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

h1 {
    font-size: 3rem;
}

@media (min-width: 768px) {
    h1 {
        font-size: 4rem;
    }
}

h2 {
    font-size: 2.25rem;
}

p {
    color: hsl(var(--text-muted));
    margin-bottom: 1rem;
}

/* Gradient Utilities & Badge */
.gradient-text {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, #a855f7 50%, hsl(var(--secondary)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.highlight {
    color: hsl(var(--primary));
}

.text-error {
    color: #f87171;
}

.badge-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: hsl(var(--primary-glow));
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    animation: pulse 1.6s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(16, 185, 129, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Background Mesh Glows */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: -1;
}

.bg-glow-1 {
    top: -100px;
    left: -100px;
    background: radial-gradient(circle, hsl(var(--primary)) 0%, transparent 80%);
}

.bg-glow-2 {
    top: 600px;
    right: -100px;
    background: radial-gradient(circle, hsl(var(--secondary)) 0%, transparent 80%);
}

.bg-glow-3 {
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
    background: radial-gradient(circle, #a855f7 0%, transparent 80%);
}

/* Premium Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 0.8rem 1.6rem;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: pointer;
    text-decoration: none;
    border: none;
    font-size: 1rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    color: #ffffff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(99, 102, 241, 0.45);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

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

.w-full {
    width: 100%;
}

/* Header & Nav */
.main-header {
    position: sticky;
    top: 0;
    background: rgba(9, 10, 15, 0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    z-index: 1000;
}

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

.logo-link {
    text-decoration: none;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.1rem;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
}

.desktop-nav {
    display: none;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
}

.nav-link {
    color: hsl(var(--text-muted));
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #ffffff;
}

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

@media (max-width: 768px) {
    .nav-btn-hide {
        display: none;
    }
}

.mobile-menu-toggle {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
}

@media (min-width: 992px) {
    .mobile-menu-toggle {
        display: none;
    }
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background-color: hsl(var(--bg-dark-card));
    z-index: 1100;
    padding: 1.5rem;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
}

.mobile-nav-drawer.active {
    right: 0;
}

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

.drawer-close {
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
}

.drawer-buttons {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Hero Section */
.hero-section {
    padding: 4rem 0 6rem;
    position: relative;
}

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

@media (min-width: 992px) {
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
    }
}

.hero-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 2rem;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    background: linear-gradient(135deg, #ffffff 0%, hsl(var(--text-muted)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-label {
    font-size: 0.85rem;
}

/* Hero Simulator UI Card */
.hero-card-glass {
    background: rgba(15, 23, 42, 0.45);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.card-header-sim {
    background: rgba(255, 255, 255, 0.04);
    padding: 0.8rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.sim-dots {
    display: flex;
    gap: 0.4rem;
}

.sim-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.sim-search-bar {
    flex-grow: 1;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 6px;
    padding: 0.3rem 0.8rem;
    font-size: 0.75rem;
    font-family: monospace;
    color: rgba(255, 255, 255, 0.5);
}

.google-results-sim {
    padding: 1.5rem;
}

.map-box {
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    height: 130px;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.map-marker-glow {
    width: 14px;
    height: 14px;
    background-color: hsl(var(--primary));
    border-radius: 50%;
    position: relative;
    animation: markerPulse 1.8s infinite;
}

@keyframes markerPulse {
    0% { box-shadow: 0 0 0 0 rgba(99, 102, 241, 0.8); }
    100% { box-shadow: 0 0 0 25px rgba(99, 102, 241, 0); }
}

.map-label {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: rgba(0, 0, 0, 0.6);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.result-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.result-item {
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    background: rgba(255, 255, 255, 0.01);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.result-item.spotlight {
    background: rgba(99, 102, 241, 0.06);
    border-color: rgba(99, 102, 241, 0.25);
    box-shadow: inset 0 0 12px rgba(99, 102, 241, 0.1);
}

.medal-badge {
    background-color: rgba(245, 158, 11, 0.2);
    color: #fbbf24;
    border: 1px solid rgba(245, 158, 11, 0.3);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: bold;
    margin-bottom: 0.4rem;
    display: inline-block;
}

.result-title {
    font-size: 0.95rem;
    font-weight: 700;
}

.stars {
    color: #f59e0b;
    font-size: 0.75rem;
}

.result-meta {
    font-size: 0.75rem;
    color: hsl(var(--text-muted));
}

.phone-call-glow {
    background: #10b981;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.4);
}

.result-item.muted {
    opacity: 0.45;
}

/* Glass Card Global Modifier */
.glass {
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

/* Section Common Header */
.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.25rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 3rem;
    }
}

.section-subtitle {
    font-size: 1.15rem;
    max-width: 650px;
    margin: 0 auto;
}

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

/* Free SEO Audit Tool UI */
.audit-section {
    padding: 6rem 0;
    position: relative;
}

.audit-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.audit-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.audit-card-body {
    padding: 2.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #ffffff;
}

.form-group input, 
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ffffff;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    outline: none;
    transition: all 0.2s ease;
}

.form-group input:focus,
.form-group select:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: hsl(var(--primary));
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.2);
}

.form-security {
    font-size: 0.8rem;
    margin-top: 1rem;
    color: hsl(var(--text-muted));
}

.m-t-20 { margin-top: 1.25rem; }
.m-t-15 { margin-top: 0.9rem; }
.m-b-15 { margin-bottom: 0.9rem; }

/* Scanner Simulator Screen */
#audit-scanning-container {
    padding: 3rem;
    text-align: center;
}

.scanner-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.loader-spinner {
    width: 28px;
    height: 28px;
    border: 3px solid rgba(255, 255, 255, 0.1);
    border-top-color: hsl(var(--primary));
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

.scanner-console {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 1.5rem;
    height: 180px;
    overflow-y: auto;
    font-family: monospace;
    font-size: 0.85rem;
    text-align: left;
    margin-bottom: 2rem;
    color: #a7f3d0;
    line-height: 1.5;
}

.scanner-console p {
    margin-bottom: 0.4rem;
}

.progress-bar-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 9999px;
    height: 10px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-bar-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    border-radius: 9999px;
    transition: width 0.1s linear;
}

.progress-text {
    font-size: 0.85rem;
    font-weight: 600;
}

/* Scorecard Screen */
#audit-results-container {
    padding: 2.5rem;
}

.scorecard-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    align-items: center;
}

@media (min-width: 768px) {
    .scorecard-layout {
        grid-template-columns: 0.8fr 1.2fr;
    }
}

.scorecard-radial {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    border-right: none;
    padding-right: 0;
}

@media (min-width: 768px) {
    .scorecard-radial {
        border-right: 1px solid rgba(255, 255, 255, 0.08);
        padding-right: 2.5rem;
    }
}

.radial-progress {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(hsl(var(--primary)) 0% 68%, rgba(255, 255, 255, 0.05) 68% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.radial-inner {
    width: 124px;
    height: 124px;
    background-color: #0d121f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.score-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
}

.score-total {
    font-size: 1.2rem;
    color: hsl(var(--text-muted));
}

.score-verdict {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.score-summary {
    font-size: 0.9rem;
}

.scorecard-details {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.checklist-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.check-icon {
    font-size: 1.25rem;
    display: flex;
    align-items: flex-start;
}

.checklist-item h5 {
    font-size: 0.95rem;
    margin-bottom: 0.2rem;
}

.checklist-item p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.scorecard-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 2.5rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .scorecard-footer {
        flex-direction: row;
    }
}

.scorecard-footer h4 {
    margin-bottom: 0.3rem;
}

.scorecard-footer p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-cta-actions {
    display: flex;
    gap: 1rem;
}

/* Features grid */
.features-section {
    padding: 6rem 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    padding: 2.5rem;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: hsl(var(--primary-glow));
    margin-bottom: 1.5rem;
}

.feature-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Interactive ROI calculator layout */
.roi-section {
    padding: 6rem 0;
    position: relative;
}

.roi-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .roi-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.roi-guarantee-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 2.5rem;
    display: flex;
    gap: 1.25rem;
}

.guarantee-icon {
    font-size: 2.5rem;
}

.guarantee-text strong {
    font-size: 1.1rem;
}

.guarantee-text p {
    font-size: 0.85rem;
    margin-bottom: 0;
    margin-top: 0.25rem;
}

.roi-card {
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
}

.calc-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.calc-label-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
}

.calc-label-row label {
    font-weight: 600;
}

.calc-value {
    font-weight: 700;
    font-family: var(--font-heading);
}

/* Sliders */
.slider {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.1);
    outline: none;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: hsl(var(--primary));
    cursor: pointer;
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.8);
    transition: transform 0.1s ease;
}

.slider::-webkit-slider-thumb:hover {
    transform: scale(1.15);
}

.calc-output-block {
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
}

.output-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.output-value {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0.5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, hsl(var(--primary-glow)) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.output-disclaimer {
    font-size: 0.75rem;
    margin-bottom: 1.5rem;
}

/* Pricing Packages Grid */
.packages-section {
    padding: 6rem 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.pricing-card.popular {
    border-color: rgba(99, 102, 241, 0.45);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.1);
}

.popular-ribbon {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, hsl(var(--primary)) 0%, hsl(var(--secondary)) 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.75rem;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    letter-spacing: 0.05em;
}

.package-name {
    font-size: 1.5rem;
}

.package-desc {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
}

.price-block {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
    margin-bottom: 2rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
}

.price {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 800;
}

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

.package-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.package-features li {
    font-size: 0.9rem;
    display: flex;
    gap: 0.75rem;
}

.package-features li span {
    color: hsl(var(--primary-glow));
    font-weight: bold;
}

/* FAQ Accordion */
.faq-section {
    padding: 6rem 0;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    transition: background 0.2s ease;
}

.faq-question:hover {
    background: rgba(255, 255, 255, 0.02);
}

.faq-icon-span {
    font-size: 1.5rem;
    font-weight: 400;
    color: hsl(var(--text-muted));
    transition: transform 0.3s ease;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.16, 1, 0.3, 1), padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Contact / Lead Capture */
.contact-section {
    padding: 6rem 0;
    position: relative;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 992px) {
    .contact-container {
        grid-template-columns: 0.9fr 1.1fr;
    }
}

.pitch-meta {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
}

.contact-form-wrapper {
    padding: 2.5rem;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 576px) {
    .form-row {
        flex-direction: row;
    }
}

.flex-1 {
    flex: 1;
}

/* Success Elements */
.hide {
    display: none !important;
}

.lead-success-msg {
    text-align: center;
    padding: 2.5rem 0;
}

.success-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.lead-success-msg h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

/* Footer layout */
.main-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background-color: #05060a;
    padding: 5rem 0 2rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-about p {
    font-size: 0.85rem;
}

.footer-links-col {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col h4 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.footer-links-col a {
    color: hsl(var(--text-muted));
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer-links-col a:hover {
    color: #ffffff;
}

.footer-links-col p {
    font-size: 0.85rem;
    margin-bottom: 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: space-between;
    align-items: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.8rem;
    margin-bottom: 0;
}

.bottom-links {
    display: flex;
    gap: 1.5rem;
}

.bottom-links a {
    color: hsl(var(--text-muted));
    font-size: 0.8rem;
    text-decoration: none;
}

.bottom-links a:hover {
    color: #ffffff;
}
