:root {
  --black: #0b0b0d;
  --charcoal: #121212;
  --panel: #1c1c1f;
  --soft: #cfcfcf;
  --white: #ffffff;
  --orange: #f25a00;
  --orange-dark: #d94a00;
  --green: #2ecc71;
  --border: rgba(255, 255, 255, 0.1);
  --border-strong: rgba(255, 255, 255, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  --radius: 22px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 76% 12%, rgba(242, 90, 0, 0.18), transparent 27rem),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent 30rem);
  z-index: -1;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 20;
  background: var(--orange);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 999px;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(11, 11, 13, 0.82);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(18px);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 22px;
  align-items: center;
}

.brand img,
.footer-logo {
  height: 44px;
  width: auto;
}

.primary-nav {
  display: flex;
  justify-content: center;
  gap: 18px;
  align-items: center;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.primary-nav a,
.site-footer a {
  transition: color 160ms ease;
}

.primary-nav a:hover,
.site-footer a:hover {
  color: var(--orange);
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
  white-space: nowrap;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: var(--white);
  box-shadow: 0 16px 36px rgba(242, 90, 0, 0.2);
}

.btn-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.03);
}

.btn:hover,
.header-cta:hover {
  transform: translateY(-2px);
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  width: 44px;
  height: 44px;
  border-radius: 999px;
  padding: 11px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: currentColor;
  border-radius: 99px;
}

.hero {
  padding: 92px 0 72px;
  overflow: hidden;
}

.hero-grid,
.split-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(340px, 0.98fr);
  gap: 54px;
  align-items: center;
}

.service-hero {
  padding-bottom: 58px;
}

.badge,
.eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 8px;
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.badge {
  padding: 8px 13px;
  border: 1px solid rgba(242, 90, 0, 0.36);
  border-radius: 999px;
  background: rgba(242, 90, 0, 0.08);
}

h1,
h2,
h3 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  font-size: clamp(48px, 8vw, 92px);
}

h2 {
  font-size: clamp(32px, 4vw, 56px);
}

h3 {
  font-size: 22px;
}

p {
  color: var(--soft);
  margin: 0;
}

.hero-subtitle {
  max-width: 660px;
  margin-top: 22px;
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 32px;
}

.trust-row span,
.feature-list span,
.industry-grid span,
.contact-trust span {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.trust-row svg,
.feature-list svg,
.industry-grid svg,
.contact-trust svg {
  color: var(--green);
  flex: 0 0 auto;
}

.hero-visual {
  position: relative;
  padding: 20px;
  min-height: 496px;
  border: 1px solid var(--border-strong);
  border-radius: 30px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at top right, rgba(242, 90, 0, 0.24), transparent 18rem),
    #111113;
  box-shadow: var(--shadow);
}

.hero-visual::after {
  content: "";
  position: absolute;
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero-visual.compact {
  min-height: 356px;
}

.visual-top {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
  z-index: 1;
  min-height: 48px;
  padding: 0 4px 16px;
  color: var(--soft);
  font-size: 14px;
  font-weight: 700;
}

.visual-top strong {
  margin-left: auto;
  color: var(--white);
}

.status-dot,
.phone-status span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 0 0 8px rgba(46, 204, 113, 0.12);
}

.dashboard-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dash-card,
.service-meter {
  min-height: 144px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.045);
}

.dash-card.large {
  grid-row: span 2;
  min-height: 304px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.dash-card.wide {
  grid-column: span 2;
}

.dash-card svg,
.service-meter svg {
  color: var(--orange);
  width: 36px;
  height: 36px;
}

.dash-card strong {
  display: block;
  margin-top: 14px;
  font-size: 38px;
}

.dash-card.large h2 {
  margin-top: 20px;
  font-size: 44px;
}

.scan-line {
  height: 6px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--green), var(--orange), rgba(255, 255, 255, 0.18));
  margin-bottom: 22px;
}

.service-meter {
  min-height: 250px;
  display: grid;
  align-content: center;
  gap: 16px;
}

.service-meter strong {
  font-size: 34px;
  line-height: 1.05;
}

.section {
  padding: 84px 0;
  background: var(--black);
}

.section-split,
.trust-band,
.faq-section {
  background: var(--charcoal);
}

.trust-band h2 {
  max-width: 820px;
  margin-bottom: 30px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill-grid span,
.area-grid span {
  border: 1px solid var(--border);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--white);
  padding: 12px 16px;
  font-weight: 800;
}

.section-head {
  max-width: 780px;
  margin-bottom: 36px;
}

.section-head p:last-child {
  margin-top: 16px;
  font-size: 18px;
}

.card-grid,
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card,
.process-card,
.cta-panel,
.lead-form,
.contact-shell {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.service-card {
  min-height: 292px;
  padding: 26px;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--orange);
  background: rgba(255, 255, 255, 0.06);
}

.card-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--orange);
  border-radius: 15px;
  background: rgba(242, 90, 0, 0.1);
  margin-bottom: 22px;
}

.service-card h3 {
  margin-bottom: 12px;
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: var(--orange);
  font-weight: 800;
}

.split-grid p {
  margin: 18px 0 26px;
  font-size: 18px;
}

.industry-grid,
.feature-list,
.why-grid,
.area-grid,
.link-grid {
  display: grid;
  gap: 12px;
}

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

.industry-grid span,
.feature-list span,
.why-grid div,
.link-grid a {
  min-height: 52px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.reverse {
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
}

.device-panel {
  display: grid;
  place-items: center;
}

.phone-shell {
  width: min(320px, 100%);
  min-height: 560px;
  padding: 22px;
  border: 1px solid var(--border-strong);
  border-radius: 42px;
  background: linear-gradient(160deg, #19191c, #0d0d0f);
  box-shadow: var(--shadow);
}

.phone-bar {
  width: 90px;
  height: 6px;
  margin: 0 auto 32px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.phone-shell h3 {
  margin-bottom: 26px;
}

.phone-status,
.phone-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  padding: 16px;
  margin-top: 14px;
}

.phone-status {
  justify-content: flex-start;
  color: var(--green);
  font-weight: 800;
}

.phone-list em {
  color: var(--orange);
  font-style: normal;
  font-weight: 800;
}

.boxed {
  padding: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

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

.why-grid div {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
}

.why-grid svg {
  color: var(--orange);
  flex: 0 0 auto;
}

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

.process-card {
  padding: 24px;
}

.process-card span {
  display: inline-flex;
  margin-bottom: 34px;
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.process-card h3 {
  margin-bottom: 10px;
}

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

.area-grid span {
  text-align: center;
  white-space: normal;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  padding: 0 20px;
}

summary {
  cursor: pointer;
  padding: 20px 0;
  color: var(--white);
  font-weight: 800;
}

details p {
  padding: 0 0 20px;
}

.cta-panel {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 34px;
  background:
    radial-gradient(circle at right, rgba(242, 90, 0, 0.18), transparent 26rem),
    rgba(255, 255, 255, 0.045);
}

.cta-panel h2 {
  max-width: 780px;
  font-size: clamp(30px, 4vw, 48px);
}

.contact-shell {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 24px;
  padding: 24px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    var(--charcoal);
}

.contact-copy {
  padding: 20px;
  align-self: center;
}

.contact-copy h2 {
  margin-bottom: 18px;
}

.contact-trust {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.lead-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 20px;
  background: rgba(11, 11, 13, 0.6);
}

.lead-form label {
  display: grid;
  gap: 8px;
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  padding: 12px 14px;
  outline: none;
}

.lead-form option {
  color: #111;
}

.lead-form input:focus,
.lead-form select:focus,
.lead-form textarea:focus {
  border-color: var(--orange);
}

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

.form-message {
  min-height: 24px;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  padding: 64px 0 96px;
  background: #080809;
  border-top: 1px solid var(--border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr 0.9fr;
  gap: 34px;
}

.site-footer h3 {
  font-size: 16px;
  margin-bottom: 14px;
}

.site-footer p,
.site-footer a {
  display: block;
  color: var(--soft);
  font-size: 14px;
  margin-bottom: 10px;
}

.footer-logo {
  margin-bottom: 18px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
}

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

.link-grid a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--white);
  font-weight: 800;
}

.link-grid a:hover {
  border-color: var(--orange);
}

.mobile-sticky-cta {
  display: none;
}

.content-page {
  max-width: 820px;
}

.thank-you-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 42px;
  background:
    radial-gradient(circle at 50% 12%, rgba(242, 90, 0, 0.24), transparent 24rem),
    linear-gradient(180deg, rgba(18, 18, 18, 0.96), var(--black));
}

.thank-you-hero::after {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: min(760px, 82vw);
  height: 1px;
  content: "";
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
}

.thank-you-shell {
  max-width: 920px;
  text-align: center;
}

.success-mark {
  display: grid;
  place-items: center;
  width: 82px;
  height: 82px;
  margin: 0 auto 26px;
  color: var(--green);
  border: 1px solid rgba(46, 204, 113, 0.34);
  border-radius: 999px;
  background:
    radial-gradient(circle, rgba(46, 204, 113, 0.18), rgba(255, 255, 255, 0.04)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 38px rgba(242, 90, 0, 0.18);
}

.success-mark svg {
  width: 38px;
  height: 38px;
  stroke-width: 2.8;
}

.thank-you-shell h1 {
  max-width: 860px;
  margin: 18px auto 18px;
  font-size: clamp(42px, 6vw, 74px);
}

.thank-you-subtitle {
  max-width: 680px;
  margin: 0 auto;
  color: var(--white);
  font-size: clamp(19px, 2.6vw, 25px);
  font-weight: 700;
}

.thank-you-copy {
  max-width: 780px;
  margin: 28px auto 0;
}

.thank-you-copy p + p {
  margin-top: 16px;
}

.thank-you-section {
  padding-top: 44px;
}

.thank-you-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
  gap: 22px;
}

.thank-you-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.025)),
    var(--charcoal);
  padding: 28px;
}

.thank-you-card h2 {
  margin-bottom: 20px;
  font-size: clamp(28px, 3.3vw, 42px);
}

.assistance-card {
  background:
    radial-gradient(circle at top right, rgba(242, 90, 0, 0.18), transparent 18rem),
    rgba(255, 255, 255, 0.04);
}

.assistance-card p {
  margin-bottom: 22px;
}

.thank-you-actions {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.thank-you-actions .btn {
  justify-content: center;
}

.trust-line {
  margin: 22px 0 0;
  color: var(--white);
  font-family: var(--heading);
  font-weight: 800;
  text-align: center;
}

.service-reminder-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.service-reminder-grid span {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 16px 18px;
  color: var(--white);
  font-weight: 800;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
}

.service-reminder-grid svg {
  color: var(--orange);
  flex: 0 0 auto;
}

@media (max-width: 1120px) {
  .header-inner {
    grid-template-columns: auto auto 1fr;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
    order: 3;
  }

  .primary-nav {
    position: absolute;
    top: 78px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--border);
    border-radius: 20px;
    background: rgba(18, 18, 18, 0.98);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .header-cta {
    justify-self: end;
  }

  .hero-grid,
  .split-grid,
  .reverse,
  .contact-shell,
  .thank-you-grid {
    grid-template-columns: 1fr;
  }

  .area-grid,
  .link-grid,
  .service-reminder-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

@media (max-width: 820px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .header-inner {
    min-height: 70px;
    grid-template-columns: 1fr auto;
  }

  .brand img {
    height: 38px;
    max-width: 230px;
  }

  .header-cta {
    display: none;
  }

  .primary-nav {
    top: 70px;
    left: 14px;
    right: 14px;
  }

  .hero {
    padding: 62px 0 48px;
  }

  h1 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .hero-actions,
  .cta-panel {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
    min-height: 52px;
  }

  .trust-row,
  .industry-grid,
  .card-grid,
  .process-grid,
  .why-grid,
  .lead-form {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: auto;
    padding: 16px;
  }

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

  .dash-card.large,
  .dash-card.wide {
    grid-column: auto;
    grid-row: auto;
    min-height: 170px;
  }

  .section {
    padding: 60px 0;
  }

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

  .phone-shell {
    min-height: 460px;
  }

  .footer-grid,
  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 15;
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 10px;
    padding: 10px;
    border: 1px solid var(--border);
    border-radius: 999px;
    background: rgba(11, 11, 13, 0.9);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow);
  }

  .mobile-sticky-cta a {
    display: grid;
    place-items: center;
    min-height: 46px;
    border-radius: 999px;
    color: var(--white);
    font-weight: 900;
  }

  .mobile-sticky-cta a:first-child {
    border: 1px solid var(--border-strong);
  }

  .mobile-sticky-cta a:last-child {
    background: var(--orange);
  }
}

@media (max-width: 520px) {
  .brand img {
    max-width: 210px;
  }

  .hero-subtitle,
  .split-grid p {
    font-size: 16px;
  }

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

  .lead-form,
  .contact-shell,
  .cta-panel,
  .service-card,
  .process-card,
  .thank-you-card {
    border-radius: 18px;
  }

  .thank-you-hero {
    padding: 68px 0 34px;
  }

  .thank-you-card {
    padding: 22px;
  }

  .service-reminder-grid {
    grid-template-columns: 1fr;
  }
}
