/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand Colors */
  --red: #e8171d;
  --red-dark: #b91015;
  --red-light: #ff3a3f;
  --accent: #e8171d;
  --accent-glow: rgba(232, 23, 29, 0.35);

  /* Pillar Colors */
  --c1: #ff6b35;
  --c2: #00c853;
  --c3: #e8171d;

  /* Neutrals */
  --bg: #080808;
  --bg2: #0d0d0d;
  --bg3: #111111;
  --surface: #161616;
  --surface2: #1c1c1c;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(232, 23, 29, 0.35);

  /* Text */
  --text: #ffffff;
  --text-muted: #9a9a9a;
  --text-dim: #484848;

  /* Typography */
  --font-head: 'Bebas Neue', sans-serif;
  --font-body: 'Inter', sans-serif;
  --font-alt: 'Montserrat', sans-serif;

  /* Misc */
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow: 0 8px 40px rgba(0,0,0,0.7);
  --shadow-red: 0 8px 40px rgba(232, 23, 29, 0.25);

  /* ── Typography Scale ── */
  --t-hero:    clamp(3rem, 9vw, 6.5rem);
  --t-h2:      clamp(1.9rem, 4.5vw, 3.2rem);
  --t-h3:      1rem;
  --t-body:    0.875rem;
  --t-small:   0.775rem;
  --t-label:   0.6875rem;   /* 11px */
  --t-btn:     0.75rem;     /* 12px */

  /* ── Line Heights ── */
  --lh-display: 0.95;
  --lh-heading: 1.1;
  --lh-body:    1.75;
  --lh-tight:   1.4;
  --lh-relaxed: 1.8;

  /* ── Letter Spacing ── */
  --ls-display: 2px;
  --ls-heading: 1px;
  --ls-label:   2.5px;
  --ls-btn:     1.5px;
  --ls-body:    0.15px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
  max-width: 100vw;
}

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}

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

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--red); border-radius: 3px; }

/* ===== UTILITIES ===== */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; width: 100%; }
.section-pad { padding: 100px 0; max-width: 100vw; overflow-x: hidden; }
section { max-width: 100vw; overflow-x: hidden; }
.dark-section { background: var(--bg2); }
.accent-text { color: var(--red); }

.section-tag {
  display: inline-block;
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  border: 1px solid var(--border-accent);
  background: rgba(232, 23, 29, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 60px; }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 6px;
  font-family: var(--font-alt);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
  box-shadow: 0 4px 28px rgba(232, 23, 29, 0.45);
  letter-spacing: 1.5px;
}
.btn-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
  box-shadow: 0 6px 40px rgba(232, 23, 29, 0.65);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.25);
}
.btn-outline:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.05);
  color: var(--text);
  border-color: transparent;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-outline-white {
  background: transparent;
  color: var(--text);
  border-color: rgba(255,255,255,0.15);
  width: 100%;
  justify-content: center;
}
.btn-outline-white:hover { border-color: var(--red); color: var(--red); }

.btn-whatsapp {
  background: rgba(37, 211, 102, 0.8);
  color: #fff;
  border-color: rgba(37, 211, 102, 0.8);
  justify-content: center;
}
.btn-whatsapp:hover { background: rgba(29, 168, 81, 0.9); border-color: rgba(29, 168, 81, 0.9); transform: translateY(-2px); }

.btn-instagram {
  background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  color: #fff;
  border: none;
  padding: 14px 32px;
}
.btn-instagram:hover { opacity: 0.9; transform: translateY(-2px); }

.btn-full { width: 100%; justify-content: center; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 58px;
  height: 58px;
  background: rgba(37, 211, 102, 0.8);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  box-shadow: 0 4px 20px rgba(37,211,102,0.3);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 4px 30px rgba(37,211,102,0.7), 0 0 0 8px rgba(37,211,102,0.1); }
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(8, 12, 18, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}

.nav-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.logo-c3 {
  font-family: var(--font-head);
  font-size: 32px;
  color: var(--red);
  letter-spacing: 2px;
  line-height: 1;
}
.logo-pillars {
  display: flex;
  gap: 3px;
}
.pill {
  font-family: var(--font-alt);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.5px;
  padding: 2px 5px;
  border-radius: 3px;
  color: #fff;
}
.pill.c1 { background: var(--c1); }
.pill.c2 { background: var(--c2); }
.pill.c3 { background: var(--c3); }

.logo-text-block {
  display: flex;
  flex-direction: column;
  line-height: 1;
  border-left: 2px solid var(--border);
  padding-left: 10px;
}
.logo-brand {
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text);
}
.logo-sub {
  font-family: var(--font-alt);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 4px;
  color: var(--red);
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}
.nav-links li a {
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  padding: 8px 10px;
  border-radius: 4px;
  transition: var(--transition);
}
.nav-links li a:hover { color: var(--red); }
.nav-links li a.nav-cta {
  background: var(--red);
  color: #fff;
  padding: 9px 18px;
  border-radius: 4px;
  margin-left: 8px;
}
.nav-links li a.nav-cta:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
  border-radius: 2px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1571019613454-1cb2f99b2d8b?w=1920&q=80');
  background-size: cover;
  background-position: center;
  background-attachment: scroll;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(232, 23, 29, 0.12) 0%,
    transparent 50%,
    rgba(0,0,0,0.2) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 140px 24px 100px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 23, 29, 0.12);
  border: 1px solid rgba(232, 23, 29, 0.35);
  color: var(--red-light);
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(3.2rem, 8vw, 6.5rem);
  line-height: 0.95;
  letter-spacing: 2px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
}
.hero-title .line1 { color: #fff; }
.hero-title .line2 { color: var(--red); text-shadow: 0 0 40px rgba(232, 23, 29, 0.5); }
.hero-title .line3 { color: #fff; }

/* Three Pillar badges in hero */
.hero-pillars {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pillar-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 6px;
  border: 1px solid transparent;
}
.c1-badge { background: rgba(255, 107, 53, 0.12); border-color: rgba(255, 107, 53, 0.3); }
.c2-badge { background: rgba(0, 200, 83, 0.1); border-color: rgba(0, 200, 83, 0.3); }
.c3-badge { background: rgba(232, 23, 29, 0.12); border-color: rgba(232, 23, 29, 0.35); }
.pb-num { font-family: var(--font-head); font-size: 1.1rem; line-height: 1; }
.c1-badge .pb-num { color: var(--c1); }
.c2-badge .pb-num { color: var(--c2); }
.c3-badge .pb-num { color: var(--c3); }
.pb-label { font-family: var(--font-alt); font-size: 11px; font-weight: 700; letter-spacing: 1px; color: rgba(255,255,255,0.7); }
.pillar-sep { font-size: 1.5rem; color: rgba(255,255,255,0.2); }

.hero-subtitle {
  font-family: var(--font-alt);
  font-size: 1.05rem;
  font-style: italic;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  font-weight: 300;
}

.hero-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 52px;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 28px;
  max-width: 640px;
  width: 100%;
}
.stat { display: flex; flex-direction: column; align-items: center; flex: 1; padding: 0 12px; }
.stat:first-child { padding-left: 0; }
.stat-num { font-family: var(--font-head); font-size: 2.2rem; line-height: 1; color: var(--red); }
.stat-suffix { font-family: var(--font-head); font-size: 1.8rem; color: var(--red); line-height: 1; }
.stat-label { font-size: 10px; color: var(--text-muted); font-weight: 500; letter-spacing: 1px; margin-top: 4px; white-space: nowrap; }
.stat-divider { width: 1px; height: 44px; background: var(--border); flex-shrink: 0; }

.hero-scroll {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.25);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: var(--font-alt);
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.25), transparent);
  animation: scroll-anim 1.8s infinite;
}
@keyframes scroll-anim {
  0% { opacity: 1; transform: scaleY(1); transform-origin: top; }
  100% { opacity: 0; transform: scaleY(0); transform-origin: top; }
}

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--red);
  overflow: hidden;
  padding: 13px 0;
  white-space: nowrap;
}
.ticker-track {
  display: inline-flex;
  animation: ticker 35s linear infinite;
}
.ticker-track span {
  font-family: var(--font-head);
  font-size: 12px;
  letter-spacing: 3px;
  color: rgba(255,255,255,0.9);
  padding: 0 14px;
}
.ticker-track .sep { color: rgba(255,255,255,0.35); padding: 0 6px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ===== THREE PILLARS ===== */
.pillars { background: var(--bg); }

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

.pillar-card {
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: var(--surface);
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.pillar-card::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.pillar-c1::before { background: radial-gradient(ellipse at top left, rgba(255,107,53,0.08) 0%, transparent 70%); }
.pillar-c2::before { background: radial-gradient(ellipse at top left, rgba(0,200,83,0.07) 0%, transparent 70%); }
.pillar-c3::before { background: radial-gradient(ellipse at top left, rgba(232,23,29,0.08) 0%, transparent 70%); }
.pillar-card:hover::before { opacity: 1; }
.pillar-card:hover { transform: translateY(-6px); }
.pillar-c1:hover { border-color: rgba(255,107,53,0.3); box-shadow: 0 20px 50px rgba(255,107,53,0.1); }
.pillar-c2:hover { border-color: rgba(0,200,83,0.25); box-shadow: 0 20px 50px rgba(0,200,83,0.08); }
.pillar-c3:hover { border-color: rgba(232,23,29,0.3); box-shadow: 0 20px 50px rgba(232,23,29,0.1); }

.pillar-number {
  font-family: var(--font-head);
  font-size: 5rem;
  line-height: 1;
  opacity: 0.06;
  position: absolute;
  top: 16px;
  right: 24px;
  letter-spacing: -2px;
}
.pillar-c1 .pillar-number { color: var(--c1); }
.pillar-c2 .pillar-number { color: var(--c2); }
.pillar-c3 .pillar-number { color: var(--c3); }

.pillar-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}
.pillar-c1 .pillar-icon { background: rgba(255,107,53,0.12); color: var(--c1); border: 1px solid rgba(255,107,53,0.25); }
.pillar-c2 .pillar-icon { background: rgba(0,200,83,0.1); color: var(--c2); border: 1px solid rgba(0,200,83,0.2); }
.pillar-c3 .pillar-icon { background: rgba(232,23,29,0.1); color: var(--c3); border: 1px solid rgba(232,23,29,0.25); }

.pillar-card h3 { font-family: var(--font-head); font-size: 2rem; letter-spacing: 1px; margin-bottom: 4px; }
.pillar-c1 h3 { color: var(--c1); }
.pillar-c2 h3 { color: var(--c2); }
.pillar-c3 h3 { color: var(--c3); }

.pillar-sub { font-size: 0.78rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 16px; font-family: var(--font-alt); }
.pillar-card > p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 20px; }

.pillar-list { display: flex; flex-direction: column; gap: 8px; }
.pillar-list li { display: flex; align-items: center; gap: 10px; font-size: 0.84rem; color: var(--text-muted); }
.pillar-c1 .pillar-list li i { color: var(--c1); font-size: 11px; }
.pillar-c2 .pillar-list li i { color: var(--c2); font-size: 11px; }
.pillar-c3 .pillar-list li i { color: var(--c3); font-size: 11px; }

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-img-stack { position: relative; height: 540px; }
.about-img-main {
  position: absolute;
  top: 0; left: 0;
  width: 80%;
  height: 85%;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.about-img-accent {
  position: absolute;
  bottom: 0; right: 0;
  width: 55%;
  height: 50%;
  background-size: cover;
  background-position: center;
  border-radius: var(--radius-lg);
  border: 4px solid var(--bg2);
  box-shadow: var(--shadow);
}
.about-badge-float {
  position: absolute;
  bottom: 55%;
  right: -16px;
  background: var(--red);
  color: #fff;
  padding: 12px 18px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-alt);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-red);
  transform: translateY(50%);
  z-index: 2;
}
.about-badge-float i { font-size: 16px; }

.about-motto {
  font-family: var(--font-alt);
  font-size: 1rem;
  font-style: italic;
  color: var(--red-light);
  border-left: 3px solid var(--red);
  padding-left: 16px;
  margin: 18px 0 22px;
  line-height: 1.6;
}
.about-text { color: var(--text-muted); line-height: 1.8; margin-bottom: 14px; font-size: 0.93rem; }

.about-counters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 28px 0 32px;
}
.counter-card {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px 10px;
  text-align: center;
  transition: var(--transition);
}
.counter-card:hover { border-color: var(--border-accent); transform: translateY(-3px); }
.counter-num { font-family: var(--font-head); font-size: 1.8rem; color: var(--red); line-height: 1; }
.counter-label { font-size: 9px; color: var(--text-muted); margin-top: 6px; display: block; letter-spacing: 0.5px; }

/* ===== SERVICES ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), #ff6b35);
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(232,23,29,0.08);
  border: 1px solid rgba(232,23,29,0.18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
  margin-bottom: 18px;
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--red); color: #fff; border-color: var(--red); }
.service-card h3 { font-family: var(--font-alt); font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.service-card p { font-size: 0.855rem; color: var(--text-muted); line-height: 1.7; }

.service-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,23,29,0.07);
  border: 1px solid rgba(232,23,29,0.15);
  padding: 4px 10px;
  border-radius: 50px;
}

/* ===== WHY C3 ===== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}
.why-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: 0 12px 36px rgba(0,0,0,0.3); }
.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(232,23,29,0.07);
  border: 1px solid rgba(232,23,29,0.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--red);
  margin: 0 auto 18px;
  transition: var(--transition);
}
.why-card:hover .why-icon { background: var(--red); color: #fff; border-color: var(--red); }
.why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 8px; font-family: var(--font-alt); }
.why-card p { font-size: 0.83rem; color: var(--text-muted); line-height: 1.6; }

/* ===== EXPERT SECTION ===== */
.expert-section { background: var(--bg); }
.expert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  align-items: stretch;
}
.expert-card {
  display: flex;
  flex-direction: column;
}
.expert-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}
.expert-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.expert-card.featured-expert {
  border-color: var(--border-accent);
  background: var(--surface2);
  box-shadow: 0 0 0 1px rgba(232,23,29,0.15), 0 8px 30px rgba(232,23,29,0.1);
}
.expert-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1.5px;
  padding: 4px 14px;
  border-radius: 50px;
  white-space: nowrap;
  font-family: var(--font-alt);
}
.expert-icon {
  width: 64px;
  height: 64px;
  background: rgba(232,23,29,0.08);
  border: 1px solid rgba(232,23,29,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--red);
  margin: 0 auto 16px;
  transition: var(--transition);
}
.expert-card:hover .expert-icon { background: var(--red); color: #fff; }
.expert-card h3 { font-family: var(--font-alt); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.expert-card p { font-size: 0.845rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 14px; flex: 1; }
.expert-tag {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  background: rgba(232,23,29,0.07);
  border: 1px solid rgba(232,23,29,0.15);
  padding: 4px 12px;
  border-radius: 50px;
}

/* ===== RATINGS BANNER ===== */
.ratings-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 48px;
  margin-bottom: 60px;
}
.rating-block { text-align: center; flex: 1; }
.rating-stars { display: flex; justify-content: center; gap: 4px; color: #fbbf24; font-size: 18px; margin-bottom: 8px; }
.rating-score { font-family: var(--font-head); font-size: 3rem; line-height: 1; color: var(--text); }
.rating-score span { font-size: 1.5rem; color: var(--text-muted); }
.rating-count { font-size: 0.85rem; color: var(--text-muted); margin: 4px 0 8px; }
.rating-branch { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); font-family: var(--font-alt); }
.rating-divider { width: 1px; height: 80px; background: var(--border); margin: 0 48px; flex-shrink: 0; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { overflow: hidden; }
.testimonial-slider { position: relative; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testimonial-card {
  min-width: 1152px;
  max-width: 1152px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  flex-shrink: 0;
  transition: var(--transition);
}
.testimonial-card:hover { border-color: var(--border-accent); }
.t-quote { font-size: 24px; color: var(--red); opacity: 0.4; margin-bottom: 10px; }
.testimonial-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.t-author { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.t-avatar { width: 42px; height: 42px; border-radius: 50%; border: 2px solid var(--red); flex-shrink: 0; }
.t-author strong { display: block; font-size: 0.875rem; }
.t-author span { font-size: 0.76rem; color: var(--text-muted); }
.t-stars { color: #fbbf24; font-size: 12px; display: flex; gap: 3px; }

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.slider-btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
  font-size: 14px;
}
.slider-btn:hover { background: var(--red); border-color: var(--red); }
.slider-dots { display: flex; gap: 8px; }
.dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--surface2);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.dot.active { background: var(--red); border-color: var(--red); width: 24px; border-radius: 4px; }

/* ===== BRANCHES ===== */
.branches-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.branches-grid.three-col { grid-template-columns: repeat(3, 1fr); }

.branch-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 26px;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.branch-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.3); }
.branch-card.flagship { border-color: rgba(232,23,29,0.25); background: var(--surface2); }

.branch-flag {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--red);
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 4px 14px;
  border-radius: 50px;
  font-family: var(--font-alt);
}

.branch-icon { font-size: 26px; color: var(--red); margin-bottom: 16px; }
.branch-card h3 { font-family: var(--font-alt); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.branch-addr { font-size: 0.83rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.branch-addr i { color: var(--red); }
.branch-timings { margin-bottom: 14px; }
.branch-timings span { font-size: 0.81rem; color: var(--text-muted); display: flex; align-items: center; gap: 8px; }
.branch-timings i { color: var(--red); }

.branch-perks { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 18px; }
.perk-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg3);
  border: 1px solid var(--border);
  padding: 4px 10px;
  border-radius: 50px;
}
.perk-tag i { color: var(--red); font-size: 9px; }

.branch-actions { display: flex; gap: 10px; margin-top: auto; }
.btn-branch {
  flex: 1;
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 10px;
  background: var(--red);
  color: #fff;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  font-family: var(--font-alt);
  transition: var(--transition);
}
.btn-branch:hover { background: var(--red-dark); }
.btn-branch-outline { background: transparent; border: 1px solid var(--border); color: var(--text); }
.btn-branch-outline:hover { border-color: var(--red); color: var(--red); background: transparent; }

.branches-cta { text-align: center; margin-top: 48px; }
.branches-cta p { color: var(--text-muted); margin-bottom: 20px; font-size: 0.95rem; }

/* ===== MEMBERSHIP ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: start; }

.pricing-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  position: relative;
  transition: var(--transition);
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card .btn { width: 100%; justify-content: center; }
.pricing-card.featured {
  background: var(--surface2);
  border-color: var(--red);
  box-shadow: 0 0 0 1px var(--red), var(--shadow-red), 0 0 50px rgba(232,23,29,0.12);
  transform: scale(1.03);
}
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 2px;
  padding: 5px 16px;
  border-radius: 50px;
  white-space: nowrap;
  font-family: var(--font-alt);
}

.pricing-header { text-align: center; margin-bottom: 24px; }
.pricing-icon { font-size: 26px; color: var(--red); margin-bottom: 10px; }
.pricing-header h3 { font-family: var(--font-alt); font-size: 1rem; font-weight: 700; margin-bottom: 10px; }
.pricing-price { display: flex; align-items: baseline; justify-content: center; gap: 2px; }
.price-currency { font-size: 1.1rem; color: var(--text-muted); font-weight: 600; }
.price-amount { font-family: var(--font-head); font-size: 2.5rem; line-height: 1; color: var(--text); }
.price-period { font-size: 0.78rem; color: var(--text-muted); margin-left: 4px; }
.price-note { font-size: 0.74rem; color: var(--text-dim); margin-top: 6px; }

.pricing-features { margin-bottom: 24px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 0;
  font-size: 0.845rem;
  color: var(--text-muted);
  border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li .fa-check { color: #22c55e; font-size: 11px; flex-shrink: 0; }
.pricing-features li .fa-times { color: var(--text-dim); font-size: 11px; flex-shrink: 0; }

/* Women's membership card */
.women-membership { margin-top: 32px; }
.women-card {
  background: linear-gradient(135deg, rgba(232,23,29,0.06), rgba(232,23,29,0.02));
  border: 1px solid rgba(232,23,29,0.2);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.women-icon { font-size: 36px; color: var(--red); flex-shrink: 0; }
.women-content { flex: 1; }
.women-content h3 { font-family: var(--font-alt); font-weight: 700; margin-bottom: 6px; }
.women-content p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.83rem; margin-top: 28px; }
.pricing-note i { color: var(--red); margin-right: 6px; }

/* ===== TRAINERS ===== */
.trainers-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

.trainer-card { border-radius: var(--radius-lg); overflow: hidden; position: relative; transition: var(--transition); }
.trainer-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.5); }

.trainer-img { height: 320px; background-size: cover; background-position: center top; transition: transform 0.5s ease; }
.trainer-card:hover .trainer-img { transform: scale(1.05); }

.trainer-overlay {
  position: absolute;
  top: 0; left: 0; right: 0;
  bottom: 160px;
  background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.65));
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.trainer-card:hover .trainer-overlay { opacity: 1; }
.trainer-socials { display: flex; gap: 8px; }
.trainer-socials a {
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: 13px;
  transition: var(--transition);
}
.trainer-socials a:hover { background: var(--red); }

.trainer-info {
  background: var(--surface);
  border: 1px solid var(--border);
  border-top: none;
  border-bottom-left-radius: var(--radius-lg);
  border-bottom-right-radius: var(--radius-lg);
  padding: 18px;
}
.trainer-info h3 { font-family: var(--font-alt); font-size: 0.95rem; font-weight: 700; margin-bottom: 3px; }
.trainer-role { font-size: 0.76rem; color: var(--red); margin-bottom: 10px; display: block; }
.trainer-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.trainer-tags span {
  font-size: 10px; font-weight: 600;
  color: var(--text-muted);
  background: var(--surface2);
  border: 1px solid var(--border);
  padding: 3px 9px;
  border-radius: 50px;
}

/* ===== GALLERY ===== */
.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(3, 190px);
  gap: 10px;
}
.gallery-item { background-size: cover; background-position: center; border-radius: var(--radius); overflow: hidden; position: relative; cursor: pointer; }
.gallery-item.large { grid-column: 1 / 3; grid-row: 1 / 3; }
.gallery-item.tall { grid-row: 2 / 4; }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: flex-end;
  padding: 14px;
  transition: var(--transition);
}
.gallery-overlay span {
  font-size: 11px;
  font-weight: 700;
  font-family: var(--font-alt);
  letter-spacing: 1px;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { background: rgba(232, 23, 29, 0.4); }
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: translateY(0); }

/* ===== INSTAGRAM ===== */
.insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 8px; margin-bottom: 28px; }
.insta-item { aspect-ratio: 1; background-size: cover; background-position: center; border-radius: var(--radius); position: relative; overflow: hidden; }
.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(232, 23, 29, 0.65);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: #fff;
  opacity: 0;
  transition: var(--transition);
}
.insta-item:hover .insta-overlay { opacity: 1; }
.insta-cta { text-align: center; margin-bottom: 44px; }

.social-proof-bar {
  display: flex;
  justify-content: center;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 22px 0;
}
.sp-item { flex: 1; text-align: center; border-right: 1px solid var(--border); padding: 0 20px; }
.sp-item:last-child { border-right: none; }
.sp-item strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--red); line-height: 1; }
.sp-item span { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; display: block; }

/* ===== BLOG ===== */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.blog-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); border-color: var(--border-accent); box-shadow: 0 14px 36px rgba(0,0,0,0.3); }
.blog-img { height: 190px; background-size: cover; background-position: center; position: relative; overflow: hidden; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-tag-overlay {
  position: absolute; top: 12px; left: 12px;
  background: var(--red); color: #fff;
  font-size: 10px; font-weight: 700; letter-spacing: 2px;
  padding: 4px 12px; border-radius: 50px;
  font-family: var(--font-alt);
}
.blog-content { padding: 22px; }
.blog-meta { display: flex; gap: 14px; font-size: 11px; color: var(--text-dim); margin-bottom: 10px; }
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-content h3 { font-size: 0.97rem; font-weight: 700; line-height: 1.45; margin-bottom: 8px; font-family: var(--font-alt); }
.blog-content p { font-size: 0.835rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 14px; }
.blog-link { font-size: 12px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-alt); letter-spacing: 1px; transition: var(--transition); }
.blog-link:hover { gap: 10px; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: start; }
.contact-form { margin-top: 26px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label { display: block; font-size: 11px; font-weight: 600; letter-spacing: 1px; color: var(--text-muted); margin-bottom: 7px; text-transform: uppercase; font-family: var(--font-alt); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.88rem;
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); box-shadow: 0 0 0 3px rgba(232,23,29,0.1); }
.form-group select option { background: var(--surface2); }
.contact-form .btn { margin-bottom: 10px; }

.franchise-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.franchise-icon { font-size: 36px; color: var(--red); margin-bottom: 14px; }
.franchise-benefits { margin: 22px 0 26px; }
.franchise-benefits li { display: flex; align-items: center; gap: 12px; padding: 8px 0; font-size: 0.875rem; color: var(--text-muted); border-bottom: 1px solid var(--border); }
.franchise-benefits li:last-child { border-bottom: none; }
.franchise-benefits li i { color: #22c55e; font-size: 13px; }
.franchise-contact { margin-top: 18px; }
.franchise-contact p { font-size: 0.855rem; color: var(--text-muted); display: flex; align-items: center; gap: 10px; padding: 5px 0; }
.franchise-contact i { color: var(--red); width: 14px; }
.franchise-contact a { color: var(--text-muted); transition: color 0.2s; }
.franchise-contact a:hover { color: var(--red); }

/* ===== CTA BANNER ===== */
.cta-banner { position: relative; padding: 80px 0; overflow: hidden; }
.cta-banner-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?w=1920&q=80');
  background-size: cover;
  background-position: center;
}
.cta-banner-bg::after { content: ''; position: absolute; inset: 0; background: rgba(8,12,18,0.8); }
.cta-content { position: relative; z-index: 1; text-align: center; }
.cta-content h2 { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); margin-bottom: 12px; }
.cta-content p { color: rgba(255,255,255,0.55); font-size: 1rem; margin-bottom: 30px; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }

/* ===== FOOTER ===== */
.footer { background: #040810; border-top: 1px solid var(--border); }
.footer-top { padding: 64px 0 44px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr; gap: 36px; }
.footer-tagline { font-style: italic; color: var(--red-light); font-size: 0.84rem; margin-bottom: 10px; opacity: 0.8; }
.footer-desc { font-size: 0.81rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 18px; }
.footer-socials { display: flex; gap: 8px; }
.footer-socials a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  font-size: 13px;
  transition: var(--transition);
}
.footer-socials a:hover { background: var(--red); border-color: var(--red); color: #fff; }
.footer-col h4 {
  font-family: var(--font-alt);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 18px;
}
.footer-col ul li { margin-bottom: 9px; }
.footer-col ul li a { font-size: 0.835rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-contact li { display: flex; align-items: flex-start; gap: 9px; color: var(--text-muted); font-size: 0.835rem; margin-bottom: 9px; }
.footer-contact li i { color: var(--red); width: 13px; margin-top: 2px; flex-shrink: 0; }
.newsletter { margin-top: 22px; }
.newsletter h4 { margin-bottom: 10px; }
.newsletter-form { display: flex; }
.newsletter-form input {
  flex: 1;
  background: var(--surface);
  border: 1px solid var(--border);
  border-right: none;
  border-radius: 6px 0 0 6px;
  padding: 9px 12px;
  color: var(--text);
  font-size: 0.83rem;
  outline: none;
}
.newsletter-form input:focus { border-color: var(--red); }
.newsletter-form button {
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: 0 6px 6px 0;
  color: #fff;
  padding: 9px 14px;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--red-dark); }
.footer-bottom { border-top: 1px solid var(--border); padding: 18px 0; text-align: center; }
.footer-bottom p { font-size: 0.78rem; color: var(--text-dim); }
.footer-bottom a { color: var(--text-muted); transition: color 0.2s; }
.footer-bottom a:hover { color: var(--red); }

/* ===================================================
   TYPOGRAPHY SYSTEM — Unified across all components
   Hierarchy: Hero → H2 → H3 → Body → Small → Label
   Fonts: Bebas Neue (display) · Montserrat (UI) · Inter (body)
   =================================================== */

/* ── Display / Hero ── */
.hero-title {
  font-family: var(--font-head);
  font-size: var(--t-hero);
  line-height: var(--lh-display);
  letter-spacing: var(--ls-display);
  font-weight: 400; /* Bebas Neue is inherently heavy */
}

/* ── Section Titles (H2) ── */
.section-title {
  font-family: var(--font-head);
  font-size: var(--t-h2);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  margin-bottom: 14px;
}

/* ── Section Subtitle ── */
.section-subtitle {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
}

/* ── Section Tag / Badge Labels ── */
.section-tag {
  font-family: var(--font-alt);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  line-height: 1;
}

/* ── Card Titles (H3) — unified across all cards ── */
.service-card h3,
.why-card h3,
.expert-card h3,
.branch-card h3,
.trainer-info h3,
.blog-content h3,
.pricing-header h3,
.women-content h3,
.franchise-card h3 {
  font-family: var(--font-alt);
  font-size: var(--t-h3);
  font-weight: 700;
  line-height: var(--lh-tight);
  letter-spacing: 0.3px;
  margin-bottom: 8px;
}

/* Branch card titles slightly larger for emphasis */
.branch-card h3 { font-size: 1.05rem; letter-spacing: 0.4px; }

/* ── Body / Paragraph Text — unified ── */
.service-card p,
.why-card p,
.expert-card p,
.pillar-card > p,
.about-text,
.blog-content p,
.testimonial-card p,
.franchise-benefits li,
.franchise-contact p,
.women-content p,
.pricing-features li,
.branches-cta p,
.cta-content p {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
  color: var(--text-muted);
}
.about-text { color: var(--text-muted); }
.cta-content p { color: rgba(255,255,255,0.6); }

/* ── Pillar list items ── */
.pillar-list li {
  font-family: var(--font-body);
  font-size: var(--t-small);
  line-height: var(--lh-tight);
  letter-spacing: var(--ls-body);
}

/* ── Small / Meta Text ── */
.branch-addr,
.branch-timings span,
.t-author span,
.trainer-role,
.blog-meta,
.blog-meta span,
.price-note,
.price-period,
.rating-count,
.stat-label,
.counter-label,
.pricing-note,
.footer-tagline,
.footer-desc,
.footer-col ul li a,
.footer-contact li,
.footer-bottom p,
.newsletter-form input,
.sp-item span {
  font-family: var(--font-body);
  font-size: var(--t-small);
  line-height: 1.6;
  letter-spacing: 0.1px;
}
.footer-col ul li a { color: var(--text-muted); }
.footer-contact li  { color: var(--text-muted); }
.footer-bottom p    { color: var(--text-dim); }

/* ── Tag Pills / Perk Tags / Trainer Tags ── */
.service-tag,
.perk-tag,
.trainer-tags span,
.blog-tag-overlay,
.branch-flag,
.expert-badge,
.pricing-badge,
.gallery-overlay span {
  font-family: var(--font-alt);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  line-height: 1;
}

/* ── Buttons — unified ── */
.btn,
.btn-branch {
  font-family: var(--font-alt);
  font-size: var(--t-btn);
  font-weight: 700;
  letter-spacing: var(--ls-btn);
  text-transform: uppercase;
  line-height: 1;
}

/* ── Form System ── */
.form-group label {
  font-family: var(--font-alt);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  margin-bottom: 8px;
  color: var(--text-muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
}

/* ── Navigation ── */
.nav-links li a {
  font-family: var(--font-alt);
  font-size: var(--t-label);
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

/* ── Footer headings ── */
.footer-col h4 {
  font-family: var(--font-alt);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
  line-height: 1;
  margin-bottom: 18px;
}

/* ── Stats / Counters ── */
.stat-num, .stat-suffix  { font-family: var(--font-head); line-height: 1; }
.counter-num             { font-family: var(--font-head); line-height: 1; }
.stat-label              { font-family: var(--font-alt); font-size: 0.625rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }
.counter-label           { font-family: var(--font-alt); font-size: 0.625rem; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }

/* ── Hero Sub-elements ── */
.hero-badge {
  font-family: var(--font-alt);
  font-size: var(--t-label);
  font-weight: 700;
  letter-spacing: var(--ls-label);
  text-transform: uppercase;
}
.hero-subtitle {
  font-family: var(--font-alt);
  font-size: 0.9rem;
  font-weight: 400;
  font-style: italic;
  line-height: var(--lh-tight);
  letter-spacing: 0.3px;
}
.hero-desc {
  font-family: var(--font-body);
  font-size: var(--t-body);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
}

/* ── Ticker ── */
.ticker-track span {
  font-family: var(--font-head);
  font-size: 0.75rem;
  letter-spacing: 3px;
}

/* ── About Section ── */
.about-motto {
  font-family: var(--font-alt);
  font-size: 0.9rem;
  font-style: italic;
  font-weight: 400;
  line-height: var(--lh-body);
  letter-spacing: 0.2px;
}

/* ── Blog / Article ── */
.blog-link {
  font-family: var(--font-alt);
  font-size: var(--t-small);
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ── Testimonials ── */
.t-author strong {
  font-family: var(--font-alt);
  font-size: var(--t-small);
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* ── Pillar Cards ── */
.pillar-card h3    { font-family: var(--font-head); font-size: 2rem; letter-spacing: 1px; line-height: 1; }
.pillar-sub        { font-family: var(--font-alt); font-size: var(--t-label); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }

/* ── Ratings ── */
.rating-branch  { font-family: var(--font-alt); font-size: var(--t-label); font-weight: 700; letter-spacing: var(--ls-label); text-transform: uppercase; }
.rating-count   { font-family: var(--font-body); font-size: var(--t-small); }

/* ── CTA Banner ── */
.cta-content h2 { font-family: var(--font-head); font-size: clamp(2.5rem, 5vw, 4rem); line-height: var(--lh-heading); letter-spacing: var(--ls-heading); }

/* =====================================================
   COLOR BALANCE — Red as strategic accent only
   Red stays on: primary buttons, nav CTA, logo mark,
   hero accent word, featured badges, active dots,
   form focus, and hover actions.
   Everything else → white / neutral.
   ===================================================== */

/* Scrollbar — neutral */
::-webkit-scrollbar-thumb { background: var(--surface2); }

/* Ticker — dark band instead of solid red */
.ticker-wrap { background: #0a0a0a; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

/* Section tags — neutral glass pill */
.section-tag { color: rgba(255,255,255,0.55); border-color: rgba(255,255,255,0.1); background: rgba(255,255,255,0.04); }

/* Nav hover — white, not red */
.nav-links li a:hover { color: var(--text); }

/* Logo sub-text — muted, not red */
.logo-sub { color: var(--text-dim); }

/* Hero gradient — subtle dark only */
.hero-gradient { background: linear-gradient(135deg, rgba(0,0,0,0.25) 0%, transparent 55%, rgba(0,0,0,0.15) 100%); }

/* Hero badge — neutral glass */
.hero-badge { background: rgba(255,255,255,0.05); border-color: rgba(255,255,255,0.12); color: rgba(255,255,255,0.55); }

/* Hero stats — white numbers */
.stat-num, .stat-suffix { color: var(--text); }

/* About motto — neutral border + muted text */
.about-motto { color: var(--text-muted); border-left-color: rgba(255,255,255,0.18); }

/* About badge float — dark surface, not red */
.about-badge-float { background: var(--surface2); color: var(--text); box-shadow: var(--shadow); border: 1px solid rgba(255,255,255,0.1); }

/* About counters — white numbers, neutral hover */
.counter-num { color: var(--text); }
.counter-card:hover { border-color: rgba(255,255,255,0.14); box-shadow: none; }

/* Services — neutral icon default, red only on hover */
.service-icon { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.09); color: rgba(255,255,255,0.6); }
.service-card:hover { border-color: rgba(255,255,255,0.14); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.service-card::before { background: linear-gradient(90deg, rgba(255,255,255,0.08), transparent); }
.service-tag { color: var(--text-dim); background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }

/* Why C3 — neutral icon default, red only on hover */
.why-icon { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.09); color: rgba(255,255,255,0.55); }
.why-card:hover { border-color: rgba(255,255,255,0.14); box-shadow: 0 12px 36px rgba(0,0,0,0.35); }

/* Expert — neutral icon default, red only on hover */
.expert-icon { background: rgba(255,255,255,0.04); border-color: rgba(255,255,255,0.09); color: rgba(255,255,255,0.55); }
.expert-card:hover { border-color: rgba(255,255,255,0.14); }
.expert-tag { color: var(--text-dim); background: rgba(255,255,255,0.03); border-color: rgba(255,255,255,0.07); }

/* Ratings — branch label neutral */
.rating-branch { color: var(--text-muted); }

/* Testimonials — neutral quote + avatar */
.t-quote { color: rgba(255,255,255,0.2); opacity: 1; }
.t-avatar { border-color: rgba(255,255,255,0.12); }
.testimonial-card:hover { border-color: rgba(255,255,255,0.14); }

/* Branches — neutral icons, white hover border */
.branch-icon { color: rgba(255,255,255,0.7); }
.branch-addr i, .branch-timings i { color: var(--text-dim); }
.perk-tag i { color: var(--text-dim); }
.branch-card:hover { border-color: rgba(255,255,255,0.14); }
.branch-card.flagship { border-color: rgba(255,255,255,0.12); background: var(--surface2); }

/* Pricing — neutral icons, keep featured red */
.pricing-icon { color: rgba(255,255,255,0.6); }
.pricing-note i { color: var(--text-dim); }
.women-icon { color: rgba(255,255,255,0.6); }
.women-card { background: var(--surface); border-color: rgba(255,255,255,0.08); }

/* Trainers — role label neutral */
.trainer-role { color: var(--text-muted); }

/* Gallery — dark overlay, not red */
.gallery-item:hover .gallery-overlay { background: rgba(0,0,0,0.7); }

/* Instagram — dark overlay */
.insta-overlay { background: rgba(0,0,0,0.72); color: #fff; }

/* Social proof bar — white numbers */
.sp-item strong { color: var(--text); }

/* Blog — neutral tag + link */
.blog-tag-overlay { background: rgba(10,10,10,0.82); color: rgba(255,255,255,0.85); }
.blog-link { color: rgba(255,255,255,0.55); }
.blog-link:hover { color: var(--text); }
.blog-card:hover { border-color: rgba(255,255,255,0.14); }

/* Franchise — neutral icons */
.franchise-icon { color: rgba(255,255,255,0.6); }
.franchise-contact i { color: var(--text-dim); }

/* Footer — muted tagline + contact icons */
.footer-tagline { color: var(--text-muted); opacity: 1; }
.footer-contact li i { color: var(--text-dim); }

/* ===== REVEAL ANIMATIONS ===== */
.reveal, .reveal-left, .reveal-right {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left { transform: translateX(-45px); }
.reveal-right { transform: translateX(45px); }
.reveal.visible, .reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ===================================================
   RESPONSIVE — MOBILE FIRST
   Breakpoints: 1100 · 900 · 768 · 600 · 400
   =================================================== */

/* ── 1100px — Tablets landscape / small desktops ── */
@media (max-width: 1100px) {
  .why-grid          { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid      { grid-template-columns: repeat(2, 1fr); }
  .pricing-card.featured { transform: none; }
  .expert-grid       { grid-template-columns: repeat(2, 1fr); }
  .footer-grid       { grid-template-columns: 1fr 1fr 1fr; gap: 28px; }
  .footer-brand      { grid-column: 1 / -1; }
  .trainers-grid     { grid-template-columns: repeat(2, 1fr); }
}

/* ── 900px — Tablets portrait ── */
@media (max-width: 900px) {
  /* Layout */
  .section-pad { padding: 72px 0; }

  /* About */
  .about-grid        { grid-template-columns: 1fr; gap: 40px; }
  .about-img-stack   { height: 280px; }
  .about-img-main    { width: 75%; height: 88%; }
  .about-img-accent  { width: 52%; height: 48%; }
  .about-badge-float { right: 8px; font-size: 11px; padding: 10px 14px; }
  .about-counters    { grid-template-columns: repeat(2, 1fr); }

  /* Pillars */
  .pillars-grid      { grid-template-columns: 1fr; gap: 16px; }

  /* Services */
  .services-grid     { grid-template-columns: repeat(2, 1fr); }

  /* Why */
  .why-grid          { grid-template-columns: repeat(2, 1fr); }

  /* Experts */
  .expert-grid       { grid-template-columns: repeat(2, 1fr); }

  /* Ratings */
  .ratings-banner {
    flex-direction: column;
    gap: 0;
    padding: 0;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }
  .rating-block {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    margin-bottom: 12px;
  }
  .rating-block:last-child { margin-bottom: 0; }
  .rating-divider    { display: none; }

  /* Testimonials */
  .testimonial-card  { min-width: calc(50% - 12px); }

  /* Branches */
  .branches-grid,
  .branches-grid.three-col { grid-template-columns: 1fr 1fr; }

  /* Membership */
  .women-card        { flex-direction: column; text-align: center; }
  .women-card .btn   { width: 100%; justify-content: center; }

  /* Gallery */
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .gallery-item.large,
  .gallery-item.tall { grid-column: auto; grid-row: auto; }
  .gallery-item      { height: 180px; }

  /* Instagram */
  .insta-grid        { grid-template-columns: repeat(3, 1fr); }

  /* Blog */
  .blog-grid         { grid-template-columns: 1fr 1fr; }

  /* Contact */
  .contact-grid      { grid-template-columns: 1fr; gap: 36px; }

  /* Footer */
  .footer-grid       { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand      { grid-column: 1 / -1; }
}

/* ── 768px — Mobile landscape / large phones ── */
@media (max-width: 768px) {
  /* ── Navbar ── */
  .nav-links {
    display: none;
    flex-direction: column;
    position: fixed;
    top: 0; right: 0;
    width: min(300px, 85vw);
    height: 100dvh;
    background: rgba(8,12,18,0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    padding: 80px 24px 32px;
    z-index: 999;
    border-left: 1px solid var(--border);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    transform: translateX(100%);
    overflow-y: auto;
    gap: 0;
  }
  .nav-links.open     { display: flex; transform: translateX(0); }
  .nav-links li a     { display: block; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 14px; letter-spacing: 1px; }
  .nav-links li a.nav-cta {
    background: var(--red);
    border-color: var(--red);
    color: #fff;
    text-align: center;
    padding: 14px;
    border-radius: 8px;
    margin-top: 16px;
  }
  .nav-toggle         { display: flex; z-index: 1001; }
  .nav-toggle span    { width: 22px; }

  /* ── Hero ── */
  .hero-content { padding: 100px 20px 60px; }
  .hero-title   { font-size: clamp(2.8rem, 10vw, 5rem); margin-bottom: 16px; }
  .hero-badge   { font-size: 10px; padding: 6px 14px; }
  .hero-subtitle { font-size: 0.95rem; }
  .hero-desc    { font-size: 0.875rem; margin-bottom: 24px; }
  .hero-pillars { flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
  .pillar-badge { padding: 6px 12px; }
  .pb-num       { font-size: 1rem; }
  .pb-label     { font-size: 10px; }
  .pillar-sep   { display: none; }
  /* Hero — full-width centred CTAs */
  .hero-content  { text-align: center; align-items: center; }
  .hero-badge    { display: inline-flex; }
  .hero-title    { align-items: center; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
  .hero-desc     { margin-left: auto; margin-right: auto; }
  .hero-pillars  { justify-content: center; }
  .hero-ctas     { flex-direction: column; align-items: center; gap: 10px; margin-bottom: 32px; }
  .hero-ctas .btn { width: 100%; max-width: 340px; justify-content: center; }
  .hero-stats    { margin-left: auto; margin-right: auto; }
  .hero-stats   {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    background: var(--border);
    padding: 0;
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 100%;
  }
  .stat {
    background: rgba(255,255,255,0.03);
    padding: 16px 12px;
    align-items: center;
  }
  .stat-divider { display: none; }
  .stat-num     { font-size: 1.8rem; }
  .stat-suffix  { font-size: 1.4rem; }
  .stat-label   { font-size: 10px; text-align: center; }
  .hero-scroll  { display: none; }

  /* ── Sections ── */
  .section-pad   { padding: 60px 0; }
  .section-title { font-size: clamp(1.8rem, 6vw, 2.6rem); }
  .section-header { margin-bottom: 40px; }

  /* ── About ── */
  .about-img-stack  { height: 240px; }
  .about-counters   { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .counter-card     { padding: 14px 10px; }
  .counter-num      { font-size: 1.5rem; }
  .about-content    { text-align: center; }
  .about-motto      { text-align: center; padding: 14px 16px; margin: 22px 0 26px; }
  .about-text       { text-align: center; font-size: 0.9rem; line-height: 1.85; margin-bottom: 20px; }
  .about-content .btn { width: 100%; max-width: 340px; justify-content: center; margin-top: 8px; }

  /* ── Pillars ── */
  .pillar-card   { padding: 28px 22px; }
  .pillar-number { font-size: 4rem; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr; gap: 14px; }
  .service-card  { padding: 26px 22px; }

  /* ── Why ── */
  .why-grid      { grid-template-columns: 1fr 1fr; gap: 12px; }
  .why-card      { padding: 22px 16px; }

  /* ── Expert ── */
  .expert-grid   { grid-template-columns: 1fr 1fr; gap: 14px; }
  .expert-card   { padding: 28px 20px; }

  /* ── Ratings ── */
  .rating-score      { font-size: 2.8rem; }
  .rating-stars      { font-size: 22px; gap: 6px; }
  .rating-count      { font-size: 0.9rem; }
  .rating-branch     { font-size: 12px; letter-spacing: 1.5px; }

  /* ── Testimonials ── */
  .testimonial-card { min-width: 343px; max-width: 343px; width: 343px; padding: 24px 20px; }

  /* ── Branches ── */
  .branches-grid,
  .branches-grid.three-col { grid-template-columns: 1fr; }
  .branch-card   { padding: 28px 22px; }
  .branches-cta > div { flex-direction: column; align-items: center; }
  .branches-cta .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ── Membership ── */
  .pricing-grid  { grid-template-columns: 1fr; gap: 20px; }
  .pricing-card.featured { transform: none; box-shadow: var(--shadow-red); }
  .pricing-card  { padding: 28px 22px; }
  .price-amount  { font-size: 2.2rem; }

  /* ── Trainers ── */
  .trainers-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .trainer-img   { height: 240px; }

  /* ── Gallery ── */
  .gallery-masonry { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item    { height: 150px; }

  /* ── Instagram ── */
  .insta-grid    { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .social-proof-bar { flex-wrap: wrap; }
  .sp-item {
    flex: 0 0 50%;
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 14px;
  }
  .sp-item:nth-child(3),
  .sp-item:nth-child(4) { border-bottom: none; }
  .sp-item:nth-child(odd) { border-right: 1px solid var(--border); }

  /* ── Blog ── */
  .blog-grid     { grid-template-columns: 1fr; gap: 16px; }

  /* ── Contact ── */
  .franchise-card { padding: 28px 22px; }
  .contact-block .section-title { font-size: clamp(1.6rem, 5vw, 2.2rem); }
  .form-row       { grid-template-columns: 1fr; gap: 0; }
  .contact-grid   { overflow: hidden; }
  .contact-block  { overflow: hidden; }

  /* ── CTA Banner ── */
  .cta-banner    { padding: 60px 0; }
  .cta-actions   { flex-direction: column; align-items: center; gap: 12px; }
  .cta-actions .btn { width: 100%; max-width: 320px; justify-content: center; }

  /* ── Footer ── */
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-brand  { grid-column: 1 / -1; }
  .footer-top    { padding: 48px 0 36px; }

  /* ── WhatsApp float ── */
  .whatsapp-float { bottom: 20px; right: 20px; width: 52px; height: 52px; font-size: 24px; }
}

/* ── 600px — Small phones ── */
@media (max-width: 600px) {
  /* Hero */
  .hero-content  { padding: 90px 16px 50px; text-align: center; }
  .hero-title    { font-size: clamp(2.4rem, 11vw, 3.6rem); align-items: center; }
  .hero-ctas     { gap: 8px; align-items: center; width: 100%; }
  .hero-ctas .btn { max-width: 100%; }
  .insta-cta .btn { width: 100%; justify-content: center; }

  /* Why grid → 1 col */
  .why-grid      { grid-template-columns: 1fr; }
  .why-card      { display: flex; align-items: flex-start; gap: 14px; text-align: left; padding: 18px 16px; overflow: hidden; }
  .why-card h3   { font-size: 0.9rem; margin-bottom: 4px; }
  .why-card p    { font-size: 0.8rem; line-height: 1.5; word-break: break-word; }
  .why-icon      { margin: 0; flex-shrink: 0; width: 44px; height: 44px; font-size: 16px; }

  /* Expert grid → 1 col */
  .expert-grid   { grid-template-columns: 1fr; }

  /* Trainers → 1 col */
  .trainers-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
  .trainer-img   { height: 300px; }

  /* Gallery → 1 col */
  .gallery-masonry { grid-template-columns: 1fr; }
  .gallery-item    { height: 200px; }

  /* Instagram → 2 col */
  .insta-grid    { grid-template-columns: repeat(2, 1fr); }

  /* About counter */
  .about-counters { grid-template-columns: repeat(2, 1fr); gap: 8px; }

  /* Pricing */
  .pricing-grid  { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid        { grid-template-columns: 1fr; text-align: center; }
  .footer-col         { border-top: 1px solid var(--border); padding-top: 20px; text-align: center; }
  .footer-brand       { display: flex; flex-direction: column; align-items: center; text-align: center; }
  .footer-tagline     { text-align: center; }
  .footer-desc        { text-align: center; }
  .footer-socials     { justify-content: center; }
  .footer-col h4      { text-align: center; }
  .footer-col ul      { padding: 0; }
  .footer-col ul li   { text-align: center; list-style: none; }
  .footer-contact li  { justify-content: center; text-align: center; }
  .newsletter-form    { max-width: 320px; margin: 0 auto; }
  .footer-logo        { justify-content: center; }

  /* Ticker */
  .ticker-track span { font-size: 11px; padding: 0 10px; }

  /* Sections */
  .section-pad   { padding: 50px 0; }

  /* Container */
  .container     { padding: 0 16px; }
}

/* ── 400px — Very small phones ── */
@media (max-width: 400px) {
  .hero-title       { font-size: 2.2rem; }
  .hero-badge       { font-size: 9px; letter-spacing: 1px; }
  .logo-text-block  { display: none; }
  .logo-c3          { font-size: 26px; }
  .hero-stats       { grid-template-columns: 1fr 1fr; }
  .btn              { font-size: 12px; padding: 13px 20px; }
  .pillar-card      { padding: 24px 18px; }
  .section-title    { font-size: 1.75rem; }
  .section-subtitle { font-size: 0.875rem; }
  .about-img-stack  { height: 200px; width: 341px; max-width: 100%; margin: 0 auto; }
  .about-img-accent { display: none; }
  .about-badge-float { display: none; }
  .ratings-banner   { padding: 20px 16px; }
  .rating-score     { font-size: 2.2rem; }
  .branch-card      { padding: 24px 18px; }
  .pricing-card     { padding: 24px 18px; }
  .franchise-card   { padding: 24px 18px; }
  .whatsapp-float   { bottom: 16px; right: 16px; width: 48px; height: 48px; font-size: 22px; }
}

/* ── Touch targets — ensure minimum 44px ── */
@media (hover: none) and (pointer: coarse) {
  .btn, .btn-branch, .slider-btn,
  .nav-links li a, .nav-toggle { min-height: 44px; }
  .nav-toggle { padding: 8px; }
  .service-card:hover,
  .why-card:hover,
  .branch-card:hover,
  .pricing-card:hover,
  .blog-card:hover { transform: none; }
  .gallery-overlay { background: rgba(232,23,29,0.3) !important; }
  .gallery-overlay span { opacity: 1 !important; transform: none !important; }
}

/* ── iOS Safari: prevent zoom on input focus ── */
@supports (-webkit-touch-callout: none) {
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; }
  .hero-bg { background-attachment: scroll !important; }
}
