:root {
  --bg: #0a0a0a;
  --surface: #111111;
  --surface-raised: #171717;
  --line: rgba(255, 255, 255, .16);
  --line-soft: rgba(255, 255, 255, .09);
  --accent: #ff9800;
  --accent-deep: #c86f00;
  --text: #f4f1ea;
  --muted: #aaa69f;
  --quiet: #77736d;
  --ok: #76c893;
  --err: #ff9d9d;
  --display: 'Cinzel', Georgia, serif;
  --body: ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html {
  background: var(--bg);
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  background: var(--bg);
  color: var(--text);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.6;
}

img { max-width: 100%; }

a { color: inherit; }

h1, h2, h3, p, figure, ul { margin: 0; }

h1, h2, h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -.025em;
}

button, input { font: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* Header */
.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(10, 10, 10, .96);
}

.topbar-inner {
  width: min(1280px, calc(100% - 40px));
  min-height: 64px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.topbar-logo img { width: auto; height: 31px; }

.topbar-logo-text {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.topbar-phone {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 44px;
  padding: 8px 0 8px 16px;
  border-left: 1px solid var(--accent);
  color: var(--text);
  font-size: 13px;
  text-decoration: none;
  white-space: nowrap;
}

.topbar-phone i { color: var(--accent); }
.topbar-phone:hover { color: var(--accent); }

/* Editorial split hero */
.hero {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}

.hero-grid {
  width: min(1280px, calc(100% - 40px));
  min-height: min(760px, calc(100vh - 64px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(300px, .96fr);
  align-items: stretch;
  gap: clamp(32px, 7vw, 110px);
  padding: clamp(60px, 9vw, 128px) 0 clamp(52px, 8vw, 104px);
}

.hero-copy {
  min-width: 0;
  container-type: inline-size;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.hero-eyebrow,
.eyebrow,
.section-index {
  color: var(--accent);
  font-family: var(--body);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .15em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 26px;
}

.hero-eyebrow-mark {
  display: inline-block;
  width: 30px;
  height: 2px;
  background: var(--accent);
}

.hero h1 {
  max-width: 100%;
  color: var(--text);
  font-size: clamp(3.15rem, 15cqi, 8.2rem);
  line-height: .91;
  overflow-wrap: normal;
  word-break: normal;
}

.hero h1 em {
  color: var(--accent);
  font-style: normal;
}

.hero-title-line { display: block; }

.hero-offer {
  width: min(100%, 550px);
  margin-top: clamp(30px, 5vw, 52px);
  padding: 10px 0 16px;
  display: flex;
  align-items: baseline;
  gap: clamp(15px, 3vw, 28px);
  border-top: 1px solid var(--accent);
  border-bottom: 1px solid var(--line);
}

.offer-number {
  flex: 0 0 auto;
  color: var(--accent);
  font-family: var(--display);
  font-size: clamp(5.25rem, 30cqi, 11rem);
  font-weight: 700;
  letter-spacing: -.08em;
  line-height: .86;
}

.offer-copy {
  max-width: 180px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 600;
  line-height: 1.15;
}

.offer-copy small {
  display: block;
  margin-top: 9px;
  color: var(--muted);
  font-family: var(--body);
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
}

.hero-lede {
  max-width: 580px;
  margin-top: 24px;
  color: var(--muted);
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  line-height: 1.55;
}

.hero-details {
  width: 100%;
  max-width: 640px;
  margin-top: 30px;
  display: grid;
  grid-template-columns: 1.25fr .7fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-detail {
  min-width: 0;
  padding: 15px 18px 16px 0;
}

.hero-detail + .hero-detail {
  padding-left: 18px;
  border-left: 1px solid var(--line-soft);
}

.hero-detail-label {
  display: block;
  margin-bottom: 5px;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.hero-detail strong {
  display: block;
  color: var(--text);
  font-size: 14px;
  line-height: 1.35;
}

.hero-note {
  margin-top: 15px;
  color: var(--quiet);
  font-size: 12px;
}

.hero-expired {
  max-width: 540px;
  margin-top: 20px;
  color: var(--err);
  font-size: 14px;
}

.hero .button { margin-top: 29px; }

.hero-media {
  min-height: 520px;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  background: var(--surface);
}

.hero-media img,
.hero-media video {
  width: 100%;
  min-height: 0;
  flex: 1 1 auto;
  display: block;
  object-fit: cover;
  object-position: center;
  filter: saturate(.82) contrast(1.06) brightness(.82);
}

.hero-media figcaption {
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Shared controls */
.button {
  min-height: 48px;
  padding: 12px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .025em;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, border-color .18s ease;
}

.button-primary {
  background: var(--accent);
  color: #0a0a0a;
}

.button-primary:hover { background: #ffb13b; }

.button-secondary {
  border-color: var(--accent);
  background: transparent;
  color: var(--accent);
}

.button-secondary:hover {
  background: var(--accent);
  color: #0a0a0a;
}

.button.is-disabled,
.button:disabled {
  border-color: #373737;
  background: #292929;
  color: #777;
  cursor: not-allowed;
}

.button.is-disabled:hover { background: #292929; }

/* Sections */
.content-shell {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section {
  padding: clamp(68px, 10vw, 136px) 0;
  border-bottom: 1px solid var(--line-soft);
}

.section-index { margin-bottom: 28px; }

.section-head {
  max-width: 920px;
  margin-bottom: 44px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, .7fr);
  gap: 36px;
  align-items: end;
}

.section-head h2,
.form-intro h2 {
  color: var(--text);
  font-size: clamp(2rem, 5vw, 4.3rem);
  line-height: .98;
}

.section-head p,
.form-intro > p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.65;
}

/* Specialist */
.specialist-grid {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1fr);
  gap: clamp(34px, 8vw, 100px);
  align-items: center;
}

.specialist-photo {
  aspect-ratio: 4 / 5;
  max-height: 650px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
}

.specialist-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(.8) contrast(1.05);
}

.specialist-copy h2 {
  margin-top: 14px;
  color: var(--text);
  font-size: clamp(2.2rem, 6vw, 5.2rem);
  line-height: .95;
}

.specialist-copy > p:not(.eyebrow) {
  max-width: 580px;
  margin-top: 25px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.specialist-copy strong { color: var(--text); }

.feature-list {
  max-width: 580px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  padding: 13px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--text);
  font-size: 14px;
}

.feature-list i { width: 18px; color: var(--accent); text-align: center; }

.inline-link {
  display: inline-flex;
  margin-top: 26px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .05em;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.inline-link:hover { color: var(--text); }

/* Practical information */
.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.info-card {
  min-width: 0;
  padding: 27px 24px 32px 0;
}

.info-card + .info-card {
  padding-left: 24px;
  border-left: 1px solid var(--line-soft);
}

.info-number {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-family: var(--display);
  font-size: 15px;
}

.info-card h3 {
  margin-bottom: 12px;
  color: var(--text);
  font-size: clamp(1.15rem, 2vw, 1.5rem);
  line-height: 1.15;
}

.info-card p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.section-note {
  max-width: 650px;
  margin-top: 25px;
  color: var(--quiet);
  font-size: 13px;
}

/* Crawlable ordinary and drop-in prices */
.price-table-wrap {
  overflow-x: auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.price-table {
  width: 100%;
  min-width: 640px;
  border-collapse: collapse;
  text-align: left;
}

.price-table th,
.price-table td {
  padding: 15px 16px;
  border-bottom: 1px solid var(--line-soft);
  vertical-align: top;
}

.price-table thead th {
  color: var(--quiet);
  font-family: var(--body);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.price-table thead th:nth-child(1) { width: 18%; }
.price-table thead th:nth-child(2) { width: 44%; }
.price-table thead th:nth-child(3),
.price-table thead th:nth-child(4) { width: 19%; }

.price-table td {
  color: var(--text);
  font-size: 14px;
  line-height: 1.45;
}

.price-table td:first-child { color: var(--quiet); font-size: 12px; }
.price-table td:nth-child(3) { color: var(--muted); }
.price-table td:nth-child(3) del { text-decoration-thickness: 1px; }
.price-table td:last-child { white-space: nowrap; }
.price-table .price-new { color: var(--accent); font-weight: 800; }

.price-table .price-category {
  padding: 23px 16px 9px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.price-table .price-category + tr td { border-top: 0; }

.price-note {
  max-width: 760px;
  margin-top: 22px;
  color: var(--quiet);
  font-size: 13px;
  line-height: 1.6;
}

/* Interest form */
.form-layout {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(360px, 1fr);
  gap: clamp(36px, 8vw, 110px);
  align-items: start;
}

.form-intro h2 { margin-top: 14px; }

.form-intro > p:not(.section-index) {
  max-width: 440px;
  margin-top: 25px;
}

.form-facts {
  max-width: 440px;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.form-fact {
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}

.form-fact span {
  display: block;
  color: var(--quiet);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.form-fact strong {
  display: block;
  margin-top: 4px;
  color: var(--text);
  font-size: 15px;
}

.form-card {
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--accent);
  background: var(--surface);
}

.form-card.is-expired { border-color: var(--line); }

.form-card-title {
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.45rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.1;
}

.form-card-sub {
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.form-card-sub strong { color: var(--accent); }

.form-fields {
  margin-top: 28px;
  display: grid;
  gap: 18px;
}

.form-field { display: grid; gap: 7px; }

.form-label {
  color: var(--text);
  font-size: 13px;
  font-weight: 800;
}

.required { color: var(--accent); }
.optional { color: var(--muted); font-weight: 500; }

.form-input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #484848;
  border-radius: 2px;
  outline: none;
  background: #0a0a0a;
  color: var(--text);
  font-family: var(--body);
  font-size: 15px;
}

.form-input::placeholder { color: #6c6964; }
.form-input:focus { border-color: var(--accent); }
.form-input:disabled { cursor: not-allowed; opacity: .55; }
.form-input[aria-invalid='true'] { border-color: var(--err); }

.field-help {
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.45;
}

.field-error {
  min-height: 0;
  color: var(--err);
  font-size: 12px;
  line-height: 1.4;
}

.consent-field {
  margin-top: 23px;
  padding-top: 19px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 11px;
  border-top: 1px solid var(--line-soft);
}

.consent-field input {
  width: 20px;
  height: 20px;
  margin: 1px 0 0;
  accent-color: var(--accent);
}

.consent-field label {
  color: var(--text);
  font-size: 13px;
  line-height: 1.55;
}

.consent-note {
  margin: 9px 0 0 33px;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.45;
}

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

.form-submit {
  width: 100%;
  margin-top: 25px;
}

.form-notice {
  margin-top: 16px;
  color: var(--quiet);
  font-size: 12px;
  line-height: 1.55;
}

.form-notice a { color: var(--accent); }

.form-status {
  min-height: 0;
  margin-top: 14px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.form-status.pending { color: var(--muted); }
.form-status.ok { color: var(--ok); }
.form-status.err { color: var(--err); }

.spinner {
  width: 16px;
  height: 16px;
  display: inline-block;
  border: 2px solid rgba(10, 10, 10, .35);
  border-top-color: #0a0a0a;
  border-radius: 50%;
  animation: spin .7s linear infinite;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* Confirmation */
.success-card {
  display: none;
  margin-top: 42px;
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--ok);
  background: #0e1711;
}

.success-card.show { display: block; }

.success-icon { color: var(--ok); font-size: 42px; }

.success-title {
  margin-top: 16px;
  color: var(--text);
  font-family: var(--display);
  font-size: clamp(1.7rem, 4vw, 3rem);
  line-height: 1;
}

.success-sub,
.success-sms-note {
  max-width: 680px;
  margin-top: 13px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

.success-info-box {
  max-width: 720px;
  margin-top: 27px;
  border-top: 1px solid rgba(118, 200, 147, .35);
}

.success-info-row {
  padding: 13px 0;
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  border-bottom: 1px solid var(--line-soft);
}

.success-info-row i { padding-top: 3px; color: var(--accent); }

.success-info-row strong {
  display: block;
  color: var(--quiet);
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.success-info-row span {
  display: block;
  margin-top: 3px;
  color: var(--text);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.45;
}

.success-map-btn { margin-top: 28px; }

/* Location */
.map-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 30px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.map-card h3 {
  color: var(--text);
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1;
}

.map-card p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 15px;
}

/* Floating links and footer */
.float-socials {
  position: fixed;
  right: 18px;
  bottom: 22px;
  z-index: 15;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.float-btn {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 2px;
  background: #151515;
  color: var(--text);
  font-size: 18px;
  text-decoration: none;
}

.float-btn:hover { border-color: var(--accent); color: var(--accent); }
.float-btn--ig i { color: #f28a55; }
.float-btn--fb i { color: #70a7ff; }
.float-btn--tt i { color: var(--text); }

/* Footer keeps these links available without covering the video controls. */
.float-socials { display: none; }

.footer {
  padding: 36px 20px 46px;
  border-top: 1px solid var(--line-soft);
  color: var(--quiet);
  font-size: 12px;
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
  margin-bottom: 17px;
}

.footer-links a { color: var(--muted); text-decoration: none; }
.footer-links a:hover { color: var(--accent); }

@media (max-width: 860px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); min-height: auto; }
  .hero-copy { max-width: 760px; }
  .hero h1 { max-width: 12ch; }
  .hero-media { min-height: min(70vw, 560px); max-height: 620px; }
  .form-layout { grid-template-columns: 1fr; }
  .form-intro > p:not(.section-index), .form-facts { max-width: 650px; }
  .form-facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); column-gap: 20px; }
  .form-fact + .form-fact { padding-left: 20px; border-left: 1px solid var(--line-soft); }
}

@media (max-width: 640px) {
  .topbar-inner, .hero-grid, .content-shell { width: min(100% - 32px, 1180px); }
  .topbar-inner { min-height: 58px; }
  .topbar-logo-text { display: none; }
  .topbar-phone span { display: none; }
  .topbar-phone { padding-left: 15px; }
  .hero-grid { padding: 52px 0 60px; gap: 42px; }
  .hero h1 {
    max-width: none;
    font-size: clamp(2.35rem, 15cqi, 4.8rem);
    letter-spacing: -.04em;
  }
  .hero-offer { margin-top: 29px; }
  .offer-number { font-size: clamp(4.8rem, 30cqi, 8rem); }
  .hero-details { grid-template-columns: 1fr 1fr; }
  .hero-detail:last-child { grid-column: 1 / -1; border-top: 1px solid var(--line-soft); padding-left: 0; }
  .hero-detail:nth-child(2) { padding-left: 14px; }
  .hero-media { min-height: 420px; }
  .section { padding: 68px 0; }
  .section-head { grid-template-columns: 1fr; gap: 18px; margin-bottom: 30px; }
  .specialist-grid { grid-template-columns: 1fr; gap: 35px; }
  .specialist-photo { max-height: 520px; }
  .info-grid { grid-template-columns: 1fr; }
  .info-card, .info-card + .info-card { padding: 23px 0; border-left: 0; }
  .info-card + .info-card { border-top: 1px solid var(--line-soft); }
  .price-table { min-width: 580px; }
  .form-facts { display: block; }
  .form-fact + .form-fact { padding-left: 0; border-left: 0; }
  .map-card { grid-template-columns: 1fr; gap: 20px; }
  .map-card .button { width: 100%; }
  .float-socials { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
