:root {
  --teal: #005f61;
  --teal-2: #0b7477;
  --dark: #111827;
  --muted: #5b6472;
  --line: #d7dde3;
  --paper: #ffffff;
  --soft: #f4f7f7;
  --sand: #f7f3ec;
  --shadow: 0 24px 70px rgba(8, 26, 34, .12);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--dark);
  background: var(--paper);
  line-height: 1.55;
}
img { max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.section-pad { padding: 88px 0; }
.compact-top { padding-top: 64px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(215,221,227,.75);
}
.brand img { width: 190px; display: block; }
.nav { display: flex; gap: 24px; margin-left: auto; align-items: center; }
.nav a { text-decoration: none; color: #25303d; font-weight: 650; font-size: 15px; }
.nav a:hover { color: var(--teal); }
.header-cta {
  text-decoration: none;
  background: var(--teal);
  color: white;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 750;
  box-shadow: 0 10px 22px rgba(0,95,97,.22);
}

.hero {
  min-height: 720px;
  display: flex;
  align-items: center;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,95,97,.14), transparent 32%),
    linear-gradient(135deg, #fff 0%, #f8fbfb 48%, #eef5f5 100%);
}
.hero-grid { display: grid; grid-template-columns: 1.06fr .94fr; gap: 54px; align-items: center; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 850;
}
.eyebrow.inverse { color: #b8f3ee; }
h1, h2, h3, p { margin-top: 0; }
h1 { font-size: clamp(42px, 6vw, 74px); line-height: .96; letter-spacing: -.055em; margin-bottom: 24px; }
h2 { font-size: clamp(32px, 4.5vw, 54px); line-height: 1.02; letter-spacing: -.04em; margin-bottom: 18px; }
h3 { font-size: 22px; line-height: 1.16; margin-bottom: 12px; }
.hero-text { font-size: 20px; color: var(--muted); max-width: 640px; margin-bottom: 32px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #fff; box-shadow: 0 16px 30px rgba(0,95,97,.24); }
.btn-secondary { background: #fff; border: 1px solid var(--line); color: var(--dark); }
.btn-light { background: #fff; color: var(--teal); }
.btn-outline-light { border: 1px solid rgba(255,255,255,.45); color: #fff; }
.trust-row { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.trust-row span { padding: 8px 13px; border-radius: 999px; background: #fff; border: 1px solid var(--line); color: #25303d; font-weight: 700; font-size: 14px; }

.hero-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(215,221,227,.9);
  border-radius: var(--radius);
  padding: 42px;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.card-topline { position: absolute; inset: 0 0 auto; height: 8px; background: var(--teal); }
.hero-logo { width: 340px; margin-bottom: 34px; }
.profile-box { border-left: 3px solid #8b969f; padding-left: 20px; margin-bottom: 28px; }
.profile-kicker { font-size: 13px; color: var(--muted); margin-bottom: 5px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }
.profile-box h2 { color: var(--teal); font-size: 42px; margin: 0; }
.profile-box p { font-weight: 800; color: #111; margin: 0; }
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: #26313e; }
.check-list li::before { content: "✓"; position: absolute; left: 0; top: -1px; width: 21px; height: 21px; border-radius: 50%; background: rgba(0,95,97,.1); color: var(--teal); display: grid; place-items: center; font-weight: 900; font-size: 13px; }
.check-list.bright li { color: #eaf7f7; }
.check-list.bright li::before { background: rgba(255,255,255,.16); color: #fff; }

.section-head { max-width: 760px; margin-bottom: 36px; }
.section-head p { color: var(--muted); font-size: 18px; }
.section-head.narrow { text-align: center; margin-left: auto; margin-right: auto; }
.cards { display: grid; gap: 22px; }
.cards.three { grid-template-columns: repeat(3, 1fr); }
.cards.two { grid-template-columns: repeat(2, 1fr); }
.info-card, .service-card, .compare-card, .about-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 14px 34px rgba(15, 31, 46, .06);
}
.info-card .icon { display: inline-grid; place-items: center; width: 48px; height: 48px; border-radius: 16px; background: var(--soft); color: var(--teal); font-weight: 900; margin-bottom: 20px; }
.info-card p, .service-card p, .compare-card li, .faq-list p { color: var(--muted); }

.split-section { padding-top: 30px; }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.compare-card { min-height: 100%; }
.compare-card ul { margin: 0; padding-left: 20px; }
.compare-card li { margin: 9px 0; }
.compare-label { font-size: 12px; text-transform: uppercase; letter-spacing: .12em; font-weight: 900; color: var(--teal); }
.compare-card.strong { background: var(--teal); color: white; border-color: var(--teal); }
.compare-card.strong .compare-label, .compare-card.strong li { color: rgba(255,255,255,.86); }
.compare-card.strong h3 { color: #fff; }
.light-bg { background: var(--soft); }

.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.timeline article { background: #fff; border: 1px solid var(--line); padding: 26px; border-radius: 22px; }
.timeline span { display: inline-grid; place-items: center; width: 42px; height: 42px; border-radius: 50%; background: var(--teal); color: #fff; font-weight: 900; margin-bottom: 18px; }
.timeline p { color: var(--muted); }
.service-card { border-top: 5px solid var(--teal); }

.dark-section { background: #082f31; color: #fff; }
.dark-section p { color: rgba(255,255,255,.78); font-size: 18px; }
.about-grid { display: grid; grid-template-columns: 1.3fr .7fr; gap: 40px; align-items: center; }
.about-card { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); box-shadow: none; }
.about-card h3 { color: #fff; }

.faq-list { display: grid; gap: 14px; max-width: 850px; margin: 0 auto; }
details { background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; }
summary { cursor: pointer; font-weight: 850; font-size: 18px; }
details p { margin: 14px 0 0; }

.cta-section { background: linear-gradient(135deg, var(--teal), #083e41); color: #fff; }
.cta-box { text-align: center; max-width: 780px; }
.cta-box p { color: rgba(255,255,255,.84); font-size: 19px; }

.site-footer { background: #0b1117; color: #dbe4ea; padding: 46px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr; gap: 36px; }
.footer-logo { width: 220px; background: white; border-radius: 12px; padding: 12px; margin-bottom: 14px; }
.site-footer h3 { font-size: 15px; text-transform: uppercase; letter-spacing: .12em; color: #fff; }
.site-footer a { color: #dbe4ea; text-decoration: none; }
.site-footer a:hover { color: #fff; }

.legal-page { background: var(--soft); }
.legal-main { padding: 70px 0; }
.legal-card { background: #fff; border: 1px solid var(--line); border-radius: 24px; padding: clamp(24px, 5vw, 54px); box-shadow: 0 18px 48px rgba(15,31,46,.08); }
.legal-card h1 { font-size: clamp(34px, 5vw, 58px); }
.legal-card h2 { font-size: 26px; margin-top: 34px; }
.legal-card p, .legal-card li { color: #4d5968; }
.back-link { display: inline-block; margin-bottom: 24px; color: var(--teal); font-weight: 800; text-decoration: none; }

@media (max-width: 980px) {
  .nav { display: none; }
  .site-header { justify-content: space-between; }
  .hero-grid, .split-grid, .about-grid { grid-template-columns: 1fr; }
  .cards.three, .cards.two, .timeline, .footer-grid { grid-template-columns: 1fr; }
  .hero { min-height: auto; }
  .hero-card { padding: 30px; }
}
@media (max-width: 560px) {
  .container { width: min(100% - 28px, 1120px); }
  .site-header { padding: 14px; gap: 12px; }
  .brand img { width: 145px; }
  .header-cta { padding: 10px 12px; font-size: 13px; }
  .section-pad { padding: 62px 0; }
  h1 { font-size: 42px; }
  h2 { font-size: 34px; }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .profile-box h2 { font-size: 34px; }
}
