/* =====================================================================
   MEDISOL HEALTHCARE — Design System v1.0
   ===================================================================== */

/* ------- Reset & base ------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .18s ease; }
a:hover { color: var(--primary-dark); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font-family: inherit; font-size: 15px; }
h1, h2, h3, h4 { line-height: 1.2; letter-spacing: -0.01em; color: var(--ink); }

/* ------- Design tokens — Oxford steel ------- */
:root {
  --primary:       #1c2434;
  --primary-dark:  #0f1420;
  --primary-light: #e8eaf0;
  --primary-50:    #f4f4f3;

  --accent:        #8b2635;
  --accent-dark:   #6b1d28;
  --accent-light:  #f5e6e8;

  --ink:          #1c2434;
  --ink-muted:    #4a5568;
  --ink-soft:     #5a6578;
  --ink-faded:    #7a8294;

  --bg:           #ffffff;
  --bg-soft:      #f4f4f3;
  --bg-elev:      #ffffff;

  --border:       #e4e5e7;
  --border-soft:  #eeeef0;

  --success:      #2d7a4f;
  --warning:      #b8841f;
  --danger:       #8b2635;

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

  --shadow-sm:    0 1px 2px rgba(28, 36, 52, 0.05), 0 1px 3px rgba(28, 36, 52, 0.07);
  --shadow:       0 4px 14px rgba(28, 36, 52, 0.07), 0 2px 4px rgba(28, 36, 52, 0.04);
  --shadow-lg:    0 18px 48px rgba(28, 36, 52, 0.10), 0 6px 14px rgba(28, 36, 52, 0.06);

  --container:    1200px;
}

/* ------- Layout helpers ------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 20px; }
.section { padding: 72px 0; }
.section-tight { padding: 48px 0; }
.section-alt { background: var(--bg-soft); }
.section-primary { background: var(--primary-50); }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 8px; } .gap-3 { gap: 12px; } .gap-4 { gap: 16px; }

@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 56px 0; }
}

/* ------- Typography helpers ------- */
.eyebrow {
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
h1 { font-size: clamp(32px, 5vw, 52px); font-weight: 700; letter-spacing: -0.02em; }
h2 { font-size: clamp(26px, 3.5vw, 38px); font-weight: 700; letter-spacing: -0.02em; }
h3 { font-size: 20px; font-weight: 600; }
h4 { font-size: 16px; font-weight: 600; }
.lead { font-size: 17px; color: var(--ink-muted); line-height: 1.65; }
.muted { color: var(--ink-muted); }
.small { font-size: 13px; }
.tiny  { font-size: 12px; }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 48px; }
.section-head h2 { margin-top: 10px; margin-bottom: 12px; }
.section-head p  { color: var(--ink-muted); font-size: 16px; }

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 22px;
  font-size: 14px;
  font-weight: 600;
  border-radius: var(--radius);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, color .15s ease;
  white-space: nowrap;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary   { background: var(--accent); color: #fff; box-shadow: 0 2px 6px rgba(139, 38, 53, 0.22); }
.btn-primary:hover { background: var(--accent-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 6px 18px rgba(139, 38, 53, 0.32); }
.btn-outline   { background: #fff; color: var(--primary); border-color: #c9cad0; }
.btn-outline:hover { border-color: var(--primary); background: var(--primary-50); }
.btn-dark      { background: var(--primary); color: #fff; box-shadow: 0 2px 6px rgba(28, 36, 52, 0.18); }
.btn-dark:hover { background: var(--primary-dark); color: #fff; transform: translateY(-1px); }
.btn-ghost     { background: transparent; color: var(--primary); }
.btn-ghost:hover { background: var(--primary-light); }
.btn-white     { background: #fff; color: var(--primary); }
.btn-white:hover { background: var(--primary-light); color: var(--primary); }
.btn-danger    { background: var(--danger); color: #fff; }
.btn-danger:hover { background: var(--accent-dark); color: #fff; }
.btn-lg { padding: 15px 28px; font-size: 15px; }
.btn-sm { padding: 8px 14px; font-size: 13px; }
.btn-block { width: 100%; }

/* ------- Header ------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  -webkit-backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--border);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.site-logo { display: flex; align-items: center; gap: 10px; font-weight: 700; color: var(--primary-dark); font-size: 16px; }
.logo-mark {
  width: 34px; height: 34px; border-radius: 7px;
  background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px; letter-spacing: -.5px;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a { color: var(--ink-muted); font-size: 14px; font-weight: 500; }
.nav-links a:hover { color: var(--primary); }
.nav-cta { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; width: 40px; height: 40px; border-radius: 8px; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: var(--ink); margin: 4px auto; transition: all .2s; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav-cta .btn-primary { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column; position: absolute;
    top: 68px; left: 0; right: 0; background: #fff; padding: 20px;
    border-bottom: 1px solid var(--border); box-shadow: var(--shadow);
  }
}

/* ------- Hero ------- */
.hero {
  position: relative;
  padding: 72px 0 80px;
  background: linear-gradient(180deg, var(--primary-50) 0%, #fff 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(28, 36, 52, 0.06), transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 1; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; gap: 40px; } }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--border); padding: 7px 14px;
  border-radius: 999px; font-size: 12px; font-weight: 500; color: var(--primary-dark);
  margin-bottom: 20px;
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 3px rgba(139, 38, 53, 0.15); }
.hero h1 { margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 17px; color: var(--ink-muted); max-width: 520px; margin-bottom: 28px; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 32px; }
.hero-trust { display: flex; gap: 32px; padding-top: 24px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.hero-trust-item { min-width: 110px; }
.hero-trust-num { font-size: 24px; font-weight: 700; color: var(--primary-dark); line-height: 1; }
.hero-trust-lbl { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }

.hero-visual { position: relative; }
.hero-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-lg); border: 1px solid var(--border);
  position: relative;
}
.hero-card-head { font-size: 11px; color: var(--ink-faded); letter-spacing: 0.06em; text-transform: uppercase; margin-bottom: 6px; }
.hero-card-title { font-size: 15px; font-weight: 600; margin-bottom: 16px; }
.hero-progress-row {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 0; border-bottom: 1px solid var(--border-soft); font-size: 13px;
}
.hero-progress-row:last-child { border-bottom: none; }
.hero-check {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 12px;
  flex-shrink: 0; font-weight: 600;
}
.hero-check.pending { background: var(--border); color: var(--ink-faded); }
.hero-progress-lbl { flex: 1; color: var(--ink); }
.hero-progress-status { font-size: 11px; color: var(--primary); font-weight: 600; }
.hero-progress-status.pending { color: var(--ink-faded); }

.hero-float-card {
  position: absolute; background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 10px 14px;
  box-shadow: var(--shadow); display: flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500;
}
.hero-float-top { top: -16px; left: -14px; }
.hero-float-bottom { bottom: -16px; right: -14px; }
.hero-float-top .star { color: var(--warning); font-size: 12px; }
.hero-float-bottom .dot-green { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); }

/* ------- Service cards (home + listings) ------- */
.svc-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  display: flex; flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.svc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}
.svc-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.svc-badge {
  position: absolute; top: 14px; right: 14px;
  background: var(--primary); color: #fff;
  font-size: 10px; font-weight: 600; text-transform: uppercase;
  padding: 4px 10px; border-radius: 999px; letter-spacing: 0.04em;
}
.svc-title { font-size: 17px; font-weight: 600; margin-bottom: 8px; color: var(--ink); }
.svc-desc { font-size: 14px; color: var(--ink-muted); margin-bottom: 16px; flex: 1; line-height: 1.6; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.tag {
  font-size: 11px; padding: 3px 10px;
  background: var(--bg-soft); color: var(--ink-muted);
  border-radius: 999px; font-weight: 500;
}
.svc-link { font-size: 14px; color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 4px; }
.svc-link:hover { gap: 8px; }

/* ------- Authority strip ------- */
.auth-strip {
  margin-top: 40px; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex; align-items: center; gap: 24px;
}
.auth-strip-lbl {
  font-size: 11px; color: var(--ink-faded);
  text-transform: uppercase; letter-spacing: 0.08em;
  white-space: nowrap; font-weight: 600;
}
.auth-strip-logos {
  display: flex; flex-wrap: wrap; gap: 12px; flex: 1;
  justify-content: space-around;
}
.auth-logo {
  font-size: 13px; font-weight: 600; color: var(--ink-muted);
  padding: 6px 14px; background: var(--bg-soft);
  border-radius: var(--radius-sm);
  letter-spacing: 0.02em;
}
@media (max-width: 700px) {
  .auth-strip { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ------- Process steps ------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .steps { grid-template-columns: 1fr; } }
.step {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px; position: relative;
}
.step-num {
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; margin-bottom: 14px;
}
.step-title { font-size: 16px; font-weight: 600; margin-bottom: 6px; }
.step-desc { font-size: 13px; color: var(--ink-muted); line-height: 1.55; }

/* ------- Testimonials ------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; } }
.testi-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 24px;
  display: flex; flex-direction: column;
}
.testi-stars { color: var(--warning); font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testi-text { font-size: 15px; color: var(--ink); line-height: 1.65; margin-bottom: 20px; flex: 1; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center;
  font-weight: 600; font-size: 14px;
}
.testi-name { font-size: 14px; font-weight: 600; }
.testi-role { font-size: 12px; color: var(--ink-soft); margin-top: 2px; }

/* ------- Service detail page sections ------- */
.svc-hero {
  background: var(--primary);
  color: #fff; padding: 72px 0 88px; position: relative; overflow: hidden;
}
.svc-hero::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% 40%, rgba(139, 38, 53, 0.18), transparent 55%);
  pointer-events: none;
}
.svc-hero::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
}
.svc-hero-inner { max-width: 720px; position: relative; z-index: 1; }
.svc-hero .breadcrumbs { color: rgba(255, 255, 255, 0.70); font-size: 13px; margin-bottom: 16px; }
.svc-hero .breadcrumbs a { color: rgba(255, 255, 255, 0.88); }
.svc-hero h1 { color: #fff; margin-bottom: 16px; }
.svc-hero p  { font-size: 18px; color: rgba(255, 255, 255, 0.85); margin-bottom: 28px; max-width: 640px; }
.svc-hero-badge {
  display: inline-flex; background: rgba(139, 38, 53, 0.22);
  border: 0.5px solid rgba(139, 38, 53, 0.4);
  padding: 5px 12px; border-radius: 4px;
  font-size: 11px; font-weight: 500; margin-bottom: 18px;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: #fff;
}
.svc-hero .ctas { display: flex; gap: 12px; flex-wrap: wrap; }

/* --- Service sections (overview, eligibility, etc) --- */
.svc-section { padding: 64px 0; }
.svc-section h2 { margin-bottom: 10px; }
.svc-section-head { max-width: 680px; margin-bottom: 36px; }
.svc-section-head p { color: var(--ink-muted); }

.svc-highlights { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 24px; }
@media (max-width: 600px) { .svc-highlights { grid-template-columns: 1fr; } }
.svc-highlight {
  display: flex; gap: 12px; padding: 16px; background: var(--bg-soft);
  border-radius: var(--radius); align-items: flex-start;
}
.svc-highlight-icon {
  width: 24px; height: 24px; border-radius: 50%; background: var(--primary);
  color: #fff; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 12px;
}
.svc-highlight-text { font-size: 14px; color: var(--ink); line-height: 1.55; }

.svc-doc-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
@media (max-width: 600px) { .svc-doc-list { grid-template-columns: 1fr; } }
.svc-doc-item {
  display: flex; align-items: flex-start; gap: 10px; padding: 12px 16px;
  background: #fff; border: 1px solid var(--border); border-radius: var(--radius); font-size: 14px;
}
.svc-doc-item svg { flex-shrink: 0; color: var(--primary); margin-top: 2px; }

.svc-authorities { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
@media (max-width: 900px) { .svc-authorities { grid-template-columns: repeat(2, 1fr); } }
.svc-auth-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); padding: 16px; text-align: center;
}
.svc-auth-flag { font-size: 28px; margin-bottom: 6px; }
.svc-auth-code { font-weight: 700; color: var(--primary-dark); font-size: 13px; }
.svc-auth-name { font-size: 11px; color: var(--ink-soft); margin-top: 2px; line-height: 1.35; }

.svc-pricing { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
@media (max-width: 900px) { .svc-pricing { grid-template-columns: 1fr; } }
.price-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  display: flex; flex-direction: column;
}
.price-card.highlight {
  border: 2px solid var(--accent); position: relative;
  box-shadow: var(--shadow-lg);
}
.price-card.highlight::before {
  content: 'Most popular';
  position: absolute; top: -12px; left: 24px;
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 500; padding: 5px 14px;
  border-radius: 4px; letter-spacing: 0.10em; text-transform: uppercase;
}
.price-name { font-size: 15px; font-weight: 500; color: var(--ink-muted); margin-bottom: 8px; letter-spacing: 0.02em; }
.price-amount { font-size: 28px; font-weight: 500; color: var(--ink); margin-bottom: 20px; letter-spacing: -0.02em; }
.price-features { list-style: none; flex: 1; margin-bottom: 22px; }
.price-features li {
  display: flex; gap: 10px; padding: 8px 0;
  font-size: 14px; color: var(--ink-muted);
  border-bottom: 1px solid var(--border-soft);
}
.price-features li:last-child { border-bottom: none; }
.price-features li svg { color: var(--accent); flex-shrink: 0; margin-top: 3px; }

/* ------- FAQ accordion ------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius); margin-bottom: 10px; overflow: hidden;
}
.faq-question {
  padding: 18px 22px; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 15px; font-weight: 600; color: var(--ink); gap: 12px;
  user-select: none;
}
.faq-question::after {
  content: ''; width: 16px; height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231c2434' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: center;
  transition: transform .2s;
  flex-shrink: 0;
}
.faq-item.open .faq-question::after { transform: rotate(-180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height .3s ease;
  color: var(--ink-muted); font-size: 14px; line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 22px 20px; }

/* ------- Final CTA / banner ------- */
.cta-banner {
  background: var(--primary);
  color: #fff; padding: 48px 32px; border-radius: var(--radius-lg);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 20% 50%, rgba(139, 38, 53, 0.22), transparent 55%);
  pointer-events: none;
}
.cta-banner::before {
  content: ''; position: absolute; left: 0; top: 0; bottom: 0;
  width: 4px; background: var(--accent);
}
.cta-banner h2 { color: #fff; margin-bottom: 10px; }
.cta-banner p  { color: rgba(255, 255, 255, 0.9); margin-bottom: 24px; font-size: 16px; }
.cta-banner .ctas { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; position: relative; z-index: 1; }
.cta-banner-guarantee { font-size: 13px; color: rgba(255, 255, 255, 0.85); margin-top: 16px; }

/* ------- Forms ------- */
.form-row { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 500; color: var(--ink); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: #fff; color: var(--ink); font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none; border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(28, 36, 52, 0.10);
}
.form-textarea { resize: vertical; min-height: 96px; font-family: inherit; }
.form-help { font-size: 12px; color: var(--ink-soft); margin-top: 4px; }
.form-error { font-size: 12px; color: var(--danger); margin-top: 4px; }

.flash { padding: 12px 16px; border-radius: var(--radius); margin-bottom: 16px; font-size: 14px; }
.flash-success { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.flash-error   { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.flash-info    { background: #dbeafe; color: #1e40af; border: 1px solid #bfdbfe; }

/* ------- Lead form (inline on service pages) ------- */
.lead-form-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  max-width: 560px; margin: 0 auto; box-shadow: var(--shadow);
}
.lead-form-card h3 { margin-bottom: 4px; }
.lead-form-card .muted { margin-bottom: 20px; font-size: 14px; }
.lead-form-card .grid-2 { grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 500px) { .lead-form-card .grid-2 { grid-template-columns: 1fr; } }

/* ------- Footer ------- */
.site-footer {
  background: #1c2434; color: #cbd5e1;
  padding: 64px 0 24px; margin-top: 72px;
  border-top: 4px solid var(--accent);
}
.site-footer h4 { color: #fff; font-size: 14px; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.02em; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px; margin-bottom: 48px;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; gap: 28px; } }

.footer-about { font-size: 14px; line-height: 1.65; color: #94a3b8; margin: 12px 0 20px; max-width: 340px; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: #cbd5e1; font-size: 14px; transition: color .15s; }
.footer-links a:hover { color: #fff; }

.footer-contact { font-size: 14px; color: #cbd5e1; line-height: 1.7; }
.footer-contact a { color: #cbd5e1; }
.footer-contact a:hover { color: #fff; }

.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: 8px;
  background: rgba(255, 255, 255, 0.05); color: #cbd5e1;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s, color .15s;
}
.footer-social a:hover { background: var(--accent); color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: #64748b;
}
.footer-bottom a { color: #94a3b8; }
.footer-bottom a:hover { color: #fff; }

/* ------- Sticky action buttons (WhatsApp + phone) ------- */
.sticky-actions {
  position: fixed; right: 18px; bottom: 18px;
  display: flex; flex-direction: column; gap: 10px;
  z-index: 40;
}
.sticky-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  transition: transform .18s ease, box-shadow .18s ease;
}
.sticky-btn:hover { transform: translateY(-2px) scale(1.05); color: #fff; }
.sticky-wa { background: #25d366; }
.sticky-wa:hover { background: #1da851; }
.sticky-call { background: var(--accent); }
.sticky-call:hover { background: var(--accent-dark); }

/* ------- Breadcrumbs ------- */
.breadcrumbs {
  font-size: 13px; color: var(--ink-soft);
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
}
.breadcrumbs a { color: var(--ink-muted); }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs .sep { color: var(--ink-faded); }
.breadcrumbs .current { color: var(--ink); font-weight: 500; }

/* ------- Utility ------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0 !important; } .mt-2 { margin-top: 8px; } .mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-0 { margin-bottom: 0 !important; } .mb-2 { margin-bottom: 8px; } .mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; } .mb-8 { margin-bottom: 32px; }
.hide-mobile { display: initial; }
.show-mobile { display: none; }
@media (max-width: 640px) {
  .hide-mobile { display: none; }
  .show-mobile { display: initial; }
}

/* ------- Loading / skeleton ------- */
@keyframes shimmer {
  0% { background-position: -200px 0; }
  100% { background-position: calc(200px + 100%) 0; }
}
.skeleton {
  background: linear-gradient(90deg, var(--border-soft) 0%, #fff 50%, var(--border-soft) 100%);
  background-size: 200px 100%; animation: shimmer 1.2s infinite;
  border-radius: var(--radius);
}
