/* ============================================
   WELLNESS WARRIORS — Main Stylesheet
   ============================================ */

:root {
  --red: #E5323B;
  --lime: #AEEA00;
  --dark: #1A1A2E;
  --grey-light: #F5F6F5;
  --grey-mid: #6B7280;
  --white: #FFFFFF;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.14);
  --radius: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); overflow-x: hidden; background: var(--white); }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
section { padding: 100px 0; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 20px;
}
.section-sub {
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--grey-mid);
  max-width: 560px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.3px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-red { background: var(--red); color: var(--white); }
.btn-red:hover { background: #c4222b; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(229,50,59,0.35); }
.btn-lime { background: var(--lime); color: var(--dark); }
.btn-lime:hover { background: #9fd400; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(174,234,0,0.4); }
.btn-outline-lime { background: transparent; color: var(--lime); border-color: var(--lime); }
.btn-outline-lime:hover { background: var(--lime); color: var(--dark); transform: translateY(-2px); }

/* Reveal animations */
.reveal-up {
  opacity: 0;
  transform: translateY(48px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal-up.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* ============================================ NAVIGATION */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 18px 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.08), var(--shadow-sm);
  padding: 10px 0;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__logo img { height: 48px; width: auto; transition: var(--transition); }
.nav.scrolled .nav__logo img { height: 40px; }
.nav__links { display: flex; gap: 32px; }
.nav__links a {
  font-family: var(--font-heading);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--lime);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.nav__links a:hover { color: var(--red); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__cta { padding: 10px 22px; font-size: 0.8rem; }
.nav__hamburger { display: none; flex-direction: column; gap: 5px; padding: 4px; }
.nav__hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: var(--transition); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.nav__mobile.open { display: flex; }
.nav__mobile-close { position: absolute; top: 24px; right: 24px; color: var(--dark); padding: 8px; }
.nav__mobile ul { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.nav__mobile ul li a { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--dark); transition: var(--transition); }
.nav__mobile ul li a:hover { color: var(--red); }

/* ============================================ HERO */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #f0ffe0 0%, #ffffff 45%, #fff5f5 100%);
  display: flex;
  align-items: center;
  padding-top: 88px;
  position: relative;
  overflow: hidden;
}
.hero__shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape { position: absolute; border-radius: 50%; }
.shape--1 { width: 600px; height: 600px; background: var(--lime); opacity: 0.08; top: -250px; right: -120px; animation: floatShape 9s ease-in-out infinite; }
.shape--2 { width: 350px; height: 350px; background: var(--red); opacity: 0.07; bottom: -100px; left: -80px; animation: floatShape 11s ease-in-out infinite reverse; }
.shape--3 { width: 180px; height: 180px; background: var(--lime); opacity: 0.15; top: 38%; right: 38%; animation: floatShape 7s ease-in-out infinite 2s; }
.shape--4 { width: 80px; height: 80px; background: var(--red); opacity: 0.12; top: 20%; left: 48%; animation: floatShape 5s ease-in-out infinite 1s; }
@keyframes floatShape {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-28px) scale(1.04); }
}

.hero__inner { display: grid; grid-template-columns: 55fr 45fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
.hero__content { display: flex; flex-direction: column; }
.hero__overline { font-size: 0.75rem; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 16px; }
.hero__title { font-family: var(--font-heading); font-size: clamp(2.8rem, 5.5vw, 4.5rem); font-weight: 900; line-height: 1.08; color: var(--dark); margin-bottom: 24px; }
.hero__title .highlight { color: var(--red); }
.hero__sub { font-size: 1.1rem; line-height: 1.78; color: var(--grey-mid); margin-bottom: 36px; max-width: 480px; }
.hero__ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 32px; }
.hero__trust { display: flex; flex-wrap: wrap; gap: 20px; }
.hero__trust-item { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; font-weight: 500; color: var(--grey-mid); }

.hero__image-wrap { position: relative; }
.hero__image-wrap img { border-radius: 24px; box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero__image-badge { position: absolute; bottom: -20px; left: -20px; background: var(--white); border-radius: 16px; padding: 16px 20px; box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px; }
.hero__badge-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(229,50,59,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.hero__badge-title { font-family: var(--font-heading); font-size: 0.9rem; font-weight: 700; color: var(--dark); line-height: 1.2; }
.hero__badge-sub { font-size: 0.75rem; color: var(--grey-mid); margin-top: 2px; }

.hero__scroll-hint { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; }
.scroll-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--grey-mid); animation: scrollBounce 2s ease-in-out infinite; }
@keyframes scrollBounce { 0%, 100% { transform: translateY(0); opacity: 1; } 50% { transform: translateY(12px); opacity: 0.4; } }

/* ============================================ TRUST BAR */
.trust-bar { background: var(--dark); padding: 64px 0; }
.trust-bar__inner { display: flex; align-items: center; justify-content: space-around; gap: 24px; flex-wrap: wrap; }
.trust-stat { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 8px; }
.trust-stat__number { display: flex; align-items: baseline; gap: 2px; font-family: var(--font-heading); font-size: 3.2rem; font-weight: 800; color: var(--lime); line-height: 1; }
.trust-stat__suffix { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--lime); }
.trust-stat__label { font-size: 0.8rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.5); }
.trust-stat__icon { display: flex; align-items: center; justify-content: center; }
.trust-bar__divider { width: 1px; height: 64px; background: rgba(255,255,255,0.1); flex-shrink: 0; }

/* ============================================ SERVICES */
.services { background: var(--grey-light); }
.services__header { text-align: center; margin-bottom: 60px; }
.services__header .section-sub { margin: 0 auto; }
.services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card { background: var(--white); border-radius: var(--radius); padding: 40px 32px 32px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden; transition: var(--transition); display: flex; flex-direction: column; gap: 18px; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.service-card__bar { position: absolute; top: 0; left: 0; right: 0; height: 4px; transition: height 0.3s ease; }
.service-card:hover .service-card__bar { height: 6px; }
.service-card__bar--red { background: var(--red); }
.service-card__bar--lime { background: var(--lime); }
.service-card__bar--dark { background: var(--dark); }
.service-card--featured { background: var(--dark); box-shadow: var(--shadow-md); }
.service-card--featured .service-card__title { color: var(--white); }
.service-card--featured .service-card__list li { color: rgba(255,255,255,0.65); }
.service-card--featured .service-card__link { color: var(--lime); }
.service-card__header { display: flex; align-items: center; justify-content: space-between; }
.service-card__icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; }
.service-card__icon--red { background: rgba(229,50,59,0.1); color: var(--red); }
.service-card__icon--lime { background: rgba(174,234,0,0.15); color: var(--dark); }
.service-card__icon--dark { background: rgba(26,26,46,0.08); color: var(--dark); }
.service-card--featured .service-card__icon--lime { background: rgba(174,234,0,0.2); }
.service-card__tier { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--grey-mid); }
.service-card--featured .service-card__tier { color: rgba(255,255,255,0.4); }
.service-card__title { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--dark); line-height: 1.3; }
.service-card__list { display: flex; flex-direction: column; gap: 11px; flex: 1; }
.service-card__list li { font-size: 0.9rem; color: var(--grey-mid); padding-left: 20px; position: relative; line-height: 1.5; }
.service-card__list li::before { content: ''; position: absolute; left: 0; top: 7px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }
.service-card__link { display: inline-flex; align-items: center; gap: 6px; font-family: var(--font-heading); font-size: 0.82rem; font-weight: 700; color: var(--red); margin-top: auto; transition: var(--transition); }
.service-card__link:hover { gap: 10px; }

/* ============================================ HOW IT WORKS */
.hiw { background: var(--white); }
.hiw__header { text-align: center; margin-bottom: 64px; }
.hiw__header .section-sub { margin: 0 auto; }
.hiw__steps { display: flex; align-items: flex-start; justify-content: center; }
.hiw__step { flex: 1; max-width: 300px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 16px; padding: 0 16px; }
.hiw__step-num { font-family: var(--font-heading); font-size: 0.7rem; font-weight: 800; letter-spacing: 2px; color: var(--grey-mid); }
.hiw__step-circle { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--red), #c4222b); display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 28px rgba(229,50,59,0.3); transition: var(--transition); flex-shrink: 0; }
.hiw__step:hover .hiw__step-circle { background: linear-gradient(135deg, var(--dark), #2d2d4e); transform: scale(1.08); box-shadow: 0 12px 32px rgba(26,26,46,0.25); }
.hiw__step h3 { font-family: var(--font-heading); font-size: 1.2rem; font-weight: 700; color: var(--dark); }
.hiw__step p { font-size: 0.9rem; line-height: 1.68; color: var(--grey-mid); }
.hiw__connector { flex: 0 0 80px; display: flex; align-items: center; margin-top: 40px; position: relative; }
.hiw__connector-line { flex: 1; height: 2px; background: linear-gradient(90deg, var(--red), var(--lime)); }
.hiw__connector-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--lime); flex-shrink: 0; }

/* ============================================ WHY US */
.why-us { background: var(--grey-light); }
.why-us__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-us__copy { display: flex; flex-direction: column; gap: 18px; }
.why-us__copy p { font-size: 1rem; line-height: 1.78; color: var(--grey-mid); }
.why-us__cta { align-self: flex-start; }
.why-us__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card { background: var(--white); border-radius: var(--radius); padding: 28px 24px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; transition: var(--transition); }
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.why-card__icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; }
.why-card__icon--red { background: rgba(229,50,59,0.08); }
.why-card__icon--lime { background: rgba(174,234,0,0.15); }
.why-card h4 { font-family: var(--font-heading); font-size: 0.95rem; font-weight: 700; color: var(--dark); }
.why-card p { font-size: 0.85rem; line-height: 1.62; color: var(--grey-mid); }

/* ============================================ WHO WE SERVE */
.who { background: var(--white); }
.who__header { text-align: center; margin-bottom: 60px; }
.who__header .section-sub { margin: 0 auto; }
.who__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.who-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); transition: var(--transition); }
.who-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.who-card__img { position: relative; height: 280px; overflow: hidden; }
.who-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.who-card:hover .who-card__img img { transform: scale(1.06); }
.who-card__overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 40%, rgba(26,26,46,0.5)); }
.who-card__badge { position: absolute; top: 20px; left: 20px; font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 6px 16px; border-radius: 50px; }
.who-card__badge--red { background: var(--red); color: var(--white); }
.who-card__badge--lime { background: var(--lime); color: var(--dark); }
.who-card__body { padding: 36px 32px; display: flex; flex-direction: column; gap: 16px; }
.who-card__body h3 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 700; color: var(--dark); }
.who-card__body p { font-size: 0.95rem; line-height: 1.72; color: var(--grey-mid); }
.who-card__features { display: flex; flex-direction: column; gap: 10px; }
.who-card__features li { font-size: 0.88rem; color: var(--grey-mid); padding-left: 20px; position: relative; }
.who-card__features li::before { content: ''; position: absolute; left: 0; top: 6px; width: 7px; height: 7px; border-radius: 50%; background: var(--lime); }

/* ============================================ CONTACT */
.contact { background: linear-gradient(135deg, var(--dark) 0%, #16213e 40%, #0a1a0a 100%); padding: 100px 0; position: relative; overflow: hidden; }
.contact__bg { position: absolute; inset: 0; pointer-events: none; }
.contact__bg-shape { position: absolute; width: 600px; height: 600px; border-radius: 50%; background: var(--lime); opacity: 0.03; top: -200px; right: -200px; animation: floatShape 12s ease-in-out infinite; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; position: relative; z-index: 1; }
.contact__copy { display: flex; flex-direction: column; gap: 24px; }
.contact__label { color: var(--lime) !important; }
.contact__title { color: var(--white) !important; }
.contact__sub { color: rgba(255,255,255,0.7); font-size: 1.05rem; line-height: 1.78; max-width: 400px; }
.contact__details { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.contact__detail { display: flex; align-items: center; gap: 14px; color: rgba(255,255,255,0.75); font-size: 0.95rem; }
.contact__detail-icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(174,234,0,0.1); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

.contact__form { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 20px; padding: 44px; backdrop-filter: blur(10px); 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: 8px; }
.form-group label { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.6); }
.form-group input, .form-group textarea, .form-group select { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.12); border-radius: 12px; padding: 14px 16px; font-family: var(--font-body); font-size: 0.95rem; color: var(--white); outline: none; transition: var(--transition); resize: none; -webkit-appearance: none; }
.form-group select { cursor: pointer; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='rgba(255,255,255,0.4)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 16px center; padding-right: 40px; }
.form-group select option { background: var(--dark); color: var(--white); }
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--lime); background: rgba(174,234,0,0.05); box-shadow: 0 0 0 3px rgba(174,234,0,0.1); }
.contact__submit { width: 100%; justify-content: center; position: relative; overflow: hidden; font-size: 0.92rem; }
.contact__submit::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.25) 50%, transparent 100%); transform: translateX(-100%); transition: transform 0.6s ease; }
.contact__submit:hover::before { transform: translateX(100%); }

/* ============================================ FOOTER */
.footer { background: #0f0f1a; padding: 72px 0 0; }
.footer__inner { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 60px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.footer__brand { display: flex; flex-direction: column; gap: 16px; }
.footer__logo { filter: brightness(0) invert(1); opacity: 0.9; }
.footer__brand p { font-size: 0.88rem; line-height: 1.68; color: rgba(255,255,255,0.45); max-width: 260px; }
.footer__social-row { display: flex; gap: 12px; margin-top: 4px; }
.footer__social-link { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.06); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer__social-link:hover { background: var(--lime); color: var(--dark); transform: translateY(-3px); }
.footer__nav h5, .footer__services h5 { font-family: var(--font-heading); font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.35); margin-bottom: 20px; }
.footer__nav ul, .footer__services ul { display: flex; flex-direction: column; gap: 12px; }
.footer__nav ul li a, .footer__services ul li a { font-size: 0.88rem; color: rgba(255,255,255,0.55); transition: var(--transition); }
.footer__nav ul li a:hover, .footer__services ul li a:hover { color: var(--lime); padding-left: 4px; }
.footer__bottom { padding: 22px 0; }
.footer__bottom-inner { display: flex; justify-content: space-between; align-items: center; }
.footer__bottom-inner p { font-size: 0.78rem; color: rgba(255,255,255,0.25); }

/* ============================================ RESPONSIVE */

/* Prevent horizontal scroll from animated shapes */
body { overflow-x: hidden; }

/* iOS: prevent font size boost */
html { -webkit-text-size-adjust: 100%; }

/* Tablet */
@media (max-width: 1024px) {
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why-us__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__inner { grid-template-columns: 1fr; gap: 48px; }
  .contact__sub { max-width: 100%; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: span 2; }
}

/* Mobile landscape + portrait */
@media (max-width: 768px) {
  /* Tighter container padding */
  .container { padding: 0 20px; }

  section { padding: 64px 0; }

  /* --- NAV --- */
  .nav__links { display: none; }
  .nav__cta { display: none; }
  .nav__hamburger { display: flex; }
  /* Ensure hamburger tap target is large enough */
  .nav__hamburger { min-width: 44px; min-height: 44px; align-items: center; justify-content: center; }

  /* --- HERO --- */
  .hero { padding-top: 72px; min-height: 100svh; }
  .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 0; }
  .hero__image { display: none; }
  .hero__content { padding: 24px 0 48px; }
  .hero__overline { font-size: 0.7rem; }
  .hero__title { font-size: clamp(2.2rem, 8vw, 3rem); margin-bottom: 18px; }
  .hero__sub { max-width: 100%; margin: 0 auto 28px; font-size: 1rem; }
  .hero__ctas { justify-content: center; flex-direction: column; align-items: center; gap: 12px; }
  .hero__ctas .btn { width: 100%; max-width: 320px; justify-content: center; padding: 16px 28px; font-size: 0.95rem; }
  .hero__trust { justify-content: center; gap: 12px; flex-wrap: wrap; }
  .hero__trust-item { font-size: 0.82rem; }
  /* Scroll hint sits closer on mobile */
  .hero__scroll-hint { bottom: 16px; }

  /* --- TRUST BAR --- */
  .trust-bar { padding: 48px 0; }
  .trust-bar__inner { gap: 28px; flex-wrap: wrap; justify-content: center; }
  .trust-bar__divider { display: none; }
  .trust-stat { min-width: 120px; }

  /* --- SERVICES --- */
  .services__grid { grid-template-columns: 1fr; gap: 20px; }
  /* Show featured (dark) card last on mobile so it reads in tier order */
  .service-card--featured { order: 2; }
  .service-card { padding: 32px 24px 24px; }

  /* --- HOW IT WORKS --- */
  .hiw__steps { flex-direction: column; align-items: center; }
  .hiw__step { max-width: 340px; padding: 0 8px; }
  .hiw__connector {
    flex-direction: column;
    height: 44px;
    width: auto;
    flex: 0 0 auto;
    margin-top: 0;
    align-items: center;
    justify-content: center;
  }
  .hiw__connector-line { width: 2px; height: 100%; background: linear-gradient(180deg, var(--red), var(--lime)); flex: 1; }
  .hiw__connector-dot { margin-top: -5px; }

  /* --- WHY US --- */
  .why-us__inner { grid-template-columns: 1fr; gap: 40px; }
  .why-us__cta { align-self: center; width: 100%; max-width: 320px; justify-content: center; }
  .why-us__grid { grid-template-columns: 1fr 1fr; gap: 16px; }

  /* --- WHO WE SERVE --- */
  .who__grid { grid-template-columns: 1fr; }
  .who-card__img { height: 220px; }
  .who-card__body { padding: 24px 20px; }
  .who-card__body .btn { width: 100%; justify-content: center; }

  /* --- CONTACT --- */
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .contact__form { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  /* iOS: 16px min font on inputs prevents auto-zoom */
  .form-group input,
  .form-group textarea,
  .form-group select { font-size: 16px; }
  .contact__submit { padding: 16px 28px; font-size: 0.95rem; }

  /* --- FOOTER --- */
  .footer__inner { grid-template-columns: 1fr; gap: 36px; }
  .footer__brand { grid-column: span 1; }
  .footer__bottom-inner { flex-direction: column; gap: 8px; text-align: center; }
}

/* Small phones */
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  section { padding: 56px 0; }

  .section-title { font-size: 1.85rem; }
  .section-sub { font-size: 1rem; }

  .hero__title { font-size: 2rem; }
  .hero__ctas .btn { max-width: 100%; }

  .trust-bar__inner { flex-direction: column; gap: 28px; align-items: center; }
  .trust-stat { width: 100%; }

  .service-card { padding: 28px 20px 20px; gap: 14px; }
  .service-card__icon { width: 48px; height: 48px; }

  .why-us__grid { grid-template-columns: 1fr; }
  .why-card { padding: 22px 18px; }

  .hiw__step-circle { width: 68px; height: 68px; }
  .hiw__step h3 { font-size: 1.1rem; }

  .who-card__img { height: 190px; }

  .contact__form { padding: 24px 16px; }

  .footer { padding: 52px 0 0; }
  .footer__social-row { flex-wrap: wrap; }

  /* Ensure all tap targets are at least 44px */
  .btn { min-height: 44px; }
  .footer__social-link { min-width: 44px; min-height: 44px; }
  .nav__mobile ul li a { min-height: 44px; display: flex; align-items: center; justify-content: center; }
}
