:root {
  --bg: #fbfbf8;
  --surface: #ffffff;
  --surface-soft: #f1f5ef;
  --text: #17191f;
  --muted: #5f6876;
  --line: #dfe4dd;
  --accent: #063f9f;
  --accent-strong: #052e7a;
  --sage: #5f7f61;
  --sage-soft: #e8efe4;
  --coral: #dc7461;
  --shadow: 0 24px 70px rgba(36, 46, 31, 0.12);
  --radius: 8px;
  --font: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --serif: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  width: 100%;
  margin: 0;
  overflow-x: clip;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 16px;
  left: 16px;
  z-index: 30;
  transform: translateY(-140%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 76px;
  padding: 16px clamp(18px, 4vw, 64px);
  border-bottom: 1px solid color-mix(in srgb, var(--line), transparent 18%);
  background: color-mix(in srgb, var(--bg), transparent 8%);
  backdrop-filter: blur(16px);
}

.nav-links {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 2.4vw, 34px);
}

.nav-links a {
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

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

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 800;
  text-decoration: none;
}

.button.primary {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
}

.button {
  padding: 0 28px;
}

.button.secondary {
  border: 1px solid var(--accent);
  background: var(--surface);
  color: var(--accent);
}

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

.hero {
  display: grid;
  grid-template-columns: minmax(520px, 0.95fr) minmax(420px, 1.05fr);
  min-height: calc(100vh - 76px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 26px;
  min-width: 0;
  padding: clamp(44px, 6vw, 84px) clamp(24px, 5vw, 70px);
}

.section-label {
  margin: 0 0 12px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.detail-panel h2 {
  margin: 0;
  color: var(--text);
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 720px;
  overflow-wrap: break-word;
  font-size: clamp(42px, 4.6vw, 66px);
  line-height: 1.02;
}

.hero-text {
  max-width: 610px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 23px);
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  max-width: 760px;
  margin: 8px 0 0;
  padding: 0;
  list-style: none;
}

.trust-strip li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: center;
  min-width: 0;
  border-left: 1px solid var(--line);
  padding-left: 16px;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.trust-strip li:first-child {
  border-left: 0;
  padding-left: 0;
}

.icon,
.line-icon {
  display: inline-block;
  width: 32px;
  height: 32px;
  color: var(--sage);
}

.icon {
  border: 2px solid currentColor;
  border-radius: 50%;
  position: relative;
}

.icon.shield {
  border-radius: 10px 10px 14px 14px;
}

.icon.shield::after,
.icon.clock::after,
.icon.message::after {
  position: absolute;
  inset: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  content: "";
}

.icon.shield::after {
  transform: rotate(45deg) translate(-1px, -2px);
}

.icon.clock::after {
  width: 8px;
  height: 10px;
  border-top: 0;
  border-left: 0;
  transform-origin: left bottom;
}

.icon.message {
  border-radius: 8px;
}

.icon.message::after {
  inset: auto auto -5px 8px;
  width: 8px;
  height: 8px;
  border-top: 0;
  border-left: 0;
  background: var(--surface);
  transform: rotate(45deg);
}

.hero-media {
  min-width: 0;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-section,
.trust-section,
.details-grid {
  padding: clamp(54px, 7vw, 92px) clamp(22px, 5vw, 70px);
}

.profile-section,
.trust-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 84px);
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.section-heading {
  max-width: 620px;
}

.section-heading h2,
.detail-panel h2 {
  font-size: clamp(32px, 3.2vw, 48px);
  line-height: 1.08;
}

.section-heading p:not(.section-label) {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

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

.profile-facts article {
  border-top: 2px solid var(--sage);
  padding-top: 18px;
}

.profile-facts h3 {
  margin: 14px 0 8px;
  font-size: 17px;
}

.profile-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.line-icon {
  border: 1px solid var(--sage);
  border-radius: var(--radius);
  background: var(--sage-soft);
}

.trust-section {
  background: linear-gradient(180deg, var(--surface), var(--surface-soft));
}

.check-list {
  display: grid;
  gap: 0;
}

.check-list div {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 18px 0;
}

.check-list span {
  display: inline-grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  font-size: 14px;
  font-weight: 900;
}

.check-list p {
  margin: 0;
  color: var(--text);
  font-size: 16px;
  line-height: 1.5;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  padding-top: 1px;
  padding-bottom: 1px;
}

.detail-panel {
  background: var(--bg);
  padding: clamp(36px, 5vw, 64px);
}

.spec-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
  margin: 30px 0 0;
}

.spec-list div {
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.spec-list dt {
  color: var(--sage);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.spec-list dd {
  margin: 8px 0 0;
  color: var(--text);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.document-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.document-list li {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  padding: 15px 15px 15px 42px;
  color: var(--text);
  font-size: 14px;
  font-weight: 800;
}

.document-list li::before {
  position: absolute;
  left: 15px;
  top: 15px;
  display: grid;
  width: 18px;
  height: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #fff;
  content: "✓";
  font-size: 11px;
  font-weight: 900;
}

.site-footer {
  padding: 28px clamp(22px, 5vw, 70px);
  background: #0c1733;
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
}

.site-footer p {
  max-width: 840px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .site-header {
    justify-content: flex-start;
    overflow-x: auto;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-media {
    min-height: 420px;
    order: -1;
  }

  .profile-section,
  .trust-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .site-header {
    min-height: 66px;
    padding: 12px 16px;
    overflow-x: hidden;
  }

  .nav-links {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 14px;
    min-width: 0;
    text-align: center;
  }

  .nav-links a {
    font-size: 13px;
    line-height: 1.25;
  }

  .hero-copy,
  .profile-section,
  .trust-section,
  .details-grid {
    padding: 36px 16px;
  }

  .hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .hero-media {
    min-height: 310px;
  }

  .hero-actions,
  .trust-strip,
  .profile-facts,
  .details-grid,
  .spec-list,
  .document-list {
    grid-template-columns: 1fr;
  }

  .hero-actions {
    display: grid;
  }

  .trust-strip {
    gap: 12px;
  }

  .trust-strip li {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 12px 0 0;
  }

  .trust-strip li:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .site-footer {
    text-align: left;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .site-footer {
    display: none;
  }

  body {
    background: #fff;
  }

  .hero,
  .profile-section,
  .trust-section,
  .details-grid {
    display: block;
    min-height: auto;
    border: 0;
    padding: 28px;
    color: #111827;
  }

  .hero-media {
    max-height: 280px;
    min-height: 0;
  }
}
