:root {
  --color-bg: #ffffff;
  --color-surface: #f5f6f8;
  --color-text: #1f2227;
  --color-muted: #626976;
  --color-border: #e4e7ec;
  --color-primary: #d50000;
  --color-primary-dark: #a90000;
  --color-dark: #15171b;
  --color-dark-soft: #242833;
  --shadow: 0 20px 50px rgba(20, 24, 32, 0.12);
  --radius: 24px;
  --container: 1260px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
}

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

a {
  color: inherit;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.narrow {
  max-width: 820px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--color-border);
}

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

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

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.96rem;
  font-weight: 650;
}

.nav a {
  text-decoration: none;
  color: var(--color-muted);
}

.nav a:hover,
.nav a:focus-visible {
  color: var(--color-primary);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 86px;
  background:
    radial-gradient(circle at 85% 5%, rgba(213, 0, 0, 0.18), transparent 32%),
    linear-gradient(145deg, #ffffff 0%, #f3f4f7 100%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: auto -100px -220px auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: rgba(213, 0, 0, 0.10);
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.72fr);
  gap: 48px;
  align-items: center;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-primary);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

h1 {
  max-width: 790px;
  font-size: clamp(2.45rem, 8vw, 5.3rem);
}

h2 {
  font-size: clamp(2rem, 4.8vw, 3.4rem);
}

h3 {
  font-size: 1.22rem;
}

.lead {
  max-width: 720px;
  margin: 22px 0 0;
  font-size: clamp(1.08rem, 2.2vw, 1.32rem);
  color: var(--color-muted);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--color-primary);
  box-shadow: 0 14px 28px rgba(213, 0, 0, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--color-primary-dark);
}

.button-secondary {
  color: var(--color-text);
  background: #ffffff;
  border: 1px solid var(--color-border);
}

.availability {
  margin-top: 18px;
  color: var(--color-muted);
  font-weight: 650;
}

.hero-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.hero-logo {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 20px;
}

.quick-contact {
  border-top: 1px solid var(--color-border);
  padding-top: 18px;
}

.quick-contact p {
  margin: 0 0 10px;
}

.section {
  padding: 82px 0;
}

.section-light {
  background: var(--color-surface);
}

.section-dark {
  color: #ffffff;
  background: linear-gradient(135deg, var(--color-dark), var(--color-dark-soft));
}

.section-dark .eyebrow,
.section-dark a {
  color: #ffffff;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.section-heading p:not(.eyebrow) {
  margin: 16px 0 0;
  color: var(--color-muted);
  font-size: 1.08rem;
}

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

.card {
  min-height: 190px;
  padding: 26px;
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--color-border);
}

.card h3 {
  margin-bottom: 12px;
}

.card p {
  margin: 0;
  color: var(--color-muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 430px);
  gap: 42px;
  align-items: center;
}

.split p {
  color: var(--color-muted);
  font-size: 1.08rem;
}

.highlight-box {
  padding: 30px;
  border-radius: var(--radius);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
}

.highlight-box .button {
  margin-top: 10px;
}

.trust-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.75fr) minmax(760px, 1.8fr);
  gap: 42px;
  align-items: start;
}

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

.trust-items p {
  margin: 0;
  padding: 22px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  padding: 18px 20px;
}

summary {
  cursor: pointer;
  font-weight: 800;
}

details p {
  margin: 12px 0 0;
  color: var(--color-muted);
}

.cta {
  color: #ffffff;
  background:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.18), transparent 30%),
    linear-gradient(135deg, var(--color-primary), #7f0000);
}

.cta .eyebrow,
.cta p {
  color: #ffffff;
}

.cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
}

.cta .button-secondary {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.38);
}

.site-footer {
  padding: 28px 0;
  color: var(--color-muted);
  background: #ffffff;
  border-top: 1px solid var(--color-border);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-inner p {
  margin: 0;
}

.legal-page {
  padding: 62px 0 84px;
}

.legal-page section {
  margin-top: 32px;
}

.legal-page h1 {
  font-size: clamp(2.2rem, 6vw, 4.2rem);
}

.legal-page h2 {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

@media (max-width: 920px) {
  .hero-grid,
  .split,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .cards,
  .trust-items {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero {
    padding-top: 54px;
  }
}

@media (max-width: 680px) {
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    align-items: flex-start;
    flex-direction: column;
  }

  .brand img {
    width: 168px;
  }

  .nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    gap: 16px;
  }

  .cards,
  .trust-items {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 60px 0;
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
