/* ============================================
   SBD FITNESS – Premium CSS
   White-first · Red accent · Black contrast
   ============================================ */

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

:root {
  --red: #c0392b;
  --red-dark: #922b21;
  --red-light: #e74c3c;
  --red-glow: rgba(192, 57, 43, 0.15);
  --red-glow-strong: rgba(192, 57, 43, 0.3);
  --black: #0d0d0d;
  --black-soft: #1a1a1a;
  --charcoal: #2c2c2c;
  --grey-dark: #3d3d3d;
  --grey-mid: #6b6b6b;
  --grey-light: #a0a0a0;
  --grey-border: #e8e8e8;
  --grey-bg: #f8f8f8;
  --white: #ffffff;
  --white-soft: #fafafa;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --shadow-red: 0 8px 32px rgba(192,57,43,0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Inter', sans-serif;
  --font-display: 'Playfair Display', serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 16px;
  line-height: 1.6;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
address { font-style: normal; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ===== UTILITY ===== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
}

.section { padding: 100px 0; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}
.label-white { color: var(--white); }
.label-white::before { background: var(--white); }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--grey-mid);
  max-width: 600px;
  line-height: 1.75;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header .section-sub { margin: 0 auto; }
.section-header .section-label {
  justify-content: center;
}
.section-header .section-label::before { display: none; }

.text-red { color: var(--red); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-sm { padding: 10px 22px; font-size: 0.875rem; }
.btn-full { width: 100%; justify-content: center; }

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: var(--shadow-red);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(192,57,43,0.35);
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-red {
  background: transparent;
  color: var(--red);
  border: 2px solid var(--red);
}
.btn-outline-red:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-white {
  background: var(--white);
  color: var(--black);
  font-weight: 700;
}
.btn-white:hover {
  background: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--black);
  transform: translateY(-2px);
}

.btn-ghost-white {
  background: rgba(255,255,255,0.12);
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* ===== REVEAL ANIMATIONS ===== */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s cubic-bezier(0.4,0,0.2,1), transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.visible,
.reveal-left.visible,
.reveal-right.visible {
  opacity: 1;
  transform: translate(0, 0);
}

/* Staggered delay */
.reveal-up:nth-child(2) { transition-delay: 0.1s; }
.reveal-up:nth-child(3) { transition-delay: 0.2s; }
.reveal-up:nth-child(4) { transition-delay: 0.3s; }
.reveal-up:nth-child(5) { transition-delay: 0.4s; }
.reveal-up:nth-child(6) { transition-delay: 0.5s; }
.reveal-up:nth-child(7) { transition-delay: 0.6s; }
.reveal-up:nth-child(8) { transition-delay: 0.7s; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  padding: 14px 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}

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

.nav-logo {
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}
.logo-sbd {
  color: var(--red);
}
.logo-fitness {
  color: var(--white);
  margin-left: 2px;
  transition: var(--transition);
}
.navbar.scrolled .logo-fitness { color: var(--black); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  color: rgba(255,255,255,0.9);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--red); background: rgba(255,255,255,0.1); }
.navbar.scrolled .nav-links a { color: var(--grey-dark); }
.navbar.scrolled .nav-links a:hover { color: var(--red); background: var(--red-glow); }

.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 22px !important;
  border-radius: var(--radius-sm) !important;
  font-weight: 700 !important;
  box-shadow: var(--shadow-red);
}
.nav-cta:hover {
  background: var(--red-dark) !important;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.navbar.scrolled .nav-toggle span { background: var(--black); }

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

.hero-bg {
  position: absolute;
  inset: 0;
}
.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(10,0,0,0.7) 100%
  );
}
.hero-glow {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.25) 0%, transparent 70%);
  animation: glowPulse 4s ease-in-out infinite;
}
@keyframes glowPulse {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 100px;
  padding-top: 80px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red-light);
  animation: blink 2s ease-in-out infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.hero-title {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 780px;
}
.hero-accent {
  background: linear-gradient(135deg, var(--red-light), var(--red));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 620px;
  line-height: 1.8;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  gap: 0;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0 24px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item i { color: var(--red-light); font-size: 1rem; }
.trust-divider {
  width: 1px;
  height: 20px;
  background: rgba(255,255,255,0.25);
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.scroll-indicator {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.scroll-indicator span {
  width: 4px;
  height: 10px;
  background: var(--white);
  border-radius: 2px;
  animation: scrollBounce 2s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0.4; }
}

/* ===== STATS BAR ===== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--grey-border);
  padding: 48px 0;
  box-shadow: var(--shadow-sm);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  padding: 0 60px;
  text-align: center;
}
.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.stat-plus {
  font-size: 2rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1;
}
.stat-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey-mid);
  letter-spacing: 0.3px;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: var(--grey-border);
  flex-shrink: 0;
}

/* ===== ABOUT ===== */
.about { background: var(--white-soft); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: stretch;
}

.about-img-wrap {
  position: relative;
  height: 100%;
  min-height: 560px;
}
.about-img-main {
  width: 78%;
  height: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  bottom: 40px;
  right: 0;
  width: 46%;
  height: 220px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 4px solid var(--white);
}
.about-badge-float {
  position: absolute;
  top: 40px;
  right: 0;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
  min-width: 210px;
}
.about-badge-float i {
  font-size: 1.8rem;
  color: var(--red);
}
.about-badge-float strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--black);
}
.about-badge-float span {
  font-size: 0.8rem;
  color: var(--grey-mid);
}

.about-text {
  color: var(--grey-mid);
  line-height: 1.85;
  margin-bottom: 20px;
}

.about-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0 40px;
}
.pillar {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--grey-border);
  transition: var(--transition);
}
.pillar:hover {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-2px);
}
.pillar-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
}
.pillar strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.pillar span {
  font-size: 0.78rem;
  color: var(--grey-mid);
}

/* ===== WHY CHOOSE ===== */
.why { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.why-card:hover::before { transform: scaleX(1); }
.why-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
  border-color: var(--grey-border);
}
.why-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.3rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.why-card:hover .why-icon {
  background: var(--red);
  color: var(--white);
}
.why-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 10px;
}
.why-card p {
  font-size: 0.875rem;
  color: var(--grey-mid);
  line-height: 1.7;
}

/* ===== SERVICES ===== */
.services { background: var(--grey-bg); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-6px);
}
.service-img-wrap {
  position: relative;
  height: 220px;
  overflow: hidden;
}
.service-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.service-card:hover .service-img-wrap img {
  transform: scale(1.08);
}
.service-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: var(--transition);
}
.service-card:hover .service-overlay { opacity: 1; }
.service-body {
  padding: 20px 22px 24px;
}
.service-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.service-body p {
  font-size: 0.84rem;
  color: var(--grey-mid);
  line-height: 1.65;
}

/* ===== APP SECTION ===== */
.app-section {
  background: linear-gradient(135deg, var(--white) 0%, #fff5f5 100%);
  position: relative;
  overflow: hidden;
}
.app-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(192,57,43,0.07) 0%, transparent 70%);
}

.app-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.app-desc {
  color: var(--grey-mid);
  line-height: 1.85;
  margin-bottom: 36px;
  font-size: 1rem;
}

.app-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.app-feature {
  display: flex;
  align-items: center;
  gap: 14px;
}
.app-feature-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 0.95rem;
  flex-shrink: 0;
}
.app-feature strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.app-feature span {
  font-size: 0.78rem;
  color: var(--grey-mid);
}

.app-visual { position: relative; display: flex; justify-content: center; }

.app-phone-wrap { position: relative; width: 280px; }

.app-phone {
  width: 280px;
  height: 560px;
  background: var(--black-soft);
  border-radius: 40px;
  padding: 16px;
  box-shadow: 0 40px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
  position: relative;
}
.app-phone::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 24px;
  background: var(--black);
  border-radius: 12px;
  z-index: 10;
}

.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--white);
  border-radius: 28px;
  overflow: hidden;
}

.phone-ui {
  padding: 48px 16px 16px;
  height: 100%;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.phone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-greeting {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.3;
}
.phone-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.7rem;
}

.phone-stats {
  display: flex;
  gap: 6px;
}
.phone-stat {
  flex: 1;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
}
.ps-val {
  display: block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}
.ps-lbl {
  display: block;
  font-size: 0.58rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
}

.phone-workout {
  background: var(--grey-bg);
  border-radius: 12px;
  padding: 12px;
}
.pw-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}
.pw-name {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}
.pw-progress {
  height: 4px;
  background: var(--grey-border);
  border-radius: 2px;
  margin-bottom: 6px;
  overflow: hidden;
}
.pw-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--red), var(--red-light));
  border-radius: 2px;
}
.pw-meta {
  font-size: 0.6rem;
  color: var(--grey-mid);
}

.phone-meal {
  background: var(--grey-bg);
  border-radius: 12px;
  padding: 12px;
  flex: 1;
}
.pm-label {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--grey-mid);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.pm-items { display: flex; flex-direction: column; gap: 6px; }
.pm-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--black);
}
.pm-item i { color: var(--red); font-size: 0.65rem; }
.pm-item.pm-upcoming { color: var(--grey-mid); }
.pm-item.pm-upcoming i { color: var(--grey-light); }

.app-float-card {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--grey-border);
  min-width: 160px;
}
.app-float-card i {
  font-size: 1.3rem;
  color: var(--red);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}
.app-float-card strong {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}
.app-float-card span {
  font-size: 0.72rem;
  color: var(--grey-mid);
}
.app-float-1 {
  right: -60px;
  top: 80px;
  animation: floatY 3s ease-in-out infinite;
}
.app-float-2 {
  left: -60px;
  bottom: 100px;
  animation: floatY 3s ease-in-out infinite 1.5s;
}
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ===== CLASSES ===== */
.classes { background: var(--grey-bg); }

.classes-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: auto auto;
  gap: 20px;
}
/* Row 1: large card takes 4/6, regular card takes 2/6 */
.class-large { grid-column: span 4; }
.class-card:not(.class-large) { grid-column: span 2; }
/* Row 2: last 2 cards each span 3/6 = 50% — fills row evenly */
.class-card:nth-child(3) { grid-column: 1 / 4; }
.class-card:nth-child(4) { grid-column: 4 / 7; }
.class-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 300px;
  cursor: pointer;
}
.class-large {
  height: 400px;
}
/* Functional Training (row-1 right card) matches Group Workouts height */
.class-card:nth-child(2) {
  height: 400px;
}
.class-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.class-card:hover img { transform: scale(1.06); }

.class-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.15) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  transition: var(--transition);
}
.class-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 10px;
  width: fit-content;
}
.class-overlay h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 8px;
}
.class-large .class-overlay h3 { font-size: 1.7rem; }
.class-overlay p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: 400px;
}

/* ===== PRICING ===== */
.pricing { background: var(--white-soft); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-lg);
  padding: 40px 36px 36px;
  position: relative;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.pricing-popular {
  border-color: var(--red);
  box-shadow: var(--shadow-red);
  transform: translateY(-12px);
}
.pricing-popular:hover { transform: translateY(-18px); }

.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 6px 20px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-head { text-align: center; margin-bottom: 32px; }
.pricing-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1.4rem;
  margin: 0 auto 16px;
}
.pricing-popular .pricing-icon {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
}
.pricing-head h3 {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 16px;
}
.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 4px;
  margin-bottom: 6px;
}
.price-currency {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red);
}
.price-amount {
  font-size: 3rem;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.price-period {
  font-size: 0.875rem;
  color: var(--grey-mid);
}
.pricing-tagline {
  font-size: 0.825rem;
  color: var(--grey-mid);
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
  flex: 1;
}
.pricing-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--grey-dark);
}
.pricing-features li i {
  color: var(--red);
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pricing-note {
  text-align: center;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--grey-mid);
  font-size: 0.9rem;
}
.pricing-note i { color: var(--red); }
.pricing-note a { color: var(--red); font-weight: 600; }
.pricing-note a:hover { text-decoration: underline; }

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--grey-bg); }

.testimonials-wrap { position: relative; }

.testimonials-track {
  display: flex;
  gap: 20px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 24px 26px;
  min-width: calc((100% - 40px) / 3);
  max-width: calc((100% - 40px) / 3);
  flex-shrink: 0;
  box-sizing: border-box;
  transition: var(--transition);
}
.testi-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--red);
  transform: translateY(-4px);
}
.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}
.testi-stars i { color: #f39c12; font-size: 0.875rem; }
.testi-quote {
  font-size: 0.875rem;
  color: var(--grey-dark);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testi-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.825rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-author strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 2px;
}
.testi-author span {
  font-size: 0.78rem;
  color: var(--grey-mid);
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.testi-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--grey-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--grey-dark);
  transition: var(--transition);
  font-size: 0.875rem;
}
.testi-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: var(--red-glow);
}
.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}
.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--grey-border);
  transition: var(--transition);
  cursor: pointer;
}
.testi-dot.active {
  background: var(--red);
  width: 24px;
  border-radius: 4px;
}

/* ===== GALLERY ===== */
.gallery { background: var(--white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  grid-auto-flow: dense;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-tall { grid-row: span 2; }
.gallery-wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.gallery-item:hover img { transform: scale(1.08); }

.gallery-hover {
  position: absolute;
  inset: 0;
  background: rgba(192,57,43,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  opacity: 0;
  transition: var(--transition);
}
.gallery-item:hover .gallery-hover { opacity: 1; }

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
}
.cta-bg {
  position: absolute;
  inset: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.88) 0%, rgba(10,0,0,0.78) 100%);
}
.cta-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.cta-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}
.cta-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ===== CONTACT ===== */
.contact { background: var(--white-soft); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 36px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--red-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item strong {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--grey-mid);
  margin-bottom: 4px;
}
.contact-item a,
.contact-item span,
.contact-item address {
  font-size: 0.95rem;
  color: var(--black);
  font-weight: 500;
  line-height: 1.7;
}
.contact-item a:hover { color: var(--red); }

.map-placeholder {
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 220px;
  border: 1px solid var(--grey-border);
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--grey-border);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--grey-dark);
  letter-spacing: 0.3px;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--grey-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: var(--font-main);
  color: var(--black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px var(--red-glow);
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--grey-light);
}

/* ===== FOOTER ===== */
.footer { background: var(--black); }

.footer-top { padding: 80px 0 60px; }

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
}

.footer-logo {
  font-size: 1.6rem;
  font-weight: 900;
  display: block;
  margin-bottom: 16px;
}
.footer .logo-fitness { color: rgba(255,255,255,0.9); }

.footer-tagline {
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.footer-about {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.8;
  margin-bottom: 24px;
  max-width: 320px;
}
.footer-social {
  display: flex;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--red); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}
.footer-contact li i { color: var(--red); margin-top: 3px; flex-shrink: 0; }
.footer-contact li a { color: rgba(255,255,255,0.5); }
.footer-contact li a:hover { color: var(--red); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer-bottom p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.35);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--red); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1) translateY(-3px);
  box-shadow: 0 12px 32px rgba(37,211,102,0.55);
}
.whatsapp-tooltip {
  position: absolute;
  right: 66px;
  background: var(--black-soft);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1200px) {
  .container { padding: 0 60px; }
  .nav-container { padding: 0 60px; }
  .hero-content { padding: 0 60px; padding-top: 80px; }
  .why-grid { grid-template-columns: repeat(3, 1fr); }
  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 36px; }
}

@media (max-width: 1024px) {
  .container { padding: 0 40px; }
  .nav-container { padding: 0 40px; }
  .hero-content { padding: 0 40px; padding-top: 80px; }
  .about-grid { grid-template-columns: 1fr; gap: 50px; }
  .about-media { display: none; }
  .app-grid { grid-template-columns: 1fr; gap: 60px; }
  .app-visual { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .stat-item { padding: 0 36px; }
}

/* ============================================
   MOBILE — 768px and below
   Full center-alignment, no overflow buttons
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-container { padding: 0 20px; }
  .hero-content { padding: 0 20px; padding-top: 80px; }
  .section { padding: 60px 0; }

  /* ----- NAV ----- */
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 100px 32px 40px;
    gap: 4px;
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
    z-index: 999;
    align-items: flex-start;
  }
  .nav-links.open { right: 0; }
  .nav-links a { color: var(--black) !important; width: 100%; padding: 12px 16px; }
  .nav-toggle { display: flex; z-index: 1001; position: relative; }
  .nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
  .nav-toggle.open span:nth-child(2) { opacity: 0; }
  .nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }
  .nav-toggle.open span { background: var(--black); }

  /* ----- GLOBAL TEXT CENTER ----- */
  .section-label,
  .section-title,
  .section-sub,
  .section-header,
  .section-header .section-sub {
    text-align: center;
  }
  .section-label {
    justify-content: center;
    display: flex;
  }
  .section-label::before { display: none; }

  /* ----- GLOBAL BUTTON CONTAINMENT ----- */
  .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
    box-sizing: border-box;
    white-space: normal;
    word-break: break-word;
  }

  /* ----- HERO ----- */
  .hero { min-height: 100svh; }
  .hero-content { text-align: center; }
  .hero-badge { margin: 0 auto 28px; }
  .hero-title {
    font-size: 2.4rem;
    text-align: center;
  }
  .hero-sub { text-align: center; margin-left: auto; margin-right: auto; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .hero-actions .btn { width: 100%; max-width: 400px; justify-content: center; }
  .hero-trust {
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px 0;
  }
  .trust-divider { display: none; }
  .trust-item { padding: 4px 12px; justify-content: center; }

  /* ----- STATS BAR ----- */
  .stats-grid {
    flex-wrap: wrap;
    justify-content: center;
  }
  .stat-item {
    padding: 16px 12px;
    flex: 0 0 50%;
    max-width: 50%;
    text-align: center;
    align-items: center;
  }
  .stat-divider { display: none; }

  /* ----- ABOUT ----- */
  .about-content { text-align: center; }
  .about-content .section-label { justify-content: center; }
  .about-text { text-align: center; }
  .about-pillars {
    grid-template-columns: 1fr;
    justify-items: center;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
  }
  .pillar {
    width: 100%;
    text-align: left;
  }
  .pillar strong,
  .pillar span {
    text-align: left;
  }
  .about-content .btn {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: flex;
  }

  /* ----- WHY CHOOSE ----- */
  .why-grid { grid-template-columns: 1fr 1fr; }
  .why-card { text-align: center; align-items: center; }
  .why-icon { margin: 0 auto 20px; }

  /* ----- SERVICES ----- */
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-body { text-align: center; }

  /* ----- APP SECTION ----- */
  .app-content { text-align: center; }
  .app-content .section-label { justify-content: center; }
  .app-desc { text-align: center; }
  .app-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: fit-content;
    min-width: min(100%, 300px);
    margin-left: auto;
    margin-right: auto;
  }
  .app-feature {
    width: auto;
    text-align: left;
  }
  .app-feature strong,
  .app-feature span {
    text-align: left;
  }
  .app-content .btn {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    display: flex;
  }

  /* ----- CLASSES ----- */
  .classes-grid { grid-template-columns: 1fr; }
  .class-card,
  .class-large,
  .class-card:not(.class-large),
  .class-card:nth-child(3),
  .class-card:nth-child(4) { grid-column: 1 / -1; }
  .class-overlay { align-items: center; text-align: center; }
  .class-overlay .btn { max-width: 200px; margin: 0 auto; }
  .class-tag { margin: 0 auto 10px; }

  /* ----- PRICING ----- */
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-popular { transform: none; }
  .pricing-card { text-align: center; }
  .pricing-card .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }
  .pricing-features {
    width: fit-content;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .pricing-features li { justify-content: flex-start; }
  .pricing-note { flex-direction: column; text-align: center; gap: 6px; }

  /* ----- TESTIMONIALS ----- */
  .testi-card { min-width: 100%; text-align: center; }
  .testi-stars { justify-content: center; }
  .testi-author { justify-content: center; }
  .testi-controls { justify-content: center; }

  /* ----- GALLERY ----- */
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-tall, .gallery-wide { grid-column: span 1; grid-row: span 1; }

  /* ----- CTA BANNER ----- */
  .cta-content { text-align: center; padding: 0 8px; }
  .cta-title { text-align: center; }
  .cta-sub { text-align: center; }
  .cta-actions {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .cta-actions .btn { width: 100%; max-width: 360px; justify-content: center; }

  /* ----- CONTACT ----- */
  .contact-card { padding: 24px 20px; }
  .contact-form-wrap { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form .btn {
    width: 100%;
    max-width: 100%;
    justify-content: center;
  }

  /* ----- FOOTER ----- */
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { text-align: center; }
  .footer-brand .footer-tagline { text-align: center; }
  .footer-brand .footer-about { text-align: center; max-width: 100%; }
  .footer-social { justify-content: center; }
  .footer-col { text-align: center; }
  .footer-col ul { align-items: center; }
  .footer-contact {
    width: fit-content;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    align-items: flex-start;
  }
  .footer-contact li { justify-content: flex-start; text-align: left; }
  .footer-bottom .container {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  .footer-bottom-links { justify-content: center; }
}

/* ============================================
   MOBILE — 480px and below (small phones)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }
  .hero-content { padding: 0 16px; padding-top: 80px; }
  .section { padding: 50px 0; }

  /* Typography scaling */
  .hero-title { font-size: 2rem; }
  .section-title { font-size: 1.65rem; }
  .cta-title { font-size: 1.65rem; }

  /* Single column layouts */
  .why-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }

  /* Stats — 2 per row on small phones */
  .stats-grid { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .stat-item { padding: 16px 8px; flex: 0 0 50%; max-width: 50%; text-align: center; align-items: center; }

  /* Pricing icon centred */
  .pricing-icon { margin-left: auto; margin-right: auto; }

  /* Why card icon centred */
  .why-icon { margin-left: auto; margin-right: auto; }

  /* Buttons always full width on small phones */
  .btn { max-width: 100%; }
  .hero-actions .btn,
  .cta-actions .btn,
  .app-content .btn,
  .about-content .btn { max-width: 100%; }

  /* Contact */
  .contact-card { padding: 20px 16px; }
  .contact-form-wrap { padding: 20px 16px; }
}
