/* =========================================================
   Русрецензия — Landing CSS
   Palette: navy / cool white / matte gold
   Pure vanilla CSS — no build step required.
   ========================================================= */

/* ---------- 1. CSS Variables ---------- */
:root {
  /* Brand palette */
  --navy: #1B2A4A;
  --navy-deep: #14213A;
  --navy-soft: #243556;
  --cool: #F4F6F9;
  --cool-muted: #E6EAF1;
  --gold: #C5A059;
  --gold-soft: #D4B77A;
  --gold-deep: #A8853F;
  --white: #ffffff;

  /* Text colors */
  --text-cool: #F4F6F9;
  --text-muted-navy: #AEB9D1;
  --text-navy: #1B2A4A;
  --text-navy-muted: rgba(27, 42, 74, 0.65);

  /* Fonts */
  --font-serif: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Shadows */
  --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 10px 30px rgba(27, 42, 74, 0.1);
  --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.28);
  --shadow-hero: 0 30px 80px rgba(0, 0, 0, 0.45);

  /* Radii */
  --radius-sm: 0.375rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;

  /* Container */
  --container-max: 80rem;

  /* Header height */
  --header-h: 4.5rem;
}

/* ---------- 2. Reset / base ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text-cool);
  background-color: var(--navy);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: color 200ms ease;
}

a:hover {
  color: var(--gold);
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.15;
  color: inherit;
}

p {
  margin: 0;
}

::selection {
  background: rgba(197, 160, 89, 0.3);
  color: var(--cool);
}

/* ---------- 3. Layout primitives ---------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.section {
  padding: 4rem 0;
}
@media (min-width: 640px) {
  .section { padding: 5rem 0; }
}
@media (min-width: 1024px) {
  .section { padding: 6rem 0; }
}

.section-bg-navy { background-color: var(--navy); color: var(--text-cool); }
.section-bg-navy-deep { background-color: var(--navy-deep); color: var(--text-cool); }
.section-bg-cool { background-color: var(--cool); color: var(--text-navy); }
.section-bg-white { background-color: var(--white); color: var(--text-navy); }

/* ---------- 4. Section headings ---------- */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
}

.section-title .gold,
.section-title .text-gold,
h1 .gold,
h2 .gold,
h3 .gold {
  color: var(--gold);
}

.section-description {
  color: var(--text-muted-navy);
  font-size: 1.0625rem;
  line-height: 1.6;
  max-width: 48rem;
}

.section-bg-cool .section-description,
.section-bg-white .section-description {
  color: var(--text-navy-muted);
}

@media (min-width: 768px) {
  .section-title { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  .section-title { font-size: 2.5rem; }
}
@media (min-width: 1280px) {
  .section-title { font-size: 2.75rem; }
}

.section-header-center {
  text-align: center;
  margin: 0 auto 3rem;
  max-width: 48rem;
}

.section-header-center .section-eyebrow {
  justify-content: center;
}
.section-header-center .section-description {
  margin: 0 auto;
}

.section-header-row {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .section-header-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

/* ---------- 5. Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-align: center;
  transition: background-color 220ms ease, color 220ms ease,
              border-color 220ms ease, box-shadow 220ms ease,
              transform 220ms ease, opacity 220ms ease;
  white-space: nowrap;
}

.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

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

.btn:disabled,
.btn.is-disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.btn-lg {
  padding: 0.95rem 1.75rem;
  font-size: 1rem;
}

.btn-sm {
  padding: 0.5rem 1rem;
  font-size: 0.8125rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-gold {
  background-color: var(--gold);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 6px 18px rgba(197, 160, 89, 0.28);
}
.btn-gold:hover {
  background-color: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--navy-deep);
  box-shadow: 0 10px 28px rgba(197, 160, 89, 0.4);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background-color: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-light {
  background-color: transparent;
  color: var(--cool);
  border-color: rgba(244, 246, 249, 0.4);
}
.btn-outline-light:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: var(--gold);
  border-color: var(--gold);
}

.btn-outline-navy {
  background-color: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline-navy:hover {
  background-color: rgba(27, 42, 74, 0.05);
  color: var(--gold-deep);
  border-color: var(--gold-deep);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text-muted-navy);
  border-color: transparent;
  padding: 0.5rem 1rem;
}
.btn-ghost:hover {
  color: var(--cool);
  background-color: rgba(255, 255, 255, 0.05);
}

/* ---------- 6. Forms ---------- */
.input,
.textarea,
.select {
  width: 100%;
  display: block;
  padding: 0.625rem 0.875rem;
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  color: var(--text-cool);
  background-color: rgba(20, 33, 58, 0.6);
  border: 1.5px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius);
  transition: border-color 200ms ease, background-color 200ms ease,
              box-shadow 200ms ease;
  box-sizing: border-box;
}

.input::placeholder,
.textarea::placeholder {
  color: rgba(174, 185, 209, 0.7);
}

.input:focus,
.textarea:focus,
.select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
  background-color: rgba(20, 33, 58, 0.85);
}

.textarea {
  min-height: 120px;
  resize: vertical;
  line-height: 1.5;
}

.form-light .input,
.form-light .textarea,
.form-light .select {
  background-color: var(--white);
  color: var(--text-navy);
  border-color: rgba(27, 42, 74, 0.1);
}
.form-light .input::placeholder,
.form-light .textarea::placeholder {
  color: rgba(27, 42, 74, 0.4);
}
.form-light .input:focus,
.form-light .textarea:focus,
.form-light .select:focus {
  border-color: var(--gold);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.15);
}

.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted-navy);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.form-light .form-label {
  color: var(--text-navy-muted);
}

.form-group {
  margin-bottom: 1rem;
}

/* ---------- 7. Checkbox / Radio ---------- */
.checkbox,
.radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  cursor: pointer;
  user-select: none;
  font-size: 0.9375rem;
  color: var(--text-cool);
}
.form-light .checkbox,
.form-light .radio {
  color: var(--text-navy);
}

.checkbox input,
.radio input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.checkbox .box,
.radio .box {
  flex: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.25);
  border-radius: 4px;
  background-color: rgba(20, 33, 58, 0.6);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
  position: relative;
}
.form-light .checkbox .box,
.form-light .radio .box {
  border-color: rgba(27, 42, 74, 0.2);
  background-color: var(--white);
}

.radio .box {
  border-radius: 50%;
}

.checkbox input:checked + .box,
.radio input:checked + .box {
  background-color: var(--gold);
  border-color: var(--gold);
}

.checkbox input:checked + .box::after {
  content: "";
  width: 0.4rem;
  height: 0.7rem;
  border: solid var(--navy-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}

.radio input:checked + .box::after {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  background-color: var(--navy-deep);
  border-radius: 50%;
}

.checkbox input:focus-visible + .box,
.radio input:focus-visible + .box {
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.3);
}

/* ---------- 8. Icon box ---------- */
.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--gold);
  flex: none;
  transition: all 220ms ease;
}

.icon-box svg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-box-sm { width: 2.25rem; height: 2.25rem; }
.icon-box-md { width: 2.5rem; height: 2.5rem; }
.icon-box-lg { width: 3rem; height: 3rem; }
.icon-box-xl { width: 3.5rem; height: 3.5rem; }

.icon-box.is-gold,
.card:hover .icon-box,
.service-card:hover .icon-box,
.feature-card:hover .icon-box,
.reason-card:hover .icon-box,
.trust-card:hover .icon-box,
.workflow-card:hover .icon-box {
  background-color: var(--gold);
  color: var(--navy-deep);
}

/* ---------- 9. Utilities ---------- */
.hidden { display: none !important; }

.text-gold { color: var(--gold); }
.text-cool { color: var(--text-cool); }
.text-muted { color: var(--text-muted-navy); }
.text-navy { color: var(--text-navy); }
.bg-navy { background-color: var(--navy); }
.bg-navy-deep { background-color: var(--navy-deep); }
.bg-navy-soft { background-color: var(--navy-soft); }
.bg-cool { background-color: var(--cool); }
.bg-gold { background-color: var(--gold); }
.bg-white { background-color: var(--white); }

.gold-rule {
  height: 2px;
  border: none;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  margin: 0;
}

.gold-rule-solid {
  background: var(--gold);
  height: 2px;
  border: none;
}

.gold-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--gold);
  flex: none;
  display: inline-block;
}

.gold-dot-small {
  width: 0.375rem;
  height: 0.375rem;
  border-radius: 50%;
  background-color: var(--gold);
  flex: none;
  display: inline-block;
}

.gold-line {
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  vertical-align: middle;
}

.text-center { text-align: center; }
.text-right { text-align: right; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-8 { margin-bottom: 2rem; }
.mt-4 { margin-top: 1rem; }
.mt-8 { margin-top: 2rem; }

.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-2 { gap: 0.5rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* Gold scrollbar */
.scroll-gold {
  scrollbar-width: thin;
  scrollbar-color: var(--gold) transparent;
}
.scroll-gold::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
.scroll-gold::-webkit-scrollbar-track {
  background: transparent;
}
.scroll-gold::-webkit-scrollbar-thumb {
  background-color: var(--gold);
  border-radius: 4px;
}
.scroll-gold::-webkit-scrollbar-thumb:hover {
  background-color: var(--gold-soft);
}

/* Aura backgrounds */
.hero-aura,
.aura-gold-blue {
  position: relative;
  background-color: var(--navy);
  background-image:
    radial-gradient(circle at 18% 22%, rgba(197, 160, 89, 0.16) 0%, transparent 38%),
    radial-gradient(circle at 82% 78%, rgba(80, 110, 180, 0.16) 0%, transparent 42%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}

.grid-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
  z-index: 0;
}

.dots-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(197, 160, 89, 0.08) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

.section,
.section-bg-navy,
.section-bg-navy-deep,
.section-bg-cool,
.section-bg-white {
  position: relative;
}

.section > .container {
  position: relative;
  z-index: 1;
}

/* =========================================================
   10. HEADER
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(27, 42, 74, 0.35);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background-color 240ms ease, box-shadow 240ms ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.site-header.is-scrolled {
  background-color: var(--navy-deep);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.3);
}

.site-header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: var(--header-h);
  position: relative;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex: none;
}

.header-logo .logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background-color: var(--gold);
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  box-shadow: 0 4px 12px rgba(197, 160, 89, 0.3);
}

.header-logo .logo-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.header-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.header-logo .logo-name .gold {
  color: var(--gold);
}

.header-logo .logo-tag {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--text-muted-navy);
  margin-top: 0.15rem;
}

/* Desktop nav */
.header-nav {
  display: none;
  align-items: center;
  gap: 1.75rem;
}

.header-nav a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-cool);
  position: relative;
  padding: 0.25rem 0;
}

.header-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: var(--gold);
  transition: width 200ms ease;
}

.header-nav a:hover {
  color: var(--gold);
}
.header-nav a:hover::after {
  width: 100%;
}

.header-contacts {
  display: none;
  align-items: center;
  gap: 0.875rem;
}

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-cool);
  white-space: nowrap;
}
.header-phone svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}
.header-phone:hover {
  color: var(--gold);
}

.header-cta {
  display: none;
}

/* Hamburger */
.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(20, 33, 58, 0.4);
  cursor: pointer;
  padding: 0 9px;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background-color: var(--cool);
  border-radius: 2px;
  transition: transform 220ms ease, opacity 220ms ease;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header-bottom-rule {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 50%, transparent 100%);
  opacity: 0.6;
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(85vw, 22rem);
  background-color: var(--navy-deep);
  z-index: 200;
  transform: translateX(100%);
  transition: transform 280ms ease;
  overflow-y: auto;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
  padding: 1.25rem 1.25rem 2.5rem;
  display: flex;
  flex-direction: column;
}

.mobile-menu.is-open {
  transform: translateX(0);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 240ms ease;
}

.mobile-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mobile-menu-close {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--cool);
}

.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1.5rem;
}

.mobile-menu-nav a {
  display: block;
  padding: 0.75rem 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  color: var(--text-cool);
  border-radius: var(--radius-sm);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.mobile-menu-nav a:hover {
  color: var(--gold);
  background-color: rgba(197, 160, 89, 0.06);
}

.mobile-menu-contacts {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.mobile-menu-contacts a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-cool);
  font-size: 0.9375rem;
}
.mobile-menu-contacts svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
}

.mobile-menu-cta {
  margin-top: 1rem;
}

@media (min-width: 1024px) {
  .header-nav,
  .header-contacts,
  .header-cta {
    display: inline-flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* =========================================================
   11. HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 4rem 0 3.5rem;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .hero { padding: 5rem 0 5rem; }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3.5rem;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border: 1px solid rgba(197, 160, 89, 0.4);
  background-color: rgba(197, 160, 89, 0.1);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.hero-badge svg {
  width: 0.95rem;
  height: 0.95rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: -0.015em;
  color: var(--white);
  margin-bottom: 1.25rem;
}

@media (min-width: 640px) {
  .hero-title { font-size: 2.75rem; }
}
@media (min-width: 768px) {
  .hero-title { font-size: 3.25rem; }
}
@media (min-width: 1024px) {
  .hero-title { font-size: 3.75rem; }
}
@media (min-width: 1280px) {
  .hero-title { font-size: 4.25rem; }
}

.hero-title .gold {
  color: var(--gold);
}

.hero-subtitle {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: var(--text-muted-navy);
  margin-bottom: 2rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.875rem;
  margin-bottom: 2.5rem;
}

.hero-trust-mini {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.trust-mini-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.trust-mini-item .icon-box {
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.5rem;
}
.trust-mini-item .icon-box svg {
  width: 1rem;
  height: 1rem;
}

.trust-mini-value {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--cool);
}

.trust-mini-label {
  font-size: 0.75rem;
  color: var(--text-muted-navy);
  line-height: 1.3;
}

/* Hero fact card */
.hero-card {
  position: relative;
  background-color: var(--navy-deep);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  overflow: hidden;
  box-shadow: var(--shadow-hero);
  background-image: linear-gradient(155deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -2px;
  background: radial-gradient(circle at 70% 0%, rgba(197, 160, 89, 0.35) 0%, transparent 55%);
  filter: blur(28px);
  z-index: 0;
  pointer-events: none;
}

.hero-card > * {
  position: relative;
  z-index: 1;
}

.hero-card .card-alert {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.875rem;
  background-color: rgba(197, 160, 89, 0.15);
  border-radius: var(--radius);
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.hero-card .card-alert svg {
  width: 1.25rem;
  height: 1.25rem;
}

.hero-card .card-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted-navy);
  margin-bottom: 0.4rem;
}

.hero-card .card-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.hero-card .big-number {
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

@media (min-width: 640px) {
  .hero-card .big-number { font-size: 5.5rem; }
}
@media (min-width: 1024px) {
  .hero-card .big-number { font-size: 6.5rem; }
}
@media (min-width: 1280px) {
  .hero-card .big-number { font-size: 7rem; }
}

.hero-card .big-number-caption {
  font-size: 0.9375rem;
  color: var(--text-muted-navy);
  margin-bottom: 1.25rem;
}

.hero-card .card-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.hero-card .card-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-cool);
  line-height: 1.4;
}

.hero-card .card-list li::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--gold);
  flex: none;
  margin-top: 0.55rem;
}

/* =========================================================
   12. CONSULTATION WIZARD
   ========================================================= */
.wizard {
  position: relative;
  background-color: var(--navy-deep);
  overflow: hidden;
}

.wizard-card {
  background-color: rgba(36, 53, 86, 0.6);
  border: 1px solid rgba(197, 160, 89, 0.4);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .wizard-card { padding: 2.5rem; }
}

.wizard-progress {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  position: relative;
}

.wizard-progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: none;
  z-index: 2;
  position: relative;
}

.wizard-progress-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: var(--text-muted-navy);
  font-weight: 700;
  font-size: 0.9375rem;
  transition: all 240ms ease;
}

.wizard-progress-step.is-active .wizard-progress-circle,
.wizard-progress-step.is-done .wizard-progress-circle {
  background-color: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  box-shadow: 0 4px 16px rgba(197, 160, 89, 0.4);
}

.wizard-progress-step.is-done .wizard-progress-circle svg {
  width: 1rem;
  height: 1rem;
}
.wizard-progress-step.is-done .wizard-progress-circle .num {
  display: none;
}

.wizard-progress-label {
  font-size: 0.75rem;
  color: var(--text-muted-navy);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.wizard-progress-step.is-active .wizard-progress-label,
.wizard-progress-step.is-done .wizard-progress-label {
  color: var(--gold);
}

.wizard-progress-line {
  flex: 1;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0 0.5rem;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.wizard-progress-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 320ms ease;
}

.wizard-progress-line.is-done::after {
  transform: scaleX(1);
}

.wizard-step { display: none; }
.wizard-step.is-active { display: block; }

.wizard-step-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.wizard-field-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-cool);
  margin-bottom: 0.75rem;
}

.wizard-field-hint {
  font-size: 0.8125rem;
  color: var(--text-muted-navy);
  margin-top: 0.25rem;
}

/* Option cards (radio / checkbox style) */
.option-group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .option-group.cols-2 { grid-template-columns: repeat(2, 1fr); }
  .option-group.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .option-group.cols-4 { grid-template-columns: repeat(4, 1fr); }
}

.option-card {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.125rem;
  background-color: rgba(20, 33, 58, 0.5);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  cursor: pointer;
  transition: all 200ms ease;
  font-size: 0.9375rem;
  color: var(--text-cool);
}

.option-card:hover {
  border-color: rgba(197, 160, 89, 0.5);
  background-color: rgba(20, 33, 58, 0.7);
}

.option-card .indicator {
  width: 1.25rem;
  height: 1.25rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  flex: none;
  margin-top: 0.05rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 200ms ease;
}
.option-card.is-radio .indicator { border-radius: 50%; }

.option-card.is-selected {
  border-color: var(--gold);
  background-color: rgba(197, 160, 89, 0.1);
}
.option-card.is-selected .indicator {
  background-color: var(--gold);
  border-color: var(--gold);
}
.option-card.is-selected .indicator::after {
  content: "";
}
.option-card:not(.is-radio).is-selected .indicator::after {
  width: 0.4rem;
  height: 0.7rem;
  border: solid var(--navy-deep);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg) translateY(-1px);
}
.option-card.is-radio.is-selected .indicator::after {
  width: 0.45rem;
  height: 0.45rem;
  background: var(--navy-deep);
  border-radius: 50%;
}

.option-card .option-body {
  flex: 1;
  min-width: 0;
}

.option-card .option-title {
  font-weight: 600;
  margin-bottom: 0.15rem;
}

.option-card .option-desc {
  font-size: 0.8125rem;
  color: var(--text-muted-navy);
  line-height: 1.4;
}

.option-card-tall {
  padding: 1.25rem;
  min-height: 8rem;
}

/* Wizard footer */
.wizard-footer {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.wizard-footer .btn-next,
.wizard-footer .btn-submit {
  margin-left: auto;
}

.wizard-success {
  text-align: center;
  padding: 2rem 1rem;
}

.wizard-success .success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.15);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.wizard-success .success-icon svg {
  width: 2rem;
  height: 2rem;
}

.wizard-success .success-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}

.wizard-success .success-text {
  color: var(--text-muted-navy);
  max-width: 32rem;
  margin: 0 auto;
}

/* =========================================================
   13. ABOUT
   ========================================================= */
.about {
  background-color: var(--cool);
  color: var(--text-navy);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 3rem;
    align-items: start;
  }
}

.about-left .section-title {
  color: var(--text-navy);
}

.about-left .section-description {
  color: var(--text-navy-muted);
}

.principle-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
  margin: 1.25rem 0 1.5rem;
}

.principle-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  background-color: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-navy);
}

.principle-chip::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: var(--gold);
}

.declined-box {
  background-color: rgba(27, 42, 74, 0.03);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  margin: 1.25rem 0;
}

.declined-box .declined-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-navy);
  margin-bottom: 0.875rem;
}

.declined-box ul {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.declined-box li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-navy-muted);
  line-height: 1.45;
}

.declined-box li::before {
  content: "";
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background-color: var(--gold);
  margin-top: 0.6rem;
  flex: none;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-deep);
  font-weight: 600;
  font-size: 0.9375rem;
  margin-top: 0.5rem;
}
.about-link:hover {
  color: var(--gold);
}
.about-link::after {
  content: "→";
  transition: transform 200ms ease;
}
.about-link:hover::after {
  transform: translateX(3px);
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .about-features { grid-template-columns: repeat(2, 1fr); }
}

.feature-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 250ms ease;
  overflow: hidden;
}

.feature-card::before {
  content: "";
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 5.5rem;
  height: 5.5rem;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.05);
  transition: all 250ms ease;
}

.feature-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.feature-card:hover::before {
  background-color: rgba(197, 160, 89, 0.12);
  transform: scale(1.15);
}

.feature-card .feature-icon {
  position: relative;
  z-index: 1;
}

.feature-card .feature-title {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text-navy);
  margin: 1rem 0 0.4rem;
  position: relative;
  z-index: 1;
}

.feature-card .feature-desc {
  font-size: 0.9375rem;
  color: var(--text-navy-muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* =========================================================
   14. SERVICES
   ========================================================= */
.services {
  background-color: var(--navy);
  color: var(--text-cool);
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .services-grid { grid-template-columns: repeat(4, 1fr); }
}

.service-card {
  position: relative;
  background-color: rgba(36, 53, 86, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.25rem 1.25rem;
  transition: all 250ms ease;
  overflow: hidden;
}

.service-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.35);
}

.service-card .service-tag {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  background-color: rgba(197, 160, 89, 0.15);
  color: var(--gold);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card .service-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin: 1rem 0 0.4rem;
}

.service-card .service-desc {
  font-size: 0.875rem;
  color: var(--text-muted-navy);
  line-height: 1.5;
  margin-bottom: 0.875rem;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
  opacity: 0;
  transform: translateY(4px);
  transition: all 200ms ease;
}

.service-card:hover .service-link {
  opacity: 1;
  transform: translateY(0);
}

.services-extra {
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-soft) 100%);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-xl);
  padding: 1.5rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .services-extra {
    grid-template-columns: repeat(3, 1fr);
    padding: 2rem;
  }
}

.services-extra-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.services-extra-item::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--gold);
  margin-top: 0.5rem;
  flex: none;
}

.services-extra-item .extra-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.2rem;
}

.services-extra-item .extra-desc {
  font-size: 0.875rem;
  color: var(--text-muted-navy);
  line-height: 1.45;
}

/* =========================================================
   15. WHY WRONG
   ========================================================= */
.why-wrong {
  background-color: var(--cool);
  color: var(--text-navy);
}

.why-wrong .section-title { color: var(--text-navy); }
.why-wrong .section-description { color: var(--text-navy-muted); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

.reason-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 250ms ease;
  overflow: hidden;
}

.reason-card .reason-number {
  position: absolute;
  top: 0.5rem;
  right: 1rem;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  font-weight: 700;
  color: rgba(27, 42, 74, 0.04);
  line-height: 1;
  transition: color 250ms ease;
  pointer-events: none;
}

.reason-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.reason-card:hover .reason-number {
  color: rgba(197, 160, 89, 0.1);
}

.reason-card .reason-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-navy);
  margin: 1rem 0 0.4rem;
  position: relative;
  z-index: 1;
}

.reason-card .reason-desc {
  font-size: 0.875rem;
  color: var(--text-navy-muted);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.upload-box {
  margin-top: 2rem;
  background-color: var(--navy);
  color: var(--text-cool);
  border-radius: var(--radius-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

@media (min-width: 768px) {
  .upload-box {
    flex-direction: row;
    text-align: left;
    padding: 2.25rem;
  }
}

.upload-box .upload-icon {
  width: 4rem;
  height: 4rem;
  border-radius: var(--radius);
  background-color: rgba(197, 160, 89, 0.12);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.upload-box .upload-icon svg {
  width: 2rem;
  height: 2rem;
}

.upload-box .upload-body {
  flex: 1;
}

.upload-box .upload-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.upload-box .upload-desc {
  font-size: 0.9375rem;
  color: var(--text-muted-navy);
}

.upload-box .upload-cta {
  flex: none;
}

/* =========================================================
   16. WORKFLOW
   ========================================================= */
.workflow {
  background-color: var(--navy-deep);
  color: var(--text-cool);
  overflow: hidden;
}

.workflow-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  position: relative;
}

@media (min-width: 640px) {
  .workflow-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .workflow-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }
}

.workflow-card {
  position: relative;
  background-color: rgba(36, 53, 86, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 250ms ease;
  text-align: left;
}

.workflow-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.workflow-card .workflow-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: rgba(197, 160, 89, 0.3);
  line-height: 1;
  margin-bottom: 0.875rem;
}

.workflow-card .workflow-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.4rem;
}

.workflow-card .workflow-desc {
  font-size: 0.875rem;
  color: var(--text-muted-navy);
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .workflow-grid .workflow-card:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 2.5rem;
    right: -0.875rem;
    width: 0.875rem;
    height: 2px;
    background: linear-gradient(90deg, var(--gold) 0%, transparent 100%);
  }
  .workflow-grid .workflow-card:not(:first-child)::before {
    content: "";
    position: absolute;
    top: 2.5rem;
    left: -0.875rem;
    width: 0.875rem;
    height: 2px;
    background: linear-gradient(90deg, transparent 0%, var(--gold) 100%);
  }
}

.workflow-cta {
  margin-top: 2rem;
  background: linear-gradient(135deg, var(--navy-soft) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .workflow-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 2.25rem;
  }
}

.workflow-cta .cta-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.workflow-cta .cta-desc {
  font-size: 0.9375rem;
  color: var(--text-muted-navy);
}

/* =========================================================
   17. STATS
   ========================================================= */
.stats {
  background-color: var(--navy);
  color: var(--text-cool);
  overflow: hidden;
}

.stats-grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .stats-grid-2 {
    grid-template-columns: 1fr 1.1fr;
    gap: 3rem;
  }
}

.stats-left .section-title {
  color: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.stat-card {
  position: relative;
  background-color: rgba(36, 53, 86, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 250ms ease;
}

.stat-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
}

.stat-card .stat-dot {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: var(--gold);
}

.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}

@media (min-width: 640px) {
  .stat-card .stat-number { font-size: 3.25rem; }
}
@media (min-width: 1024px) {
  .stat-card .stat-number { font-size: 3.5rem; }
}
@media (min-width: 1280px) {
  .stat-card .stat-number { font-size: 3.75rem; }
}

.stat-card .stat-label {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.25rem;
}

.stat-card .stat-sub {
  font-size: 0.8125rem;
  color: var(--text-muted-navy);
}

/* =========================================================
   18. CASES
   ========================================================= */
.cases {
  background-color: var(--cool);
  color: var(--text-navy);
}

.cases .section-title { color: var(--text-navy); }
.cases .section-description { color: var(--text-navy-muted); }

.case-tabs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .case-tabs { grid-template-columns: repeat(3, 1fr); }
}

.case-tab {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  padding: 1.125rem 1.25rem;
  background-color: var(--white);
  border: 1.5px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 220ms ease;
  color: var(--text-navy);
  font-family: inherit;
}

.case-tab:hover {
  border-color: var(--gold);
}

.case-tab.is-active {
  background-color: var(--navy);
  border-color: var(--gold);
  color: var(--white);
}

.case-tab .case-tab-top {
  display: flex;
  align-items: center;
  gap: 0.625rem;
}

.case-tab .case-tab-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: var(--radius);
  background-color: var(--navy);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  transition: all 220ms ease;
}
.case-tab .case-tab-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.case-tab.is-active .case-tab-icon {
  background-color: var(--gold);
  color: var(--navy-deep);
}

.case-tab .case-tab-type {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
}
.case-tab.is-active .case-tab-type {
  color: var(--gold);
}

.case-tab .case-tab-title {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
}

.case-tab .case-tab-result {
  font-size: 0.8125rem;
  color: var(--text-navy-muted);
}
.case-tab.is-active .case-tab-result {
  color: var(--text-muted-navy);
}

.case-detail {
  background-color: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-hover);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .case-detail { grid-template-columns: 1fr 1.15fr; }
}

.case-detail-left {
  background-color: var(--navy);
  color: var(--text-cool);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 1024px) {
  .case-detail-left { padding: 2.25rem; }
}

.case-detail-left .case-meta {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  color: var(--text-muted-navy);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.case-detail-left .case-title {
  font-family: var(--font-serif);
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.2;
}

.case-result-box {
  border: 1.5px solid rgba(197, 160, 89, 0.3);
  background-color: rgba(197, 160, 89, 0.05);
  border-radius: var(--radius);
  padding: 1rem 1.125rem;
}

.case-result-box .result-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.case-result-box .result-text {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
}

.case-pagination {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 1rem;
}

.case-pagination .case-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.25);
  cursor: pointer;
  transition: all 200ms ease;
  border: none;
  padding: 0;
}
.case-pagination .case-dot.is-active {
  background-color: var(--gold);
  width: 1.5rem;
  border-radius: 4px;
}

.case-detail-right {
  background-color: var(--white);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

@media (min-width: 1024px) {
  .case-detail-right { padding: 2.25rem; }
}

.case-block-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 0.4rem;
}

.case-block-text {
  font-size: 0.9375rem;
  color: var(--text-navy-muted);
  line-height: 1.55;
}

.case-errors {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.case-error-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.75rem 0.875rem;
  background-color: var(--cool);
  border-radius: var(--radius);
  border: 1px solid rgba(27, 42, 74, 0.06);
}

.case-error-item .error-check {
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.15);
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}
.case-error-item .error-check svg {
  width: 0.875rem;
  height: 0.875rem;
}

.case-error-item .error-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-navy);
  margin-bottom: 0.15rem;
}

.case-error-item .error-desc {
  font-size: 0.8125rem;
  color: var(--text-navy-muted);
  line-height: 1.4;
}

.case-verdict {
  border-left: 3px solid var(--gold);
  background-color: rgba(197, 160, 89, 0.06);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.case-verdict .verdict-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-deep);
  margin-bottom: 0.3rem;
}

.case-verdict .verdict-text {
  font-size: 0.9375rem;
  color: var(--text-navy);
  font-weight: 500;
  line-height: 1.5;
}

/* =========================================================
   19. TRUST
   ========================================================= */
.trust {
  background-color: var(--navy);
  color: var(--text-cool);
  overflow: hidden;
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }
}

.trust-card {
  position: relative;
  background-color: rgba(36, 53, 86, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 250ms ease;
  overflow: hidden;
}

.trust-card::before {
  content: "";
  position: absolute;
  top: -1.5rem;
  right: -1.5rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.05);
  transition: all 280ms ease;
}

.trust-card:hover {
  border-color: var(--gold);
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.3);
}

.trust-card:hover::before {
  transform: scale(1.6);
  background-color: rgba(197, 160, 89, 0.12);
}

.trust-card .trust-icon {
  position: relative;
  z-index: 1;
}

.trust-card .trust-title {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--white);
  margin: 1rem 0 0.4rem;
  position: relative;
  z-index: 1;
}

.trust-card .trust-desc {
  font-size: 0.875rem;
  color: var(--text-muted-navy);
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

.trust-footer {
  text-align: center;
  margin-top: 2.5rem;
}

.trust-footer .trust-caption {
  display: block;
  font-size: 0.8125rem;
  color: var(--text-muted-navy);
  margin-top: 0.875rem;
}

/* =========================================================
   20. REVIEWS
   ========================================================= */
.reviews {
  background-color: var(--cool);
  color: var(--text-navy);
}

.reviews .section-title { color: var(--text-navy); }

.reviews-header {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .reviews-header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}

.rating-widget {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background-color: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius-lg);
  padding: 0.875rem 1.25rem;
  box-shadow: var(--shadow-card);
}

.rating-widget .rating-score {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-navy);
  line-height: 1;
}

.rating-widget .rating-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--gold);
  margin-top: 0.2rem;
}
.rating-widget .rating-stars svg {
  width: 1rem;
  height: 1rem;
}

.rating-widget .rating-divider {
  width: 1px;
  align-self: stretch;
  background-color: rgba(27, 42, 74, 0.1);
}

.rating-widget .rating-base {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text-navy);
  line-height: 1.2;
}
.rating-widget .rating-base-small {
  font-size: 0.8125rem;
  color: var(--text-navy-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  position: relative;
  background-color: var(--white);
  border: 1px solid rgba(27, 42, 74, 0.1);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 250ms ease;
  overflow: hidden;
}

.review-card:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.review-card .review-quote {
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: rgba(27, 42, 74, 0.06);
  pointer-events: none;
}
.review-card .review-quote svg {
  width: 2.5rem;
  height: 2.5rem;
}

.review-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.875rem;
  position: relative;
  z-index: 1;
}

.review-avatar {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background-color: var(--navy);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  flex: none;
}

.review-name {
  font-weight: 700;
  font-size: 0.9375rem;
  color: var(--text-navy);
  line-height: 1.2;
}

.review-date {
  font-size: 0.8125rem;
  color: var(--text-navy-muted);
}

.review-stars {
  display: inline-flex;
  gap: 0.15rem;
  color: var(--gold);
  margin-bottom: 0.75rem;
  position: relative;
  z-index: 1;
}
.review-stars svg {
  width: 0.95rem;
  height: 0.95rem;
}

.review-body {
  font-size: 0.9375rem;
  color: var(--text-navy-muted);
  line-height: 1.55;
  margin-bottom: 0.875rem;
  display: -webkit-box;
  -webkit-line-clamp: 8;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.review-service {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  background-color: rgba(27, 42, 74, 0.05);
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-navy);
  position: relative;
  z-index: 1;
}

.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  margin-top: 2rem;
}

.reviews-pagination .page-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background-color: rgba(27, 42, 74, 0.2);
  cursor: pointer;
  border: none;
  padding: 0;
  transition: all 200ms ease;
}

.reviews-pagination .page-dot.is-active {
  background-color: var(--gold);
  width: 1.5rem;
  border-radius: 4px;
}

/* =========================================================
   21. FREE ANALYSIS CTA
   ========================================================= */
.free-analysis {
  background-color: var(--navy-deep);
  color: var(--text-cool);
  position: relative;
  overflow: hidden;
}

.free-analysis-card {
  position: relative;
  background-color: rgba(36, 53, 86, 0.4);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: var(--radius-2xl);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .free-analysis-card { grid-template-columns: 1.1fr 1fr; }
}

.fa-left {
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .fa-left { padding: 2.5rem; }
}

.fa-right {
  background-color: rgba(20, 33, 58, 0.6);
  padding: 1.75rem;
}

@media (min-width: 768px) {
  .fa-right { padding: 2.5rem; }
}
@media (min-width: 1024px) {
  .fa-right { border-left: 1px solid rgba(197, 160, 89, 0.2); }
}

.fa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.fa-eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background-color: var(--gold);
  border-radius: 2px;
}

.fa-title {
  font-family: var(--font-serif);
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1rem;
}

@media (min-width: 1024px) {
  .fa-title { font-size: 2.25rem; }
}

.fa-title .gold { color: var(--gold); }

.fa-desc {
  font-size: 1rem;
  color: var(--text-muted-navy);
  line-height: 1.55;
  margin-bottom: 1.5rem;
}

.fa-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-bottom: 1.5rem;
}

.fa-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  font-size: 0.9375rem;
  color: var(--text-cool);
  line-height: 1.4;
}

.fa-list .check-circle {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  background-color: var(--gold);
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
  margin-top: 0.1rem;
}
.fa-list .check-circle svg {
  width: 0.7rem;
  height: 0.7rem;
}

.fa-fz-box {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.875rem 1rem;
  background-color: var(--navy-deep);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: var(--radius);
  font-size: 0.8125rem;
  color: var(--text-muted-navy);
  line-height: 1.45;
}

.fa-fz-box .icon-box {
  flex: none;
}

.fa-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.fa-success {
  text-align: center;
  padding: 2rem 1rem;
}

.fa-success .success-icon {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: rgba(197, 160, 89, 0.15);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.fa-success .success-icon svg {
  width: 2rem;
  height: 2rem;
}

.fa-success .success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}

.fa-success .success-text {
  color: var(--text-muted-navy);
  margin-bottom: 1.5rem;
}

/* =========================================================
   22. FOOTER
   ========================================================= */
.site-footer {
  margin-top: auto;
  background-color: var(--navy-deep);
  color: var(--text-cool);
  border-top: 2px solid var(--gold);
}

.footer-main {
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
}

.footer-brand .footer-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  margin-bottom: 1rem;
}

.footer-brand .footer-logo .logo-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius-sm);
  background-color: var(--gold);
  color: var(--navy-deep);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.footer-brand .footer-logo .logo-name {
  font-family: var(--font-serif);
  font-size: 1.1875rem;
  font-weight: 700;
  color: var(--white);
}
.footer-brand .footer-logo .logo-name .gold {
  color: var(--gold);
}

.footer-brand .footer-desc {
  font-size: 0.875rem;
  color: var(--text-muted-navy);
  line-height: 1.55;
  margin-bottom: 1.25rem;
  max-width: 22rem;
}

.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-contacts .contact-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--text-muted-navy);
}
.footer-contacts .contact-row svg {
  width: 1rem;
  height: 1rem;
  color: var(--gold);
  flex: none;
}
.footer-contacts .contact-row.phone {
  color: var(--text-cool);
  font-weight: 600;
}

.footer-col-title {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-menu {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-menu a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  color: var(--text-muted-navy);
}

.footer-menu a::before {
  content: "";
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background-color: var(--gold);
  flex: none;
  opacity: 0;
  transition: opacity 200ms ease;
}

.footer-menu a:hover {
  color: var(--cool);
}
.footer-menu a:hover::before {
  opacity: 1;
}

.footer-collab-box {
  margin-top: 1.25rem;
  padding: 1rem 1.125rem;
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: var(--radius);
  background-color: rgba(36, 53, 86, 0.4);
}

.footer-collab-box .collab-text {
  font-size: 0.8125rem;
  color: var(--text-muted-navy);
  margin-bottom: 0.5rem;
  line-height: 1.45;
}

.footer-collab-box .collab-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.875rem;
}
.footer-collab-box .collab-link::after {
  content: "→";
  transition: transform 200ms ease;
}
.footer-collab-box .collab-link:hover::after {
  transform: translateX(3px);
}

.footer-reqs {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

@media (min-width: 768px) {
  .footer-reqs { grid-template-columns: repeat(3, 1fr); }
}

.req-card {
  background-color: rgba(36, 53, 86, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
}

.req-card .req-label {
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted-navy);
  margin-bottom: 0.25rem;
}

.req-card .req-value {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-cool);
}

.footer-strip {
  background-color: var(--navy);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 1rem 0;
}

.footer-strip-inner {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .footer-strip-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-copyright {
  font-size: 0.8125rem;
  color: var(--text-muted-navy);
}

.footer-strip-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}

.footer-strip-nav a {
  font-size: 0.8125rem;
  color: var(--text-muted-navy);
}
.footer-strip-nav a:hover {
  color: var(--gold);
}

/* =========================================================
   23. Helpers / shared
   ========================================================= */
.tag-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.625rem;
  background-color: rgba(197, 160, 89, 0.15);
  color: var(--gold);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.eyebrow-line {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.eyebrow-line::before {
  content: "";
  display: inline-block;
  width: 1.5rem;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  font-size: 0.9375rem;
  line-height: 1.45;
}

.check-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  margin-top: 0;
  flex: none;
}

.divider {
  height: 1px;
  background-color: rgba(255, 255, 255, 0.08);
  border: none;
  margin: 1.5rem 0;
}

.form-light .divider,
.section-bg-cool .divider,
.section-bg-white .divider {
  background-color: rgba(27, 42, 74, 0.08);
}

/* =========================================================
   24. Animations
   ========================================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.04); opacity: 0.85; }
}

.animate-fade-in {
  animation: fadeIn 400ms ease both;
}

.animate-fade-up {
  animation: fadeInUp 500ms ease both;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   25. Misc responsive tweaks
   ========================================================= */
@media (max-width: 639px) {
  .hero-trust-mini {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.625rem;
  }
  .trust-mini-value {
    font-size: 1rem;
  }
  .trust-mini-label {
    font-size: 0.6875rem;
  }
  .hero-card {
    padding: 1.25rem;
  }
  .wizard-card {
    padding: 1.25rem;
  }
  .wizard-progress-label {
    display: none;
  }
  .section-title {
    font-size: 1.625rem;
  }
  .hero-title {
    font-size: 2rem;
  }
}

/* Ensure long words break on small screens */
.section-title,
.hero-title,
.fa-title,
.hero-card .card-title,
.case-detail-left .case-title {
  overflow-wrap: break-word;
  word-wrap: break-word;
  hyphens: auto;
}

/* ───── Дополнительные анимации (JS-хелперы) ───── */
.icon.spin, .spin .icon {
  animation: spin 0.9s linear infinite;
}
@keyframes spin {
  to { transform: rotate(360deg); }
}

.shake {
  animation: shake 0.4s ease;
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .icon.spin, .spin .icon, .shake { animation: none; }
  html { scroll-behavior: auto; }
}
