:root {
  --bg: #050b16;
  --bg-soft: #091322;
  --panel: rgba(13, 23, 39, 0.86);
  --panel-strong: #0e1728;
  --line: rgba(134, 171, 214, 0.18);
  --line-strong: rgba(42, 212, 255, 0.78);
  --text: #f7fbff;
  --muted: #b6c3d4;
  --blue: #2f80ff;
  --cyan: #21d4ff;
  --aqua: #21f0e5;
  --green: #48e0a4;
  --amber: #ffc857;
  --danger: #ff3030;
  --shadow: 0 26px 90px rgba(0, 0, 0, 0.42);
  --radius: 8px;
  --radius-large: 20px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

[id] {
  scroll-margin-top: 88px;
}

@media (min-width: 821px) and (min-height: 700px) {
  html {
    scroll-snap-type: y mandatory;
  }

  main > section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  main > section[id] {
    scroll-margin-top: 0;
  }

  .site-footer {
    scroll-snap-align: end;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  cursor: default;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 12% 8%, rgba(26, 181, 255, 0.12), transparent 30rem),
    radial-gradient(circle at 86% 22%, rgba(33, 240, 229, 0.08), transparent 28rem),
    radial-gradient(circle at 50% 82%, rgba(47, 128, 255, 0.055), transparent 34rem),
    var(--bg);
}

body.menu-open {
  overflow: hidden;
}

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

input,
textarea {
  cursor: text;
}

button,
select,
a,
summary {
  cursor: pointer;
}

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

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

.page-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.section {
  display: flex;
  align-items: center;
  min-height: 100svh;
  padding: 92px 0;
  position: relative;
}

.section-dark {
  background: transparent;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 14px 24px;
  background: rgba(8, 17, 31, 0.82);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  font-weight: 950;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
}

.logo span:first-child {
  color: var(--text);
}

.logo span:last-child {
  color: var(--blue);
}

.main-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  color: var(--muted);
  font-size: 14px;
}

.main-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: var(--muted);
  transform-origin: center;
  transition: color 200ms ease, transform 200ms ease, text-shadow 200ms ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  opacity: 0;
  transform: translateX(-50%) scaleX(0.45);
  transition: opacity 200ms ease, transform 200ms ease;
}

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

.main-nav a.is-active {
  color: var(--cyan);
  transform: scale(1.12);
  text-shadow: 0 0 16px rgba(33, 212, 255, 0.34);
}

.main-nav a.is-active::after {
  opacity: 1;
  transform: translateX(-50%) scaleX(1);
}

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

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(16, 28, 48, 0.88);
  color: var(--text);
}

.button,
.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 30px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  color: #03101e;
  font-weight: 850;
  cursor: pointer;
  box-shadow: 0 16px 48px rgba(35, 150, 255, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.button:hover,
.ghost-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 60px rgba(35, 150, 255, 0.32);
}

.button:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.button-small {
  min-height: 36px;
  padding: 0 14px;
  font-size: 14px;
}

.button-wide {
  width: 100%;
}

.ghost-button {
  background: rgba(14, 26, 46, 0.9);
  border-color: rgba(226, 238, 255, 0.72);
  color: var(--text);
  box-shadow: none;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 126px 0 78px;
  background-image:
    linear-gradient(90deg, rgba(5, 11, 22, 0.95), rgba(7, 18, 31, 0.82) 42%, rgba(5, 11, 22, 0.7)),
    url("https://images.unsplash.com/photo-1519608487953-e999c86e7455?auto=format&fit=crop&w=2200&q=82");
  background-size: cover;
  background-position: center;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, transparent 50%, var(--bg) 100%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.03) 0 1px, transparent 1px 110px);
}

.hero-glow {
  position: absolute;
  right: 9%;
  bottom: 18%;
  width: 430px;
  height: 180px;
  border-radius: 50%;
  background: rgba(33, 212, 255, 0.17);
  filter: blur(44px);
  z-index: -1;
  animation: floatGlow 8s ease-in-out infinite;
}

.hero-content {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.92fr);
  align-items: center;
  gap: 64px;
}

.hero-copy h1,
.section-heading h2,
.cta-panel h2 {
  margin: 0;
  font-size: clamp(44px, 7vw, 76px);
  line-height: 0.96;
  font-weight: 950;
  letter-spacing: 0;
  text-wrap: balance;
}

.hero-copy h1 span,
.section-heading h2 span,
.cta-panel h2 span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-copy > p {
  max-width: 690px;
  margin: 24px 0 0;
  color: #d2deee;
  font-size: clamp(18px, 2vw, 21px);
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(10, 20, 34, 0.82);
  font-size: 13px;
}

.stars {
  color: var(--cyan);
  letter-spacing: 0;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 26px;
  padding: 0;
  margin: 34px 0 0;
  list-style: none;
  font-weight: 780;
}

.hero-bullets li {
  position: relative;
  padding-left: 16px;
}

.hero-bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--cyan);
}

.quote-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  padding: 32px;
  background: rgba(11, 20, 36, 0.9);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.quote-card h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 34px);
  line-height: 1.05;
}

.quote-card .muted {
  margin: 6px 0 24px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow .lucide {
  width: 16px;
  height: 16px;
  vertical-align: -3px;
  margin-right: 6px;
}

.muted,
.section-heading p,
.site-footer p {
  color: var(--muted);
}

form {
  display: grid;
  gap: 12px;
}

label span {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0 0 0 0);
  overflow: hidden;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(21, 33, 51, 0.86);
  color: var(--text);
  outline: none;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

input,
select {
  min-height: 48px;
  padding: 0 13px;
}

textarea {
  min-height: 96px;
  resize: vertical;
  padding: 13px;
}

input::placeholder,
textarea::placeholder,
select:invalid {
  color: #a9b6c8;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(33, 212, 255, 0.76);
  background: rgba(24, 39, 60, 0.95);
  box-shadow: 0 0 0 4px rgba(33, 212, 255, 0.11);
}

.form-status {
  margin: 2px 0 0;
  font-size: 12px;
  text-align: center;
}

.privacy-consent {
  display: grid;
  grid-template-columns: 18px 1fr;
  align-items: start;
  gap: 10px;
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  cursor: pointer;
}

.privacy-consent span {
  position: static;
  width: auto;
  height: auto;
  clip: auto;
  overflow: visible;
}

.privacy-consent input {
  width: 18px;
  height: 18px;
  min-height: auto;
  margin: 1px 0 0;
  padding: 0;
  accent-color: var(--cyan);
  cursor: pointer;
}

.form-status {
  min-height: 18px;
  color: var(--cyan);
}

.form-status.is-error {
  color: #ffb4b4;
}

.section-heading {
  margin-bottom: 52px;
}

.section-heading.centered {
  max-width: 860px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.split {
  max-width: 850px;
}

.section-heading.split > p {
  max-width: 620px;
}

.section-heading h2 {
  font-size: clamp(38px, 5.5vw, 62px);
}

.section-heading p {
  margin: 16px 0 0;
  font-size: 18px;
}

.service-grid,
.industry-grid,
.stats-grid,
.reason-grid,
.review-grid,
.work-grid {
  display: grid;
  gap: 24px;
}

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

.service-card,
.reason-card,
.review-card,
.position-card,
.industry-grid article,
.stats-grid article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(19, 30, 49, 0.86), rgba(11, 18, 32, 0.9));
}

.service-card {
  position: relative;
  min-height: 216px;
  padding: 32px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 22% 0%, rgba(33, 212, 255, 0.16), transparent 15rem),
    linear-gradient(135deg, rgba(33, 212, 255, 0.07), rgba(47, 128, 255, 0.035));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover,
.service-card[data-reveal].is-visible:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 212, 255, 0.55);
  background: linear-gradient(180deg, rgba(21, 36, 59, 0.93), rgba(12, 22, 38, 0.96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), 0 0 28px rgba(33, 212, 255, 0.12);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card .lucide,
.reason-card > .lucide,
.industry-grid .lucide {
  width: 48px;
  height: 48px;
  padding: 12px;
  border-radius: var(--radius);
  color: var(--cyan);
  background: rgba(33, 212, 255, 0.1);
}

.service-card .lucide {
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.service-card:hover .lucide {
  color: #04101d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 22px rgba(33, 212, 255, 0.28);
  transform: scale(1.06);
}

.service-card h3,
.reason-card h3,
.review-card h3,
.position-card h3 {
  margin: 24px 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.service-card p,
.reason-card p,
.review-card span {
  color: #c7d7eb;
}

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

.industry-grid article {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 88px;
  padding: 20px;
  font-weight: 850;
  transition: transform 180ms ease, border-color 180ms ease;
}

.industry-grid article:hover {
  transform: translateY(-3px);
  border-color: rgba(33, 240, 229, 0.48);
}

.industry-grid article:nth-child(3n) .lucide {
  color: var(--green);
  background: rgba(72, 224, 164, 0.11);
}

.industry-grid article:nth-child(4n) .lucide {
  color: var(--amber);
  background: rgba(255, 200, 87, 0.1);
}

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

.work-card {
  position: relative;
  min-height: 290px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel-strong);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.22);
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: 290px;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08);
  transform: scale(1.02);
  transition: transform 500ms ease, filter 500ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5, 11, 22, 0.08), rgba(5, 11, 22, 0.88));
}

.work-card:hover img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.1);
}

.work-card div {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 1;
}

.work-card p {
  margin: 0 0 2px;
  color: var(--cyan);
  font-size: 13px;
  font-weight: 900;
}

.work-card h3 {
  margin: 0;
  font-size: 20px;
}

.position-section {
  background: transparent;
}

.position-stack {
  display: grid;
  gap: 44px;
  max-width: 920px;
  margin: 0 auto;
}

.pitch-heading {
  margin: 10px auto -10px;
}

.position-section .section-heading.centered::after {
  content: "";
  display: block;
  width: 48px;
  height: 3px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 18px rgba(33, 212, 255, 0.42);
}

.position-card {
  position: relative;
  display: grid;
  grid-template-columns: 118px 1fr;
  align-items: center;
  gap: 36px;
  min-height: 190px;
  padding: 34px 44px;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(33, 212, 255, 0.72);
  background: radial-gradient(circle at 18% 50%, rgba(33, 212, 255, 0.12), transparent 18rem), rgba(7, 16, 30, 0.9);
  box-shadow: 0 0 44px rgba(33, 212, 255, 0.12);
  transition: transform 240ms ease, border-color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.position-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(135deg, rgba(33, 212, 255, 0.1), rgba(47, 128, 255, 0.05));
  opacity: 0;
  transition: opacity 240ms ease;
}

.position-card::after {
  content: "";
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 164px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(134, 171, 214, 0.45), transparent);
}

.position-card:hover,
.position-card[data-reveal].is-visible:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 212, 255, 0.94);
  background: radial-gradient(circle at 18% 50%, rgba(33, 212, 255, 0.2), transparent 19rem), rgba(8, 18, 33, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.3), 0 0 54px rgba(33, 212, 255, 0.22);
}

.position-card:hover::before {
  opacity: 1;
}

.position-icon {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(33, 212, 255, 0.7);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(33, 212, 255, 0.08);
  box-shadow: inset 0 0 24px rgba(33, 212, 255, 0.08);
  transition: transform 240ms ease, color 240ms ease, background 240ms ease, box-shadow 240ms ease;
}

.position-icon .lucide {
  width: 46px;
  height: 46px;
  stroke-width: 2.1;
}

.position-card:hover .position-icon {
  color: #04101d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 30px rgba(33, 212, 255, 0.34);
  transform: scale(1.06);
}

.position-card p {
  margin: 0;
  color: var(--text);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 800;
  line-height: 1.45;
}

.position-card p span {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.stats-grid article {
  display: grid;
  place-items: center;
  min-height: 122px;
  padding: 24px;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.stats-grid article::before,
.reason-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 212, 255, 0.16), transparent 15rem),
    linear-gradient(135deg, rgba(33, 212, 255, 0.07), rgba(47, 128, 255, 0.035));
  opacity: 0;
  transition: opacity 220ms ease;
}

.stats-grid article:hover,
.stats-grid article[data-reveal].is-visible:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 212, 255, 0.55);
  background: linear-gradient(180deg, rgba(21, 36, 59, 0.93), rgba(12, 22, 38, 0.96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), 0 0 28px rgba(33, 212, 255, 0.12);
}

.stats-grid article:hover::before {
  opacity: 1;
}

.stats-grid strong {
  color: var(--blue);
  font-size: clamp(42px, 5vw, 52px);
  line-height: 1;
  transition: color 220ms ease, text-shadow 220ms ease, transform 220ms ease;
}

.stats-grid article:hover strong {
  color: var(--cyan);
  text-shadow: 0 0 18px rgba(33, 212, 255, 0.44);
  transform: scale(1.03);
}

.stats-grid span {
  color: var(--muted);
}

.reason-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-top: 64px;
}

.reason-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  padding: 28px 24px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.reason-card:hover,
.reason-card[data-reveal].is-visible:hover {
  transform: translateY(-5px);
  border-color: rgba(33, 212, 255, 0.55);
  background: linear-gradient(180deg, rgba(21, 36, 59, 0.93), rgba(12, 22, 38, 0.96));
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.24), 0 0 28px rgba(33, 212, 255, 0.12);
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-card > .lucide {
  transition: transform 220ms ease, color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.reason-card:hover > .lucide {
  color: #04101d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  box-shadow: 0 0 22px rgba(33, 212, 255, 0.28);
  transform: scale(1.06);
}

.reason-card h3 {
  margin-top: 0;
}

.review-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}

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

.review-card {
  position: relative;
  min-height: 218px;
  padding: 30px 32px;
  overflow: hidden;
  isolation: isolate;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 0%, rgba(33, 212, 255, 0.18), transparent 18rem),
    linear-gradient(135deg, rgba(33, 212, 255, 0.08), rgba(47, 128, 255, 0.04));
  opacity: 0;
  transition: opacity 220ms ease;
}

.review-card:hover {
  transform: translateY(-6px);
  border-color: rgba(33, 212, 255, 0.62);
  background: linear-gradient(180deg, rgba(21, 36, 59, 0.94), rgba(12, 22, 38, 0.96));
  box-shadow: 0 22px 58px rgba(0, 0, 0, 0.28), 0 0 34px rgba(33, 212, 255, 0.14);
}

.review-card[data-reveal].is-visible:hover {
  transform: translateY(-6px);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card > .lucide {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 36px;
  height: 36px;
  color: rgba(33, 212, 255, 0.32);
  transition: color 220ms ease, transform 220ms ease;
}

.review-card:hover > .lucide {
  color: rgba(33, 212, 255, 0.78);
  transform: scale(1.08);
}

.review-card .stars {
  transition: text-shadow 220ms ease;
}

.review-card:hover .stars {
  text-shadow: 0 0 16px rgba(33, 212, 255, 0.58);
}

.review-card p {
  margin: 18px 0 26px;
  max-width: 88%;
  color: var(--text);
  font-size: 16px;
}

.review-card h3 {
  margin: 0;
  font-size: 16px;
}

.faq-shell {
  max-width: 760px;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(14, 24, 41, 0.92);
  overflow: hidden;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

details[open] {
  border-color: rgba(33, 212, 255, 0.34);
  background: rgba(16, 28, 48, 0.96);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.18);
}

summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 62px;
  padding: 0 18px 0 24px;
  font-size: 17px;
  font-weight: 850;
  cursor: pointer;
  list-style: none;
  transition: color 180ms ease;
}

summary:hover {
  color: var(--cyan);
}

summary > span:first-child {
  flex: 1;
}

summary::-webkit-details-marker {
  display: none;
}

.faq-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(134, 171, 214, 0.22);
  border-radius: 50%;
  color: var(--cyan);
  background: rgba(33, 212, 255, 0.07);
  transition: transform 260ms ease, background 220ms ease, border-color 220ms ease, color 220ms ease;
}

.faq-arrow .lucide {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.faq-arrow svg {
  pointer-events: none;
}

details[open] .faq-arrow {
  border-color: transparent;
  color: #04101d;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 330ms cubic-bezier(0.22, 1, 0.36, 1);
}

details[open] .faq-content {
  max-height: var(--faq-height, 280px);
}

.faq-content p {
  margin: 0;
  padding: 0 24px 22px;
  color: var(--muted);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 240ms ease, transform 240ms ease;
}

details[open]:not(.is-closing) .faq-content p {
  opacity: 1;
  transform: translateY(0);
}

.final-cta {
  padding-top: 70px;
}

.cta-panel {
  display: grid;
  place-items: center;
  min-height: 486px;
  padding: 60px 28px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-large);
  background:
    radial-gradient(circle at 50% 0%, rgba(33, 212, 255, 0.18), transparent 28rem),
    rgba(9, 18, 32, 0.92);
  box-shadow: 0 32px 90px rgba(33, 212, 255, 0.1);
}

.cta-panel h2 {
  max-width: 680px;
  font-size: clamp(42px, 6vw, 66px);
}

.cta-panel p {
  max-width: 620px;
  margin: 20px auto 12px;
  color: var(--muted);
  font-size: 18px;
}

.cta-note {
  color: var(--muted);
  font-size: 14px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #050a13;
}

.site-footer .page-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 92px;
}

.site-footer a:last-child {
  color: var(--cyan);
  font-weight: 800;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0) scale(var(--reveal-scale, 1));
}

.service-card[data-reveal],
.reason-card[data-reveal],
.review-card[data-reveal],
.stats-grid article[data-reveal],
.position-card[data-reveal] {
  transition: opacity 650ms ease, transform 260ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

@keyframes floatGlow {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-18px, -18px, 0) scale(1.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-snap-type: none;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1040px) {
  .service-grid,
  .industry-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-content,
  .section-heading.split {
    grid-template-columns: 1fr;
  }

  .hero-content {
    gap: 40px;
  }
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .main-nav,
  .header-actions {
    position: fixed;
    left: 16px;
    right: 16px;
    display: none;
    background: rgba(8, 17, 31, 0.98);
    border: 1px solid var(--line);
    backdrop-filter: blur(18px);
  }

  .main-nav {
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .main-nav a {
    padding: 13px 14px;
  }

  .main-nav a::after {
    left: 14px;
    bottom: 8px;
    transform: scaleX(0.45);
  }

  .main-nav a.is-active {
    transform: none;
  }

  .main-nav a.is-active::after {
    transform: scaleX(1);
  }

  .header-actions {
    top: 296px;
    align-items: stretch;
    justify-content: space-between;
    padding: 12px;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .menu-open .main-nav,
  .menu-open .header-actions,
  .menu-button {
    display: flex;
  }

  .menu-button {
    align-items: center;
    justify-content: center;
  }

  .hero {
    padding-top: 108px;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 13vw, 66px);
  }

  .work-grid,
  .review-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .position-card {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .position-card::after {
    display: none;
  }

  .position-icon {
    width: 74px;
    height: 74px;
  }

  .position-icon .lucide {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: min(100% - 28px, var(--max));
  }

  .section {
    padding: 70px 0;
  }

  .hero-content {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-bullets {
    display: grid;
    gap: 12px;
  }

  .quote-card,
  .service-card,
  .review-card,
  .position-card {
    padding: 24px;
  }

  .service-grid,
  .industry-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-heading.centered {
    text-align: left;
  }

  .review-score {
    justify-content: flex-start;
  }

  .site-footer .page-shell {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 0;
  }
}
