/* ============================================
   VIGOR Landing Page - Base & Fonts
   ============================================ */

@font-face {
  font-family: 'Pro Racing';
  src: url('../Fonts/Pro Racing.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  src: url('../Fonts/Poppins-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-dark: #111111;
  --bg-card: #141416;
  --red: #ff0000;
  --red-hover: #e60000;
  --blue: #3b82f6;
  --blue-20: rgba(59, 130, 246, 0.2);
  --red-20: rgba(255, 0, 0, 0.2);
  --blue-glow: rgba(59, 130, 246, 0.09);
  --red-glow: rgba(255, 0, 0, 0.09);
  --text-white: #ffffff;
  --text-muted: rgba(255, 255, 255, 0.7);
  --font-heading: 'Pro Racing', sans-serif;
  --font-body: 'Poppins', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 40%, var(--blue-glow) 0%, transparent 50%),
    radial-gradient(ellipse 60% 40% at 80% 60%, var(--red-glow) 0%, transparent 50%);
  pointer-events: none;
}

body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: 
    radial-gradient(circle at 30% 20%, var(--red-glow) 0%, transparent 40%),
    radial-gradient(circle at 70% 80%, var(--blue-glow) 0%, transparent 40%);
  pointer-events: none;
}

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

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

/* ----- Navigation ----- */
.hero__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.875rem 2rem;
  position: relative;
  z-index: 10;
  background: #000000;
  backdrop-filter: blur(8px);
}

.hero__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 10px;
}

.hero__logo-icon {
  height: 52px;
  width: auto;
  object-fit: contain;
}

.hero__links {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.hero__links a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}

.hero__links a:hover {
  color: var(--text-white);
}

.hero__nav .hero__cta-nav {
  margin-right: 10px;
}

.hero__cta-nav {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background: var(--red);
  color: var(--text-white);
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: 999px;
  transition: background 0.2s;
}

.hero__cta-nav:hover {
  background: var(--red-hover);
}

/* Hamburger button - hidden on desktop */
.hero__menu-btn {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--text-white);
  border-radius: 8px;
  transition: background 0.2s;
  z-index: 12;
}

.hero__menu-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.hero__menu-bar {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.hero__menu-btn[aria-expanded="true"] .hero__menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hero__menu-btn[aria-expanded="true"] .hero__menu-bar:nth-child(2) {
  opacity: 0;
}

.hero__menu-btn[aria-expanded="true"] .hero__menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu overlay */
.hero__menu {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 5, 5, 0.98);
  backdrop-filter: blur(12px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  z-index: 11;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.hero__menu[aria-hidden="false"] {
  opacity: 1;
  visibility: visible;
}

.hero__menu a {
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-white);
}

.hero__menu .hero__cta-nav--menu {
  margin-top: 0.5rem;
}

/* ----- Hero content (main + phone) ----- */
.hero__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 2rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
  z-index: 5;
}

.hero__main {
  max-width: 560px;
  margin-top: -20px;
  margin-left: 0;
  padding-left: 20px;
}

.hero__headline {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}

.hero__headline .highlight {
  color: var(--red);
}

.hero__description {
  font-size: 1rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
  max-width: 420px;
}

.hero__stores {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
}

.hero__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.hero__store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.hero__store-btn--apple {
  background: #fff;
  color: #000;
}

.hero__store-btn--google {
  background: #1f1f1f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__store-btn img {
  width: 24px;
  height: 24px;
}

.hero__stats-wrap {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__stats {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-white);
}

.hero__stats .dot {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
}

.hero__stats-badge {
  padding: 0.5rem 1rem;
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.08);
}

.hero__stats-badge-text {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-white);
  white-space: nowrap;
}

/* ----- Phone mockup (iPhone 15 frame + Vigor screenshot) ----- */
.hero__phone-wrap {
  flex-shrink: 0;
  position: relative;
  margin-right: 20px;
}

.hero__phone-frame {
  position: relative;
  width: 280px;
}

.hero__phone-img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

/* Floating glassmorphic cards around phone */
.hero__float {
  position: absolute;
  padding: 0.6rem 0.9rem;
  border-radius: 14px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.15rem;
  z-index: 5;
  animation: hero-float 4s ease-in-out infinite;
}

.hero__float--growth {
  top: 8%;
  right: -16px;
  background: rgba(255, 255, 255, 0.08);
  min-width: 100px;
}

.hero__float--growth .hero__float-value {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--red);
  line-height: 1.2;
}

.hero__float--growth .hero__float-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.hero__float--pr {
  bottom: 22%;
  left: -20px;
  background: rgba(255, 0, 0, 0.12);
  border-color: rgba(255, 0, 0, 0.25);
  animation-delay: 1.2s;
}

.hero__float--pr .hero__float-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-white);
}

.hero__float--workouts {
  top: 38%;
  right: 100%;
  margin-right: 18px;
  left: auto;
  background: rgba(255, 255, 255, 0.08);
  white-space: nowrap;
  animation-delay: 0.6s;
  flex-direction: row;
  gap: 0.5rem;
  align-items: center;
}

.hero__float-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero__float-icon--cup {
  width: 22px;
  height: 22px;
  color: var(--blue);
}

.hero__float-icon--cup svg {
  width: 100%;
  height: 100%;
}

.hero__float--workouts .hero__float-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-white);
}

@keyframes hero-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* Mobile: stack content, smaller phone, hamburger */
@media (max-width: 900px) {
  .hero__nav {
    padding: 1rem 1.25rem;
  }

  .hero__links,
  .hero__nav .hero__cta-nav {
    display: none;
  }

  .hero__menu-btn {
    display: flex;
  }

  .hero__content {
    flex-direction: column;
    text-align: center;
    padding: 2rem 1.25rem 3rem;
  }

  .hero__main {
    max-width: 100%;
    margin-top: 0;
    margin-left: 0;
  }

  .hero__description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__stores {
    justify-content: center;
  }

  .hero__stats-wrap {
    justify-content: center;
  }

  .hero__stats {
    justify-content: center;
  }

  .hero__phone-frame {
    width: 240px;
  }

  .hero__float {
    display: none;
  }
}

/* ============================================
   SECTION: Özellikler / Antrenmanını Yönet
   ============================================ */

.features {
  padding: 5rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.features__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
}

.features__title-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.features__label {
  font-family: 'Pro Racing', var(--font-heading), sans-serif;
  font-size: 0.875rem;
  font-weight: normal;
  color: var(--red);
  letter-spacing: 0.06em;
}

.features__title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  color: var(--text-white);
  letter-spacing: 0.02em;
  text-align: left;
}

.features__title-line2 {
  display: block;
  color: var(--text-muted);
  margin-top: 0.15em;
}

.features__intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 420px;
  text-align: right;
  margin: 0;
}

/* Feature cards grid - birebir tasarım */
.f-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto auto;
  gap: 1.25rem;
  margin-top: 3rem;
}

.f-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  min-height: 140px;
}

.f-card--hero {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
  background: var(--red);
  border-color: transparent;
  padding: 1.75rem;
  justify-content: space-between;
  min-height: auto;
}

.f-card:nth-child(2) { grid-column: 3; grid-row: 1; }
.f-card:nth-child(3) { grid-column: 4; grid-row: 1; }
.f-card--merged { grid-column: 3 / 5; grid-row: 2; }
.f-card:nth-child(5) { grid-column: 1; grid-row: 3; }
.f-card:nth-child(6) { grid-column: 2; grid-row: 3; }
.f-card:nth-child(7) { grid-column: 3; grid-row: 3; }
.f-card:nth-child(8) { grid-column: 4; grid-row: 3; }

.f-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.f-card__icon svg {
  width: 22px;
  height: 22px;
}

.f-card__icon--white {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

.f-card__icon--red {
  background: rgba(255, 0, 0, 0.2);
  color: var(--red);
}

.f-card__icon--blue {
  background: rgba(59, 130, 246, 0.2);
  color: var(--blue);
}

.f-card__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
  margin: 0;
  line-height: 1.3;
  font-family: 'Poppins', var(--font-body), sans-serif;
}

.f-card--hero .f-card__title {
  font-family: 'Pro Racing', var(--font-heading), sans-serif;
  font-weight: normal;
  color: #fff;
}

.f-card__desc {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
  flex: 1;
  font-family: 'Poppins', var(--font-body), sans-serif;
}

.f-card--hero .f-card__desc {
  color: #fff;
  opacity: 0.95;
}

.f-card__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;
  font-family: 'Poppins', var(--font-body), sans-serif;
}

.f-card__link:hover {
  text-decoration: underline;
}

.f-card--merged {
  flex-direction: row;
  align-items: stretch;
  gap: 1.5rem;
  min-height: 140px;
}

.f-card__main {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.f-card__stat {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  gap: 0.25rem;
  flex-shrink: 0;
  padding-left: 1.25rem;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.f-card__stat-value {
  font-size: 2rem;
  font-weight: 600;
  color: var(--blue);
  line-height: 1.2;
  font-family: 'Poppins', var(--font-body), sans-serif;
}

.f-card__stat-label {
  font-size: 0.9rem;
  color: var(--text-white);
  font-weight: 500;
  font-family: 'Poppins', var(--font-body), sans-serif;
}

@media (max-width: 900px) {
  .features {
    padding: 3.5rem 1.25rem 3rem;
  }

  .features__header {
    flex-direction: column;
    gap: 1.25rem;
  }

  .features__intro {
    text-align: left;
    max-width: 100%;
  }

  .f-grid {
    grid-template-columns: 1fr;
    margin-top: 2rem;
  }

  .f-card--hero,
  .f-card:nth-child(2),
  .f-card:nth-child(3),
  .f-card--merged,
  .f-card:nth-child(5),
  .f-card:nth-child(6),
  .f-card:nth-child(7),
  .f-card:nth-child(8) {
    grid-column: 1;
    grid-row: auto;
  }

  .f-card--hero {
    min-height: 180px;
  }

  .f-card--merged {
    flex-direction: column;
    align-items: flex-start;
  }

  .f-card__stat {
    align-items: flex-start;
    padding-left: 0;
    padding-top: 0.75rem;
    border-left: none;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* ============================================
   SECTION: Her Ekranda Güç (5 ekran)
   ============================================ */

.screens {
  padding: 5rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
  position: relative;
}

/* Layer 1 (back): screens */
.screens__row {
  position: relative;
  z-index: 1;
  padding-top: 14rem;
}

/* Layer 3 (front): yazılar */
.screens__top {
  position: absolute;
  top: 5rem;
  left: 0;
  right: 0;
  z-index: 3;
}

.screens__label {
  font-family: 'Pro Racing', var(--font-heading), sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: var(--red);
  text-align: center;
  margin: 0 0 0.5rem;
}

.screens__title {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 60px;
  font-weight: 700;
  color: var(--text-white);
  text-align: center;
  margin: 0;
  line-height: 1.2;
}

.screens__title-accent {
  color: var(--red);
}

.screens__row {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.screens__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  flex: 0 1 auto;
}

.screens__phone {
  width: 160px;
  border-radius: 15px;
  overflow: hidden;
  background: #1a1a1c;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 24px rgba(255, 255, 255, 0.08),
    0 0 48px rgba(255, 255, 255, 0.04);
}

/* Sadece soldaki ekran: yukarıdan aşağıya transparan → siyah %60 */
.screens__phone--gradient {
  position: relative;
}
.screens__phone--gradient::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.screens__phone img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: middle;
}

.screens__caption {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
  max-width: 180px;
}

.screens__name {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
}

.screens__desc {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 10px;
  font-weight: 400;
  color: #666666;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .screens__title {
    font-size: 2.25rem;
  }

  .screens__row {
    gap: 1.25rem;
    justify-content: center;
  }

  .screens__phone {
    width: 130px;
  }
}

/* ============================================
   SECTION: Neden Vigor?
   ============================================ */

.why-vigor {
  padding: 5rem 2rem 4rem;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.why-vigor__inner {
  display: flex;
  align-items: flex-end;
  gap: 3rem;
  width: 100%;
}

.why-vigor__content {
  flex: 1;
  min-width: 0;
}

.why-vigor__frame {
  flex-shrink: 0;
  width: 550px;
}

.why-vigor__frame-inner {
  position: relative;
  width: 550px;
  height: 490px;
  border-radius: 40px;
  overflow: hidden;
  background: #0a0a0a;
  display: flex;
  align-items: center;
  justify-content: center;
}

.why-vigor__frame-photo {
  width: 480px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.why-vigor__frame-img {
  display: block;
  width: 480px;
  height: 430px;
  object-fit: contain;
  vertical-align: middle;
}

.why-vigor__frame-caption {
  margin: 0;
  margin-top: 0.75rem;
  text-align: left;
  width: 100%;
}

.why-vigor__frame-quote {
  margin: 0;
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: var(--text-white);
  line-height: 1.35;
}

@media (max-width: 900px) {
  .why-vigor__inner {
    flex-direction: column;
    align-items: stretch;
  }
  .why-vigor__frame {
    width: 100%;
    max-width: 550px;
  }
  .why-vigor__frame-inner {
    width: 100%;
    height: auto;
    aspect-ratio: 550 / 490;
    max-height: 490px;
  }
  .why-vigor__frame-img {
    max-width: 100%;
    width: auto;
    height: auto;
    max-height: 430px;
  }
}

.why-vigor__label {
  font-family: 'Pro Racing', var(--font-heading), sans-serif;
  font-size: 14px;
  font-weight: normal;
  color: var(--red);
  text-align: left;
  margin: 0 0 0.5rem;
}

.why-vigor__title {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--text-white);
  text-align: left;
  margin: 0;
  line-height: 1.2;
}

.why-vigor__title-line {
  display: block;
  color: #444444;
}

.why-vigor__cards {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 2.5rem;
}

.why-vigor__card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  width: 100%;
  max-width: 630px;
  height: 90px;
  padding: 0 1.25rem;
  background: #0A0A0A;
  border-radius: 16px;
  box-sizing: border-box;
}

.why-vigor__card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: rgba(255, 0, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--red);
}

.why-vigor__card-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 0;
}

.why-vigor__card-title {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.3;
  margin: 0;
}

.why-vigor__card-desc {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #888888;
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   SECTION: CTA / İndir
   ============================================ */

.cta {
  padding: 4rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta__box {
  width: 100%;
  max-width: 1534px;
  height: 638px;
  background: linear-gradient(165deg, #ff0000 0%, #e60000 35%, #cc0000 70%, #990000 100%);
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.cta__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

.cta__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 200px;
  height: 40px;
  border-radius: 9999px;
  background: #3B82F6;
  color: var(--text-white);
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 0;
  transition: opacity 0.2s, transform 0.2s;
}

.cta__badge:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.cta__badge-icon {
  flex-shrink: 0;
}

.cta__title {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 72px;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.15;
  margin: 0;
  margin-top: 0.5rem;
}

.cta__title-line {
  display: block;
  margin-top: 0.15em;
}

.cta__sub {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 20px;
  font-weight: 400;
  color: var(--text-white);
  line-height: 1.5;
  margin: 0;
  margin-top: 24px;
}

.cta__stores {
  display: flex;
  gap: 1rem;
  margin-top: 48px;
}

.cta__store-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 10px;
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.cta__store-btn--apple {
  background: #fff;
  color: #000;
}

.cta__store-btn--google {
  background: #1f1f1f;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta__store-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.cta__store-btn img {
  width: 24px;
  height: 24px;
}

@media (max-width: 1000px) {
  .cta__box {
    height: auto;
    min-height: 638px;
    padding: 3rem 2rem;
  }
  .cta__title {
    font-size: clamp(2rem, 6vw, 72px);
  }
  .cta__sub {
    font-size: 1rem;
  }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: #000000;
  padding: 2rem;
}

.footer__inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__logo {
  display: block;
  flex-shrink: 0;
}

.footer__logo-img {
  display: block;
  height: 36px;
  width: auto;
  vertical-align: middle;
}

.footer__socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex: 1;
  min-width: 0;
}

.footer__social {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #333333;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.footer__social:hover {
  background: #444444;
  color: var(--text-white);
}

.footer__social svg {
  display: block;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer__legal a {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

.footer__legal a:hover {
  color: var(--text-white);
}

.footer__contact-btn {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  text-decoration: none;
  transition: color 0.2s;
}

.footer__contact-btn:hover {
  color: var(--text-white);
}

/* Contact modal */
.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0.2s, opacity 0.2s;
}

.contact-modal--open {
  visibility: visible;
  opacity: 1;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.contact-modal__box {
  position: relative;
  width: 100%;
  max-width: 440px;
  background: #1a1a1a;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-modal__title {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-white);
  margin: 0 0 0.5rem;
}

.contact-modal__desc {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.contact-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-modal__label {
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  display: block;
}

.contact-modal__input,
.contact-modal__textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #0a0a0a;
  color: var(--text-white);
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 14px;
  box-sizing: border-box;
}

.contact-modal__input::placeholder,
.contact-modal__textarea::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.contact-modal__input:focus,
.contact-modal__textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2);
}

.contact-modal__textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-modal__actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.contact-modal__submit {
  flex: 1;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: none;
  background: var(--red);
  color: var(--text-white);
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
}

.contact-modal__submit:hover {
  background: var(--red-hover);
}

.contact-modal__close {
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.9);
  font-family: 'Poppins', var(--font-body), sans-serif;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.contact-modal__close:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.3);
}

@media (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    text-align: center;
  }
  .footer__socials {
    order: 2;
  }
  .footer__legal {
    order: 3;
    justify-content: center;
  }
}
