:root {
  --primary: #3a1e3a;
  --primary-light: #5c3060;
  --secondary: #e50789;
  --secondary-light: #ff4bae;
  --rose-light: #f4c5ce;
  --gold-light: #f5e6c8;
  --cream: #fdfaf8;
  --deep: #3a1e3a;
  --muted: #8f708f;
  --white: #ffffff;
  --rose: #c8556a;
  --shadow: 0 18px 48px rgba(58, 30, 58, 0.16);
  --shadow-sm: 0 8px 24px rgba(58, 30, 58, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--deep);
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.text-center {
  text-align: center;
}

/* ───────────────────────── NAV ───────────────────────── */
nav {
  position: fixed;
  top: 16px;
  left: 2%;
  width: 96%;
  height: 60px;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.nav-logo,
.nav-links,
.nav-cta {
  pointer-events: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  padding: 6px 14px 6px 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(58, 30, 58, 0.07);
  box-shadow: 0 6px 20px rgba(58, 30, 58, 0.08);
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 8px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(58, 30, 58, 0.07);
  box-shadow: 0 6px 20px rgba(58, 30, 58, 0.08);
}

.nav-link,
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  color: var(--primary);
}

.nav-link {
  padding: 10px 14px;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
  background: #f7edf5;
  color: var(--secondary);
}

.nav-link svg,
.nav-cta svg {
  width: 17px;
  height: 17px;
}

.nav-cta {
  padding: 13px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  box-shadow: 0 10px 28px rgba(229, 7, 137, 0.28);
}

/* ───────────────────────── HERO ───────────────────────── */
.svc-hero {
  position: relative;
  padding: 132px 5% 78px;
  background:
    linear-gradient(90deg, rgba(58, 30, 58, 0.9), rgba(229, 7, 137, 0.66)),
    var(--hero-img) center/cover;
  color: var(--white);
}

.svc-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--cream));
  opacity: 0.16;
  pointer-events: none;
}

.svc-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 0 auto;
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.78);
}

.crumbs a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
}

.crumbs a:hover {
  color: var(--white);
}

.crumbs .current {
  color: var(--gold-light);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.eyebrow svg {
  width: 16px;
  height: 16px;
}

.svc-hero h1 {
  max-width: 820px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2.4rem, 5vw, 4.8rem);
  line-height: 1;
  font-weight: 700;
}

.hero-copy {
  max-width: 640px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 18px;
  line-height: 1.65;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

/* hero two-column layout with form */
.svc-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 48px;
  align-items: center;
}

/* ───────────────────────── HERO FORM ───────────────────────── */
.hero-form-card {
  background: rgba(255, 255, 255, 0.97);
  color: var(--deep);
  border-radius: 20px;
  padding: 28px 26px;
  box-shadow: var(--shadow);
}

.hero-form-card h2 {
  font-family: "Playfair Display", serif;
  font-size: 25px;
  margin-bottom: 6px;
}

.hero-form-card > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
  margin-bottom: 18px;
}

.hero-form {
  display: grid;
  gap: 12px;
}

.hf-field {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #f7edf5;
  border: 1px solid rgba(58, 30, 58, 0.08);
}

.hf-field svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondary);
  flex: 0 0 auto;
}

.hf-field input,
.hf-field select {
  flex: 1;
  border: 0;
  outline: none;
  background: transparent;
  font: inherit;
  font-size: 15px;
  color: var(--deep);
  width: 100%;
}

.hf-field select {
  cursor: pointer;
}

.hero-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  margin-top: 4px;
  width: 100%;
  border: 0;
  border-radius: 999px;
  padding: 15px 22px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  color: var(--white);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(229, 7, 137, 0.3);
}

.hero-form button svg {
  width: 18px;
  height: 18px;
}

.hf-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 2px;
  font-size: 12.5px;
  color: var(--muted);
}

.hf-note svg {
  width: 15px;
  height: 15px;
  stroke: #2bb673;
}

.btn-primary,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  text-decoration: none;
  border-radius: 999px;
  padding: 14px 24px;
  font-weight: 800;
  font-size: 15px;
}

.btn-primary svg,
.btn-ghost svg {
  width: 18px;
  height: 18px;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  box-shadow: 0 14px 30px rgba(229, 7, 137, 0.3);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
}

/* ───────────────────────── SECTIONS ───────────────────────── */
main {
  padding: 78px 5%;
}

main > section {
  width: min(1180px, 100%);
  margin: 0 auto 86px;
}

main > section:last-child {
  margin-bottom: 0;
}

.section-label {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.section-title {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.9rem, 3.8vw, 3.1rem);
  line-height: 1.08;
  margin-bottom: 16px;
}

.section-desc {
  color: var(--muted);
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto;
}

/* ───────────────────────── OVERVIEW ───────────────────────── */
.svc-overview {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 46px;
  align-items: start;
}

.overview-copy p {
  color: #674b67;
  line-height: 1.8;
  margin-bottom: 16px;
}

.overview-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 22px;
}

.overview-points span {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 600;
  font-size: 15px;
  color: var(--primary);
}

.overview-points svg {
  width: 19px;
  height: 19px;
  stroke: var(--secondary);
  flex: 0 0 auto;
}

.overview-card {
  border-radius: 20px;
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
}

.overview-card img {
  width: 100%;
  height: 230px;
  object-fit: cover;
  display: block;
}

.overview-card-body {
  padding: 22px 24px 26px;
}

.overview-card-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  margin-bottom: 14px;
}

.overview-card-body a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  margin-bottom: 9px;
  border-radius: 12px;
  background: #f7edf5;
  color: var(--primary);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
}

.overview-card-body a svg {
  width: 18px;
  height: 18px;
  stroke: var(--secondary);
}

/* ───────────────────────── OFFER GRID ───────────────────────── */
.offer-grid,
.svc-index-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 44px;
}

.offer-card,
.svc-card {
  padding: 30px 26px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(58, 30, 58, 0.06);
  box-shadow: 0 10px 32px rgba(58, 30, 58, 0.07);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.offer-card:hover,
.svc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 50px rgba(58, 30, 58, 0.14);
}

.offer-icon,
.svc-card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #f7edf5, #fbe3f1);
}

.offer-icon svg,
.svc-card-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--secondary);
}

.offer-card h3,
.svc-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  margin-bottom: 10px;
}

.offer-card p,
.svc-card p {
  color: #674b67;
  line-height: 1.66;
  font-size: 15px;
}

.svc-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

.svc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--secondary);
  font-weight: 800;
  font-size: 14px;
}

.svc-card-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

.svc-card:hover .svc-card-link svg {
  transform: translateX(4px);
}

/* ───────────────────────── STATS BAND ───────────────────────── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  padding: 44px 40px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--primary), #2a0f2a);
  color: var(--white);
  text-align: center;
}

.stats-band .stat strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 2.9rem);
  color: var(--secondary-light);
}

.stats-band .stat span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
}

/* ───────────────────────── FAQ ───────────────────────── */
.faq-list {
  max-width: 820px;
  margin: 40px auto 0;
  display: grid;
  gap: 14px;
}

.faq-item {
  border-radius: 14px;
  background: var(--white);
  border: 1px solid rgba(58, 30, 58, 0.07);
  box-shadow: 0 8px 24px rgba(58, 30, 58, 0.05);
  overflow: hidden;
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 22px;
  font-weight: 700;
  cursor: pointer;
}

.faq-arrow {
  color: var(--secondary);
  font-size: 22px;
  line-height: 1;
  transition: transform 0.25s ease;
}

.faq-item.open .faq-arrow {
  transform: rotate(45deg);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  padding: 0 22px;
  color: #674b67;
  line-height: 1.7;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 22px 22px;
}

/* ───────────────────────── RELATED ───────────────────────── */
.related-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  margin-top: 40px;
}

.related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 22px 14px;
  border-radius: 16px;
  background: var(--white);
  border: 1px solid rgba(58, 30, 58, 0.06);
  box-shadow: 0 8px 24px rgba(58, 30, 58, 0.06);
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.related-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(58, 30, 58, 0.12);
}

.related-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: linear-gradient(135deg, #f7edf5, #fbe3f1);
}

.related-icon svg {
  width: 23px;
  height: 23px;
  stroke: var(--secondary);
}

/* ───────────────────────── FOUNDER ───────────────────────── */
.founder {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: center;
}

.founder-photo {
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.founder-photo img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.founder-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  color: var(--white);
  font-weight: 800;
  font-size: 13px;
  box-shadow: 0 10px 24px rgba(229, 7, 137, 0.3);
}

.founder-badge svg {
  width: 16px;
  height: 16px;
}

.founder-role {
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 18px;
}

.founder-copy p {
  color: #674b67;
  line-height: 1.8;
  margin-bottom: 16px;
}

.founder-cred {
  display: grid;
  gap: 10px;
  margin: 22px 0 26px;
}

.founder-cred span {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--primary);
}

.founder-cred svg {
  width: 19px;
  height: 19px;
  stroke: var(--secondary);
  flex: 0 0 auto;
}

/* ───────────────────────── STORY ───────────────────────── */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 46px;
}

.story-card {
  padding: 30px 26px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid rgba(58, 30, 58, 0.06);
  box-shadow: 0 10px 32px rgba(58, 30, 58, 0.07);
}

.story-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, #f7edf5, #fbe3f1);
}

.story-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--secondary);
}

.story-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  margin-bottom: 10px;
}

.story-card p {
  color: #674b67;
  line-height: 1.7;
  font-size: 15px;
}

/* ───────────────────────── MISSION / VISION ───────────────────────── */
.mv {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.mv-card {
  padding: 34px 28px;
  border-radius: 20px;
  background: linear-gradient(135deg, #fff, #fdf3f9);
  border: 1px solid rgba(229, 7, 137, 0.12);
  box-shadow: 0 10px 32px rgba(58, 30, 58, 0.06);
}

.mv-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  margin-bottom: 18px;
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
}

.mv-icon svg {
  width: 26px;
  height: 26px;
  stroke: #fff;
}

.mv-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 23px;
  margin-bottom: 10px;
}

.mv-card p {
  color: #674b67;
  line-height: 1.75;
}

/* ───────────────────────── TEAM ───────────────────────── */
.doctors-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
  margin-top: 50px;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.doc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s, box-shadow 0.3s;
}

.doc-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.doc-card.is-founder {
  outline: 2px solid var(--secondary);
  outline-offset: -2px;
}

.doc-avatar {
  height: 250px;
  position: relative;
  overflow: hidden;
}

.doc-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 16%;
  display: block;
}

.doc-avatar.asha img {
  object-position: 62% 12%;
}

.doc-tag {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  color: var(--rose);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}

.doc-card.is-founder .doc-tag {
  background: linear-gradient(135deg, var(--secondary), var(--primary-light));
  color: var(--white);
}

.doc-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 3px;
  padding: 16px 16px 18px;
}

.doc-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 17px;
  color: var(--deep);
  margin-bottom: 2px;
}

.doc-info .spec {
  font-size: 12px;
  color: var(--secondary);
  font-weight: 700;
  margin-bottom: 2px;
}

.doc-info .qual {
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.45;
}

/* ───────────────────────── WHY US MODULE ───────────────────────── */
.why-us {
  padding: 56px 48px;
  border-radius: 26px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--white);
}

.why-us .section-label {
  color: var(--gold-light);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-desc {
  color: rgba(255, 255, 255, 0.72);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}

.about-features {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.feature-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s;
}

.feature-row:hover {
  background: rgba(255, 255, 255, 0.1);
}

.feature-row .ico {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(229, 7, 137, 0.25);
  border-radius: 12px;
  display: grid;
  place-items: center;
}

.feature-row .ico svg {
  width: 21px;
  height: 21px;
  stroke: var(--rose-light);
}

.feature-row h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-row p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.about-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.about-tile {
  border-radius: 20px;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 170px;
}

.about-tile svg {
  width: 30px;
  height: 30px;
  stroke: #fff;
  stroke-width: 1.6;
  margin-bottom: 10px;
}

.about-tile.t1 {
  background: linear-gradient(135deg, #c8556a, #9e3449);
  grid-column: 1 / -1;
  min-height: 140px;
}

.about-tile.t2 {
  background: linear-gradient(135deg, #c9973a, #a87b2a);
}

.about-tile.t3 {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.about-tile h4 {
  font-family: "Playfair Display", serif;
  font-size: 21px;
  color: #fff;
  font-weight: 700;
}

.about-tile p {
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 4px;
}

/* ───────────────────────── CTA BAND ───────────────────────── */
.cta-band {
  padding: 0 5% 88px;
}

.cta-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 56px 48px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(58, 30, 58, 0.92), rgba(229, 7, 137, 0.82)),
    url("../images/hero_reception.png") center/cover;
  color: var(--white);
  text-align: center;
}

.cta-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.6vw, 2.9rem);
  margin-bottom: 14px;
}

.cta-inner p {
  max-width: 620px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
}

.cta-inner .eyebrow {
  justify-content: center;
}

.cta-actions {
  justify-content: center;
}

/* ───────────────────────── FOOTER ───────────────────────── */
footer {
  padding: 40px 5% 46px;
  background: var(--primary);
  color: rgba(255, 255, 255, 0.78);
}

.footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-inner img {
  height: 42px;
  width: auto;
  padding: 6px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.92);
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.footer-links a {
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--secondary-light);
}

.footer-reg {
  width: min(1180px, 100%);
  margin: 26px auto 6px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
}

.footer-copy {
  width: min(1180px, 100%);
  margin: 0 auto;
  font-size: 13px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
}

/* ───────────────────────── RESPONSIVE ───────────────────────── */
@media (max-width: 980px) {
  .svc-hero-grid,
  .svc-overview,
  .founder,
  .about-grid {
    grid-template-columns: 1fr;
  }
  .svc-hero-grid {
    gap: 34px;
  }
  .hero-form-card {
    max-width: 460px;
  }
  .founder-photo img {
    height: 380px;
  }
  .offer-grid,
  .svc-index-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .why-us {
    padding: 44px 26px;
  }
  .story-grid,
  .mv {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  nav {
    top: 10px;
  }
  .nav-links {
    display: none;
  }
}

@media (max-width: 640px) {
  .nav-cta {
    padding: 12px;
    font-size: 0;
    border-radius: 50%;
  }
  .nav-cta svg {
    width: 20px;
    height: 20px;
  }
  .svc-hero {
    padding-top: 110px;
  }
  .offer-grid,
  .svc-index-grid,
  .stats-band,
  .overview-points {
    grid-template-columns: 1fr;
  }
  .stats-band {
    gap: 26px;
    padding: 36px 24px;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cta-inner {
    padding: 40px 24px;
  }
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
  .footer-links {
    justify-content: flex-start;
  }
}
