:root {
  /* Sunset Momentum DNA — Core palette */
  --bg-deep: #020203;
  --bg-base: #050506;
  --accent-start: #ea6113;
  --accent-mid: #f88f22;
  --accent-end: #fbb931;
  --accent-glow: rgba(234, 97, 19, 0.15);
  --ease-momentum: cubic-bezier(0.16, 1, 0.3, 1);

  /* Aliases for existing rules */
  --sun-deep: var(--accent-start);
  --sun-mid: var(--accent-mid);
  --sun-light: var(--accent-end);
  --sun-cream: #ffe3b3;
  --base-dark: #0a0908;
  --base-rich: #121110;
  --navy: #ede9e6;
  --amber: var(--accent-mid);

  --bg: var(--bg-base);
  --surface: #0c0c0d;
  --surface-raised: #101011;
  --text-primary: #eceae8;
  --text-secondary: #989290;
  --success: #2eb87a;
  --danger: #f87171;
  --line: rgba(234, 97, 19, 0.18);
  --radius: 14px;

  --shadow-sm: 0 4px 20px rgba(234, 97, 19, 0.08), 0 2px 8px rgba(0, 0, 0, 0.45);
  --shadow: 0 12px 40px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(234, 97, 19, 0.06);
  --shadow-accent: 0 0 0 1px rgba(234, 97, 19, 0.5), 0 4px 12px rgba(234, 97, 19, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);

  --spotlight: radial-gradient(circle at 50% 38%, rgba(251, 185, 49, 0.1) 0%, transparent 300px);

  --focus-ring: rgba(251, 185, 49, 0.9);

  /* Kill default light-UI blues in native controls (Chrome/Edge/Firefox) */
  color-scheme: dark;
  accent-color: var(--accent-start);
}

/* Keyboard focus — warm ring (skipped for typical mouse clicks via :focus-visible) */
a:focus-visible,
button:focus-visible,
textarea:focus-visible,
select:focus-visible,
input:not([type="hidden"]):focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 3px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  color-scheme: dark;
  accent-color: var(--accent-start);
  -webkit-tap-highlight-color: rgba(251, 185, 49, 0.16);
  scrollbar-color: rgba(234, 97, 19, 0.4) var(--bg-deep);
  scrollbar-width: thin;
}

::selection {
  background-color: rgba(234, 97, 19, 0.32);
  color: var(--text-primary);
}

/* Default link / visited colors (UA blue/purple); components with explicit color still win. */
a,
a:visited {
  color: inherit;
}

button,
input,
select,
textarea {
  accent-color: var(--accent-start);
  caret-color: var(--accent-mid);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text-primary);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1 0 auto; }

h1, h2, h3, h4 {
  font-family: "Poppins", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.6rem;
}

p, a, label, input, select, textarea, button, small { font-size: max(14px, 0.92rem); }

.container { width: min(1200px, 92%); margin: 0 auto; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(5, 5, 6, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(234, 97, 19, 0.12);
  transition: background 200ms var(--ease-momentum), box-shadow 200ms var(--ease-momentum);
}

.site-header.scrolled {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5), 0 0 80px var(--accent-glow);
  background: rgba(2, 2, 3, 0.92);
}

.nav-wrap {
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 700;
  transition: transform 200ms var(--ease-momentum);
}
.brand:hover { transform: scale(1.02); }
.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 1;
  position: relative;
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-mid) 50%, var(--accent-end) 100%);
  border: 1px solid rgba(251, 185, 49, 0.35);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 10px 28px -4px rgba(234, 97, 19, 0.42);
  transition: transform 200ms var(--ease-momentum), filter 200ms var(--ease-momentum);
}

.brand:hover .brand-mark {
  filter: drop-shadow(0 0 22px rgba(234, 97, 19, 0.48));
}

.brand-text {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  letter-spacing: -0.035em;
  color: var(--text-primary);
}

@supports ((-webkit-background-clip: text) and (color: transparent)) or (background-clip: text) {
  .brand-text {
    background: linear-gradient(103deg, #fff 18%, var(--sun-cream) 52%, var(--accent-end) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
}

/* Letter monogram tile (header + footer) */
.logo-monogram-letter {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 1.32rem;
  letter-spacing: -0.06em;
  color: #fff;
  text-shadow:
    0 0.035em 0 rgba(255, 255, 255, 0.22),
    0 -0.05em 0 rgba(18, 8, 4, 0.35);
}

.main-nav { display: none; gap: 1.1rem; }
.main-nav a {
  text-decoration: none;
  color: var(--text-primary);
  position: relative;
  padding-bottom: 6px;
  font-weight: 600;
  transition: color 0.2s ease;
}
.main-nav a:hover { color: var(--accent-end); }
.main-nav a.active::after,
.main-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--sun-deep), var(--sun-light));
}

.nav-toggle {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(234, 97, 19, 0.25);
  background: var(--surface-raised);
  color: var(--accent-mid);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  transition:
    border-color 200ms var(--ease-momentum),
    background 200ms var(--ease-momentum),
    color 200ms var(--ease-momentum),
    transform 200ms var(--ease-momentum);
}

.nav-toggle:hover {
  border-color: rgba(248, 143, 34, 0.42);
  background: rgba(234, 97, 19, 0.1);
  color: var(--accent-end);
}

.nav-toggle:active {
  transform: scale(0.96);
}

.nav-toggle .nav-toggle-icon {
  display: block;
}

.mobile-drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--bg-deep);
  padding: 0.4rem 4%;
}

.mobile-drawer.open { display: grid; }
.mobile-drawer a {
  text-decoration: none;
  color: rgba(236, 234, 232, 0.92);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(234, 97, 19, 0.08);
}

.btn {
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 200ms var(--ease-momentum), box-shadow 200ms var(--ease-momentum), opacity 200ms var(--ease-momentum);
}

.btn:hover { transform: scale(1.02); }
.btn:active { transform: scale(0.98); }

.btn-sm {
  padding: 0.62rem 1rem;
  background: linear-gradient(90deg, var(--accent-start) 0%, var(--accent-mid) 100%);
  color: #fff;
  border: none;
  box-shadow: var(--shadow-accent);
}
.btn-sm:hover {
  box-shadow:
    0 0 0 1px rgba(234, 97, 19, 0.65),
    0 6px 20px rgba(234, 97, 19, 0.42),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.btn-primary {
  background: linear-gradient(90deg, var(--accent-start) 0%, var(--accent-mid) 100%);
  color: #fff;
  padding: 0.88rem 1.45rem;
  box-shadow: var(--shadow-accent);
}
.btn-primary:hover {
  box-shadow:
    0 0 0 1px rgba(234, 97, 19, 0.65),
    0 8px 26px rgba(234, 97, 19, 0.45),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}
.btn-outline {
  border: 2px solid rgba(255, 227, 179, 0.95);
  color: var(--sun-cream);
  padding: 0.84rem 1.35rem;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255, 227, 179, 0.18);
  border-color: var(--sun-cream);
}
.btn.full { width: 100%; }

.btn-pulse { animation: pulseCtaSunset 4s ease-in-out infinite; }
@keyframes pulseCtaSunset {
  0%, 100% { box-shadow: 0 0 0 rgba(248, 143, 34, 0); }
  50% { box-shadow: 0 0 0 12px rgba(248, 143, 34, 0.22); }
}

.hero {
  position: relative;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 45%, #0a0908 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* Layer 3 — Sunset horizon blobs */
.sunset-blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.sunset-blob {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}

.sunset-blob--primary {
  width: min(1200px, 130vw);
  height: min(1000px, 120vh);
  top: -42%;
  left: 50%;
  transform: translateX(-50%);
  background: radial-gradient(ellipse closest-side, rgba(234, 97, 19, 0.1) 0%, transparent 68%);
  filter: blur(160px);
  opacity: 1;
  animation: sunsetBlobDrift 18s ease-in-out infinite alternate;
}

.sunset-blob--secondary {
  width: min(600px, 80vw);
  height: min(800px, 100vh);
  top: 5%;
  right: -18%;
  background: radial-gradient(ellipse closest-side, rgba(251, 185, 49, 0.05) 0%, transparent 70%);
  filter: blur(120px);
  animation: sunsetBlobDriftSide 22s ease-in-out infinite alternate-reverse;
}

.sunset-blob--bottom {
  width: min(900px, 100vw);
  height: min(500px, 60vh);
  bottom: -28%;
  left: 10%;
  background: radial-gradient(ellipse closest-side, rgba(248, 143, 34, 0.08) 0%, transparent 65%);
  filter: blur(140px);
  animation: sunsetBottomPulse 10s ease-in-out infinite;
}

@keyframes sunsetBlobDrift {
  0% { transform: translate(-50%, 0) scale(1); }
  100% { transform: translate(-48%, 3%) scale(1.05); }
}

@keyframes sunsetBlobDriftSide {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(-2.5%, 4%) scale(1.06); }
}

@keyframes sunsetBottomPulse {
  0%, 100% { opacity: 0.75; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}

@media (prefers-reduced-motion: reduce) {
  .sunset-blob--primary,
  .sunset-blob--secondary,
  .sunset-blob--bottom {
    animation: none;
  }

  .hero-gradient-mesh {
    animation: none;
  }

  .page-band__mesh {
    animation: none;
  }
}

/* Inner pages — sunset horizon ribbon below the header */
.page-band {
  position: relative;
  height: clamp(112px, 16vh, 188px);
  flex-shrink: 0;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, var(--bg-deep) 0%, var(--bg-base) 100%);
  border-bottom: 1px solid rgba(234, 97, 19, 0.1);
}

.page-band .sunset-blob--primary {
  width: min(720px, 100vw);
  height: min(420px, 52vh);
  top: -52%;
  filter: blur(100px);
  background: radial-gradient(ellipse closest-side, rgba(234, 97, 19, 0.12) 0%, transparent 68%);
}

.page-band .sunset-blob--secondary {
  width: min(400px, 62vw);
  height: min(520px, 72vh);
  top: -18%;
  right: -14%;
  filter: blur(78px);
  background: radial-gradient(ellipse closest-side, rgba(251, 185, 49, 0.07) 0%, transparent 70%);
}

.page-band .sunset-blob--bottom {
  width: min(540px, 96vw);
  height: min(300px, 42vh);
  bottom: -42%;
  left: 4%;
  filter: blur(92px);
  background: radial-gradient(ellipse closest-side, rgba(248, 143, 34, 0.1) 0%, transparent 65%);
}

.page-band__mesh {
  position: absolute;
  inset: -25% -12% -35%;
  background:
    radial-gradient(ellipse at 32% 42%, var(--accent-glow) 0%, transparent 54%),
    radial-gradient(ellipse at 74% 28%, rgba(251, 185, 49, 0.05) 0%, transparent 46%);
  mix-blend-mode: screen;
  opacity: 0.62;
  pointer-events: none;
  z-index: 0;
  animation: heroMeshDrift 20s ease-in-out infinite alternate;
}

.hero-gradient-mesh {
  position: absolute;
  inset: -35%;
  background:
    radial-gradient(ellipse at 30% 35%, var(--accent-glow) 0%, transparent 52%),
    radial-gradient(ellipse at 78% 22%, rgba(251, 185, 49, 0.06) 0%, transparent 46%);
  animation: heroMeshDrift 16s ease-in-out infinite alternate;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: screen;
  opacity: 0.85;
}

@keyframes heroMeshDrift {
  0% { transform: translate(-2%, -1%) rotate(0deg); opacity: 1; }
  100% { transform: translate(2%, 1%) rotate(2deg); opacity: 0.92; }
}

.hero-bg-shape {
  position: absolute;
  z-index: 0;
  border-radius: 50%;
  background: rgba(255, 227, 179, 0.04);
  border: 1px solid rgba(255, 227, 179, 0.06);
  animation: heroOrbFloat 12s ease-in-out infinite alternate;
}
.hero-bg-shape-a {
  width: 380px;
  height: 380px;
  top: -90px;
  right: -100px;
  animation-delay: 0s;
}
.hero-bg-shape-b {
  width: 260px;
  height: 260px;
  bottom: 24px;
  left: -70px;
  animation-delay: -4s;
}

@keyframes heroOrbFloat {
  from { transform: translate(0, 0) scale(1); }
  to { transform: translate(12px, -16px) scale(1.04); }
}

.hero-grid {
  position: relative;
  z-index: 2;
  padding: 5rem 0 3rem;
  display: grid;
  gap: 1.3rem;
}

.eyebrow {
  color: var(--accent-mid);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  margin: 0 0 0.4rem;
}

.hero .eyebrow {
  color: var(--accent-end);
}
h1 { font-size: clamp(32px, 5vw, 52px); }
.hero h1 {
  background: linear-gradient(110deg, #fff 12%, var(--sun-cream) 55%, var(--sun-light) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
h2 { font-size: clamp(26px, 3.2vw, 40px); }
.hero-subtitle { font-size: clamp(16px, 2vw, 20px); color: rgba(255, 227, 179, 0.88); max-width: 54ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.1rem; }

.hero-proof-card {
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  border-radius: 18px;
  padding: 1.35rem;
  border: 1px solid rgba(255, 227, 179, 0.22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.25);
  max-width: 340px;
  animation: proofCardFade 1s ease 0.2s both;
}
@keyframes proofCardFade {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-proof-card h3 { color: var(--sun-cream); }
.proof-label { color: var(--sun-light); font-weight: 700; }

.trust-marquee {
  background: linear-gradient(90deg, var(--sun-deep) 0%, var(--sun-mid) 45%, var(--sun-light) 100%);
  background-size: 200% 100%;
  animation: trustBarShift 14s linear infinite;
  border-top: 1px solid rgba(255, 227, 179, 0.25);
  overflow: hidden;
  white-space: nowrap;
}

@keyframes trustBarShift {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.trust-track {
  display: inline-flex;
  gap: 2rem;
  min-width: 200%;
  animation: scrollX 26s linear infinite;
  padding: 0.95rem 0;
  color: #fff;
  font-family: "Roboto Mono", monospace;
  font-weight: 600;
  text-shadow: 0 1px 2px rgba(26, 16, 13, 0.2);
}
@keyframes scrollX { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.section { padding: 4rem 0; position: relative; }

/* Inner routes: pull first content closer to page-band ribbon */
body:not([data-page="home"]) main.section {
  padding-top: 2.35rem;
}

.section.alt {
  background: linear-gradient(180deg, #080808 0%, #0a0908 48%, #070707 100%);
  box-shadow: inset 0 1px 0 rgba(234, 97, 19, 0.06);
}
.section-head { margin-bottom: 1.2rem; }

.tabs { display: flex; gap: 0.7rem; margin-bottom: 1rem; flex-wrap: wrap; }
.tab-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--text-primary);
  padding: 0.55rem 1.05rem;
  font-weight: 600;
  transition: transform 200ms var(--ease-momentum), box-shadow 200ms var(--ease-momentum),
    border-color 200ms var(--ease-momentum);
}
.tab-btn:hover { transform: translateY(-2px); border-color: rgba(248, 143, 34, 0.45); }
.tab-btn.active {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-mid));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.service-set { display: none; gap: 1rem; grid-template-columns: 1fr; }
.service-set.active { display: grid; }

.service-card,
.testimonial-card,
.contact-aside {
  position: relative;
  background: var(--surface);
  border: 1px solid rgba(234, 97, 19, 0.1);
  border-radius: var(--radius);
  padding: 1rem;
  isolation: isolate;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms var(--ease-momentum), border-color 200ms var(--ease-momentum),
    box-shadow 200ms var(--ease-momentum);
}

.service-card::before,
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--spotlight);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms var(--ease-momentum);
  z-index: 0;
}

.service-card > *,
.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(248, 143, 34, 0.38);
  box-shadow: var(--shadow), 0 0 68px rgba(234, 97, 19, 0.12);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 143, 34, 0.32);
  box-shadow: var(--shadow), 0 0 52px rgba(234, 97, 19, 0.1);
}

.service-card:hover::before,
.testimonial-card:hover::before {
  opacity: 1;
}
.service-card a { text-decoration: none; color: var(--accent-end); font-weight: 700; transition: color 200ms var(--ease-momentum); }
.service-card a:hover { color: var(--accent-mid); }

.icon-circle {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(234, 97, 19, 0.12), rgba(251, 185, 49, 0.15));
  border: 1px solid rgba(234, 97, 19, 0.15);
  margin-bottom: 0.65rem;
  transition: transform 200ms var(--ease-momentum), border-color 200ms var(--ease-momentum);
}
.service-card:hover .icon-circle {
  transform: scale(1.06) rotate(-3deg);
  border-color: rgba(248, 143, 34, 0.45);
}
.icon-circle svg {
  width: 24px;
  height: 24px;
  color: var(--accent-mid);
}
.badge {
  display: inline-block;
  margin-top: 0.5rem;
  padding: 0.32rem 0.82rem;
  border-radius: 999px;
  background: rgba(13, 138, 84, 0.12);
  color: var(--success);
  font-weight: 700;
  border: 1px solid rgba(13, 138, 84, 0.2);
}

.stats-band {
  background: linear-gradient(155deg, #2d1812 0%, var(--base-dark) 42%, var(--base-rich) 100%);
  color: #fff;
  padding: 2.65rem 0;
  position: relative;
}
.stats-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 75% 20%, rgba(248, 143, 34, 0.15) 0%, transparent 50%);
  pointer-events: none;
}

.stats-grid { display: grid; gap: 1rem; grid-template-columns: 1fr; }
.stats-band .stat-card {
  position: relative;
  z-index: 1;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(251, 185, 49, 0.35);
  color: #fff;
  text-align: center;
  backdrop-filter: blur(8px);
  transition: border-color 200ms var(--ease-momentum), transform 200ms var(--ease-momentum);
}
.stats-band .stat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 227, 179, 0.55);
}
.stat-number { font-family: "Roboto Mono", monospace; font-size: clamp(28px, 4vw, 40px); margin-bottom: 0.1rem; }

/* Process timeline — wavy path + steps */
.process-section {
  --process-line: var(--accent-mid);
  --process-eyebrow: var(--accent-mid);
  background: linear-gradient(180deg, var(--surface) 0%, var(--bg-base) 55%, var(--surface) 100%);
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(234, 97, 19, 0.08);
  border-bottom: 1px solid rgba(234, 97, 19, 0.08);
}

.process-split {
  display: grid;
  gap: 2.25rem;
  align-items: center;
}

.process-intro {
  max-width: 36rem;
}

.process-eyebrow {
  margin: 0 0 0.5rem;
  font-size: max(11px, 0.72rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--process-eyebrow);
}

.process-intro h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3.4vw, 2.15rem);
  color: var(--text-primary);
  line-height: 1.15;
}

.process-lead {
  margin: 0 0 1.25rem;
  color: var(--text-secondary);
  font-size: max(15px, 0.96rem);
  line-height: 1.65;
}

.process-visual {
  position: relative;
  min-width: 0;
}

.process-visual-glow {
  position: absolute;
  pointer-events: none;
  right: -18%;
  top: 5%;
  width: min(420px, 70%);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(248, 143, 34, 0.28) 0%, transparent 62%);
}

.process-visual-inner {
  position: relative;
  z-index: 1;
}

.process-svg {
  width: 100%;
  height: auto;
  max-height: 200px;
  display: block;
}

.process-wave-path {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  vector-effect: non-scaling-stroke;
}

.process-section.reveal.in .process-wave-path {
  stroke-dashoffset: 0;
  transition: stroke-dashoffset 1.35s cubic-bezier(0.33, 1, 0.68, 1);
}

.process-svg-node {
  opacity: 0;
}

.process-section.reveal.in .process-svg-node {
  animation: processNodeIn 0.45s ease forwards;
}

.process-section.reveal.in .process-svg-node:nth-of-type(1) { animation-delay: 0.35s; }
.process-section.reveal.in .process-svg-node:nth-of-type(2) { animation-delay: 0.68s; }
.process-section.reveal.in .process-svg-node:nth-of-type(3) { animation-delay: 0.95s; }

@keyframes processNodeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.process-steps {
  list-style: none;
  margin: 0.25rem 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem 1rem;
}

.process-step {
  position: relative;
  padding-top: 0.5rem;
}

.process-step__bg-num {
  position: absolute;
  left: -0.15rem;
  top: -1.2rem;
  z-index: 0;
  font-family: "Poppins", sans-serif;
  font-size: clamp(3.5rem, 10vw, 5.5rem);
  font-weight: 700;
  line-height: 1;
  color: rgba(234, 97, 19, 0.08);
  pointer-events: none;
  user-select: none;
}

.process-step__label {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.process-step__label strong {
  font-size: max(15px, 0.98rem);
  font-weight: 700;
  color: var(--text-primary);
}

.process-step__label span:not(.process-step__mobile-dot) {
  font-size: max(13px, 0.86rem);
  color: var(--text-secondary);
  line-height: 1.55;
}

.process-step__mobile-dot {
  display: none;
}

.process-step--1 { margin-top: 1.1rem; }
.process-step--2 { margin-top: 0.1rem; }
.process-step--3 { margin-top: -0.85rem; }

@media (prefers-reduced-motion: reduce) {
  .process-wave-path {
    stroke-dashoffset: 0 !important;
    transition: none !important;
  }

  .process-section.reveal.in .process-svg-node {
    animation: none;
    opacity: 1;
  }
}

@media (max-width: 767px) {
  .process-svg--curve {
    display: none;
  }

  .process-steps {
    grid-template-columns: 1fr;
    margin-top: 0.25rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--sun-mid);
    gap: 1.4rem;
  }

  .process-step--1,
  .process-step--2,
  .process-step--3 {
    margin-top: 0;
  }

  .process-step__bg-num {
    top: -0.5rem;
    font-size: clamp(2.75rem, 14vw, 3.5rem);
  }

  .process-step__mobile-dot {
    display: block;
    position: absolute;
    left: -1.97rem;
    top: 0.42rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--surface-raised);
    border: 3px solid var(--accent-mid);
    box-shadow: 0 0 0 2px var(--surface);
  }
}

/* Pricing band — flyer-style cards (orange cap, blush body, arrow list, pill CTA) */
.pricing-band {
  --pricing-orange: var(--accent-mid);
  --pricing-orange-deep: var(--accent-start);
  --pricing-body: var(--surface-raised);
  --pricing-body-border: rgba(234, 97, 19, 0.22);
  background: linear-gradient(180deg, #070707 0%, var(--bg-base) 40%, #080706 100%);
  padding: 3.5rem 0;
  border-top: 1px solid rgba(234, 97, 19, 0.08);
}

.pricing-band-head {
  text-align: center;
  margin-bottom: 2rem;
}

.pricing-band-head .eyebrow {
  color: var(--accent-end);
  letter-spacing: 0.12em;
}

.pricing-band-head h2 {
  font-size: clamp(1.35rem, 4vw, 2rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--pricing-orange-deep);
  margin: 0.35rem 0 0.75rem;
}

.pricing-intro {
  margin: 0 auto;
  max-width: 48rem;
  color: rgba(236, 234, 232, 0.72);
  font-size: max(14px, 0.95rem);
}

.pricing-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
  margin-top: 0;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  border-radius: 18px;
  overflow: hidden;
  background: var(--surface);
  box-shadow:
    var(--shadow-sm),
    0 0 0 1px rgba(234, 97, 19, 0.06);
  border: 1px solid rgba(234, 97, 19, 0.12);
  transition: transform 200ms var(--ease-momentum), box-shadow 200ms var(--ease-momentum);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow:
    0 20px 52px rgba(0, 0, 0, 0.5),
    0 0 68px rgba(234, 97, 19, 0.1);
}

.pricing-card--featured {
  box-shadow:
    0 20px 48px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(248, 143, 34, 0.35),
    0 0 60px rgba(234, 97, 19, 0.16);
  border-color: rgba(251, 185, 49, 0.45);
}

.pricing-card__head {
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-mid) 50%, var(--accent-end) 100%);
  color: #fff;
  text-align: center;
  padding: 1.35rem 1rem 1.25rem;
  border-radius: 18px 18px 0 0;
}

.pricing-card__head h3 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pricing-card__price {
  margin: 0;
  font-family: "Roboto Mono", monospace;
  font-size: clamp(1.25rem, 2.8vw, 1.5rem);
  font-weight: 700;
  line-height: 1.2;
}

.pricing-card__cycle {
  margin: 0.35rem 0 0;
  font-size: max(12px, 0.78rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.95;
}

.pricing-card__head--custom {
  background: linear-gradient(165deg, #3d221c 0%, var(--base-dark) 100%);
  position: relative;
}

.pricing-card__optional-tag {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.65rem;
  font-size: max(10px, 0.68rem);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
}

.pricing-card__price--custom {
  font-size: clamp(1.05rem, 2.4vw, 1.28rem);
}

.pricing-card__body {
  flex: 1 1 auto;
  background: var(--pricing-body);
  border-left: 1px solid var(--pricing-body-border);
  border-right: 1px solid var(--pricing-body-border);
  padding: 1.15rem 1rem 1.25rem;
}

.pricing-card--custom .pricing-card__body {
  background: linear-gradient(180deg, #121110 0%, var(--pricing-body) 100%);
}

.pricing-card__custom-lead {
  margin: 0 0 0.85rem;
  font-size: max(12px, 0.82rem);
  color: var(--text-secondary);
  line-height: 1.55;
  text-transform: none;
  font-weight: 500;
}

.pricing-features {
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--text-primary);
}

.pricing-features--arrows li {
  position: relative;
  padding-left: 1.35rem;
  margin-bottom: 0.55rem;
  font-size: max(11px, 0.72rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.35;
}

.pricing-features--arrows li:last-child {
  margin-bottom: 0;
}

.pricing-features--arrows li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 7px;
  border-color: transparent transparent transparent var(--pricing-orange-deep);
}

.pricing-card__foot {
  padding: 1rem 1rem 1.2rem;
  background: var(--pricing-body);
  border: 1px solid var(--pricing-body-border);
  border-top: none;
  border-radius: 0 0 18px 18px;
  display: flex;
  justify-content: center;
}

.pricing-order-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 12rem;
  padding: 0.72rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent-start), var(--accent-mid));
  color: #fff;
  font-weight: 800;
  font-size: max(12px, 0.8rem);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  box-shadow: var(--shadow-accent), 0 8px 24px rgba(234, 97, 19, 0.25);
  transition: transform 200ms var(--ease-momentum), box-shadow 200ms var(--ease-momentum);
}

.pricing-order-btn:hover {
  transform: scale(1.03);
  box-shadow:
    var(--shadow-accent),
    0 0 40px rgba(234, 97, 19, 0.35),
    0 12px 32px rgba(0, 0, 0, 0.4);
}

.pricing-order-btn--outline {
  background: transparent;
  color: var(--accent-end);
  border: 2px solid rgba(248, 143, 34, 0.55);
  box-shadow: none;
}

.pricing-order-btn--outline:hover {
  background: linear-gradient(90deg, var(--accent-start), var(--accent-mid));
  color: #fff;
  border-color: transparent;
  box-shadow: var(--shadow-accent);
}

.pricing-footnote {
  margin: 0;
  padding: 0 1rem 1.1rem;
  font-size: max(11px, 0.76rem);
  color: var(--text-secondary);
  line-height: 1.45;
  text-align: center;
  background: var(--pricing-body);
  border-left: 1px solid var(--pricing-body-border);
  border-right: 1px solid var(--pricing-body-border);
  border-bottom: 1px solid var(--pricing-body-border);
  border-radius: 0 0 18px 18px;
}

.pricing-card--custom .pricing-card__foot {
  border-radius: 0;
  border-bottom: none;
}

.pricing-card--custom .pricing-footnote {
  border-top: 1px solid var(--pricing-body-border);
}

.testimonial-rows { display: grid; gap: 0.9rem; overflow: hidden; }
.scroll-row {
  display: flex;
  gap: 0.9rem;
  animation: rowScroll 28s linear infinite;
  width: max-content;
}
.scroll-row.reverse { animation-direction: reverse; }
.testimonial-rows:hover .scroll-row { animation-play-state: paused; }
@keyframes rowScroll { from { transform: translateX(0); } to { transform: translateX(-38%); } }

.testimonial-card { min-width: min(320px, 88vw); }
.avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: inline-grid; place-items: center;
  background: linear-gradient(145deg, rgba(251, 185, 49, 0.35), rgba(234, 97, 19, 0.2));
  color: var(--sun-deep); font-weight: 700; font-family: "Poppins", sans-serif;
  border: 1px solid rgba(234, 97, 19, 0.2);
}

.contact-grid { display: grid; gap: 1rem; }
.lead-form {
  display: grid;
  gap: 0.55rem;
  color-scheme: dark;
}

.lead-form input, .lead-form select, .lead-form textarea {
  width: 100%;
  border: 1px solid rgba(234, 97, 19, 0.22);
  border-radius: 10px;
  padding: 0.72rem;
  font: inherit;
  background: var(--surface-raised);
  color: var(--text-primary);
}

.lead-form select {
  cursor: pointer;
}

.lead-form select option,
.lead-form select optgroup {
  background-color: var(--surface-raised);
  color: var(--text-primary);
}

.lead-form input::placeholder,
.lead-form textarea::placeholder {
  color: rgba(236, 234, 232, 0.42);
}

.lead-form input:-webkit-autofill,
.lead-form input:-webkit-autofill:hover {
  -webkit-text-fill-color: var(--text-primary);
  transition: background-color 9999s ease-out;
  box-shadow: 0 0 0 1000px var(--surface-raised) inset;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--sun-mid);
}

.lead-form input:focus:not(:focus-visible),
.lead-form select:focus:not(:focus-visible),
.lead-form textarea:focus:not(:focus-visible) {
  outline: none;
}

.lead-form input:focus-visible,
.lead-form select:focus-visible,
.lead-form textarea:focus-visible {
  outline: 2px solid var(--focus-ring);
  outline-offset: 2px;
  border-color: var(--sun-mid);
}
.form-message.success { color: var(--success); font-weight: 600; }
.form-message.error { color: var(--danger); font-weight: 600; }

/* —— Compact enquiry form (contact + home) —— */
.contact-form-column {
  max-width: min(26.5rem, 100%);
}

.contact-form-intro {
  margin-bottom: 1.05rem;
}

.contact-form-intro h1 {
  font-size: clamp(1.45rem, 3.8vw, 1.95rem);
  letter-spacing: -0.025em;
  margin: 0 0 0.35rem;
}

.contact-form-lede {
  margin: 0;
  font-size: max(12px, 0.8125rem);
  line-height: 1.5;
  color: var(--text-secondary);
  max-width: 36ch;
}

.contact-form-lede--inline {
  margin-top: 0.4rem;
  max-width: 42ch;
}

.lead-form--compact.lead-form {
  gap: 0;
}

.lead-form--compact .lead-form-panel {
  padding: clamp(1rem, 3vw, 1.25rem);
  border-radius: 16px;
  background: linear-gradient(165deg, rgba(22, 20, 19, 0.95) 0%, var(--surface) 72%);
  border: 1px solid rgba(234, 97, 19, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(251, 185, 49, 0.07),
    0 10px 36px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(0, 0, 0, 0.35);
}

.lead-form--compact .lead-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem 0.72rem;
  margin-bottom: 0.42rem;
}

.lead-form--compact .lead-form-field {
  display: grid;
  gap: 0.28rem;
  min-width: 0;
}

.lead-form--compact .lead-form-field label {
  font-size: max(10px, 0.655rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(236, 234, 232, 0.55);
}

.lead-form--compact input,
.lead-form--compact select,
.lead-form--compact textarea {
  padding: 0.54rem 0.72rem;
  border-radius: 11px;
  font-size: max(13px, 0.865rem);
  border: 1px solid rgba(234, 97, 19, 0.2);
  background: rgba(8, 8, 9, 0.65);
  transition: border-color 200ms var(--ease-momentum), box-shadow 200ms var(--ease-momentum),
    background 200ms var(--ease-momentum);
}

.lead-form--compact input:hover,
.lead-form--compact select:hover,
.lead-form--compact textarea:hover {
  border-color: rgba(248, 143, 34, 0.32);
  background: rgba(14, 14, 15, 0.75);
}

.lead-form--compact .lead-form-field--full {
  margin-top: 0.12rem;
  margin-bottom: 0.58rem;
}

.lead-form--compact textarea {
  resize: vertical;
  min-height: 4.5rem;
  line-height: 1.48;
}

.lead-form--compact select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='none' viewBox='0 0 14 14'%3E%3Cpath stroke='%23FBB931' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M3 5 7 9l4-4'/%3E%3C/svg%3E");
  background-position: calc(100% - 11px) 50%;
  background-size: 14px;
  background-repeat: no-repeat;
  padding-right: 2rem;
  appearance: none;
  cursor: pointer;
}

.lead-form--compact .lead-form-actions {
  margin-top: 0.1rem;
}

.lead-form--compact .btn-compact-wide {
  width: 100%;
  padding: 0.68rem 1.2rem;
  font-size: max(13px, 0.8625rem);
  letter-spacing: 0.04em;
}

.lead-form--compact .form-message {
  margin: 0.75rem 0 0;
  font-size: max(12px, 0.815rem);
  min-height: 1.25em;
}

@media (max-width: 520px) {
  .lead-form--compact .lead-form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-column {
    max-width: 100%;
  }
}

@media (min-width: 768px) {
  .lead-form--compact .lead-form-panel {
    max-width: none;
  }
}

/* Legal / policy pages — readable measure + warm links */
.legal-doc {
  max-width: 52rem;
  margin-inline: auto;
}

.legal-doc h1 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.65rem, 3.2vw, 2.2rem);
  letter-spacing: -0.02em;
}

.legal-doc p {
  margin: 0 0 1rem;
  max-width: 65ch;
  color: rgba(236, 234, 232, 0.82);
  line-height: 1.75;
}

.legal-doc a {
  color: var(--accent-end);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
  transition: color 200ms var(--ease-momentum);
}

.legal-doc a:hover {
  color: var(--accent-mid);
}

.legal-doc__back {
  margin-top: 1.85rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(234, 97, 19, 0.16);
  max-width: none;
}

.legal-doc__back a {
  font-weight: 600;
  text-decoration: none;
}

.legal-doc__back a:hover {
  text-decoration: underline;
}

iframe { width: 100%; min-height: 240px; border: 0; border-radius: var(--radius); }

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  border-radius: 999px;
  text-decoration: none;
  color: var(--text-primary);
  background: linear-gradient(150deg, rgba(22, 21, 20, 0.97) 0%, rgba(6, 6, 7, 0.99) 100%);
  border: 1px solid rgba(234, 97, 19, 0.38);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.45),
    0 10px 36px rgba(0, 0, 0, 0.5),
    0 0 56px rgba(234, 97, 19, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: transform 200ms var(--ease-momentum), box-shadow 200ms var(--ease-momentum),
    border-color 200ms var(--ease-momentum);
}

.whatsapp-float:hover {
  transform: translateY(-4px);
  border-color: rgba(248, 143, 34, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 0, 0, 0.4),
    0 16px 44px rgba(0, 0, 0, 0.55),
    0 0 72px rgba(234, 97, 19, 0.22);
}

.whatsapp-float:active {
  transform: translateY(-1px);
}

.whatsapp-float__icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(160deg, #2fe675 0%, #25d366 42%, #128c7e 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 4px 14px rgba(18, 140, 126, 0.55);
}

.whatsapp-float__icon svg {
  display: block;
}

.whatsapp-float__text {
  display: flex;
  flex-direction: column;
  gap: 0.08rem;
  padding-right: 0.1rem;
  text-align: left;
  line-height: 1.2;
}

.whatsapp-float__title {
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.whatsapp-float__sub {
  font-size: max(11px, 0.6875rem);
  font-weight: 500;
  color: rgba(236, 234, 232, 0.62);
}

@media (prefers-reduced-motion: reduce) {
  .whatsapp-float:hover,
  .whatsapp-float:active {
    transform: none;
  }
}

.site-footer {
  --footer-muted: rgba(255, 248, 242, 0.62);
  --footer-line: rgba(255, 227, 179, 0.12);
  position: relative;
  background: linear-gradient(165deg, #2c1a15 0%, var(--base-dark) 45%, #0c0706 100%);
  color: #fff;
  margin-top: auto;
}

.footer-accent {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sun-deep), var(--sun-light), var(--sun-mid), transparent);
  background-size: 200% 100%;
  animation: footerGlow 10s linear infinite;
}

@keyframes footerGlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}

.footer-shell { padding-bottom: 0; }

.footer-columns {
  display: grid;
  gap: 1.5rem 1.75rem;
  padding: 1.75rem 0 1.35rem;
  align-items: start;
}

.footer-brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  color: #fff;
  font-weight: 700;
  font-family: "Poppins", sans-serif;
  margin-bottom: 0.55rem;
}

.footer-brand-logo:hover .footer-brand-name { color: var(--amber); }

.footer-brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
  line-height: 1;
  background: linear-gradient(135deg, var(--accent-start) 0%, var(--accent-mid) 50%, var(--accent-end) 100%);
  border: 1px solid rgba(251, 185, 49, 0.4);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.footer-brand-mark .logo-monogram-letter {
  font-size: 1.05rem;
}

.footer-brand-name {
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  transition: color 0.2s ease;
}

.footer-tagline {
  margin: 0 0 0.85rem;
  color: var(--footer-muted);
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 18rem;
}

.footer-heading {
  margin: 0 0 0.55rem;
  font-family: "Inter", sans-serif;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--amber);
}

.footer-nav a {
  display: block;
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
  font-size: 0.8125rem;
  padding: 0.22rem 0;
  margin: 0;
  transition: color 0.18s ease;
}

.footer-nav a:hover { color: var(--amber); }

.footer-contact-list {
  list-style: none;
  margin: 0 0 0.55rem;
  padding: 0;
}

.footer-contact-list li + li { margin-top: 0.28rem; }

.footer-contact-link {
  display: block;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.8125rem;
  line-height: 1.45;
  transition: color 0.18s ease;
}

.footer-contact-link:hover { color: var(--amber); }

.footer-hours {
  margin: 0;
  font-size: 0.75rem;
  color: var(--footer-muted);
}

.social-row.footer-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.social-pill {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--footer-line);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.18s ease;
}

.social-pill svg { width: 14px; height: 14px; }

.social-pill:hover {
  border-color: var(--amber);
  background: rgba(245, 166, 35, 0.12);
  color: var(--amber);
  transform: translateY(-1px);
}

.footer-bar {
  border-top: 1px solid var(--footer-line);
  background: rgba(0, 0, 0, 0.2);
}

.footer-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1.25rem;
  padding: 0.7rem 0;
}

.footer-copy {
  margin: 0;
  font-size: 0.75rem;
  color: var(--footer-muted);
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.15rem;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.75rem;
  font-weight: 500;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  transition: color 0.18s ease, background 0.18s ease;
}

.footer-legal a:hover {
  color: var(--amber);
  background: rgba(255, 255, 255, 0.05);
}

.footer-legal a:focus-visible {
  background: rgba(251, 185, 49, 0.14);
  color: var(--accent-end);
  outline-offset: 2px;
}

.footer-contact-link:focus-visible {
  outline-offset: 2px;
  color: var(--amber);
}

.footer-disclaimer {
  margin: 0;
  font-size: 0.6875rem;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.42);
  flex: 1 1 100%;
}

@media (min-width: 640px) {
  .footer-disclaimer {
    flex: 0 1 auto;
    text-align: right;
    max-width: 18rem;
  }
}

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 450ms ease, transform 450ms ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

.media-placeholder {
  width: 100%;
  min-height: 160px;
  border-radius: var(--radius);
  border: 1px solid rgba(234, 97, 19, 0.1);
  background: linear-gradient(90deg, #0d0d0f 22%, rgba(234, 97, 19, 0.14) 42%, #0d0d0f 72%);
  background-size: 400% 100%;
  animation: placeholderShimmer 1.4s ease infinite;
}
@keyframes placeholderShimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

@media (min-width: 768px) {
  .main-nav { display: flex; }
  .nav-toggle, .mobile-drawer { display: none !important; }
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; align-items: center; }
  .service-set.active { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .process-split {
    grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
    gap: clamp(1.5rem, 4vw, 3rem);
    align-items: center;
  }
  .pricing-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: stretch; }
  .contact-grid { grid-template-columns: 1.2fr 1fr; }
  .footer-columns {
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.85fr) minmax(0, 1.35fr);
    gap: 1.5rem 2rem;
  }
}

@media (min-width: 1280px) {
  .service-set.active { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (prefers-reduced-motion: reduce) {
  .hero-gradient-mesh,
  .hero-bg-shape,
  .trust-marquee,
  .footer-accent,
  .btn-pulse {
    animation: none !important;
  }

  .trust-marquee {
    background: linear-gradient(90deg, var(--sun-deep) 0%, var(--sun-light) 100%);
  }

  .trust-track,
  .scroll-row {
    animation: none !important;
  }

  .hero-proof-card {
    animation: none !important;
  }
}
