/* ════════════════════════════════════════════════════════════════
   Summit Dental Consulting — site styles
   Olive green + warm amber. Playfair Display + Outfit.
═════════════════════════════════════════════════════════════════ */
:root {
  --c-primary:      #1B4D38;
  --c-primary-dark: #0F2E21;
  --c-accent:       #C8882A;
  --c-accent-light: #FBF5E8;
  --c-light:        #EDF4F0;
  --c-text:         #1A2820;
  --c-muted:        #506858;
  --c-white:        #FFFFFF;
  --c-border:       #C2D8CC;

  --f-display: 'Playfair Display', Georgia, serif;
  --f-body:    'Outfit', system-ui, sans-serif;

  --max-w:     1180px;
  --radius:    10px;
  --radius-lg: 18px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--f-body); color: var(--c-text); background: var(--c-white); line-height: 1.7; }
img  { display: block; max-width: 100%; height: auto; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }
h1, h2, h3, h4, h5 { font-family: var(--f-display); line-height: 1.2; color: var(--c-text); }
*:focus-visible { outline: 2px solid var(--c-accent); outline-offset: 3px; border-radius: 3px; }

.sr-skip { position: absolute; left: -9999px; top: auto; width: 1px; height: 1px; overflow: hidden; }
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }

/* Typography helpers */
.eyebrow {
  display: inline-block;
  font-family: var(--f-body);
  font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: 0.6rem;
}
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.75rem); font-weight: 700; }
.section-sub   { font-size: 1rem; color: var(--c-muted); max-width: 580px; margin-top: 0.75rem; line-height: 1.75; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; gap: 0.45rem;
  padding: 0.8rem 1.7rem; border-radius: 50px;
  font-family: var(--f-body); font-size: 0.9rem; font-weight: 600;
  cursor: pointer; border: none; transition: all 0.2s; white-space: nowrap; text-decoration: none;
}
.btn-primary { background: var(--c-primary); color: var(--c-white); }
.btn-primary:hover { background: var(--c-primary-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(15,46,33,0.25); }
.btn-accent  { background: var(--c-accent); color: var(--c-white); }
.btn-accent:hover  { filter: brightness(1.08); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,136,42,0.35); }
.btn-outline { background: transparent; color: var(--c-primary); border: 2px solid var(--c-primary); }
.btn-outline:hover { background: var(--c-primary); color: var(--c-white); }
.btn-white  { background: var(--c-white); color: var(--c-primary); }
.btn-white:hover { background: var(--c-accent-light); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: var(--c-white); border: 2px solid rgba(255,255,255,0.6); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--c-white); }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: var(--c-primary-dark); color: rgba(255,255,255,0.7);
  font-size: 0.8rem; padding: 0.45rem 1.5rem;
}
.topbar-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.topbar a:hover { color: var(--c-white); }
.topbar-left, .topbar-right { display: flex; gap: 1.5rem; align-items: center; }
.topbar-sep { opacity: 0.3; }

/* ── Nav ────────────────────────────────────────────────────── */
header { position: sticky; top: 0; z-index: 200; }
nav { background: var(--c-primary); box-shadow: 0 2px 20px rgba(15,46,33,0.25); }
.nav-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem;
  height: 72px; display: flex; align-items: center;
  justify-content: space-between; gap: 1.5rem;
}
.nav-logo {
  font-family: var(--f-display); font-size: 1.45rem; font-weight: 700;
  color: var(--c-white); letter-spacing: -0.01em; flex-shrink: 0;
}
.nav-logo span { color: var(--c-accent); }

.nav-menu { display: flex; align-items: center; gap: 0; flex: 1; justify-content: center; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0 0.85rem; height: 72px;
  font-size: 0.82rem; font-weight: 500;
  color: rgba(255,255,255,0.88);
  transition: color 0.2s, background 0.2s; white-space: nowrap;
}
.nav-link:hover,
.nav-item:hover > .nav-link { color: var(--c-white); background: rgba(255,255,255,0.08); }
.nav-link .chevron { font-size: 0.6rem; opacity: 0.7; transition: transform 0.2s; }
.nav-item:hover .chevron { transform: rotate(180deg); }

.dropdown {
  position: absolute; top: 100%; left: 0;
  min-width: 230px; background: var(--c-white);
  border-top: 3px solid var(--c-accent);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: 0 16px 48px rgba(15,46,33,0.18);
  opacity: 0; pointer-events: none; transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s; z-index: 300;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { opacity: 1; pointer-events: auto; transform: translateY(0); }
.dropdown a {
  display: block; padding: 0.65rem 1.25rem;
  font-size: 0.83rem; font-weight: 400; color: var(--c-text);
  border-bottom: 1px solid var(--c-border);
  transition: background 0.15s, color 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--c-light); color: var(--c-primary); }
.dropdown .drop-label {
  display: block; padding: 0.55rem 1.25rem 0.2rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-accent);
  border-bottom: none; cursor: default;
}
.dropdown .drop-label:hover { background: none; color: var(--c-accent); }

.nav-cta { flex-shrink: 0; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.hamburger span { width: 24px; height: 2px; background: var(--c-white); border-radius: 2px; transition: all 0.3s; }
.mobile-menu { display: none; }
.mobile-menu.is-open {
  display: flex; flex-direction: column; gap: 0;
  background: var(--c-primary-dark); padding: 1rem 0;
}
.mobile-menu a {
  display: block; padding: 0.75rem 1.5rem;
  color: rgba(255,255,255,0.85); font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background 0.15s;
}
.mobile-menu a:hover { background: rgba(255,255,255,0.06); color: white; }
.mobile-menu .m-label {
  display: block; padding: 0.5rem 1.5rem 0.2rem;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--c-accent);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative; min-height: 88vh;
  display: flex; align-items: center;
  overflow: hidden; background: var(--c-primary-dark);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #060F09 0%, #1B4D38 50%, #0F2E21 100%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.025'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto; padding: 5rem 1.5rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 4rem; align-items: center;
}
.hero-content { color: var(--c-white); }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(200,136,42,0.18); border: 1px solid rgba(200,136,42,0.4);
  color: #F0C870; font-size: 0.75rem; font-weight: 600;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 0.35rem 1rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.hero h1 {
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  color: var(--c-white); margin-bottom: 0.5rem; font-weight: 700;
}
.hero h1 em { font-style: italic; color: #F0C870; }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.72); margin-bottom: 2.5rem;
  max-width: 500px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 2rem;
}
.hero-card-eyebrow {
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--c-accent); margin-bottom: 0.5rem;
}
.hero-card-title {
  font-family: var(--f-display); font-size: 1.25rem;
  color: var(--c-white); margin-bottom: 0.4rem;
}
.hero-card-sub { font-size: 0.83rem; color: rgba(255,255,255,0.55); margin-bottom: 1.5rem; }
.assessment-list { display: flex; flex-direction: column; gap: 0.65rem; margin-bottom: 1.75rem; }
.assessment-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.assessment-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(200,136,42,0.2); color: #F0C870;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; flex-shrink: 0; margin-top: 1px;
}
.assessment-item span { font-size: 0.875rem; color: rgba(255,255,255,0.8); line-height: 1.5; }
.hero-card-note { font-size: 0.75rem; color: rgba(255,255,255,0.4); margin-top: 1rem; text-align: center; }

/* ── Stats Band ─────────────────────────────────────────────── */
.stats-band { background: var(--c-accent); padding: 3rem 1.5rem; }
.stats-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--f-display); font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; color: var(--c-white); line-height: 1; margin-bottom: 0.4rem;
}
.stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.8); font-weight: 500; line-height: 1.4; }

/* ── Welcome / About ────────────────────────────────────────── */
.welcome { background: var(--c-light); padding: 5rem 1.5rem; }
.welcome-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center;
}
.welcome-image {
  aspect-ratio: 4/3.2; border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #c3d8cc 0%, #8ab5a0 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary); font-size: 0.88rem; font-family: var(--f-display);
  opacity: 0.75; text-align: center; padding: 1.5rem;
}
.welcome-text .section-sub { max-width: 100%; }
.welcome-text p { color: var(--c-muted); font-size: 0.95rem; line-height: 1.8; margin-top: 1rem; }
.welcome-text .btn { margin-top: 2rem; }

/* ── Pillars ────────────────────────────────────────────────── */
.pillars { background: var(--c-white); padding: 5rem 1.5rem; }
.pillars-header { text-align: center; margin-bottom: 3.5rem; }
.pillars-header .section-sub { margin: 0 auto; }
.pillars-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
}
.pillar-card {
  border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; text-align: center;
  transition: box-shadow 0.25s, transform 0.25s;
}
.pillar-card:hover { box-shadow: 0 16px 48px rgba(27,77,56,0.1); transform: translateY(-4px); }
.pillar-icon {
  width: 64px; height: 64px; border-radius: 50%;
  background: var(--c-light); margin: 0 auto 1.5rem;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
}
.pillar-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 0.75rem; font-family: var(--f-body); }
.pillar-card p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.7; }

/* ── Services Grid ──────────────────────────────────────────── */
.services { background: var(--c-light); padding: 5rem 1.5rem; }
.services-inner { max-width: var(--max-w); margin: 0 auto; }
.services-header { text-align: center; margin-bottom: 3.5rem; }
.services-header .section-sub { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.service-card {
  position: relative; overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid var(--c-border); padding: 2rem 1.75rem;
  background: var(--c-white); transition: all 0.25s;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--c-accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s;
}
.service-card:hover { box-shadow: 0 12px 40px rgba(27,77,56,0.1); transform: translateY(-3px); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 52px; height: 52px; border-radius: 12px;
  background: var(--c-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem; margin-bottom: 1.25rem;
}
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; font-family: var(--f-body); }
.service-card p { font-size: 0.875rem; color: var(--c-muted); line-height: 1.65; }
.service-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--c-primary); font-size: 0.82rem; font-weight: 600;
  margin-top: 1rem; transition: gap 0.2s;
}
.service-link:hover { gap: 0.55rem; }

/* ── Service Detail Sections (inline collapse of subpages) ──── */
.services-detail { background: var(--c-white); padding-bottom: 4rem; }
.services-detail-header {
  text-align: center; padding: 4.5rem 1.5rem 2rem;
}
.services-detail-header .section-sub { margin: 0.75rem auto 0; }
.service-detail-block {
  padding: 4rem 1.5rem; background: var(--c-white);
  border-top: 1px solid var(--c-border);
  scroll-margin-top: 110px;  /* sticky-nav offset for hash links */
}
.service-detail-block.alt { background: var(--c-light); }
.service-detail-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 1fr 0.4fr; gap: 3.5rem; align-items: start;
}
.service-detail-eyebrow {
  display: inline-flex; align-items: center; gap: 0.55rem;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--c-accent); margin-bottom: 0.65rem;
}
.service-detail-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--c-accent-light); font-size: 0.95rem;
}
.service-detail-content h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.1rem); font-weight: 700;
  margin-bottom: 1rem; color: var(--c-text);
}
.service-detail-content h4 {
  font-family: var(--f-body); font-size: 0.92rem; font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--c-primary); margin: 2rem 0 0.85rem;
}
.service-detail-intro {
  font-size: 1.02rem; line-height: 1.8; color: var(--c-muted);
  margin-bottom: 0.4rem;
}
.included-list { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }
.included-item { display: flex; align-items: flex-start; gap: 0.75rem; }
.included-check {
  color: var(--c-accent); font-size: 1rem;
  font-weight: 700; margin-top: 1px; flex-shrink: 0;
}
.included-item span:last-child { font-size: 0.93rem; color: var(--c-text); line-height: 1.55; }

.service-sidebar { position: sticky; top: 100px; }
.sidebar-results {
  background: var(--c-accent-light);
  border: 1px solid var(--c-border); border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.sidebar-results h4 {
  font-family: var(--f-body); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--c-primary); margin-bottom: 1rem;
}
.result-stat {
  display: grid; grid-template-columns: 1fr; gap: 0.1rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--c-border);
}
.result-stat:last-child { border-bottom: none; }
.result-number {
  font-family: var(--f-display); font-size: 1.45rem; font-weight: 700;
  color: var(--c-accent);
  letter-spacing: -0.01em;
}
.result-desc { font-size: 0.82rem; color: var(--c-muted); line-height: 1.45; }

/* ── Process ────────────────────────────────────────────────── */
.process { background: var(--c-white); padding: 5rem 1.5rem; }
.process-inner { max-width: var(--max-w); margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 4rem; }
.process-header .section-sub { margin: 0 auto; }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 36px;
  left: calc(16.67% + 1rem); right: calc(16.67% + 1rem);
  height: 2px; background: var(--c-border); z-index: 0;
}
.process-step { position: relative; z-index: 1; text-align: center; padding: 0 1rem; }
.step-number {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--c-primary); color: var(--c-white);
  font-family: var(--f-display); font-size: 1.5rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem; border: 4px solid var(--c-white);
  box-shadow: 0 0 0 2px var(--c-border);
}
.process-step h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; font-family: var(--f-body); }
.process-step p { font-size: 0.875rem; color: var(--c-muted); line-height: 1.7; }

/* ── Consultant ─────────────────────────────────────────────── */
.consultant { background: var(--c-accent-light); padding: 5rem 1.5rem; }
.consultant-inner {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 5rem; align-items: center;
}
.consultant-photo {
  aspect-ratio: 3/4; border-radius: var(--radius-lg); overflow: hidden;
  background: linear-gradient(160deg, #d0e8da 0%, #9ec5b0 100%);
  display: flex; align-items: center; justify-content: center;
  color: var(--c-primary); font-size: 0.88rem; font-family: var(--f-display);
  opacity: 0.75; text-align: center; padding: 1.5rem;
}
.consultant-content .eyebrow { margin-bottom: 0.4rem; }
.consultant-content .section-title { margin-bottom: 0.4rem; }
.consultant-role { font-size: 0.88rem; color: var(--c-accent); font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 1.25rem; }
.consultant-content p { color: var(--c-muted); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1rem; }
.credentials-list { display: flex; flex-direction: column; gap: 0.5rem; margin: 1.5rem 0; }
.credential-item { display: flex; align-items: center; gap: 0.75rem; font-size: 0.875rem; color: var(--c-text); }

/* ── Testimonials ───────────────────────────────────────────── */
.testimonials { background: var(--c-primary-dark); padding: 5rem 1.5rem; }
.testimonials-inner { max-width: var(--max-w); margin: 0 auto; }
.testimonials-header { text-align: center; margin-bottom: 3.5rem; }
.testimonials-header .section-title { color: var(--c-white); }
.testimonials-header .section-sub { color: rgba(255,255,255,0.55); margin: 0 auto; }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 2rem;
  display: flex; flex-direction: column; gap: 1rem;
}
.testimonial-result {
  display: inline-block;
  background: rgba(200,136,42,0.2); border: 1px solid rgba(200,136,42,0.35);
  color: #F0C870; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 50px;
  align-self: flex-start;
}
.testimonial-stars { color: var(--c-accent); font-size: 0.85rem; }
.testimonial-quote {
  font-size: 0.92rem; color: rgba(255,255,255,0.78);
  font-style: italic; line-height: 1.75; flex: 1;
  font-family: var(--f-display);
}
.testimonial-author { display: flex; align-items: center; gap: 0.85rem; margin-top: auto; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--c-primary); color: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 0.875rem; font-weight: 600; color: var(--c-white); }
.testimonial-meta { font-size: 0.75rem; color: rgba(255,255,255,0.45); }

/* ── FAQ ────────────────────────────────────────────────────── */
.faq { background: var(--c-white); padding: 5rem 1.5rem; }
.faq-inner { max-width: var(--max-w); }
.faq-header { text-align: center; margin-bottom: 3rem; }
.faq-header .section-sub { margin: 0 auto; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  padding: 1.6rem 0; border-top: 1px solid var(--c-border);
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 2rem;
  align-items: baseline;
}
.faq-item:last-child { border-bottom: 1px solid var(--c-border); }
.faq-q { font-family: var(--f-display); font-size: 1.15rem; font-weight: 700; color: var(--c-text); line-height: 1.4; }
.faq-a { font-size: 0.95rem; color: var(--c-muted); line-height: 1.75; }
.faq-a a { color: var(--c-primary); text-decoration: underline; }

/* ── CTA Band ───────────────────────────────────────────────── */
.cta-band { background: var(--c-accent); padding: 4.5rem 1.5rem; text-align: center; scroll-margin-top: 110px; }
.cta-band h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); color: var(--c-white); margin-bottom: 0.75rem; }
.cta-band p { color: rgba(255,255,255,0.82); margin-bottom: 2rem; font-size: 1rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-band-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Contact ────────────────────────────────────────────────── */
.contact-section { padding: 5rem 1.5rem; background: var(--c-white); }
.contact-inner {
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 5rem;
}
.contact-info .section-sub { max-width: 100%; margin-bottom: 2rem; }
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--c-light); display: flex; align-items: center;
  justify-content: center; font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--c-muted); margin-bottom: 0.2rem; }
.contact-info-value { font-size: 0.95rem; font-weight: 600; color: var(--c-text); }
.contact-info-value a { color: var(--c-primary); }

.contact-form-card {
  background: var(--c-light); border-radius: var(--radius-lg); padding: 2.5rem;
}
.contact-form-card h2 { font-size: 1.5rem; margin-bottom: 0.5rem; }
.contact-form-card .form-sub { font-size: 0.875rem; color: var(--c-muted); margin-bottom: 2rem; }
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
.form-privacy { font-size: 0.75rem; color: var(--c-muted); text-align: center; margin-top: 0.75rem; }

/* ── Footer ─────────────────────────────────────────────────── */
footer { background: var(--c-primary-dark); padding: 4rem 1.5rem 2rem; color: rgba(255,255,255,0.55); }
.footer-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; margin-bottom: 3rem;
}
.footer-logo { font-family: var(--f-display); font-size: 1.4rem; font-weight: 700; color: var(--c-white); margin-bottom: 0.85rem; }
.footer-logo span { color: var(--c-accent); }
.footer-brand p { font-size: 0.85rem; line-height: 1.75; max-width: 280px; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.82rem; transition: background 0.2s, border-color 0.2s;
}
.footer-social a:hover { background: var(--c-accent); border-color: var(--c-accent); color: var(--c-white); }
.footer-col h4 {
  font-family: var(--f-body); font-size: 0.7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35); margin-bottom: 1rem;
}
.footer-col li { margin-bottom: 0.5rem; }
.footer-col a { font-size: 0.85rem; color: rgba(255,255,255,0.6); transition: color 0.2s; }
.footer-col a:hover { color: var(--c-white); }
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; flex-wrap: wrap; font-size: 0.78rem;
}
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--c-white); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 860px) {
  .hero-inner,
  .welcome-inner,
  .consultant-inner,
  .service-detail-inner,
  .contact-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .pillars-grid,
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
  .service-sidebar { position: static; }
  .faq-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .topbar { display: none; }
}
@media (max-width: 580px) {
  .pillars-grid,
  .services-grid,
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
}

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