:root {
  --teal: #0b3a45;
  --teal-2: #0f4c59;
  --ink: #0b1f26;
  --orange: #f1780a;
  --sand: #eef3f4;
  --white: #ffffff;
  --muted: #5f7881;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(11,58,69,.1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  line-height: 1.6;
}

.container {
  width: min(1100px, 92vw);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #e7eef0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 0;
}

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

.brand img { height: 40px; width: auto; }

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

.site-nav a {
  text-decoration: none;
  color: var(--teal);
  font-weight: 600;
  padding: 8px 10px;
  border-radius: 10px;
}

.site-nav a:hover { background: #eef3f4; }

.btn {
  background: var(--orange);
  color: white !important;
  padding: 12px 18px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: var(--shadow);
  border: none;
  cursor: pointer;
}

.btn-small { padding: 8px 14px; }

.link {
  font-weight: 700;
  text-decoration: none;
  color: var(--teal);
}

.hero {
  background: linear-gradient(180deg, #f7fafb, #ffffff);
  padding: 64px 0 20px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 36px;
  align-items: center;
}

.hero-copy h1 {
  font-size: clamp(2.1rem, 1.6rem + 2vw, 3rem);
  line-height: 1.15;
  margin: 0 0 10px;
  color: var(--teal);
}

.accent { color: var(--orange); }

.hero-copy p {
  font-size: 1.1rem;
  color: var(--muted);
  margin: 0 0 20px;
}

.cta-row { display: flex; gap: 18px; align-items: center; margin-bottom: 16px; }

.badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0; margin: 10px 0 0 0;
}

.badges li {
  border: 1px solid #e3ebed;
  padding: 6px 10px;
  border-radius: 100px;
  font-weight: 600;
  font-size: .9rem;
  color: var(--teal-2);
  background: white;
}

.hero-card {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background: radial-gradient(1200px 400px at 0% 0%, #ffffff 0, #eef3f4 60%, #e9f1f3 100%);
  box-shadow: var(--shadow);
  min-height: 240px;
}

.hero-stat {
  background: white;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.hero-stat strong { font-size: 2rem; color: var(--teal); line-height: 1; }
.hero-stat span { color: var(--muted); margin-top: 6px; }

.section { padding: 70px 0; }
.section.alt { background: #f8fbfc; }

.lead { color: var(--muted); }

.grid.cards {
  margin-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.card {
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 18px;
  border: 1px solid #edf2f4;
}

.card h3 { margin-top: 0; color: var(--teal); }
.card ul { padding-left: 18px; }

.card.soft { background: #fcfdfd; }

.about {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 24px;
  margin-top: 16px;
}

.stat {
  background: white;
  padding: 16px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  margin-bottom: 12px;
}

.ticks {
  list-style: none;
  padding-left: 0;
}
.ticks li {
  padding-left: 28px;
  position: relative;
  margin: 8px 0;
}
.ticks li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--orange);
  font-weight: 800;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 18px;
  margin-top: 20px;
}

.contact-form label {
  display: block;
  font-weight: 600;
  margin: 10px 0 6px;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e3ebed;
  border-radius: 12px;
  font: inherit;
}

.contact-form button { margin-top: 14px; }

.contact-list { margin: 0; padding-left: 18px; }
.muted { color: var(--muted); font-size: .95rem; }

.site-footer {
  background: var(--teal);
  color: white;
  padding: 28px 0;
  margin-top: 30px;
}

.foot-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.site-footer a { color: #cce7ee; text-decoration: none; margin-right: 12px; }
.site-footer a:hover { text-decoration: underline; }

.to-top {
  position: fixed;
  right: 16px;
  bottom: 16px;
  width: 44px; height: 44px;
  border-radius: 100px;
  border: none;
  box-shadow: var(--shadow);
  background: white;
  color: var(--teal);
  cursor: pointer;
  display: none;
}

.nav-toggle {
  display: none;
  font-size: 1.4rem;
  background: transparent;
  border: none;
  color: var(--teal);
  cursor: pointer;
}

@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .grid.cards { grid-template-columns: 1fr; }
  .about { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .site-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .site-nav.open { 
    display: grid; 
    position: absolute; 
    right: 12px; top: 64px; 
    background: white; 
    padding: 10px; 
    border-radius: 12px; 
    box-shadow: var(--shadow);
  }
}
