/* ==========================================================================
   LA Tech Network - stylesheet
   Plain CSS version. Design tokens live in :root; everything below is grouped
   by component/section. No build step required.
   ========================================================================== */

/* ----- Design tokens ----- */
:root {
  --color-bg: #ffffff;
  --color-bg-alt: #f7f8fa;
  --color-bg-dark: #0b1220;

  --color-ink: #0f172a;
  --color-muted: #475569;
  --color-subtle: #94a3b8;
  --color-line: #e2e8f0;

  --color-accent: #1e40af;
  --color-accent-hover: #1e3a8a;
  --color-accent-light: #eff6ff;

  --color-highlight: #c2410c; /* orange - CTAs + key numbers */
  --color-highlight-hover: #9a3412;

  --color-success: #059669;
  --color-warning: #dc2626;

  --font-sans: "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;

  --radius-card: 12px;
  --radius-btn: 8px;

  --maxw: 1200px;
}

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

* {
  margin: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3,
h4 {
  letter-spacing: -0.02em;
  line-height: 1.1;
  font-weight: 600;
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 60;
  background: var(--color-accent);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-btn);
}

.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;
}

/* ----- Layout ----- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 1.5rem;
}

.section {
  padding-block: 3rem;
}
.section--alt {
  background: var(--color-bg-alt);
}
@media (min-width: 1024px) {
  .section {
    padding-block: 5rem;
  }
}

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-accent);
}
.eyebrow--light {
  color: var(--color-accent-light);
}

.section-heading {
  max-width: 42rem;
}
.section-heading h2,
.cta__inner h2,
.why-text h2 {
  font-size: clamp(1.875rem, 1.4rem + 1.6vw, 2.25rem);
  margin-top: 0.75rem;
}
.section-heading .intro,
.why-text > p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: var(--color-muted);
}

/* ----- Reveal on scroll (JS adds .is-visible) ----- */
@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transition: opacity 0.5s ease-out;
  }
  .reveal.is-visible {
    opacity: 1;
  }
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius-btn);
  font-family: inherit;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}
.btn--sm {
  height: 2.25rem;
  padding-inline: 1rem;
  font-size: 0.875rem;
}
.btn--md {
  height: 2.75rem;
  padding-inline: 1.25rem;
  font-size: 0.9375rem;
}
.btn--lg {
  height: 3rem;
  padding-inline: 1.75rem;
  font-size: 1rem;
}
.btn--primary {
  background: var(--color-highlight);
  color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
}
.btn--primary:hover {
  background: var(--color-highlight-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}
.btn--ghost {
  background: transparent;
  color: var(--color-ink);
  border-color: var(--color-line);
}
.btn--ghost:hover {
  transform: translateY(-4px);
  border-color: rgba(30, 64, 175, 0.4);
  color: var(--color-accent);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.arrow {
  width: 1rem;
  height: 1rem;
}

/* ----- Header ----- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid transparent;
  background: var(--color-bg);
  transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.site-header.scrolled {
  border-color: var(--color-line);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4rem;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}
.logo img {
  height: 2rem;
  width: auto;
}
.logo span {
  font-size: 1.125rem;
}
.nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav a {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s ease;
}
.nav a:hover {
  color: var(--color-ink);
}
.header-cta {
  display: none;
  align-items: center;
  gap: 0.75rem;
}
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted);
  transition: color 0.2s ease;
}
.header-phone:hover {
  color: var(--color-highlight);
}
.menu-toggle {
  display: inline-flex;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
  color: var(--color-ink);
}
@media (min-width: 768px) {
  .nav,
  .header-cta {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

/* Mobile drawer */
.drawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 50;
  background: rgba(15, 23, 42, 0.4);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}
.drawer {
  position: fixed;
  inset-block: 0;
  right: 0;
  z-index: 51;
  width: 80%;
  max-width: 22rem;
  background: var(--color-bg);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.25s ease;
}
body.menu-open .drawer-overlay {
  opacity: 1;
  visibility: visible;
}
body.menu-open .drawer {
  transform: translateX(0);
}
.drawer-close {
  align-self: flex-end;
  background: none;
  border: 0;
  padding: 0.25rem;
  cursor: pointer;
  color: var(--color-muted);
}
.drawer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 1rem;
}
.drawer-nav a {
  padding: 0.75rem 0.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  border-radius: var(--radius-btn);
}
.drawer-nav a:hover {
  background: var(--color-bg-alt);
}
.drawer-foot {
  margin-top: auto;
  border-top: 1px solid var(--color-line);
  padding-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.drawer-foot .header-phone {
  color: var(--color-ink);
}

/* ----- Cards ----- */
.card {
  border: 1px solid var(--color-line);
  border-radius: var(--radius-card);
  background: var(--color-bg);
  padding: 1.5rem;
}
.card--hover {
  transition: all 0.2s ease;
}
.card--hover:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
  border-color: rgba(30, 64, 175, 0.4);
}
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-card);
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.icon-badge svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ----- Hero ----- */
.hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
}
.hero .container {
  position: relative;
  z-index: 1;
  padding-block: 4rem;
}
@media (min-width: 1024px) {
  .hero .container {
    padding-block: 5rem;
  }
}
.grid-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background-image: linear-gradient(
      to right,
      color-mix(in srgb, var(--color-accent) 7%, transparent) 1px,
      transparent 1px
    ),
    linear-gradient(
      to bottom,
      color-mix(in srgb, var(--color-accent) 7%, transparent) 1px,
      transparent 1px
    );
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(
    ellipse 80% 70% at 70% 20%,
    #000 40%,
    transparent 80%
  );
  mask-image: radial-gradient(
    ellipse 80% 70% at 70% 20%,
    #000 40%,
    transparent 80%
  );
}
.hero__inner {
  max-width: 48rem;
}
.hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 1.4rem + 3.5vw, 3.75rem);
  font-weight: 700;
}
.hero__sub {
  margin-top: 1.5rem;
  max-width: 36rem;
  font-size: 1.125rem;
  color: var(--color-muted);
}
.hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ----- Stats ribbon ----- */
.stats {
  background: var(--color-bg-dark);
  color: #fff;
  padding-block: 3rem;
}
.stats__list {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 2rem 2.5rem;
  text-align: center;
}
@media (min-width: 640px) {
  .stats__list {
    gap: 2rem 3.5rem;
  }
}
.stats__value {
  display: block;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: -0.02em;
  word-spacing: -0.18em;
  color: var(--color-highlight);
}
@media (min-width: 1024px) {
  .stats__value {
    font-size: 1.875rem;
  }
}
.stats__label {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

/* ----- Generic grids ----- */
.grid {
  display: grid;
  gap: 1.5rem;
}
.mt-12 {
  margin-top: 3rem;
}
@media (min-width: 768px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 640px) {
  .grid--sm2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--lg3 {
    grid-template-columns: repeat(3, 1fr);
  }
  .grid--lg4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ----- Commitments / generic feature card ----- */
.feature h3,
.svc-card h3,
.step h3 {
  margin-top: 1.25rem;
  font-size: 1.25rem;
}
.feature p,
.svc-card p,
.step p {
  margin-top: 0.5rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

/* ----- Services grid (home) ----- */
.svc-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}
.svc-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
}
.tag {
  border-radius: 999px;
  background: var(--color-accent-light);
  color: var(--color-accent);
  padding: 0.25rem 0.75rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-accent);
}
.svc-card .link-arrow {
  margin-top: auto;
  padding-top: 1.25rem;
}
.svc-card:hover .link-arrow .arrow {
  transform: translateX(2px);
}
.link-arrow .arrow {
  transition: transform 0.2s ease;
}

/* ----- Pain points ----- */
.pain,
.lp-feature-card,
.pain-card,
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.pain__icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-btn);
  background: rgba(220, 38, 38, 0.1);
  color: var(--color-warning);
}
.pain__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.pain p {
  font-weight: 500;
}
.pain .link-arrow {
  margin-top: 0.5rem;
  font-size: 0.875rem;
}

/* ----- Process ----- */
.process {
  position: relative;
}
.process__line {
  display: none;
}
@media (min-width: 768px) {
  .process__line {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 1.5rem;
    height: 1px;
    background: var(--color-line);
  }
}
.step__num {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: var(--color-accent);
  color: #fff;
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.875rem;
}
/* ----- Platforms ----- */
.platform-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-top: 1px solid var(--color-line);
  padding-top: 1.5rem;
}
.platform-group + .platform-group {
  margin-top: 2rem;
}
.platform-group h3 {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-subtle);
}
.platform-group ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
}
.platform-group li {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--color-muted);
}
@media (min-width: 640px) {
  .platform-group {
    flex-direction: row;
    align-items: center;
  }
  .platform-group h3 {
    width: 10rem;
    flex-shrink: 0;
  }
}

/* ----- CTA band (floating panel) ----- */
.cta {
  background: var(--color-bg-alt);
  padding-block: 3rem;
}
@media (min-width: 1024px) {
  .cta {
    padding-block: 5rem;
  }
}
.cta__panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 2px solid var(--color-highlight);
  background: var(--color-bg-dark);
  color: #fff;
  text-align: center;
  padding: 4rem 1.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}
@media (min-width: 640px) {
  .cta__panel {
    padding-inline: 3rem;
  }
}
@media (min-width: 1024px) {
  .cta__panel {
    padding-block: 5rem;
  }
}
.cta__panel.grid-bg::before {
  -webkit-mask-image: none;
  mask-image: none;
  opacity: 0.5;
}
.cta__inner {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  margin-inline: auto;
}
.cta__inner p {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: rgba(255, 255, 255, 0.7);
}
.cta__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.5rem;
}
.cta__actions a.phone {
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
}
.cta__actions a.phone:hover {
  color: #fff;
}

/* ----- Footer ----- */
.site-footer {
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.7);
}
.site-footer .container {
  padding-block: 4rem;
}
.footer-grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.site-footer .logo span,
.site-footer h3 {
  color: #fff;
}
.footer-col h3 {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-talk h3 {
  margin-top: 1.5rem;
}
.footer-list {
  margin-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.footer-links {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
  font-size: 0.875rem;
}
.footer-links a:hover,
.footer-list a:hover {
  color: #fff;
}
.footer-contact {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-contact svg {
  width: 1rem;
  height: 1rem;
  color: currentColor;
}
.footer-talk .btn {
  margin-top: 1.5rem;
}
.footer-bottom {
  margin-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  font-size: 0.875rem;
}

/* ----- Page hero (inner pages) ----- */
.page-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--color-line);
  background: var(--color-bg);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  padding-block-start: 1.5rem;
  padding-block-end: 3.5rem;
}
@media (min-width: 1024px) {
  .page-hero .container {
    padding-block: 5rem;
  }
}
.page-hero__inner {
  max-width: 48rem;
}
.page-hero h1 {
  margin-top: 1rem;
  font-size: clamp(2.25rem, 1.6rem + 2.5vw, 3rem);
  font-weight: 700;
}
.page-hero__sub {
  margin-top: 1.25rem;
  max-width: 42rem;
  font-size: 1.125rem;
  color: var(--color-muted);
}

/* ----- Service full sections (services page) ----- */
.svc-head {
  scroll-margin-top: 7rem;
}
@media (min-width: 1024px) {
  .svc-head {
    scroll-margin-top: 8rem;
  }
}
.svc-head {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.svc-head .icon-badge {
  width: 4.5rem;
  height: 4.5rem;
  flex-shrink: 0;
}
.svc-head .icon-badge svg {
  width: 2.5rem;
  height: 2.5rem;
}
.svc-head h2 {
  font-size: clamp(1.875rem, 1.4rem + 1.6vw, 2.25rem);
}
.svc-tag {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-highlight);
}
.svc-tagline {
  margin-top: 1.25rem;
  max-width: 48rem;
  font-size: 1.125rem;
  color: var(--color-muted);
}
.svc-detail {
  margin-top: 2.5rem;
  display: grid;
  gap: 2.5rem 3rem;
}
@media (min-width: 1024px) {
  .svc-detail {
    grid-template-columns: repeat(2, 1fr);
  }
}
.svc-detail h3 {
  margin-bottom: 1rem;
}
.check-list {
  display: grid;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .check-list--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .check-list--2 {
    grid-template-columns: 1fr;
  }
}
@media (min-width: 1280px) {
  .check-list--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
}
.check-item svg {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  margin-top: 0.2rem;
  color: var(--color-success);
}
.steps-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.steps-list li {
  display: flex;
  gap: 1rem;
}
.steps-list .step__num {
  width: 2.25rem;
  height: 2.25rem;
  flex-shrink: 0;
  font-size: 0.75rem;
}
.steps-list h4 {
  font-weight: 600;
}
.steps-list p {
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}
.who-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.who-list .card {
  padding: 1rem;
}
.who-list h4 {
  font-weight: 600;
}
.who-list p {
  margin-top: 0.25rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

/* ----- Accordion (FAQ) ----- */
.accordion-item {
  border-bottom: 1px solid var(--color-line);
}
.accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  background: none;
  border: 0;
  text-align: left;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-ink);
  cursor: pointer;
  transition: color 0.2s ease;
}
.accordion-trigger:hover,
.accordion-trigger[aria-expanded="true"] {
  color: var(--color-accent);
}
.accordion-trigger .chevron {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  color: var(--color-muted);
  transition: transform 0.2s ease;
}
.accordion-trigger[aria-expanded="true"] .chevron {
  transform: rotate(180deg);
}
.accordion-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.25s ease;
}
.accordion-panel__inner {
  padding-bottom: 1.25rem;
  padding-right: 2rem;
  font-size: 0.9375rem;
  color: var(--color-muted);
  line-height: 1.7;
}

/* ----- About: why-choose-us + values ----- */
.split {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .split {
    grid-template-columns: repeat(2, 1fr);
  }
}
.media,
.map {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-card);
  border: 1px solid var(--color-line);
}
.media svg {
  width: 100%;
  height: 100%;
}
.prose p + p {
  margin-top: 1.25rem;
}
.prose {
  font-size: 1.125rem;
  color: var(--color-muted);
  line-height: 1.7;
  max-width: 48rem;
}
.bullets {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--color-ink);
}
.bullets svg {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-top: 0.15rem;
  color: var(--color-success);
}
/* ----- Contact ----- */
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1.3fr 1fr;
  }
}
.field {
  margin-bottom: 1.25rem;
}
.field label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-ink);
}
.field label .optional {
  color: var(--color-subtle);
  font-weight: 400;
  margin-left: 0.25rem;
}
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--color-line);
  border-radius: var(--radius-btn);
  background: var(--color-bg);
  padding: 0.625rem 0.875rem;
  font-family: inherit;
  font-size: 0.9375rem;
  color: var(--color-ink);
}
.field input,
.field select {
  height: 2.75rem;
}
.field textarea {
  min-height: 8rem;
  resize: vertical;
}
.field input::placeholder,
.field textarea::placeholder {
  color: var(--color-subtle);
}
.field [aria-invalid="true"] {
  border-color: var(--color-warning);
}
.field .error {
  margin-top: 0.375rem;
  font-size: 0.875rem;
  color: var(--color-warning);
}
.form-two {
  display: grid;
  gap: 0 1.25rem;
}
@media (min-width: 640px) {
  .form-two {
    grid-template-columns: repeat(2, 1fr);
  }
}
.honeypot {
  position: absolute;
  left: -9999px;
  width: 0;
  height: 0;
  overflow: hidden;
}
.form-foot {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
}
.form-note {
  font-size: 0.875rem;
  color: var(--color-subtle);
}
.form-success {
  border: 1px solid var(--color-line);
  background: var(--color-bg-alt);
  border-radius: var(--radius-card);
  padding: 2rem;
  text-align: center;
}
.form-success svg {
  width: 3rem;
  height: 3rem;
  margin-inline: auto;
  color: var(--color-success);
}
.form-success h3 {
  margin-top: 1rem;
  font-size: 1.25rem;
}
.form-success p {
  margin-top: 0.5rem;
  color: var(--color-muted);
}
.form-success a {
  color: var(--color-accent);
  font-weight: 500;
  text-decoration: underline;
}
[hidden] {
  display: none !important;
}

/* ----- Landing pages ----- */

/* Dark theme override for landing-*-dark.html files */
.lp-theme--dark .lp-header {
  background: var(--color-bg-dark);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
.lp-theme--dark .lp-header .logo,
.lp-theme--dark .lp-header .header-phone,
.lp-theme--dark .lp-header .header-phone svg {
  color: #fff;
}
.lp-theme--dark .lp-hero {
  background: var(--color-bg-dark);
}
.lp-theme--dark .lp-hero.grid-bg::before {
  background-image: linear-gradient(to right, rgba(255, 255, 255, 0.09) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.09) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse 60% 80% at 25% 50%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 60% 80% at 25% 50%, #000 30%, transparent 75%);
}
.lp-theme--dark .lp-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(194, 65, 12, 0.12) 0%, transparent 65%);
  pointer-events: none;
}
.lp-theme--dark .lp-hero__text h1 {
  color: #fff;
}
.lp-theme--dark .lp-hero__text p:not(.eyebrow) {
  color: var(--color-subtle);
}
.lp-theme--dark .lp-stat__label {
  color: var(--color-subtle);
}

.lp-header {
  background: var(--color-bg);
  padding-block: 1rem;
  border-bottom: 1px solid var(--color-line);
}
.lp-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.lp-header .logo,
.lp-header .header-phone,
.lp-header .header-phone svg {
  color: var(--color-ink);
}
.lp-phone-bar {
  background: var(--color-highlight);
  color: #fff;
  text-align: center;
  padding: 0.625rem;
  font-size: 1rem;
  font-weight: 700;
}
.lp-phone-bar a {
  color: #fff;
  text-decoration: none;
}
.lp-phone-bar a:hover {
  text-decoration: underline;
}
.lp-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg);
  padding-block: 3.5rem 3rem;
}
.lp-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2.25rem;
  align-items: center;
}
.lp-hero__text .eyebrow {
  color: var(--color-highlight);
  font-weight: 700;
}
.lp-hero__text h1 {
  color: var(--color-ink);
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-top: 0.75rem;
}
.lp-hero__text h1 span,
.lp-hero__text h1 em {
  color: var(--color-highlight);
}
.lp-hero__text h1 em {
  font-style: italic;
}
.lp-hero__text p:not(.eyebrow) {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 1rem;
}
.lp-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.5rem;
  margin-top: 1.5rem;
}
.lp-stat {
  text-align: left;
}
.lp-stat__value {
  display: block;
  color: var(--color-highlight);
  font-family: var(--font-mono);
  font-size: 1.4rem;
  font-weight: 700;
}
.lp-stat__label {
  display: block;
  color: var(--color-muted);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  margin-top: 0.125rem;
  text-transform: uppercase;
}
.lp-form-card {
  padding: 2rem;
}
.lp-form-card h2 {
  color: var(--color-bg-dark);
  font-size: 1.25rem;
  font-weight: 700;
}
.lp-form-card .form-sub {
  color: var(--color-muted);
  font-size: 0.875rem;
  margin-top: 0.25rem;
  margin-bottom: 1.5rem;
}
.lp-form-card .field {
  margin-bottom: 1rem;
}
.lp-form-card .btn {
  width: 100%;
  margin-top: 0.5rem;
}
.lp-form-card .form-note {
  margin-top: 0.625rem;
  text-align: center;
}
.lp-why,
.lp-pain {
  padding-block: 3.5rem;
}
.lp-why {
  background: var(--color-bg-alt);
}
.lp-pain {
  background: var(--color-bg-alt);
}
.lp-why .section-heading,
.lp-pain .section-heading {
  margin-bottom: 2.5rem;
}
.lp-card-grid {
  display: grid;
  gap: 1.25rem;
}
.lp-feature-card .icon-badge {
  flex-shrink: 0;
}
.lp-feature-card h3,
.pain-card h3 {
  color: var(--color-bg-dark);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0;
}
.lp-feature-card p,
.pain-card p {
  color: var(--color-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 0.25rem;
}
.pain-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--color-accent);
  flex-shrink: 0;
  margin-top: 0.4375rem;
}
@media (min-width: 768px) {
  .lp-hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
  .lp-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1024px) {
  .lp-card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-item .ci-icon {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-card);
  background: var(--color-accent-light);
  color: var(--color-accent);
}
.contact-item .ci-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}
.contact-item .ci-label {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-subtle);
}
.contact-item .ci-value {
  margin-top: 0.125rem;
  font-weight: 500;
  color: var(--color-ink);
}
.contact-item .ci-value a:hover {
  color: var(--color-highlight);
}
.map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ----- Icons (inline SVG sprite via <use>) ----- */
.icon {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.menu-toggle svg {
  width: 1.5rem;
  height: 1.5rem;
}
.header-phone svg {
  width: 1rem;
  height: 1rem;
}
.drawer-close svg {
  width: 1.5rem;
  height: 1.5rem;
}
.icon-sprite {
  display: none;
}
