/* ===========================
   CSS Variables & Reset
   =========================== */
:root {
    --primary: #FF8C42;
    --primary-dark: #E67A35;
    --primary-light: #FFA76C;
    --secondary: #2EC4B6;
    --secondary-dark: #25A99D;
    --accent: #FFD166;
    --accent-dark: #F0C050;
    --purple: #9B5DE5;
    --pink: #F15BB5;
    --dark: #1A1A2E;
    --dark-light: #2D2D44;
    --text: #333340;
    --text-light: #6B6B80;
    --bg: #FFFDF8;
    --bg-warm: #FFF9F0;
    --bg-card: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-glow: 0 0 40px rgba(255, 140, 66, 0.2);
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 28px;
    --radius-xl: 40px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-heading: 'Baloo 2', cursive;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    line-height: 1.2;
    color: var(--dark);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

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

/* ===========================
   Particles
   =========================== */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
    animation: float-particle linear infinite;
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 0.15;
    }

    90% {
        opacity: 0.15;
    }

    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* ===========================
   Navbar
   =========================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(255, 253, 248, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-icon {
    font-size: 1.6rem;
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 10px 24px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 140, 66, 0.3);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 140, 66, 0.4);
}

/* ===========================
   Buttons
   =========================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 100px;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 6px 25px rgba(255, 140, 66, 0.35);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(255, 140, 66, 0.45);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.8);
    color: var(--text);
    border: 2px solid rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-2px);
}

.btn-white {
    background: white;
    color: var(--primary-dark);
    font-size: 0.9rem;
    padding: 8px 20px;
    box-shadow: var(--shadow-sm);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1.1rem;
}

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

.btn-full {
    width: 100%;
}

/* ===========================
   Gradient Text
   =========================== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--pink), var(--purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===========================
   Hero Section
   =========================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 24px 80px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 60px;
    overflow: hidden;
}

.hero-bg-gradient {
    position: fixed;
    top: -50%;
    right: -30%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.hero-content {
    flex: 1;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 140, 66, 0.1);
    border: 1px solid rgba(255, 140, 66, 0.2);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--primary-dark);
    margin-bottom: 24px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

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

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-tagline {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 520px;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-ctas {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 28px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
}

.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    font-size: 0.8rem;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(0, 0, 0, 0.08);
}

.hero-image {
    flex: 0 0 480px;
    z-index: 2;
}

.hero-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    animation: float 6s ease-in-out infinite;
}

.hero-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 1;
}

.hero-img-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: var(--shadow-md);
}

@keyframes float {

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

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

.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-wave svg {
    width: 100%;
    height: 100px;
}

/* ===========================
   Urgency Banner
   =========================== */
.urgency-banner {
    background: linear-gradient(135deg, var(--primary), var(--pink));
    padding: 16px 0;
    position: relative;
    z-index: 4;
}

.urgency-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    color: white;
    flex-wrap: wrap;
}

.urgency-icon {
    font-size: 1.3rem;
    animation: pulse-dot 1.5s infinite;
}

.urgency-text {
    font-size: 1rem;
}

/* ===========================
   Section Styles
   =========================== */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.1), rgba(241, 91, 181, 0.1));
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 16px;
}

.section-desc {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   About / Features
   =========================== */
.about {
    padding: 100px 0;
    background: var(--bg-warm);
    position: relative;
    z-index: 4;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.feature-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 140, 66, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    display: inline-block;
    animation: bounce-icon 3s ease-in-out infinite;
}

.feature-card:nth-child(2) .feature-icon {
    animation-delay: 0.5s;
}

.feature-card:nth-child(3) .feature-icon {
    animation-delay: 1s;
}

.feature-card:nth-child(4) .feature-icon {
    animation-delay: 1.5s;
}

.feature-card:nth-child(5) .feature-icon {
    animation-delay: 2s;
}

.feature-card:nth-child(6) .feature-icon {
    animation-delay: 2.5s;
}

@keyframes bounce-icon {

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

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

.feature-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ===========================
   Gallery
   =========================== */
.gallery {
    padding: 80px 0;
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    grid-auto-rows: 320px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    cursor: pointer;
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.gallery-item.large {
    grid-row: span 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* ===========================
   Benefits
   =========================== */
.benefits {
    padding: 100px 0;
    background: var(--bg-warm);
}

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 24px;
}

.benefit-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.benefit-item:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(255, 140, 66, 0.15);
}

.benefit-check {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--secondary), #3DE0D0);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.benefit-check.parent {
    background: linear-gradient(135deg, var(--pink), var(--purple));
}

.benefit-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
    font-weight: 700;
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* ===========================
   Schedule & Pricing
   =========================== */
.schedule {
    padding: 100px 0;
    background: var(--bg);
}

.schedule-card {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.schedule-header {
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    color: white;
    padding: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.squad-badge {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
}

.schedule-location {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.schedule-location div {
    display: flex;
    flex-direction: column;
}

.schedule-location span {
    opacity: 0.8;
    font-size: 0.85rem;
}

.location-pin {
    font-size: 1.3rem;
}

.schedule-details {
    padding: 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.schedule-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.schedule-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.schedule-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    font-weight: 500;
    display: block;
}

.schedule-value {
    font-weight: 600;
    font-size: 1rem;
    display: block;
}

.schedule-note {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 500;
    display: block;
}

.pricing-section {
    padding: 0 32px 32px;
}

.price-card {
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.06), rgba(241, 91, 181, 0.06));
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    border: 2px solid rgba(255, 140, 66, 0.15);
    position: relative;
}

.price-tag {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    padding: 6px 20px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin-top: 12px;
}

.currency {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    margin-top: 8px;
}

.amount {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--dark);
    line-height: 1;
}

.price-details {
    margin-top: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-per {
    font-size: 0.95rem;
    color: var(--text-light);
}

.price-bonus {
    font-size: 1rem;
    font-weight: 700;
    color: var(--secondary-dark);
}

.price-breakdown {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    font-size: 0.9rem;
    color: var(--text-light);
}

.schedule-cta {
    padding: 0 32px 32px;
}

/* ===========================
   How It Works
   =========================== */
.how-it-works {
    padding: 100px 0;
    background: var(--bg-warm);
}

.steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.step-card {
    background: var(--bg-card);
    padding: 36px 28px;
    border-radius: var(--radius-md);
    text-align: center;
    flex: 1;
    min-width: 220px;
    max-width: 300px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

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

.step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--pink));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 800;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.step-card p {
    font-size: 0.9rem;
    color: var(--text-light);
}

.step-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 700;
}

/* ===========================
   Registration Form
   =========================== */
.register {
    padding: 100px 0;
    background: var(--bg);
    position: relative;
}

.form-wrapper {
    max-width: 750px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.form-glow {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.08), transparent);
    border-radius: 50%;
    pointer-events: none;
}

.form-wrapper iframe {
    position: relative;
    z-index: 1;
}

.form-note {
    max-width: 750px;
    margin: 24px auto 0;
    padding: 20px 28px;
    background: linear-gradient(135deg, rgba(46, 196, 182, 0.08), rgba(155, 93, 229, 0.08));
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    color: var(--text);
    border-left: 4px solid var(--secondary);
}

/* ===========================
   FAQ
   =========================== */
.faq {
    padding: 100px 0;
    background: var(--bg-warm);
}

.faq-list {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border-radius: var(--radius-sm);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(255, 140, 66, 0.15);
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark);
    text-align: left;
    transition: var(--transition);
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 140, 66, 0.1);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 600;
    flex-shrink: 0;
    transition: var(--transition);
}

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

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

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* ===========================
   Final CTA
   =========================== */
.final-cta {
    padding: 80px 0;
    background: var(--bg);
}

.cta-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    border-radius: var(--radius-xl);
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -30%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.15), transparent);
    border-radius: 50%;
}

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(155, 93, 229, 0.1), transparent);
    border-radius: 50%;
}

.cta-card h2 {
    color: white;
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.cta-card p {
    font-size: 1.1rem;
    opacity: 0.85;
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

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

.cta-trust {
    margin-top: 24px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 0.9rem;
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

/* ===========================
   Footer
   =========================== */
.footer {
    background: var(--dark);
    color: white;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 28px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-copy {
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

.footer-copy p+p {
    margin-top: 4px;
}

/* ===========================
   Animations
   =========================== */
.animate-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.animate-in:nth-child(2) {
    animation-delay: 0.15s;
}

.animate-in:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-in:nth-child(4) {
    animation-delay: 0.45s;
}

.animate-in:nth-child(5) {
    animation-delay: 0.6s;
}

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

[data-animate] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   Responsive
   =========================== */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 100px;
        gap: 40px;
    }

    .hero-subtitle {
        margin: 0 auto 32px;
    }

    .hero-ctas {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-image {
        flex: none;
        width: 100%;
        max-width: 450px;
    }

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

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 250px;
    }

    .gallery-item.large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .benefits-layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .schedule-details {
        grid-template-columns: 1fr;
    }
}

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

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .gallery-item.large {
        grid-column: span 1;
    }

    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-divider {
        display: none;
    }

    .schedule-header {
        flex-direction: column;
        text-align: center;
    }

    .schedule-location {
        justify-content: center;
    }

    .form-wrapper {
        padding: 24px 16px;
    }

    .step-arrow {
        display: none;
    }

    .steps-grid {
        flex-direction: column;
    }

    .step-card {
        max-width: 100%;
    }

    .urgency-content {
        flex-direction: column;
        text-align: center;
    }

    .cta-card {
        padding: 40px 24px;
    }

    .footer-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
}

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

    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-lg {
        padding: 14px 28px;
        font-size: 1rem;
    }

    .nav-cta {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}