:root {
  --ink: #081957;
  --muted: #526074;
  --line: #dfe6ee;
  --soft: #f6f7f8;
  --base: #f7f2ea;
  --teal: #006f78;
  --teal-dark: #00515a;
  --gold: #b89b61;
  --white: #ffffff;
  --shadow: 0 18px 52px rgba(8, 25, 87, 0.08);
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--base);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.55;
}

a {
  color: inherit;
}

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

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

.header-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) minmax(180px, 240px);
  gap: 22px;
  align-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  width: 172px;
}

.brand span {
  color: var(--teal);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 800;
}

.main-nav a {
  text-decoration: none;
}

.main-nav a:hover,
.main-nav a[aria-current="page"] {
  color: var(--teal);
}

.main-nav .nav-product {
  color: var(--ink);
}

.main-nav .nav-product:hover,
.main-nav .nav-product[aria-current="page"] {
  color: var(--teal);
}

.site-search {
  display: flex;
  min-width: 0;
  width: 100%;
  max-width: 240px;
  justify-self: end;
}

.site-search label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.site-search input {
  width: 100%;
  height: 36px;
  padding: 0 10px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-right: 0;
  border-radius: 4px 0 0 4px;
}

.site-search button {
  height: 36px;
  padding: 0 12px;
  color: #fff;
  background: var(--teal);
  border: 1px solid var(--teal);
  border-radius: 0 4px 4px 0;
  font-weight: 800;
  cursor: pointer;
}

.search-panel {
  display: none;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 24px 18px;
}

.search-panel.open {
  display: block;
}

.search-results {
  display: grid;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.search-results a {
  display: block;
  padding: 10px 12px;
  text-decoration: none;
  border-radius: 4px;
}

.search-results a:hover {
  background: var(--soft);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  min-height: 640px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(56px, 8vw, 104px) clamp(24px, 6vw, 84px);
}

.hero h1 {
  max-width: 720px;
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(42px, 4.4vw, 66px);
  line-height: 1.05;
  letter-spacing: 0;
}

.hero p {
  max-width: 700px;
  color: #23324a;
  font-size: clamp(18px, 1.5vw, 22px);
}

.hero-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, #fff 0%, rgba(255,255,255,.72) 10%, rgba(255,255,255,0) 36%);
}

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

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 26px;
  border: 1px solid var(--teal);
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
}

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

.button.secondary {
  color: var(--teal);
  background: #fff;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 720px;
  margin-top: 44px;
}

.trust-row div {
  padding-left: 14px;
  border-left: 3px solid var(--gold);
}

.trust-row strong,
.trust-row span {
  display: block;
  font-size: 13px;
}

.trust-row span {
  color: var(--muted);
}

.section {
  padding: clamp(64px, 8vw, 104px) 24px;
  background: #fff;
}

.section.soft {
  background: var(--soft);
}

.container {
  max-width: var(--max);
  margin: 0 auto;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 38px;
}

.section-heading.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h2 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(30px, 3.3vw, 46px);
  line-height: 1.12;
  letter-spacing: 0;
}

h3 {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: 23px;
  line-height: 1.2;
}

p,
li {
  color: var(--muted);
  font-size: 17px;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 22px;
}

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

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.card ul {
  margin: 18px 0 0;
  padding-left: 20px;
}

.card li + li {
  margin-top: 9px;
}

.contact-hero {
  min-height: 560px;
}

.form-layout {
  display: grid;
  grid-template-columns: minmax(280px, .78fr) minmax(0, 1.22fr);
  gap: 42px;
  align-items: start;
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 30px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

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

.form-row {
  display: grid;
  gap: 8px;
}

.form-row label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 12px 13px;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
}

.form-row textarea {
  resize: vertical;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: 2px solid rgba(0, 111, 120, .18);
  border-color: var(--teal);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-submit {
  width: fit-content;
  cursor: pointer;
}

.contact-card a {
  color: var(--teal);
  font-weight: 800;
}

.tag {
  display: inline-block;
  margin-bottom: 16px;
  color: var(--teal);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.media-card {
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.media-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.media-card div {
  padding: 24px;
}

.process {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  counter-reset: step;
}

.process-step {
  padding: 26px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 16px;
  color: #fff;
  background: var(--teal);
  border-radius: 50%;
  font-weight: 800;
}

.table-wrap {
  overflow-x: auto;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--ink);
  background: #f1ece3;
  font-size: 14px;
  letter-spacing: .06em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
  font-size: 15px;
}

.cta {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr);
  gap: 40px;
  align-items: center;
  padding: clamp(64px, 8vw, 104px) 24px;
  background: linear-gradient(90deg, #fff 0%, #fff 62%, #f1ece3 62%, #f1ece3 100%);
}

.cta .container {
  display: contents;
}

.cta-copy,
.cta-aside {
  max-width: var(--max);
}

.cta-aside {
  padding: 28px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.site-footer {
  padding: 54px 24px 28px;
  color: #fff;
  background: var(--ink);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr .8fr 1fr;
  gap: 34px;
  max-width: var(--max);
  margin: 0 auto 34px;
}

.footer-logo {
  width: 160px;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
}

.site-footer h3 {
  color: #fff;
  font-size: 18px;
}

.site-footer p,
.site-footer a,
.site-footer span {
  color: #d8dfec;
  font-size: 15px;
}

.site-footer a {
  display: block;
  margin: 8px 0;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.18);
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .main-nav {
    justify-content: flex-end;
  }

  .site-search {
    grid-column: 1 / -1;
    justify-self: start;
    max-width: none;
    width: min(100%, 360px);
  }

  .process {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

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

  .hero-media::before {
    background: linear-gradient(180deg, rgba(255,255,255,0) 55%, #fff 100%);
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .form-layout,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 640px) {
  .brand {
    flex-direction: column;
    align-items: flex-start;
  }

  .main-nav {
    justify-content: flex-start;
    gap: 14px;
    font-size: 14px;
  }

  .hero h1 {
    font-size: 38px;
  }

  .hero-copy {
    padding: 52px 24px;
  }

  .trust-row,
  .grid-2,
  .grid-3,
  .grid-4,
  .form-layout,
  .form-grid,
  .process,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .cta {
    background: #fff;
  }

  .footer-bottom {
    flex-direction: column;
  }
}
