:root { --navy:#010d30; --blue:#d2f2ff; --pink:#A68AFF; --neutral:#95afc0; --text:#f8fbff; --muted:#c6d3dd; --panel:rgba(255,255,255,.06); --line:rgba(255,255,255,.14); }
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; text-size-adjust: 100%; }
body { margin:0; position: relative; font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif; background:radial-gradient(circle at 15% 10%, rgba(210,242,255,.14), transparent 26%),radial-gradient(circle at 85% 20%, rgba(255,86,162,.14), transparent 24%),var(--navy); color:var(--text); }
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(1, 13, 48, 0.2), rgba(1, 13, 48, 0.24)),
    url("assets/lcs-first-post-image.png");
  background-size: auto, 680px 680px;
  background-position: center, center top;
  background-repeat: no-repeat, repeat;
  opacity: 0.33;
  pointer-events: none;
}
a { color:inherit; text-decoration:none; } img { max-width:100%; display:block; }
.container { width:min(1160px, calc(100% - 32px)); margin:0 auto; }
.site-header { position:sticky; top:0; z-index:50; padding:16px 0; backdrop-filter:blur(14px); }
.nav { min-height:76px; display:flex; align-items:center; justify-content:space-between; gap:24px; border:1px solid var(--line); border-radius:999px; background:rgba(1,13,48,.88); padding:0 24px; box-shadow:0 18px 45px rgba(0,0,0,.22); }
.logo { height:42px; width:auto; }

.nav-toggle,
.submenu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.06);
  color: #fff;
  font: inherit;
  cursor: pointer;
}

.nav-toggle {
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.menu {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 15px;
  color: var(--muted);
}

.menu a:hover {
  color: #fff;
}

.dropdown {
  position: relative;
  padding: 28px 0;
}

.dropdown-trigger {
  display: flex;
  align-items: center;
  gap: 10px;
}

.dropdown-trigger > a {
  display: inline-flex;
  align-items: center;
}

.submenu-toggle {
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  flex: 0 0 auto;
}

.dropdown-panel {
  position: absolute;
  top: 74px;
  left: 50%;
  transform: translateX(-50%);
  width: min(620px, calc(100vw - 32px));
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #010d30;
  box-shadow: 0 24px 60px rgba(0,0,0,.32);
}

.dropdown-panel a {
  padding: 13px 14px;
  border-radius: 16px;
  color: var(--muted);
}

.dropdown-panel a:hover {
  background: rgba(255,255,255,.08);
  color: #fff;
}

.services-dropdown .dropdown-panel {
  width: min(520px, calc(100vw - 32px));
  grid-template-columns: 1fr;
  gap: 20px;
}

.dropdown-group { display:grid; gap:8px; }
.dropdown-label { padding:0 14px; color:rgba(198,211,221,.58); font-size:12px; font-weight:750; letter-spacing:.14em; text-transform:uppercase; }
.dropdown-group-items { display:grid; gap:4px; }

@media (min-width: 901px) {
  .dropdown:hover .dropdown-panel {
    display: grid;
  }
}

@media (max-width: 900px) {
  .site-header {
    position: static;
    padding: 12px 0;
  }

  .nav {
    min-height: auto;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    padding: 16px 18px;
    border-radius: 28px;
  }

  .nav-toggle {
    display: inline-flex;
    margin-left: auto;
  }

  .menu {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-top: 8px;
  }

  .menu.is-open {
    display: flex;
  }

  .menu > a {
    display: block;
    width: 100%;
  }

  .dropdown {
    width: 100%;
    padding: 0;
  }

  .dropdown-trigger {
    width: 100%;
    justify-content: space-between;
  }

  .dropdown-trigger > a {
    width: 100%;
  }

  .submenu-toggle {
    display: inline-flex;
  }

  .dropdown-panel {
    position: static;
    top: auto;
    left: auto;
    transform: none;
    width: 100%;
    margin-top: 10px;
    grid-template-columns: 1fr;
    border-radius: 18px;
    box-shadow: none;
  }

  .dropdown.is-open .dropdown-panel {
    display: grid;
  }
}

.button { display:inline-flex; align-items:center; justify-content:center; min-height:48px; padding:0 22px; border-radius:999px; font-weight:750; border:1px solid transparent; cursor:pointer; }.button-primary { background:var(--blue); color:var(--navy); }.button-secondary { border-color:var(--line); color:#fff; }.button-accent { background:var(--pink); color:var(--navy); }
.hero { padding:92px 0 74px; text-align:center; }.eyebrow { display:inline-flex; margin:0 0 20px; color:var(--blue); text-transform:uppercase; letter-spacing:.22em; font-size:13px; font-weight:800; }
.hero-badge { display:inline-flex; align-items:center; justify-content:center; padding:10px 16px; border:1px solid rgba(210,242,255,.22); border-radius:999px; background:transparent; color:rgba(234,246,251,.84); font-size:12px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; box-shadow:inset 0 1px 0 rgba(255,255,255,.04); }
h1,h2,h3,p { margin-top:0; } h1 { font-size:clamp(42px,7vw,82px); line-height:.98; letter-spacing:-.06em; margin-bottom:26px; } h2 { font-size:clamp(30px,4vw,52px); line-height:1.04; letter-spacing:-.04em; margin-bottom:18px; } h3 { font-size:21px; line-height:1.2; margin-bottom:12px; } p { color:var(--muted); line-height:1.7; }.lead { max-width:790px; margin:0 auto 34px; font-size:19px; }.gradient-text { color:var(--blue); }.brand-pink { color:var(--pink); }.no-break { white-space:nowrap; }.hero-actions,.actions { display:flex; flex-wrap:wrap; justify-content:center; gap:14px; }
.section { padding:72px 0; }.grid { display:grid; gap:22px; }.grid-3 { grid-template-columns:repeat(3,minmax(0,1fr)); }.grid-2 { grid-template-columns:repeat(2,minmax(0,1fr)); }
.card { border:1px solid var(--line); background:var(--panel); border-radius:28px; padding:26px; box-shadow:0 18px 40px rgba(0,0,0,.16); }.card:hover { border-color:rgba(210,242,255,.46); background:rgba(255,255,255,.085); }.card .count,.pill { display:inline-flex; border-radius:999px; padding:7px 12px; background:rgba(210,242,255,.1); color:var(--blue); font-size:12px; text-transform:uppercase; letter-spacing:.08em; font-weight:800; }
.section-subhead {
  max-width: 760px;
  margin: -4px 0 34px;
  font-size: 18px;
}

.service-card-grid {
  align-items: stretch;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  justify-content: center;
}

.service-entry-card {
  position: relative;
  display: flex;
  min-height: 210px;
  flex-direction: column;
  padding: 30px;
  border-color: rgba(210, 242, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 22px 55px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.service-entry-card:hover {
  transform: translateY(-4px);
  border-color: rgba(210, 242, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(210, 242, 255, 0.12), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 38px rgba(210, 242, 255, 0.06);
}

.service-entry-card .eyebrow {
  margin-bottom: 16px;
}

.service-entry-card h3 {
  margin-bottom: 26px;
  font-size: 25px;
  letter-spacing: -0.03em;
}

.service-entry-card p {
  margin-bottom: 28px;
}

.service-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card-cta::after {
  content: ">";
  transition: transform 0.2s ease;
}

.service-entry-card:hover .service-card-cta::after {
  transform: translateX(4px);
}

.reality-intro {
  max-width: 860px;
  margin: 0 auto 34px;
  text-align: center;
}

.home-page {
  position: relative;
  isolation: isolate;
  background: #010d30;
}

.home-page::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(1, 13, 48, 0.12), rgba(1, 13, 48, 0.18)),
    url("assets/lcs-first-post-image.png");
  background-size: auto, 680px 680px;
  background-position: center, center top;
  background-repeat: no-repeat, repeat;
  opacity: 0.2;
  pointer-events: none;
}

.home-page::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 50% 5%, rgba(166, 138, 255, 0.14), transparent 26%),
    radial-gradient(circle at 90% 58%, rgba(166, 138, 255, 0.08), transparent 24%);
  pointer-events: none;
}

.home-page .button {
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.home-page .button-primary,
.home-page .button-accent {
  background: var(--pink);
  color: var(--navy);
  box-shadow: 0 14px 34px rgba(166, 138, 255, 0.18);
}

.home-page .button-primary:hover,
.home-page .button-accent:hover,
.home-page .button-primary:focus-visible,
.home-page .button-accent:focus-visible {
  transform: translateY(-1px);
  background: #b7a0ff;
  box-shadow: 0 18px 44px rgba(166, 138, 255, 0.26);
}

.home-page .button-secondary:hover,
.home-page .button-secondary:focus-visible {
  border-color: rgba(166, 138, 255, 0.58);
  background: rgba(166, 138, 255, 0.1);
  color: #fff;
  box-shadow: 0 14px 34px rgba(166, 138, 255, 0.12);
}

.home-hero {
  position: relative;
  padding-top: 76px;
  padding-bottom: 66px;
  background: transparent;
}

.home-hero .container {
  position: relative;
}

.home-hero h1 {
  margin-bottom: 22px;
}

.home-hero .gradient-text {
  color: #dcd4ff;
}

.home-drift-section {
  position: relative;
  padding-top: 82px;
  padding-bottom: 62px;
  background: transparent;
}

.home-drift-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: none;
  pointer-events: none;
}

.home-drift-section .reality-intro {
  margin-bottom: 24px;
}

.home-drift-section .reality-intro h2 {
  margin-bottom: 14px;
}

.home-drift-section .section-subhead {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 22px;
  text-align: center;
  line-height: 1.6;
  font-weight: 400;
}

.early-signs-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
  max-width: 1040px;
  margin: 0 auto;
}

.early-signs-column {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 34px 32px;
  border: 1px solid rgba(210, 242, 255, 0.03);
  border-radius: 26px;
  background: #06173d;
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.024);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.early-signs-column:hover {
  transform: translateY(-4px);
  border-color: rgba(166, 138, 255, 0.07);
  background: #081d47;
  box-shadow:
    0 28px 68px rgba(0, 0, 0, 0.18),
    0 0 28px rgba(166, 138, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.early-signs-column h3 {
  margin: 0 0 22px;
  color: #f7fbff;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.early-signs-column ul {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.early-signs-column li {
  position: relative;
  padding-left: 16px;
  color: rgba(234, 246, 251, 0.84);
  font-size: 15px;
  line-height: 1.7;
}

.early-signs-column li::before {
  content: "";
  position: absolute;
  top: 0.82em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(210, 242, 255, 0.58);
}

.early-signs-closing {
  max-width: 720px;
  margin: 40px auto 0;
  text-align: center;
}

.early-signs-closing p {
  margin: 0;
  color: #f7f3ff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.35;
}

.early-signs-closing span {
  display: inline-block;
  margin-top: 10px;
  color: #d8ccff;
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-services-section {
  position: relative;
  padding-top: 54px;
  padding-bottom: 58px;
  background: transparent;
}

.home-changes-section {
  padding-top: 22px;
  padding-bottom: 28px;
}

.home-changes-panel {
  padding: 34px 34px 32px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(248, 253, 255, 0.94), rgba(226, 244, 252, 0.9));
  box-shadow:
    0 24px 54px rgba(0, 6, 24, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.66);
}

.home-changes-intro {
  max-width: 760px;
  margin-bottom: 30px;
}

.home-changes-intro .eyebrow {
  color: rgba(1, 13, 48, 0.58);
}

.home-changes-intro h2 {
  margin-bottom: 14px;
  color: #071633;
}

.home-changes-intro p {
  margin: 0;
  color: rgba(7, 22, 51, 0.76);
  font-size: 18px;
  line-height: 1.65;
  max-width: 700px;
}

.home-changes-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.home-change-pillar {
  min-height: 100%;
  padding: 24px 22px 22px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow:
    0 18px 34px rgba(7, 22, 51, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.5);
}

.home-change-number {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(108, 85, 196, 0.82);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-change-pillar h3 {
  margin: 0 0 12px;
  color: #071633;
  font-size: 19px;
}

.home-change-pillar p {
  margin: 0;
  color: rgba(7, 22, 51, 0.72);
  line-height: 1.65;
}

.home-services-section .section-subhead {
  max-width: 780px;
}

.home-services-section .service-entry-card:hover {
  border-color: rgba(166, 138, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(166, 138, 255, 0.1), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 28px 70px rgba(0, 0, 0, 0.28),
    0 0 38px rgba(166, 138, 255, 0.09);
}

.home-services-section .service-entry-card:hover .service-card-cta {
  color: #d8ccff;
}

.home-process-section {
  position: relative;
  padding-bottom: 88px;
  background: transparent;
}

.home-process-section.process-section {
  padding-top: 30px;
  padding-bottom: 88px;
}

.home-process-section .process-steps::before {
  background: linear-gradient(90deg, transparent, rgba(166, 138, 255, 0.42), transparent);
}

.home-process-section .process-card::after {
  border-top-color: rgba(166, 138, 255, 0.58);
  border-right-color: rgba(166, 138, 255, 0.58);
}

.home-process-section .process-number {
  border-color: rgba(166, 138, 255, 0.36);
  background: rgba(166, 138, 255, 0.1);
  color: #d8ccff;
}

.home-contact-section {
  position: relative;
  padding-top: 62px;
  background: transparent;
}

.home-contact-section .contact.card {
  gap: 30px;
  padding: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
  border-color: rgba(210, 242, 255, 0.18);
  box-shadow:
    0 18px 40px rgba(0, 0, 0, 0.16),
    0 0 44px rgba(166, 138, 255, 0.06);
}

.home-contact-section .contact.card h2 {
  margin-bottom: 14px;
}

.home-contact-section .contact.card p {
  max-width: 560px;
}

.home-contact-section .form {
  gap: 12px;
}

.home-contact-section input:focus,
.home-contact-section select:focus,
.home-contact-section textarea:focus {
  border-color: rgba(166, 138, 255, 0.6);
  outline: none;
  box-shadow: 0 0 0 3px rgba(166, 138, 255, 0.14);
}

.home-contact-section a:hover {
  color: #d8ccff;
}

.story { display:grid; grid-template-columns:.9fr 1.1fr; gap:44px; align-items:center; }.story-image { border-radius:34px; overflow:hidden; border:1px solid var(--line); background:var(--panel); padding:18px; }.contact { display:grid; grid-template-columns:.9fr 1.1fr; gap:34px; align-items:start; }.form { display:grid; gap:14px; }.form-row { display:grid; grid-template-columns:1fr 1fr; gap:14px; }
input,select,textarea { width:100%; border:1px solid var(--line); border-radius:12px; background:rgba(255,255,255,.08); color:#fff; padding:14px 15px; font:inherit; } select,select option { color:var(--navy); } textarea { min-height:132px; resize:vertical; } ::placeholder { color:#b7c4ce; }
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}
.service-hero { padding:70px 0 46px; text-align:center; }.service-title { max-width:none; white-space:nowrap; }.service-hero .container { display:flex; flex-direction:column; align-items:center; }.service-hero .actions { order:-3; justify-content:center; margin-bottom:18px; }.service-hero .eyebrow { order:-2; }.service-hero .service-title { order:-1; max-width:12ch; margin:0 auto 14px; white-space:normal; line-height:.98; }.service-hero .lead { order:0; max-width:720px; margin:0 auto; text-align:center; font-size:1.15rem; color:rgba(234,246,251,.82); }.service-grid { grid-template-columns:repeat(2,minmax(0,1fr)); }.service-card { min-height:210px; }.service-card-head { display:flex; justify-content:space-between; gap:16px; align-items:flex-start; }
.services-overview-band {
  padding-top: 10px;
  padding-bottom: 18px;
}

.services-overview-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 470px);
  gap: 34px;
  align-items: stretch;
  padding: 34px;
  border: 1px solid rgba(210, 242, 255, 0.14);
  border-radius: 34px;
  background:
    radial-gradient(circle at top left, rgba(210, 242, 255, 0.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(166, 138, 255, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.services-overview-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 8px 4px 8px 2px;
}

.services-overview-copy .eyebrow {
  margin-bottom: 18px;
}

.services-overview-copy h2 {
  max-width: 14ch;
  margin-bottom: 18px;
}

.services-overview-copy p {
  max-width: 58ch;
  margin-bottom: 0;
  font-size: 18px;
}

.services-overview-actions {
  margin-top: 28px;
}

.services-overview-actions .button {
  min-width: 220px;
  border-color: rgba(210, 242, 255, 0.2);
  background: rgba(210, 242, 255, 0.08);
  color: var(--text);
}

.services-overview-actions .button:hover {
  border-color: rgba(210, 242, 255, 0.36);
  background: rgba(210, 242, 255, 0.14);
}

.services-overview-panel {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid rgba(210, 242, 255, 0.16);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.04)),
    rgba(8, 24, 66, 0.9);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 18px 40px rgba(0, 0, 0, 0.18);
}

.services-overview-item {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) 18px;
  gap: 14px;
  align-items: start;
  padding: 14px 2px;
  border-radius: 18px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  cursor: pointer;
}

.services-overview-item + .services-overview-item {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.services-overview-item:hover,
.services-overview-item:focus-visible {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-1px);
}

.services-overview-item:focus-visible {
  outline: 1px solid rgba(210, 242, 255, 0.34);
  outline-offset: 2px;
}

.services-overview-item-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(210, 242, 255, 0.2);
  border-radius: 999px;
  background: rgba(210, 242, 255, 0.08);
  color: var(--blue);
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.services-overview-item-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
  color: rgba(210, 242, 255, 0.72);
  font-size: 14px;
  font-weight: 800;
  transition: transform 0.2s ease, color 0.2s ease;
}

.services-overview-item:hover .services-overview-item-arrow,
.services-overview-item:focus-visible .services-overview-item-arrow {
  color: var(--blue);
  transform: translateX(3px);
}

.services-overview-item-text h3 {
  margin-bottom: 6px;
  font-size: 17px;
  line-height: 1.3;
}

.services-overview-item-text p {
  margin-bottom: 0;
  font-size: 15px;
  line-height: 1.6;
}

.footer { border-top:1px solid var(--line); margin-top:60px; padding:42px 0; background:rgba(1,13,48,.72); }.footer .logo { height:52px; }.footer-grid { display:grid; grid-template-columns:1.4fr 1fr 1fr; gap:28px; }.footer ul { list-style:none; margin:0; padding:0; display:grid; gap:10px; color:var(--muted); }.footer-bottom { display:flex; justify-content:space-between; gap:20px; border-top:1px solid var(--line); margin-top:34px; padding-top:24px; color:var(--muted); }.footer-legal { display:flex; flex-wrap:wrap; gap:10px 18px; align-items:center; font-size:0.9rem; }.footer-legal a { color:var(--muted); }.footer-linkedin-logo { width: 28px; height: 28px; display: block; }
.service-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.service-column {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.column-header {
  margin-bottom: 4px;
}

.column-header h2 {
  margin: 0 0 8px;
  font-size: 1.5rem;
  line-height: 1.1;
}

.column-header p {
  margin: 0;
  max-width: 60ch;
  opacity: 0.82;
}

.service-accordion {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.service-item:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.045);
}

.service-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.service-item summary::-webkit-details-marker {
  display: none;
}

.service-item summary::after {
  content: "+";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  transition: transform 0.2s ease, background 0.2s ease;
}

.service-item[open] summary::after {
  content: "-";
  background: rgba(255, 255, 255, 0.14);
}

.service-item-content {
  padding: 0 24px 22px;
  color: rgba(255, 255, 255, 0.84);
  line-height: 1.7;
  max-width: 62ch;
}

.service-item[open] {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.05);
}

.service-story-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

.service-story-card {
  border-color: rgba(210, 242, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.service-story-card h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.service-prose {
  display: grid;
  gap: 14px;
}

.service-prose p:last-child {
  margin-bottom: 0;
}

.service-bullet-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 12px;
  line-height: 1.7;
}

.service-includes-intro {
  max-width: 800px;
  margin: 0 auto 34px;
  text-align: center;
}

.service-includes-intro h2 {
  margin-bottom: 14px;
}

.service-includes-intro p {
  max-width: 720px;
  margin: 0 auto;
}

.service-soft-cta {
  border-color: rgba(210, 242, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.service-soft-cta h2 {
  margin-bottom: 14px;
}

.monitoring-capability-chips {
  list-style: none;
  padding-left: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  color: var(--text);
}

.monitoring-capability-chips li {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid rgba(210, 242, 255, 0.14);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.025);
  color: rgba(248, 251, 255, 0.92);
  line-height: 1.5;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
  transition: background 0.2s ease, border-color 0.2s ease;
}

.monitoring-capability-chips li:hover {
  border-color: rgba(210, 242, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.03);
}

.devops-hero .lead {
  max-width: 860px;
}

.devops-supporting-line {
  max-width: 720px;
  margin: -12px auto 0;
  font-size: 17px;
}

.devops-context {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.devops-context-copy {
  max-width: 680px;
}

.devops-signals {
  border-color: rgba(210, 242, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.devops-intro {
  margin-bottom: 42px;
}

.devops-module {
  margin-bottom: 28px;
  padding: 32px;
  border-color: rgba(210, 242, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.devops-module:last-child {
  margin-bottom: 0;
}

.devops-module-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 24px;
  align-items: end;
  margin-bottom: 28px;
}

.devops-module-head h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.4vw, 40px);
}

.devops-module-head p {
  margin-bottom: 0;
}

.devops-growth {
  border-color: rgba(210, 242, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.devops-growth-grid {
  margin-top: 28px;
}

.devops-growth-grid .card {
  min-height: 100%;
  background: rgba(255, 255, 255, 0.03);
}

.process-section {
  padding: 40px 0 92px;
}

.process-intro {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

.process-intro p {
  max-width: 760px;
  margin: 0 auto;
  font-size: 18px;
}

.process-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-steps::before {
  content: "";
  position: absolute;
  left: 16%;
  right: 16%;
  top: 52px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 242, 255, 0.35), transparent);
}

.process-card {
  position: relative;
  min-height: 260px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.035));
  padding: 30px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.process-card::after {
  content: "";
  position: absolute;
  top: 44px;
  right: -18px;
  width: 10px;
  height: 10px;
  border-top: 1px solid rgba(210, 242, 255, 0.55);
  border-right: 1px solid rgba(210, 242, 255, 0.55);
  transform: rotate(45deg);
}

.process-card:last-child::after {
  display: none;
}

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 26px;
  border: 1px solid rgba(210, 242, 255, 0.28);
  border-radius: 999px;
  background: rgba(210, 242, 255, 0.08);
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.process-card h3 {
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 16px;
}

.process-card p {
  margin: 0;
}

.monitoring-execution-grid {
  display: flex;
  gap: 28px;
  align-items: stretch;
}

.monitoring-execution-card {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: rgba(255, 255, 255, 0.03);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.monitoring-execution-card .eyebrow {
  letter-spacing: 0.16em;
}

.monitoring-execution-card h2 {
  font-weight: 800;
}

.monitoring-impact-card h2 {
  margin-bottom: 26px;
}

.monitoring-impact-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.monitoring-impact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.monitoring-impact-icon {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  margin-top: 3px;
  color: rgba(210, 242, 255, 0.72);
}

.monitoring-impact-icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.monitoring-impact-copy {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.monitoring-impact-copy h3 {
  margin: 0;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.monitoring-impact-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
}

.monitoring-workflow-card {
  justify-content: space-between;
}

.monitoring-workflow {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 22px;
  margin-top: 30px;
  align-items: stretch;
}

.monitoring-workflow::before,
.monitoring-workflow::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.monitoring-workflow::before {
  left: 25%;
  right: 25%;
  top: calc(50% - 1px);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(210, 242, 255, 0.14), transparent);
}

.monitoring-workflow::after {
  top: 20%;
  bottom: 20%;
  left: 50%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(210, 242, 255, 0.12), transparent);
}

.monitoring-workflow-step {
  position: relative;
  z-index: 1;
  padding: 26px 26px 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.monitoring-workflow-number {
  display: inline-block;
  margin-bottom: 10px;
  color: rgba(210, 242, 255, 0.52);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.monitoring-workflow-step h3 {
  margin: 0 0 8px;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.25;
}

.monitoring-workflow-step p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.86rem;
  line-height: 1.5;
}

.engagement-timeline {
  padding: 42px;
  border: 1px solid rgba(210, 242, 255, 0.18);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(248, 251, 255, 0.94), rgba(210, 242, 255, 0.88)),
    rgba(248, 251, 255, 0.9);
  color: var(--navy);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    0 24px 70px rgba(0, 0, 0, 0.22),
    0 0 42px rgba(210, 242, 255, 0.08);
}

.process-timeline-intro {
  margin-bottom: 42px;
}

.process-timeline-intro .eyebrow {
  color: rgba(1, 13, 48, 0.66);
}

.process-timeline-intro p {
  color: rgba(1, 13, 48, 0.72);
}

.timeline-stepper {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  max-width: 820px;
  margin: 0 auto 34px;
}

.timeline-stepper::before {
  content: "";
  position: absolute;
  top: 42px;
  left: 16%;
  right: 16%;
  height: 1px;
  background: linear-gradient(90deg, rgba(1, 13, 48, 0.08), rgba(210, 242, 255, 0.48), rgba(1, 13, 48, 0.08));
}

.timeline-step-button {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: rgba(1, 13, 48, 0.74);
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.timeline-step-button span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border: 1px solid rgba(1, 13, 48, 0.12);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(255, 255, 255, 0.74)),
    rgba(255, 255, 255, 0.8);
  color: rgba(1, 13, 48, 0.72);
  box-shadow: 0 16px 36px rgba(1, 13, 48, 0.12);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.timeline-step-button strong {
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-step-button:hover span,
.timeline-step-button:focus-visible span {
  transform: translateY(-2px);
  border-color: rgba(210, 242, 255, 0.62);
  box-shadow: 0 18px 42px rgba(210, 242, 255, 0.2);
}

.timeline-step-button.is-active {
  color: var(--navy);
}

.timeline-step-button.is-active span {
  border-color: rgba(210, 242, 255, 0.76);
  background: var(--blue);
  color: var(--navy);
  box-shadow:
    0 20px 48px rgba(210, 242, 255, 0.28),
    inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.timeline-content-panel {
  max-width: 860px;
  margin: 0 auto;
  padding: 34px;
  border: 1px solid rgba(1, 13, 48, 0.1);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 44px rgba(1, 13, 48, 0.12);
  transition: opacity 0.18s ease, transform 0.18s ease;
}

.timeline-content-panel.is-switching {
  opacity: 0;
  transform: translateY(6px);
}

.timeline-panel-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: rgba(1, 13, 48, 0.72);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-content-panel h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.04em;
}

.timeline-content-panel p {
  max-width: 720px;
  color: rgba(1, 13, 48, 0.72);
  font-size: 18px;
}

.timeline-content-panel ul {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.timeline-content-panel li {
  position: relative;
  padding-left: 22px;
  color: rgba(1, 13, 48, 0.78);
  line-height: 1.6;
}

.timeline-content-panel li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateY(-50%);
}

@media (max-width: 900px) {
  .services-overview-grid {
    grid-template-columns: 1fr;
    padding: 26px;
  }

  .services-overview-copy {
    padding: 0;
  }

  .services-overview-copy h2 {
    max-width: none;
  }

  .services-overview-copy p {
    font-size: 17px;
  }

  .services-overview-actions .button {
    min-width: 0;
    width: 100%;
  }

  .services-overview-panel {
    padding: 20px;
  }

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

  .service-story-grid,
  .devops-context,
  .devops-module-head {
    grid-template-columns: 1fr;
  }

  .monitoring-capability-chips {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .home-drift-section {
    padding-top: 58px;
    padding-bottom: 50px;
  }

  .home-services-section {
    padding-top: 48px;
    padding-bottom: 54px;
  }

  .home-changes-section {
    padding-top: 18px;
    padding-bottom: 24px;
  }

  .home-changes-panel {
    padding: 28px 24px;
  }

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

  .home-process-section,
  .home-process-section.process-section {
    padding-top: 26px;
    padding-bottom: 68px;
  }

  .home-contact-section {
    padding-top: 54px;
    padding-bottom: 66px;
  }

  .early-signs-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .early-signs-column {
    padding: 30px 26px;
    border-radius: 24px;
  }

  .home-change-pillar {
    padding: 22px 20px;
    border-radius: 18px;
  }

  .early-signs-closing {
    margin-top: 28px;
  }

  .early-signs-closing p {
    font-size: 21px;
  }

  .process-section {
    padding: 28px 0 72px;
  }

  .process-steps {
    grid-template-columns: 1fr;
  }

  .process-steps::before,
  .process-card::after {
    display: none;
  }

  .process-card {
    min-height: auto;
  }

  .monitoring-execution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .monitoring-execution-card {
    flex: none;
    width: 100%;
    min-height: 0;
  }

  .monitoring-workflow-card {
    justify-content: flex-start;
  }

  .monitoring-impact-list {
    gap: 18px;
  }

  .monitoring-workflow {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .monitoring-workflow::before,
  .monitoring-workflow::after {
    display: none;
  }

  .service-story-card h2,
  .monitoring-execution-card h2,
  .service-soft-cta h2 {
    line-height: 1.12;
    text-wrap: pretty;
  }

  .monitoring-workflow-step h3,
  .monitoring-impact-copy h3 {
    line-height: 1.35;
    text-wrap: pretty;
  }

  .engagement-timeline {
    padding: 26px;
  }

  .process-timeline-intro {
    margin-bottom: 30px;
  }

  .timeline-stepper {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 28px;
  }

  .timeline-stepper::before {
    top: 42px;
    bottom: 42px;
    left: 42px;
    right: auto;
    width: 1px;
    height: auto;
    background: linear-gradient(180deg, rgba(1, 13, 48, 0.08), rgba(210, 242, 255, 0.46), rgba(1, 13, 48, 0.08));
  }

  .timeline-step-button {
    grid-template-columns: 84px minmax(0, 1fr);
    justify-items: start;
    align-items: center;
    text-align: left;
  }

  .timeline-content-panel {
    padding: 26px;
  }

  .devops-module {
    padding: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }

  .no-break {
    white-space: normal;
  }
}

@media (max-width: 640px) {
  .home-changes-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width:900px) { .site-header { position:static; padding:12px 0; }.nav { border-radius:28px; align-items:flex-start; flex-direction:column; gap:16px; padding:18px; }.menu { width:100%; flex-direction:column; align-items:flex-start; gap:12px; }.menu > a,.dropdown > a { display:block; width:100%; }.dropdown { width:100%; padding:0; }.dropdown-panel,.dropdown:hover .dropdown-panel { position:static; transform:none; display:none; width:100%; margin-top:0; box-shadow:none; }.grid-3,.grid-2,.story,.contact,.service-grid,.footer-grid,.form-row { grid-template-columns:1fr; }.hero { padding-top:56px; }.service-card-head { flex-direction:column; } }
@media (max-width:900px) { .service-title { white-space:normal; } }

.resources-dropdown .dropdown-panel { width: 380px; grid-template-columns: 1fr; }

.resource-card-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 1040px;
  margin: 0 auto;
}

.faq-page .service-title {
  max-width: 13ch;
}

.faq-sections {
  display: grid;
  gap: 28px;
}

.faq-section {
  padding: 34px;
  border: 1px solid rgba(210, 242, 255, 0.18);
  border-radius: 30px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.faq-section-head {
  max-width: 700px;
  margin-bottom: 22px;
}

.faq-section-head h2 {
  margin-bottom: 10px;
  font-size: clamp(28px, 3.2vw, 38px);
}

.faq-section-head p {
  margin: 0;
}

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

.faq-item {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  overflow: hidden;
}

.faq-item[open] {
  border-color: rgba(210, 242, 255, 0.28);
  background:
    linear-gradient(180deg, rgba(210, 242, 255, 0.08), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.04);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  cursor: pointer;
  list-style: none;
}

.faq-question::-webkit-details-marker {
  display: none;
}

.faq-question span {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
}

.faq-question::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--blue);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq-item[open] .faq-question::after {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 22px 20px;
}

.faq-answer p {
  margin: 0;
  max-width: 68ch;
}

.assessment-hero .service-title {
  white-space: normal;
}

.assessment-intro {
  max-width: 760px;
  margin: -8px auto 28px;
}

.assessment-form {
  display: grid;
  gap: 18px;
}

.assessment-question {
  padding: 28px 30px;
  border-color: rgba(210, 242, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.assessment-question-number {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.assessment-question h3 {
  margin-bottom: 18px;
  font-size: 24px;
}

.assessment-options {
  display: grid;
  gap: 12px;
}

.assessment-options label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
  justify-content: flex-start;
}

.assessment-options label:hover {
  border-color: rgba(210, 242, 255, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.assessment-options input[type="radio"] {
  width: auto;
  padding: 0;
  border: 0;
  background: transparent;
  margin-top: 2px;
  align-self: flex-start;
  margin-left: 0;
  flex: 0 0 auto;
  accent-color: var(--blue);
}

.assessment-options span {
  display: block;
  flex: 1 1 auto;
  color: var(--text);
  line-height: 1.6;
  margin: 0;
}

.assessment-submit {
  display: flex;
  justify-content: center;
  padding-top: 10px;
}

.assessment-results {
  margin-top: 28px;
  text-align: center;
  border-color: rgba(210, 242, 255, 0.2);
  background:
    linear-gradient(180deg, rgba(210, 242, 255, 0.08), rgba(255, 255, 255, 0.03)),
    rgba(255, 255, 255, 0.04);
}

.assessment-result-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--blue);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.assessment-result-link::after {
  content: " ->";
}

.contact-page-hero .service-title {
  white-space: normal;
  max-width: 15ch;
}

.contact-page-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-page-info {
  display: grid;
  gap: 18px;
}

.contact-info-card,
.contact-form-card,
.reassurance-card,
.contact-link-card {
  border-color: rgba(210, 242, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.contact-info-card h2,
.contact-form-card h2,
.reassurance-card h2 {
  font-size: 28px;
  margin-bottom: 14px;
}

.contact-support-card {
  padding: 32px;
  border-color: rgba(210, 242, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.contact-support-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.contact-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.7;
}

.contact-email-link {
  color: var(--blue);
  font-weight: 800;
}

.contact-form-card {
  padding: 32px;
}

.contact-form-primary {
  max-width: 980px;
  margin: 0 auto;
  border-color: rgba(210, 242, 255, 0.22);
  box-shadow: 0 26px 58px rgba(0, 0, 0, 0.2);
}

.contact-form-intro {
  margin-bottom: 22px;
}

.contact-form-intro p {
  max-width: 62ch;
}

.interest-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 22px;
}

.interest-pill {
  width: auto;
  padding: 10px 14px;
  border: 1px solid rgba(210, 242, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--blue);
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.interest-pill:hover,
.interest-pill.is-active {
  border-color: rgba(210, 242, 255, 0.42);
  background: rgba(210, 242, 255, 0.12);
  color: #fff;
}

.contact-page-form {
  gap: 16px;
}

.contact-page-form select {
  background-color: rgba(255, 255, 255, 0.08);
  color: #b7c4ce;
}

.contact-page-form select option {
  color: var(--navy);
}

.contact-page-form textarea {
  min-height: 180px;
}

.contact-form-footer {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.contact-form-footer .button {
  background: var(--pink);
  border-color: transparent;
  color: var(--navy);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.18);
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.contact-form-footer .button:hover,
.contact-form-footer .button:focus-visible {
  background: var(--blue);
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.22);
  outline: none;
}

.contact-form-footer p {
  margin: 0;
  font-size: 14px;
}

.privacy-consent {
  display: grid;
  gap: 10px;
}

.privacy-notice {
  margin: 0;
  max-width: 56ch;
  color: rgba(210, 242, 255, 0.76);
  font-size: 14px;
  line-height: 1.6;
}

.privacy-notice a,
.privacy-checkbox a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.privacy-checkbox {
  display: inline-flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(248, 251, 255, 0.84);
  font-size: 14px;
  line-height: 1.5;
}

.privacy-checkbox input {
  width: 16px;
  height: 16px;
  margin: 3px 0 0;
  accent-color: var(--blue);
}

.privacy-policy-card {
  padding: 40px;
  border-color: rgba(210, 242, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.035)),
    rgba(255, 255, 255, 0.04);
}

.privacy-policy-content {
  max-width: 760px;
  margin: 0 auto;
}

.privacy-policy-section + .privacy-policy-section {
  margin-top: 32px;
}

.privacy-policy-section h2 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 34px);
}

.privacy-policy-section ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  display: grid;
  gap: 10px;
  line-height: 1.7;
}

.reassurance-card {
  max-width: 820px;
  margin: 0 auto;
  padding: 24px 28px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
}

.reassurance-card h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.reassurance-card p {
  max-width: 780px;
  margin: 0 auto;
  font-size: 16px;
}

.reassurance-card .contact-list {
  list-style: none;
  padding-left: 0;
}

.contact-link-card {
  min-height: 190px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.03);
}

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

.contact-link-card .eyebrow {
  margin-bottom: 14px;
}

.contact-link-card p {
  font-size: 0.98rem;
}

.contact-support-columns .contact-info-card {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.contact-support-columns .contact-info-card + .contact-info-card {
  padding-left: 28px;
  border-left: 1px solid rgba(210, 242, 255, 0.12);
}

.contact-links-section {
  padding-top: 10px;
}

@media (max-width: 900px) {
  .resource-card-grid {
    grid-template-columns: 1fr;
  }

  .faq-section {
    padding: 26px;
    border-radius: 26px;
  }

  .faq-question {
    padding: 18px 18px 16px;
  }

  .faq-answer {
    padding: 0 18px 18px;
  }

  .contact-form-card,
  .contact-support-card,
  .reassurance-card,
  .privacy-policy-card {
    padding: 26px;
  }

  .contact-support-columns {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-support-columns .contact-info-card + .contact-info-card {
    padding-left: 0;
    padding-top: 24px;
    border-left: 0;
    border-top: 1px solid rgba(210, 242, 255, 0.12);
  }

  .interest-pills {
    gap: 8px;
  }

  .interest-pill {
    width: auto;
  }
}


