:root {
  --ink: #091321;
  --ink-soft: #142338;
  --paper: #f5f7f8;
  --white: #ffffff;
  --gold: #b57b22;
  --gold-dark: #845717;
  --gold-pale: #f2e8d8;
  --plum-gray: #8e8999;
  --text: #243248;
  --muted: #626d7c;
  --line: #dce2e8;
  --success: #23715c;
  --radius: 18px;
  --shadow: 0 22px 55px rgba(9, 19, 33, 0.1);
  --content: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--white);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea {
  font: inherit;
}

h1,
h2,
h3 {
  margin: 0;
  color: var(--ink);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(2.65rem, 6vw, 5.8rem);
}

h2 {
  font-size: clamp(2rem, 3.9vw, 3.65rem);
}

h3 {
  font-size: clamp(1.2rem, 2vw, 1.55rem);
}

p {
  margin: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  transform: translateY(-160%);
  color: var(--white);
  background: var(--ink);
  border-radius: 8px;
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 30px;
  height: 2px;
  content: "";
  background: currentColor;
}

.topbar {
  color: #dfe5ed;
  background: #060e19;
  font-size: 0.79rem;
}

.topbar .container {
  min-height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar__points,
.topbar__links {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar__points span + span,
.topbar__links a + a {
  padding-left: 16px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.topbar a {
  text-decoration: none;
}

.topbar a:hover {
  color: #f5d9ab;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(9, 19, 33, 0.09);
  backdrop-filter: blur(14px);
}

.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

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

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

.nav-list {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.65vw, 24px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  color: #1c293c;
  font-size: 0.93rem;
  font-weight: 680;
  text-decoration: none;
}

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

.nav-list a[aria-current="page"]::after,
.nav-list a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  color: #111827;
  background: var(--gold);
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-weight: 780;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
  background: #c68b2d;
  border-color: #c68b2d;
}

.button--light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 255, 255, 0.42);
}

.button--light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--white);
}

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

.button--dark:hover {
  background: var(--ink-soft);
  border-color: var(--ink-soft);
}

.button--text {
  min-height: auto;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 0;
}

.button--text::after {
  content: "→";
}

.button--text:hover {
  transform: none;
  color: var(--gold-dark);
  background: transparent;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle svg {
  width: 23px;
  height: 23px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  background: radial-gradient(circle at 22% 20%, rgba(181, 123, 34, 0.14), transparent 34%);
}

.hero-grid {
  position: relative;
  min-height: 670px;
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(350px, 0.86fr);
}

.hero-copy {
  max-width: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 86px 64px 76px 0;
}

.hero .eyebrow {
  color: #d7ad6e;
}

.hero h1,
.page-hero h1 {
  color: var(--white);
}

.hero h1 span {
  color: #d2a156;
}

.hero-lead {
  max-width: 640px;
  margin-top: 28px;
  color: #d8e0ea;
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  line-height: 1.62;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-trust div {
  padding-right: 20px;
}

.hero-trust div + div {
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-trust strong {
  display: block;
  color: var(--white);
  font-size: 1rem;
}

.hero-trust span {
  display: block;
  margin-top: 3px;
  color: #aeb9c6;
  font-size: 0.81rem;
}

.hero-visual {
  position: relative;
  min-height: 670px;
}

.hero-visual::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, var(--ink) 0%, transparent 24%), linear-gradient(180deg, transparent 55%, rgba(9, 19, 33, 0.72) 100%);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-badge {
  position: absolute;
  z-index: 3;
  right: 26px;
  bottom: 26px;
  max-width: 230px;
  padding: 18px 20px;
  color: #e8edf3;
  background: rgba(5, 12, 22, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  backdrop-filter: blur(12px);
  font-size: 0.9rem;
}

.hero-badge strong {
  display: block;
  margin-bottom: 4px;
  color: #f0c27c;
}

.section {
  padding: clamp(76px, 10vw, 126px) 0;
}

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

.section--ink {
  color: #dbe3ec;
  background: var(--ink);
}

.section--ink h2,
.section--ink h3 {
  color: var(--white);
}

.section--ink .eyebrow {
  color: #d7ad6e;
}

.section-header {
  max-width: 760px;
  margin-bottom: 48px;
}

.section-header p {
  max-width: 680px;
  margin-top: 20px;
  color: var(--muted);
  font-size: 1.08rem;
}

.section--ink .section-header p {
  color: #aeb9c6;
}

.intro-band {
  border-bottom: 1px solid var(--line);
}

.intro-band__inner {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(38px, 8vw, 100px);
  align-items: start;
  padding: 50px 0;
}

.intro-band__title {
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 780;
}

.intro-band__copy {
  display: grid;
  gap: 14px;
  color: var(--muted);
}

.intro-band__copy strong {
  color: var(--ink);
}

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

.service-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: #c9ae83;
  box-shadow: var(--shadow);
}

.service-card__number {
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 820;
  letter-spacing: 0.1em;
}

.service-card h3 {
  margin-top: 58px;
}

.service-card p {
  margin-top: 15px;
  color: var(--muted);
}

.service-card__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 24px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 780;
}

.service-card__link span:last-child {
  color: var(--gold-dark);
  font-size: 1.3rem;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
}

.process-step {
  min-height: 290px;
  padding: 30px;
  background: var(--ink);
}

.process-step__number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  color: #edc689;
  border: 1px solid rgba(237, 198, 137, 0.5);
  border-radius: 50%;
  font-size: 0.82rem;
  font-weight: 800;
}

.process-step h3 {
  margin-top: 58px;
  font-size: 1.28rem;
}

.process-step p {
  margin-top: 14px;
  color: #aeb9c6;
  font-size: 0.94rem;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.split-card {
  position: relative;
  overflow: hidden;
  min-height: 450px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(32px, 5vw, 58px);
  color: var(--white);
  background: var(--ink-soft);
  border-radius: var(--radius);
}

.split-card:nth-child(2) {
  background: #253046;
}

.split-card::before {
  position: absolute;
  top: -80px;
  right: -80px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.split-card h3 {
  max-width: 440px;
  color: var(--white);
  font-size: clamp(1.9rem, 3vw, 2.85rem);
}

.split-card p {
  max-width: 500px;
  margin-top: 18px;
  color: #c7d0dc;
}

.split-card a {
  margin-top: 28px;
  color: #f0c27c;
  font-weight: 760;
  text-decoration: none;
}

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

.case-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.case-card__tag {
  display: inline-flex;
  padding: 6px 10px;
  color: var(--gold-dark);
  background: var(--gold-pale);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.case-card h3 {
  margin-top: 28px;
}

.case-card p {
  margin-top: 14px;
  color: var(--muted);
}

.trust-panel {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: clamp(48px, 9vw, 110px);
  align-items: center;
}

.trust-panel__mark {
  position: relative;
  min-height: 440px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 48px;
  background: var(--ink);
  border-radius: var(--radius);
}

.trust-panel__mark::after {
  position: absolute;
  width: 310px;
  height: 310px;
  content: "";
  border: 1px solid rgba(181, 123, 34, 0.35);
  border-radius: 50%;
}

.trust-panel__mark strong {
  position: relative;
  z-index: 1;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1;
  text-align: center;
}

.trust-panel__mark span {
  display: block;
  margin-top: 14px;
  color: #d7ad6e;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.trust-list {
  display: grid;
  gap: 0;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.trust-list li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 12px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
}

.trust-list li::before {
  color: var(--success);
  content: "✓";
  font-weight: 900;
}

.faq-list {
  max-width: 900px;
  display: grid;
  gap: 10px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.faq-list summary {
  position: relative;
  padding: 22px 58px 22px 24px;
  color: var(--ink);
  cursor: pointer;
  font-weight: 760;
  list-style: none;
}

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

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 24px;
  content: "+";
  transform: translateY(-50%);
  color: var(--gold-dark);
  font-size: 1.45rem;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "×";
}

.faq-answer {
  max-width: 760px;
  padding: 0 24px 24px;
  color: var(--muted);
}

.cta-band {
  overflow: hidden;
  padding: clamp(52px, 8vw, 82px) 0;
  color: var(--white);
  background: var(--gold-dark);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 36px;
  align-items: center;
}

.cta-band h2 {
  max-width: 720px;
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.cta-band p {
  max-width: 650px;
  margin-top: 16px;
  color: #f2e3ca;
}

.cta-band .button {
  color: var(--ink);
  background: var(--white);
  border-color: var(--white);
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(84px, 11vw, 144px) 0 clamp(76px, 9vw, 116px);
  color: var(--white);
  background: var(--ink);
}

.page-hero::after {
  position: absolute;
  top: -220px;
  right: -140px;
  width: 560px;
  height: 560px;
  content: "";
  border: 1px solid rgba(181, 123, 34, 0.25);
  border-radius: 50%;
}

.page-hero__inner {
  position: relative;
  z-index: 1;
  max-width: 920px;
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.6rem, 5.5vw, 5.1rem);
}

.page-hero p {
  max-width: 710px;
  margin-top: 26px;
  color: #c9d2dd;
  font-size: clamp(1.06rem, 1.5vw, 1.24rem);
}

.breadcrumbs {
  margin-bottom: 30px;
  color: #aeb9c6;
  font-size: 0.79rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.breadcrumbs li + li::before {
  margin-right: 8px;
  content: "/";
}

.breadcrumbs a {
  color: #e4e9ef;
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: clamp(48px, 8vw, 100px);
  align-items: start;
}

.prose {
  max-width: 780px;
  color: #3a4658;
}

.prose > * + * {
  margin-top: 22px;
}

.prose h2 {
  margin-top: 58px;
  font-size: clamp(1.9rem, 3vw, 2.8rem);
}

.prose h3 {
  margin-top: 38px;
}

.prose ul,
.prose ol {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.prose strong {
  color: var(--ink);
}

.prose .lead {
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.65;
}

.prose .note {
  padding: 22px 24px;
  color: #5c4829;
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
  border-radius: 0 12px 12px 0;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  padding: 18px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-weight: 670;
}

.sidebar-card {
  position: sticky;
  top: 112px;
  padding: 28px;
  color: #dbe3ec;
  background: var(--ink);
  border-radius: var(--radius);
}

.sidebar-card h2 {
  color: var(--white);
  font-size: 1.65rem;
}

.sidebar-card p {
  margin-top: 14px;
  color: #aeb9c6;
  font-size: 0.93rem;
}

.sidebar-card .button {
  width: 100%;
  margin-top: 22px;
}

.sidebar-card__links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sidebar-card__links a {
  color: #dce4ec;
  font-size: 0.9rem;
}

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

.metric {
  padding: 30px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.metric strong {
  display: block;
  color: var(--ink);
  font-size: 1.45rem;
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.9rem;
}

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

.price-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.price-card--featured {
  color: #dce4ed;
  background: var(--ink);
  border-color: var(--ink);
}

.price-card h2 {
  font-size: 1.45rem;
}

.price-card--featured h2 {
  color: var(--white);
}

.price-card__price {
  margin-top: 26px;
  color: var(--ink);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.2;
}

.price-card--featured .price-card__price {
  color: #edc689;
}

.price-card p {
  margin-top: 14px;
  color: var(--muted);
}

.price-card--featured p {
  color: #aeb9c6;
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1.12fr 0.88fr;
  gap: 22px;
}

.contact-card {
  padding: clamp(30px, 5vw, 52px);
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.contact-card--dark {
  color: #dbe3ec;
  background: var(--ink);
  border-color: var(--ink);
}

.contact-card h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
}

.contact-card--dark h2 {
  color: var(--white);
}

.contact-list {
  display: grid;
  gap: 24px;
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list span {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.contact-card--dark .contact-list span {
  color: #96a3b2;
}

.contact-list a,
.contact-list strong {
  display: inline-block;
  margin-top: 4px;
  color: var(--ink);
  font-size: 1.1rem;
}

.contact-card--dark .contact-list a,
.contact-card--dark .contact-list strong {
  color: var(--white);
}

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

.location-card {
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.location-card p {
  margin-top: 14px;
  color: var(--muted);
}

.location-card a {
  display: inline-block;
  margin-top: 20px;
  color: var(--gold-dark);
  font-weight: 760;
}

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

.post-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.post-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.post-card time,
.article-meta {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 720;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.post-card h2 {
  margin-top: 30px;
  font-size: 1.55rem;
}

.post-card p {
  margin-top: 16px;
  color: var(--muted);
}

.post-card span {
  margin-top: auto;
  padding-top: 24px;
  color: var(--gold-dark);
  font-weight: 760;
}

.article-header {
  max-width: 900px;
}

.article-header h1 {
  margin-top: 20px;
  color: var(--ink);
  font-size: clamp(2.45rem, 5vw, 4.8rem);
}

.article-prose {
  max-width: 780px;
  margin: 0 auto;
  color: #3a4658;
  font-size: 1.06rem;
}

.article-prose > * + * {
  margin-top: 22px;
}

.article-prose h2 {
  margin-top: 52px;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
}

.article-prose blockquote {
  margin-right: 0;
  margin-left: 0;
  padding: 22px 26px;
  color: var(--ink);
  background: var(--gold-pale);
  border-left: 4px solid var(--gold);
}

.article-sources {
  margin-top: 54px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.site-footer {
  padding: 72px 0 28px;
  color: #aeb9c6;
  background: #060e19;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr 0.8fr 1fr;
  gap: 48px;
}

.footer-brand img {
  width: 180px;
  filter: brightness(1.42) saturate(0.82);
}

.footer-brand p {
  max-width: 320px;
  margin-top: 22px;
  color: #919dab;
  font-size: 0.9rem;
}

.footer-col h2 {
  color: var(--white);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 11px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #aeb9c6;
  font-size: 0.9rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: #f0c27c;
}

.footer-links strong {
  color: #eef2f6;
  font-weight: 760;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  margin-top: 54px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.78rem;
}

.mobile-call {
  display: none;
}

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

:focus-visible {
  outline: 3px solid #f0b957;
  outline-offset: 3px;
}

@media (max-width: 1020px) {
  .topbar__points span:nth-child(2) {
    display: none;
  }

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

  .site-nav {
    position: fixed;
    z-index: 110;
    top: 120px;
    right: 20px;
    left: 20px;
    display: none;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: block;
  }

  .nav-list {
    align-items: stretch;
    flex-direction: column;
    gap: 0;
  }

  .nav-list a {
    display: block;
    padding: 13px 8px;
  }

  .nav-list a:not(.nav-cta)::after {
    display: none;
  }

  .nav-list .nav-cta {
    margin-top: 10px;
    text-align: center;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    max-width: none;
    padding: 76px 0 58px;
  }

  .hero-visual {
    min-height: 430px;
    margin-right: -20px;
    margin-left: -20px;
  }

  .hero-visual::before {
    background: linear-gradient(180deg, var(--ink) 0%, transparent 24%), linear-gradient(180deg, transparent 55%, rgba(9, 19, 33, 0.72) 100%);
  }

  .service-grid,
  .case-grid,
  .pricing-grid,
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .trust-panel,
  .content-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-card {
    position: static;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(calc(100% - 32px), var(--content));
  }

  .topbar .container {
    justify-content: center;
  }

  .topbar__points {
    display: none;
  }

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

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    width: 150px;
  }

  .site-nav {
    top: 104px;
    right: 16px;
    left: 16px;
  }

  .hero-copy {
    padding-top: 58px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-trust div,
  .hero-trust div + div {
    padding: 0;
    border: 0;
  }

  .hero-actions .button {
    width: 100%;
  }

  .intro-band__inner,
  .split-grid,
  .service-grid,
  .case-grid,
  .pricing-grid,
  .blog-grid,
  .location-grid,
  .metrics,
  .cta-band__inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .service-card {
    min-height: 280px;
  }

  .split-card {
    min-height: 390px;
  }

  .trust-panel__mark {
    min-height: 360px;
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .mobile-call {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #111827;
    background: #d59b42;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 999px;
    box-shadow: 0 12px 34px rgba(0, 0, 0, 0.28);
    font-weight: 820;
    text-decoration: none;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

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

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

@media print {
  .topbar,
  .site-header,
  .mobile-call,
  .cta-band,
  .site-footer,
  .sidebar-card {
    display: none !important;
  }

  body {
    color: #000;
  }

  .page-hero {
    padding: 32px 0;
    color: #000;
    background: #fff;
  }

  .page-hero h1 {
    color: #000;
  }
}
