/* ============================================================
   Detour Services India — stylesheet
   Colours mirror tailwind.config.ts
   ============================================================ */
:root {
  --bg:           #f7fbff;
  --surface:      #eef6ff;
  --surface-2:    #e3f0ff;
  --text:         #0b1320;
  --text-muted:   #3a4b63;
  --accent:       #183b65;
  --accent-hover: #132f51;
  --gold:         #fede6f;
  --teal:         #a3c5eb;
  --border:       rgba(0,0,0,0.10);
  --max-w:        80rem;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

[id] { scroll-margin-top: 80px; }
a    { text-decoration: none; color: inherit; }
p    { margin: 0; }
h1, h2, h3 { margin: 0; }
ul { margin: 0; padding: 0; }

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: 1.5rem;
}
@media (min-width: 1024px) { .container { padding-inline: 2rem; } }

/* ── Shared section label ─────────────────────────────────── */
.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

/* ── Gradient text ───────────────────────────────────────── */
.gradient-text {
  background: linear-gradient(to right, var(--text), var(--accent), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Shared buttons ──────────────────────────────────────── */
.btn-accent-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  background: var(--accent);
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.2s;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-accent-lg:hover { background: var(--accent-hover); }

.btn-accent-xl {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 1rem;
  background: var(--accent);
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
  transition: background-color 0.2s;
}
.btn-accent-xl:hover { background: var(--accent-hover); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  padding: 1rem 2rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: background-color 0.2s;
  text-align: center;
}
.btn-outline:hover { background: rgba(0,0,0,0.05); }

.btn-outline-sm {
  display: inline-block;
  margin-top: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.15);
  background: transparent;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
  transition: background-color 0.2s;
}
.btn-outline-sm:hover { background: rgba(0,0,0,0.05); }

/* ────────────────────────────────────────────────────────────
   NAVBAR
   ──────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  inset-inline: 0;
  top: 0;
  z-index: 50;
  transition: background-color 0.2s, border-color 0.2s;
}
.navbar.scrolled {
  background: rgba(247,251,255,0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1rem;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo-badge {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}
.navbar-brand {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.025em;
  color: var(--text);
}
.navbar-logo-img {
  height: 1.75rem;
  width: auto;
  object-fit: contain;
  display: block;
}

.navbar-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 768px) { .navbar-nav { display: flex; } }

.nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s;
}
.nav-link:hover { color: var(--text); }

.btn-nav-cta {
  border-radius: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1.25rem;
  transition: background-color 0.2s;
}
.btn-nav-cta:hover { background: var(--accent-hover); }

.navbar-toggle {
  display: flex;
  border-radius: 0.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  font-family: inherit;
}
@media (min-width: 768px) { .navbar-toggle { display: none; } }

.navbar-mobile {
  display: none;
  border-top: 1px solid var(--border);
  background: rgba(247,251,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.navbar-mobile.open { display: block; }

.navbar-mobile-inner {
  max-width: var(--max-w);
  margin-inline: auto;
  padding: 1rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 1024px) { .navbar-mobile-inner { padding-inline: 2rem; } }

.mobile-link {
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color 0.2s, background-color 0.2s;
  display: block;
}
.mobile-link:hover { color: var(--text); background: rgba(0,0,0,0.05); }

.btn-mobile-cta {
  display: block;
  margin-top: 0.5rem;
  border-radius: 0.5rem;
  background: var(--accent);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  text-align: center;
  transition: background-color 0.2s;
}
.btn-mobile-cta:hover { background: var(--accent-hover); }

/* ────────────────────────────────────────────────────────────
   HERO
   ──────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--bg);
  padding-top: 8rem;
  padding-bottom: 5rem;
}

.hero-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.blob-1 {
  position: absolute;
  top: -6rem; left: 50%;
  transform: translateX(-50%);
  width: 32.5rem; height: 32.5rem;
  border-radius: 50%;
  background: rgba(24,59,101,0.15);
  filter: blur(60px);
}
.blob-2 {
  position: absolute;
  top: 10rem; right: 0;
  width: 26.25rem; height: 26.25rem;
  border-radius: 50%;
  background: rgba(254,222,111,0.1);
  filter: blur(60px);
}
.dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image: radial-gradient(#0b1320 1px, transparent 1px);
  background-size: 28px 28px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: repeat(12, 1fr); }
  .hero-left  { grid-column: span 6; }
  .hero-right { grid-column: span 6; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  border: 1px solid rgba(24,59,101,0.2);
  background: rgba(163,197,235,0.4);
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.hero h1 {
  margin-top: 1.75rem;
  font-size: 2.25rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--text);
}
@media (min-width: 640px)  { .hero h1 { font-size: 3rem; } }
@media (min-width: 1024px) { .hero h1 { font-size: 3.75rem; } }

.hero-tagline {
  margin-top: 1.25rem;
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent);
}
@media (min-width: 640px) { .hero-tagline { font-size: 1.125rem; } }

.hero-desc {
  margin-top: 1.75rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}
@media (min-width: 640px) { .hero-desc { font-size: 1rem; } }

.hero-actions {
  margin-top: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 640px) {
  .hero-actions { flex-direction: row; align-items: flex-start; }
}
@media (max-width: 639px) {
  .hero-actions .btn-accent-lg,
  .hero-actions .btn-outline { width: 100%; }
}

.hero-image-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 24px 70px rgba(0,0,0,0.12);
}
.hero-image-inner {
  aspect-ratio: 2/1;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .hero-image-inner { padding: 2rem; } }
.hero-image-inner img {
  width: 100%; height: 100%;
  object-fit: contain;
}

/* ────────────────────────────────────────────────────────────
   WHAT WE DO
   ──────────────────────────────────────────────────────────── */
.what-we-do {
  background: var(--bg);
  padding-block: 6rem;
}
.what-we-do .section-intro { max-width: 48rem; }

.what-we-do h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}
@media (min-width: 640px) { .what-we-do h2 { font-size: 2.25rem; } }

.h2-sub {
  display: block;
  margin-top: 0.5rem;
  font-weight: 400;
  color: var(--text-muted);
}

.what-we-do .section-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.capabilities-grid {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px)  { .capabilities-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .capabilities-grid { grid-template-columns: repeat(3, 1fr); } }

.capability-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: border-color 0.2s;
}
.capability-card:hover { border-color: rgba(24,59,101,0.4); }

/* ────────────────────────────────────────────────────────────
   SERVICES
   ──────────────────────────────────────────────────────────── */
.services {
  background: var(--surface);
  padding-block: 6rem;
}
.services .section-header {
  max-width: 48rem;
  margin-inline: auto;
  text-align: center;
}
.services h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}
@media (min-width: 640px)  { .services h2 { font-size: 2.25rem; } }
@media (min-width: 1024px) { .services h2 { font-size: 3rem; } }

.gold-text { color: var(--gold); }

.services-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.pillars-grid {
  margin-top: 3.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media (min-width: 768px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }

.pillar-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  transition: border-color 0.2s, background-color 0.2s;
}
.pillar-card.active {
  border-color: rgba(24,59,101,0.4);
  background: var(--surface-2);
}
.pillar-card:not(.active):hover { border-color: rgba(0,0,0,0.2); }

.pillar-btn {
  width: 100%;
  text-align: left;
  padding: 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  display: block;
  font-family: inherit;
}

.pillar-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}
.pillar-meta { min-width: 0; }

.pillar-label-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.dot {
  display: inline-block;
  border-radius: 50%;
  flex-shrink: 0;
}
.dot-sm { width: 0.5rem; height: 0.5rem; margin-top: 0.25rem; }
.dot-xs { width: 0.375rem; height: 0.375rem; margin-top: 0.375rem; }
.dot-gold   { background: var(--gold); }
.dot-accent { background: var(--accent); }

.pillar-label-text {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.pillar-tagline {
  margin-top: 1rem;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
}
.pillar-desc {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.pillar-toggle {
  flex-shrink: 0;
  color: var(--text-muted);
  font-size: 1.25rem;
  line-height: 1;
}

.pillar-services { display: none; padding: 0 1.75rem 1.75rem; }
.pillar-card.active .pillar-services { display: block; }

.pillar-services-inner {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.services-include-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}

.services-list {
  margin-top: 1rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.services-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ────────────────────────────────────────────────────────────
   INDUSTRIES
   ──────────────────────────────────────────────────────────── */
.industries {
  background: var(--bg);
  padding-block: 6rem;
}
.industries-top {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 1024px) {
  .industries-top {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}
.industries h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}
@media (min-width: 640px) { .industries h2 { font-size: 2.25rem; } }

.industries-subtitle {
  display: block;
  font-weight: 400;
  color: var(--text-muted);
}
.industries-desc {
  max-width: 36rem;
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.industries-tags {
  margin-top: 3rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.industry-tag {
  border-radius: 9999px;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 0.5rem 1.25rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: border-color 0.2s, color 0.2s;
}
.industry-tag:hover {
  border-color: rgba(254,222,111,0.5);
  color: var(--text);
}

/* ────────────────────────────────────────────────────────────
   SUSTAINABILITY
   ──────────────────────────────────────────────────────────── */
.sustainability {
  background: var(--teal);
  padding-block: 6rem;
}
.sustainability-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (min-width: 1024px) { .sustainability-grid { grid-template-columns: repeat(2, 1fr); } }

.sustainability h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}
@media (min-width: 640px) { .sustainability h2 { font-size: 2.25rem; } }

.sustainability .section-desc {
  margin-top: 1.25rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text-muted);
}

.sustain-cards-wrap {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: #fff;
  padding: 1.75rem;
}
.sustain-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 640px) { .sustain-cards { grid-template-columns: repeat(3, 1fr); } }

.sustain-card {
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 1.25rem;
}
.sustain-icon  { font-size: 1.5rem; }
.sustain-title { margin-top: 0.75rem; font-weight: 600; color: var(--text); }
.sustain-desc  { margin-top: 0.5rem; font-size: 0.875rem; color: var(--text-muted); }

/* ────────────────────────────────────────────────────────────
   PARTNERS
   ──────────────────────────────────────────────────────────── */
.partners {
  background: var(--bg);
  padding-block: 7rem;
}
.partners .section-label { display: block; }

.partners-box .partners-logos { margin-top: 2.5rem; }

.partners-logos {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 3rem;
}

.partner-link {
  display: inline-flex;
  align-items: center;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.partner-link:hover { opacity: 1; }

.partner-logo {
  display: block;
  width: auto;
  height: 2rem;
  object-fit: contain;
  max-width: 100%;
}

.partners-box .partner-link {
  width: min(520px, 100%);
  justify-content: center;
}

.partners-box .partner-logo {
  width: 100%;
  height: auto;
  max-height: 104px;
}

/* ────────────────────────────────────────────────────────────
   CLOSING CTA
   ──────────────────────────────────────────────────────────── */
.closing-cta { background: var(--bg); padding-block: 7rem; }

.cta-box {
  border-radius: 1.5rem;
  border: 1px solid var(--border);
  background: var(--surface);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 640px) { .cta-box { padding: 3.5rem; } }

.cta-blob-1 {
  position: absolute;
  top: -6rem; left: 50%;
  transform: translateX(-50%);
  width: 26.25rem; height: 26.25rem;
  border-radius: 50%;
  background: rgba(24,59,101,0.15);
  filter: blur(60px);
  pointer-events: none;
}
.cta-blob-2 {
  position: absolute;
  bottom: -10rem; right: 0;
  width: 22.5rem; height: 22.5rem;
  border-radius: 50%;
  background: rgba(254,222,111,0.12);
  filter: blur(60px);
  pointer-events: none;
}
.cta-content { position: relative; }

.cta-box h2 {
  margin-top: 1.25rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}
@media (min-width: 640px) { .cta-box h2 { font-size: 3rem; } }

.cta-desc {
  margin: 1.5rem auto 0;
  max-width: 48rem;
  font-size: 1rem;
  line-height: 1.625;
  color: var(--text-muted);
}
.cta-action { margin-top: 2.5rem; }

/* ────────────────────────────────────────────────────────────
   CONTACT FORM
   ──────────────────────────────────────────────────────────── */
.contact { background: var(--surface); padding-block: 6rem; }

.contact-wrap { max-width: 56rem; }

.contact-header { max-width: 32rem; }
.contact h2 {
  margin-top: 1rem;
  font-size: 1.875rem;
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--text);
}
@media (min-width: 640px) { .contact h2 { font-size: 2.25rem; } }
.contact-subtext {
  margin-top: 1rem;
  font-size: 1rem;
  color: var(--text-muted);
}

.contact-form { margin-top: 3rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .form-row { grid-template-columns: repeat(2, 1fr); } }

.form-group { margin-bottom: 2rem; }

.form-label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
}
.form-label .req { color: var(--accent); }

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--text);
  font-family: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  appearance: auto;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(58,75,99,0.7); }
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: rgba(24,59,101,0.6);
  box-shadow: 0 0 0 3px rgba(24,59,101,0.1);
}
.form-select { cursor: pointer; }
.form-textarea { resize: none; }

/* Service toggle checkboxes */
.service-toggles { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.service-toggle-label { cursor: pointer; }
.service-toggle-label input[type="checkbox"] { display: none; }

.service-toggle-btn {
  display: inline-block;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  transition: border-color 0.2s, background-color 0.2s, color 0.2s;
  user-select: none;
}
.service-toggle-label input[type="checkbox"]:checked + .service-toggle-btn {
  border-color: rgba(24,59,101,0.7);
  background: rgba(24,59,101,0.15);
  color: var(--text);
}
.service-toggle-label:hover .service-toggle-btn {
  border-color: rgba(0,0,0,0.2);
  color: var(--text);
}

/* Radio groups */
.radio-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width: 768px) { .radio-grid { grid-template-columns: repeat(2, 1fr); } }

.radio-group-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
}
.radio-options { display: flex; flex-direction: column; gap: 0.5rem; }
.radio-label { display: flex; align-items: center; gap: 0.75rem; cursor: pointer; }
.radio-label input[type="radio"] { accent-color: var(--accent); width: 1rem; height: 1rem; }
.radio-text { font-size: 0.875rem; color: var(--text-muted); }

/* Success / error message */
.form-success {
  margin-top: 3rem;
  border-radius: 1rem;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 2.5rem;
  text-align: center;
}
.form-success-title { font-size: 1.125rem; font-weight: 600; color: var(--text); }
.form-success-text { margin-top: 0.75rem; font-size: 0.875rem; color: var(--text-muted); }

/* ────────────────────────────────────────────────────────────
   FOOTER
   ──────────────────────────────────────────────────────────── */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding-block: 3rem;
}
.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .footer-inner { flex-direction: row; justify-content: space-between; }
}

.footer-logo { display: flex; align-items: center; gap: 0.75rem; }
.footer-logo-img {
  height: 1.5rem;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-brand { line-height: 1.25; }
.footer-brand-name { font-weight: 600; color: var(--text); margin: 0; }
.footer-brand-sub  { font-size: 0.75rem; color: var(--text-muted); margin: 0; }
.footer-tagline    { font-size: 0.875rem; color: var(--text-muted); text-align: center; }
.footer-copy       { font-size: 0.75rem; color: var(--text-muted); }
