:root {
  --ink: #111314;
  --muted: #5d6670;
  --line: #dde4ea;
  --paper: #ffffff;
  --soft: #f4f7f9;
  --blue: #075df0;
  --blue-dark: #063b9a;
  --lime: #c5ee31;
  --coral: #ff684f;
  --charcoal: #11161c;
  --shadow: 0 24px 70px rgba(17, 22, 28, 0.14);
  --max: 1160px;
}

* {
  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.6;
}

body.nav-open {
  overflow: hidden;
}

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

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

.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: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 16px clamp(18px, 4vw, 48px);
  color: #ffffff;
  transition:
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled,
.site-header.nav-active,
.legal-page .site-header {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 10px 35px rgba(17, 22, 28, 0.08);
  backdrop-filter: blur(18px);
}

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

.brand-mark {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
  line-height: 1;
}

.brand-text {
  display: grid;
  gap: 1px;
  min-width: 0;
}

.brand-text strong,
.brand-text span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.brand-text strong {
  font-size: 1rem;
}

.brand-text span {
  color: currentColor;
  font-size: 0.78rem;
  opacity: 0.74;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.5vw, 34px);
  font-size: 0.95rem;
  font-weight: 700;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 0;
  border-radius: 8px;
  color: currentColor;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-header.is-scrolled .nav-toggle,
.site-header.nav-active .nav-toggle,
.legal-page .site-header .nav-toggle {
  background: var(--soft);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 20px;
  height: 2px;
  margin: 3px 0;
  background: currentColor;
  transition:
    transform 180ms ease,
    opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: min(760px, calc(100svh - 88px));
  overflow: hidden;
  color: #ffffff;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 63% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 13, 16, 0.9) 0%, rgba(10, 13, 16, 0.68) 38%, rgba(10, 13, 16, 0.18) 74%),
    linear-gradient(180deg, rgba(10, 13, 16, 0.36), rgba(10, 13, 16, 0.1));
}

.hero-inner {
  position: relative;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 128px 0 64px;
}

.eyebrow,
.section-kicker,
.package-label {
  margin: 0 0 14px;
  color: var(--blue);
  font-size: 0.79rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero .eyebrow {
  width: fit-content;
  max-width: 100%;
  color: var(--lime);
}

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

h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(3.1rem, 8vw, 7.5rem);
  line-height: 0.94;
}

h2 {
  max-width: 780px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1.03;
}

h3 {
  margin-bottom: 12px;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.hero-copy {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.1rem, 2vw, 1.38rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 42px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
  line-height: 1.1;
  cursor: pointer;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--ink);
  background: var(--lime);
}

.button-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.1);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 170px));
  gap: 12px;
  max-width: 580px;
  margin: 0;
}

.hero-facts div {
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

.hero-facts dt {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 2px 0 0;
  font-weight: 900;
}

.section {
  padding: clamp(72px, 9vw, 124px) 0;
}

.section-band {
  padding: clamp(38px, 6vw, 72px) 0;
  background: var(--soft);
}

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

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 80px);
  align-items: center;
}

.intro-grid h2 {
  margin-bottom: 0;
  font-size: clamp(1.8rem, 3.4vw, 3.4rem);
}

.intro-grid p:last-child {
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.6vw, 1.2rem);
}

.section-heading {
  display: grid;
  gap: 8px;
  max-width: 800px;
  margin-bottom: clamp(34px, 5vw, 58px);
}

.section-heading p:last-child {
  max-width: 700px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
}

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

.service-card,
.package-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(17, 22, 28, 0.02);
}

.service-card {
  min-height: 255px;
  padding: 24px;
}

.service-card p,
.package-card p,
.package-card li {
  color: var(--muted);
}

.card-number {
  display: inline-block;
  margin-bottom: 28px;
  color: var(--coral);
  font-weight: 900;
}

.section-dark {
  color: #ffffff;
  background: var(--charcoal);
}

.section-dark .section-kicker {
  color: var(--lime);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  column-gap: 18px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.timeline span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--lime);
  font-weight: 900;
}

.timeline h3 {
  margin-bottom: 6px;
}

.timeline p {
  grid-column: 2;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

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

.package-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: clamp(24px, 3vw, 34px);
}

.package-card h3,
.package-card p {
  margin-bottom: 0;
}

.package-card ul {
  display: grid;
  gap: 10px;
  margin: 4px 0 8px;
  padding: 0;
  list-style: none;
}

.package-card li {
  position: relative;
  padding-left: 24px;
}

.package-card li::before {
  position: absolute;
  top: 0.65em;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  content: "";
  background: var(--lime);
  box-shadow: inset 0 0 0 2px var(--ink);
}

.package-card a {
  width: fit-content;
  margin-top: auto;
  color: var(--blue);
  font-weight: 900;
}

.package-featured {
  color: #ffffff;
  border-color: transparent;
  background: var(--blue);
  box-shadow: var(--shadow);
}

.package-featured .package-label {
  color: var(--lime);
}

.package-featured p,
.package-featured li,
.package-featured a {
  color: rgba(255, 255, 255, 0.88);
}

.package-featured li::before {
  box-shadow: inset 0 0 0 2px #ffffff;
}

.proof-section {
  background: var(--soft);
}

.references-section {
  background: var(--paper);
}

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

.reference-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: 0 1px 0 rgba(17, 22, 28, 0.02);
}

.reference-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--soft);
}

.reference-card div {
  padding: 24px;
}

.reference-card h3,
.reference-card p {
  margin-bottom: 10px;
}

.reference-card p:last-child {
  margin-bottom: 0;
}

.reference-card a {
  color: var(--blue);
  font-weight: 900;
}

.reference-label {
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.reference-empty {
  display: grid;
  min-height: 260px;
  background: var(--soft);
}

.reference-empty div {
  align-self: end;
}

.faq-section {
  background: var(--paper);
}

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

.faq-grid article {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

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

.proof-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(32px, 6vw, 86px);
  align-items: center;
}

.proof-copy p:last-child,
.contact-copy p {
  max-width: 620px;
  color: var(--muted);
  font-size: 1.06rem;
}

.proof-panel {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.proof-panel div {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 3px 18px;
  padding: 26px;
  border-bottom: 1px solid var(--line);
}

.proof-panel div:last-child {
  border-bottom: 0;
}

.proof-panel span {
  grid-row: span 2;
  color: var(--coral);
  font-weight: 900;
}

.proof-panel strong {
  font-size: 1.08rem;
}

.proof-panel p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  background: #ffffff;
}

.contact-details {
  display: grid;
  gap: 8px;
  margin-top: 26px;
}

.contact-details a {
  width: fit-content;
  color: var(--blue);
  font-weight: 900;
}

.contact-details span {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--soft);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 900;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #cfd8e1;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-weight: 500;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  outline: 3px solid rgba(7, 93, 240, 0.16);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
  border: 0;
  font: inherit;
  font-weight: 900;
}

.contact-form .button:disabled {
  cursor: progress;
  opacity: 0.72;
  transform: none;
}

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

.form-note {
  min-height: 24px;
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-note.is-success {
  color: #247a35;
  font-weight: 800;
}

.form-note.is-error {
  color: #b42318;
  font-weight: 800;
}

.site-footer {
  padding: 34px 0;
  color: rgba(255, 255, 255, 0.78);
  background: var(--charcoal);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-inner p {
  margin: 0;
}

.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
  font-size: 0.92rem;
}

.footer-meta a {
  font-weight: 800;
}

.footer-meta a:hover,
.footer-meta a:focus-visible {
  color: #ffffff;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding: clamp(118px, 14vw, 170px) 0 clamp(46px, 7vw, 84px);
  background: var(--soft);
}

.legal-hero h1 {
  margin-bottom: 16px;
  color: var(--ink);
  font-size: clamp(2.7rem, 7vw, 5.6rem);
}

.legal-hero p:last-child {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
}

.legal-content {
  padding: clamp(52px, 8vw, 96px) 0;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 880px);
}

.legal-card {
  padding: clamp(24px, 5vw, 52px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.legal-card h2 {
  margin: 34px 0 10px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.16;
}

.legal-card h2:first-child,
.legal-card .legal-meta + h2 {
  margin-top: 0;
}

.legal-card p,
.legal-card address,
.legal-card li {
  color: var(--muted);
}

.legal-card address {
  font-style: normal;
}

.legal-card a {
  color: var(--blue);
  font-weight: 800;
}

.legal-meta {
  margin-bottom: 26px;
  color: var(--muted);
  font-weight: 800;
}

.legal-list {
  display: grid;
  gap: 8px;
  margin: 0 0 18px;
  padding-left: 22px;
}

@media (max-width: 980px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-layout,
  .proof-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

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

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

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

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

  .brand-mark {
    width: 44px;
    height: 44px;
  }

  .brand-text span {
    display: none;
  }

  .nav-toggle {
    display: grid;
  }

  .site-nav {
    position: fixed;
    top: 70px;
    right: 14px;
    left: 14px;
    display: grid;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .site-nav a {
    padding: 14px;
    border-radius: 8px;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: var(--soft);
  }

  .site-nav a::after {
    content: none;
  }

  .hero {
    min-height: calc(100svh - 80px);
  }

  .hero-media {
    object-position: 66% center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(10, 13, 16, 0.9), rgba(10, 13, 16, 0.58)),
      linear-gradient(180deg, rgba(10, 13, 16, 0.28), rgba(10, 13, 16, 0.1));
  }

  .hero-inner {
    width: min(100% - 32px, var(--max));
    padding: 104px 0 46px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
  }

  .hero-facts div {
    padding: 10px;
  }

  .hero-facts dt {
    font-size: 0.68rem;
  }

  .hero-facts dd {
    font-size: 0.9rem;
  }

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

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

  .timeline article {
    grid-template-columns: 44px minmax(0, 1fr);
    column-gap: 14px;
  }

  .timeline span {
    width: 38px;
    height: 38px;
  }

  .proof-panel div {
    grid-template-columns: 1fr;
  }

  .proof-panel span {
    grid-row: auto;
  }

  .footer-inner {
    display: grid;
  }

  .footer-meta {
    justify-content: flex-start;
  }
}

@media (max-width: 430px) {
  .hero-actions,
  .button {
    width: 100%;
  }

  .button {
    padding-right: 14px;
    padding-left: 14px;
  }

  h1 {
    font-size: clamp(2.65rem, 15vw, 3.5rem);
  }
}

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

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