:root {
  --ink: #10202c;
  --ink-2: #273846;
  --muted: #6b7780;
  --line: #dce4e6;
  --paper: #f7f4ec;
  --surface: #fffdf8;
  --white: #ffffff;
  --teal: #0e8f87;
  --teal-dark: #0a6965;
  --gold: #d8a846;
  --coral: #d96d5b;
  --wash: #eef7f5;
  --shadow: 0 20px 60px rgba(16, 32, 44, 0.13);
  --shadow-strong: 0 28px 86px rgba(16, 32, 44, 0.18);
  --shadow-hover: 0 18px 46px rgba(16, 32, 44, 0.12);
  --radius: 8px;
  --header-height: 72px;
  color-scheme: light;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 10%, rgba(14, 143, 135, 0.08), transparent 28%),
    radial-gradient(circle at 92% 0%, rgba(216, 168, 70, 0.1), transparent 24%),
    var(--surface);
  line-height: 1.55;
  overflow-x: hidden;
}

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

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

a:hover {
  color: var(--teal-dark);
}

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

p {
  color: var(--muted);
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.08;
}

h1 {
  max-width: 780px;
  font-size: 34pt;
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.55rem, 3vw, 2.6rem);
  margin-bottom: 0.8rem;
}

h3 {
  font-size: 1.05rem;
  margin-bottom: 0.35rem;
}

.container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  max-width: 820px;
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 100;
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  transition: top 0.2s ease;
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 253, 248, 0.9);
  border-bottom: 1px solid rgba(220, 228, 230, 0.8);
  backdrop-filter: blur(20px) saturate(1.2);
}

.header-inner {
  min-height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand img {
  width: 224px;
  height: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.94rem;
  font-weight: 700;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--ink-2);
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  background: #ecf5f3;
  color: var(--teal-dark);
}

.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 26px rgba(16, 32, 44, 0.16);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta[aria-current="page"] {
  background: var(--teal);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 999px;
}

.section,
.section-tight {
  padding: 72px 0;
}

.section-tight {
  padding-top: 52px;
  padding-bottom: 52px;
}

.section-muted {
  background: var(--paper);
  border-block: 1px solid #ebe4d6;
}

.section-dark {
  background: linear-gradient(135deg, #0d1b25 0%, #10202c 52%, #16303c 100%);
  color: var(--white);
}

.section-dark p,
.section-dark .eyebrow {
  color: #cbd6d8;
}

.hero {
  min-height: min(600px, calc(100svh - var(--header-height) - 170px));
  display: flex;
  align-items: center;
  background:
    linear-gradient(115deg, rgba(14, 143, 135, 0.12), transparent 34%),
    linear-gradient(245deg, rgba(216, 168, 70, 0.14), transparent 32%),
    repeating-linear-gradient(90deg, rgba(16, 32, 44, 0.038) 0, rgba(16, 32, 44, 0.038) 1px, transparent 1px, transparent 92px),
    linear-gradient(180deg, rgba(247, 244, 236, 0.72), rgba(255, 253, 248, 0.96)),
    var(--surface);
}

.hero + .signal-strip-section {
  margin-top: -36px;
}

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

.hero-lede,
.page-hero p {
  max-width: 650px;
  font-size: 1.12rem;
}

.hero-lede {
  font-size: clamp(1.06rem, 1.35vw, 1.18rem);
}

.eyebrow {
  margin-bottom: 0.7rem;
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 26px 0 20px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  background: var(--teal);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(14, 143, 135, 0.2);
}

.button-primary:hover {
  background: var(--teal-dark);
  color: var(--white);
}

.button-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.button-secondary:hover {
  border-color: #b9c9cb;
  color: var(--ink);
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 750;
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 660px;
  margin-top: 22px;
}

.hero-meta div,
.signal-strip div,
.pricing-assurance div,
.brief-card {
  border: 1px solid rgba(220, 228, 230, 0.9);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 36px rgba(16, 32, 44, 0.08);
}

.hero-meta div {
  padding: 12px;
}

.hero-meta span,
.visual-panel span,
.signal-strip span,
.pricing-assurance span,
.brief-card span {
  display: block;
  margin-bottom: 4px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-meta strong,
.visual-panel strong,
.signal-strip strong,
.pricing-assurance strong,
.brief-card strong {
  display: block;
  color: var(--ink);
  font-size: 0.9rem;
  line-height: 1.25;
}

.hero-visual,
.page-hero-image,
.process-visual,
.platform-visual {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-strong);
}

.hero-visual {
  overflow: visible;
}

.hero-visual img,
.page-hero-image,
.process-visual img,
.platform-visual img {
  width: 100%;
  border-radius: calc(var(--radius) - 1px);
}

.hero-visual::after,
.process-visual::after,
.platform-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 22%, rgba(255, 255, 255, 0.42) 37%, transparent 52%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(16, 32, 44, 0.06));
  opacity: 0.56;
  transform: translateX(var(--shine-x, -38%));
  transition: transform 0.45s ease, opacity 0.28s ease;
}

.hero-visual:hover::after,
.process-visual:hover::after,
.platform-visual:hover::after {
  opacity: 0.72;
  transform: translateX(34%);
}

.visual-panel {
  position: absolute;
  z-index: 4;
  max-width: 250px;
  padding: 12px 14px;
  border: 1px solid rgba(220, 228, 230, 0.92);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 18px 42px rgba(16, 32, 44, 0.16);
  backdrop-filter: blur(16px);
}

.visual-panel-top {
  top: -22px;
  left: 24px;
}

.visual-panel-bottom {
  right: 24px;
  bottom: -22px;
}

.signal-strip-section {
  position: relative;
  z-index: 4;
  padding-bottom: 14px;
}

.signal-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.signal-strip div {
  padding: 18px;
}

.signal-strip p {
  margin: 8px 0 0;
  font-size: 0.92rem;
}

.split,
.process-grid,
.platform-grid,
.proof-grid,
.page-hero-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
}

.compact-split {
  gap: 32px;
}

.section-heading {
  max-width: 440px;
}

.section-intro-media {
  display: grid;
  gap: 18px;
  align-content: start;
}

.section-visual {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(220, 228, 230, 0.9);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(16, 32, 44, 0.11);
}

.section-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  height: auto;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.section-visual:hover img {
  transform: scale(1.015);
}

.section-visual-dark {
  margin-top: 20px;
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.24);
}

.contact-hero-stack {
  display: grid;
  gap: 16px;
}

.contact-visual {
  box-shadow: 0 18px 46px rgba(16, 32, 44, 0.13);
}

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

.feature-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 16px;
  padding: 18px;
  border: 1px solid #e4dccd;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.82);
}

.feature-icon,
.service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background: #e5f3f1;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 900;
}

.process-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
}

.platform-grid {
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
}

.process-copy p {
  max-width: 520px;
}

.platform-copy p {
  max-width: 520px;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 18px;
}

.platform-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(236, 245, 243, 0.72);
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 800;
}

.text-link {
  display: inline-flex;
  margin-top: 6px;
  color: var(--teal-dark);
  font-weight: 900;
  border-bottom: 2px solid rgba(14, 143, 135, 0.25);
}

.proof-grid {
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
}

.proof-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.proof-points div {
  min-height: 160px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.proof-points h3 {
  color: var(--white);
}

.cards-grid,
.pricing-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.service-strip-section {
  padding: 0 0 22px;
}

.service-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 32px rgba(16, 32, 44, 0.08);
}

.service-strip span {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  padding: 7px 11px;
  border: 1px solid rgba(220, 228, 230, 0.88);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink-2);
  font-size: 0.88rem;
  font-weight: 850;
}

.pricing-grid {
  padding-top: 18px;
}

.service-card,
.price-card,
.value-item,
.company-card,
.contact-panel,
.contact-sidebar,
.note-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 32, 44, 0.08);
}

.service-card,
.price-card,
.value-item,
.company-card,
.contact-panel,
.contact-sidebar,
.note-panel {
  padding: 22px;
}

.service-card,
.price-card,
.value-item,
.company-card,
.note-panel-accent {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.price-card::after,
.value-item::after,
.company-card::after,
.note-panel-accent::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -44px;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(14, 143, 135, 0.14);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(14, 143, 135, 0.08), transparent 62%);
  pointer-events: none;
}

.service-card::before,
.price-card::before,
.value-item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--gold), var(--coral));
  opacity: 0.58;
  transform: scaleX(0.34);
  transform-origin: left;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.service-card,
.price-card,
.value-item,
.feature-item,
.details-grid div,
.timeline div,
.proof-points div,
.cta-band {
  --hover-y: 0px;
  transform: translateY(var(--hover-y));
  transition: border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, transform 0.22s ease;
}

.service-card:hover,
.price-card:hover,
.value-item:hover,
.feature-item:hover,
.details-grid div:hover,
.timeline div:hover {
  --hover-y: -3px;
  border-color: rgba(14, 143, 135, 0.34);
  box-shadow: var(--shadow-hover);
}

.service-card:hover::before,
.price-card:hover::before,
.value-item:hover::before {
  opacity: 0.92;
  transform: scaleX(1);
}

.service-card {
  display: flex;
  min-height: 330px;
  flex-direction: column;
}

.service-card-media {
  position: relative;
  z-index: 1;
  aspect-ratio: 16 / 10;
  margin: -4px -4px 18px;
  overflow: hidden;
  border: 1px solid rgba(220, 228, 230, 0.9);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: 0 14px 30px rgba(16, 32, 44, 0.08);
}

.service-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s ease;
}

.service-card:hover .service-card-media img {
  transform: scale(1.018);
}

.service-card h2,
.value-item h2 {
  font-size: clamp(1.18rem, 2vw, 1.45rem);
}

.service-card .check-list {
  margin-top: auto;
}

.check-list {
  padding: 0;
  margin: 16px 0 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 8px;
  color: var(--ink-2);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.64em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.timeline div {
  padding: 18px;
  border: 1px solid #e4dccd;
  border-radius: var(--radius);
  background: var(--surface);
}

.timeline span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-weight: 900;
}

.price-card {
  position: relative;
  display: flex;
  min-height: 548px;
  flex-direction: column;
}

.price-card .button {
  margin-top: auto;
}

.price-card-featured {
  border-color: rgba(14, 143, 135, 0.42);
  overflow: visible;
  padding-top: 56px;
  box-shadow: 0 22px 54px rgba(14, 143, 135, 0.16);
}

.price-card-featured::after {
  display: none;
}

.pricing-hero {
  padding-bottom: 34px;
}

.pricing-hero-grid,
.contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: end;
}

.pricing-assurance {
  display: grid;
  gap: 10px;
}

.pricing-assurance div,
.brief-card {
  padding: 16px;
}

.pricing-preface {
  max-width: 780px;
  margin-bottom: 20px;
}

.pricing-preface h2 {
  max-width: 760px;
  font-size: clamp(1.35rem, 2.2vw, 2rem);
}

.pill {
  position: absolute;
  top: -19px;
  left: 28px;
  z-index: 3;
  display: inline-flex;
  width: fit-content;
  margin-bottom: 0;
  padding: 6px 10px;
  border: 1px solid rgba(14, 143, 135, 0.18);
  border-radius: 999px;
  background: #e5f3f1;
  box-shadow: 0 12px 30px rgba(16, 32, 44, 0.12);
  color: var(--teal-dark);
  font-size: 0.78rem;
  font-weight: 900;
  white-space: nowrap;
}

.price-head p {
  margin-bottom: 4px;
  color: var(--ink);
  font-weight: 900;
}

.price-head h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
}

.price-head span {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 700;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.details-grid div {
  padding: 18px;
  border: 1px solid #e4dccd;
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.84);
}

.note-panel {
  max-width: 880px;
}

.note-panel-accent {
  position: relative;
  overflow: hidden;
  border-color: rgba(14, 143, 135, 0.22);
  background:
    linear-gradient(135deg, rgba(14, 143, 135, 0.08), transparent 42%),
    var(--white);
}

.pricing-clarity-section {
  padding-top: 56px;
}

.pricing-clarity {
  display: grid;
  gap: 14px;
  align-items: stretch;
  padding: 22px;
  border: 1px solid rgba(220, 228, 230, 0.9);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(14, 143, 135, 0.09), transparent 34%),
    linear-gradient(245deg, rgba(216, 168, 70, 0.11), transparent 36%),
    rgba(255, 255, 255, 0.76);
  box-shadow: var(--shadow);
}

.pricing-clarity-head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px;
  border-radius: var(--radius);
  background: #0d1b25;
}

.pricing-clarity-head h2 {
  max-width: 760px;
}

.pricing-clarity-head p:last-child {
  max-width: 760px;
}

.pricing-clarity-head h2,
.pricing-clarity-head p {
  color: var(--white);
}

.pricing-clarity-head .eyebrow {
  color: #8bd3cc;
}

.pricing-clarity-head p:last-child {
  color: #cbd6d8;
  margin-bottom: 0;
}

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

.pricing-clarity-grid article {
  position: relative;
  overflow: hidden;
  min-height: 230px;
  padding: 18px;
  border: 1px solid rgba(220, 228, 230, 0.95);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.9);
}

.pricing-clarity-grid article::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 168, 70, 0.16), transparent 62%);
}

.pricing-clarity-grid span {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.pricing-clarity-grid h3 {
  max-width: 220px;
  margin-bottom: 12px;
  font-size: 1.22rem;
}

.pricing-clarity-grid p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

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

.company-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.company-card dt {
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 900;
  text-transform: uppercase;
}

.company-card dd {
  margin: 0;
  color: var(--ink);
  font-weight: 500;
  line-height: 1.55;
}

.company-card dd a {
  font-weight: 500;
}

.contact-grid {
  grid-template-columns: minmax(0, 1fr) 380px;
}

.form-row {
  display: grid;
  gap: 7px;
  margin-bottom: 14px;
}

label {
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #cdd8da;
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  font: inherit;
}

input,
select {
  min-height: 46px;
  padding: 0 12px;
}

textarea {
  min-height: 136px;
  padding: 12px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
.button:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible {
  outline: 3px solid rgba(14, 143, 135, 0.3);
  outline-offset: 2px;
}

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

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

.contact-hero {
  padding-bottom: 30px;
}

.brief-card {
  background:
    linear-gradient(135deg, rgba(14, 143, 135, 0.09), rgba(216, 168, 70, 0.08)),
    rgba(255, 255, 255, 0.74);
}

.contact-sidebar h2 {
  margin-bottom: 6px;
  font-size: 1rem;
}

.legal-main {
  padding: 48px 0 72px;
}

.legal-document {
  max-width: 920px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(16, 32, 44, 0.08);
}

.legal-document h1 {
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.legal-document h2 {
  margin-top: 2rem;
  font-size: 1.35rem;
}

.legal-document a {
  color: var(--teal-dark);
  font-weight: 800;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.cta-band h2 {
  margin-bottom: 0.3rem;
}

.cta-band p:last-child {
  margin-bottom: 0;
}

.site-footer {
  background: #0d1b25;
  color: var(--white);
}

.site-footer p,
.site-footer a {
  color: #c9d5d8;
}

.site-footer a:hover {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.65fr 0.85fr 1.15fr;
  gap: 32px;
  padding: 42px 0 28px;
}

.footer-grid h2 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 0.94rem;
}

.footer-grid a {
  display: block;
  margin-bottom: 8px;
}

.footer-grid img {
  margin-bottom: 14px;
  opacity: 0.96;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  font-size: 0.9rem;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom-only {
  justify-content: flex-start;
}

.not-found {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: 32px 0;
}

.not-found img {
  margin-bottom: 26px;
}

.reveal {
  --reveal-y: 14px;
  --hover-y: 0px;
  opacity: 0;
  transform: translateY(calc(var(--reveal-y) + var(--hover-y)));
  transition: opacity 0.55s ease, transform 0.55s ease, border-color 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.reveal.is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.hero-visual,
.process-visual,
.platform-visual {
  --tilt-x: 0deg;
  --tilt-y: 0deg;
  --visual-y: 0px;
  transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y)) translateY(calc(var(--reveal-y, 0px) + var(--visual-y)));
  transition: opacity 0.55s ease, transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.hero-visual:hover,
.process-visual:hover,
.platform-visual:hover {
  --visual-y: -2px;
  border-color: rgba(14, 143, 135, 0.32);
  box-shadow: 0 32px 92px rgba(16, 32, 44, 0.2);
}

.hero-visual img,
.process-visual img,
.platform-visual img {
  transition: transform 0.45s ease;
}

.hero-visual:hover img,
.process-visual:hover img,
.platform-visual:hover img {
  transform: scale(1.012);
}

.cards-grid .reveal:nth-child(2),
.pricing-grid .reveal:nth-child(2),
.values-grid .reveal:nth-child(2) {
  transition-delay: 0.06s;
}

.cards-grid .reveal:nth-child(3),
.pricing-grid .reveal:nth-child(3),
.values-grid .reveal:nth-child(3) {
  transition-delay: 0.12s;
}

.cards-grid .reveal:nth-child(4) {
  transition-delay: 0.03s;
}

.cards-grid .reveal:nth-child(5) {
  transition-delay: 0.09s;
}

.cards-grid .reveal:nth-child(6) {
  transition-delay: 0.15s;
}

@media (max-width: 980px) {
  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split,
  .process-grid,
  .platform-grid,
  .proof-grid,
  .page-hero-grid,
  .pricing-hero-grid,
  .contact-hero-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

  .pricing-clarity-grid {
    grid-template-columns: 1fr;
  }

  .pricing-clarity-head {
    min-height: auto;
  }

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

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

  .hero-visual {
    max-width: 720px;
    overflow: hidden;
  }

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

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .visual-panel {
    display: none;
  }

  .pricing-hero-grid,
  .contact-hero-grid {
    align-items: start;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 64px;
  }

  .container {
    width: min(100% - 24px, 1120px);
  }

  .header-inner {
    min-height: var(--header-height);
  }

  .brand img {
    width: 188px;
  }

  .nav-toggle {
    display: inline-block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: grid;
    gap: 2px;
    padding: 8px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .site-nav .nav-cta {
    margin-left: 0;
    justify-content: center;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px;
  }

  .section,
  .section-tight {
    padding: 46px 0;
  }

  .hero.section-tight {
    padding-top: 40px;
    padding-bottom: 28px;
  }

  .hero-grid {
    gap: 18px;
  }

  .hero-meta {
    display: none;
  }

  .hero-visual {
    max-height: 156px;
  }

  .hero-visual img {
    height: 156px;
    object-fit: cover;
    object-position: 72% center;
  }

  .hero + .signal-strip-section {
    margin-top: 0;
    padding-top: 12px;
  }

  .signal-strip div {
    padding: 14px;
  }

  .service-strip {
    justify-content: flex-start;
  }

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

  .button {
    width: 100%;
  }

  .trust-row span {
    flex: 1 1 auto;
    justify-content: center;
  }

  .cards-grid,
  .pricing-grid,
  .values-grid,
  .details-grid,
  .proof-points,
  .proof-points-wide,
  .timeline,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .feature-item {
    grid-template-columns: 46px 1fr;
    padding: 16px;
  }

  .legal-document,
  .contact-panel,
  .contact-sidebar,
  .company-card,
  .service-card,
  .price-card,
  .value-item,
  .note-panel,
  .cta-band,
  .pricing-clarity,
  .pricing-clarity-head,
  .pricing-clarity-grid article {
    padding: 18px;
  }

  .pricing-clarity-grid article {
    min-height: auto;
  }

  .price-card-featured {
    padding-top: 52px;
  }

  .price-card-featured .pill {
    left: 18px;
  }

  .pricing-assurance div,
  .brief-card {
    padding: 14px;
  }
}

@media (max-width: 420px) {
  .brand img {
    width: 164px;
  }

  .trust-row {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-visual,
  .process-visual,
  .platform-visual,
  .hero-visual:hover,
  .process-visual:hover,
  .platform-visual:hover {
    transform: none;
  }
}
