@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ── CSS Variables (ported from Tailwind theme) ── */
:root {
  --background:       hsl(220, 20%, 7%);
  --foreground:       hsl(40, 20%, 95%);
  --card:             hsl(220, 18%, 10%);
  --card-foreground:  hsl(40, 20%, 95%);
  --primary:          hsl(40, 65%, 55%);
  --primary-fg:       hsl(220, 20%, 7%);
  --secondary:        hsl(220, 15%, 15%);
  --muted:            hsl(220, 15%, 18%);
  --muted-fg:         hsl(220, 10%, 55%);
  --border:           hsl(220, 15%, 18%);
  --gold-glow:        hsl(40, 70%, 50%);
  --gold-soft:        hsl(40, 40%, 75%);
  --navy-deep:        hsl(220, 25%, 5%);
  --navy-mid:         hsl(220, 18%, 12%);
  --emerald:          hsl(160, 60%, 45%);
  --star:             hsl(45, 100%, 60%);
  --destructive:      hsl(0, 84%, 60%);
  --radius:           0.75rem;

  --gradient-gold:    linear-gradient(135deg, hsl(40,70%,50%), hsl(35,80%,60%), hsl(45,60%,45%));
  --gradient-hero:    linear-gradient(180deg, hsl(220,25%,5%) 0%, hsl(220,20%,10%) 50%, hsl(220,18%,8%) 100%);
  --gradient-card:    linear-gradient(145deg, hsl(220,18%,12%), hsl(220,20%,8%));
  --shadow-gold:      0 0 40px hsl(40 70% 50% / 0.15);
  --shadow-card:      0 20px 60px hsl(220 25% 5% / 0.5);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--background);
  color: var(--foreground);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  min-height: 100vh;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  line-height: 1.15;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: 1.5rem;
}

/* ── Utility classes ── */
.text-primary        { color: var(--primary); }
.text-muted          { color: var(--muted-fg); }
.text-foreground     { color: var(--foreground); }
.text-emerald        { color: var(--emerald); }
.text-star           { color: var(--star); }
.text-destructive    { color: var(--destructive); }

.text-gradient-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-gold   { background: var(--gradient-gold); }
.bg-gradient-hero   { background: var(--gradient-hero); }
.bg-gradient-card   { background: var(--gradient-card); }

.shadow-gold        { box-shadow: var(--shadow-gold); }
.shadow-card        { box-shadow: var(--shadow-card); }

.glow-gold {
  box-shadow: 0 0 20px hsl(40 70% 50% / 0.3), 0 0 60px hsl(40 70% 50% / 0.1);
}

.border-gold-light  { border-color: hsl(40 65% 55% / 0.3); }

.glass {
  backdrop-filter: blur(20px);
  background: hsl(220 18% 12% / 0.7);
}

/* ── Animations ── */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

.animate-float    { animation: float 3s ease-in-out infinite; }

/* Intersection observer triggered animations */
.anim-fade-up     { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.anim-fade-in     { opacity: 0; transition: opacity .6s ease; }
.anim-slide-left  { opacity: 0; transform: translateX(-40px); transition: opacity .6s ease, transform .6s ease; }
.anim-slide-right { opacity: 0; transform: translateX(40px);  transition: opacity .6s ease, transform .6s ease; }
.anim-scale-in    { opacity: 0; transform: scale(0.9); transition: opacity .5s ease, transform .5s ease; }
.anim-visible {
  opacity: 1 !important;
  transform: translate(0) scale(1) !important;
}

/* Staggered delays */
.delay-1 { transition-delay: .1s; }
.delay-2 { transition-delay: .2s; }
.delay-3 { transition-delay: .3s; }
.delay-4 { transition-delay: .4s; }
.delay-5 { transition-delay: .5s; }
.delay-6 { transition-delay: .6s; }

/* ─────────────────────────────────────
   NAVBAR
───────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  transition: all .3s ease;
}
.navbar.scrolled {
  backdrop-filter: blur(20px);
  background: hsl(220 18% 12% / 0.7);
  border-bottom: 1px solid hsl(40 65% 55% / 0.1);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.navbar-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .875rem;
  color: var(--muted-fg);
  transition: color .2s;
}
.nav-links a:hover { color: var(--primary); }
.btn-demo {
  padding: .5rem 1.25rem;
  background: var(--gradient-gold);
  color: var(--primary-fg) !important;
  font-weight: 600;
  font-size: .875rem;
  border-radius: var(--radius);
  transition: transform .2s;
  display: inline-block;
}
.btn-demo:hover { transform: scale(1.05); }
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--foreground);
  padding: .25rem;
}
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid hsl(40 65% 55% / 0.1);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: .875rem;
  color: var(--muted-fg);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--primary); }
.mobile-menu .btn-demo { text-align: center; }

/* ─────────────────────────────────────
   HERO
───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    hsl(220 20% 7% / 0.80) 0%,
    hsl(220 20% 7% / 0.60) 50%,
    hsl(220 20% 7% / 1.00) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 10;
  padding-top: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 2rem;
  animation: fadeUp .8s ease forwards;
}
.hero-badge span {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--primary);
}
.hero-title {
  font-size: clamp(2.5rem, 8vw, 5.5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
  animation: fadeUp .8s .2s ease both;
}
.hero-subtitle {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 48rem;
  margin: 0 auto 3rem;
  line-height: 1.7;
  animation: fadeUp .8s .4s ease both;
}
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  animation: fadeUp .8s .6s ease both;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  background: var(--gradient-gold);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: var(--radius);
  box-shadow: 0 0 20px hsl(40 70% 50% / 0.3), 0 0 60px hsl(40 70% 50% / 0.1);
  transition: transform .3s;
}
.btn-primary:hover { transform: scale(1.05); }
.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  border: 1px solid hsl(40 65% 55% / 0.3);
  color: var(--primary);
  font-size: 1.0625rem;
  border-radius: var(--radius);
  transition: background .3s;
}
.btn-outline:hover { background: hsl(40 65% 55% / 0.1); }
.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  animation: fadeIn 1s 1.2s ease both, float 3s ease-in-out infinite;
  color: var(--primary);
}

/* ─────────────────────────────────────
   STATS
───────────────────────────────────── */
.stats-section {
  padding: 5rem 0;
  border-top: 1px solid hsl(40 65% 55% / 0.1);
  border-bottom: 1px solid hsl(40 65% 55% / 0.1);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.stat-item { text-align: center; }
.stat-value {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: .75rem 0 .5rem;
}
.stat-label {
  font-weight: 600;
  font-size: .875rem;
  color: var(--foreground);
  margin-bottom: .25rem;
}
.stat-desc { font-size: .75rem; color: var(--muted-fg); }
.stat-icon { color: var(--primary); margin: 0 auto; }

/* ─────────────────────────────────────
   BENEFITS
───────────────────────────────────── */
.benefits-section { padding: 6rem 0; }
.section-eyebrow {
  font-size: .75rem;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.section-subtitle {
  font-size: 1.125rem;
  color: var(--muted-fg);
  max-width: 42rem;
  margin: 0 auto;
  line-height: 1.7;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 4rem;
}
.benefit-card {
  background: var(--gradient-card);
  border: 1px solid hsl(40 65% 55% / 0.1);
  border-radius: 0.875rem;
  padding: 2rem;
  transition: border-color .5s, box-shadow .5s, transform .3s;
}
.benefit-card:hover {
  border-color: hsl(40 65% 55% / 0.3);
  box-shadow: var(--shadow-gold);
  transform: translateY(-2px);
}
.benefit-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
  transition: transform .3s;
}
.benefit-card:hover .benefit-icon { transform: scale(1.1); }
.benefit-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: .75rem;
}
.benefit-desc {
  font-size: .875rem;
  color: var(--muted-fg);
  line-height: 1.7;
  margin-bottom: 1rem;
}
.benefit-quote {
  font-size: .75rem;
  font-style: italic;
  color: hsl(40 65% 55% / 0.8);
  line-height: 1.6;
}

/* ─────────────────────────────────────
   APP FEATURES
───────────────────────────────────── */
.features-section {
  padding: 6rem 0;
  background: hsl(220 15% 15% / 0.3);
}
.features-stack { display: flex; flex-direction: column; gap: 8rem; margin-top: 5rem; }
.feature-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.feature-phone {
  flex: 1;
  width: 100%;
  max-width: 20rem;
  margin: 0 auto;
}
.feature-phone-inner {
  position: relative;
  border-radius: 1.5rem;
  aspect-ratio: 9/16;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid var(--border);
}
.feature-phone-frame {
  position: absolute;
  inset: .75rem;
  border-radius: 1.25rem;
  border: 2px solid hsl(220 15% 18% / 0.5);
  background: hsl(220 20% 7% / 0.5);
  backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
  text-align: center;
}
.feature-phone-label { font-size: .875rem; color: var(--muted-fg); }
.feature-phone-name  { font-weight: 600; color: var(--primary); }
.feature-content { flex: 1; }
.feature-badge {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  background: hsl(40 65% 55% / 0.1);
  border: 1px solid hsl(40 65% 55% / 0.2);
  border-radius: 9999px;
  padding: .5rem 1.25rem;
  margin-bottom: 1.5rem;
}
.feature-badge span { font-size: .875rem; font-weight: 500; color: var(--primary); }
.feature-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  margin-bottom: 1.25rem;
}
.feature-desc {
  font-size: 1.0625rem;
  color: var(--muted-fg);
  line-height: 1.7;
  max-width: 32rem;
}

/* Phone gradient variants */
.phone-gold     { background: linear-gradient(135deg, hsl(40 65% 55% / 0.2), hsl(40 65% 55% / 0.05)); }
.phone-emerald  { background: linear-gradient(135deg, hsl(160 60% 45% / 0.2), hsl(160 60% 45% / 0.05)); }
.phone-red      { background: linear-gradient(135deg, hsl(0 84% 60% / 0.2), hsl(0 84% 60% / 0.05)); }

/* ─────────────────────────────────────
   WORLD CUP
───────────────────────────────────── */
.worldcup-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}
.worldcup-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--background), hsl(220 18% 12%), var(--background));
  opacity: .5;
}
.worldcup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 62rem;
  margin: 0 auto;
  position: relative;
}
.wc-card {
  background: var(--gradient-card);
  border: 1px solid hsl(40 65% 55% / 0.1);
  border-radius: .875rem;
  padding: 2rem;
  text-align: center;
}
.wc-card.featured {
  border-color: hsl(40 65% 55% / 0.3);
  box-shadow: var(--shadow-gold);
}
.wc-icon { margin: 0 auto 1rem; }
.wc-title { font-size: 1.5rem; font-weight: 800; margin-bottom: 1rem; }
.wc-text { font-size: .9375rem; color: var(--muted-fg); line-height: 1.7; }
.worldcup-quote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-style: italic;
  text-align: center;
  color: hsl(40 20% 90%);
  max-width: 52rem;
  margin: 4rem auto 0;
  position: relative;
}

/* ─────────────────────────────────────
   REVIEWS
───────────────────────────────────── */
.reviews-section {
  padding: 6rem 0;
  background: var(--gradient-hero);
}
.review-card {
  max-width: 52rem;
  margin: 0 auto;
  background: var(--gradient-card);
  border: 1px solid hsl(40 65% 55% / 0.2);
  border-radius: 1.25rem;
  padding: 2.5rem;
  box-shadow: var(--shadow-gold);
  margin-bottom: 2rem;
  transition: opacity .3s, transform .3s;
}
.review-stars { display: flex; gap: .25rem; margin-bottom: .75rem; }
.star-icon { color: var(--star); fill: var(--star); }
.review-title {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.review-text {
  font-size: 1.0625rem;
  color: var(--muted-fg);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.review-author { font-weight: 600; margin-bottom: .25rem; }
.review-location { font-size: .875rem; color: var(--muted-fg); }
.verified-badge {
  font-size: .75rem;
  background: hsl(160 60% 45% / 0.2);
  color: var(--emerald);
  padding: .375rem .875rem;
  border-radius: 9999px;
  font-weight: 500;
}
.carousel-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: .5rem;
}
.carousel-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: 9999px;
  border: 1px solid hsl(40 65% 55% / 0.2);
  background: none;
  cursor: pointer;
  color: var(--primary);
  transition: background .2s;
}
.carousel-btn:hover { background: hsl(40 65% 55% / 0.1); }
.carousel-dots { display: flex; gap: .5rem; align-items: center; }
.dot {
  height: .625rem;
  border-radius: 9999px;
  background: hsl(220 10% 55% / 0.3);
  cursor: pointer;
  transition: all .3s;
  border: none;
  width: .625rem;
}
.dot.active { background: var(--primary); width: 2rem; }

/* ─────────────────────────────────────
   TRIPADVISOR
───────────────────────────────────── */
.tripadvisor-section { padding: 6rem 0; }
.ta-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}
.ta-list { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin-top: 1.5rem; }
.ta-list li {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  color: hsl(40 20% 90%);
}
.ta-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.ta-stat {
  background: var(--gradient-card);
  border: 1px solid hsl(40 65% 55% / 0.1);
  border-radius: .875rem;
  padding: 1.5rem;
  text-align: center;
  transition: border-color .3s;
}
.ta-stat:hover { border-color: hsl(40 65% 55% / 0.3); }
.ta-stat-value {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: .5rem 0 .25rem;
}
.ta-stat-label { font-size: .75rem; color: var(--muted-fg); }

/* ─────────────────────────────────────
   CTA
───────────────────────────────────── */
.cta-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, var(--background), hsl(220 18% 12% / 0.5), var(--background));
}
.cta-content { position: relative; }
.cta-shield { margin: 0 auto 2rem; }
.cta-title {
  font-size: clamp(2.25rem, 7vw, 5rem);
  font-weight: 800;
  margin-bottom: 1.5rem;
}
.cta-text {
  font-size: 1.0625rem;
  color: var(--muted-fg);
  max-width: 48rem;
  margin: 0 auto 1rem;
  line-height: 1.75;
}
.cta-quote {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-style: italic;
  color: hsl(40 20% 90%);
  margin-bottom: 3rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 3.5rem;
}
.btn-lg-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 2.5rem;
  background: var(--gradient-gold);
  color: var(--primary-fg);
  font-weight: 700;
  font-size: 1.0625rem;
  border-radius: var(--radius);
  box-shadow: 0 0 20px hsl(40 70% 50% / 0.3), 0 0 60px hsl(40 70% 50% / 0.1);
  transition: transform .3s;
}
.btn-lg-primary:hover { transform: scale(1.05); }
.btn-lg-outline {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: 1.25rem 2.5rem;
  border: 1px solid hsl(40 65% 55% / 0.3);
  color: var(--primary);
  font-size: 1.0625rem;
  border-radius: var(--radius);
  transition: background .3s;
}
.btn-lg-outline:hover { background: hsl(40 65% 55% / 0.1); }
.cta-guarantees {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 2rem;
  justify-content: center;
  font-size: .875rem;
  color: var(--muted-fg);
}
.cta-guarantees span {
  display: flex;
  align-items: center;
  gap: .5rem;
}

/* ─────────────────────────────────────
   FOOTER
───────────────────────────────────── */
.footer {
  padding: 4rem 0;
  border-top: 1px solid hsl(40 65% 55% / 0.1);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-tagline { font-size: .875rem; color: var(--muted-fg); line-height: 1.7; }
.footer-heading {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
.footer-contact { display: flex; flex-direction: column; gap: .5rem; font-size: .875rem; color: var(--muted-fg); }
.footer-links { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a { font-size: .875rem; color: var(--muted-fg); transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-copy {
  border-top: 1px solid hsl(40 65% 55% / 0.1);
  padding-top: 2rem;
  text-align: center;
  font-size: .75rem;
  color: var(--muted-fg);
}

/* ─────────────────────────────────────
   RESPONSIVE
───────────────────────────────────── */
@media (min-width: 640px) {
  .hero-subtitle { font-size: 1.25rem; }
}

@media (min-width: 768px) {
  .hamburger  { display: none !important; }
  .nav-links  { display: flex !important; }
  .mobile-menu { display: none !important; }

  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 767px) {
  .nav-links  { display: none; }
  .hamburger  { display: block; }
}

@media (min-width: 1024px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-row   { flex-direction: row; gap: 5rem; }
  .feature-row.reverse { flex-direction: row-reverse; }
  .feature-phone { max-width: none; }
  .worldcup-grid { grid-template-columns: repeat(3, 1fr); }
  .ta-grid       { grid-template-columns: repeat(2, 1fr); }
}
