@font-face {
  font-family: "Inter";
  src: url("/assets/fonts/inter-var.woff2") format("woff2");
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --brand-red: #e60000;
  --brand-red-dark: #b80000;
  --brand-dark: #111827;
  --brand-panel: #1f2937;
  --text: #334155;
  --muted: #64748b;
  --light: #f8fafc;
  --line: #e5e7eb;
  --white: #ffffff;
  --radius: 22px;
  --container: 1180px;
  --shadow: 0 22px 50px rgba(15, 23, 42, 0.16);
}



/* Base */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
svg {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 9999;
  background: var(--brand-red);
  color: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
}

.skip-link:focus {
  left: 16px;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  background: rgba(17, 24, 39, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-header.is-scrolled {
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.logo img {
  width: 74px;
  height: 74px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav a {
  color: #e5e7eb;
  font-size: 15px;
  font-weight: 800;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: #ff3b3b;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-red);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 900;
}

.header-call:hover {
  background: var(--brand-red-dark);
}

.header-call svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  color: #fff;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 9px;
  position: relative;
  margin: auto;
}

.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 21px;
  height: 2px;
  background: currentColor;
  border-radius: 9px;
}

.menu-toggle span::before {
  top: -7px;
}

.menu-toggle span::after {
  top: 7px;
}

.menu-toggle.is-open span {
  background: transparent;
}

.menu-toggle.is-open span::before {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span::after {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  display: none;
  background: rgba(17, 24, 39, 0.96);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 10px 0 18px;
}

.mobile-nav.is-open {
  display: block;
}

.mobile-nav a {
  display: block;
  color: #fff;
  padding: 14px 4px;
  font-weight: 800;
}

/* Shared layout */
main {
  padding-top: 82px;
}

.section {
  padding: 86px 0;
}

.section-light {
  background: var(--light);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.red-line {
  width: 76px;
  height: 4px;
  background: var(--brand-red);
  border-radius: 9px;
  margin: 0 0 22px;
}

.eyebrow {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  color: var(--brand-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 18px;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--brand-red);
  border-radius: 9px;
}

h1 {
  max-width: 860px;
  color: var(--brand-dark);
  font-size: clamp(42px, 6vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.065em;
  margin: 0 0 24px;
  font-weight: 900;
}

h1 strong {
  color: var(--brand-red);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 46px;
  text-align: center;
}

.content-block h2,
.section-heading h2 {
  color: var(--brand-dark);
  font-size: clamp(32px, 4vw, 46px);
  line-height: 1.08;
  letter-spacing: -0.055em;
  margin: 0 0 16px;
}

.section-heading .red-line {
  margin-left: auto;
  margin-right: auto;
}

.content-block p,
.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 13px 24px;
  font-weight: 900;
}

.btn-primary {
  background: var(--brand-red);
  color: #fff;
}

.btn-primary:hover {
  background: var(--brand-red-dark);
}

.btn-secondary {
  background: #fff;
  border: 1px solid #dbe3ef;
  color: var(--brand-dark);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Home page */
.hero {
  padding: 92px 0;
  background:
    radial-gradient(circle at top right, rgba(230, 0, 0, 0.1), transparent 32%),
    radial-gradient(#eef2f7 1.5px, transparent 1.5px),
    #fff;
  background-size: auto, 30px 30px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.hero-content p {
  max-width: 650px;
  color: #526174;
  font-size: clamp(18px, 2vw, 21px);
}

.hero .hero-actions {
  margin: 32px 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  color: #475569;
  font-weight: 800;
}

.trust-row span {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 8px 12px;
}

.hero-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.hero-card div {
  padding: 26px;
}

.hero-card h2 {
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.15;
  margin: 0 0 8px;
}

/* Inner page hero */
.page-hero {
  padding: 86px 0 76px;
  background:
    radial-gradient(circle at top right, rgba(230, 0, 0, 0.1), transparent 32%),
    radial-gradient(#eef2f7 1.5px, transparent 1.5px),
    #fff;
  background-size: auto, 30px 30px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.breadcrumbs a {
  color: var(--brand-red);
}

.page-lead {
  max-width: 760px;
  color: #526174;
  font-size: clamp(18px, 2vw, 21px);
  margin-bottom: 32px;
}

/* Stats */
.stats {
  background: var(--brand-panel);
  color: #fff;
  border-top: 4px solid var(--brand-red);
  border-bottom: 4px solid var(--brand-red);
  padding: 30px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: left;
  background: #2b3645;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 20px;
}

.stat-icon {
  flex: 0 0 52px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(230, 0, 0, 0.16);
  color: #ff2b2b;
}

.stat-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.stat-card strong {
  display: block;
  color: #fff;
  font-size: 30px;
  line-height: 1;
  font-weight: 900;
  margin-bottom: 6px;
}

.stat-card span:last-child {
  display: block;
  color: #cbd5e1;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.stat-rar {
  background: linear-gradient(135deg, #2b1f24, #3a262c);
  border-color: rgba(230, 0, 0, 0.65);
}

/* Content grids */
.about-grid,
.split-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
}

.image-panel {
  margin: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(203, 213, 225, 0.8);
}

.image-panel img {
  width: 100%;
  aspect-ratio: 1.12 / 1;
  object-fit: cover;
}

.feature-list {
  list-style: none;
  margin: 26px 0 0;
  padding: 0;
  display: grid;
  gap: 12px;
  font-weight: 800;
}

.feature-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.feature-list svg {
  flex: 0 0 auto;
  width: 20px;
  height: 20px;
  color: var(--brand-red);
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  margin-top: 3px;
}

/* Cards */
.services-grid,
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card,
.info-card {
  background: #fff;
  border: 1px solid rgba(203, 213, 225, 0.95);
  border-radius: 22px;
  padding: 30px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.service-card:hover,
.info-card:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 0, 0, 0.4);
  box-shadow: var(--shadow);
}

.service-card h3,
.info-card h3 {
  color: var(--brand-dark);
  font-size: 23px;
  line-height: 1.2;
  margin: 0 0 10px;
}

.service-card p,
.info-card p {
  color: var(--muted);
  margin-bottom: 0;
}

.service-card a {
  color: var(--brand-red);
  font-weight: 900;
}

.card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 18px;
  background: rgba(230, 0, 0, 0.08);
  color: var(--brand-red);
  border: 1px solid rgba(230, 0, 0, 0.14);
}

.card-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
}

/* CTA */
.cta-band {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  background: linear-gradient(135deg, var(--brand-panel), var(--brand-dark));
  color: #fff;
  border-radius: 32px;
  padding: 44px;
  box-shadow: var(--shadow);
}

.cta-band h2 {
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin-bottom: 10px;
}

.cta-band p {
  color: #cbd5e1;
  margin-bottom: 0;
}

/* Contact blocks shared */
.contact-box {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
  background: var(--brand-panel);
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.contact-info {
  padding: 46px;
  color: #fff;
}

.contact-info h2 {
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
  margin: 0 0 12px;
}

.contact-info p {
  color: #cbd5e1;
}

.map-wrap {
  min-height: 460px;
  background: #e5e7eb;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
  display: block;
}

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: start;
}

.contact-info-panel,
.form-card,
.map-box {
  border-radius: 32px;
  box-shadow: var(--shadow);
}

.contact-info-panel {
  position: sticky;
  top: 110px;
  background: linear-gradient(135deg, var(--brand-panel), var(--brand-dark));
  color: #fff;
  padding: 42px;
}

.contact-info-panel h2,
.form-card h2,
.map-info h2 {
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.08;
  letter-spacing: -0.05em;
  margin: 0 0 14px;
}

.contact-info-panel p,
.map-info p {
  color: #cbd5e1;
}

.contact-items {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.contact-item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 15px;
  align-items: start;
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(230, 0, 0, 0.18);
  color: #ff3434;
}

.contact-icon svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

.contact-item h3 {
  color: #fff;
  margin: 0 0 4px;
  font-size: 18px;
}

.contact-item p {
  margin: 0;
  font-size: 15px;
}

.contact-item a {
  color: #fff;
  font-weight: 900;
}

.form-card {
  background: #fff;
  border: 1px solid rgba(203, 213, 225, 0.95);
  padding: 42px;
}

.form-card > p {
  color: var(--muted);
  margin-bottom: 28px;
}

.appointment-form {
  display: grid;
  gap: 22px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field.full {
  grid-column: 1 / -1;
}

.form-field label {
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 900;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid #cbd5e1;
  border-radius: 16px;
  padding: 13px 14px;
  color: var(--brand-dark);
  background: #fff;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.form-field textarea {
  min-height: 130px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--brand-red);
  box-shadow: 0 0 0 4px rgba(230, 0, 0, 0.1);
}

.form-note {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}

.map-section {
  padding-top: 0;
}

.map-box {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  overflow: hidden;
  background: var(--brand-panel);
}

.map-info {
  padding: 44px;
  color: #fff;
}

.quick-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.quick-action {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  font-weight: 900;
}

.quick-action:hover {
  background: var(--brand-red);
  border-color: var(--brand-red);
}

.quick-action svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Footer */
.site-footer {
  background: #0f172a;
  color: #cbd5e1;
  padding: 54px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
}

.site-footer h3 {
  color: #fff;
  margin: 0 0 12px;
}

.site-footer a {
  display: block;
  color: #cbd5e1;
  margin: 6px 0;
}

.footer-logo {
  width: 84px;
  height: 84px;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
  padding: 0;
  margin-bottom: 14px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 34px;
  padding-top: 20px;
  font-size: 14px;
}

/* Floating phone */
.floating-contact {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1100;
}

.floating-contact a {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--brand-red);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
}

.floating-contact a:hover {
  background: var(--brand-red-dark);
}

.floating-contact svg {
  width: 25px;
  height: 25px;
  fill: currentColor;
}

/* Responsive */
@media (max-width: 980px) {
  .desktop-nav,
  .header-call {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .hero-grid,
  .about-grid,
  .split-grid,
  .contact-box,
  .cta-band,
  .contact-grid,
  .map-box {
    grid-template-columns: 1fr;
  }

  .services-grid,
  .cards-grid,
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-info-panel {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--container));
  }

  .header-inner {
    min-height: 74px;
  }

  main {
    padding-top: 74px;
  }

  .logo img {
    width: 62px;
    height: 62px;
    background: transparent;
    border-radius: 0;
    padding: 0;
  }

  .hero,
  .page-hero {
    padding: 56px 0 64px;
  }

  .hero-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .trust-row {
    display: grid;
  }

  .section {
    padding: 64px 0;
  }

  .stats-grid,
  .services-grid,
  .cards-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    gap: 12px;
  }

  .stat-card {
    justify-content: flex-start;
    padding: 16px;
  }

  .cta-band {
    padding: 28px;
    text-align: center;
  }

  .contact-info,
  .contact-info-panel,
  .form-card,
  .map-info {
    padding: 28px;
  }

  .contact-info-panel,
  .form-card,
  .map-info {
    border-radius: 26px;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-item {
    grid-template-columns: 46px 1fr;
    padding: 15px;
  }

  .contact-icon {
    width: 46px;
    height: 46px;
  }

  .quick-actions {
    display: grid;
  }

  .quick-action {
    justify-content: center;
  }

  .map-wrap,
  .map-wrap iframe {
    min-height: 360px;
  }
}
