:root {
  --navy-950: #071a2c;
  --navy-900: #0b2136;
  --navy-800: #102a43;
  --navy-700: #173b5f;
  --teal: #0f766e;
  --teal-2: #14b8a6;
  --amber: #d99322;
  --green: #16a34a;
  --paper: #f6f4ef;
  --paper-2: #ebe7dc;
  --white: #ffffff;
  --ink: #0f172a;
  --muted: #64748b;
  --line: #d8d3c7;
  --line-dark: rgba(255, 255, 255, 0.16);
  --shadow: 0 28px 70px rgba(7, 26, 44, 0.16);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(7, 26, 44, 0.96);
  border-bottom: 1px solid var(--line-dark);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  width: min(var(--max), calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 232px;
}

.brand-mark {
  width: 43px;
  height: 43px;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.brand-text strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.brand-text span {
  color: #b6c6d7;
  font-size: 0.78rem;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #dbe7f3;
  font-size: 0.94rem;
}

.nav a {
  padding: 9px 0;
}

.nav a:hover {
  color: var(--teal-2);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  gap: 4px;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.btn-primary {
  color: var(--white);
  background: var(--teal);
  box-shadow: 0 16px 36px rgba(15, 118, 110, 0.24);
}

.btn-primary:hover {
  background: #115e59;
}

.btn-secondary {
  color: var(--navy-950);
  border-color: rgba(7, 26, 44, 0.18);
  background: rgba(255, 255, 255, 0.72);
}

.site-header .btn-secondary,
.site-header .btn-primary {
  box-shadow: none;
}

.btn-small {
  min-height: 39px;
  min-width: 196px;
  padding: 10px 20px;
  font-size: 0.9rem;
  white-space: nowrap;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 26, 44, 0.98), rgba(13, 42, 68, 0.97) 54%, rgba(8, 68, 75, 0.95)),
    linear-gradient(0deg, var(--navy-950), var(--navy-950));
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 44px 44px;
}

.hero-grid {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.94fr 1.06fr;
  align-items: center;
  gap: 52px;
  padding: 82px 0 74px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 15px;
  color: var(--teal-2);
  font-size: 0.79rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--amber);
}

h1 {
  max-width: 820px;
  margin-bottom: 20px;
  color: inherit;
  font-size: clamp(2.5rem, 4.8vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.lead {
  max-width: 720px;
  margin-bottom: 28px;
  color: #d5e0eb;
  font-size: clamp(1.05rem, 1.55vw, 1.18rem);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  align-items: center;
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.proof-item {
  padding: 16px;
  background: rgba(255, 255, 255, 0.065);
}

.proof-item strong {
  display: block;
  color: var(--white);
  font-size: 0.96rem;
}

.proof-item span {
  display: block;
  margin-top: 4px;
  color: #b6c6d7;
  font-size: 0.84rem;
}

.hero-visual {
  position: relative;
}

.dossier {
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.07)),
    rgba(6, 21, 36, 0.6);
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.28);
  overflow: hidden;
}

.dossier-top,
.dossier-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--line-dark);
  color: #cddbeb;
}

.dossier-top span,
.dossier-footer span {
  color: var(--teal-2);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.09em;
}

.dossier-top strong {
  color: var(--white);
}

.dossier-grid {
  display: grid;
  grid-template-columns: 1fr 190px;
  gap: 18px;
  padding: 22px;
}

.dossier-main {
  display: grid;
  gap: 13px;
}

.file-sheet {
  min-height: 360px;
  padding: 22px;
  border: 1px solid rgba(7, 26, 44, 0.18);
  border-radius: 7px;
  background: var(--paper);
  color: var(--navy-950);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.sheet-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--navy-950);
}

.sheet-head span {
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sheet-head b {
  color: var(--teal);
  font-size: 0.92rem;
}

.sheet-lines {
  display: grid;
  gap: 12px;
  margin: 22px 0;
}

.sheet-lines i {
  display: block;
  height: 9px;
  border-radius: 999px;
  background: #d9d4c8;
}

.sheet-lines i:nth-child(1) {
  width: 92%;
}

.sheet-lines i:nth-child(2) {
  width: 74%;
}

.sheet-lines i:nth-child(3) {
  width: 84%;
}

.sheet-lines i:nth-child(4) {
  width: 58%;
}

.mini-table {
  display: grid;
  grid-template-columns: 1fr auto;
  border: 1px solid #d8d3c7;
  background: var(--white);
}

.mini-table span,
.mini-table b {
  padding: 12px 13px;
  border-bottom: 1px solid #d8d3c7;
}

.mini-table span:nth-last-child(2),
.mini-table b:last-child {
  border-bottom: 0;
}

.mini-table span {
  color: #334155;
}

.mini-table b {
  color: var(--green);
}

.file-tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.file-tabs span {
  display: grid;
  place-items: center;
  min-height: 42px;
  border: 1px solid var(--line-dark);
  border-radius: 6px;
  color: #dbe7f3;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.stage-rail {
  display: grid;
  align-content: stretch;
  gap: 10px;
}

.stage-rail div {
  display: grid;
  align-content: center;
  gap: 7px;
  padding: 17px;
  border: 1px solid var(--line-dark);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.08);
}

.stage-rail span {
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 900;
}

.stage-rail b {
  color: var(--white);
}

.dossier-footer {
  justify-content: start;
  flex-wrap: wrap;
  border-top: 1px solid var(--line-dark);
  border-bottom: 0;
}

.dossier-footer b {
  padding: 5px 9px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  color: var(--white);
  font-size: 0.78rem;
}

.section {
  padding: 78px 0;
}

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

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

.section-head {
  max-width: 830px;
  margin-bottom: 34px;
}

.section-head h2,
.content h2 {
  color: var(--navy-950);
  font-size: clamp(1.85rem, 3vw, 3.05rem);
  line-height: 1.07;
  margin-bottom: 12px;
  letter-spacing: 0;
}

.section-head p,
.content p {
  color: #475569;
}

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

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

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffdf8;
}

.team-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  background: #f8fafc;
  border-bottom: 1px solid var(--line);
}

.team-card-body {
  min-height: 184px;
  padding: 20px;
}

.team-card span {
  display: block;
  margin-bottom: 10px;
  color: var(--teal);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card h3 {
  color: var(--navy-950);
  font-size: 1.2rem;
  line-height: 1.15;
  margin-bottom: 10px;
}

.team-card p {
  color: #475569;
  font-size: 0.96rem;
  line-height: 1.55;
  margin-bottom: 0;
}

.card,
.price-card,
.source-card,
.contact-card {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffdf8;
}

.grid-3 .card {
  border: 0;
  border-radius: 0;
}

.card {
  padding: 26px;
}

.card > span {
  display: inline-flex;
  margin-bottom: 38px;
  color: var(--amber);
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.card h3 {
  margin-bottom: 8px;
  color: var(--navy-950);
  font-size: 1.18rem;
}

.card p,
.card li {
  color: #475569;
}

.card ul,
.content ul,
.content ol {
  padding-left: 1.2rem;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 12px;
  height: 12px;
  border: 2px solid var(--teal);
  border-radius: 50%;
  background: transparent;
}

.process {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}

.process-step {
  display: grid;
  grid-template-columns: 74px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.process-step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 6px;
  color: var(--navy-950);
  background: #f4dfb9;
  font-weight: 900;
}

.process {
  counter-reset: step;
}

.process-step h3 {
  margin-bottom: 5px;
  color: var(--navy-950);
}

.process-step p {
  margin-bottom: 0;
  color: #475569;
}

.price-grid {
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: 18px;
  align-items: stretch;
}

.price-card {
  padding: 30px;
}

.price-card.featured {
  border-color: rgba(15, 118, 110, 0.55);
  box-shadow: inset 0 4px 0 var(--teal);
}

.price-card h3 {
  color: var(--navy-950);
  font-size: 1.45rem;
  margin-bottom: 4px;
}

.price {
  margin: 18px 0;
  color: var(--navy-950);
  font-size: 1.85rem;
  font-weight: 900;
  letter-spacing: 0;
}

.price span {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  color: var(--teal);
  background: rgba(20, 184, 166, 0.12);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.callout {
  padding: 24px;
  border-left: 4px solid var(--amber);
  border-radius: 7px;
  background: #fff8e8;
  color: #4b5563;
}

.callout strong {
  color: var(--navy-950);
}

.cta-band {
  padding: 54px 0;
  background: var(--navy-950);
  color: var(--white);
}

.cta-inner {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 30px;
}

.cta-inner h2 {
  margin-bottom: 8px;
  font-size: clamp(1.7rem, 3vw, 2.7rem);
  line-height: 1.1;
  letter-spacing: 0;
}

.cta-inner p {
  margin-bottom: 0;
  color: #dbeafe;
}

.page-hero {
  padding: 70px 0 52px;
  color: var(--white);
  background:
    linear-gradient(115deg, rgba(7, 26, 44, 0.98), rgba(13, 42, 68, 0.97) 62%, rgba(8, 68, 75, 0.95));
  border-bottom: 1px solid var(--line);
}

.page-hero .wrap {
  max-width: 920px;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 4.4rem);
}

.content {
  max-width: 900px;
}

.content h2 {
  margin-top: 42px;
}

.content h3 {
  color: var(--navy-950);
  margin-top: 28px;
  margin-bottom: 8px;
}

.table-wrap {
  overflow-x: auto;
  margin: 22px 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: #fffdf8;
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 620px;
}

th,
td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--navy-950);
  background: #eee6d5;
  font-size: 0.92rem;
}

tr:last-child td {
  border-bottom: 0;
}

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

.source-card {
  padding: 18px;
}

.source-card a {
  color: var(--teal);
  font-weight: 900;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 24px;
}

.contact-card {
  padding: 28px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-routes {
  display: grid;
  gap: 10px;
  margin: 0 0 26px;
}

.contact-routes a {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 14px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: var(--paper);
}

.contact-routes strong {
  color: var(--navy-950);
}

.contact-routes span {
  color: var(--teal);
  font-weight: 900;
  overflow-wrap: anywhere;
}

label {
  display: grid;
  gap: 7px;
  color: var(--navy-950);
  font-weight: 900;
  font-size: 0.92rem;
}

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

textarea {
  min-height: 130px;
  resize: vertical;
}

.fine-print {
  color: var(--muted);
  font-size: 0.88rem;
}

.site-footer {
  padding: 44px 0 24px;
  color: #cbd5e1;
  background: #061422;
}

.footer-grid {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.35fr 0.7fr 0.8fr;
  gap: 30px;
  align-items: start;
}

.footer-brand {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.footer-brand .brand-mark {
  width: 46px;
  height: 46px;
}

.footer-brand p {
  max-width: 470px;
  margin: 8px 0 0;
}

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

.site-footer a {
  color: #dbeafe;
}

.footer-links {
  display: grid;
  gap: 9px;
}

.copyright {
  width: min(var(--max), calc(100% - 32px));
  margin: 28px auto 0;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #94a3b8;
  font-size: 0.88rem;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 74px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line-dark);
    border-radius: 8px;
    background: var(--navy-950);
    box-shadow: var(--shadow);
  }

  .nav[data-open="true"] {
    display: grid;
  }

  .hero-grid,
  .price-grid,
  .contact-layout,
  .cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

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

  .proof-row,
  .grid-3,
  .grid-2,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .nav-wrap,
  .wrap,
  .hero-grid,
  .cta-inner,
  .footer-grid,
  .copyright {
    width: min(100% - 24px, var(--max));
  }

  .brand {
    min-width: 0;
  }

  .brand-text span {
    display: none;
  }

  .hero-grid {
    padding: 52px 0 54px;
  }

  h1 {
    font-size: 2.45rem;
  }

  .section {
    padding: 56px 0;
  }

  .hero-actions,
  .cta-actions {
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-actions .btn {
    width: 100%;
  }

  .proof-row {
    display: grid;
  }

  .dossier-grid {
    padding: 14px;
  }

  .file-sheet {
    min-height: auto;
    padding: 16px;
  }

  .stage-rail {
    grid-template-columns: 1fr 1fr;
  }

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

  .contact-routes a {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .footer-brand {
    grid-template-columns: 1fr;
  }

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