:root {
  color-scheme: light;
  --ink: #10212b;
  --muted: #5e6b73;
  --line: #dbe4e6;
  --paper: #ffffff;
  --wash: #f5f8f8;
  --teal: #13877d;
  --teal-dark: #0f5f5a;
  --amber: #c58a2b;
  --coral: #c45f4e;
  --blue: #2f6f9f;
  --shadow: 0 22px 70px rgba(16, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
}

a {
  color: var(--teal-dark);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

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

.nav {
  width: min(1120px, calc(100% - 32px));
  min-height: 74px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  font-size: 1.08rem;
  font-weight: 800;
  text-decoration: none;
}

.brand img {
  width: 38px;
  height: 38px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  font-size: 0.95rem;
  font-weight: 700;
}

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

.hero {
  width: min(1120px, calc(100% - 32px));
  min-height: calc(100vh - 74px);
  margin: 0 auto;
  padding: 72px 0 58px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.86fr);
  gap: clamp(34px, 6vw, 76px);
  align-items: center;
}

.hero-copy {
  max-width: 690px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.hero-lede {
  color: var(--ink);
  font-size: clamp(1.55rem, 3.4vw, 2.6rem);
  font-weight: 850;
  line-height: 1.08;
}

.hero-copy p {
  max-width: 610px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.26rem);
}

.hero-copy .hero-lede {
  margin-bottom: 16px;
  color: var(--ink);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.button {
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 0.98rem;
  font-weight: 800;
}

.button.primary {
  border-color: var(--teal);
  background: var(--teal);
  color: #ffffff;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background:
    linear-gradient(145deg, rgba(19, 135, 125, 0.14), rgba(197, 138, 43, 0.1)),
    var(--wash);
}

.hero-map {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.product-card {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  border: 1px solid rgba(219, 228, 230, 0.92);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 14px 40px rgba(16, 33, 43, 0.16);
  backdrop-filter: blur(14px);
}

.product-card img {
  width: 50px;
  height: 50px;
  border-radius: 12px;
}

.product-card strong,
.product-card span {
  display: block;
}

.product-card strong {
  font-size: 1.02rem;
}

.product-card span {
  color: var(--muted);
  font-weight: 700;
}

.product-section,
.company-section,
.trust-section,
.contact-section,
.legal-page {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 78px 0;
}

.section-copy {
  max-width: 720px;
  margin-bottom: 34px;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.section-copy p,
.product-copy p,
.company-grid p,
.trust-section p,
.contact-section p,
.legal-page p,
.legal-page li {
  color: var(--muted);
}

.product-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.78fr);
  gap: 34px;
  align-items: stretch;
}

.product-media,
.product-copy,
.company-grid article,
.trust-section,
.contact-section,
.legal-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}

.product-media {
  overflow: hidden;
  min-height: 420px;
}

.product-media img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  display: block;
}

.product-copy {
  padding: clamp(24px, 4vw, 42px);
}

.product-copy > img {
  width: 62px;
  height: 62px;
  border-radius: 14px;
  margin-bottom: 18px;
}

.product-copy ul,
.legal-page ul {
  padding-left: 1.25rem;
}

.product-copy li + li,
.legal-page li + li {
  margin-top: 8px;
}

.text-link {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 800;
}

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

.company-grid article {
  padding: 24px;
  border-top: 4px solid var(--teal);
}

.company-grid article:nth-child(2) {
  border-top-color: var(--amber);
}

.company-grid article:nth-child(3) {
  border-top-color: var(--blue);
}

.trust-section {
  padding: clamp(26px, 5vw, 46px);
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.85fr);
  gap: 36px;
  align-items: center;
  background: var(--wash);
}

.trust-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.trust-list span {
  min-height: 52px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  display: flex;
  align-items: center;
  color: var(--ink);
  font-weight: 800;
}

.contact-section {
  margin-bottom: 70px;
  padding: clamp(26px, 5vw, 46px);
  display: flex;
  justify-content: space-between;
  gap: 28px;
  align-items: center;
}

.contact-list {
  min-width: min(100%, 420px);
  display: grid;
  gap: 10px;
}

.contact-list a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--ink);
  text-decoration: none;
}

.contact-list strong,
.contact-list span {
  display: block;
}

.contact-list strong {
  font-size: 0.98rem;
}

.contact-list span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 700;
}

.legal-contact-list {
  margin: 24px 0 34px;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.78);
  padding: 26px 0;
}

.site-footer .inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.site-footer a {
  color: #ffffff;
  margin-left: 18px;
}

.legal-page {
  max-width: 920px;
}

.legal-panel {
  padding: clamp(24px, 5vw, 48px);
}

.legal-panel h1 {
  font-size: clamp(2.4rem, 6vw, 4.5rem);
}

.meta {
  color: var(--amber);
  font-weight: 800;
}

@media (max-width: 820px) {
  .nav {
    align-items: flex-start;
    flex-direction: column;
    padding: 16px 0;
  }

  .hero,
  .product-feature,
  .trust-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 46px;
  }

  .hero-visual,
  .hero-map {
    min-height: 360px;
  }

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

  .contact-section {
    align-items: flex-start;
    flex-direction: column;
  }

  .contact-list {
    width: 100%;
  }

  .trust-list {
    grid-template-columns: 1fr;
  }

  .site-footer a {
    margin-left: 0;
    margin-right: 16px;
  }
}

@media (max-width: 520px) {
  .nav-links {
    gap: 14px;
  }

  .product-section,
  .company-section,
  .trust-section,
  .contact-section,
  .legal-page {
    padding: 54px 0;
  }

  .actions,
  .button {
    width: 100%;
  }

  .hero-visual,
  .hero-map {
    min-height: 310px;
  }
}
