:root {
  --font-heading: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --font-body: "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  --blue-500: #3b82f6;
  --blue-600: #2563eb;
  --blue-700: #1d4ed8;
  --blue-950: #172554;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-500: #64748b;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --white: #ffffff;
  --danger: #ef4444;
  --success: #10b981;
  --warning: #f59e0b;
  --shadow-lg: 0 28px 80px rgba(15, 23, 42, 0.14);
  --shadow-md: 0 18px 40px rgba(15, 23, 42, 0.1);
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.08);
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-3xl: 2rem;
  --section-pad: clamp(5rem, 7vw, 8rem);
  --theme: var(--blue-600);
  --theme-dark: var(--blue-700);
  --theme-soft: rgba(37, 99, 235, 0.12);
  --theme-border: rgba(37, 99, 235, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  line-height: 1.65;
  color: var(--slate-900);
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.08), transparent 28%),
    radial-gradient(circle at 100% 0, rgba(148, 163, 184, 0.08), transparent 24%),
    radial-gradient(circle at bottom right, rgba(148, 163, 184, 0.12), transparent 26%),
    var(--white);
}

body.page-theme-blue {
  --theme: #2563eb;
  --theme-dark: #1d4ed8;
  --theme-soft: rgba(37, 99, 235, 0.12);
  --theme-border: rgba(37, 99, 235, 0.18);
}

body.page-theme-purple {
  --theme: #9333ea;
  --theme-dark: #7e22ce;
  --theme-soft: rgba(147, 51, 234, 0.12);
  --theme-border: rgba(147, 51, 234, 0.18);
}

body.page-theme-orange {
  --theme: #f97316;
  --theme-dark: #ea580c;
  --theme-soft: rgba(249, 115, 22, 0.12);
  --theme-border: rgba(249, 115, 22, 0.18);
}

body.page-theme-emerald {
  --theme: #10b981;
  --theme-dark: #059669;
  --theme-soft: rgba(16, 185, 129, 0.12);
  --theme-border: rgba(16, 185, 129, 0.18);
}

img {
  display: block;
  max-width: 100%;
}

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

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

.scroll-progress {
  position: fixed;
  inset: 0 auto auto 0;
  z-index: 120;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #60a5fa, var(--theme), #1d4ed8);
  box-shadow: 0 0 18px rgba(37, 99, 235, 0.55);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 110;
  backdrop-filter: blur(18px);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(226, 232, 240, 0.85);
}

.nav-shell,
.section-shell,
.footer-shell {
  width: min(1180px, calc(100vw - 2rem));
  margin: 0 auto;
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 80px;
}

.brand {
  display: inline-flex;
  align-items: center;
  font-family: var(--font-heading);
  flex: 0 0 auto;
}

.brand-logo {
  display: block;
  width: auto;
  height: 2.85rem;
  max-width: min(280px, 62vw);
}

.brand-logo-footer {
  height: 3rem;
  max-width: 290px;
  margin-bottom: 1rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-link,
.nav-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.9rem 1.05rem;
  font-size: 0.94rem;
  font-weight: 600;
  color: var(--slate-700);
  border-radius: 999px;
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.nav-link:hover,
.nav-link.is-active,
.nav-button:hover {
  color: var(--slate-900);
  background: var(--slate-50);
  transform: translateY(-1px);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-phone {
  color: var(--white);
  background: linear-gradient(135deg, var(--theme), var(--theme-dark));
  box-shadow: 0 14px 30px color-mix(in srgb, var(--theme) 28%, transparent);
}

.nav-phone:hover {
  color: var(--white);
}

.services-dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.services-dropdown::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 1rem;
}

.dropdown-panel {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 50%;
  width: min(420px, 72vw);
  padding: 0.8rem;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: var(--shadow-md);
  transform: translate(-50%, 10px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.services-dropdown:hover .dropdown-panel,
.services-dropdown:focus-within .dropdown-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-link {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem 1rem;
  border-radius: 1rem;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.dropdown-link:hover,
.dropdown-link.is-active {
  background: var(--slate-50);
  transform: translateX(4px);
  box-shadow: inset 0 0 0 1px rgba(226, 232, 240, 0.72);
}

.dropdown-copy {
  display: grid;
  gap: 0.18rem;
}

.dropdown-copy strong {
  font-family: var(--font-heading);
}

.dropdown-icon,
.dropdown-arrow {
  display: inline-grid;
  place-items: center;
}

.dropdown-icon {
  width: 2.8rem;
  height: 2.8rem;
  border-radius: 0.95rem;
  background: color-mix(in srgb, var(--theme) 9%, white);
  color: var(--theme-dark);
}

.dropdown-arrow {
  color: var(--slate-400);
}

.dropdown-link small {
  color: var(--slate-500);
  line-height: 1.55;
}

.menu-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  border: 0;
  border-radius: 1rem;
  background: var(--slate-50);
}

.mobile-menu {
  display: none;
  padding: 0 0 1.25rem;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu-panel {
  width: min(1160px, calc(100vw - 2rem));
  margin: 0 auto;
  padding: 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.mobile-menu-panel a {
  display: block;
  padding: 0.9rem 0.35rem;
  border-bottom: 1px solid var(--slate-100);
  font-weight: 600;
}

.mobile-menu-panel a:last-child {
  border-bottom: 0;
}

.page-main {
  overflow: clip;
}

.section {
  position: relative;
  padding: var(--section-pad) 0;
}

.section.is-tight {
  padding: clamp(3rem, 5vw, 4rem) 0;
}

.section.is-slate {
  background:
    linear-gradient(180deg, rgba(248, 250, 252, 0.92), rgba(241, 245, 249, 0.96)),
    radial-gradient(circle at top right, rgba(59, 130, 246, 0.08), transparent 34%);
}

.section.is-dark {
  color: var(--white);
  background:
    radial-gradient(circle at top left, rgba(96, 165, 250, 0.2), transparent 24%),
    radial-gradient(circle at bottom right, rgba(37, 99, 235, 0.26), transparent 28%),
    linear-gradient(135deg, var(--slate-900), var(--slate-800), var(--slate-900));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 1rem;
  border: 1px solid color-mix(in srgb, var(--theme) 18%, transparent);
  border-radius: 999px;
  background: color-mix(in srgb, var(--theme) 8%, white);
  color: var(--theme-dark);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.73rem;
  font-weight: 700;
}

.eyebrow-glow {
  box-shadow:
    0 0 0 1px color-mix(in srgb, var(--theme) 12%, transparent),
    0 14px 30px color-mix(in srgb, var(--theme) 14%, transparent);
  animation: pulse-glow 2.8s ease-in-out infinite;
}

.section-head .eyebrow,
.hero-copy .eyebrow {
  margin-bottom: 0.95rem;
}

.section-head {
  max-width: 780px;
  margin-bottom: 3.2rem;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head h1,
.section-head h2,
.section-head h3,
.hero-copy h1 {
  margin: 0;
  font-family: var(--font-heading);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.section-head h1,
.hero-copy h1 {
  font-size: clamp(3.15rem, 6vw, 5rem);
  font-weight: 800;
}

.home-hero-title {
  font-size: clamp(2.2rem, 4.15vw, 3.55rem) !important;
}

.section-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  font-weight: 800;
}

.section-head p,
.hero-copy p {
  margin: 1.2rem 0 0;
  color: var(--slate-500);
  font-size: clamp(1rem, 1.45vw, 1.12rem);
  line-height: 1.8;
}

.section-head.center p {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.accent {
  color: var(--theme);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 4vw, 4rem);
  align-items: center;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 640px;
  display: grid;
  align-content: start;
}

.hero-actions,
.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.55rem;
  color: var(--slate-700);
  font-size: 0.95rem;
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.55rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(226, 232, 240, 0.88);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.06);
}

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  min-height: 58px;
  padding: 0.95rem 1.6rem;
  border: 0;
  border-radius: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: transform 240ms ease, box-shadow 240ms ease, background 240ms ease, color 240ms ease;
  overflow: hidden;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--theme), var(--theme-dark));
  box-shadow: 0 18px 34px color-mix(in srgb, var(--theme) 26%, transparent);
}

.btn-secondary {
  color: var(--slate-900);
  background: var(--white);
  border: 1px solid rgba(226, 232, 240, 0.92);
  box-shadow: var(--shadow-sm);
}

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

.btn-shimmer::after {
  content: "";
  position: absolute;
  inset: -120% auto -120% -28%;
  width: 42%;
  transform: rotate(18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: transform 600ms ease;
}

.btn-shimmer:hover::after {
  transform: translateX(220%) rotate(18deg);
}

.hero-visual,
.service-visual {
  position: relative;
}

.hero-card,
.service-card,
.contact-card,
.glass-card {
  position: relative;
  border: 1px solid rgba(226, 232, 240, 0.92);
  border-radius: var(--radius-3xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-lg);
}

.hero-card {
  padding: 1.1rem;
}

.hero-card img,
.service-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 1.4rem;
}

.floating-badge {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-md);
  animation: float-rotate 5s ease-in-out infinite;
  max-width: 220px;
}

.floating-badge strong {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.floating-badge small {
  color: var(--slate-500);
}

.floating-badge.top-right {
  top: -1rem;
  right: -1rem;
}

.floating-badge.bottom-left {
  left: -1rem;
  bottom: -1.25rem;
}

.orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(18px);
  opacity: 0.8;
  pointer-events: none;
}

.orb.blue {
  background: rgba(96, 165, 250, 0.24);
}

.orb.slate {
  background: rgba(148, 163, 184, 0.22);
}

.orb.one {
  width: 220px;
  height: 220px;
  top: 8%;
  left: -4%;
}

.orb.two {
  width: 260px;
  height: 260px;
  right: -9%;
  bottom: 12%;
}

.stats-grid,
.cards-grid,
.trust-grid,
.guarantees-grid,
.features-grid,
.testimonial-grid,
.service-grid,
.contact-options,
.footer-grid {
  display: grid;
  gap: 1.25rem;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.stat-card {
  padding: 1.5rem;
  text-align: center;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.stat-card strong {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4vw, 3rem);
  color: var(--white);
}

.stat-card span {
  color: rgba(191, 219, 254, 0.86);
  font-size: 0.95rem;
}

.problem-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.5rem;
  align-items: stretch;
}

.compare-card {
  padding: 2rem;
  border-radius: var(--radius-3xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.compare-card.is-negative {
  border-top: 6px solid #ef4444;
}

.compare-card.is-positive {
  border: 2px solid var(--theme-border);
  border-top: 6px solid var(--theme);
  box-shadow: 0 22px 48px color-mix(in srgb, var(--theme) 14%, transparent);
}

.compare-card h3,
.feature-card h3,
.service-tile h3,
.testimonial-card h3,
.step-card h3,
.guarantee-card h3,
.contact-card h3,
.footer-cta h3,
.cta-banner h3,
.faq-card summary strong {
  margin: 0;
  font-family: var(--font-heading);
}

.service-tile h3,
.feature-card h3,
.guarantee-card h3,
.testimonial-card h3,
.detail-card h3,
.included-card h3,
.process-card h3 {
  margin-top: 1rem;
}

.list {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.95rem;
}

.list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  color: var(--slate-700);
  transition: transform 180ms ease;
}

.list li:hover {
  transform: translateX(8px);
}

.list-marker {
  display: grid;
  place-items: center;
  width: 1.55rem;
  height: 1.55rem;
  border-radius: 999px;
  position: relative;
  font-size: 0;
  font-weight: 700;
  flex: 0 0 auto;
}

.list-marker::before,
.list-marker::after {
  content: "";
  position: absolute;
  border-radius: 999px;
}

.list-marker.is-danger {
  background: rgba(239, 68, 68, 0.1);
}

.list-marker.is-success {
  background: var(--theme-soft);
}

.list-marker.is-danger::before {
  width: 0.72rem;
  height: 2px;
  background: #dc2626;
}

.list-marker.is-success::before {
  width: 0.28rem;
  height: 0.58rem;
  border-right: 2px solid var(--theme-dark);
  border-bottom: 2px solid var(--theme-dark);
  transform: translate(-1px, -1px) rotate(45deg);
}

.cards-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.service-tile,
.guarantee-card,
.testimonial-card,
.trust-pill,
.feature-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 1.85rem;
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
  transition: transform 320ms ease, box-shadow 320ms ease, border-color 320ms ease;
}

.service-tile:hover,
.guarantee-card:hover,
.testimonial-card:hover,
.trust-pill:hover,
.feature-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: var(--shadow-lg);
  border-color: var(--theme-border);
}

.service-tile p,
.feature-card p,
.guarantee-card p,
.testimonial-card p,
.step-card p,
.contact-card p,
.service-copy p {
  margin: 0.85rem 0 0;
  color: var(--slate-500);
  line-height: 1.75;
}

.service-icon,
.feature-icon,
.guarantee-icon,
.trust-icon,
.contact-icon,
.step-icon,
.field-shell > span,
.textarea-shell > span,
.success-icon {
  display: inline-grid;
  place-items: center;
  width: 3.35rem;
  height: 3.35rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--theme) 80%, white), var(--theme-dark));
  color: var(--white);
  box-shadow: 0 14px 28px color-mix(in srgb, var(--theme) 20%, transparent);
  transition: transform 260ms ease;
}

.icon-svg {
  width: 1.35rem;
  height: 1.35rem;
  flex: 0 0 auto;
}

.nav-phone .icon-svg,
.mobile-cta .icon-svg,
.footer-link-icon .icon-svg {
  width: 1.05rem;
  height: 1.05rem;
}

.field-shell > span,
.textarea-shell > span {
  width: 2.85rem;
  height: 2.85rem;
  border-radius: 0.95rem;
  flex: 0 0 auto;
}

.success-icon {
  width: 5rem;
  height: 5rem;
}

.service-tile:hover .service-icon,
.feature-card:hover .feature-icon,
.guarantee-card:hover .guarantee-icon {
  transform: rotate(8deg) scale(1.08);
}

.service-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.35rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  background: color-mix(in srgb, var(--theme) 8%, white);
  border: 1px solid color-mix(in srgb, var(--theme) 16%, transparent);
  color: var(--theme-dark);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03em;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: auto;
  color: var(--theme-dark);
  font-weight: 700;
  opacity: 0.78;
  transform: translateY(0);
  transition: opacity 220ms ease, transform 220ms ease, gap 220ms ease;
}

.service-tile:hover .service-link {
  opacity: 1;
  gap: 0.7rem;
}

.cta-banner,
.footer-cta,
.callout-banner {
  position: relative;
  overflow: hidden;
  padding: 2rem;
  border-radius: var(--radius-3xl);
  background: linear-gradient(135deg, color-mix(in srgb, var(--theme) 78%, white), var(--theme-dark));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.cta-banner::before,
.footer-cta::before,
.callout-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 20%, rgba(255, 255, 255, 0.18) 40%, transparent 62%);
  transform: translateX(-110%);
  animation: shimmer 6s linear infinite;
}

.cta-banner > *,
.footer-cta > *,
.callout-banner > * {
  position: relative;
  z-index: 1;
}

.cta-banner .button-row,
.footer-cta .button-row,
.final-cta .button-row {
  margin-top: 1.2rem;
}

.section-closing {
  background:
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.1), transparent 26%),
    radial-gradient(circle at bottom right, rgba(148, 163, 184, 0.14), transparent 24%),
    linear-gradient(180deg, rgba(248, 250, 252, 0.66), rgba(255, 255, 255, 0.96));
}

.final-cta {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.8rem;
  align-items: center;
  padding: clamp(2rem, 3vw, 2.6rem);
  border-radius: var(--radius-3xl);
  border: 1px solid rgba(226, 232, 240, 0.92);
  background:
    radial-gradient(circle at top right, color-mix(in srgb, var(--theme) 14%, white), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.96));
  box-shadow: var(--shadow-lg);
}

.final-cta::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 240px;
  right: -60px;
  top: -80px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--theme) 10%, transparent);
  filter: blur(10px);
}

.final-cta > * {
  position: relative;
  z-index: 1;
}

.final-cta .section-head {
  margin-bottom: 0;
}

.final-cta .section-head p {
  color: var(--slate-600, #475569);
}

.final-cta .eyebrow {
  background: color-mix(in srgb, var(--theme) 8%, white);
}

.final-cta-actions {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.final-cta-actions .button-row {
  margin-top: 0;
}

.final-cta-note {
  max-width: 340px;
  padding: 1rem 1.05rem;
  border-radius: 1.2rem;
  border: 1px solid var(--theme-border);
  background: color-mix(in srgb, var(--theme) 7%, white);
  color: var(--slate-700);
}

.final-cta .btn-ghost {
  color: var(--theme-dark);
  border-color: var(--theme-border);
  background: rgba(255, 255, 255, 0.88);
}

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

.stars {
  color: #fbbf24;
  letter-spacing: 0.12rem;
  font-size: 1rem;
}

.testimonial-card footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--slate-100);
  color: var(--slate-500);
  font-size: 0.95rem;
}

.trust-grid {
  margin-top: 2rem;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 0.95rem;
}

.step-stack {
  display: grid;
  gap: 1rem;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1.5rem;
  padding: 2rem;
  border-radius: var(--radius-3xl);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid var(--slate-200);
  box-shadow: var(--shadow-sm);
}

.step-card:nth-child(even) {
  transform: translateX(2%);
}

.step-label {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.step-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  color: var(--theme);
}

.step-note {
  color: var(--slate-500);
  font-size: 0.95rem;
}

.guarantees-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-grid {
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2rem;
  align-items: center;
}

.service-card {
  padding: 1rem;
}

.service-features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.service-detail-grid,
.included-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.detail-card,
.included-card,
.process-card {
  padding: 2rem;
  border-radius: var(--radius-3xl);
  border: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-sm);
}

.detail-card h3,
.included-card h3,
.process-card h3 {
  margin: 1rem 0 0.75rem;
  font-family: var(--font-heading);
}

.detail-card p,
.included-card p,
.process-card p {
  color: var(--slate-500);
  line-height: 1.8;
}

.detail-list,
.process-list {
  margin: 1.1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.9rem;
}

.detail-list li,
.process-list li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  color: var(--slate-700);
}

.detail-list strong,
.process-list strong {
  display: block;
  margin-bottom: 0.12rem;
  font-family: var(--font-heading);
}

.detail-list div span,
.process-list div span {
  display: block;
  color: var(--slate-500);
  line-height: 1.72;
}

.detail-check {
  width: 1.75rem;
  height: 1.75rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--theme-soft);
  color: var(--theme-dark);
}

.detail-check .icon-svg {
  width: 0.95rem;
  height: 0.95rem;
}

.benefit-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.4rem;
}

.benefit-card {
  padding: 1.25rem 1.35rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--slate-200);
}

.benefit-card strong {
  display: block;
  margin-top: 0.85rem;
  font-family: var(--font-heading);
}

.benefit-card p {
  margin: 0.4rem 0 0;
  color: var(--slate-500);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-stack {
  display: grid;
  gap: 1rem;
}

.faq-card {
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-2xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.faq-card summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card .faq-content {
  padding: 0 1.5rem 1.4rem;
  color: var(--slate-500);
  line-height: 1.75;
}

.faq-toggle {
  width: 2rem;
  height: 2rem;
  display: grid;
  place-items: center;
  position: relative;
  border-radius: 999px;
  background: var(--theme-soft);
  color: var(--theme-dark);
  font-size: 0;
}

.faq-toggle::before,
.faq-toggle::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease;
}

.faq-toggle::before {
  width: 0.72rem;
  height: 2px;
}

.faq-toggle::after {
  width: 2px;
  height: 0.72rem;
}

.faq-card[open] .faq-toggle::after {
  transform: scaleY(0);
}

.contact-wrap {
  display: grid;
  gap: 1.5rem;
}

.quick-call {
  padding: 1rem;
  border-radius: var(--radius-3xl);
  background: linear-gradient(135deg, var(--theme), var(--theme-dark));
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.quick-call a {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.7rem;
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.08);
}

.contact-card {
  padding: clamp(1.35rem, 2vw, 2.25rem);
}

.contact-card header {
  margin-bottom: 1.3rem;
}

.contact-card header h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 1.05;
}

.contact-card header p {
  margin-top: 0.8rem;
}

.contact-card form {
  display: grid;
  gap: 0;
}

.form-section-block {
  margin-top: 1.65rem;
  padding-top: 1.45rem;
  border-top: 1px solid var(--slate-100);
}

.form-section-block:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.section-caption {
  margin: 0 0 1rem;
}

.section-caption h3 {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.section-caption p {
  margin: 0.55rem 0 0;
  color: var(--slate-500);
}

.profile-selector {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.profile-card {
  position: relative;
  display: grid;
  gap: 0.7rem;
  min-height: 164px;
  padding: 1.35rem;
  border: 1px solid var(--slate-200);
  border-radius: 1.5rem;
  background: rgba(255, 255, 255, 0.98);
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.profile-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-sm);
}

.profile-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.profile-card:has(input:checked) {
  border-color: var(--theme);
  background: color-mix(in srgb, var(--theme) 7%, white);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--theme) 12%, transparent);
}

.profile-card-icon {
  display: inline-grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1rem;
  background: linear-gradient(135deg, color-mix(in srgb, var(--theme) 75%, white), var(--theme-dark));
  color: var(--white);
  box-shadow: 0 14px 30px color-mix(in srgb, var(--theme) 18%, transparent);
}

.profile-card-icon .icon-svg {
  width: 1.2rem;
  height: 1.2rem;
}

.profile-card strong {
  font-family: var(--font-heading);
  font-size: 1.2rem;
}

.profile-card p {
  margin: 0;
  color: var(--slate-500);
  line-height: 1.7;
}

.profile-choice-step {
  padding: 1.5rem;
  border: 1px solid var(--slate-200);
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.profile-form-shell {
  display: none;
}

.profile-form-shell.is-active {
  display: grid;
  gap: 1.5rem;
}

.profile-summary {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.1rem;
  border: 1px solid var(--slate-200);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.92);
}

.profile-summary.is-active {
  display: flex;
}

.profile-summary-copy {
  display: grid;
  gap: 0.2rem;
}

.profile-summary-label {
  color: var(--slate-500);
  font-size: 0.84rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.profile-summary strong {
  font-family: var(--font-heading);
  font-size: 1.12rem;
}

.profile-panel {
  display: none;
}

.profile-panel.is-active {
  display: block;
}

.quote-progress {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
}

.quote-progress-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: center;
  padding: 0.95rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.9);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.quote-progress-item.is-active {
  border-color: var(--theme);
  background: color-mix(in srgb, var(--theme) 8%, white);
  box-shadow: 0 16px 28px color-mix(in srgb, var(--theme) 10%, transparent);
}

.quote-progress-item.is-done {
  border-color: color-mix(in srgb, var(--theme) 28%, transparent);
}

.quote-progress-index {
  width: 2rem;
  height: 2rem;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: var(--slate-100);
  color: var(--slate-700);
  font-size: 0.9rem;
  font-weight: 800;
}

.quote-progress-item.is-active .quote-progress-index,
.quote-progress-item.is-done .quote-progress-index {
  background: linear-gradient(135deg, color-mix(in srgb, var(--theme) 72%, white), var(--theme-dark));
  color: var(--white);
}

.quote-progress-copy {
  display: grid;
  gap: 0.15rem;
}

.quote-progress-copy strong {
  font-family: var(--font-heading);
  font-size: 0.98rem;
}

.quote-progress-copy small {
  color: var(--slate-500);
  line-height: 1.45;
}

.tunnel-step {
  display: none;
  padding: 1.4rem;
  border: 1px solid var(--slate-200);
  border-radius: 1.7rem;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
}

.tunnel-step.is-active {
  display: block;
}

.tunnel-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 1.4rem;
}

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

.field,
.textarea-field,
.select-field {
  display: grid;
  gap: 0.45rem;
}

.field label,
.textarea-field label,
.select-field label {
  font-size: 0.95rem;
  font-weight: 700;
}

.field-shell {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 60px;
  padding: 0 1rem 0 0.55rem;
  border: 1px solid var(--slate-200);
  border-radius: 1rem;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.field-shell:focus-within {
  border-color: var(--theme);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--theme) 14%, transparent);
  transform: translateY(-1px);
}

.field-shell input,
.field-shell select,
.textarea-shell textarea {
  width: 100%;
  border: 0;
  outline: none;
  background: transparent;
  color: var(--slate-900);
}

.textarea-shell {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  min-height: 160px;
  border: 1px solid var(--slate-200);
  border-radius: 1.2rem;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.textarea-shell:focus-within {
  border-color: var(--theme);
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--theme) 14%, transparent);
}

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

.contact-options {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.option-card {
  position: relative;
  display: grid;
  gap: 0.55rem;
  min-height: 120px;
  padding: 1rem;
  border: 1px solid var(--slate-200);
  border-radius: 1.3rem;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background 220ms ease;
}

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

.option-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.option-card:has(input:checked) {
  border-color: var(--theme);
  background: color-mix(in srgb, var(--theme) 8%, white);
  box-shadow: 0 18px 34px color-mix(in srgb, var(--theme) 12%, transparent);
}

.option-card strong {
  font-family: var(--font-heading);
}

.form-actions {
  margin-top: 1.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.micro-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem 1.4rem;
  margin-top: 1rem;
  color: var(--slate-500);
  font-size: 0.92rem;
}

.success-panel {
  display: none;
  padding: 3rem 1.5rem;
  text-align: center;
}

.success-panel.is-visible {
  display: block;
}

.success-icon {
  margin: 0 auto 1.25rem;
  border-radius: 1.75rem;
  background: linear-gradient(135deg, #22c55e, #10b981);
  box-shadow: 0 20px 44px rgba(16, 185, 129, 0.3);
  animation: float-rotate 5s ease-in-out infinite;
}

.footer {
  padding: 2rem 0 6rem;
  color: rgba(255, 255, 255, 0.88);
  background:
    radial-gradient(circle at top right, rgba(37, 99, 235, 0.18), transparent 28%),
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.16), transparent 22%),
    linear-gradient(180deg, var(--slate-900), #020617);
}

.footer-banner {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
  padding: 2.2rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 2rem;
  background:
    linear-gradient(140deg, rgba(37, 99, 235, 0.32), rgba(15, 23, 42, 0.58)),
    rgba(255, 255, 255, 0.04);
}

.eyebrow-on-dark {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.footer-banner h3 {
  margin: 1rem 0 0;
  font-size: clamp(2rem, 3vw, 2.8rem);
  line-height: 1;
}

.footer-banner p {
  margin: 1rem 0 0;
  max-width: 650px;
  color: rgba(226, 232, 240, 0.8);
}

.footer-banner-side {
  display: grid;
  gap: 1.2rem;
}

.footer-kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.footer-kpi {
  padding: 1.15rem 1.2rem;
  border-radius: 1.35rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(148, 163, 184, 0.16);
}

.footer-kpi strong {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.55rem;
  color: var(--white);
}

.footer-kpi span {
  display: block;
  margin-top: 0.35rem;
  color: rgba(226, 232, 240, 0.74);
  line-height: 1.6;
}

.footer-grid {
  grid-template-columns: 1.2fr 0.9fr 0.9fr 0.95fr;
  align-items: start;
}

.footer-panel {
  padding: 1.4rem 0;
}

.footer-panel-brand {
  padding-right: 1rem;
}

.footer-brand {
  display: block;
  margin-bottom: 1.4rem;
}

.footer-grid h4 {
  margin: 0 0 1rem;
  font-family: var(--font-heading);
  color: var(--white);
}

.footer-panel-title {
  margin-top: 1.8rem;
}

.footer-grid p,
.footer-grid a,
.footer-grid li {
  color: rgba(226, 232, 240, 0.8);
  line-height: 1.7;
}

.footer-grid li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-grid li a {
  display: inline-flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-grid ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.75rem;
}

.footer-link-icon {
  width: 1.9rem;
  height: 1.9rem;
  display: inline-grid;
  place-items: center;
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.9);
  flex: 0 0 auto;
}

.footer-meta {
  display: grid;
  gap: 0.75rem;
}

.footer-meta div {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: rgba(226, 232, 240, 0.76);
}

.footer-meta .icon-svg {
  color: #93c5fd;
}

.footer-note {
  margin-top: 1.15rem;
  padding: 1rem 1.05rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(226, 232, 240, 0.76);
  border: 1px solid rgba(148, 163, 184, 0.14);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(148, 163, 184, 0.22);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: rgba(203, 213, 225, 0.72);
  font-size: 0.92rem;
}

.mobile-cta {
  position: fixed;
  inset: auto 1rem 1rem;
  z-index: 90;
  display: none;
}

.mobile-cta a {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 1.15rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--theme), var(--theme-dark));
  box-shadow: 0 20px 38px color-mix(in srgb, var(--theme) 28%, transparent);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  filter: blur(8px);
  transition:
    opacity 900ms ease,
    transform 900ms ease,
    filter 900ms ease;
}

.reveal.from-left {
  transform: translateX(-34px);
}

.reveal.from-right {
  transform: translateX(34px);
}

.reveal.scale-in {
  transform: scale(0.9);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
  filter: none;
}

.delay-1 {
  transition-delay: 120ms;
}

.delay-2 {
  transition-delay: 220ms;
}

.delay-3 {
  transition-delay: 320ms;
}

.delay-4 {
  transition-delay: 420ms;
}

.legal-note {
  color: var(--slate-500);
  font-size: 0.92rem;
}

.legal-layout {
  display: grid;
  gap: 1.25rem;
}

.legal-card {
  padding: 2rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-3xl);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--shadow-sm);
}

.legal-card h3,
.legal-card h4 {
  margin: 0 0 0.9rem;
  font-family: var(--font-heading);
}

.legal-prose {
  display: grid;
  gap: 1rem;
  color: var(--slate-700);
}

.legal-prose p,
.legal-prose li {
  line-height: 1.8;
}

.legal-list {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.6rem;
}

.legal-meta {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.legal-meta div {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  background: var(--slate-50);
  border: 1px solid var(--slate-200);
}

.legal-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  font-family: var(--font-heading);
}

.notice-box {
  padding: 1rem 1.1rem;
  border-radius: 1rem;
  border: 1px solid var(--theme-border);
  background: color-mix(in srgb, var(--theme) 8%, white);
  color: var(--slate-700);
}

.consent-row {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
  color: var(--slate-700);
}

.consent-row input {
  margin-top: 0.2rem;
}

.inline-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}

.inline-links a {
  color: var(--theme);
  font-weight: 700;
}

@keyframes pulse-glow {
  0%,
  100% {
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--theme) 12%, transparent),
      0 14px 30px color-mix(in srgb, var(--theme) 14%, transparent);
  }
  50% {
    box-shadow:
      0 0 0 1px color-mix(in srgb, var(--theme) 18%, transparent),
      0 18px 36px color-mix(in srgb, var(--theme) 18%, transparent);
  }
}

@keyframes shimmer {
  0% {
    transform: translateX(-120%);
  }
  50%,
  100% {
    transform: translateX(160%);
  }
}

@keyframes float-rotate {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-2deg);
  }
  50% {
    transform: translate3d(0, -10px, 0) rotate(2deg);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .problem-grid,
  .service-grid,
  .footer-banner,
  .service-detail-grid,
  .included-grid,
  .final-cta {
    grid-template-columns: 1fr;
  }

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

  .cards-grid,
  .cards-grid--balanced,
  .guarantees-grid,
  .contact-options {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .stats-grid,
  .testimonial-grid,
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .step-card,
  .step-card:nth-child(even) {
    grid-template-columns: 1fr;
    transform: none;
  }

  .service-features {
    grid-template-columns: 1fr;
  }

  .benefit-strip,
  .footer-kpis,
  .quote-progress {
    grid-template-columns: 1fr;
  }

  .legal-meta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .nav-links,
  .nav-actions .nav-link {
    display: none;
  }

  .nav-actions {
    gap: 0.5rem;
  }

  .menu-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-phone {
    display: none;
  }

  .form-grid,
  .cards-grid,
  .cards-grid--balanced,
  .stats-grid,
  .testimonial-grid,
  .trust-grid,
  .guarantees-grid,
  .contact-options,
  .benefit-strip,
  .profile-selector {
    grid-template-columns: 1fr;
  }

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

  .profile-summary.is-active {
    flex-direction: column;
    align-items: stretch;
  }

  .mobile-cta {
    display: block;
  }

  .footer {
    padding-bottom: 7rem;
  }

  .section {
    padding: clamp(4rem, 9vw, 5rem) 0;
  }

  .section.is-tight {
    padding: 2.8rem 0;
  }

  .section-head {
    margin-bottom: 2.35rem;
  }

  .section-head h1,
  .hero-copy h1 {
    line-height: 1;
  }

  .hero-copy p,
  .section-head p,
  .service-copy p {
    line-height: 1.72;
  }

  .quick-call a {
    align-items: flex-start;
    padding: 1.25rem;
  }

  .floating-badge.top-right,
  .floating-badge.bottom-left {
    position: relative;
    inset: auto;
    margin-top: 1rem;
  }
}

@media (max-width: 640px) {
  .nav-shell,
  .section-shell,
  .footer-shell,
  .mobile-menu-panel {
    width: min(100vw - 1.25rem, 100%);
  }

  .nav-shell {
    position: relative;
    justify-content: center;
  }

  .menu-toggle {
    position: absolute;
    right: 0;
  }

  .hero-actions,
  .button-row {
    gap: 0.8rem;
  }

  .hero-actions .btn,
  .button-row .btn,
  .tunnel-actions .btn,
  .profile-summary .btn {
    width: 100%;
  }

  .brand-logo {
    height: 2.5rem;
    max-width: min(260px, 72vw);
  }

  .hero-proof,
  .micro-proof,
  .inline-links {
    gap: 0.7rem;
  }

  .hero-proof span,
  .micro-proof span {
    width: 100%;
    justify-content: center;
  }

  .hero-card,
  .service-card,
  .contact-card,
  .glass-card,
  .final-cta,
  .profile-choice-step,
  .tunnel-step {
    border-radius: 1.5rem;
  }

  .hero-card {
    padding: 0.8rem;
  }

  .hero-card img,
  .service-card img {
    aspect-ratio: 5 / 4;
    border-radius: 1.15rem;
  }

  .contact-card {
    padding: 1.15rem;
  }

  .profile-choice-step,
  .tunnel-step,
  .quick-call a {
    padding: 1.15rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-banner,
  .final-cta {
    padding: 1.35rem;
  }

  .footer-bottom,
  .testimonial-card footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

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