:root {
  color-scheme: light;
  --ink: #0b1220;
  --muted: #637083;
  --line: rgba(15, 23, 42, 0.12);
  --paper: #edf4fa;
  --surface: #f4f8fc;
  --surface-strong: #e7f0f8;
  --white: #ffffff;
  --blue: #1070b8;
  --blue-dark: #063f79;
  --red: #d02028;
  --red-dark: #9f141c;
  --ice: #e8f3fb;
  --navy: #07111f;
  --shadow: 0 24px 70px rgba(15, 23, 42, 0.16);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(7, 17, 31, 0.9);
  color: var(--white);
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.18);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
}

.brand-logo {
  width: 58px;
  height: 42px;
  object-fit: contain;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.94);
  padding: 4px 5px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  color: currentColor;
  font-size: 11px;
  opacity: 0.72;
}

.nav {
  display: flex;
  gap: 24px;
  font-size: 14px;
  font-weight: 600;
}

.nav a {
  opacity: 0.82;
}

.nav a:hover {
  opacity: 1;
}

.header-cta {
  justify-self: end;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 700;
}

.header-actions {
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 12px;
}

.language-switcher {
  display: inline-flex;
  gap: 4px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.08);
}

.language-switcher button {
  min-width: 34px;
  border: 0;
  border-radius: 999px;
  padding: 7px 9px;
  background: transparent;
  color: currentColor;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  opacity: 0.78;
}

.language-switcher button.is-active {
  background: var(--white);
  color: var(--blue-dark);
  opacity: 1;
}

.site-header.is-scrolled .header-cta {
  border-color: rgba(255, 255, 255, 0.22);
  background: var(--red);
  color: var(--white);
}

.site-header.is-scrolled .language-switcher {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled .language-switcher button.is-active {
  background: var(--white);
  color: var(--blue-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 100vh;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 78% 20%, rgba(16, 112, 184, 0.42), transparent 32%),
    radial-gradient(circle at 90% 72%, rgba(208, 32, 40, 0.25), transparent 34%),
    linear-gradient(135deg, #06101f 0%, #0a2340 48%, #061a2d 100%);
  color: var(--white);
  padding: 140px clamp(22px, 7vw, 112px) 78px;
}

.hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(7, 17, 31, 0.68));
  content: "";
}

.energy-field {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 70% 42%, black 0%, transparent 68%);
}

.node,
.pulse {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.node {
  width: 12px;
  height: 12px;
  background: var(--red);
  box-shadow: 0 0 0 9px rgba(208, 32, 40, 0.14), 0 0 34px rgba(208, 32, 40, 0.74);
}

.node-a { top: 24%; right: 18%; }
.node-b { top: 52%; right: 34%; }
.node-c { bottom: 24%; right: 12%; }
.node-d { top: 36%; right: 7%; }

.pulse {
  width: 260px;
  height: 260px;
  border: 1px solid rgba(16, 112, 184, 0.36);
  animation: pulse 7s ease-in-out infinite;
}

.pulse-a { top: 18%; right: 16%; }
.pulse-b { bottom: 12%; right: 4%; animation-delay: 1.8s; }
.pulse-c { top: 40%; right: 28%; animation-delay: 3.1s; }

@keyframes pulse {
  0%, 100% { transform: scale(0.82); opacity: 0.24; }
  50% { transform: scale(1.18); opacity: 0.72; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-logo-panel {
  position: absolute;
  top: 50%;
  right: clamp(28px, 7vw, 110px);
  z-index: 1;
  width: min(31vw, 460px);
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
  padding: 24px;
}

.hero-logo-panel img {
  display: block;
  width: 100%;
  height: auto;
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  color: var(--red);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(44px, 7vw, 86px);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 2vw, 21px);
}

.hero-actions,
.button {
  display: inline-flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  justify-content: center;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font: inherit;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: var(--white);
  box-shadow: 0 16px 38px rgba(208, 32, 40, 0.28);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.button.full {
  width: 100%;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 700px;
  margin: 58px 0 0;
}

.hero-metrics div {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
}

.hero-metrics dt {
  color: #ff5d64;
  font-size: 13px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  padding: 22px clamp(18px, 5vw, 72px);
  background: linear-gradient(90deg, #f7fbff, var(--surface-strong));
  border-bottom: 1px solid var(--line);
}

.trust-strip span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.section {
  padding: 96px clamp(22px, 7vw, 112px);
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.8fr);
  gap: 72px;
  align-items: start;
  background:
    radial-gradient(circle at 88% 12%, rgba(16, 112, 184, 0.08), transparent 30%),
    var(--surface);
}

.intro h2,
.section-heading h2,
.business-copy h2,
.proof-list h2,
.contact-copy h2 {
  margin-bottom: 0;
  font-size: clamp(32px, 4.2vw, 56px);
  line-height: 1.03;
  letter-spacing: 0;
}

.intro > p {
  margin: 40px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.service-card {
  min-height: 288px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
}

.service-card.featured {
  background: var(--navy);
  color: var(--white);
}

.card-number {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  background: rgba(11, 99, 246, 0.1);
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.featured .card-number {
  background: rgba(208, 32, 40, 0.18);
  color: #ff5d64;
}

.service-card h3 {
  margin: 52px 0 12px;
  font-size: 22px;
  line-height: 1.1;
}

.service-card p,
.step p,
.business-copy p,
.proof-list li,
.faq-list p,
.contact-copy p,
.form-note {
  color: var(--muted);
}

.featured p {
  color: rgba(255, 255, 255, 0.74);
}

.process {
  background:
    radial-gradient(circle at 12% 0%, rgba(208, 32, 40, 0.08), transparent 28%),
    var(--ice);
}

.intelligence {
  background:
    linear-gradient(180deg, var(--surface), var(--surface-strong));
}

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

.insight-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(16, 112, 184, 0.06), rgba(255, 255, 255, 0) 46%),
    var(--white);
}

.insight-grid h3 {
  margin-bottom: 14px;
  font-size: 23px;
  line-height: 1.14;
}

.insight-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.step {
  min-height: 250px;
  padding: 26px;
  background: var(--white);
}

.step span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
}

.step h3 {
  margin: 64px 0 10px;
  font-size: 21px;
}

.business-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 48px;
  align-items: center;
  padding: 96px clamp(22px, 7vw, 112px);
  background:
    radial-gradient(circle at 78% 16%, rgba(208, 32, 40, 0.25), transparent 32%),
    linear-gradient(135deg, #07111f, #0b3158);
  color: var(--white);
}

.business-copy {
  max-width: 760px;
}

.business-copy p {
  max-width: 680px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 18px;
}

.business-panel {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  padding: 28px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.16);
}

.business-panel h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.business-panel ul,
.proof-list ul {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-panel li,
.proof-list li {
  position: relative;
  padding-left: 24px;
}

.business-panel li::before,
.proof-list li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--red);
  content: "";
}

.proof {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: 56px;
  align-items: center;
  background:
    radial-gradient(circle at 0% 20%, rgba(16, 112, 184, 0.08), transparent 30%),
    var(--surface);
}

.quote {
  border-left: 4px solid var(--red);
  padding: 8px 0 8px 28px;
}

.quote p {
  margin-bottom: 18px;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 800;
  line-height: 1.12;
}

.quote span {
  color: var(--muted);
  font-weight: 700;
}

.proof-list h2 {
  margin-bottom: 24px;
}

.faq {
  background: linear-gradient(180deg, var(--surface-strong), #eef5fb);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 900px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 800;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 520px);
  gap: 54px;
  padding: 96px clamp(22px, 7vw, 112px);
  background:
    radial-gradient(circle at 82% 18%, rgba(208, 32, 40, 0.08), transparent 28%),
    linear-gradient(180deg, #f6faff, var(--surface-strong));
}

.contact-copy p {
  max-width: 640px;
  margin-top: 24px;
  font-size: 18px;
}

address {
  display: grid;
  gap: 6px;
  margin-top: 34px;
  color: var(--muted);
  font-style: normal;
}

address strong {
  color: var(--ink);
}

.lead-form {
  display: grid;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.request-categories {
  display: grid;
  gap: 10px;
  margin: 0;
  border: 0;
  padding: 0;
}

.request-categories legend {
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.category-option {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  background: linear-gradient(180deg, rgba(16, 112, 184, 0.04), rgba(255, 255, 255, 0.86));
  cursor: pointer;
}

.category-option:has(input:checked) {
  border-color: rgba(16, 112, 184, 0.45);
  background: linear-gradient(180deg, rgba(16, 112, 184, 0.12), rgba(255, 255, 255, 0.94));
  box-shadow: 0 0 0 4px rgba(16, 112, 184, 0.08);
}

.category-option input {
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--blue);
}

.category-option strong,
.category-option small {
  display: block;
}

.category-option strong {
  font-size: 14px;
  line-height: 1.25;
}

.category-option small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.deddie-service-field {
  display: grid;
}

.is-hidden {
  display: none !important;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

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

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 13px 14px;
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(11, 99, 246, 0.1);
}

textarea {
  resize: vertical;
}

.form-note {
  margin: -2px 0 0;
  font-size: 12px;
}

.form-note.success {
  color: #087a55;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  padding: 26px clamp(22px, 7vw, 112px);
  background: var(--navy);
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.success-body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 74% 18%, rgba(16, 112, 184, 0.34), transparent 32%),
    radial-gradient(circle at 20% 82%, rgba(208, 32, 40, 0.18), transparent 30%),
    linear-gradient(135deg, #06101f 0%, #0a2340 48%, #061a2d 100%);
}

.success-screen {
  display: grid;
  min-height: 100vh;
  place-items: center;
  padding: 28px;
}

.success-card {
  width: min(100%, 620px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.22);
  padding: clamp(28px, 5vw, 52px);
  text-align: center;
}

.success-card img {
  width: min(260px, 72%);
  height: auto;
  margin-bottom: 26px;
}

.success-card h1 {
  max-width: none;
  color: var(--ink);
  font-size: clamp(42px, 7vw, 72px);
}

.success-card p:not(.section-kicker) {
  max-width: 480px;
  margin: 0 auto 28px;
  color: var(--muted);
}

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

  .nav {
    display: none;
  }

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

  .business-band,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .business-panel {
    max-width: 560px;
  }

  .hero-logo-panel {
    display: none;
  }
}

@media (max-width: 760px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand small,
  .header-cta {
    display: none;
  }

  .header-actions {
    gap: 0;
  }

  .language-switcher button {
    min-width: 30px;
    padding: 6px 7px;
  }

  .hero {
    min-height: auto;
    padding: 122px 20px 54px;
  }

  h1 {
    font-size: 43px;
  }

  .hero-metrics,
  .intro,
  .service-grid,
  .timeline,
  .insight-grid,
  .proof {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    margin-top: 38px;
  }

  .section,
  .business-band,
  .contact-section {
    padding: 68px 20px;
  }

  .intro {
    gap: 20px;
  }

  .intro > p {
    margin-top: 0;
  }

  .service-card,
  .step {
    min-height: auto;
  }

  .service-card h3,
  .step h3 {
    margin-top: 42px;
  }

  .button {
    width: 100%;
  }
}
