/* ==========================================
   CSS Reset and Base Styles
   ========================================== */

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

:root {
    /* Primary Colors - Purple Theme */
    --primary-purple: #6b22a9;
    --primary-purple-dark: #5a1d8f;
    --primary-purple-light: #8f39d4;
    --secondary-purple: #9334e9;

    /* Accent Colors - Yellow/Gold */
    --accent-yellow: #f7b500;
    --accent-yellow-dark: #d99e00;
    --accent-gold: #ffdb00;

    /* Neutral Colors */
    --white: #ffffff;
    --black: #000000;
    --text-dark: #1e2428;
    --text-medium: #576168;
    --text-light: #8a9199;
    --bg-light: #f8f9fa;
    --bg-grey: #f5f6f7;
    --border-light: #e1e4e8;

    /* Gradients */
    --gradient-purple: linear-gradient(135deg, #6b22a9 0%, #9334e9 100%);
    --gradient-gold: linear-gradient(135deg, #f7b500 0%, #ffdb00 100%);

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --shadow-purple: 0 8px 20px rgba(107, 34, 169, 0.2);

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Poppins', 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* ==========================================
   Header & Navigation
   ========================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(107, 34, 169, 0.2);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-purple);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

.nav-menu li a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-purple);
    transition: width var(--transition-base);
}

.nav-menu li a:hover {
    color: var(--primary-purple);
}

.nav-menu li a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-purple);
    border-radius: 2px;
    transition: all var(--transition-base);
}

/* ==========================================
   Hero Section
   ========================================== */

.hero {
    padding-top: 120px;
    padding-bottom: var(--spacing-2xl);
    background: linear-gradient(135deg, #f8f9ff 0%, #fef9f3 100%);
    overflow: hidden;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-2xl);
    align-items: center;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 56px;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: var(--text-medium);
    margin-bottom: var(--spacing-xl);
    max-width: 600px;
}

.cta-buttons {
    display: flex;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.btn-app-store,
.btn-google-play {
    display: inline-block;
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

.btn-app-store img,
.btn-google-play img {
    height: 52px;
    width: auto;
}

.btn-app-store:hover,
.btn-google-play:hover {
    transform: translateY(-3px);
    filter: brightness(1.05);
}

/* App Store Badge Image */
.app-store-badge {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.btn-app-store:hover .app-store-badge {
    transform: scale(1.05);
}

.cta-section .app-store-badge {
    height: 55px;
    filter: brightness(1.1);
}

.hero-stats {
    display: flex;
    gap: var(--spacing-xl);
    padding-top: var(--spacing-lg);
    border-top: 1px solid var(--border-light);
}

.stat h3 {
    font-family: var(--font-display);
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-purple);
    margin-bottom: 4px;
}

.stat p {
    font-size: 14px;
    color: var(--text-medium);
}

.hero-image {
    text-align: center;
    animation: fadeInRight 0.8s ease-out;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(var(--shadow-lg));
}

/* ==========================================
   Hero Animated Enhancements
   ========================================== */

.hero-animated {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
}

/* Animated Waves Background */
.hero-waves {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    overflow: hidden;
    pointer-events: none;
    z-index: 0;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100%;
}

.wave-1 {
    animation: waveMove 15s linear infinite;
    opacity: 1;
}

.wave-2 {
    animation: waveMove 12s linear infinite reverse;
    animation-delay: -3s;
    opacity: 0.8;
}

.wave-3 {
    animation: waveMove 18s linear infinite;
    animation-delay: -5s;
    opacity: 0.6;
}

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

/* Floating Particles */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: particleFloat 20s infinite ease-in-out;
}

.particle-1 {
    width: 20px;
    height: 20px;
    background: rgba(107, 34, 169, 0.1);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    width: 15px;
    height: 15px;
    background: rgba(247, 181, 0, 0.15);
    top: 60%;
    left: 20%;
    animation-delay: -5s;
}

.particle-3 {
    width: 25px;
    height: 25px;
    background: rgba(107, 34, 169, 0.08);
    top: 30%;
    right: 15%;
    animation-delay: -10s;
}

.particle-4 {
    width: 12px;
    height: 12px;
    background: rgba(247, 181, 0, 0.12);
    top: 70%;
    right: 25%;
    animation-delay: -15s;
}

.particle-5 {
    width: 18px;
    height: 18px;
    background: rgba(107, 34, 169, 0.06);
    top: 15%;
    right: 40%;
    animation-delay: -7s;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.5;
    }
    25% {
        transform: translateY(-30px) translateX(20px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translateY(-10px) translateX(-20px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-40px) translateX(10px) rotate(270deg);
        opacity: 0.9;
    }
}

/* Hero Container */
.hero-container {
    position: relative;
    z-index: 1;
}

/* Testimonial Highlight */
.testimonial-highlight {
    background: rgba(107, 34, 169, 0.08);
    padding: 20px 25px;
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid var(--primary-purple);
    position: relative;
}

.testimonial-highlight::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 15px;
    font-size: 60px;
    color: rgba(107, 34, 169, 0.15);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-highlight p {
    font-style: italic;
    color: #333;
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Animated App Store Button */
.btn-animated {
    display: inline-flex !important;
    align-items: center;
    gap: 12px;
    background: #000;
    color: #fff;
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-animated:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.btn-animated .btn-icon {
    font-size: 28px;
    line-height: 1;
}

.btn-animated .btn-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.btn-animated .btn-text small {
    font-size: 10px;
    opacity: 0.9;
    letter-spacing: 0.5px;
}

.btn-animated .btn-text strong {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: -0.3px;
}

/* Hero Phones Showcase */
.hero-phones {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    min-height: 500px;
}

.phone-stack {
    position: relative;
    width: 100%;
    max-width: 450px;
    height: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone {
    position: absolute;
    transition: all 0.5s ease;
}

.phone img {
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.25);
    transition: all 0.5s ease;
}

.phone-back {
    left: 0;
    top: 60px;
    z-index: 1;
    transform: rotate(-8deg);
}

.phone-back img {
    opacity: 0.85;
    filter: brightness(0.95);
}

.phone-middle {
    right: 0;
    top: 40px;
    z-index: 2;
    transform: rotate(8deg);
}

.phone-middle img {
    opacity: 0.9;
}

.phone-front {
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    z-index: 3;
}

.phone-front img {
    box-shadow: 0 30px 100px rgba(107, 34, 169, 0.3);
}

/* Floating Animations */
@keyframes float {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

@keyframes floatSlow {
    0%, 100% {
        transform: rotate(-8deg) translateY(0);
    }
    50% {
        transform: rotate(-8deg) translateY(-12px);
    }
}

@keyframes floatMedium {
    0%, 100% {
        transform: rotate(8deg) translateY(0);
    }
    50% {
        transform: rotate(8deg) translateY(-18px);
    }
}

.float-animation {
    animation: float 4s ease-in-out infinite;
}

.float-animation-slow {
    animation: floatSlow 5s ease-in-out infinite;
    animation-delay: -1s;
}

.float-animation-medium {
    animation: floatMedium 4.5s ease-in-out infinite;
    animation-delay: -2s;
}

/* Phone Stack Hover Effects */
.phone-stack:hover .phone-back {
    transform: rotate(-12deg) translateX(-20px);
}

.phone-stack:hover .phone-middle {
    transform: rotate(12deg) translateX(20px);
}

.phone-stack:hover .phone-front img {
    box-shadow: 0 40px 120px rgba(107, 34, 169, 0.4);
}

/* Responsive Hero Phones */
@media (max-width: 992px) {
    .hero-phones {
        min-height: 400px;
        margin-top: 40px;
    }

    .phone-stack {
        max-width: 350px;
        height: 450px;
    }

    .phone-back img,
    .phone-middle img {
        width: 180px;
    }

    .phone-front img {
        width: 220px;
    }
}

@media (max-width: 768px) {
    .hero-animated {
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-phones {
        min-height: 350px;
    }

    .phone-stack {
        max-width: 280px;
        height: 380px;
    }

    .phone-back,
    .phone-middle {
        display: none;
    }

    .phone-front {
        position: relative;
        left: auto;
        transform: none;
    }

    .phone-front img {
        width: 250px;
    }

    .float-animation {
        animation: floatSimple 3s ease-in-out infinite;
    }

    @keyframes floatSimple {
        0%, 100% {
            transform: translateY(0);
        }
        50% {
            transform: translateY(-10px);
        }
    }

    .hero-waves {
        height: 25%;
    }
}

/* ==========================================
   Features Section
   ========================================== */

.features {
    padding: var(--spacing-2xl) 0;
    background-color: var(--white);
}

.section-title {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 2px solid var(--border-light);
    transition: all var(--transition-base);
}

.feature-card:hover {
    border-color: var(--primary-purple);
    box-shadow: var(--shadow-purple);
    transform: translateY(-5px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--gradient-purple);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.7;
}

/* ==========================================
   Coverage Section
   ========================================== */

.coverage {
    padding: var(--spacing-2xl) 0;
    background: var(--bg-light);
}

.coverage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin: var(--spacing-2xl) 0;
}

.coverage-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
}

.coverage-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.coverage-card h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
}

.coverage-card p {
    font-size: 16px;
    color: var(--text-medium);
    line-height: 1.6;
}

.cities-list {
    margin-top: var(--spacing-2xl);
    padding: var(--spacing-xl);
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.cities-list h3 {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

.cities-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
    justify-content: center;
}

.cities-tags span {
    display: inline-block;
    padding: 8px 16px;
    background: var(--gradient-purple);
    color: var(--white);
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    transition: all var(--transition-fast);
    cursor: default;
}

.cities-tags span:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-purple);
}

/* ==========================================
   Testimonials Section
   ========================================== */

.testimonials {
    padding: var(--spacing-2xl) 0;
    background: var(--white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.testimonial-card {
    background: var(--bg-light);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    position: relative;
    transition: all var(--transition-base);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 80px;
    font-family: Georgia, serif;
    color: var(--primary-purple);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.stars {
    color: var(--accent-yellow);
    font-size: 20px;
    margin-bottom: var(--spacing-sm);
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-medium);
    font-weight: 600;
}

/* ==========================================
   CTA Section
   ========================================== */

.cta-section {
    padding: var(--spacing-2xl) 0;
    background: var(--gradient-purple);
    text-align: center;
    color: var(--white);
}

.cta-section h2 {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: var(--spacing-md);
}

.cta-section p {
    font-size: 20px;
    margin-bottom: var(--spacing-xl);
    opacity: 0.95;
}

.cta-section .cta-buttons {
    justify-content: center;
}

/* ==========================================
   Footer
   ========================================== */

.footer {
    background-color: var(--text-dark);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-lg);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
}

.tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    font-size: 16px;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all var(--transition-base);
}

.social-links a:hover {
    background: var(--accent-yellow);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

.footer-column h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--white);
}

.footer-column ul {
    list-style: none;
}

.footer-column ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-fast);
}

.footer-column ul li a:hover {
    color: var(--accent-yellow);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-lg);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin-bottom: var(--spacing-sm);
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
}

/* ==========================================
   Animations
   ========================================== */

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ==========================================
   Responsive Design
   ========================================== */

@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }

    .hero-image {
        order: -1;
    }

    .hero-title {
        font-size: 48px;
    }

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        text-align: center;
        transition: left var(--transition-base);
        box-shadow: var(--shadow-lg);
        padding: var(--spacing-lg) 0;
        gap: var(--spacing-md);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .coverage-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-links {
        grid-template-columns: 1fr;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

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

    .section-title {
        font-size: 28px;
    }

    .cities-tags {
        gap: 8px;
    }

    .cities-tags span {
        font-size: 12px;
        padding: 6px 12px;
    }
}

/* ==========================================
   Utility Classes
   ========================================== */

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

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.hidden {
    display: none;
}

.visible {
    display: block;
}

/* ==========================================
   Print Styles
   ========================================== */

@media print {
    .header,
    .cta-section,
    .footer {
        display: none;
    }

    .hero {
        padding-top: 0;
    }
}
