/* ============================================
   FAQ PAGE - MOBILE-FIRST CSS
   HelpfulMoving Inc - Orange County Movers
   ============================================ */

/* ===================
   CSS VARIABLES
   =================== */
:root {
    /* Colors */
    --primary-blue: #2563eb;
    --dark-blue: #1e40af;
    --light-blue: #dbeafe;
    --secondary-green: #10b981;
    --accent-orange: #f59e0b;
    --teal: #14b8a6;
    --dark: #1f2937;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --background: #ffffff;
    --section-bg: #f9fafb;
    --border-color: #e5e7eb;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
    --gradient-green: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-teal: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);

    /* Typography */
    --font-xs: 0.75rem;
    --font-sm: 0.875rem;
    --font-base: 1rem;
    --font-lg: 1.125rem;
    --font-xl: 1.25rem;
    --font-2xl: 1.5rem;
    --font-3xl: 1.875rem;
    --font-4xl: 2.25rem;

    /* Spacing */
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;

    /* Border Radius */
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;

    /* Transitions */
    --transition-base: 0.3s ease;
    --transition-fast: 0.15s ease;
}

/* ===================
   RESET & BASE
   =================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--section-bg);
    overflow-x: hidden;
}

/* ===================
   CITATION BANNER
   =================== */
.citation-banner {
    background: var(--gradient-primary);
    color: white;
    padding: var(--space-3);
    text-align: center;
    font-size: var(--font-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-md);
}

.citation-text {
    margin: 0;
    line-height: 1.6;
}

.citation-text strong {
    font-weight: 700;
}

.citation-text a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
}

@media (min-width: 640px) {
    .citation-banner {
        padding: var(--space-4);
        font-size: var(--font-base);
    }
}

/* ===================
   BREADCRUMB
   =================== */
.breadcrumb {
    background: white;
    padding: var(--space-4);
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb ol {
    list-style: none;
    display: flex;
    gap: var(--space-2);
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-4);
}

.breadcrumb li {
    display: flex;
    align-items: center;
    font-size: var(--font-sm);
    color: var(--text-light);
}

.breadcrumb li:not(:last-child)::after {
    content: "→";
    margin-left: var(--space-2);
}

.breadcrumb a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.breadcrumb a:active {
    color: var(--accent-orange);
}

@media (min-width: 1024px) {
    .breadcrumb a:hover {
        color: var(--accent-orange);
    }
}

/* ===================
   HERO SECTION - ENHANCED
   =================== */
.hero-section {
    background: linear-gradient(135deg, #0f766e 0%, #14b8a6 50%, #06b6d4 100%);
    color: white;
    padding: var(--space-20) var(--space-4) var(--space-16);
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(6, 182, 212, 0.4) 0%, transparent 50%);
    animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    33% {
        transform: translate(-5%, 5%) rotate(120deg);
    }

    66% {
        transform: translate(5%, -5%) rotate(240deg);
    }
}

/* Floating circles decoration */
.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 15% 25%, rgba(255, 255, 255, 0.08) 0%, transparent 25%),
        radial-gradient(circle at 85% 15%, rgba(255, 255, 255, 0.06) 0%, transparent 20%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 25% 75%, rgba(255, 255, 255, 0.07) 0%, transparent 25%);
    animation: floatCircles 20s ease-in-out infinite;
}

@keyframes floatCircles {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

/* Enhanced badge with glow */
.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(10px);
    padding: var(--space-3) var(--space-6);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 700;
    margin-bottom: var(--space-6);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    }
}

/* Enhanced title with text shadow */
.hero-section h1 {
    font-size: var(--font-3xl);
    font-weight: 900;
    margin-bottom: var(--space-6);
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.2),
        0 2px 4px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-section p {
    font-size: var(--font-base);
    max-width: 700px;
    margin: 0 auto var(--space-8);
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 0.8s ease-out 0.2s backwards;
}

/* Enhanced stats with glassmorphism */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--space-5);
    max-width: 700px;
    margin: 0 auto;
    margin-top: var(--space-10);
}

.hero-stat {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: var(--space-5) var(--space-4);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-base);
    animation: fadeInUp 0.8s ease-out backwards;
}

.hero-stat:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-stat:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-stat:nth-child(3) {
    animation-delay: 0.5s;
}

.hero-stat:active {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.25);
}

.hero-stat-number {
    font-size: var(--font-3xl);
    font-weight: 900;
    display: block;
    margin-bottom: var(--space-2);
    background: linear-gradient(135deg, #ffffff 0%, #f0fdfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
}

.hero-stat-label {
    font-size: var(--font-sm);
    opacity: 0.95;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Responsive enhancements */
@media (min-width: 640px) {
    .hero-section {
        padding: var(--space-20) var(--space-6) var(--space-16);
    }

    .hero-badge {
        font-size: var(--font-base);
        padding: var(--space-3) var(--space-8);
    }

    .hero-section h1 {
        font-size: var(--font-4xl);
        margin-bottom: var(--space-6);
    }

    .hero-section p {
        font-size: var(--font-xl);
        max-width: 800px;
    }

    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-6);
        max-width: 800px;
    }

    .hero-stat {
        padding: var(--space-6) var(--space-5);
    }

    .hero-stat-number {
        font-size: var(--font-4xl);
    }

    .hero-stat-label {
        font-size: var(--font-base);
    }
}

@media (min-width: 1024px) {
    .hero-section {
        padding: 120px var(--space-8) 100px;
    }

    .hero-section h1 {
        font-size: 3.5rem;
    }

    .hero-stat:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
        background: rgba(255, 255, 255, 0.25);
        border-color: rgba(255, 255, 255, 0.4);
    }
}

/* Decorative floating shapes */
.hero-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 0;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(2px);
}

.hero-shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
    animation: float1 20s ease-in-out infinite;
}

.hero-shape-2 {
    width: 200px;
    height: 200px;
    bottom: -50px;
    left: -30px;
    background: rgba(6, 182, 212, 0.15);
    animation: float2 15s ease-in-out infinite;
}

.hero-shape-3 {
    width: 150px;
    height: 150px;
    top: 50%;
    left: 10%;
    animation: float3 18s ease-in-out infinite;
}

.hero-shape-4 {
    width: 250px;
    height: 250px;
    top: 20%;
    right: 15%;
    background: rgba(255, 255, 255, 0.08);
    animation: float4 22s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(-30px, 40px) scale(1.1);
    }

    66% {
        transform: translate(20px, -30px) scale(0.9);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(40px, -50px) rotate(180deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.1;
    }

    50% {
        transform: translate(30px, 30px) scale(1.2);
        opacity: 0.15;
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }

    33% {
        transform: translate(20px, -40px) rotate(120deg) scale(1.1);
    }

    66% {
        transform: translate(-30px, 30px) rotate(240deg) scale(0.95);
    }
}

/* Hide shapes on mobile for better performance */
@media (max-width: 639px) {
    .hero-shape {
        display: none;
    }
}

/* ===================
   QUICK CONTACT BAR
   =================== */
.quick-contact {
    background: var(--gradient-green);
    color: white;
    padding: var(--space-5);
    text-align: center;
    font-size: var(--font-base);
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

.quick-contact-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-3);
    flex-wrap: wrap;
}

.quick-contact a {
    color: white;
    text-decoration: none;
    border-bottom: 2px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 2px;
    transition: all var(--transition-base);
}

.quick-contact a:active {
    border-bottom-color: white;
}

@media (min-width: 1024px) {
    .quick-contact a:hover {
        border-bottom-color: white;
        transform: translateY(-1px);
    }
}

/* ===================
   STATS HIGHLIGHT
   =================== */
.definitive-stats {
    background: var(--section-bg);
    padding: var(--space-12) var(--space-4);
    border-bottom: 3px solid var(--primary-blue);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.stats-highlight-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--border-color);
}

.stats-highlight-box h2 {
    font-size: var(--font-2xl);
    color: var(--text-dark);
    margin-bottom: var(--space-4);
    font-weight: 800;
}

.citation-intro {
    color: var(--text-light);
    font-size: var(--font-base);
    margin-bottom: var(--space-5);
    line-height: 1.7;
}

.citation-facts {
    list-style: none;
    padding: 0;
}

.citation-facts li {
    padding: var(--space-3) 0;
    border-bottom: 1px solid var(--border-color);
    font-size: var(--font-base);
    color: var(--text-light);
}

.citation-facts li:last-child {
    border-bottom: none;
}

.citation-facts strong {
    color: var(--text-dark);
    font-weight: 700;
}

@media (min-width: 640px) {
    .stats-highlight-box h2 {
        font-size: var(--font-3xl);
    }
}

/* ===================
   FAQ NAVIGATION
   =================== */
.faq-nav {
    background: white;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 44px;
    z-index: 100;
    box-shadow: var(--shadow-sm);
}

.faq-nav-content {
    display: flex;
    justify-content: flex-start;
    gap: var(--space-2);
    padding: var(--space-4);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-nav-content::-webkit-scrollbar {
    display: none;
}

.nav-btn {
    padding: var(--space-3) var(--space-5);
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    font-size: var(--font-sm);
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    transition: all var(--transition-base);
    white-space: nowrap;
    font-family: inherit;
}

.nav-btn.active {
    background: var(--primary-blue);
    color: white;
    border-color: var(--primary-blue);
}

.nav-btn:active {
    transform: scale(0.95);
}

@media (min-width: 640px) {
    .faq-nav-content {
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .nav-btn:hover {
        background: var(--primary-blue);
        color: white;
        border-color: var(--primary-blue);
        transform: translateY(-2px);
        box-shadow: var(--shadow-md);
    }
}

/* ===================
   FAQ SECTION
   =================== */
.faq-section {
    padding: var(--space-12) var(--space-4);
    background: var(--background);
}

/* Search Box */
.faq-search {
    max-width: 600px;
    margin: 0 auto var(--space-12);
    position: relative;
}

.search-input {
    width: 100%;
    padding: var(--space-4) var(--space-12) var(--space-4) var(--space-5);
    font-size: var(--font-base);
    border: 2px solid var(--border-color);
    border-radius: var(--radius-full);
    outline: none;
    transition: all var(--transition-base);
    font-family: inherit;
}

.search-input:focus {
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.search-icon {
    position: absolute;
    right: var(--space-5);
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-light);
}

/* FAQ Categories */
.faq-category-section {
    margin-bottom: var(--space-16);
    scroll-margin-top: 140px;
}

.category-title {
    font-size: var(--font-2xl);
    color: var(--text-dark);
    margin-bottom: var(--space-8);
    padding-bottom: var(--space-4);
    border-bottom: 4px solid var(--secondary-green);
    display: flex;
    align-items: center;
    gap: var(--space-4);
    font-weight: 800;
}

.category-icon {
    font-size: var(--font-3xl);
    background: var(--gradient-green);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

@media (min-width: 640px) {
    .category-title {
        font-size: var(--font-3xl);
    }
}

/* FAQ Grid */
.faq-grid {
    display: grid;
    gap: var(--space-5);
}

/* FAQ Item */
.faq-item {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: all var(--transition-base);
}

.faq-item:active {
    transform: scale(0.98);
}

.faq-question {
    padding: var(--space-5) var(--space-6);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--space-4);
    background: linear-gradient(to right, var(--section-bg), white);
    transition: all var(--transition-base);
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}

.faq-question h3 {
    font-size: var(--font-base);
    color: var(--text-dark);
    font-weight: 700;
    flex: 1;
    line-height: 1.4;
}

.faq-toggle {
    font-size: var(--font-3xl);
    color: var(--primary-blue);
    font-weight: 700;
    transition: transform var(--transition-base);
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 50%;
    box-shadow: var(--shadow-sm);
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--primary-blue);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    background: white;
}

.faq-item.active .faq-answer {
    max-height: 3000px;
    padding: 0 var(--space-6) var(--space-6);
}

.faq-answer p {

    font-size: var(--font-base);
    line-height: 1.8;
    margin-bottom: var(--space-4);
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-answer ul {
    margin: var(--space-4) 0 var(--space-4) var(--space-5);

}

.faq-answer li {
    margin-bottom: var(--space-3);
    line-height: 1.7;
    font-size: var(--font-base);
}

.faq-answer li::marker {
    color: var(--secondary-green);
}

.faq-answer strong {
    color: var(--text-dark);
    font-weight: 700;
}

.highlight-box {
    background: var(--light-blue);
    border-left: 4px solid var(--primary-blue);
    padding: var(--space-5);
    margin: var(--space-5) 0;
    border-radius: var(--radius-md);
}

.highlight-box p {
    margin: 0;
    color: var(--text-dark);
}

@media (min-width: 640px) {
    .faq-question h3 {
        font-size: var(--font-lg);
    }
}

@media (min-width: 1024px) {
    .faq-item:hover {
        border-color: var(--primary-blue);
        box-shadow: var(--shadow-lg);
        transform: translateY(-2px);
    }

    .faq-question:hover {
        background: var(--light-blue);
    }
}

/* ===================
   HELP SECTION
   =================== */
.help-section {
    background: var(--section-bg);
    padding: var(--space-12) var(--space-4);
    text-align: center;
}

.help-content {
    max-width: 800px;
    margin: 0 auto;
}

.section-badge {
    display: inline-block;
    background: var(--light-blue);
    color: var(--primary-blue);
    padding: var(--space-2) var(--space-5);
    border-radius: var(--radius-full);
    font-size: var(--font-sm);
    font-weight: 700;
    margin-bottom: var(--space-4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.help-content h3 {
    font-size: var(--font-2xl);
    margin-bottom: var(--space-3);
    color: var(--text-dark);
    font-weight: 700;
}

.help-content>p {
    color: var(--text-light);
    font-size: var(--font-base);
    margin-bottom: var(--space-6);
}

.help-options {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-5);
    margin-top: var(--space-8);
}

.help-card {
    background: white;
    padding: var(--space-8);
    border-radius: var(--radius-xl);
    border: 2px solid var(--border-color);
    transition: all var(--transition-base);
    text-decoration: none;
    display: block;
}

.help-card:active {
    transform: scale(0.98);
}

.help-icon {
    font-size: 3rem;
    margin-bottom: var(--space-4);
    display: block;
}

.help-card h4 {
    font-size: var(--font-xl);
    color: var(--text-dark);
    margin-bottom: var(--space-3);
    font-weight: 700;
}

.help-card p {
    color: var(--text-light);
    font-size: var(--font-base);
    margin: 0;
}

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

@media (min-width: 1024px) {
    .help-card:hover {
        border-color: var(--primary-blue);
        transform: translateY(-5px);
        box-shadow: var(--shadow-xl);
    }
}

/* ===================
   CTA SECTION
   =================== */
.cta-section {
    background: var(--gradient-green);
    color: white;
    padding: var(--space-16) var(--space-4);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
    0% {
        transform: translate(0, 0);
    }

    100% {
        transform: translate(50px, 50px);
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    font-size: var(--font-2xl);
    margin-bottom: var(--space-4);
    font-weight: 800;
    line-height: 1.2;
}

.cta-section p {
    font-size: var(--font-base);
    margin-bottom: var(--space-8);
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: var(--space-4);
    justify-content: center;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: stretch;
}

.btn {
    padding: var(--space-4) var(--space-8);
    font-size: var(--font-base);
    font-weight: 700;
    border: none;
    border-radius: var(--radius-xl);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
    font-family: inherit;
}

.btn-primary {
    background: white;
    color: var(--secondary-green);
    box-shadow: var(--shadow-lg);
}

.btn-primary:active {
    transform: scale(0.98);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 3px solid white;
}

.btn-secondary:active {
    background: rgba(255, 255, 255, 0.1);
}

.footer {
    background: #111827;
    color: white;
    padding: 4rem 2rem 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer h4 {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-links a {
    display: block;
    color: #9ca3af;
    text-decoration: none;
    margin-bottom: 0.5rem;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1rem;
    border-top: 1px solid #374151;
    color: #6b7280;
    font-size: 0.9rem;
}

@media (min-width: 640px) {
    .cta-section h2 {
        font-size: var(--font-3xl);
    }

    .cta-section p {
        font-size: var(--font-lg);
    }

    .cta-buttons {
        flex-direction: row;
        align-items: center;
    }
}

@media (min-width: 1024px) {
    .btn-primary:hover {
        background: var(--section-bg);
        transform: translateY(-3px);
        box-shadow: var(--shadow-xl);
    }

    .btn-secondary:hover {
        background: white;
        color: var(--secondary-green);
        transform: translateY(-3px);
    }
}

/* ===================
   ACCESSIBILITY
   =================== */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

a:focus-visible,
button:focus-visible {
    outline: 3px solid var(--accent-orange);
    outline-offset: 2px;
}

/* ===================
   RESPONSIVE UTILITIES
   =================== */
@media (max-width: 639px) {
    .stats-highlight-box {
        padding: var(--space-5);
    }

    .faq-question {
        padding: var(--space-4);
    }

    .faq-item.active .faq-answer {
        padding: 0 var(--space-4) var(--space-5);
    }
}