/* ============================================
   Urgent Care Extra — Styles
   Palette: Forest Green + Off-White
   Fonts: Playfair Display + Inter
============================================ */

/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --green-900: #0d3b24;
    --green-800: #1a5c3a;
    --green-700: #227a4d;
    --green-600: #2a9d60;
    --green-500: #34b874;
    --green-400: #5ec992;
    --green-300: #95d4b5;
    --green-200: #c8e6d4;
    --green-100: #e8f5ec;
    --green-50: #f2faf5;
    
    --off-white: #f7f8f5;
    --cream: #faf9f6;
    --warm-gray-100: #f0efeb;
    --warm-gray-200: #e2e0d9;
    --warm-gray-300: #c4c1b8;
    --warm-gray-400: #8a867d;
    --warm-gray-500: #5e5b54;
    --warm-gray-600: #3d3a35;
    --warm-gray-700: #2a2722;
    
    --white: #ffffff;
    --black: #111111;
    
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --shadow-sm: 0 1px 3px rgba(13, 59, 36, 0.06);
    --shadow-md: 0 4px 16px rgba(13, 59, 36, 0.08);
    --shadow-lg: 0 12px 40px rgba(13, 59, 36, 0.12);
    --shadow-xl: 0 24px 60px rgba(13, 59, 36, 0.15);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--warm-gray-700);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

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

/* ============================================
   Navigation
============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(26, 92, 58, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    background: rgba(250, 249, 246, 0.95);
    box-shadow: var(--shadow-sm);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--green-800);
    letter-spacing: -0.02em;
}

.nav__logo-icon {
    width: 28px;
    height: 28px;
    color: var(--green-700);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--warm-gray-500);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--green-600);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--green-700);
}

.nav__link:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--green-800);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 100px;
    font-size: 0.88rem;
    font-weight: 600;
    transition: all var(--transition);
    box-shadow: 0 2px 8px rgba(26, 92, 58, 0.25);
}

.nav__cta:hover {
    background: var(--green-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 92, 58, 0.35);
}

.nav__cta::after {
    display: none;
}

.nav__toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--green-800);
}

.nav__toggle-icon {
    width: 24px;
    height: 24px;
}

/* Mobile overlay */
.mobile-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(13, 59, 36, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    transition: opacity var(--transition);
}

.mobile-overlay.active {
    opacity: 1;
}

/* ============================================
   Hero
============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 30%, var(--green-700) 60%, var(--green-600) 100%);
    padding-top: 72px;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(52, 184, 116, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(42, 157, 96, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 60% 90%, rgba(13, 59, 36, 0.4) 0%, transparent 50%);
    pointer-events: none;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--green-200);
    padding: 8px 18px;
    border-radius: 100px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
}

.hero__badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--green-400);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__title {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero__title-accent {
    color: var(--green-300);
    font-style: italic;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 36px;
}

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

.hero__trust {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.88rem;
    font-weight: 500;
}

.hero__trust-item svg {
    width: 18px;
    height: 18px;
    color: var(--green-400);
    flex-shrink: 0;
}

.hero__image {
    position: relative;
    z-index: 2;
}

.hero__image img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero__image::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: calc(var(--radius-xl) + 1px);
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
}

/* ============================================
   Buttons
============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
    text-decoration: none;
    white-space: nowrap;
}

.btn svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

.btn--primary {
    background: var(--white);
    color: var(--green-800);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn--primary:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
}

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

.btn--outline-light {
    background: transparent;
    color: var(--green-700);
    border: 2px solid var(--green-300);
}

.btn--outline-light:hover {
    background: var(--green-100);
    border-color: var(--green-500);
    transform: translateY(-2px);
}

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

.btn--light:hover {
    background: var(--green-50);
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn--ghost-light {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

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

/* ============================================
   Section Shared
============================================ */
.section__label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--green-600);
    margin-bottom: 12px;
}

.section__title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 800;
    color: var(--warm-gray-700);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.05rem;
    color: var(--warm-gray-400);
    line-height: 1.7;
    max-width: 560px;
}

/* ============================================
   Services
============================================ */
.services {
    padding: 120px 0;
    background: var(--cream);
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__header .section__subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--warm-gray-200);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-600), var(--green-400));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--green-200);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card__icon {
    width: 52px;
    height: 52px;
    background: var(--green-50);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--green-700);
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--green-100);
    color: var(--green-600);
}

.service-card__icon svg {
    width: 24px;
    height: 24px;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--warm-gray-700);
    margin-bottom: 10px;
    letter-spacing: -0.01em;
}

.service-card p {
    font-size: 0.92rem;
    color: var(--warm-gray-400);
    line-height: 1.7;
}

/* ============================================
   Why Us
============================================ */
.why-us {
    padding: 120px 0;
    background: var(--off-white);
}

.why-us__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us__image-col {
    position: relative;
}

.why-us__image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.why-us__image-main img {
    width: 100%;
    height: 640px;
    object-fit: cover;
}

.why-us__image-float {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 6px solid var(--off-white);
}

.why-us__image-float img {
    width: 320px;
    height: 220px;
    object-fit: cover;
}

.why-us__content {
    padding: 20px 0;
}

.why-us__content .section__subtitle {
    margin-bottom: 40px;
}

.why-us__features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.why-feature__mark {
    width: 32px;
    height: 32px;
    min-width: 32px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
    margin-top: 2px;
}

.why-feature__mark svg {
    width: 16px;
    height: 16px;
}

.why-feature h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--warm-gray-700);
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 0.9rem;
    color: var(--warm-gray-400);
    line-height: 1.65;
}

/* ============================================
   Insurance
============================================ */
.insurance {
    padding: 100px 0;
    background: var(--green-800);
    position: relative;
    overflow: hidden;
}

.insurance::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 60% 50% at 0% 50%, rgba(52, 184, 116, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse 40% 40% at 100% 100%, rgba(13, 59, 36, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.insurance__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.insurance__content .section__label {
    color: var(--green-400);
}

.insurance__content .section__title {
    color: var(--white);
}

.insurance__content .section__subtitle {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 32px;
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all var(--transition);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
}

.stat-card__number {
    font-family: var(--font-display);
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--green-300);
    letter-spacing: -0.03em;
    margin-bottom: 8px;
}

.stat-card__label {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.4;
}

/* ============================================
   Location
============================================ */
.location {
    padding: 120px 0;
    background: var(--cream);
}

.location__layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.location__info {
    padding: 40px 0;
}

.location__info .section__subtitle {
    margin-bottom: 40px;
}

.location__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.location__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.location__detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--green-100);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-700);
}

.location__detail-icon svg {
    width: 20px;
    height: 20px;
}

.location__detail strong {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--green-700);
    margin-bottom: 4px;
}

.location__detail span,
.location__detail a {
    font-size: 0.95rem;
    color: var(--warm-gray-500);
    line-height: 1.6;
}

.location__detail a:hover {
    color: var(--green-700);
    text-decoration: underline;
}

.location__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    min-height: 480px;
}

.location__map iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
}

/* ============================================
   CTA
============================================ */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--green-900) 0%, var(--green-800) 50%, var(--green-700) 100%);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(52, 184, 116, 0.2) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(13, 59, 36, 0.3) 0%, transparent 50%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 20px;
}

.cta__subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
    margin-bottom: 40px;
}

.cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Footer
============================================ */
.footer {
    background: var(--warm-gray-700);
    padding: 80px 0 0;
    color: rgba(255, 255, 255, 0.6);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo-icon {
    width: 28px;
    height: 28px;
    color: var(--green-400);
}

.footer__tagline {
    font-size: 0.92rem;
    line-height: 1.7;
    max-width: 360px;
    color: rgba(255, 255, 255, 0.5);
}

.footer__links {
    display: flex;
    gap: 60px;
}

.footer__link-col h4 {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 20px;
}

.footer__link-col a {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer__link-col a:hover {
    color: var(--green-400);
}

.footer__bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
    transition: color var(--transition);
}

.footer__bottom a:hover {
    color: var(--green-400);
}

/* ============================================
   Scroll Animations
============================================ */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ============================================
   Responsive
============================================ */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero__subtitle {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero__actions {
        justify-content: center;
    }
    
    .hero__trust {
        justify-content: center;
    }
    
    .hero__image {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero__image img {
        height: 500px;
    }
    
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .why-us__layout {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .why-us__image-float {
        right: 20px;
        bottom: -20px;
    }
    
    .insurance__inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .location__layout {
        grid-template-columns: 1fr;
    }
    
    .location__map {
        min-height: 360px;
    }
    
    .location__map iframe {
        min-height: 360px;
    }
}

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 360px;
        height: 100vh;
        background: var(--cream);
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 40px;
        gap: 8px;
        transition: right var(--transition);
        box-shadow: var(--shadow-xl);
        z-index: 999;
    }
    
    .nav__menu.open {
        right: 0;
    }
    
    .nav__link {
        font-size: 1.1rem;
        color: var(--warm-gray-600);
        padding: 12px 0;
    }
    
    .nav__cta {
        margin-top: 16px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .nav__toggle {
        display: block;
        z-index: 1001;
    }
    
    .mobile-overlay {
        display: block;
    }
    
    .mobile-overlay.active {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero__content {
        padding: 0 24px;
    }
    
    .hero__image {
        display: none;
    }
    
    .services {
        padding: 80px 0;
    }
    
    .services__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .service-card {
        padding: 28px 24px;
    }
    
    .why-us {
        padding: 80px 0;
    }
    
    .why-us__image-main img {
        height: 400px;
    }
    
    .why-us__image-float {
        display: none;
    }
    
    .insurance {
        padding: 80px 0;
    }
    
    .insurance__stats {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .stat-card {
        padding: 24px 20px;
    }
    
    .location {
        padding: 80px 0;
    }
    
    .cta {
        padding: 80px 0;
    }
    
    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer__links {
        gap: 40px;
    }
    
    .footer__bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.2rem;
    }
    
    .hero__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero__trust {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .section__title {
        font-size: 1.8rem;
    }
    
    .cta__actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cta__actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .footer__links {
        flex-direction: column;
        gap: 32px;
    }
}
