/* =============================================
   VRIHIT CONSULTANCY — Main Stylesheet
   Colours: Navy #0B1F4A | Gold #B8922A | White #fff
   ============================================= */

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #374151;
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
}

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

/* ----- COLOURS ----- */
:root {
  --navy: #0B1F4A;
  --navy-dark: #071530;
  --navy-mid: #0F2660;
  --gold: #B8922A;
  --gold-light: #FBF5E8;
  --gold-border: #E8D5A0;
  --white: #fff;
  --light: #F8F9FB;
  --cream: #FBF5E8;
  --text: #374151;
  --muted: #6B7280;
  --border: #E5E7EB;
  --slate: #334155;
}

/* ----- UTILITY ----- */
.gold { color: var(--gold); }
.bg-white { background: var(--white); }
.bg-light { background: var(--light); }
.bg-cream { background: var(--cream); }

.gold-line {
  width: 44px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 10px 0 20px;
}
.gold-line.center { margin-left: auto; margin-right: auto; }

.tag {
  display: inline-block;
  background: var(--gold-light);
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  margin-bottom: 14px;
}
.tag-light {
  background: rgba(255,255,255,0.08);
  color: #E8D5A0;
  border-color: rgba(232,213,160,0.27);
}

/* ----- BUTTONS ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 500;
  padding: 12px 26px;
  min-height: 44px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-gold   { background: var(--gold);   color: #fff; }
.btn-slate  { background: var(--slate);  color: #fff; }
.btn-navy   { background: var(--navy);   color: #fff; }
.btn-whatsapp { background: #25D366; color: #fff; }

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

/* ----- NAVBAR ----- */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(184,146,42,0.13);
}
.navbar-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--gold);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.brand-icon i { font-size: 19px; color: #fff; }
.brand-name { color: #fff; font-size: 14px; font-weight: 500; line-height: 1.2; }
.brand-tagline { color: var(--gold); font-size: 10px; letter-spacing: 1.2px; }

/* Logo image in navbar / footer */
.brand-logo {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
  filter: drop-shadow(0 1px 3px rgba(0,0,0,0.3));
}

/* Logo image in hero card */
.hero-logo {
  width: 72px;
  height: 72px;
  object-fit: contain;
  margin: 0 auto 12px;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(0,0,0,0.25));
}

.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-link {
  color: #CBD5E8;
  font-size: 13px;
  transition: color 0.2s;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 6px;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* ----- HERO ----- */
.hero {
  background: var(--navy);
  padding: 4.5rem 2rem 0;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: start;
  max-width: 1200px;
  margin: 0 auto;
}
/* Full-width navy background behind hero */
.hero { width: 100%; max-width: 100%; background: var(--navy); }
.hero-left { max-width: 600px; }
.hero-right { max-width: 600px; }

.hero {
  padding-left: max(2rem, calc((100% - 1200px) / 2 + 2rem));
  padding-right: max(2rem, calc((100% - 1200px) / 2 + 2rem));
}

.hero-left { padding-bottom: 4rem; }

.hero h1 {
  color: #fff;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 16px;
}

.hero-desc {
  color: #8896B3;
  font-size: 14px;
  line-height: 1.85;
  margin-bottom: 30px;
  max-width: 460px;
}

.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 3rem; }

.stats-pill {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  overflow: hidden;
}
.stat-item {
  padding: 14px 22px;
  border-right: 0.5px solid rgba(255,255,255,0.1);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num { color: var(--gold); font-size: 20px; font-weight: 500; }
.stat-lbl { color: #8896B3; font-size: 11px; margin-top: 2px; }

/* Hero Right Cards */
.hero-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  position: relative;
  top: 2px;
  align-self: start;
  margin-top: 2rem;
}
.hero-card-top {
  background: #fff;
  border-radius: 12px 12px 0 0;
  padding: 1.25rem;
  grid-column: 1 / -1;
  border-bottom: 3px solid var(--gold);
}
.hero-card-label { color: var(--gold); font-size: 11px; letter-spacing: 1px; margin-bottom: 4px; }
.hero-card-text { color: var(--navy); font-size: 14px; font-weight: 500; line-height: 1.5; }
.hero-card-small {
  background: var(--light);
  padding: 1.1rem;
  border: 0.5px solid var(--border);
  border-top: none;
}
.hero-card-small:first-of-type { border-radius: 0 0 0 12px; }
.hero-card-small:last-of-type  { border-radius: 0 0 12px 0; }
.hero-card-small i { font-size: 22px; display: block; margin-bottom: 8px; }
.hcs-title { color: var(--navy); font-size: 13px; font-weight: 500; }
.hcs-sub   { color: #9CA3AF; font-size: 11px; margin-top: 3px; }

/* ----- GOLD STRIP ----- */
.gold-strip {
  background: var(--gold);
  padding: 11px 2rem;
  display: flex;
  gap: 28px;
  justify-content: center;
  flex-wrap: wrap;
}
.gold-strip span {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
}
.gold-strip span i { margin-right: 5px; }
.gold-strip .sep { opacity: 0.4; }

/* ----- SECTION ----- */
.section { padding: 4rem 2rem; }
.section-head {
  text-align: center;
  margin-bottom: 2.5rem;
}
.section-head h2 {
  color: var(--navy);
  font-size: clamp(18px, 4vw, 24px);
  font-weight: 500;
  margin-bottom: 0;
}
.section-sub {
  color: var(--muted);
  font-size: 13px;
  margin-top: 12px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ----- SERVICES ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.service-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem 1.25rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  min-width: 0;
}
.service-card:hover {
  border-color: var(--gold-border);
  box-shadow: 0 4px 20px rgba(184,146,42,0.08);
}
.icon-wrap {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.icon-wrap i { font-size: 20px; color: var(--gold); }
.service-card h3 { color: var(--navy); font-size: 14px; font-weight: 500; margin-bottom: 6px; }
.service-card p  { color: var(--muted); font-size: 12px; line-height: 1.7; }

/* ----- WHY US ----- */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}
.why-left h2 { color: var(--navy); font-size: clamp(18px, 4vw, 22px); font-weight: 500; margin-bottom: 8px; }
.why-left > p { color: var(--muted); font-size: 13px; line-height: 1.85; margin-bottom: 22px; }

.why-items { display: flex; flex-direction: column; gap: 16px; }
.why-item  { display: flex; gap: 14px; align-items: flex-start; }
.why-icon  {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(184,146,42,0.09);
  border: 1px solid rgba(184,146,42,0.27);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.why-icon i { font-size: 17px; color: var(--gold); }
.why-item h4 { font-size: 13px; font-weight: 500; color: var(--navy); margin-bottom: 3px; }
.why-item p  { font-size: 12px; color: var(--muted); line-height: 1.6; }

.why-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.stat-box {
  background: var(--navy);
  border: 0.5px solid rgba(184,146,42,0.13);
  border-radius: 10px;
  padding: 1.25rem;
  text-align: center;
}
.stat-big  { color: var(--gold); font-size: 28px; font-weight: 500; }
.stat-lbl2 { color: #8896B3; font-size: 12px; margin-top: 5px; }

/* ----- PROCESS ----- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 21px;
  left: 12.5%;
  right: 12.5%;
  height: 1px;
  background: repeating-linear-gradient(90deg, var(--gold-border) 0, var(--gold-border) 8px, transparent 8px, transparent 16px);
}
.process-step { text-align: center; padding: 0 1rem; }
.step-num {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid rgba(184,146,42,0.33);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 14px; font-weight: 500;
  margin: 0 auto 14px;
  position: relative;
  z-index: 1;
}
.process-step h4 { color: var(--navy); font-size: 13px; font-weight: 500; margin-bottom: 6px; }
.process-step p  { color: var(--muted); font-size: 12px; line-height: 1.65; }

/* ----- TEAM ----- */
.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.team-card {
  background: #fff;
  border: 0.5px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  padding: 1.5rem;
}
.founder-card {
  grid-column: 1 / -1;
  border-top: 3px solid var(--gold);
  padding: 0;
}
.founder-inner {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 1.75rem;
  align-items: center;
}
.founder-left { text-align: center; }
.team-avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; font-weight: 500;
  border: 3px solid rgba(184,146,42,0.27);
  flex-shrink: 0;
  margin-bottom: 10px;
}
.founder-avatar { width: 72px; height: 72px; font-size: 22px; margin: 0 auto 10px; }

/* Founder real photo */
.founder-photo {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top;
  border: 3px solid var(--gold);
  margin: 0 auto 10px;
  display: block;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Icon avatar for team members without photos */
.team-avatar-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold-light);
  border: 2px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  margin-bottom: 10px;
}
.team-avatar-icon i { font-size: 28px; color: var(--gold); }

/* Founder social links */
.founder-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}
.fsocial-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--gold-border);
  background: var(--gold-light);
  color: var(--gold);
  transition: background 0.2s, color 0.2s;
}
.fsocial-link:hover { background: var(--gold); color: #fff; }
.fsocial-link i { font-size: 14px; }
.founder-badge {
  display: inline-block;
  background: var(--gold);
  color: #fff;
  font-size: 10px;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 20px;
}
.founder-right h3 { color: var(--navy); font-size: 17px; font-weight: 500; margin-bottom: 4px; }
.team-role { color: var(--gold); font-size: 12px; margin-bottom: 12px; }
.founder-right p, .team-card p { color: var(--muted); font-size: 12px; line-height: 1.75; }
.team-card h4 { color: var(--navy); font-size: 14px; font-weight: 500; margin: 12px 0 3px; }

.skill-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.skill-tag {
  background: var(--light);
  color: var(--muted);
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.gold-tag {
  background: var(--gold-light);
  color: var(--gold);
  border-color: var(--gold-border);
}

.team-card-wide { grid-column: 1 / -1; }
.team-wide-inner {
  display: flex;
  gap: 1.25rem;
  align-items: center;
}
.team-wide-inner .team-avatar { flex-shrink: 0; }
.team-wide-inner .team-avatar-icon { flex-shrink: 0; margin-bottom: 0; }

.team-note { text-align: center; color: #9CA3AF; font-size: 12px; margin-top: 20px; }

/* ----- CTA BAND ----- */
.cta-band {
  background: var(--navy);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-watermark {
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-size: 200px;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.cta-inner { position: relative; }
.cta-tag {
  display: inline-block;
  background: rgba(184,146,42,0.09);
  border: 1px solid rgba(184,146,42,0.33);
  border-radius: 20px;
  padding: 5px 16px;
  font-size: 11px;
  color: var(--gold);
  letter-spacing: 1.2px;
  margin-bottom: 14px;
}
.cta-band h2 { color: #fff; font-size: 24px; font-weight: 500; margin-bottom: 10px; }
.cta-band p  { color: #8896B3; font-size: 13px; margin-bottom: 26px; }
.cta-btns    { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ----- CONTACT ----- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.form-field {
  width: 100%;
  padding: 11px 14px;
  min-height: 44px;
  background: var(--light);
  border: 0.5px solid #D1D5DB;
  border-radius: 7px;
  color: var(--navy);
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s;
}
.form-field:focus { border-color: var(--gold); }
.form-field::placeholder { color: #9CA3AF; }
textarea.form-field { resize: vertical; margin-bottom: 10px; }

.contact-info { display: flex; flex-direction: column; }
.contact-row  { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-icon {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--gold-light);
  border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { font-size: 17px; color: var(--gold); }
.contact-label { color: var(--gold); font-size: 11px; letter-spacing: 0.8px; margin-bottom: 5px; }
.contact-text  { color: #374151; font-size: 12px; line-height: 1.75; }
.contact-text a { color: #374151; }
.contact-text a:hover { color: var(--gold); }

/* ----- FOOTER ----- */
.footer { background: var(--navy-dark); padding: 2.5rem 2rem 0; }
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2rem;
}
.footer-brand p { color: #6B7DA0; font-size: 12px; line-height: 1.85; max-width: 280px; margin-top: 14px; }
.footer-brand-row { margin-bottom: 0; }

.footer-contact-quick {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-top: 14px;
}
.footer-contact-quick a {
  color: #8896B3;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.footer-contact-quick a i { font-size: 14px; color: var(--gold); flex-shrink: 0; }
.footer-contact-quick a:hover { color: var(--gold); }

.social-icons { display: flex; gap: 10px; margin-top: 16px; }
.social-icon {
  width: 32px; height: 32px;
  border-radius: 7px;
  background: rgba(255,255,255,0.05);
  border: 0.5px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.social-icon:hover { background: rgba(184,146,42,0.15); }
.social-icon i { font-size: 16px; color: var(--gold); }

.footer-col h5 { color: #fff; font-size: 13px; font-weight: 500; margin-bottom: 14px; }
.footer-col a  { color: #8896B3; font-size: 12px; display: block; margin-bottom: 9px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 0.5px solid rgba(255,255,255,0.07);
  padding: 1.25rem 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-bottom span { color: #3D4F6E; font-size: 12px; }
.footer-credit {
  color: #3D4F6E;
  font-size: 11px;
  text-align: center;
}
.footer-credit strong { color: var(--gold); font-weight: 500; }
.footer-links { display: flex; gap: 18px; }
.footer-links a { color: #3D4F6E; font-size: 12px; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ----- SCROLL TO TOP ----- */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--gold);
  color: #fff;
  border: none;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s, transform 0.3s;
  z-index: 50;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top i { font-size: 18px; }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .hero {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

/* ---- TABLET / LARGE MOBILE (≤ 860px) ---- */
@media (max-width: 860px) {

  /* ── Navbar ── */
  .hamburger { display: flex; }

  /* Keep navbar sticky so it doesn't scroll away when menu opens */
  .navbar { position: sticky; }

  .nav-links {
    display: flex;
    flex-direction: column;
    /* Anchor below sticky navbar — uses fixed positioning so it overlays content */
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 1.25rem 1.5rem 1.5rem;
    gap: 0;
    border-top: 1px solid rgba(184,146,42,0.13);
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
    z-index: 99;
    /* Hidden by default — animate via opacity + transform, NOT display */
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0.22s;
  }
  .nav-links.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    visibility: visible;
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0s linear 0s;
  }
  .nav-links .nav-link {
    padding: 12px 0;
    font-size: 14px;
    border-bottom: 0.5px solid rgba(255,255,255,0.06);
    min-height: 44px;
    display: flex;
    align-items: center;
  }
  .nav-links .btn {
    margin-top: 12px;
    width: 100%;
    justify-content: center;
    min-height: 44px;
  }

  /* ── Hamburger → X animation ── */
  .hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
  }
  .hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
  .hamburger span { transition: transform 0.28s ease, opacity 0.2s ease; }

  /* ── Hero ── */
  .hero {
    grid-template-columns: 1fr;
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .hero-left { padding-bottom: 0; max-width: 100%; }
  .hero h1   { font-size: 26px; }
  /* Show hero right on tablet — hide on mobile via 560 rule */
  .hero-right {
    display: grid;
    max-width: 480px;
  }

  /* ── Sections ── */
  .why-grid     { grid-template-columns: 1fr; }
  .why-right    { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-grid::before { display: none; }
  .team-grid    { grid-template-columns: 1fr; }
  .founder-inner {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
  .founder-left {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  /* ── CTA ── */
  .cta-band h2 { font-size: 20px; }

  /* ── Footer bottom ── */
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}

/* ---- SMALL MOBILE (≤ 560px) ---- */
@media (max-width: 560px) {
  .section { padding: 2.5rem 1.25rem; }

  /* ── Navbar ── */
  .navbar-inner { padding: 0 1.25rem; }
  .brand-name   { font-size: 13px; }
  .brand-logo   { width: 36px; height: 36px; }

  /* ── Hero ── */
  .hero {
    padding: 2.5rem 1.25rem 2.5rem;
  }
  .hero h1     { font-size: 22px; }
  .hero-desc   { font-size: 13px; }
  .hero-left   { padding-bottom: 0; max-width: 100%; }
  .hero-right  { display: none; }

  /* Stats pill: 2×2 grid for small screens */
  .stats-pill {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-radius: 12px;
    width: 100%;
  }
  .stat-item {
    padding: 12px 10px;
    border-right: 0.5px solid rgba(255,255,255,0.1);
    border-bottom: 0.5px solid rgba(255,255,255,0.1);
  }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }

  /* ── Gold strip ── */
  .gold-strip {
    gap: 10px;
    padding: 10px 1.25rem;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
  .gold-strip .sep { display: none; }
  .gold-strip span { font-size: 11px; }

  /* ── Services ── */
  .services-grid { grid-template-columns: 1fr 1fr; }
  /* Ensure min col width never causes overflow on 360px */
  .services-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  /* ── Why us ── */
  .why-right { grid-template-columns: 1fr 1fr; }

  /* ── Process ── */
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { padding: 0 0.5rem; }

  /* ── Team ── */
  .team-wide-inner { flex-direction: column; align-items: flex-start; }
  .founder-socials { gap: 8px; }
  .fsocial-link    { font-size: 11px; padding: 5px 10px; }

  /* ── Contact form ── */
  .form-row { grid-template-columns: 1fr; }

  /* ── CTA ── */
  .cta-band { padding: 2.5rem 1.25rem; }
  .cta-band h2 { font-size: 18px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; max-width: 280px; justify-content: center; }

  /* ── Footer ── */
  .footer { padding: 2rem 1.25rem 0; }
  .footer-inner { grid-template-columns: 1fr; gap: 1.75rem; }
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem 0;
    gap: 8px;
  }
  .footer-links { flex-wrap: wrap; gap: 12px; }

  /* ── Scroll-top button — avoid overlap with content ── */
  .scroll-top { bottom: 1.25rem; right: 1.25rem; }
}

/* ---- VERY SMALL MOBILE (≤ 380px) ---- */
@media (max-width: 380px) {
  .hero h1 { font-size: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-right { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .stat-big { font-size: 22px; }
  .brand-tagline { display: none; }
}
