:root {
  color-scheme: light;
  --header-h: 72px;
  --anchor-offset: calc(var(--header-h) + 18px);
  --bg: #f6f8fb;
  --surface: rgba(255, 255, 255, 0.86);
  --card: #ffffff;
  --ink: #071523;
  --muted: #516171;
  --muted-2: #6b7a88;
  --accent: #0a7cff;
  --accent-strong: #085fd0;
  --accent-soft: rgba(10, 124, 255, 0.10);
  --border: rgba(18, 38, 56, 0.10);
  --shadow-sm: 0 10px 20px rgba(7, 21, 35, 0.08);
  --shadow: 0 18px 45px rgba(7, 21, 35, 0.12);
  --radius: 22px;
  --radius-sm: 14px;
  --max: 1160px;
  --space: clamp(16px, 2vw, 28px);
  text-rendering: optimizeLegibility;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

@media (max-width: 860px) {
  :root {
    --header-h: 64px;
  }
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(900px 500px at 15% 10%, rgba(10, 124, 255, 0.16), transparent 55%),
    radial-gradient(900px 500px at 90% 15%, rgba(125, 211, 252, 0.20), transparent 55%),
    var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

:focus-visible {
  outline: 3px solid rgba(10, 124, 255, 0.55);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transform: translateY(-160%);
  z-index: 999;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--space);
}

.section {
  padding: clamp(52px, 7vw, 100px) 0;
}

/* Header / navigation */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0);
  border-bottom: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(10px);
  transition: background 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
  color: rgba(255, 255, 255, 0.92);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.78);
  border-bottom: 1px solid rgba(18, 38, 56, 0.10);
  color: #0a1a26;
  box-shadow: 0 18px 42px rgba(7, 21, 35, 0.10);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.brand-mark {
  width: 34px;
  height: 34px;
  border-radius: 11px;
  background: linear-gradient(135deg, #0a63cc, #0a7cff);
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 12px 22px rgba(10, 124, 255, 0.22);
}

.nav {
  display: none;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 10px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid transparent;
}

.site-header.is-scrolled .nav a {
  color: #0a1a26;
}

.nav .menu {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav .menu a {
  display: inline-flex;
}

.nav a:hover,
.nav a:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .nav a:hover,
.site-header.is-scrolled .nav a:focus-visible {
  border-color: rgba(10, 124, 255, 0.22);
  background: rgba(10, 124, 255, 0.07);
}

.header-actions {
  display: none;
  align-items: center;
  gap: 12px;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
}

.header-phone svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  opacity: 0.95;
}

.site-header.is-scrolled .header-phone {
  color: #0a1a26;
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(18, 38, 56, 0.14);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 14px;
  color: #111827;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 16px 30px rgba(245, 158, 11, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-cta:hover,
.header-cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 38px rgba(245, 158, 11, 0.34);
}

.nav-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  font-weight: 800;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 18px rgba(7, 21, 35, 0.10);
}

.site-header.is-scrolled .nav-toggle {
  color: #0a1a26;
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(18, 38, 56, 0.14);
}

.nav-panel {
  padding: 0 0 14px;
}

.nav-panel[hidden] {
  display: none;
}

.nav-panel a {
  display: block;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  font-weight: 800;
  color: rgba(255, 255, 255, 0.92);
}

.nav-panel a + a {
  margin-top: 10px;
}

.nav-panel-cta {
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%) !important;
  color: #111827 !important;
  border-color: rgba(255, 255, 255, 0.10) !important;
}

/* Typography */
h1, h2, h3 {
  letter-spacing: -0.02em;
}

.section h2 {
  font-size: clamp(26px, 2.6vw, 40px);
  line-height: 1.15;
  margin: 0 0 18px;
}

.section p {
  margin: 0 0 14px;
  color: var(--muted);
}

.section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.section li {
  margin: 6px 0;
}

/* Section intro (optional) */
.section-title {
  margin: 0 0 10px;
}

.section-lead {
  margin: 0 0 22px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 800;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
  min-height: 48px;
}

.btn--primary {
  color: #ffffff;
  background: var(--accent);
  box-shadow: 0 18px 32px rgba(10, 124, 255, 0.24);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  background: var(--accent-strong);
  transform: translateY(-1px);
  box-shadow: 0 22px 40px rgba(10, 124, 255, 0.28);
}

.btn--secondary {
  color: #0a1a26;
  background: rgba(255, 255, 255, 0.75);
  border-color: rgba(18, 38, 56, 0.14);
  box-shadow: 0 16px 32px rgba(7, 21, 35, 0.10);
}

.btn--secondary:hover,
.btn--secondary:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(7, 21, 35, 0.12);
  border-color: rgba(10, 124, 255, 0.22);
}

/* Hero CTA styles (lovable-like) */
.btn--cta {
  color: #111827;
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
  box-shadow: 0 20px 44px rgba(245, 158, 11, 0.30);
  border-color: rgba(255, 255, 255, 0.10);
}

.btn--cta:hover,
.btn--cta:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 24px 54px rgba(245, 158, 11, 0.36);
}

.btn--cta::after {
  content: "→";
  font-weight: 900;
  transform: translateY(-0.5px);
}

.btn--ghost {
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.10);
}

.btn--ghost::after {
  content: "→";
  font-weight: 900;
  opacity: 0.9;
  transform: translateY(-0.5px);
}

/* Hero */
.hero {
  color: #ffffff;
  background:
    radial-gradient(900px 560px at 10% 15%, rgba(10, 124, 255, 0.34), transparent 60%),
    radial-gradient(900px 560px at 90% 10%, rgba(125, 211, 252, 0.18), transparent 55%),
    linear-gradient(135deg, #06101a 0%, #0a2235 45%, #0c2f4c 100%);
  padding: calc(var(--header-h) + clamp(42px, 7vw, 86px)) 0 clamp(52px, 8vw, 92px);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.10;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='120'%20height='120'%20viewBox='0%200%20120%20120'%3E%3Cfilter%20id='n'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='.8'%20numOctaves='2'%20stitchTiles='stitch'/%3E%3C/filter%3E%3Crect%20width='120'%20height='120'%20filter='url(%23n)'%20opacity='.55'/%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 1.06;
  margin: 0 0 16px;
  text-align: center;
  position: relative;
}

.hero h1::after {
  content: "";
  display: block;
  height: 3px;
  width: min(520px, 92%);
  margin: 14px auto 0;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(245, 158, 11, 0), rgba(245, 158, 11, 0.95), rgba(245, 158, 11, 0));
  opacity: 0.95;
}

.hero-content {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.20);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 14px;
  margin: 0 auto 18px;
}

.hero-kicker-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(245, 158, 11, 0.95);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.22);
}

.hero-subtitle {
  display: grid;
  gap: 10px;
  margin: 0 0 20px;
  max-width: 74ch;
  margin-left: auto;
  margin-right: auto;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.hero-subtitle p {
  margin: 0;
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.7;
  letter-spacing: -0.01em;
  color: rgba(255, 255, 255, 0.88);
  text-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
  text-wrap: pretty;
  max-width: 64ch;
  margin-left: auto;
  margin-right: auto;
}

.hero-subtitle p:first-child {
  font-size: clamp(16px, 1.35vw, 19px);
  color: rgba(255, 255, 255, 0.92);
}

.hero-subtitle p:last-child {
  opacity: 0.95;
}

.hero-subtitle.is-split p:last-child {
  padding-top: 12px;
  margin-top: 2px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
  justify-content: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 2px 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  font-size: 14px;
  letter-spacing: -0.01em;
}

.hero-badge svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: rgba(125, 211, 252, 0.95);
}

.hero-visual {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.05) brightness(0.92);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1200px 680px at 12% 20%, rgba(10, 124, 255, 0.38), transparent 60%),
    radial-gradient(1000px 620px at 80% 10%, rgba(125, 211, 252, 0.18), transparent 60%),
    linear-gradient(180deg, rgba(6, 16, 26, 0.68) 0%, rgba(6, 16, 26, 0.82) 55%, rgba(6, 16, 26, 0.90) 100%);
}

.hero-actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 8px 0 26px;
}

.hero-metrics {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 6px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.hero-wave {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 120px;
  z-index: 2;
  pointer-events: none;
}

.hero-wave svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-metric {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  text-align: left;
  max-width: 260px;
}

.hero-metric strong {
  display: block;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.96);
}

.hero-metric span {
  display: block;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.80);
  margin-top: 4px;
}

.hero-metric + .hero-metric {
  padding-left: 18px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

/* (removed legacy .hero-float styles; hero uses .hero-metrics) */

/* Services */
.grid-2 {
  display: grid;
  gap: 22px;
  align-items: stretch;
}

.grid-2 > * {
  min-width: 0;
}

.card {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  border: 1px solid rgba(18, 38, 56, 0.10);
  box-shadow: var(--shadow);
  padding: 0;
  display: grid;
  gap: 0;
  align-content: start;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
  overflow: hidden;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 24px 60px rgba(7, 21, 35, 0.14);
  border-color: rgba(10, 124, 255, 0.18);
}

.card-body {
  padding: 16px 16px 18px;
  display: grid;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  color: var(--ink);
}

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

.card ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.card .btn {
  width: fit-content;
  margin-top: 6px;
}

.card-media {
  margin: 0;
}

.card-media img {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transform: scale(1);
  transition: transform 0.25s ease;
}

.card:hover .card-media img {
  transform: scale(1.02);
}

.media-placeholder {
  width: 100%;
  aspect-ratio: 16 / 9;
  background:
    radial-gradient(500px 260px at 20% 20%, rgba(10, 124, 255, 0.25), transparent 60%),
    radial-gradient(520px 280px at 90% 10%, rgba(125, 211, 252, 0.25), transparent 55%),
    linear-gradient(135deg, rgba(7, 21, 35, 0.06), rgba(7, 21, 35, 0.02));
}

.icon-wrap {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  background: rgba(10, 124, 255, 0.10);
  border: 1px solid rgba(10, 124, 255, 0.14);
  display: grid;
  place-items: center;
}

.icon {
  width: 28px;
  height: 28px;
  display: block;
  color: #0a63cc;
}

/* Process */
.steps {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.step {
  position: relative;
  padding: 18px 18px 18px 62px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(18, 38, 56, 0.10);
  box-shadow: var(--shadow-sm);
}

.step-num {
  position: absolute;
  left: 16px;
  top: 16px;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  background: rgba(10, 124, 255, 0.12);
  border: 1px solid rgba(10, 124, 255, 0.18);
  color: #0a63cc;
  display: grid;
  place-items: center;
  font-weight: 900;
}

.step h3 {
  margin: 0;
  font-size: 17px;
  line-height: 1.25;
  color: var(--ink);
}

/* SEO rent block */
.seo-block {
  background: rgba(255, 255, 255, 0.92);
  border-radius: var(--radius);
  border: 1px solid rgba(18, 38, 56, 0.10);
  box-shadow: var(--shadow);
  padding: clamp(20px, 3vw, 32px);
  display: grid;
  gap: 18px;
  align-items: start;
}

/* Fit pills */
.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 14px;
  padding: 0;
  list-style: none;
}

.pill-list li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10, 124, 255, 0.08);
  border: 1px solid rgba(10, 124, 255, 0.12);
  font-weight: 700;
  color: #0a3d78;
}

/* Benefits */
.benefits {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

.benefit {
  padding: 16px 16px 16px 52px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.90);
  border: 1px solid rgba(18, 38, 56, 0.10);
  box-shadow: var(--shadow-sm);
  position: relative;
}

.benefit::before {
  content: "";
  position: absolute;
  left: 16px;
  top: 18px;
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: rgba(125, 211, 252, 0.35);
  border: 1px solid rgba(10, 124, 255, 0.18);
}

.benefit h3 {
  margin: 0;
  font-size: 16px;
  color: var(--ink);
  font-weight: 800;
}

.benefit p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

/* FAQ */
.faq {
  display: grid;
  gap: 12px;
  margin-top: 14px;
}

details {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(18, 38, 56, 0.10);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  font-weight: 900;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  width: 30px;
  height: 30px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(10, 124, 255, 0.10);
  border: 1px solid rgba(10, 124, 255, 0.14);
  color: #0a63cc;
  flex-shrink: 0;
}

details[open] summary::after {
  content: "−";
}

details p {
  margin: 12px 0 0;
  color: var(--muted);
}

/* Lead form */
.final-cta {
  background:
    radial-gradient(900px 500px at 15% 20%, rgba(125, 211, 252, 0.25), transparent 55%),
    linear-gradient(135deg, #0a63cc, #0a7cff);
  color: #ffffff;
  border-radius: var(--radius);
  padding: clamp(24px, 4vw, 42px);
  display: grid;
  gap: 18px;
  box-shadow: 0 28px 70px rgba(10, 99, 204, 0.30);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.final-cta h2 {
  margin: 0 0 10px;
  color: #fff;
}

.final-cta p {
  margin: 0;
  color: rgba(255, 255, 255, 0.90);
}

.form {
  display: grid;
  gap: 12px;
}

.form .full {
  grid-column: 1 / -1;
}

.form label {
  font-weight: 800;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.92);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.20);
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  font-size: 16px;
  font-family: inherit;
  outline: none;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0);
}

.form input::placeholder,
.form textarea::placeholder {
  color: rgba(255, 255, 255, 0.70);
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: rgba(255, 255, 255, 0.40);
  box-shadow: 0 0 0 4px rgba(125, 211, 252, 0.25);
}

.form input:invalid,
.form select:invalid {
  border-color: rgba(255, 200, 200, 0.55);
}

.form textarea {
  min-height: 110px;
  resize: vertical;
}

.form .btn {
  width: 100%;
}

/* Sticky header offset for anchors */
#services, #process, #rent, #fit, #why, #faq, #lead-form {
  scroll-margin-top: var(--anchor-offset);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
  }

  .header-actions {
    display: inline-flex;
  }

  .nav-toggle,
  .nav-panel {
    display: none !important;
  }

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

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

  .seo-block {
    grid-template-columns: 1.4fr auto;
    align-items: start;
  }

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

  .final-cta {
    grid-template-columns: 1.1fr 1fr;
    align-items: center;
  }

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

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

@media (max-width: 860px) {
  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    width: min(360px, 92vw);
  }

  .hero-metrics {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-metric {
    max-width: none;
  }

  .hero-metric + .hero-metric {
    padding-left: 0;
    border-left: 0;
  }
}

