/* ══════════════════════════════════════════════
   HealClub — Styles
   Primary: #B61E1D
   ══════════════════════════════════════════════ */

/* ─── Reset & Root ─── */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #B61E1D;
  --primary-dark: #8e1716;
  --primary-light: #d94342;
  --primary-glow: rgba(182, 30, 29, 0.25);

  --bg: #ffffff;
  --bg-alt: #f7f7f8;
  --bg-card: #ffffff;
  --bg-card-alt: #fafafa;
  --border: #e5e5e5;
  --border-light: #eeeeee;
  --text: #1a1a1a;
  --text-soft: #444444;
  --text-muted: #777777;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-full: 9999px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 30px var(--primary-glow);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-primary {
  color: var(--primary);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.btn:hover {
  opacity: 0.8;
  transition: var(--transition);
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

.btn--primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 0 60px var(--primary-glow);
}

.btn--outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}

.btn--outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background: var(--white);
  color: var(--text);
}

.btn--white:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

.btn--outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn--outline-white:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-2px);
}

.btn--dark {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn--dark:hover {
  background: #000;
  transform: translateY(-2px);
}

.btn__icon {
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn--lg {
  padding: 16px 40px;
  font-size: 1.05rem;
}

/* ═══════════════════════════════════════
   NAVBAR
   ═══════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar--scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
}

.navbar__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar__logo-img {
  height: 30px;
  width: auto;
  transition: filter 0.3s ease;
  filter: brightness(0) invert(1);
}

.navbar--scrolled .navbar__logo-img {
  filter: invert(15%) sepia(95%) saturate(4500%) hue-rotate(355deg) brightness(80%) contrast(100%);
}

.loginBtn {
  padding: 18px 18px;
  background: var(--primary);
  color: var(--white);
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  cursor: pointer;
}

.loginBtn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
}

.navbar__menu {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}

.navbar__link {
  padding: 18px 18px;
  border-radius: 14px;
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
  color: rgba(255, 255, 255, 0.85);
}

.navbar--scrolled .navbar__link {
  color: var(--text-soft);
}

.navbar__link:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.navbar--scrolled .navbar__link:hover {
  color: var(--text);
  background: rgba(0, 0, 0, 0.05);
}

.navbar__link--cta {
  background: var(--primary);
  color: var(--white) !important;
  margin-left: 8px;
}

.navbar__link--cta:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-glow);
}

/* Hamburger */
.navbar__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.navbar__toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

.navbar--scrolled .navbar__toggle span {
  background: var(--text);
}

/* ═══════════════════════════════════════
   HERO / SWIPER CAROUSEL
   ═══════════════════════════════════════ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-slide {
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  position: relative;
}

.carousel__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 13, 13, 0.85) 0%,
      rgba(13, 13, 13, 0.5) 50%,
      rgba(182, 30, 29, 0.15) 100%);
}

.carousel__content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 0 60px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
  color: #ffffff;
}

.swiper-slide-active .carousel__content {
  opacity: 1;
  transform: translateY(0);
}

.carousel__badge {
  display: inline-block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-light);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.carousel__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 20px;
  letter-spacing: -1px;
}

.carousel__subtitle {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  line-height: 1.7;
  max-width: 480px;
}

/* Swiper navigation arrows */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(13, 13, 13, 0.5);
  backdrop-filter: blur(10px);
  transition: var(--transition);
}

.hero-swiper .swiper-button-prev::after,
.hero-swiper .swiper-button-next::after {
  font-size: 1.2rem;
  color: #ffffff;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: var(--shadow-glow);
}

/* Swiper pagination dots */
.hero-swiper .swiper-pagination {
  bottom: 36px !important;
}

.hero-swiper .swiper-pagination-bullet {
  width: 22px;
  height: 5px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  transition: var(--transition);
  border-radius: 14px;
}

.hero-swiper .swiper-pagination-bullet-active {
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary-glow);
  transform: scale(1.2);
}

/* ═══════════════════════════════════════
   SECTIONS (common)
   ═══════════════════════════════════════ */
section {
  padding: 100px 0;
}

.section-badge {
  display: inline-block;
  font-family: 'Inconsolata', monospace;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 0.95;
  margin-bottom: 48px;
  letter-spacing: -0.5px;
  color: var(--text);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  margin-bottom: 48px;
}

.features,
.events,
.testimonials {
  text-align: center;
}

/* ═══════════════════════════════════════
   FEATURES
   ═══════════════════════════════════════ */
.features {
  background: var(--bg);
  position: relative;
  overflow: hidden;
}

.features__pearl {
  position: absolute;
  top: -140px;
  left: -140px;
  width: 350px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 0;
  transform: rotate(30deg);
}

@media (max-width: 768px) {
  .features__pearl {
    display: none;
  }
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 28px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(182, 30, 29, 0.3);
  box-shadow: var(--shadow-lg), 0 0 30px rgba(182, 30, 29, 0.06);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-card__icon {
  font-size: 2.5rem;
  margin-bottom: 20px;
  display: block;
  color: var(--primary);
}

.feature-card__icon i {
  font-size: 2.8rem;
  line-height: 1;
}

.feature-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card__text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   EVENTS
   ═══════════════════════════════════════ */
.events {
  background: var(--bg-alt);
}

.events__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.event-card {
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid var(--border);
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.event-card__image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-card__date {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--primary);
  color: var(--white);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.event-card__body {
  padding: 24px;
  text-align: left;
}

.event-card__title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
}

.event-card__info {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   PRICING
   ═══════════════════════════════════════ */
.pricing {
  background: var(--bg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pricing__shell {
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 500px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
  transform: rotate(-30deg);
}

@media (max-width: 768px) {
  .pricing__shell {
    display: none;
  }
}

.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  align-items: center;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(40px);
  -webkit-backdrop-filter: blur(40px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}



.pricing-card--featured {
  background: linear-gradient(135deg, var(--bg-card) 0%, rgba(182, 30, 29, 0.06) 100%);
  border-color: var(--primary);
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
}


.pricing-card__popular {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card__header {
  margin-bottom: 24px;
}

.pricing-card__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--text);
}

.pricing-card__desc {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.pricing-card__price {
  margin-bottom: 32px;
}

.pricing-card__amount {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--text);
}

.pricing-card__period {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.pricing-card__features {
  list-style: none;
  text-align: left;
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-card__features li {
  font-size: 0.9rem;
  color: var(--text-soft);
  padding-left: 4px;
}

.pricing-card__features li.disabled {
  color: var(--text-muted);
  opacity: 0.45;
}

.pricing-card .btn {
  width: 100%;
  justify-content: center;
}

/* ═══════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════ */
.testimonials {
  background: var(--bg-alt);
}

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: left;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 30, 29, 0.3);
}

.testimonial-card__stars {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.testimonial-card__text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  border: 2px solid var(--primary);
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
}

.testimonial-card__author span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* ═══════════════════════════════════════
   DOWNLOAD CTA
   ═══════════════════════════════════════ */
.download {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.download::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 80%, rgba(0, 0, 0, 0.2) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
}

.download__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.download__title {
  font-family: var(--font-display);
  color: #FFF;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 12px;
}

.download__text {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.download__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.download__web-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.download__web-link:hover {
  color: #fff;
}

.download__web-link i {
  font-size: 1.2rem;
}

/* ═══════════════════════════════════════
   FAQ
   ═══════════════════════════════════════ */
.faq {
  background: var(--bg);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: rgba(182, 30, 29, 0.3);
}

.faq-item.active {
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(182, 30, 29, 0.08);
}

.faq-item__header {
  width: 100%;
  text-align: left;
  background: transparent;
  border: none;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  color: var(--text);
  font-family: var(--font-body);
  transition: var(--transition);
}

.faq-item__title {
  font-weight: 600;
  font-size: 1.05rem;
}

.faq-item.active .faq-item__title {
  color: var(--primary);
}

.faq-item__icon {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
  color: var(--primary);
}

.faq-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-item__content {
  grid-template-rows: 1fr;
}

.faq-item__content-inner {
  overflow: hidden;
  padding: 0 24px;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.4s ease, transform 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-item__content-inner {
  padding: 0 24px 24px;
  opacity: 1;
  transform: translateY(0);
}

.faq-item__text {
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════ */
.footer {
  background: #1a1a1a;
  padding: 64px 0 28px;
  border-top: 1px solid #2e2e2e;
  color: #ffffff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__desc {
  color: #999;
  font-size: 0.9rem;
  margin-top: 16px;
  line-height: 1.6;
  max-width: 280px;
}

.footer__logo-img {
  height: 30px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}

.footer__links h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  margin-bottom: 16px;
  color: #ffffff;
}

.footer__links a {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  color: #999;
  padding: 4px 0;
  transition: var(--transition);
}

.footer__links a:hover {
  color: var(--primary-light);
  padding-left: 4px;
}

.footer__contact-icon {
  font-size: 1.25rem;
  vertical-align: middle;
  margin-right: 4px;
}

.footer__bottom {
  border-top: 1px solid #2e2e2e;
  padding-top: 24px;
  text-align: center;
  font-size: 0.82rem;
  color: #999;
}

/* ═══════════════════════════════════════
   ANIMATIONS (scroll reveal)
   ═══════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════ */
@media (max-width: 1024px) {

  .features__grid,
  .events__grid,
  .pricing__grid,
  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-card--featured {
    transform: scale(1);
  }


  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .navbar__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--bg);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: var(--transition-slow);
    border-left: 1px solid var(--border);
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
  }

  .navbar__menu .navbar__link {
    color: var(--text-soft);
  }

  .navbar__menu .navbar__link:hover {
    color: var(--text);
    background: rgba(0, 0, 0, 0.05);
  }

  .navbar__menu.open {
    right: 0;
  }

  .navbar__toggle {
    display: flex;
    z-index: 1001;
    position: relative;
  }

  .navbar__toggle.open span {
    background: var(--text);
  }

  .navbar__toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .navbar__toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .navbar__toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .navbar__link {
    width: 100%;
    padding: 14px 18px;
  }

  .navbar__link--cta {
    margin-left: 0;
    text-align: center;
    justify-content: center;
  }

  .carousel__content {
    padding: 0 24px;
  }

  .carousel__btn {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }

  .carousel__btn--prev {
    left: 12px;
  }

  .carousel__btn--next {
    right: 12px;
  }

  .features__grid,
  .events__grid,
  .testimonials__grid {
    grid-template-columns: 1fr;
  }

  .pricing__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  section {
    padding: 64px 0;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 500px;
  }

  .carousel__title {
    font-size: 2.2rem;
  }

  .download__buttons {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 260px;
  }

  .download__buttons .btn {
    justify-content: center;
  }
}

/* ═══════════════════════════════════════
   COOKIE CONSENT BANNER
   ═══════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  max-width: 380px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  animation: cookieSlideIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.cookie-banner--hidden {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
  pointer-events: none;
}

@keyframes cookieSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.cookie-banner__icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.cookie-banner__title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.cookie-banner__text {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
}

.cookie-banner__text a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-banner__text a:hover {
  color: var(--primary-dark);
}

.cookie-banner__actions {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner__btn {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition);
  border: 1px solid transparent;
  text-align: center;
}

.cookie-banner__btn--accept {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

.cookie-banner__btn--accept:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-glow);
}

.cookie-banner__btn--reject {
  background: transparent;
  color: var(--text-soft);
  border-color: var(--border);
}

.cookie-banner__btn--reject:hover {
  background: var(--bg-alt);
  color: var(--text);
  border-color: var(--text-muted);
}

/* Floating cookie button */
.cookie-fab {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: var(--transition);
}

.cookie-fab:hover {
  color: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 4px 20px rgba(182, 30, 29, 0.15);
  transform: scale(1.1);
}

@media (max-width: 480px) {
  .cookie-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    max-width: none;
    padding: 20px;
  }
}