
:root {
  --bg: #05070a;
  --bg-2: #0b0e12;
  --panel: #11151a;
  --panel-2: #151a20;
  --text: #f5f7fa;
  --muted: #c1c8d0;
  --muted-2: #9ca6b2;
  --line: rgba(255,255,255,0.12);
  --line-soft: rgba(255,255,255,0.08);
  --max: 1240px;
  --radius: 26px;
  --shadow: 0 24px 70px rgba(0,0,0,0.32);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.045), transparent 26%),
    radial-gradient(circle at top right, rgba(255,255,255,0.02), transparent 24%),
    linear-gradient(180deg, #040609 0%, #070a0e 100%);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(calc(100% - 40px), var(--max)); margin: 0 auto; }
.site-header {
  position: sticky; top: 0; z-index: 1000;
  background: rgba(5,7,10,0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  min-height: 76px; display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand {
  font-size: .96rem; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.site-nav { display: flex; align-items: center; gap: 8px; }
.site-nav a {
  color: var(--muted); padding: 10px 13px; border-radius: 12px; transition: .2s ease;
}
.site-nav a:hover, .site-nav a.active { color: var(--text); background: rgba(255,255,255,0.06); }
.site-nav .nav-cta {
  border: 1px solid rgba(255,255,255,0.18); color: var(--text); background: rgba(255,255,255,0.05);
}
.nav-toggle {
  display: none; background: transparent; color: var(--text); border: 1px solid var(--line); border-radius: 12px; padding: 10px 12px;
}
main { padding-bottom: 84px; }
.hero-shell {
  position: relative; min-height: min(78vh, 860px); overflow: hidden;
  border-bottom: 1px solid var(--line-soft);
}
.hero-carousel { min-height: min(84vh, 920px); }
.hero-bg, .hero-slide img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.hero-slide {
  position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; pointer-events: none;
}
.hero-slide.is-active { opacity: 1; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,7,10,0.82) 0%, rgba(5,7,10,0.56) 38%, rgba(5,7,10,0.40) 62%, rgba(5,7,10,0.62) 100%),
              linear-gradient(180deg, rgba(5,7,10,0.16) 0%, rgba(5,7,10,0.42) 100%);
}
.hero-content {
  position: relative; z-index: 2; min-height: inherit; display: flex; align-items: center; padding: 56px 0;
}
.hero-copy {
  max-width: 760px; padding: 38px; border-radius: 26px;
  background: rgba(10,12,16,0.42); border: 1px solid rgba(255,255,255,0.08); backdrop-filter: blur(6px);
}
.hero-copy.wide { background: transparent; border: 0; backdrop-filter: none; padding: 0; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 12px; color: var(--text);
  font-size: .82rem; text-transform: uppercase; letter-spacing: .18em; opacity: .82;
}
.eyebrow::before { content: ''; width: 34px; height: 1px; background: rgba(255,255,255,0.45); }
h1, h2, h3 { line-height: 1.05; letter-spacing: -0.03em; margin: 0 0 12px; }
.hero-copy h1 { font-size: clamp(3rem, 7vw, 6rem); margin-top: 20px; }
.hero-copy p { font-size: 1.13rem; max-width: 700px; color: #e8edf3; margin: 0 0 28px; }
.section { padding: 84px 0; }
.section-tight { padding: 64px 0; }
.section-heading, .section h2 { font-size: clamp(2.1rem, 4.5vw, 3.7rem); margin: 0 0 28px; }
.section-copy, .panel p, .feature-card p, .compare-table td, .cta-bar p, .contact-lines, .statement-band span { color: var(--muted); }
.grid-2, .grid-3, .split-grid {
  display: grid; gap: 24px;
}
.grid-2 { grid-template-columns: repeat(2, minmax(0,1fr)); }
.grid-3 { grid-template-columns: repeat(3, minmax(0,1fr)); }
.split-grid { grid-template-columns: minmax(0,1fr) minmax(380px, .92fr); }
.align-start { align-items: start; }
.panel, .media-card, .statement-band, .cta-bar, .compare-table-wrap {
  background: linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.028));
  border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow);
}
.panel, .feature-card { padding: 28px; }
.feature-card h3, .panel h3 { font-size: 1.38rem; }
.cards-lifted { margin-top: 8px; position: relative; z-index: 3; }
.media-card { position: relative; overflow: hidden; min-height: 420px; display:block; }
.media-card img { position: absolute; inset: 0; width: 100%; min-width: 100%; min-height: 100%; height: 100%; object-fit: cover; object-position: center center; }
.media-fill-tall { min-height: 662px; }
.media-wide { min-height: 520px; }
.number-list { display: grid; gap: 0; margin-top: 10px; }
.number-item { display: grid; grid-template-columns: auto 1fr; gap: 16px; align-items: start; padding: 22px 0; border-bottom: 1px solid var(--line-soft); }
.number-item:last-child { border-bottom: none; }
.number-item h3 { font-size: 1.65rem; margin-bottom: 8px; }
.number-item p { margin: 0; color: var(--muted); }
.number-badge {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.18); background: rgba(255,255,255,0.06); color: var(--text); font-weight: 700;
}
.statement-band {
  padding: 26px 30px; text-align: center; font-size: clamp(1.15rem, 2vw, 1.6rem); font-weight: 700;
}
.statement-band-soft { display: grid; gap: 8px; text-align: left; }
.statement-band-soft span { font-size: 1rem; font-weight: 400; }
.button-row { display: flex; gap: 14px; flex-wrap: wrap; }
.button {
  display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 22px;
  border-radius: 999px; border: 1px solid rgba(255,255,255,0.16); font-weight: 700; transition: .2s ease;
}
.button-primary { background: #f2f5f8; color: #0a0d12; border-color: #f2f5f8; }
.button-primary:hover { filter: brightness(.97); transform: translateY(-1px); }
.button-secondary { background: rgba(255,255,255,0.04); color: var(--text); }
.button-secondary:hover { background: rgba(255,255,255,0.08); }
.section-lead { display: grid; grid-template-columns: minmax(0,.9fr) minmax(0,1.1fr); gap: 26px; align-items: center; }
.panel-inline { padding: 32px; }
.span-2 { grid-column: span 2; }
.cta-bar {
  padding: 28px 30px; display: flex; gap: 26px; align-items: center; justify-content: space-between;
}
.cta-bar h3 { font-size: 2rem; margin-bottom: 8px; }
.cta-bar p { margin: 0; }
.list-clean { list-style: none; padding: 0; margin: 0; }
.list-clean li { padding: 14px 0; border-bottom: 1px solid var(--line-soft); }
.list-clean li:last-child { border-bottom: none; }
.large-list li { font-size: 1.08rem; color: var(--text); }
.compare-table-wrap { overflow-x: auto; }
.compare-table { width: 100%; border-collapse: collapse; min-width: 760px; }
.compare-table th, .compare-table td { padding: 16px 18px; vertical-align: top; border-bottom: 1px solid var(--line-soft); }
.compare-table th { text-align: left; font-size: .82rem; text-transform: uppercase; letter-spacing: .14em; color: var(--text); background: rgba(255,255,255,0.05); }
.compare-table td:first-child { width: 23%; color: var(--text); font-weight: 700; }
.compare-split { grid-template-columns: minmax(0,1.18fr) minmax(340px,.82fr); }
.contact-lines div + div { margin-top: 18px; }
.contact-lines strong { display: block; margin-bottom: 4px; color: var(--text); }
.site-footer {
  border-top: 1px solid var(--line-soft); background: rgba(255,255,255,0.02); padding: 28px 0 48px;
}
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 22px; flex-wrap: wrap; }
.footer-title { font-weight: 700; }
.footer-meta, .footer-nav { color: var(--muted-2); }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 1080px) {
  .grid-3, .split-grid, .grid-2, .compare-split, .section-lead { grid-template-columns: 1fr; }
  .span-2 { grid-column: auto; }
  .media-fill-tall, .media-wide, .media-card { min-height: 420px; }
}
@media (max-width: 980px) {
  .site-nav {
    position: absolute; top: 72px; left: 16px; right: 16px; display: none; flex-direction: column;
    padding: 14px; border-radius: 18px; background: rgba(5,7,10,0.96); border: 1px solid var(--line);
  }
  .site-nav.open { display: flex; }
  .nav-toggle { display: inline-flex; }
  .cta-bar { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 680px) {
  .container { width: min(calc(100% - 24px), var(--max)); }
  .hero-shell, .hero-carousel { min-height: 74vh; }
  .hero-content { padding: 48px 0; }
  .hero-copy h1 { font-size: clamp(2.4rem, 12vw, 4rem); }
  .hero-copy p { font-size: 1rem; }
  .panel, .feature-card, .cta-bar, .statement-band, .panel-inline { padding: 22px; }
  .button-row { width: 100%; }
  .button { width: 100%; }
}

.section-tight .eyebrow + h2, .section .eyebrow + h2 { margin-top: 12px; }
.grid-3.cards-lifted .panel { min-height: 188px; }
.split-grid .media-card, .compare-split .media-card, .grid-2 .media-card { align-self: stretch; }
@media (min-width:1081px){
  .split-grid.align-start{align-items:start;}
  .split-grid.align-start .media-card{height:100%;}
}


.process-break { min-height: 420px; }
.process-break img { object-position: center center; }
.compare-feature-stack { display: grid; gap: 28px; }
.compare-feature-stack .media-card.portrait-card { max-width: 420px; min-height: 720px; justify-self: end; }
.compare-feature-stack .media-card.portrait-card img { object-position: center top; }
.contact-single { max-width: 900px; }
@media (max-width: 1080px) {
  .compare-feature-stack .media-card.portrait-card { max-width: none; min-height: 520px; justify-self: stretch; }
}

.process-break-full { min-height: 460px; }
.process-break-full img { object-position: center center; }
.compare-lower-image { min-height: 760px; }
.compare-lower-image img { object-position: center top; }
.contact-split { grid-template-columns: minmax(0,.95fr) minmax(360px,.85fr); }
.contact-side-image { min-height: 560px; }
.contact-side-image img { object-position: center center; }
@media (max-width:1080px){ .contact-split{grid-template-columns:1fr;} .compare-lower-image{min-height:560px;} .contact-side-image{min-height:420px;} }

/* v5 final image corrections */
.process-break-full { min-height: 520px; }
.process-break-full img { object-position: center center; }
.compare-lower-image { min-height: 620px; }
.compare-lower-image img { object-position: center center; transform: scale(1.0); transform-origin: center center; }
@media (max-width:1080px){ .process-break-full{min-height:420px;} .compare-lower-image{min-height:420px;} }
