:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #64748b;
  --light: #f8fafc;
  --line: #e2e8f0;
  --dark: #0f172a;
  --dark-2: #1e293b;
  --amber: #f59e0b;
  --amber-2: #fbbf24;
  --red-soft: #fef2f2;
  --red-text: #dc2626;
  --white-10: rgba(255, 255, 255, 0.1);
  --white-6: rgba(255, 255, 255, 0.06);
  --shadow: 0 20px 45px rgba(15, 23, 42, 0.08);
  --radius: 20px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin: 0 auto;
}

.narrow {
  width: min(1000px, calc(100% - 40px));
  margin: 0 auto;
}

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

.mt-8 {
  margin-top: 2rem;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: none;
  border-bottom: 1px solid transparent;
  transition:
    background 0.2s ease,
    backdrop-filter 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

/* FORCE the scrolled state */
.site-header.scrolled {
  background: #ffffff !important;
  backdrop-filter: blur(10px) !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08) !important;
}

.nav-inner {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-icon {
  width: 20px;
  height: 20px;
  color: #fbbf24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-icon svg {
  width: 20px;
  height: 20px;
  display: block;
  stroke: currentColor;
}

.brand-text {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #ffffff;
  transition: color 0.2s ease;
}

.site-header.scrolled .brand-text {
  color: #1e3a5f !important;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-note {
  font-size: 0.92rem;
  font-weight: 600;
  color: #cbd5e1;
  transition: color 0.2s ease;
}

.site-header.scrolled .nav-note {
  color: #64748b !important;
}

.phone-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 800;
  border-radius: 14px;
  padding: 14px 22px;
  transition: 0.2s ease;
}

.desktop-phone-btn {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #ffffff;
}

.site-header.scrolled .desktop-phone-btn {
  background: #f59e0b !important;
  color: #111827 !important;
  border: 1px solid transparent !important;
}

.menu-toggle {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 1.5rem;
  color: #ffffff;
  padding: 6px;
}

.site-header.scrolled .menu-toggle {
  color: #1e3a5f !important;
}

.menu-close {
  display: none;
}

.site-header.menu-open .menu-open {
  display: none;
}

.site-header.menu-open .menu-close {
  display: inline;
}

.mobile-menu {
  display: none;
  padding: 0 20px 20px;
}

.site-header.menu-open .mobile-menu {
  display: block;
}

.mobile-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--amber);
  color: #111827;
  font-weight: 800;
  padding: 16px;
  border-radius: 16px;
  margin-top: 8px;
}

.mobile-menu-note {
  text-align: center;
  color: #94a3b8;
  font-size: 0.9rem;
  margin: 12px 0 0;
}


/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    radial-gradient(circle at 30px 30px, #fff 2px, transparent 2px),
    radial-gradient(circle at 0 0, #fff 2px, transparent 2px);
  background-size: 60px 60px;
}

.hero-fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 140px;
  background: linear-gradient(to top, rgba(15, 23, 42, 0.82), transparent);
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 64px;
  align-items: center;
  padding: 120px 0 70px;
}

.hero-pill,
.section-pill,
.section-pill-red {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 0.93rem;
  font-weight: 700;
}

.hero-pill {
  color: #fbbf24;
  border: 1px solid rgba(245, 158, 11, 0.2);
  background: rgba(245, 158, 11, 0.08);
}

.hero-title {
  color: #fff;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 22px 0 16px;
  font-weight: 800;
  max-width: 680px;
}

.hero-title span {
  display: block;
  color: var(--amber-2);
  margin-top: 4px;
}

.hero-subtitle {
  color: #e2e8f0;
  font-size: clamp(1rem, 1.9vw, 1.35rem);
  line-height: 1.35;
  max-width: 740px;
  margin: 0 0 20px;
  font-weight: 700;
}

.hero-copy {
  color: #cbd5e1;
  font-size: 1.15rem;
  max-width: 640px;
  margin: 0;
}

.hero-copy strong {
  color: #fff;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  margin-top: 28px;
}

.hero-phone-btn,
.amber-btn,
.trust-card-btn {
  background: var(--amber);
  color: #111827;
  box-shadow: 0 15px 30px rgba(245, 158, 11, 0.18);
}

.hero-small-note {
  color: #94a3b8;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.btn-icon,
.pill-icon,
.small-note-icon,
.section-pill-icon,
.badge-icon,
.footer-icon,
.label-icon,
.mobile-call-btn .btn-icon,
.sticky-call-bar .btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.btn-icon svg,
.pill-icon svg,
.small-note-icon svg,
.section-pill-icon svg,
.badge-icon svg,
.footer-icon svg,
.label-icon svg,
.mobile-call-btn .btn-icon svg,
.sticky-call-bar .btn-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
}

.trust-card {
  position: relative;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 32px;
}

.trust-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 20px;
  margin-bottom: 22px;
}

.trust-card-icon {
  width: 30px;
  height: 30px;
  color: #fbbf24;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.trust-card-icon svg {
  width: 30px;
  height: 30px;
  display: block;
  stroke: currentColor;
}

.trust-card-header h3 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
}

.trust-card-header p {
  margin: 4px 0 0;
  color: #94a3b8;
  font-size: 0.95rem;
}

.trust-points {
  display: grid;
  gap: 14px;
  margin-bottom: 24px;
}

.trust-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: #cbd5e1;
}

.dot {
  width: 10px;
  height: 10px;
  background: #fbbf24;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.12);
}

/* Generic sections */
.section {
  padding: 84px 0;
}

.section-white {
  background: #fff;
}

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

.section-dark {
  background: var(--dark);
  color: #fff;
}

.section-head {
  max-width: 760px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 700px;
}

.section-head.light p {
  color: #94a3b8;
}

.section-head.light h2 {
  color: #fff;
}

.section-pill {
  color: #b45309;
  border: 1px solid #fde68a;
  background: #fffbeb;
  margin-bottom: 24px;
}

.section-pill-red {
  color: var(--red-text);
  border: 1px solid #fecaca;
  background: var(--red-soft);
  margin-bottom: 24px;
}

.card-grid {
  display: grid;
  gap: 24px;
}

.three-col {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.two-col {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.info-card,
.service-card,
.dark-step-card,
.service-area-card,
.faq-box,
.lead-form-card {
  border-radius: 22px;
}

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 26px;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.02);
}

.info-card h3 {
  margin: 0 0 10px;
  font-size: 1.08rem;
}

.info-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.warning-card {
  transition: 0.25s ease;
}

.warning-card:hover {
  border-color: #fcd34d;
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.mini-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: #fef2f2;
  color: #dc2626;
}

.mini-icon-svg {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mini-icon-svg svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
}

.service-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, #fffbeb, #fde68a);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: #d97706;
}

.service-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
}


.service-card {
  display: block;
  background: #fff;
  border: 1px solid #f1f5f9;
  padding: 28px;
  transition: 0.25s ease;
  box-shadow: 0 1px 1px rgba(15, 23, 42, 0.02);
}

.service-card:hover {
  transform: translateY(-3px);
  border-color: #fcd34d;
  box-shadow: var(--shadow);
}

.service-icon {
  background: linear-gradient(135deg, #fffbeb, #fde68a);
}

.service-card h3 {
  margin: 0 0 10px;
  font-size: 1.12rem;
}

.service-card p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-link {
  color: #d97706;
  font-weight: 700;
  font-size: 0.95rem;
}

.center-cta {
  text-align: center;
  margin-top: 42px;
}

.center-cta p {
  margin: 0 0 18px;
  color: var(--muted);
}

.big {
  font-size: 1.08rem;
  padding-inline: 30px;
  padding-block: 18px;
}

/* Trust bar */
.trust-bar {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px;
  padding: 34px 0;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stat-icon {
  width: 52px;
  height: 52px;
  border: 1px solid #f1f5f9;
  border-radius: 14px;
  background: var(--light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 22px;
  height: 22px;
  display: block;
  stroke: currentColor;
}

.stat-value {
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}

.stat-label {
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.92rem;
}

/* How section */
.how-section {
  position: relative;
  overflow: hidden;
}

.how-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 820px;
  height: 820px;
  border-radius: 50%;
  background: rgba(245, 158, 11, 0.05);
  filter: blur(70px);
}

.dark-step-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 30px;
}

.step-top {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 24px;
}

.step-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(245, 158, 11, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fbbf24;
}

.step-icon svg {
  width: 24px;
  height: 24px;
  display: block;
  stroke: currentColor;
}

.step-number {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.1);
}

.dark-step-card h3 {
  margin: 0 0 12px;
  color: #fff;
}

.dark-step-card p {
  margin: 0;
  color: #94a3b8;
}

/* Trust statement */
.trust-statement-section {
  padding-top: 76px;
  padding-bottom: 76px;
}

.trust-badge-main {
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid #fde68a;
  background: #fffbeb;
  margin: 0 auto 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f59e0b;
}

.trust-badge-main svg {
  width: 34px;
  height: 34px;
  display: block;
  stroke: currentColor;
}

.trust-statement-copy {
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  line-height: 1.65;
  color: #1f2937;
  font-weight: 600;
  max-width: 900px;
  margin: 0 auto;
}

.badge-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 36px;
}

.badge-pill {
  background: var(--light);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  font-size: 0.95rem;
  color: #334155;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

/* Service area */
.service-area-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}

.left-title {
  margin: 0;
  font-size: clamp(2rem, 5vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
}

.left-title span {
  display: block;
  color: #d97706;
}

.left-copy {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 620px;
  margin-top: 18px;
}

.service-area-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 6px 22px rgba(15, 23, 42, 0.05);
  padding: 30px;
}

.service-area-card h3 {
  margin: 0 0 22px;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.area-grid a {
  background: var(--light);
  color: #475569;
  padding: 12px 14px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.area-icon {
  width: 16px;
  height: 16px;
  color: #f59e0b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.area-icon svg {
  width: 16px;
  height: 16px;
  display: block;
  stroke: currentColor;
}


.area-grid a:hover {
  background: #fffbeb;
  color: #b45309;
}

/* FAQ */
.faq-wrap {
  max-width: 920px;
}

.faq-box {
  background: var(--light);
  border: 1px solid #f1f5f9;
  padding: 12px 28px;
}

.faq-item {
  border-bottom: 1px solid #e5e7eb;
}

.faq-item:last-child {
  border-bottom: 0;
}

.faq-question {
  width: 100%;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 700;
  color: var(--text);
}

.faq-question span:first-child {
  padding-right: 18px;
}

.faq-icon {
  color: #94a3b8;
  font-size: 1.3rem;
  transition: transform 0.25s ease, color 0.25s ease;
}

.faq-item.open .faq-icon {
  transform: rotate(180deg);
  color: var(--amber);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.28s ease;
}

.faq-answer p {
  margin: 0;
  padding: 0 0 22px;
  color: var(--muted);
}

/* Lead form */
.lead-section {
  background: var(--light);
  border-top: 1px solid #f1f5f9;
}

.form-container {
  max-width: 760px;
}

.lead-form-card {
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.08);
  padding: 30px;
}

.lead-form-header p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.lead-form {
  margin-top: 22px;
}

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

.field {
  margin-bottom: 16px;
}

.field label {
  display: block;
  margin-bottom: 8px;
  color: #334155;
  font-weight: 700;
  font-size: 0.92rem;
}

.label-with-icon {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.field label span {
  color: inherit;
}

.field label > span:not(.label-with-icon) {
  color: #ef4444;
}

.field label em {
  color: #94a3b8;
  font-style: normal;
  font-weight: 400;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--light);
  color: var(--text);
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
  transition: 0.2s ease;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: #fbbf24;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.18);
}

.field textarea {
  resize: vertical;
  min-height: 120px;
}

.submit-btn {
  width: 100%;
  border: 0;
  background: var(--amber);
  color: #111827;
  font-weight: 800;
  padding: 18px 22px;
  border-radius: 14px;
  cursor: pointer;
  box-shadow: 0 12px 24px rgba(245, 158, 11, 0.18);
}

.form-footnote {
  text-align: center;
  color: #94a3b8;
  font-size: 0.8rem;
  margin: 14px 0 0;
}

.form-success {
  display: none;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 20px;
  padding: 32px;
  text-align: center;
}

.form-success.show {
  display: block;
}

.success-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: #22c55e;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.success-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  stroke: currentColor;
}

.form-success h3 {
  margin: 0 0 10px;
}

.form-success p {
  margin: 0;
  color: var(--muted);
}

/* Footer */
.site-footer {
  background: var(--dark);
  color: #fff;
  border-top: 1px solid #1e293b;
}

.footer-cta-band {
  background: linear-gradient(90deg, var(--amber), var(--amber-2));
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 44px 0;
}

.footer-cta-inner h3 {
  color: #111827;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.05;
  margin: 0;
}

.footer-cta-inner p {
  color: rgba(17, 24, 39, 0.85);
  margin: 8px 0 0;
  font-size: 1.08rem;
}

.footer-big-call {
  background: #111827;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
  padding: 20px 32px;
  border-radius: 16px;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-main {
  padding: 56px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 1fr 1fr 0.8fr;
  gap: 32px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.25rem;
  font-weight: 800;
}

.footer-copy {
  color: #94a3b8;
  font-size: 0.95rem;
  max-width: 280px;
  margin: 14px 0 0;
}

.site-footer h4 {
  margin: 0 0 18px;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 10px;
  font-size: 0.92rem;
}

.footer-links a,
.footer-links span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a,
.footer-links span {
  color: #94a3b8;
}

.footer-links a:hover {
  color: var(--amber-2);
}

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 42px;
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #64748b;
  font-size: 0.85rem;
}

/* Sticky call bar */
.sticky-call-bar {
  display: none;
  position: fixed;
  inset: auto 0 0 0;
  z-index: 1100;
  background: var(--amber);
  color: #fff;
  font-weight: 800;
  text-align: center;
  padding: 16px 20px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.16);
  align-items: center;
  justify-content: center;
  gap: 10px;
}

/* Responsive */
@media (max-width: 1100px) {
  .hero-grid,
  .service-area-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-right {
    display: none;
  }

  .footer-copy {
    max-width: none;
  }
}

@media (max-width: 900px) {
  .three-col,
  .two-col,
  .stats-grid,
  .form-grid {
    grid-template-columns: 1fr 1fr;
  }

  .footer-cta-inner,
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-big-call {
    white-space: normal;
  }
}

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.menu-open {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    border-bottom-color: rgba(255, 255, 255, 0.08);
  }

  .site-header.menu-open.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: #e5e7eb;
  }

  .site-header.menu-open.scrolled .mobile-menu {
    background: transparent;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid {
    padding: 110px 0 48px;
    gap: 28px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-small-note {
    padding-left: 2px;
  }

  .section {
    padding: 68px 0;
  }

  .lead-section {
    padding-bottom: 86px;
  }

  .sticky-call-bar {
    display: block;
  }
}

@media (max-width: 640px) {
  .container,
  .narrow {
    width: min(100%, calc(100% - 24px));
  }

  .brand-text {
    font-size: 1rem;
  }

  .three-col,
  .two-col,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .area-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .stat-card {
    align-items: flex-start;
    gap: 12px;
  }

  .stat-value {
    font-size: 1.25rem;
  }

  .stat-label {
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .service-area-card {
    padding: 22px;
  }

  .area-grid a {
    min-height: 52px;
    padding: 10px 12px;
    gap: 8px;
    font-size: 0.9rem;
  }

  .area-icon {
    width: 14px;
    height: 14px;
  }

  .area-icon svg {
    width: 14px;
    height: 14px;
  }

  .section-head {
    margin-bottom: 38px;
  }

  .faq-box,
  .lead-form-card,
  .trust-card,
  .service-card,
  .info-card,
  .dark-step-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .footer-main {
    padding-bottom: 100px;
  }

  .footer-big-call,
  .phone-btn,
  .submit-btn {
    width: 100%;
  }

  .footer-cta-inner {
    align-items: stretch;
  }
}
