:root {
  --bg: #f2f5f7;
  --surface: #ffffff;
  --text: #1f2a33;
  --muted: #5b6873;
  --line: #dbe3e8;
  --brand: #118a7e;
  --brand-dark: #0b5f57;
  --dark: #0f1f2f;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}

a {
  color: inherit;
}

.container {
  width: min(1180px, 92%);
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(9, 23, 36, 0.85);
  backdrop-filter: blur(8px);
}

.topbar-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

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

.brand strong {
  display: block;
  font-size: 1.05rem;
}

.brand small {
  color: #cfe0e8;
  font-size: 0.78rem;
}

.logo {
  width: 48px;
  height: 48px;
  object-fit: contain;
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav a {
  color: #dce7ee;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.93rem;
}

.nav .cta {
  background: var(--brand);
  color: #fff;
  border-radius: 999px;
  padding: 10px 16px;
}

.hero {
  position: relative;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  padding: 110px 0 80px;
  background:
    linear-gradient(120deg, rgba(12, 34, 52, 0.87), rgba(14, 28, 44, 0.7)),
    radial-gradient(circle at 70% 20%, rgba(20, 138, 126, 0.3), transparent 40%),
    #23394d;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.28), rgba(0, 0, 0, 0));
}

.hero-content {
  position: relative;
  color: #f3f7fa;
  max-width: 860px;
}

.kicker {
  margin: 0 0 14px;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #9fd5cf;
}

.kicker.green {
  color: var(--brand);
}

h1 {
  margin: 0;
  line-height: 1.08;
  font-size: clamp(2rem, 5vw, 3.9rem);
  max-width: 14ch;
}

h1 span {
  color: #8ee3da;
}

.hero p {
  margin: 20px 0 0;
  max-width: 62ch;
  color: #d7e4eb;
}

.hero .intro {
  font-size: 1.05rem;
}

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

.btn {
  display: inline-block;
  text-decoration: none;
  font-weight: 700;
  border-radius: 999px;
  padding: 12px 18px;
}

.btn-primary {
  color: #fff;
  background: var(--brand);
}

.btn-primary:hover {
  background: var(--brand-dark);
}

.btn-light {
  color: #102739;
  background: #e7f2f1;
}

.section {
  padding: 74px 0;
}

.services-wrap {
  background: #fff;
}

.section-head {
  margin-bottom: 24px;
}

h2 {
  margin: 0;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

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

.tabs {
  margin: 22px 0 16px;
  display: inline-flex;
  border: 1px solid var(--line);
  border-radius: 999px;
  overflow: hidden;
}

.tab {
  padding: 10px 16px;
  background: #f2f5f6;
  color: #42505a;
  font-weight: 700;
  font-size: 0.9rem;
}

.tab.active {
  background: var(--brand);
  color: #fff;
}

.service-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.service-links a {
  text-decoration: none;
  background: #f8fbfc;
  border: 1px solid #dce6ea;
  border-radius: 10px;
  padding: 12px;
  font-weight: 700;
  color: #22333f;
}

.service-links a:hover {
  border-color: #bfd4db;
  background: #eef5f7;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px;
  box-shadow: 0 8px 26px rgba(11, 20, 27, 0.04);
}

.card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.card p {
  margin: 0;
  color: var(--muted);
}

.soft {
  background: linear-gradient(180deg, #edf3f2, #e5efed);
  border-block: 1px solid var(--line);
}

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

.info-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 24px;
}

.info-card h3 {
  margin: 0 0 8px;
}

.info-card p {
  color: var(--muted);
  margin: 0 0 14px;
}

.info-card a {
  text-decoration: none;
  font-weight: 700;
  color: var(--brand-dark);
}

.split {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 30px;
  align-items: start;
}

.split p {
  color: var(--muted);
  max-width: 66ch;
}

.checklist {
  margin: 8px 0 0;
  padding: 18px 22px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
}

.checklist li {
  padding: 10px 0;
  border-bottom: 1px dashed #d9e4e7;
  font-weight: 600;
  color: #22313d;
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: "✓";
  color: var(--brand);
  margin-right: 9px;
}

.contact {
  padding-top: 56px;
}

.contact-card {
  background: var(--dark);
  color: #f2f6fa;
  border-radius: 16px;
  padding: 34px;
}

.contact-card h2 {
  margin-bottom: 8px;
}

.contact-card p {
  color: #c8d5df;
}

.contact-items {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.contact-items a {
  color: #9fe5dc;
  font-weight: 700;
  text-decoration: none;
}

.footer {
  background: #091624;
  color: #a9bcc9;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.footer p {
  margin: 0;
}

.footer strong {
  color: #fff;
}

.footer a {
  margin-left: 14px;
  color: #d6e4ee;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-links a {
  margin: 0;
}

@media (max-width: 980px) {
  .nav a:not(.cta) {
    display: none;
  }

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

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

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

@media (max-width: 680px) {
  .hero {
    min-height: 560px;
    padding-top: 98px;
  }

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

  .service-links,
  .info-grid {
    grid-template-columns: 1fr;
  }

  .topbar-inner {
    min-height: 72px;
  }

  .footer-inner {
    flex-direction: column;
    justify-content: center;
    padding: 12px 0;
  }
}
