:root {
  /* Matches main horizontal padding — used to full-bleed sections without 100vw (avoids mobile horizontal scroll). */
  --main-pad-x: clamp(1rem, 4vw, 1.75rem);
  --font: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif;
  --bg: #f4f7fa;
  --bg-elevated: #ffffff;
  --text: #14191f;
  --text-secondary: #3d4654;
  --muted: #647084;
  --primary: #0ea5e9;
  --primary-hover: #0284c7;
  --primary-soft: rgba(14, 165, 233, 0.12);
  --accent-line: linear-gradient(90deg, var(--primary), #22d3ee);
  --surface: rgba(255, 255, 255, 0.72);
  --surface-solid: #ffffff;
  --border: rgba(15, 23, 42, 0.08);
  --border-strong: rgba(15, 23, 42, 0.12);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 8px 30px rgba(15, 23, 42, 0.06);
  --shadow-lg: 0 24px 60px rgba(15, 23, 42, 0.08);
  --header-h: 4.25rem;
  /* Space left above in-view targets so sticky header does not cover section titles */
  --scroll-anchor-offset: 5.5rem;
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--scroll-anchor-offset);
  overflow-x: hidden;
  max-width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image: radial-gradient(ellipse 120% 80% at 50% -20%, rgba(14, 165, 233, 0.09), transparent 50%),
    radial-gradient(ellipse 90% 60% at 100% 50%, rgba(34, 211, 238, 0.06), transparent 45%),
    linear-gradient(180deg, #f8fafc 0%, var(--bg) 38%, #eef2f7 100%),
    url("assets/pipes-colorful-flat.jpg");
  background-size: cover, cover, cover, cover;
  background-position: center, center, center, center;
  opacity: 1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: rgba(248, 250, 252, 0.82);
}

@media (min-width: 900px) {
  body::before {
    background-attachment: fixed, fixed, scroll, fixed;
  }
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 100;
  padding: 0.65rem 1.1rem;
  border-radius: var(--radius-sm);
  background: var(--text);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  transition: top 0.2s var(--ease-out);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: var(--header-h);
  padding: 0.65rem clamp(1rem, 4vw, 1.75rem);
  background: #ffffff;
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 1 auto;
  min-width: 0;
  text-align: left;
  line-height: 1.2;
  transition: opacity 0.2s ease;
}

.brand:hover {
  opacity: 0.88;
}

.brand-mark {
  flex-shrink: 0;
  line-height: 0;
}

.brand-mark img {
  display: block;
  width: 48px;
  height: auto;
}

.brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.brand-title {
  font-weight: 700;
  font-size: clamp(0.78rem, 2.1vw, 0.95rem);
  letter-spacing: -0.02em;
  color: var(--text);
  line-height: 1.15;
}

.brand-tagline {
  font-weight: 500;
  font-size: clamp(0.62rem, 1.45vw, 0.72rem);
  line-height: 1.35;
  color: var(--muted);
  max-width: 22rem;
  overflow-wrap: break-word;
}

@media (min-width: 480px) {
  .brand-tagline {
    max-width: 28rem;
  }
}

.menu-toggle {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-sm);
  background: var(--surface-solid);
  padding: 0 11px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.menu-toggle:hover {
  border-color: rgba(14, 165, 233, 0.35);
  background: #f8fafc;
}

.menu-toggle span {
  width: 100%;
  height: 2px;
  background: var(--text);
  border-radius: 1px;
}

.desktop-nav {
  display: none;
}

.desktop-nav a {
  position: relative;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.01em;
  color: var(--text-secondary);
  padding: 0.45rem 0;
  transition: color 0.2s ease;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--accent-line);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.desktop-nav a:hover {
  color: var(--text);
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.desktop-nav .nav-cta {
  padding: 0.45rem 0.95rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(14, 165, 233, 0.28);
}

.desktop-nav .nav-cta::after {
  display: none;
}

.desktop-nav .nav-cta:hover {
  color: #fff;
  filter: brightness(1.05);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  width: 100%;
  max-width: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: linear-gradient(165deg, rgba(15, 23, 42, 0.97) 0%, rgba(15, 23, 42, 0.94) 100%);
  color: #f1f5f9;
  padding: 2rem;
  box-sizing: border-box;
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu-brand-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.55rem;
  align-self: stretch;
  min-width: 0;
  max-width: min(19rem, 100%);
  margin-inline: auto;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  line-height: 1.2;
  color: inherit;
  text-decoration: none;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.mobile-menu-brand-link:hover {
  background: rgba(255, 255, 255, 0.06);
  opacity: 1;
}

.mobile-menu-brand-title {
  display: block;
  font-size: clamp(0.95rem, 3.8vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f8fafc;
  line-height: 1.2;
}

.mobile-menu-brand-sub-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
}

.mobile-menu-brand-sub {
  display: block;
  font-size: clamp(0.68rem, 2.2vw, 0.78rem);
  font-weight: 500;
  line-height: 1.4;
  color: #94a3b8;
  overflow-wrap: break-word;
}

.mobile-menu-brand-mark {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  min-width: 52px;
  min-height: 52px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.mobile-menu-brand-mark img {
  display: block;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
}

.mobile-menu nav {
  display: grid;
  gap: 0.35rem;
  text-align: center;
}

.mobile-menu nav a {
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding: 0.65rem 1.5rem;
  border-radius: var(--radius-md);
  color: #e2e8f0;
  transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu nav a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 48px;
  height: 48px;
  font-size: 1.75rem;
  line-height: 1;
  border: none;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-close:hover {
  background: rgba(255, 255, 255, 0.14);
}

main {
  flex: 1 0 auto;
  width: 100%;
  min-width: 0;
  padding: clamp(1rem, 3vw, 1.5rem) var(--main-pad-x) 3rem;
  max-width: 1200px;
  margin: 0 auto;
}

.site-footer {
  flex-shrink: 0;
  margin-top: auto;
  border-top: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
}

.site-footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.25rem clamp(1rem, 4vw, 1.75rem) 1.5rem;
  text-align: center;
}

.site-footer-inner.site-footer-grid {
  text-align: left;
  padding-bottom: 0.5rem;
}

.site-footer-copy {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.02em;
}

.hero {
  margin-top: 0.35rem;
  padding: clamp(1.75rem, 5vw, 3rem) clamp(1.25rem, 4vw, 2.75rem);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.88) 50%, rgba(241, 245, 249, 0.92) 100%);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(12px);
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 2rem);
}

.hero-copy {
  min-width: 0;
}

h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 4.5vw, 2.35rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--text);
}

.hero-subtitle {
  margin: 0 0 1rem;
  font-size: clamp(1rem, 2.4vw, 1.125rem);
  font-weight: 600;
  line-height: 1.45;
  color: var(--text-secondary);
  letter-spacing: -0.01em;
}

.hero-copy > p:not(.hero-subtitle) {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  max-width: 36rem;
}

.hero-cta {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-media {
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
  background: #0f172a;
}

.hero-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center;
}

h2 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.section > h2:first-child,
.services-panel > h2:first-child,
.portfolio-section > h2:first-child,
.company-section > h2:first-child {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
}

.section > h2:first-child::before,
.services-panel > h2:first-child::before,
.portfolio-section > h2:first-child::before,
.company-section > h2:first-child::before {
  content: "";
  width: 2.75rem;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-line);
}

.section {
  padding: clamp(2.25rem, 6vw, 3.5rem) 0;
}

.section-alt {
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.section.section-alt {
  padding: clamp(2rem, 5vw, 3rem) clamp(1.15rem, 4vw, 2.25rem);
}

.services-panel {
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.92) 0%, rgba(248, 250, 252, 0.85) 100%);
  border: 1px solid rgba(14, 165, 233, 0.1);
  box-shadow: var(--shadow-lg), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.35rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: none;
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s ease, background 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, #0284c7 100%);
  color: #fff;
  box-shadow: 0 4px 14px rgba(14, 165, 233, 0.35);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(14, 165, 233, 0.4);
}

.btn-ghost {
  border: 1px solid var(--border-strong);
  background: var(--surface-solid);
  color: var(--text-secondary);
}

.btn-ghost:hover {
  border-color: rgba(14, 165, 233, 0.35);
  color: var(--text);
  background: #f8fafc;
}

.portfolio-section h2 {
  margin-bottom: 0.35rem;
}

.portfolio-placeholder {
  margin: 0;
  padding: 1.5rem 1.35rem;
  border: 1px dashed rgba(14, 165, 233, 0.35);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.55);
}

.portfolio-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.company-section h2 {
  margin-bottom: 0.35rem;
}

.company-section > .section-intro {
  margin-bottom: 1.5rem;
}

.company-intro {
  margin: 0 0 1.5rem;
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 40rem;
  line-height: 1.6;
}

.company-layout {
  display: grid;
  gap: 1.75rem;
  min-width: 0;
}

.company-subheading {
  margin: 1.5rem 0 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.company-col-main > .company-subheading:first-of-type {
  margin-top: 0;
}

.card-grid {
  display: grid;
  gap: 0.75rem;
}

.card-grid--company {
  margin-bottom: 0.25rem;
}

.card {
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  border-color: rgba(14, 165, 233, 0.2);
  box-shadow: var(--shadow-md);
}

.card h3 {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.card p {
  margin: 0.45rem 0 0;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.45;
}

.card-prose p {
  margin: 0;
  font-weight: 400;
  color: var(--text-secondary);
  line-height: 1.6;
  font-size: 0.95rem;
}

.contact-link {
  color: var(--primary-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  font-weight: 500;
}

.contact-link:hover {
  color: var(--primary);
}

.contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background: var(--surface-solid);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.contact-list li {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  display: grid;
  gap: 0.2rem;
}

.contact-list li:last-child {
  border-bottom: none;
}

.contact-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.contact-phone-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem;
}

.contact-wa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.contact-wa-btn:hover {
  transform: scale(1.06);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.4);
}

.contact-wa-svg {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
}

.partner-placeholder {
  margin: 0;
  padding: 1.2rem 1.15rem;
  border: 1px dashed rgba(100, 116, 132, 0.45);
  border-radius: var(--radius-md);
  background: rgba(248, 250, 252, 0.9);
}

.partner-placeholder p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.map-wrapper {
  overflow: hidden;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  min-height: 260px;
  background: #e2e8f0;
}

.map-wrapper iframe {
  width: 100%;
  height: 300px;
  border: 0;
  display: block;
}

.map-wrapper--company {
  min-height: 260px;
}

.map-wrapper--company iframe {
  height: min(52vh, 420px);
  min-height: 260px;
}

.services {
  display: grid;
  gap: 1.1rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  background: var(--surface-solid);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, border-color 0.2s ease;
}

@media (prefers-reduced-motion: no-preference) {
  .service-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(14, 165, 233, 0.15);
  }
}

.service-item-media {
  flex-shrink: 0;
  background: #0f172a;
}

.service-item-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.service-item-body {
  padding: 1.15rem 1.2rem 1.25rem;
}

.service-item-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.service-item-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

@media (min-width: 768px) {
  :root {
    --scroll-anchor-offset: 6.75rem;
  }

  .brand {
    max-width: 36rem;
  }

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

  .brand-tagline {
    font-size: 0.78rem;
    max-width: 36rem;
  }

  .menu-toggle {
    display: none;
  }

  .mobile-menu {
    display: none !important;
  }

  .desktop-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: wrap;
    gap: 0.5rem 1.75rem;
  }

  .desktop-nav a {
    white-space: nowrap;
  }

  .hero {
    padding: clamp(2.5rem, 5vw, 3.75rem) clamp(2rem, 5vw, 3.25rem);
  }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: clamp(2rem, 5vw, 3.5rem);
  }

  .hero-copy {
    flex: 1.08;
  }

  .hero-media {
    flex: 1;
    max-width: min(46%, 440px);
  }

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

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

  .map-wrapper iframe {
    height: 420px;
  }

  .company-layout {
    grid-template-columns: minmax(0, 1fr) minmax(280px, 38%);
    gap: 2rem;
    align-items: start;
  }

  .company-col-map {
    position: sticky;
    top: calc(var(--header-h) + 0.75rem);
  }

  .map-wrapper--company iframe {
    height: min(62vh, 520px);
    min-height: 360px;
  }
}

@media (min-width: 1024px) {
  .services {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* —— HVAC-style deep layout (inspired by multi-section home-services templates) —— */

.hero--hvac {
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.04) 0%, rgba(255, 255, 255, 0.96) 42%, rgba(248, 250, 252, 0.92) 100%);
  border-color: rgba(15, 23, 42, 0.06);
}

.hero-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-hover);
}

.hero--hvac h1 {
  font-size: clamp(1.75rem, 4.8vw, 2.55rem);
}

.hero-lead {
  margin: 0.85rem 0 0;
  color: var(--text-secondary);
  font-size: 0.98rem;
  max-width: 40rem;
  line-height: 1.65;
}

.hero-bullets {
  margin: 1.25rem 0 0;
  padding-left: 1.15rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
  max-width: 38rem;
}

.hero-bullets li + li {
  margin-top: 0.35rem;
}

.hero-media--stack {
  display: grid;
  gap: 0.65rem;
  background: transparent;
  border: none;
  box-shadow: none;
}

.hero-media--stack img {
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-strong);
  box-shadow: var(--shadow-md);
}

.stats-strip {
  width: calc(100% + 2 * var(--main-pad-x));
  max-width: none;
  margin-left: calc(-1 * var(--main-pad-x));
  margin-right: calc(-1 * var(--main-pad-x));
  margin-top: 0.5rem;
  margin-bottom: 0.25rem;
  background: linear-gradient(90deg, #0f172a 0%, #111c33 50%, #0f172a 100%);
  color: #e2e8f0;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 1201px) {
  .stats-strip {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
  }
}

.stats-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.35rem clamp(1rem, 4vw, 1.75rem);
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}

@media (min-width: 640px) {
  .stats-strip-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .stats-strip-inner {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .stats-strip-inner--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 42rem;
  }
}

.stat-card {
  padding: 0.85rem 0.5rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
}

.stat-value {
  display: block;
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 0.35rem;
}

.stat-label {
  font-size: 0.78rem;
  line-height: 1.45;
  color: #94a3b8;
}

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

.section-head h2 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 0.65rem;
}

.section-head h2::before {
  content: "";
  width: 2.75rem;
  height: 3px;
  border-radius: 3px;
  background: var(--accent-line);
}

.section-head--on-dark h2::before {
  background: linear-gradient(90deg, #38bdf8, #22d3ee);
}

.section-intro {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.65;
  max-width: 52rem;
}

.section-intro--narrow {
  max-width: 42rem;
}

.section-head--on-dark h2,
.section-head--on-dark .section-intro {
  color: #e2e8f0;
}

.section-head--on-dark .section-intro {
  color: #94a3b8;
}

.services--deep {
  grid-template-columns: 1fr;
}

@media (min-width: 900px) {
  .services--deep {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1200px) {
  .services--deep {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.service-list {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.55;
}

.service-list li + li {
  margin-top: 0.35rem;
}

.service-list--compact {
  font-size: 0.85rem;
}

.section-split-audience {
  width: calc(100% + 2 * var(--main-pad-x));
  max-width: none;
  margin-left: calc(-1 * var(--main-pad-x));
  margin-right: calc(-1 * var(--main-pad-x));
  padding: clamp(2.25rem, 6vw, 3.75rem) var(--main-pad-x);
  background: linear-gradient(165deg, #0b1220 0%, #111c33 55%, #0f172a 100%);
  border-radius: 0;
  border: none;
  box-shadow: none;
}

@media (min-width: 1201px) {
  .section-split-audience {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: 0;
  }
}

.section-split-audience .section-head {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.audience-grid {
  max-width: 1200px;
  margin: 1.5rem auto 0;
  display: grid;
  gap: 1.25rem;
}

@media (min-width: 900px) {
  .audience-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
  }
}

.audience-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.audience-card-media {
  background: #020617;
}

.audience-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.audience-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
}

.audience-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1.15rem;
  font-weight: 700;
  color: #f8fafc;
  letter-spacing: -0.02em;
}

.audience-card-body p {
  margin: 0;
  color: #94a3b8;
  font-size: 0.92rem;
  line-height: 1.6;
}

.audience-card-body .service-list {
  color: #cbd5e1;
}

.why-grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .why-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.why-card {
  padding: 1.2rem 1.25rem 1.3rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow: var(--shadow-sm);
}

.why-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.why-card p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.section-process h2 {
  margin-bottom: 0.5rem;
}

.process-steps {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

@media (min-width: 900px) {
  .process-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.process-steps li {
  display: flex;
  gap: 1rem;
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-sm);
}

.process-step-num {
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  color: var(--primary-hover);
  line-height: 1.2;
}

.process-steps h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
  font-weight: 700;
  color: var(--text);
}

.process-steps p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.guide-grid {
  display: grid;
  gap: 1.15rem;
}

@media (min-width: 900px) {
  .guide-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.guide-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--surface-solid);
  box-shadow: var(--shadow-sm);
  min-height: 100%;
}

.guide-card-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.guide-card-body {
  padding: 1rem 1.15rem 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.guide-meta {
  margin: 0 0 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary-hover);
}

.guide-card-body h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
}

.guide-card-body > p:last-child {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.6;
  color: var(--muted);
}

.portfolio-grid {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}

@media (min-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.portfolio-card {
  padding: 1.15rem 1.2rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow-sm);
}

.portfolio-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}

.portfolio-card p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.55;
  color: var(--muted);
}

.faq-list {
  margin-top: 1.25rem;
  max-width: 44rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.faq-item {
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface-solid);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-q {
  width: 100%;
  text-align: left;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  padding: 1rem 2.75rem 1rem 1.1rem;
  border: none;
  background: transparent;
  cursor: pointer;
  position: relative;
  transition: background 0.2s ease;
}

.faq-q:hover {
  background: #f8fafc;
}

.faq-q::after {
  content: "+";
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--primary-hover);
  line-height: 1;
}

.faq-q[aria-expanded="true"]::after {
  content: "−";
}

.faq-a {
  padding: 0 1.1rem 1rem;
}

.faq-a p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--muted);
}

.site-footer-grid {
  display: grid;
  gap: 1.5rem;
  text-align: left;
}

@media (min-width: 768px) {
  .site-footer-grid {
    grid-template-columns: 1.35fr 1fr;
    align-items: start;
  }
}

.site-footer-title {
  margin: 0 0 0.35rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
}

.site-footer-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--muted);
}

.site-footer-text a {
  color: var(--primary-hover);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer-heading {
  margin: 0 0 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.site-footer-bar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem clamp(1rem, 4vw, 1.75rem) 0;
  border-top: 1px solid var(--border);
}

.site-footer-bar .site-footer-copy {
  text-align: center;
  padding-bottom: 1.25rem;
}
