/* ============================================================
   SkyVinyas — Landing design system
   Brand: amber (#f59e0b) on charcoal (#14161a), light paper sections.
   ============================================================ */

:root {
  /* Brand */
  --amber: #f59e0b;
  --amber-600: #d97e06;
  --amber-700: #b45f04;
  --amber-soft: rgba(245, 158, 11, 0.12);
  --amber-ring: rgba(245, 158, 11, 0.35);

  /* Neutrals */
  --ink: #14161a;
  --charcoal: #1d2024;
  --charcoal-2: #2b2f35;
  --paper: #ffffff;
  --mist: #f6f7f8;
  --line: #e6e7ea;
  --muted: #5b6169;
  --muted-2: #8a9099;

  /* Text */
  --text: #1d2024;
  --text-invert: #f4f5f6;

  /* Layout */
  --container: 1160px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(20, 22, 26, 0.06), 0 1px 3px rgba(20, 22, 26, 0.05);
  --shadow-md: 0 8px 24px rgba(20, 22, 26, 0.08);
  --shadow-lg: 0 24px 60px rgba(20, 22, 26, 0.14);
  --shadow-amber: 0 10px 30px rgba(245, 158, 11, 0.28);

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

/* ---------- Reset / base ---------- */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--paper);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; padding: 0; }

h1, h2, h3, h4 {
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
  color: var(--ink);
}

:focus-visible {
  outline: 3px solid var(--amber-ring);
  outline-offset: 2px;
  border-radius: 6px;
}

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding-block: clamp(64px, 8vw, 112px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }

.section-dark {
  background: var(--ink);
  color: var(--text-invert);
}
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: #fff; }

.section-mist { background: var(--mist); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--amber-600);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}
.section-dark .eyebrow { color: var(--amber); }

.section-head { max-width: 640px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.8rem, 3.4vw, 2.7rem);
  margin-top: 14px;
}
.section-head p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 1.06rem;
}
.section-dark .section-head p { color: rgba(244, 245, 246, 0.72); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 0.97rem;
  border: 1px solid transparent;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease),
    box-shadow 0.18s var(--ease), color 0.18s var(--ease), border-color 0.18s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--amber);
  color: #1a1205;
  box-shadow: var(--shadow-amber);
}
.btn-primary:hover { background: var(--amber-600); }

.btn-dark { background: var(--ink); color: #fff; }
.btn-dark:hover { background: var(--charcoal-2); }

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--ink); background: #fff; }

.section-dark .btn-ghost,
.hero .btn-ghost,
.cta-band .btn-ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.24);
}
.section-dark .btn-ghost:hover,
.hero .btn-ghost:hover,
.cta-band .btn-ghost:hover { border-color: #fff; background: rgba(255, 255, 255, 0.06); }

.btn-lg { padding: 16px 28px; font-size: 1.02rem; }
.btn-block { width: 100%; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-weight: 600;
  color: var(--amber-600);
}
.link-arrow svg { width: 16px; height: 16px; transition: transform 0.2s var(--ease); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(20, 22, 26, 0.82);
  backdrop-filter: saturate(140%) blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  height: 74px;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.22rem;
  letter-spacing: -0.02em;
}
.brand .brand-mark {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  background: var(--amber);
  border-radius: 9px;
  color: #1a1205;
  margin-right: 11px;
}
.brand .brand-mark svg { width: 20px; height: 20px; }
.brand b { color: var(--amber); font-weight: 800; }

.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 8px;
}
.nav a {
  color: rgba(244, 245, 246, 0.82);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 9px 14px;
  border-radius: 8px;
  transition: color 0.15s, background 0.15s;
}
.nav a:hover { color: #fff; background: rgba(255, 255, 255, 0.07); }
.nav a.active { color: var(--amber); }

.header-actions {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-call {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(244, 245, 246, 0.9);
  font-weight: 600;
  font-size: 0.92rem;
}
.header-call svg { width: 17px; height: 17px; color: var(--amber); }
.header-call span { opacity: 0.6; font-weight: 500; font-size: 0.72rem; display: block; letter-spacing: 0.08em; text-transform: uppercase; }

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  color: #fff;
  align-items: center;
  justify-content: center;
}
.nav-toggle svg { width: 22px; height: 22px; }
.nav-toggle .icon-close { display: none; }
body.nav-open .nav-toggle .icon-open { display: none; }
body.nav-open .nav-toggle .icon-close { display: block; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: radial-gradient(1100px 520px at 78% -8%, rgba(245, 158, 11, 0.16), transparent 60%),
    linear-gradient(180deg, #14161a 0%, #191c21 100%);
  color: var(--text-invert);
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(900px 520px at 70% 0%, #000, transparent 75%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  padding-block: clamp(72px, 11vw, 132px);
  max-width: 760px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.1rem);
  font-weight: 800;
  line-height: 1.04;
}
.hero h1 .accent { color: var(--amber); }
.hero p {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: rgba(244, 245, 246, 0.76);
  max-width: 560px;
}
.hero-cta { margin-top: 34px; display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust {
  margin-top: 46px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  padding-top: 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(244, 245, 246, 0.78);
  font-size: 0.92rem;
  font-weight: 500;
}
.hero-trust svg { width: 18px; height: 18px; color: var(--amber); flex: none; }

/* ---------- Cards / grids ---------- */
.grid { display: grid; gap: 22px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d7d9dd; }

.icon-badge {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--amber-soft);
  color: var(--amber-600);
  margin-bottom: 20px;
}
.icon-badge svg { width: 26px; height: 26px; }

.card h3 { font-size: 1.28rem; }
.card p { margin-top: 10px; color: var(--muted); font-size: 0.98rem; }
.card .card-index {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--amber-600);
  text-transform: uppercase;
}
.card-foot { margin-top: 20px; }

/* dark cards */
.section-dark .card {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}
.section-dark .card:hover { border-color: rgba(245, 158, 11, 0.4); background: rgba(255, 255, 255, 0.05); }
.section-dark .card p { color: rgba(244, 245, 246, 0.68); }

/* ---------- Feature list (why choose) ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}
.feature-list { display: grid; gap: 18px; }
.feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.feature .feature-ic {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-soft);
  color: var(--amber-600);
  display: grid;
  place-items: center;
}
.feature .feature-ic svg { width: 22px; height: 22px; }
.feature h4 { font-size: 1.06rem; }
.feature p { color: var(--muted); margin-top: 4px; font-size: 0.96rem; }
.section-dark .feature p { color: rgba(244, 245, 246, 0.66); }

/* ---------- Process / steps ---------- */
.steps { counter-reset: step; }
.step { position: relative; padding-top: 26px; }
.step::before {
  counter-increment: step;
  content: "0" counter(step);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--amber-600);
  letter-spacing: 0.04em;
}
.step::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--amber), rgba(245, 158, 11, 0.15));
}
.step h4 { margin-top: 14px; font-size: 1.12rem; }
.step p { margin-top: 8px; color: var(--muted); font-size: 0.95rem; }
.section-dark .step p { color: rgba(244, 245, 246, 0.66); }

/* ---------- Stat strip ---------- */
.stat-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 34px;
  box-shadow: var(--shadow-sm);
}
.stat { text-align: center; }
.stat b { display: block; font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--ink); font-weight: 800; letter-spacing: -0.02em; }
.stat span { color: var(--muted); font-size: 0.92rem; font-weight: 500; }

/* ---------- FAQ ---------- */
.faq { max-width: 820px; margin-inline: auto; display: grid; gap: 12px; }
.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.faq-item[open] { border-color: var(--amber-ring); box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--ink);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .faq-plus {
  margin-left: auto;
  flex: none;
  width: 26px;
  height: 26px;
  position: relative;
  transition: transform 0.25s var(--ease);
  color: var(--amber-600);
}
.faq-item summary .faq-plus::before,
.faq-item summary .faq-plus::after {
  content: "";
  position: absolute;
  background: currentColor;
  border-radius: 2px;
  inset: 0;
  margin: auto;
}
.faq-item summary .faq-plus::before { width: 14px; height: 2px; }
.faq-item summary .faq-plus::after { width: 2px; height: 14px; transition: transform 0.25s var(--ease); }
.faq-item[open] summary .faq-plus::after { transform: rotate(90deg); opacity: 0; }
.faq-item .faq-body { padding: 0 22px 22px; color: var(--muted); font-size: 0.98rem; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background: radial-gradient(700px 300px at 85% 20%, rgba(245, 158, 11, 0.22), transparent 60%), var(--ink);
  border-radius: clamp(20px, 3vw, 30px);
  padding: clamp(40px, 6vw, 68px);
  overflow: hidden;
  text-align: center;
  color: #fff;
}
.cta-band h2 { color: #fff; font-size: clamp(1.7rem, 3.2vw, 2.5rem); }
.cta-band p { margin: 14px auto 0; max-width: 560px; color: rgba(244, 245, 246, 0.76); }
.cta-band .hero-cta { justify-content: center; margin-top: 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(244, 245, 246, 0.7);
  padding-block: 66px 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
}
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { color: rgba(244, 245, 246, 0.6); font-size: 0.95rem; max-width: 320px; }
.footer-col h5 {
  color: #fff;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 700;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: rgba(244, 245, 246, 0.66); font-size: 0.95rem; transition: color 0.15s; }
.footer-col a:hover { color: var(--amber); }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { width: 18px; height: 18px; color: var(--amber); flex: none; margin-top: 2px; }
.footer-bottom {
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(244, 245, 246, 0.5);
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 60;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s var(--ease);
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 30px; height: 30px; }
.wa-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5);
  animation: wa-pulse 2.4s infinite;
}
@keyframes wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: radial-gradient(900px 420px at 82% -20%, rgba(245, 158, 11, 0.16), transparent 60%),
    linear-gradient(180deg, #14161a 0%, #191c21 100%);
  color: var(--text-invert);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(760px 400px at 72% 0%, #000, transparent 78%);
}
.page-hero-inner { position: relative; padding-block: clamp(56px, 8vw, 92px); max-width: 720px; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.3rem); }
.page-hero p { margin-top: 16px; color: rgba(244, 245, 246, 0.74); font-size: 1.1rem; max-width: 580px; }

/* ---------- Service rows (Services page) ---------- */
.service-row {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding-block: clamp(40px, 5vw, 60px);
  border-top: 1px solid var(--line);
}
.service-row:first-child { border-top: 0; padding-top: 0; }
.service-row h2 { font-size: clamp(1.5rem, 2.6vw, 2.1rem); margin-top: 8px; }
.service-row .lead { margin-top: 14px; color: var(--muted); font-size: 1.04rem; }
.service-row .icon-badge { width: 58px; height: 58px; }

.panel {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.panel h4 {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 16px;
}
.check-list { display: grid; gap: 13px; }
.check-list li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--ink); }
.check-list li svg {
  flex: none;
  width: 21px;
  height: 21px;
  color: var(--amber-600);
  margin-top: 1px;
}

/* ---------- Pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.price-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card.popular {
  border-color: var(--amber);
  box-shadow: 0 0 0 1px var(--amber), var(--shadow-md);
}
.price-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--amber);
  color: #1a1205;
  font-weight: 700;
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}
.price-name { font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.price-tag { color: var(--muted); font-size: 0.94rem; margin-top: 4px; }
.price-amount { margin-top: 18px; display: flex; align-items: baseline; gap: 4px; }
.price-amount b { font-size: 2.6rem; font-weight: 800; color: var(--ink); letter-spacing: -0.02em; }
.price-amount span { color: var(--muted); font-weight: 500; }
.price-card .btn { margin-top: 22px; }
.price-card .check-list { margin-top: 24px; padding-top: 24px; border-top: 1px solid var(--line); }
.price-card.popular .check-list li svg { color: var(--amber-600); }

.price-note {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  justify-content: center;
  color: var(--muted);
  font-size: 0.92rem;
}
.price-note span { display: inline-flex; align-items: center; gap: 8px; }
.price-note svg { width: 16px; height: 16px; color: var(--amber-600); }

/* ---------- Estimator ---------- */
.estimator {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(26px, 4vw, 40px);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: clamp(24px, 4vw, 44px);
  align-items: center;
}
.estimator .field { margin-bottom: 18px; }
.estimator label { display: block; font-weight: 600; font-size: 0.9rem; margin-bottom: 8px; color: var(--ink); }
.estimator input,
.estimator select {
  width: 100%;
  padding: 13px 15px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.estimator input:focus,
.estimator select:focus { outline: none; border-color: var(--amber); box-shadow: 0 0 0 3px var(--amber-ring); }
.estimator .seg { display: flex; gap: 8px; }
.estimator .seg label {
  flex: 1;
  margin: 0;
  text-align: center;
  padding: 11px 8px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-weight: 600;
  color: var(--muted);
  transition: all 0.15s;
}
.estimator .seg input { display: none; }
.estimator .seg input:checked + span { color: var(--amber-700); }
.estimator .seg label:has(input:checked) { border-color: var(--amber); background: var(--amber-soft); color: var(--amber-700); }
.estimator-result {
  background: var(--ink);
  color: #fff;
  border-radius: var(--radius);
  padding: 30px;
  text-align: center;
}
.estimator-result .rlabel { font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(244, 245, 246, 0.6); }
.estimator-result .rvalue { font-size: clamp(1.9rem, 4vw, 2.5rem); font-weight: 800; color: var(--amber); margin-top: 8px; letter-spacing: -0.02em; }
.estimator-result .rsub { font-size: 0.86rem; color: rgba(244, 245, 246, 0.6); margin-top: 8px; }
.estimator-result .btn { margin-top: 20px; }

@media (max-width: 860px) {
  .service-row { grid-template-columns: 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .price-card.popular { order: -1; }
  .estimator { grid-template-columns: 1fr; }
}

/* ---------- Utilities ---------- */
.text-center { text-align: center; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 34px; }
.mt-10 { margin-top: 48px; }
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 13px;
  border-radius: var(--radius-pill);
  background: var(--amber-soft);
  color: var(--amber-700);
  font-weight: 600;
  font-size: 0.82rem;
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav, .header-call { display: none; }
  .nav-toggle { display: inline-flex; }

  /* Mobile nav drawer */
  .nav.nav-mobile {
    position: fixed;
    inset: 74px 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 2px;
    background: var(--ink);
    padding: 16px 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: var(--shadow-lg);
  }
  body.nav-open .nav.nav-mobile { display: flex; }
  .nav.nav-mobile a { font-size: 1.05rem; padding: 13px 12px; }
  .nav.nav-mobile .btn { margin-top: 10px; }

  .grid-3, .grid-4, .grid-2, .stat-strip { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .header-actions .btn span.hide-sm { display: none; }
  .hero-cta .btn, .cta-band .btn { flex: 1 1 auto; }
}

@media (max-width: 420px) {
  .container { padding-inline: 18px; }
}

/* ---------- Pricing tiers (extra) ---------- */
.price-card .price-lead { color: var(--muted); font-size: 0.95rem; margin-top: 4px; }
.price-card .price-inherits {
  margin-top: 22px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--amber-700);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.price-card .price-inherits svg { width: 16px; height: 16px; color: var(--amber-600); }
.price-amount .price-unit { font-size: 1rem; }

/* ---------- Blog index ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), border-color 0.2s var(--ease);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d7d9dd; }
.blog-card .thumb { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--mist); }
.blog-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.blog-card:hover .thumb img { transform: scale(1.06); }
.blog-card .thumb .blog-tag { position: absolute; top: 14px; left: 14px; }
.blog-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 11px;
  border-radius: var(--radius-pill);
  background: var(--amber);
  color: #1a1205;
  font-weight: 700;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.blog-body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.blog-meta {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--muted-2);
  font-weight: 500;
}
.blog-meta svg { width: 15px; height: 15px; color: var(--amber-600); }
.blog-card h3 { font-size: 1.2rem; margin-top: 13px; }
.blog-card h3 a { transition: color 0.15s; }
.blog-card h3 a:hover { color: var(--amber-600); }
.blog-card p { margin-top: 10px; color: var(--muted); font-size: 0.96rem; flex: 1; }
.blog-card .card-foot { margin-top: 18px; }

/* ---------- Blog post ---------- */
.post-hero .eyebrow { color: var(--amber); }
.post-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(244, 245, 246, 0.62);
  font-size: 0.86rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.post-breadcrumb:hover { color: var(--amber); }
.post-breadcrumb svg { width: 15px; height: 15px; }
.post-meta {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  align-items: center;
  color: rgba(244, 245, 246, 0.72);
  font-size: 0.9rem;
  font-weight: 500;
}
.post-meta span { display: inline-flex; align-items: center; gap: 8px; }
.post-meta svg { width: 16px; height: 16px; color: var(--amber); }
.post-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255, 255, 255, 0.35); }

.post-wrap { max-width: 780px; margin-inline: auto; }
.post-figure { margin-top: -60px; position: relative; z-index: 1; }
.post-figure img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.post-lead { font-size: 1.22rem; line-height: 1.7; color: var(--ink); font-weight: 500; margin-top: 34px; }
.post-body { margin-top: 6px; }
.post-body h2 { font-size: clamp(1.35rem, 2.4vw, 1.85rem); margin-top: 44px; }
.post-body h3 { font-size: 1.22rem; margin-top: 32px; }
.post-body p { margin-top: 16px; color: #33383f; font-size: 1.06rem; line-height: 1.8; }
.post-body strong { color: var(--ink); font-weight: 700; }
.post-body ul, .post-body ol { margin-top: 18px; display: grid; gap: 12px; padding-left: 0; }
.post-body ul li { position: relative; padding-left: 30px; color: #33383f; line-height: 1.7; }
.post-body ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 4px var(--amber-soft);
}
.post-body ol { counter-reset: pli; }
.post-body ol li { list-style: none; position: relative; padding-left: 42px; color: #33383f; line-height: 1.7; min-height: 28px; }
.post-body ol li::before {
  counter-increment: pli;
  content: counter(pli);
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 9px;
  background: var(--amber-soft);
  color: var(--amber-700);
  font-weight: 700;
  font-size: 0.9rem;
  display: grid;
  place-items: center;
}
.post-body blockquote {
  margin: 36px 0;
  padding: 26px 30px;
  background: var(--amber-soft);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 1.24rem;
  line-height: 1.55;
  font-weight: 600;
  color: var(--ink);
  font-style: italic;
}
.callout {
  margin-top: 24px;
  display: flex;
  gap: 15px;
  padding: 18px 20px;
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
}
.callout .callout-ic {
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 11px;
  background: var(--amber-soft);
  color: var(--amber-600);
  display: grid;
  place-items: center;
}
.callout .callout-ic svg { width: 20px; height: 20px; }
.callout p { margin: 0; color: var(--muted); font-size: 0.99rem; line-height: 1.65; }
.callout b { color: var(--ink); }

.post-nav {
  max-width: 780px;
  margin: 50px auto 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}
.post-nav a { display: flex; flex-direction: column; gap: 4px; max-width: 47%; }
.post-nav .pn-label {
  font-size: 0.74rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-2);
  font-weight: 700;
}
.post-nav .pn-title { font-weight: 600; color: var(--ink); transition: color 0.15s; }
.post-nav a:hover .pn-title { color: var(--amber-600); }
.post-nav .pn-next { text-align: right; margin-left: auto; align-items: flex-end; }

@media (max-width: 960px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .blog-grid { grid-template-columns: 1fr; }
  .post-figure { margin-top: -34px; }
  .post-nav { flex-direction: column; }
  .post-nav a, .post-nav .pn-next { max-width: 100%; text-align: left; align-items: flex-start; margin-left: 0; }
}

/* ---------- About page ---------- */
.about-media {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-intro .stat-strip { margin-top: 26px; }
.principle-index {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-soft);
  color: var(--amber-700);
  font-weight: 800;
  font-size: 1.05rem;
  margin-bottom: 18px;
}

/* ---------- Leadership team ---------- */
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.team-card { text-align: center; }
.team-avatar {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  margin: 0 auto 18px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 30% 25%, rgba(245, 158, 11, 0.22), var(--amber-soft));
  color: var(--amber-700);
  border: 1px solid var(--amber-ring);
}
.team-initials { font-weight: 800; font-size: 1.7rem; letter-spacing: 0.02em; }
.team-card h3 { font-size: 1.1rem; }
.team-role-label {
  color: var(--amber-600);
  font-weight: 600;
  font-size: 0.86rem;
  margin-top: 6px;
  letter-spacing: 0.01em;
}

/* ---------- Locations served ---------- */
.locations { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 20px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--line);
  font-weight: 600;
  font-size: 0.96rem;
  color: var(--ink);
  box-shadow: var(--shadow-sm);
}
.location-chip svg { width: 16px; height: 16px; color: var(--amber-600); }
.section-dark .location-chip {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.14);
  color: #fff;
  box-shadow: none;
}
.footer-contact .footer-locations { color: rgba(244, 245, 246, 0.66); }

/* ---------- Header / nav CTA ---------- */
.nav-cta { display: none; }
.header-cta { white-space: nowrap; }

/* ---------- Footer social ---------- */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  padding: 9px 15px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: rgba(244, 245, 246, 0.82);
  font-weight: 600;
  font-size: 0.9rem;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}
.footer-social svg { width: 18px; height: 18px; color: var(--amber); }
.footer-social:hover { color: var(--amber); border-color: var(--amber-ring); background: rgba(245, 158, 11, 0.08); }

/* ---------- Contact page ---------- */
.contact-layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.contact-form-wrap h2 { margin-top: 12px; }
.contact-intro { margin-top: 12px; color: var(--muted); max-width: 460px; }
.contact-intro a { color: var(--amber-600); font-weight: 600; }
.contact-alt {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}
.contact-alt svg { width: 18px; height: 18px; color: var(--amber-600); }
.contact-alt:hover { color: var(--amber-600); }

.contact-aside { display: grid; gap: 14px; }
.contact-card {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.contact-card .contact-ic {
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--amber-soft);
  color: var(--amber-600);
  display: grid;
  place-items: center;
}
.contact-card .contact-ic svg { width: 21px; height: 21px; }
.contact-card h4 { font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted-2); margin-bottom: 4px; }
.contact-card a, .contact-card span { color: var(--ink); font-weight: 500; }
.contact-card a:hover { color: var(--amber-600); }

.contact-map {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  line-height: 0;
}
.contact-map iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ---------- NRI page ---------- */
.prose-narrow { max-width: 760px; margin-inline: auto; }
.prose-narrow p { margin-top: 16px; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }

.timeline { max-width: 820px; margin-inline: auto; position: relative; }
.timeline::before {
  content: "";
  position: absolute;
  left: 27px;
  top: 10px;
  bottom: 10px;
  width: 2px;
  background: linear-gradient(var(--amber), var(--amber-soft));
}
.timeline-step { position: relative; padding-left: 78px; padding-bottom: 34px; }
.timeline-step:last-child { padding-bottom: 0; }
.timeline-num {
  position: absolute;
  left: 0;
  top: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--amber);
  color: var(--amber-700);
  font-weight: 800;
  font-size: 1.15rem;
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
  z-index: 1;
}
.section-mist .timeline-num { background: #fff; }
.timeline-step h3 { font-size: 1.18rem; }
.timeline-step p { margin-top: 8px; color: var(--muted); font-size: 1rem; line-height: 1.7; }

.cta-reassure { margin-top: 18px; font-size: 0.88rem; color: rgba(244, 245, 246, 0.62); }

/* ---------- Responsive (about/contact/nav) ---------- */
@media (max-width: 960px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-map iframe { height: 340px; }
}
@media (max-width: 720px) {
  .header-cta { display: none; }
  .nav.nav-mobile .nav-cta { display: block; margin-top: 10px; }
}
@media (max-width: 560px) {
  .timeline::before { left: 21px; }
  .timeline-step { padding-left: 62px; }
  .timeline-num { width: 44px; height: 44px; font-size: 1rem; }
}
@media (max-width: 480px) {
  .team-grid { grid-template-columns: 1fr; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; transition: none !important; }
}
