/* ═══════════════════════════════════════════════════════════
   Ryft Workout — Component Styles
   ═══════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────
   HEADER / NAVIGATION
   ───────────────────────────────────────────────────────── */
.header {
    position: fixed;
    inset-inline: 0;
    top: 0;
    z-index: var(--z-sticky);
    padding-block: var(--space-md);
    transition: background var(--duration-base) var(--ease-default),
        box-shadow var(--duration-base) var(--ease-default);
}

.header.scrolled {
    background: rgba(11, 17, 24, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 1px 0 var(--color-border);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo */
.header__logo {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
}

.header__logo-icon {
    width: 36px;
    height: 18px;
    flex-shrink: 0;
}

.header__logo-text {
    font-family: 'Evolution Workout', var(--font-primary);
    font-size: 1.05rem;
    font-weight: normal;
    color: var(--color-text-primary);
    letter-spacing: 0.02em;
    line-height: 1;
    transform: translateY(1px);
}

.header__logo-text span {
    color: var(--color-accent);
}

/* Desktop Nav */
.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.header__nav-link {
    font-size: var(--fs-small);
    font-weight: var(--fw-medium);
    color: var(--color-text-muted);
    letter-spacing: var(--ls-wide);
    position: relative;
    padding-block: var(--space-xs);
}

.header__nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent-gradient);
    transition: width var(--duration-base) var(--ease-default);
}

.header__nav-link:hover {
    color: var(--color-text-primary);
}

.header__nav-link:hover::after {
    width: 100%;
}

/* CTA Button */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--ls-wide);
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-full);
    transition: all var(--duration-base) var(--ease-default);
    cursor: pointer;
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-accent-gradient);
    color: var(--color-text-primary);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-strong);
}

.btn--secondary {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-border-hover);
}

.btn--secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn--large {
    padding: 1rem 2.5rem;
    font-size: var(--fs-body);
}

/* Hamburger */
.header__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: var(--space-sm);
    z-index: var(--z-modal);
}

.header__hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-primary);
    border-radius: 2px;
    transition: all var(--duration-base) var(--ease-default);
    transform-origin: center;
}

.header__hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.header__hamburger.active span:nth-child(2) {
    opacity: 0;
}

.header__hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: var(--z-overlay);
    background: rgba(11, 17, 24, 0.96);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav__link {
    font-size: var(--fs-h2);
    font-weight: var(--fw-bold);
    color: var(--color-text-primary);
    opacity: 0;
    transform: translateY(20px);
}

.mobile-nav.active .mobile-nav__link {
    animation: fadeInUp var(--duration-slow) var(--ease-out) forwards;
}

.mobile-nav.active .mobile-nav__link:nth-child(1) {
    animation-delay: 0.1s;
}

.mobile-nav.active .mobile-nav__link:nth-child(2) {
    animation-delay: 0.15s;
}

.mobile-nav.active .mobile-nav__link:nth-child(3) {
    animation-delay: 0.2s;
}

.mobile-nav.active .mobile-nav__link:nth-child(4) {
    animation-delay: 0.25s;
}

.mobile-nav.active .mobile-nav__link:nth-child(5) {
    animation-delay: 0.3s;
}


/* ─────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
}

/* Ambient background glow */
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.hero__bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(150px);
    opacity: 0.15;
}

.hero__bg-glow--1 {
    background: var(--color-accent-dark);
    top: -200px;
    right: -100px;
    animation: float 12s ease-in-out infinite;
}

.hero__bg-glow--2 {
    background: var(--color-accent-light);
    bottom: -200px;
    left: -100px;
    animation: float 15s ease-in-out infinite reverse;
}

.hero .container {
    position: relative;
    z-index: var(--z-base);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero__content {
    max-width: 560px;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.4rem 1rem;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background: var(--color-bg-glass);
    font-size: var(--fs-xs);
    font-weight: var(--fw-medium);
    color: var(--color-accent);
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(8px);
}

.hero__badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    animation: pulse 2s ease-in-out infinite;
}

.hero__title {
    font-size: var(--fs-hero);
    font-weight: var(--fw-extrabold);
    letter-spacing: var(--ls-tight);
    line-height: 1.1;
    margin-bottom: var(--space-lg);
}

.hero__subtitle {
    font-size: var(--fs-body-lg);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-2xl);
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.hero__stats {
    display: flex;
    gap: var(--space-2xl);
    align-items: center;
}

.hero__stat {
    text-align: center;
}

.hero__stat-value {
    font-size: var(--fs-h2);
    font-weight: var(--fw-extrabold);
    color: var(--color-text-primary);
}

.hero__stat-label {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
    margin-top: var(--space-xs);
}

/* Hero Phone Mockup */
.hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero__phone {
    position: relative;
    width: 280px;
    height: 600px;
}

.hero__phone-frame {
    position: absolute;
    top: 0;
    left: 50%;
    width: 420px;
    height: 900px;
    transform: translateX(-50%) scale(0.6666667);
    transform-origin: top center;
    border-radius: 48px;
    box-shadow: 0 45px 60px -15px rgba(0, 0, 0, 0.5), 0 0 60px var(--color-accent-glow);
    border: 1.5px solid var(--color-border);
    background-color: #111820;
}

.hero__phone-glow {
    position: absolute;
    inset: -20%;
    background: radial-gradient(circle, var(--color-accent-glow) 0%, transparent 70%);
    z-index: -1;
    animation: pulse-slow 4s ease-in-out infinite;
}


/* ─────────────────────────────────────────────────────────
   FEATURES SECTION
   ───────────────────────────────────────────────────────── */
.features {
    background: var(--color-bg-secondary);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
}

.features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
}

.feature-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    transition: all var(--duration-base) var(--ease-default);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--color-accent-gradient);
    opacity: 0;
    transition: opacity var(--duration-base) var(--ease-default);
}

.feature-card:hover {
    border-color: var(--color-border-hover);
    background: var(--color-bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: rgba(51, 170, 226, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
    color: var(--color-accent);
}

.feature-card__icon svg {
    width: 24px;
    height: 24px;
}

.feature-card__title {
    font-size: var(--fs-h3);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.feature-card__text {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
}


/* ─────────────────────────────────────────────────────────
   SCIENCE / RESEARCH SECTION
   ───────────────────────────────────────────────────────── */
.science {
    position: relative;
}

.science__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.science-card {
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    position: relative;
    overflow: hidden;
    transition: all var(--duration-base) var(--ease-default);
}

.science-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-glow);
}

.science-card__stat {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: var(--fw-extrabold);
    background: var(--color-accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: var(--space-xs);
}

.science-card__highlight {
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: var(--ls-wide);
    margin-bottom: var(--space-lg);
}

.science-card__text {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-lg);
}

.science-card__source {
    font-size: var(--fs-xs);
    color: var(--color-text-dim);
    font-style: italic;
    padding-top: var(--space-sm);
    border-top: 1px solid var(--color-border);
}

.science__conclusion {
    text-align: center;
    padding: var(--space-xl) var(--space-2xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-accent-dark);
    background: linear-gradient(135deg, rgba(36, 126, 193, 0.08), rgba(24, 184, 222, 0.08));
    font-size: var(--fs-body-lg);
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    max-width: 800px;
    margin-inline: auto;
}

@media (max-width: 1024px) {
    .science__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .science__grid {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────────────
   SHOWCASE / SCREENSHOT SECTION
   ───────────────────────────────────────────────────────── */
.showcase {
    overflow: hidden;
}

.showcase__carousel {
    display: flex;
    gap: var(--space-xl);
    padding-block: var(--space-xl);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-inline: var(--space-xl);
}

@media (min-width: 1025px) {
    .showcase__carousel {
        justify-content: center;
    }
}

.showcase__carousel::-webkit-scrollbar {
    display: none;
}

.showcase__slide {
    flex: 0 0 auto;
    width: 260px;
    scroll-snap-align: start;
    position: relative;
    transition: transform var(--duration-slow) var(--ease-default);
}

.showcase__slide:hover {
    transform: scale(1.04);
}

.showcase__slide img {
    width: 100%;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
}


/* ─────────────────────────────────────────────────────────
   HOW IT WORKS
   ───────────────────────────────────────────────────────── */
.how-it-works {
    background: var(--color-bg-secondary);
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-2xl);
    position: relative;
}

/* Connector line */
.steps::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-accent-dark), var(--color-accent-light), var(--color-accent-dark));
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
}

.step__number {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--color-bg-card);
    border: 2px solid var(--color-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-xl);
    font-size: var(--fs-h2);
    font-weight: var(--fw-extrabold);
    color: var(--color-accent);
    position: relative;
    z-index: var(--z-base);
    box-shadow: var(--shadow-glow);
}

.step__title {
    font-size: var(--fs-h3);
    font-weight: var(--fw-semibold);
    margin-bottom: var(--space-sm);
}

.step__text {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    max-width: 300px;
    margin-inline: auto;
}


/* ─────────────────────────────────────────────────────────
   TESTIMONIALS
   ───────────────────────────────────────────────────────── */
.testimonials__grid {
    display: flex;
    gap: var(--space-xl);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: var(--space-md);
    padding-inline: var(--space-xl);
}

.testimonials__grid::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    flex: 0 0 340px;
    padding: var(--space-xl);
    border-radius: var(--radius-xl);
    border: 1px solid var(--color-border);
    background: var(--color-bg-card);
    transition: all var(--duration-base) var(--ease-default);
    position: relative;
}

.testimonial-card:hover {
    border-color: var(--color-border-hover);
    transform: translateY(-4px);
}

.testimonial-card__stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-lg);
}

.testimonial-card__stars svg {
    width: 16px;
    height: 16px;
    fill: var(--color-accent);
}

.testimonial-card__quote {
    font-size: var(--fs-body);
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--space-xl);
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-card__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: var(--fw-bold);
    font-size: var(--fs-body-lg);
    color: var(--color-text-primary);
}

.testimonial-card__name {
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    font-size: var(--fs-small);
}

.testimonial-card__role {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}


/* ─────────────────────────────────────────────────────────
   DOWNLOAD / CTA SECTION
   ───────────────────────────────────────────────────────── */
.download {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.download__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.download__bg-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: var(--color-accent-dark);
    filter: blur(200px);
    opacity: 0.12;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.download .container {
    position: relative;
    z-index: var(--z-base);
}

.download__title {
    font-size: var(--fs-h1);
    font-weight: var(--fw-extrabold);
    letter-spacing: var(--ls-tight);
    margin-bottom: var(--space-md);
}

.download__subtitle {
    font-size: var(--fs-body-lg);
    color: var(--color-text-muted);
    max-width: 540px;
    margin-inline: auto;
    margin-bottom: var(--space-2xl);
    line-height: var(--lh-relaxed);
}

.download__stores {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    flex-wrap: wrap;
}

.store-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border-hover);
    background: var(--color-bg-card);
    transition: all var(--duration-base) var(--ease-default);
}

.store-badge:hover {
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.store-badge__icon svg {
    width: 24px;
    height: 24px;
}

.store-badge__text-small {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.store-badge__text-large {
    font-size: var(--fs-body);
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
}


/* ─────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────── */
.footer {
    border-top: 1px solid var(--color-border);
    background: var(--color-bg-secondary);
    padding-block: var(--space-3xl) var(--space-xl);
}

.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: var(--space-2xl);
}

.footer__brand-text {
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    line-height: var(--lh-relaxed);
    max-width: 320px;
    margin-top: var(--space-md);
}

.footer__heading {
    font-size: var(--fs-small);
    font-weight: var(--fw-semibold);
    color: var(--color-text-primary);
    margin-bottom: var(--space-lg);
    letter-spacing: var(--ls-wide);
    text-transform: uppercase;
}

.footer__link {
    display: block;
    font-size: var(--fs-small);
    color: var(--color-text-muted);
    padding-block: var(--space-xs);
    transition: color var(--duration-fast) var(--ease-default);
}

.footer__link:hover {
    color: var(--color-accent);
}

.footer__bottom {
    grid-column: 1 / -1;
    border-top: 1px solid var(--color-border);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__copyright {
    font-size: var(--fs-xs);
    color: var(--color-text-dim);
}

.footer__social {
    display: flex;
    gap: var(--space-md);
}

.footer__social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: all var(--duration-fast) var(--ease-default);
}

.footer__social-link:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
    background: rgba(51, 170, 226, 0.1);
}

.footer__social-link svg {
    width: 16px;
    height: 16px;
}


/* ─────────────────────────────────────────────────────────
   ANIMATIONS
   ───────────────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    33% {
        transform: translateY(-20px) translateX(10px);
    }

    66% {
        transform: translateY(10px) translateX(-10px);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 0.4;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% center;
    }

    100% {
        background-position: 200% center;
    }
}

/* Scroll-reveal helper */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity var(--duration-slower) var(--ease-out),
        transform var(--duration-slower) var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal--delay-1 {
    transition-delay: 100ms;
}

.reveal--delay-2 {
    transition-delay: 200ms;
}

.reveal--delay-3 {
    transition-delay: 300ms;
}

.reveal--delay-4 {
    transition-delay: 400ms;
}

.reveal--delay-5 {
    transition-delay: 500ms;
}

.reveal--delay-6 {
    transition-delay: 600ms;
}


/* ─────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .features__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps {
        grid-template-columns: repeat(2, 1fr);
    }

    .steps::before {
        display: none;
    }



    .footer .container {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .header__nav {
        display: none;
    }

    .header__hamburger {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: var(--space-4xl);
    }

    .hero__content {
        max-width: 100%;
    }

    .hero__subtitle {
        margin-inline: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__visual {
        order: -1;
        margin-bottom: var(--space-xl);
    }

    .hero__phone {
        width: 220px;
        height: 471.4px;
        margin: 0 auto;
    }

    .hero__phone-frame {
        transform: translateX(-50%) scale(0.523809);
    }

    .features__grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }



    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer__brand-text {
        margin-inline: auto;
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .hero__phone {
        width: 180px;
    }

    .hero__stats {
        flex-direction: column;
        gap: var(--space-lg);
        align-items: center;
    }

    .hero__stat {
        text-align: center;
    }

    .download__stores {
        flex-direction: column;
        align-items: center;
    }
}