/* Hiree — landing styles */
:root {
  /* Hiree brand book — deep indigo navy */
  --brand-navy: #070738;
  --brand-navy-mid: #0a0a52;
  --brand-navy-deep: #040424;
  --brand-navy-rgb: 7, 7, 56;
  --brand-navy-deep-rgb: 4, 4, 36;
  --brand-ink: var(--brand-navy);
  --brand-coral: #f97316;
  --brand-slate: #7a7a9a;

  --bg: #f5f5fa;
  --bg-elevated: #ffffff;
  --surface: #ececf4;
  --border: rgba(var(--brand-navy-rgb), 0.1);
  --text: var(--brand-navy);
  --muted: #64748b;
  --accent: var(--brand-navy);
  --accent-dim: rgba(var(--brand-navy-rgb), 0.08);
  --accent-strong: var(--brand-navy);
  --accent-deep: var(--brand-navy-deep);
  --accent-violet: var(--brand-slate);
  --accent-pink: var(--brand-coral);
  --accent-cyan: var(--brand-slate);
  --accent-orange: var(--brand-coral);
  --success: #16a34a;
  --success-deep: #14532d;
  --success-glow: rgba(34, 197, 94, 0.45);
  --gradient-brand: linear-gradient(135deg, var(--brand-navy-mid) 0%, var(--brand-navy) 100%);
  --gradient-offer: linear-gradient(180deg, #15803d 0%, #166534 52%, #14532d 100%);
  --gradient-btn: linear-gradient(180deg, var(--brand-navy-mid) 0%, var(--brand-navy) 100%);
  --bg-pattern: url("assets/bg-ornament.svg");
  --bg-pattern-dark: url("assets/bg-ornament-dark.svg");
  --section-divider: url("assets/section-divider.svg");
  --font: "Onest", system-ui, sans-serif;
  --font-mono: "JetBrains Mono", ui-monospace, monospace;
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 20px 50px rgba(var(--brand-navy-deep-rgb), 0.08);
  --max: 1120px;
  --narrow: 720px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text);
  background-color: var(--bg);
  background-image: radial-gradient(ellipse 90% 70% at 50% -10%, rgba(122, 138, 154, 0.07), transparent 58%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(249, 115, 22, 0.035), transparent 50%),
    radial-gradient(ellipse 60% 45% at 0% 80%, rgba(var(--brand-navy-rgb), 0.035), transparent 50%),
    var(--bg-pattern);
  background-size: auto, auto, auto, 400px 400px;
  background-repeat: no-repeat, no-repeat, no-repeat, repeat;
  min-height: 100vh;
}

.skip-link {
  position: absolute;
  left: -9999px;
  z-index: 999;
  padding: 0.75rem 1rem;
  background: var(--accent-strong);
  color: #ffffff;
  font-weight: 600;
  border-radius: 8px;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

a {
  color: var(--accent-strong);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--brand-coral);
}

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container--narrow {
  max-width: var(--narrow);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  flex-wrap: wrap;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--text);
}

.logo-main {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.logo:hover {
  color: var(--text);
  text-decoration: none;
}

.logo-wordmark {
  display: flex;
  align-items: baseline;
  flex-shrink: 0;
  font-size: 1.58rem;
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1;
}

.logo-tagline {
  flex-shrink: 0;
  padding-left: 0.85rem;
  border-left: 1px solid rgba(122, 138, 154, 0.35);
  font-size: 0.8rem;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.01em;
  color: var(--brand-slate);
  line-height: 1.2;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .logo-tagline {
    display: none;
  }
}

.logo-hire {
  color: var(--text);
}

.logo-ee {
  color: var(--brand-coral);
  font-weight: 600;
}

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

.nav {
  display: none;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
}

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

/* Ссылка в шапке не должна перекрашивать кнопку в серый (.nav a { color: muted }) */
.nav a.btn.btn--primary {
  color: #ffffff;
}

.nav a.btn.btn--primary:hover {
  color: #ffffff;
}

.nav .btn {
  margin-left: 0.25rem;
}

.header-phone {
  margin-left: 0.35rem;
  padding-left: 1.1rem;
  border-left: 1px solid rgba(var(--brand-navy-rgb), 0.12);
  font-size: 0.875rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.01em;
  color: var(--text);
  text-decoration: none;
  white-space: nowrap;
}

.header-phone:hover {
  color: var(--brand-coral);
}

.nav-mobile .header-phone {
  margin-left: 0;
  padding-left: 0;
  border-left: none;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.site-header .btn.btn--primary,
.btn--primary.btn--coral-border {
  background: var(--brand-navy);
  background-image: none;
  border: 2px solid var(--brand-coral);
  box-shadow: none;
}

.site-header .btn.btn--primary {
  border-radius: 999px;
  padding: 0.5625rem 1.125rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-header .btn.btn--primary:hover,
.btn--primary.btn--coral-border:hover {
  background: var(--brand-navy-deep);
  border-color: var(--brand-coral);
  filter: none;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(var(--brand-navy-rgb), 0.18);
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

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

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

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

.nav-mobile {
  width: 100%;
  padding: 0 1rem 1rem;
  border-bottom: 1px solid var(--border);
}

.nav-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-mobile a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

.nav-mobile a.btn {
  border-bottom: none;
  margin-top: 0.35rem;
  align-self: flex-start;
}

.nav-mobile a.btn.btn--primary {
  color: var(--bg);
}

@media (min-width: 900px) {
  .nav {
    display: flex;
  }

  .nav-toggle {
    display: none;
  }

  .nav-mobile[hidden] {
    display: none !important;
  }
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn--small {
  padding: 0.55rem 1rem;
  font-size: 0.9rem;
}

.btn--primary {
  background: var(--gradient-btn);
  color: #ffffff;
  text-decoration: none;
  border: none;
  box-shadow: 0 8px 22px rgba(var(--brand-navy-rgb), 0.18);
}

.btn--primary:hover {
  color: #ffffff;
  filter: brightness(1.04);
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(var(--brand-navy-rgb), 0.22);
}

.btn--ghost {
  background: var(--bg-elevated);
  color: var(--text);
  border: 1px solid var(--border);
  text-decoration: none;
}

.btn--ghost:hover {
  background: var(--surface);
  color: var(--accent-deep);
  border-color: rgba(var(--brand-navy-rgb), 0.22);
}

/* Sections */
.section {
  position: relative;
  padding: 4.25rem 0 4rem;
}

.section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 2rem), var(--max));
  height: 3rem;
  background: var(--section-divider) center / 100% auto no-repeat;
  pointer-events: none;
  z-index: 2;
}

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

.section--alt {
  background-color: #e8e8f2;
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(255, 255, 255, 0.88), transparent 70%),
    var(--bg-pattern);
  background-size: auto, 400px 400px;
  background-repeat: no-repeat, repeat;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.65);
}

.section--alt::after {
  filter: brightness(0.98);
}

.section--dark {
  background-color: var(--brand-navy-deep);
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 10, 82, 0.72), transparent 70%),
    var(--bg-pattern-dark);
  background-size: auto, 400px 400px;
  background-repeat: no-repeat, repeat;
  color: #eef0ff;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.section--dark.section--dark--pattern-live {
  background-image: radial-gradient(ellipse 80% 60% at 50% 0%, rgba(10, 10, 82, 0.72), transparent 70%);
}

.dark-pattern-layer {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.dark-pattern-tile {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
}

.dark-pattern-tile svg {
  display: block;
  width: 400px;
  height: 400px;
}

.section--dark::before {
  content: none;
}

.section--dark::after {
  filter: invert(1) brightness(2);
  opacity: 0.14;
}

.section--dark .section-title {
  color: #ffffff;
}

.section--dark .section-intro {
  color: rgba(255, 255, 255, 0.72);
}

.section--dark .section-intro--team strong {
  color: var(--brand-coral);
}

.section--dark .card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--dark .card h3 {
  color: #ffffff;
}

.section--dark .card p,
.section--dark .card-meta {
  color: rgba(255, 255, 255, 0.68);
}

.section--dark .card-meta strong {
  color: rgba(255, 255, 255, 0.88);
}

.section--dark .biz-scale__viz {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: none;
}

.section--dark .biz-scale__viz::after {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.1) 0%,
    rgba(255, 255, 255, 0.22) 50%,
    var(--brand-coral) 100%
  );
}

.section--dark .biz-scale__tower {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22) 0%, rgba(255, 255, 255, 0.1) 100%);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.section--dark .biz-scale__win {
  background: rgba(255, 255, 255, 0.28);
}

.section--dark .biz-scale__label {
  color: rgba(255, 255, 255, 0.92);
}

.section--dark .steps li {
  border-bottom-color: rgba(255, 255, 255, 0.12);
}

.section--dark .step-num {
  color: rgba(255, 255, 255, 0.42);
}

.section--dark .steps h3 {
  color: #ffffff;
}

.section--dark .steps p {
  color: rgba(255, 255, 255, 0.68);
}

.section--dark .process-extras {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.section--dark .process-extras__label {
  color: rgba(255, 255, 255, 0.48);
}

.section--dark .process-extra {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: none;
}

.section--dark .process-extra h3 {
  color: #ffffff;
}

.section--dark .process-extra p {
  color: rgba(255, 255, 255, 0.65);
}

.section--dark .pricing-card {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--dark .pricing-card--featured {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(249, 115, 22, 0.38);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
}

.section--dark .pricing-card h3 {
  color: #ffffff;
}

.section--dark .pricing-pct {
  color: var(--brand-coral);
}

.section--dark .pricing-card p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.section--dark .pricing-guarantee {
  color: rgba(255, 255, 255, 0.72);
}

.section--dark .pricing-guarantee strong {
  color: rgba(255, 255, 255, 0.92);
}

.section--dark .contact-form label,
.section--dark .form-checkbox {
  color: rgba(255, 255, 255, 0.68);
}

.section--dark .contact-form input,
.section--dark .contact-form textarea {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.section--dark .contact-form input::placeholder,
.section--dark .contact-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.section--dark .contact-form input:focus,
.section--dark .contact-form textarea:focus {
  outline-color: rgba(249, 115, 22, 0.45);
  border-color: rgba(249, 115, 22, 0.35);
}

.section--dark .form-hint {
  color: rgba(255, 255, 255, 0.45);
}

.section--dark .form-checkbox-link {
  color: var(--brand-coral);
}

.section--dark .form-checkbox-link:hover {
  color: #ffb07a;
}

.section--dark .form-feedback {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
}

.section--dark .form-feedback--info {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.14);
  color: rgba(255, 255, 255, 0.72);
}

.section--dark .contact-aside {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

.section--dark .contact-aside p {
  color: rgba(255, 255, 255, 0.78);
}

.section--dark .contact-aside a {
  color: rgba(255, 255, 255, 0.92);
}

.section--dark .contact-aside a:hover {
  color: var(--brand-coral);
}

.section--dark .mono-label {
  color: rgba(255, 255, 255, 0.48);
}

.section--dark .link-highlight {
  color: var(--brand-coral);
}

.hero {
  position: relative;
  padding: 3rem 0 4.5rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 70% 55% at 15% 20%, rgba(255, 255, 255, 0.75), transparent 65%),
    var(--bg-pattern);
  background-size: auto, 400px 400px;
  background-repeat: no-repeat, repeat;
  opacity: 0.72;
  pointer-events: none;
  z-index: 0;
}

.hero-cats {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero-cat {
  position: absolute;
  width: clamp(2.25rem, 4.5vw, 3.25rem);
}

.hero-cat svg {
  display: block;
  width: 100%;
  height: auto;
}

.hero-cat--1 {
  top: 14%;
  right: 6%;
  transform: rotate(6deg);
}

.hero-cat--2 {
  top: 8%;
  right: 38%;
  width: clamp(2rem, 3.8vw, 2.85rem);
  transform: rotate(-10deg);
}

.hero-cat--3 {
  top: 58%;
  left: 3%;
  transform: rotate(5deg);
}

.hero-cat--4 {
  bottom: 10%;
  right: 22%;
  width: clamp(2.35rem, 4.2vw, 3.1rem);
  transform: rotate(-8deg);
}

.hero-cats .ornament-cat {
  stroke: #070738;
  stroke-opacity: 0.05;
  transition: stroke 0.65s ease, stroke-opacity 0.65s ease;
}

.hero-cats .ornament-cat--active {
  stroke: var(--brand-coral);
  stroke-opacity: 0.75;
}

.hero-cats .ornament-cat .cat-eye {
  fill: #070738;
  fill-opacity: 0.07;
  transition: fill 0.65s ease, fill-opacity 0.65s ease;
}

.hero-cats .ornament-cat--active .cat-eye {
  fill: var(--brand-coral);
  fill-opacity: 0.52;
}

@media (max-width: 899px) {
  .hero-cat--1 {
    top: 5%;
    right: 4%;
  }

  .hero-cat--2 {
    top: auto;
    bottom: 42%;
    right: 2%;
  }

  .hero-cat--3 {
    display: none;
  }

  .hero-cat--4 {
    bottom: 38%;
    right: 12%;
  }
}

@media (max-width: 540px) {
  .hero-cat--2,
  .hero-cat--4 {
    display: none;
  }
}

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

.hero-grid {
  display: grid;
  gap: 2.5rem;
  align-items: start;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand-slate);
  margin: 0 0 1rem;
}

.hero-copy {
  container-type: inline-size;
}

.hero h1 {
  display: inline-grid;
  max-width: 100%;
  font-size: clamp(1.65rem, 3vw, 2.1rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0 0 1.6rem;
  font-weight: 700;
}

.hero-h1-line1 {
  display: flex;
  align-items: baseline;
  width: 100%;
  font-size: clamp(1.85rem, 4vw, 2.4rem);
  font-size: clamp(1.85rem, 7.5cqi, 2.4rem);
  letter-spacing: -0.035em;
  line-height: 1.12;
  margin-bottom: 0.15em;
}

.hero-h1-line1-start {
  flex-shrink: 0;
}

.hero-h1-line2 {
  display: block;
}

@media (min-width: 900px) {
  .hero-h1-line1,
  .hero-h1-line2 {
    white-space: nowrap;
  }

  .hero-h1-it {
    margin-left: auto;
    font-size: 1.85em;
  }
}

@media (min-width: 900px) and (max-width: 1080px) {
  .hero h1 {
    font-size: clamp(1.55rem, 2.6vw, 1.95rem);
  }

  .hero-h1-line1 {
    font-size: clamp(1.75rem, 4.2vw, 2.25rem);
    font-size: clamp(1.75rem, 7cqi, 2.25rem);
  }
}

.hero-h1-it {
  color: var(--brand-coral);
  font-weight: 600;
  font-size: 1.45em;
  letter-spacing: 0.02em;
  flex-shrink: 0;
}

.hero-h1-arrow {
  display: inline-block;
  margin-right: 0.35em;
  color: var(--brand-coral);
  font-weight: 500;
}

.lead {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.45;
  margin: 0;
  max-width: 58ch;
}

.hero-tech-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.2rem;
  width: 100%;
  max-width: 100%;
  margin: 1.65rem 0 2.2rem;
  padding: 0;
  list-style: none;
}

.hero-tech-strip li {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
}

.hero-tech-strip img {
  display: block;
  width: 1.28rem;
  height: 1.28rem;
  opacity: 0.52;
  filter: grayscale(100%);
  cursor: help;
}

@media (max-width: 720px) {
  .hero-tech-strip {
    display: grid;
    grid-template-columns: repeat(8, minmax(0, 1fr));
    gap: 0.45rem 0.25rem;
  }

  .hero-tech-strip li {
    flex: initial;
  }

  .hero-tech-strip img {
    width: 1.15rem;
    height: 1.15rem;
    margin-inline: auto;
  }
}

.hero-proof {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  margin: 0 0 1.75rem;
  padding: 0.85rem 1rem;
  max-width: 54ch;
  border-radius: var(--radius);
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-left: 3px solid var(--brand-coral);
  font-size: 0.98rem;
  line-height: 1.45;
  color: var(--muted);
  box-shadow: 0 8px 24px rgba(var(--brand-navy-rgb), 0.04);
}

.hero-proof__value {
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand-coral);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-stats {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hero-stats strong {
  color: var(--text);
}

.hero-illustration {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0;
}

.hero-illustration-wrap {
  position: relative;
  width: 100%;
  max-width: 540px;
  border-radius: var(--radius-lg);
  padding: 1px;
  background: linear-gradient(145deg, rgba(122, 138, 154, 0.16), rgba(249, 115, 22, 0.06));
  box-shadow: 0 24px 60px rgba(var(--brand-navy-rgb), 0.07), 0 0 0 1px rgba(255, 255, 255, 0.7) inset;
}

.hero-card {
  background: var(--bg-elevated);
  border-radius: calc(var(--radius-lg) - 1px);
  padding: 1.35rem 1.35rem 1.15rem;
}

.hero-diagram-caption {
  margin: 0.75rem 0 0;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
  line-height: 1.4;
}

.hero-process {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.25rem;
}

.hero-process__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  position: relative;
  padding: 0 0.15rem;
}

.hero-process__step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0.55rem;
  left: calc(50% + 0.65rem);
  width: calc(100% - 0.5rem);
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.hero-process__dot {
  position: relative;
  z-index: 1;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid rgba(var(--brand-navy-rgb), 0.14);
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.hero-process__label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--muted);
  text-align: center;
  line-height: 1.2;
  transition: color 0.35s ease;
}

.hero-process__step.is-active .hero-process__dot {
  background: var(--brand-coral);
  border-color: var(--brand-coral);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, 0.14);
}

.hero-process__step.is-active .hero-process__label {
  color: var(--brand-navy);
}

.hero-vacancy {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
  transition: opacity 0.45s ease;
}

.hero-vacancy__badge {
  display: inline-block;
  margin-bottom: 0.45rem;
  padding: 0.2rem 0.55rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-deep);
  background: var(--accent-dim);
  border-radius: 6px;
}

.hero-vacancy__title {
  margin: 0 0 0.35rem;
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.hero-vacancy__stack {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.4;
}

.hero-shortlist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-shortlist__row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--border);
  transition: opacity 0.5s ease, filter 0.5s ease, background 0.45s ease, border-color 0.45s ease,
    box-shadow 0.45s ease, transform 0.45s ease;
}

.hero-shortlist__avatar {
  position: relative;
  flex-shrink: 0;
  width: 3.15rem;
  height: 2.75rem;
  border-radius: 999px;
  overflow: hidden;
  background: var(--surface);
  border: 1px solid var(--border);
  transition: background 0.45s ease, border-color 0.45s ease, box-shadow 0.45s ease;
}

.hero-shortlist__photo {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 20%;
}

.hero-shortlist__info {
  display: grid;
  min-width: 0;
  flex: 1;
}

.hero-shortlist__copy {
  grid-area: 1 / 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.hero-shortlist__copy--live {
  opacity: 0;
  transform: translateY(6px);
}

.hero-shortlist__pick {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  border: 2px solid rgba(255, 255, 255, 0.55);
  opacity: 0;
  transform: scale(0.6);
  transition: opacity 0.35s ease 0.15s, transform 0.35s cubic-bezier(0.34, 1.4, 0.64, 1) 0.15s;
}

.hero-shortlist__grade {
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.3;
}

.hero-shortlist__meta {
  font-size: 0.78rem;
  color: var(--muted);
  line-height: 1.35;
}

.hero-card-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}

.hero-card-foot__badge {
  display: none;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent-deep);
}

.hero-card.is-step-1 .hero-card-foot__badge--step1,
.hero-card.is-step-2 .hero-card-foot__badge--step2,
.hero-card.is-step-3 .hero-card-foot__badge--step3,
.hero-card.is-step-4 .hero-card-foot__badge--step4 {
  display: inline;
}

.hero-card.is-step-4 .hero-card-foot__badge--step4 {
  color: var(--success-deep);
}

.hero-card-foot__brand {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
}

/* Step 1 — бриф: три размытых силуэта */
.hero-card.is-step-1 .hero-shortlist__row {
  filter: blur(3px);
  opacity: 0.55;
}

.hero-card.is-step-1 .hero-shortlist__copy--brief {
  opacity: 1;
  transform: none;
}

.hero-card.is-step-1 .hero-shortlist__copy--live {
  opacity: 0;
}

/* Step 2 — поиск: профили появляются */
.hero-card.is-step-2 .hero-shortlist__row,
.hero-card.is-step-3 .hero-shortlist__row,
.hero-card.is-step-4 .hero-shortlist__row {
  filter: none;
  opacity: 1;
}

.hero-card.is-step-2 .hero-shortlist__copy--brief,
.hero-card.is-step-3 .hero-shortlist__copy--brief,
.hero-card.is-step-4 .hero-shortlist__copy--brief {
  opacity: 0;
  transform: translateY(-4px);
}

.hero-card.is-step-2 .hero-shortlist__copy--live,
.hero-card.is-step-3 .hero-shortlist__copy--live,
.hero-card.is-step-4 .hero-shortlist__copy--live {
  opacity: 1;
  transform: none;
}

/* Step 3 — shortlist: третий в blur */
.hero-card.is-step-3 .hero-shortlist__row--3 {
  filter: blur(2.5px);
  opacity: 0.42;
}

/* Step 4 — оффер: второй выбран, остальные приглушены */
.hero-card.is-step-4 .hero-shortlist__row:not(.hero-shortlist__row--2) {
  opacity: 0.38;
  filter: none;
}

.hero-card.is-step-4 .hero-shortlist__row--2 {
  background: var(--gradient-offer);
  border-color: #22c55e;
  box-shadow: 0 0 0 2px var(--success-glow), 0 10px 28px rgba(22, 101, 52, 0.35);
  transform: scale(1.02);
}

.hero-card.is-step-4 .hero-shortlist__row--2 .hero-shortlist__grade,
.hero-card.is-step-4 .hero-shortlist__row--2 .hero-shortlist__meta {
  color: rgba(255, 255, 255, 0.94);
}

.hero-card.is-step-4 .hero-shortlist__row--2 .hero-shortlist__avatar {
  background: #fff;
  border-color: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
}

.hero-card.is-step-4 .hero-shortlist__row--2 .hero-shortlist__pick {
  opacity: 1;
  transform: scale(1);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-card.is-step-2 .hero-shortlist__row {
    animation: heroRowReveal 0.55s ease backwards;
  }

  .hero-card.is-step-2 .hero-shortlist__row--2 {
    animation-delay: 0.1s;
  }

  .hero-card.is-step-2 .hero-shortlist__row--3 {
    animation-delay: 0.2s;
  }

  .hero-card.is-step-4 .hero-shortlist__row--2 {
    animation: heroOfferPulse 1.8s ease-in-out infinite;
  }
}

@keyframes heroRowReveal {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroOfferPulse {
  0%,
  100% {
    box-shadow: 0 0 0 2px var(--success-glow), 0 10px 28px rgba(22, 101, 52, 0.35);
  }
  50% {
    box-shadow: 0 0 0 4px rgba(34, 197, 94, 0.55), 0 14px 34px rgba(22, 101, 52, 0.45);
  }
}

@media (max-width: 420px) {
  .hero-process {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 0.65rem;
  }

  .hero-process__step:not(:last-child)::after {
    display: none;
  }

  .hero-card {
    padding: 1.15rem 1rem 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-process__dot,
  .hero-process__label,
  .hero-vacancy,
  .hero-shortlist__row,
  .hero-shortlist__copy,
  .hero-shortlist__pick,
  .hero-card-foot {
    transition: none;
    animation: none !important;
  }
}

.mono-label {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 0.5rem;
}

.section:not(.section--alt):not(.section--dark)::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(ellipse 60% 50% at 80% 10%, rgba(255, 255, 255, 0.65), transparent 60%),
    var(--bg-pattern);
  background-size: auto, 400px 400px;
  background-repeat: no-repeat, repeat;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

.section-intro {
  color: var(--muted);
  max-width: 65ch;
  margin: 0 0 2rem;
}

#for-whom .section-intro--lead {
  max-width: none;
  margin-bottom: 0.55rem;
  white-space: nowrap;
}

#contact .section-intro--lead {
  max-width: none;
  margin-bottom: 2rem;
  white-space: nowrap;
}

#services .section-intro--lead {
  max-width: none;
  margin-bottom: 2rem;
  white-space: nowrap;
}

#for-whom .section-intro--team {
  max-width: none;
  margin-bottom: 1.75rem;
  white-space: nowrap;
}

#for-whom .section-intro--team strong {
  color: var(--brand-coral);
  font-weight: 700;
}

@media (max-width: 767px) {
  #for-whom .section-intro--lead,
  #for-whom .section-intro--team,
  #contact .section-intro--lead,
  #services .section-intro--lead {
    white-space: normal;
  }
}

.biz-scale {
  margin: 0 0 2rem;
  padding: 0;
}

.biz-scale__viz {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: clamp(2rem, 8vw, 4.5rem);
  padding: 1.35rem 1.5rem 1.15rem;
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(var(--brand-navy-rgb), 0.04);
  position: relative;
}

.biz-scale__viz::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 2.65rem;
  height: 2px;
  border-radius: 1px;
  background: linear-gradient(
    90deg,
    rgba(var(--brand-navy-rgb), 0.12) 0%,
    rgba(var(--brand-navy-rgb), 0.22) 50%,
    var(--brand-coral) 100%
  );
  pointer-events: none;
}

.biz-scale__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.85rem;
  position: relative;
  z-index: 1;
}

.biz-scale__tower {
  display: grid;
  gap: 0.18rem;
  padding: 0.3rem;
  border-radius: 6px 6px 4px 4px;
  background: linear-gradient(180deg, var(--brand-navy-mid) 0%, var(--brand-navy) 100%);
  box-shadow: 0 6px 16px rgba(var(--brand-navy-rgb), 0.18);
  box-sizing: border-box;
}

.biz-scale__tower--sm {
  width: 1.85rem;
  height: 2.35rem;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr;
}

.biz-scale__tower--md {
  width: 2.5rem;
  height: 3.65rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
}

.biz-scale__tower--lg {
  width: 3.25rem;
  height: 5.25rem;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(3, 1fr);
}

.biz-scale__win {
  display: block;
  min-height: 0;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.biz-scale__tower--md .biz-scale__win:nth-child(2),
.biz-scale__tower--lg .biz-scale__win:nth-child(2) {
  background: rgba(249, 115, 22, 0.75);
  box-shadow: 0 0 8px rgba(249, 115, 22, 0.35);
}

.biz-scale__label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text);
  text-align: center;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 560px) {
  .biz-scale__viz {
    gap: 1.25rem;
    padding: 1.15rem 1rem 1rem;
  }

  .biz-scale__viz::after {
    left: 8%;
    right: 8%;
    bottom: 2.45rem;
  }

  .biz-scale__label {
    font-size: 0.72rem;
  }
}

.section-intro--tight {
  margin-top: -0.75rem;
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.section-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 70ch;
}

.cards {
  display: grid;
  gap: 1.25rem;
}

.cards--2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.cards--3 {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.cards--5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
}

.cards--5 .card {
  padding: 1.15rem 1rem;
}

.cards--5 .card h3 {
  font-size: 0.92rem;
  line-height: 1.3;
  margin-bottom: 0.6rem;
}

.cards--5 .card p {
  font-size: 0.84rem;
  line-height: 1.45;
}

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

  .cards--5 .card h3 {
    font-size: 1.05rem;
  }

  .cards--5 .card p {
    font-size: 0.95rem;
  }
}

@media (max-width: 560px) {
  .cards--5 {
    grid-template-columns: 1fr;
  }
}

.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.card-head h3 {
  margin: 0;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.service-top {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.15rem 0.45rem 0.15rem 0.35rem;
  border-radius: 999px;
  background: rgba(249, 115, 22, 0.1);
  border: 1px solid rgba(249, 115, 22, 0.22);
  font-size: 0.62rem;
  font-weight: 700;
  font-style: normal;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-coral);
  vertical-align: middle;
}

.service-top__star {
  font-size: 0.72rem;
  line-height: 1;
}

.card--service-top {
  border-color: rgba(249, 115, 22, 0.18);
  box-shadow: 0 12px 32px rgba(var(--brand-navy-rgb), 0.05);
}

.badge {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
  background: var(--surface);
  border-radius: 6px;
  color: var(--accent-strong);
  white-space: nowrap;
}

.card-meta {
  margin-top: 0.75rem !important;
  font-size: 0.9rem !important;
}

.case-visual {
  margin-bottom: 1rem;
}

.case-visual svg {
  display: block;
}

.card--case .case-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--accent-strong);
  margin: 0 0 0.5rem;
}

.case-outcome {
  display: block;
  margin-top: 0.85rem;
}

.case-outcome__term {
  color: var(--brand-coral);
  font-weight: 600;
}

.card--case strong {
  color: var(--text);
}

/* Steps */
.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.steps li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}

.steps li:last-child {
  border-bottom: none;
}

.step-num {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--brand-slate);
  padding-top: 0.2rem;
}

.steps h3 {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
}

.steps p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.process-extras {
  margin-top: 0.5rem;
  padding-top: 1.75rem;
  border-top: 1px dashed rgba(var(--brand-navy-rgb), 0.16);
}

.process-extras__label {
  margin: 0 0 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-slate);
}

.process-extras__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.process-extra {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--brand-navy-rgb), 0.1);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 6px 18px rgba(var(--brand-navy-rgb), 0.04);
}

.process-extra__badge {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--brand-coral);
}

.process-extra h3 {
  margin: 0 0 0.35rem;
  font-size: 0.92rem;
}

.process-extra p {
  margin: 0;
  font-size: 0.84rem;
  line-height: 1.45;
  color: var(--muted);
}

@media (max-width: 640px) {
  .process-extras__grid {
    grid-template-columns: 1fr;
  }
}

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
  margin-bottom: 2rem;
}

.pricing-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--bg-elevated);
}

.pricing-card--featured {
  border-color: rgba(var(--brand-navy-rgb), 0.22);
  box-shadow: 0 12px 36px rgba(28, 25, 23, 0.06);
  background: linear-gradient(165deg, #ffffff 0%, #f8f7f5 100%);
}

.pricing-card h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.pricing-pct {
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--accent-strong);
  margin: 0 0 0.75rem;
}

.pricing-card p:last-child {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0;
}

.pricing-guarantee {
  margin: -0.5rem 0 1.75rem;
  font-size: 0.95rem;
  color: var(--muted);
  max-width: none;
  white-space: nowrap;
}

.pricing-guarantee strong {
  color: var(--text);
  font-weight: 600;
}

@media (max-width: 767px) {
  .pricing-guarantee {
    white-space: normal;
  }
}

/* FAQ */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  background: var(--bg-elevated);
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.25rem;
  cursor: pointer;
  font-weight: 600;
  list-style: none;
}

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

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--accent-strong);
  font-weight: 400;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  margin: 0;
  padding: 0 1.25rem 1.25rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact */
.contact-section {
  padding-bottom: 5rem;
}

.contact-grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 800px) {
  .contact-grid {
    grid-template-columns: 1.2fr 0.8fr;
    align-items: start;
  }
}

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

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--muted);
}

.field-label {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.field-required {
  font-size: 0.72rem;
  font-weight: 400;
  color: rgba(var(--brand-navy-rgb), 0.38);
}

.section--dark .field-required {
  color: rgba(255, 255, 255, 0.38);
}

.contact-form input,
.contact-form textarea {
  font-family: inherit;
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: var(--bg-elevated);
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(var(--brand-navy-rgb), 0.3);
  outline-offset: 0;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin: 0;
}

.form-checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.45;
  cursor: pointer;
}

.form-checkbox input {
  width: 1.1rem;
  height: 1.1rem;
  margin-top: 0.2rem;
  flex-shrink: 0;
  accent-color: var(--accent-strong);
  cursor: pointer;
}

.form-checkbox-link {
  color: var(--accent-strong);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.form-checkbox-link:hover {
  color: var(--accent);
}

.form-consent {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-privacy-note {
  margin: 0;
  padding-left: calc(1.1rem + 0.65rem);
  font-size: 0.8rem;
  line-height: 1.45;
  color: var(--muted);
}

.section--dark .form-privacy-note {
  color: rgba(255, 255, 255, 0.45);
}

.form-feedback {
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.95rem;
  line-height: 1.45;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
}

.form-feedback[hidden] {
  display: none !important;
}

.form-feedback--info {
  border-color: rgba(var(--brand-navy-rgb), 0.22);
  background: var(--accent-dim);
  color: var(--muted);
}

.form-feedback--success {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(34, 197, 94, 0.1);
  color: var(--success-deep);
}

.form-feedback--error {
  border-color: rgba(239, 68, 68, 0.35);
  background: rgba(239, 68, 68, 0.08);
  color: #991b1b;
}

.section--dark .form-feedback--success {
  border-color: rgba(34, 197, 94, 0.4);
  background: rgba(34, 197, 94, 0.12);
  color: #bbf7d0;
}

.section--dark .form-feedback--error {
  border-color: rgba(248, 113, 113, 0.4);
  background: rgba(239, 68, 68, 0.12);
  color: #fecaca;
}

.contact-aside {
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--surface);
}

.contact-aside .mt {
  margin-top: 1.25rem;
}

.contact-address {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.contact-address__text {
  margin: 0;
  flex: 1 1 12rem;
}

.contact-address__map {
  flex-shrink: 0;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-address__map:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(249, 115, 22, 0.45);
  color: #ffffff;
}

.link-highlight {
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--accent-strong);
}

.link-highlight:hover {
  text-decoration: underline;
}

/* Footer */
.site-footer {
  padding: 3.25rem 0 2rem;
  border-top: none;
  background: var(--bg);
  position: relative;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(calc(100% - 2rem), var(--max));
  height: 3rem;
  background: var(--section-divider) center / 100% auto no-repeat;
  pointer-events: none;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: flex-start;
}

.footer-brand {
  margin: 0 0 0.5rem;
}

.footer-copy {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 40ch;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-links a {
  color: var(--muted);
  text-decoration: none;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-strong);
}
