/* ============================================================
   PUNE NDF · Soft Premium Landing Page
   Theme: Muted Navy · Soft Cream · Warm Gold
   ============================================================ */

/* ---------- RESET ---------- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  background: #fbfaf7;
  color: #1a2332;
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

/* ---------- TOKENS ---------- */
:root {
  --navy-900: #0d1a30;
  --navy-800: #14223c;
  --navy-700: #1b2d4d;
  --navy-600: #253a5f;
  --gold-600: #b8891a;
  --gold-500: #cc9a2c;
  --gold-400: #dbb14d;
  --gold-300: #ecc974;
  --gold-100: #faf3df;
  --gold-50: #fdfaf0;
  --ink: #1a2332;
  --ink-soft: #3c4a61;
  --muted: #6d7b91;
  --line: #eae6de;
  --cream: #fbfaf7;
  --cream-2: #f5f1e8;
  --white: #ffffff;

  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --shadow-xs: 0 1px 2px rgba(13, 26, 48, 0.04);
  --shadow-sm: 0 2px 12px rgba(13, 26, 48, 0.05);
  --shadow: 0 10px 40px rgba(13, 26, 48, 0.07);
  --shadow-lg: 0 24px 60px rgba(13, 26, 48, 0.11);
  --shadow-gold: 0 8px 24px rgba(204, 154, 44, 0.28);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ============================================================
   SECTION 1 — HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(13, 26, 48, 0.94);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid rgba(204, 154, 44, 0.18);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  transition: opacity 0.25s var(--ease);
}
.brand:hover { opacity: 0.9; }

.brand-logo {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.brand-name {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: #ffffff;
  letter-spacing: 0.1px;
}
.brand-name em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold-300);
}

.brand-sub {
  font-size: 0.68rem;
  color: #92a1b8;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}

.header-status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1rem;
  border-radius: 50px;
  background: rgba(204, 154, 44, 0.07);
  border: 1px solid rgba(204, 154, 44, 0.28);
  color: #e8cf8e;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #6cdc9b;
  box-shadow: 0 0 0 0 rgba(108, 220, 155, 0.7);
  animation: pulse 2.4s infinite;
}

@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(108, 220, 155, 0.7); }
  70%  { box-shadow: 0 0 0 8px rgba(108, 220, 155, 0); }
  100% { box-shadow: 0 0 0 0 rgba(108, 220, 155, 0); }
}

/* ============================================================
   SECTION 2 — HERO
   ============================================================ */
.hero {
  position: relative;
  background: linear-gradient(170deg, #0d1a30 0%, #16263f 45%, #1b2d4d 100%);
  color: #ffffff;
  padding: 5rem 0 5rem;
  overflow: hidden;
  isolation: isolate;
}

.hero-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 60% 50% at 12% 12%, rgba(204, 154, 44, 0.13), transparent 60%),
    radial-gradient(ellipse 55% 45% at 92% 88%, rgba(204, 154, 44, 0.09), transparent 60%);
}

.hero-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image:
    radial-gradient(rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 3px 3px;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-300);
  margin-bottom: 1.3rem;
}

.eyebrow-dash {
  display: inline-block;
  width: 28px;
  height: 1.5px;
  background: var(--gold-400);
  border-radius: 2px;
}

.hero-title {
  font-family: 'Fraunces', 'Times New Roman', serif;
  font-size: clamp(2.1rem, 4.4vw, 3.4rem);
  font-weight: 600;
  line-height: 1.13;
  letter-spacing: -0.6px;
  margin-bottom: 1.3rem;
  color: #ffffff;
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  background: linear-gradient(120deg, var(--gold-300), var(--gold-500) 70%, var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1rem;
  color: #b6c3d6;
  max-width: 560px;
  margin-bottom: 1.8rem;
  line-height: 1.75;
  font-weight: 400;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.4rem;
  margin-bottom: 2rem;
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: #cfd9e7;
  font-weight: 400;
}
.tick {
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(204, 154, 44, 0.15);
  border: 1px solid rgba(204, 154, 44, 0.5);
  position: relative;
  flex-shrink: 0;
}
.tick::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 4px;
  width: 3px;
  height: 6px;
  border-right: 1.5px solid var(--gold-300);
  border-bottom: 1.5px solid var(--gold-300);
  transform: rotate(45deg);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.85rem 1.7rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.92rem;
  letter-spacing: 0.15px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
  font-family: inherit;
}

.ico {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.btn-primary {
  background: linear-gradient(135deg, #dbb14d 0%, #cc9a2c 100%);
  color: #1a2332;
  box-shadow: var(--shadow-gold);
  font-weight: 600;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(204, 154, 44, 0.42);
  filter: brightness(1.04);
}

.btn-accent {
  background: linear-gradient(135deg, #ff9b3d, #f2811d);
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(242, 129, 29, 0.32);
  font-weight: 600;
}
.btn-accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(242, 129, 29, 0.45);
}

.btn-ghost {
  background: transparent;
  color: #e3eaf5;
  border-color: rgba(255, 255, 255, 0.22);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--gold-400);
  color: var(--gold-300);
  transform: translateY(-2px);
}

.ico-arrow {
  transition: transform 0.3s var(--ease);
}
.btn-ghost:hover .ico-arrow {
  transform: translateX(4px);
}

.btn-full { width: 100%; }

.hero-rating {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.88rem;
  color: #b6c3d6;
  flex-wrap: wrap;
}
.stars {
  display: inline-flex;
  gap: 2px;
  color: var(--gold-400);
}
.stars svg {
  width: 14px;
  height: 14px;
}
.hero-rating b { color: #ffffff; font-weight: 600; }

/* --------- Hero Card --------- */
.hero-card {
  background: #ffffff;
  border-radius: var(--radius-xl);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.25);
  padding: 2rem 1.75rem;
  position: relative;
  overflow: hidden;
}
.hero-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, #dbb14d, #f0d28a, #dbb14d);
}

.hero-card-head { text-align: center; margin-bottom: 1.4rem; }

.hero-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-100), #f7ead0);
  border: 1px solid rgba(204, 154, 44, 0.28);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--gold-600);
}
.hero-card-icon svg { width: 24px; height: 24px; }

.hero-card-head h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 0.45rem;
  letter-spacing: -0.2px;
}

.hero-card-head p {
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.55;
}

.hero-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.call-pill {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.75rem 1rem;
  background: var(--gold-50);
  border: 1px solid rgba(204, 154, 44, 0.22);
  border-radius: 50px;
  transition: all 0.25s var(--ease);
  color: var(--gold-600);
}
.call-pill:hover {
  background: var(--gold-100);
  border-color: rgba(204, 154, 44, 0.45);
}
.call-pill .ico { color: var(--gold-600); }
.call-pill span {
  font-size: 0.98rem;
  font-weight: 600;
  color: #1a2332;
  letter-spacing: 0.3px;
}

.hero-card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 1rem;
  justify-content: center;
  margin-top: 0.4rem;
}
.hero-card-list li {
  font-size: 0.72rem;
  color: var(--muted);
  position: relative;
  padding-left: 0.85rem;
}
.hero-card-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold-500);
}

/* --------- Stats Strip --------- */
.stats-strip {
  position: relative;
  z-index: 2;
  margin-top: 4.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  overflow: hidden;
}

.stat {
  padding: 1.7rem 1rem;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
}
.stat:last-child { border-right: none; }

.stat-number {
  font-family: 'Fraunces', serif;
  font-size: 2rem;
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.5rem;
  letter-spacing: -0.5px;
}
.stat-number span {
  color: var(--gold-400);
  font-weight: 500;
}
.stat-label {
  font-size: 0.72rem;
  color: #93a3ba;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  font-weight: 500;
}

/* ============================================================
   SECTION 3 — SERVICES
   ============================================================ */
.services {
  padding: 6rem 0;
  background: var(--cream);
  position: relative;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4rem;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
  padding: 0.4rem 1.1rem;
  background: var(--gold-50);
  border-radius: 50px;
  border: 1px solid rgba(204, 154, 44, 0.2);
}

.section-title {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.75rem, 3.2vw, 2.4rem);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.2;
  letter-spacing: -0.6px;
  margin-bottom: 1rem;
}

.section-sub {
  font-size: 0.98rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-xs);
  position: relative;
  overflow: hidden;
  transition: all 0.4s var(--ease);
}
.service-card::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transition: width 0.45s var(--ease);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(204, 154, 44, 0.25);
}
.service-card:hover::after { width: 100%; }

.service-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-50), var(--gold-100));
  border: 1px solid rgba(204, 154, 44, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
  transition: all 0.35s var(--ease);
  color: var(--gold-600);
}
.service-icon-wrap svg {
  width: 24px;
  height: 24px;
}
.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(204, 154, 44, 0.3);
}

.service-card h3 {
  font-family: 'Fraunces', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy-900);
  margin-bottom: 0.6rem;
  line-height: 1.35;
  letter-spacing: -0.2px;
}

.service-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.7;
}

/* --------- Services CTA --------- */
.services-cta {
  margin-top: 4rem;
  padding: 3rem 2rem;
  background: linear-gradient(165deg, #0d1a30 0%, #1b2d4d 100%);
  border-radius: var(--radius-xl);
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.services-cta::before {
  content: "";
  position: absolute;
  top: -30%; right: -15%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(204, 154, 44, 0.14), transparent 65%);
  pointer-events: none;
}
.services-cta h3 {
  position: relative;
  font-family: 'Fraunces', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.7rem;
  letter-spacing: -0.3px;
}
.services-cta p {
  position: relative;
  color: #b6c3d6;
  font-size: 0.98rem;
  max-width: 520px;
  margin: 0 auto 1.6rem;
  line-height: 1.7;
}
.services-cta .btn { position: relative; }

/* ============================================================
   SECTION 4 — FOOTER
   ============================================================ */
.site-footer {
  background: #0a1525;
  color: #92a1b8;
  padding: 4.5rem 0 2rem;
  position: relative;
}
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-logo {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  margin-bottom: 1.2rem;
}

.footer-brand h3 {
  font-family: 'Fraunces', serif;
  color: #ffffff;
  font-size: 1.35rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  letter-spacing: -0.2px;
}

.footer-tag {
  font-size: 0.85rem;
  color: var(--gold-400);
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.footer-tag a {
  color: var(--gold-300);
  font-weight: 500;
  border-bottom: 1px dashed rgba(236, 201, 116, 0.4);
  transition: all 0.2s;
}
.footer-tag a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

.footer-desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: #8395ad;
  max-width: 380px;
}

.footer-contact h4 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 0.7rem;
}
.footer-contact h4::after {
  content: "";
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}

.contact-line {
  display: flex;
  gap: 0.9rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.25s var(--ease);
  align-items: flex-start;
}
.contact-line:last-child { border-bottom: none; }
.contact-line:hover { transform: translateX(3px); }

.contact-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(204, 154, 44, 0.08);
  border: 1px solid rgba(204, 154, 44, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-400);
}
.contact-icon svg { width: 17px; height: 17px; }

.contact-text small {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #6b7d96;
  margin-bottom: 3px;
  font-weight: 500;
}

.contact-text strong {
  color: #dfe6ef;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.5;
  display: block;
  transition: color 0.2s;
}
.contact-line:hover .contact-text strong { color: var(--gold-300); }

.contact-address .contact-text strong {
  font-size: 0.85rem;
  color: #b8c3d1;
  font-weight: 400;
  line-height: 1.65;
}

.footer-bottom {
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: #6b7d96;
  letter-spacing: 0.3px;
  line-height: 1.6;
}
.footer-links a {
  color: var(--gold-400);
  font-weight: 500;
  border-bottom: 1px dashed rgba(219, 177, 77, 0.4);
  transition: all 0.2s;
}
.footer-links a:hover {
  color: #ffffff;
  border-bottom-color: #ffffff;
}

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

/* ---------- Tablet (≤ 960px) ---------- */
@media (max-width: 960px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .hero-card {
    max-width: 460px;
    margin: 0 auto;
    width: 100%;
  }
  .stats-strip {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1),
  .stat:nth-child(2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }
  .footer-desc { max-width: 100%; }
}

/* ---------- Mobile (≤ 640px) ---------- */
@media (max-width: 640px) {
  .container { padding: 0 1.15rem; }

  /* ---- HEADER: badge on right side, brand on left ---- */
  .header-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.6rem;
    padding: 0.85rem 0;
  }

  .brand {
    gap: 0.65rem;
    flex: 1;
    min-width: 0;
  }

  .brand-logo {
    width: 46px;
    height: 46px;
  }

  .brand-name { font-size: 0.92rem; }
  .brand-sub { font-size: 0.58rem; letter-spacing: 1px; }

  .header-status {
    font-size: 0.68rem;
    padding: 0.35rem 0.75rem;
    flex-shrink: 0;
    align-self: flex-start;
  }

  .hero { padding: 3rem 0 3.5rem; }

  .hero-title {
    font-size: clamp(1.65rem, 7vw, 2.1rem);
    line-height: 1.18;
    letter-spacing: -0.3px;
  }
  .hero-desc { font-size: 0.92rem; }
  .hero-eyebrow { font-size: 0.66rem; letter-spacing: 1.6px; }

  .hero-trust {
    gap: 0.4rem 1rem;
    margin-bottom: 1.5rem;
  }
  .hero-trust li { font-size: 0.78rem; }

  /* ---- HERO BUTTONS: reduced width, left-aligned, not full stretch ---- */
  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 0.55rem;
  }
  .hero-actions .btn {
    width: auto;
    min-width: 200px;
    max-width: 260px;
    padding: 0.75rem 1.3rem;
    font-size: 0.85rem;
  }

  .hero-card {
    padding: 1.6rem 1.35rem;
    border-radius: 22px;
  }
  .hero-card-head h3 { font-size: 1.05rem; }
  .hero-card-head p { font-size: 0.8rem; }
  .hero-card-icon { width: 46px; height: 46px; }
  .hero-card-icon svg { width: 20px; height: 20px; }
  .call-pill span { font-size: 0.92rem; }

  /* Hero card buttons - also reduced width, centered */
  .hero-card-body .btn-full {
    width: auto;
    min-width: 180px;
    max-width: 220px;
    margin: 0 auto;
    padding: 0.7rem 1.2rem;
    font-size: 0.85rem;
  }

  .hero-rating { font-size: 0.8rem; gap: 0.55rem; }
  .stars svg { width: 12px; height: 12px; }

  .stats-strip { margin-top: 3rem; }
  .stat { padding: 1.3rem 0.7rem; }
  .stat-number { font-size: 1.6rem; }
  .stat-label { font-size: 0.65rem; letter-spacing: 1px; }

  .services { padding: 4rem 0; }
  .section-head { margin-bottom: 2.5rem; }

  .section-title { font-size: 1.5rem; letter-spacing: -0.3px; }
  .section-sub { font-size: 0.9rem; }
  .section-eyebrow { font-size: 0.66rem; padding: 0.35rem 0.9rem; }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .service-card { padding: 1.6rem 1.4rem; border-radius: 16px; }
  .service-icon-wrap {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    margin-bottom: 1.1rem;
  }
  .service-icon-wrap svg { width: 21px; height: 21px; }
  .service-card h3 { font-size: 1.02rem; }
  .service-card p { font-size: 0.86rem; }

  .services-cta {
    padding: 2.2rem 1.4rem;
    margin-top: 2.5rem;
    border-radius: 22px;
  }
  .services-cta h3 { font-size: 1.25rem; }
  .services-cta p { font-size: 0.88rem; margin-bottom: 1.3rem; }

  /* Services CTA button - reduced width, centered */
  .services-cta .btn {
    width: auto;
    min-width: 200px;
    max-width: 260px;
    margin: 0 auto;
    padding: 0.75rem 1.3rem;
    font-size: 0.85rem;
  }

  .site-footer { padding: 3rem 0 1.7rem; }
  .footer-top { padding-bottom: 2rem; gap: 2.2rem; }

  .footer-logo {
    width: 60px;
    height: 60px;
  }

  .footer-brand h3 { font-size: 1.15rem; }
  .footer-tag { font-size: 0.78rem; }
  .footer-desc { font-size: 0.84rem; }

  .footer-contact h4 { font-size: 0.9rem; }

  .contact-line {
    padding: 0.75rem 0;
    gap: 0.75rem;
  }
  .contact-icon {
    width: 32px;
    height: 32px;
    border-radius: 9px;
  }
  .contact-icon svg { width: 15px; height: 15px; }
  .contact-text strong { font-size: 0.86rem; }
  .contact-address .contact-text strong { font-size: 0.8rem; }
  .contact-text small { font-size: 0.62rem; letter-spacing: 1.3px; }

  .footer-bottom { padding-top: 1.5rem; }
  .footer-bottom p { font-size: 0.72rem; }
}

/* ---------- Small Mobile (≤ 400px) ---------- */
@media (max-width: 400px) {
  .brand-name { font-size: 0.86rem; }
  .brand-sub { font-size: 0.54rem; }
  .brand-logo { width: 42px; height: 42px; }
  .header-status { font-size: 0.62rem; padding: 0.3rem 0.6rem; }

  .hero-title { font-size: 1.5rem; }
  .stat-number { font-size: 1.4rem; }
  .section-title { font-size: 1.38rem; }
  .services-cta h3 { font-size: 1.15rem; }

  .hero-actions .btn,
  .hero-card-body .btn-full,
  .services-cta .btn {
    min-width: 170px;
    max-width: 220px;
    font-size: 0.8rem;
  }
}