:root {
  --ink: #102733;
  --muted: #60717b;
  --paper: #f8fbfd;
  --white: #ffffff;
  --soft: #eef7f9;
  --soft-green: #edf8f3;
  --line: #d9e7ec;
  --blue: #2d7dd2;
  --blue-dark: #1d4d5f;
  --green: #13a889;
  --green-dark: #0f766e;
  --gold: #d59b36;
  --shadow: 0 18px 48px rgba(16, 39, 51, 0.12);
  --shadow-soft: 0 10px 30px rgba(16, 39, 51, 0.08);
  --radius: 8px;
  --max: 1180px;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-size: 16px; line-height: 1.55; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid rgba(213, 155, 54, 0.8);
  outline-offset: 4px;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: 1rem;
  z-index: 100;
  transform: translateY(-140%);
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
  padding: 0.65rem 0.9rem;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(217, 231, 236, 0.9);
  background: rgba(248, 251, 253, 0.93);
  backdrop-filter: blur(14px);
}
.wrap, .header-inner, .footer-inner { width: min(100% - 2rem, var(--max)); margin-inline: auto; }
.header-inner { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 1rem; }
.brand { display: inline-flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.brand-logo { width: min(220px, 42vw); max-height: 54px; object-fit: contain; }
.brand-copy { display: grid; gap: 0.05rem; }
.brand-name { font-weight: 850; line-height: 1; }
.brand-line { color: var(--muted); font-size: 0.78rem; font-weight: 650; }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
  content: "";
}
.nav-toggle span { position: relative; }
.nav-toggle span::before, .nav-toggle span::after { position: absolute; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.primary-nav { display: flex; align-items: center; gap: 0.1rem; }
.primary-nav a {
  border-radius: var(--radius);
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 720;
  padding: 0.58rem 0.72rem;
  text-decoration: none;
}
.primary-nav a:hover, .primary-nav a[aria-current="page"] { background: var(--soft); color: var(--blue-dark); }

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: linear-gradient(135deg, #0e3343, #126a70 54%, #13a889);
}
.hero::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 30, 42, 0.88), rgba(7, 30, 42, 0.58), rgba(7, 30, 42, 0.22));
  content: "";
}
.hero__media {
  position: absolute;
  inset: 0;
  opacity: 0.34;
}
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.48fr);
  gap: 2rem;
  align-items: center;
  min-height: min(760px, calc(100vh - 78px));
  padding: 5.2rem 0;
}
.hero-card {
  display: grid;
  gap: 1.35rem;
  max-width: 820px;
}
.kicker {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 0.5rem;
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.hero .kicker { color: rgba(255, 255, 255, 0.9); }
.kicker::before { width: 34px; height: 3px; border-radius: 3px; background: currentColor; content: ""; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 900px;
  margin-bottom: 0;
  font-size: clamp(2.65rem, 7vw, 6rem);
  letter-spacing: 0;
  line-height: 0.94;
}
.page-hero h1 { color: var(--ink); }
.hero-lead {
  max-width: 760px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}
.hero-panel {
  display: grid;
  gap: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.14);
  padding: 1.1rem;
  box-shadow: var(--shadow);
}
.quick-stat { border-radius: var(--radius); background: rgba(255,255,255,0.92); color: var(--ink); padding: 1rem; }
.quick-stat strong { display: block; color: var(--blue-dark); font-size: 1.7rem; line-height: 1; }
.quick-stat span { color: var(--muted); font-weight: 650; }

.actions { display: flex; flex-wrap: wrap; gap: 0.8rem; }
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 820;
  line-height: 1.1;
  padding: 0.86rem 1.05rem;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); box-shadow: var(--shadow-soft); }
.button--primary { background: var(--green); color: var(--white); }
.button--primary:hover { background: var(--green-dark); }
.button--light { border-color: var(--line); background: var(--white); color: var(--blue-dark); }
.button--ghost { border-color: rgba(255,255,255,0.42); background: rgba(255,255,255,0.12); color: var(--white); }

.section { padding: 5.4rem 0; }
.section--soft { background: var(--soft); }
.section--green { background: var(--soft-green); }
.section-head { display: grid; gap: 0.7rem; max-width: 820px; margin-bottom: 2rem; }
.section-head h2 { margin-bottom: 0; font-size: clamp(2rem, 4.5vw, 3.6rem); line-height: 1; letter-spacing: 0; }
.section-head p { margin-bottom: 0; color: var(--muted); font-size: 1.08rem; }

.grid { display: grid; gap: 1rem; }
.grid--two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--five { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.grid--six { grid-template-columns: repeat(6, minmax(0, 1fr)); }
.card {
  display: grid;
  gap: 0.85rem;
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
  padding: 1.25rem;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}
.card:hover { transform: translateY(-4px); border-color: rgba(45, 125, 210, 0.34); box-shadow: var(--shadow); }
.card__icon { display: grid; width: 68px; height: 68px; place-items: center; border-radius: var(--radius); background: var(--soft); }
.card__icon img { width: 54px; height: 54px; object-fit: contain; }
.card__meta { color: var(--green-dark); font-size: 0.76rem; font-weight: 850; letter-spacing: 0.06em; text-transform: uppercase; }
.card h2, .card h3 { margin-bottom: 0; font-size: 1.22rem; line-height: 1.18; }
.card p, .card li { color: var(--muted); margin-bottom: 0; }
.card ul { display: grid; gap: 0.4rem; margin: 0; padding-left: 1rem; }
.card .button { justify-self: start; margin-top: 0.25rem; }

.line-card { border-top: 5px solid var(--blue); }
.line-card:nth-child(2n) { border-top-color: var(--green); }
.line-card:nth-child(3n) { border-top-color: var(--gold); }
.pill-row { display: flex; flex-wrap: wrap; gap: 0.55rem; margin: 0; padding: 0; list-style: none; }
.pill-row li { border: 1px solid var(--line); border-radius: 999px; background: var(--white); color: var(--muted); font-weight: 750; padding: 0.48rem 0.7rem; }

.page-hero { background: linear-gradient(135deg, #eef7f9, #ffffff); border-bottom: 1px solid var(--line); }
.page-hero__inner { display: grid; gap: 1rem; padding: 4.5rem 0 3.6rem; }
.page-hero p { max-width: 780px; color: var(--muted); font-size: 1.12rem; }
.split { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 2rem; align-items: start; }
.visual-panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); padding: 1.25rem; }
.visual-panel img { border-radius: var(--radius); }

.tabs { display: flex; flex-wrap: wrap; gap: 0.55rem; margin-bottom: 1rem; }
.tab-button { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--muted); cursor: pointer; font: inherit; font-weight: 780; padding: 0.7rem 0.9rem; }
.tab-button[aria-selected="true"] { background: var(--blue-dark); color: var(--white); }
.tab-panel { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow-soft); padding: 1.25rem; }

.cert-logo { width: min(230px, 100%); max-height: 122px; object-fit: contain; }
.contact-grid { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr); gap: 1.2rem; align-items: start; }
.contact-links { display: grid; gap: 0.7rem; }
.contact-link { display: grid; gap: 0.15rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); color: var(--blue-dark); padding: 0.9rem 1rem; text-decoration: none; }
.contact-link span { color: var(--muted); font-size: 0.78rem; font-weight: 850; letter-spacing: 0.05em; text-transform: uppercase; }
.contact-link strong { font-size: 1.05rem; }
.form {
  display: grid;
  gap: 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: 0.35rem; }
.field label, .privacy-check { color: var(--ink); font-weight: 780; }
.field input, .field select, .field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  padding: 0.78rem 0.85rem;
}
.field textarea { min-height: 150px; resize: vertical; }
.privacy-check { display: grid; grid-template-columns: 22px minmax(0, 1fr); gap: 0.7rem; align-items: start; color: var(--muted); line-height: 1.45; }
.privacy-check input { width: 18px; height: 18px; margin-top: 0.15rem; accent-color: var(--green); }

.site-footer { background: #102733; color: var(--white); }
.footer-inner { display: grid; grid-template-columns: minmax(0, 0.9fr) minmax(180px, 0.34fr) minmax(300px, 1fr); gap: 2rem; padding: 3rem 0; }
.footer-logo { width: min(170px, 70vw); max-height: 54px; object-fit: contain; margin-bottom: 0.9rem; }
.footer-inner p, .footer-inner a, .footer-bottom { color: rgba(255,255,255,0.76); }
.footer-links { display: grid; gap: 0.35rem; margin: 0; padding: 0; list-style: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.14); padding: 1rem 0; font-size: 0.88rem; }
.footer-bottom .wrap { display: flex; flex-wrap: wrap; gap: 0.8rem 1.4rem; }

@media (max-width: 1120px) {
  .grid--five, .grid--six { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 980px) {
  .nav-toggle { display: grid; }
  .primary-nav {
    position: fixed;
    inset: 78px 1rem auto 1rem;
    display: grid;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 0.7rem;
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .nav-open .primary-nav { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .hero__inner, .grid--two, .grid--three, .grid--five, .grid--six, .split, .contact-grid, .footer-inner { grid-template-columns: 1fr; }
  .hero-panel { max-width: 520px; }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .wrap, .header-inner, .footer-inner { width: min(100% - 1.25rem, var(--max)); }
  .brand-logo { width: min(170px, 54vw); max-height: 46px; }
  .brand-line { display: none; }
  .hero__inner { min-height: auto; padding: 3.5rem 0; }
  .hero::before { background: rgba(7, 30, 42, 0.78); }
  .actions { align-items: stretch; flex-direction: column; }
  .button { width: 100%; }
  .section { padding: 3.6rem 0; }
  .page-hero__inner { padding: 3.4rem 0 3rem; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
}
