:root {
  --primary: #0E7C66;
  --secondary: #0F172A;
  --accent: #FFB703;
  --light: #F8FAFC;
  --muted: #CBD5E1;
  --text: #1E293B;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: var(--light);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--muted);
}

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

.logo {
  max-height: 50px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 22px;
  padding: 0;
  margin: 0;
}

nav a {
  font-weight: 600;
  color: var(--secondary);
}

.nav-toggle {
  display: none;
}

.burger {
  display: none;
  font-size: 28px;
  cursor: pointer;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--secondary);
  color: #fff;
  display: none;
  padding: 30px;
}

.mobile-nav ul {
  list-style: none;
  padding: 0;
  margin: 60px 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 24px;
  font-size: 22px;
}

.mobile-nav a {
  color: #fff;
  font-weight: 600;
}

.close-menu {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 32px;
  cursor: pointer;
}

#nav-toggle:checked ~ .mobile-nav {
  display: block;
}

.hero {
  background: linear-gradient(120deg, rgba(14,124,102,0.12), rgba(255,183,3,0.08));
  padding: 80px 0 60px;
}

.hero-grid {
  display: grid;
  gap: 40px;
  align-items: center;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}

.hero h1 {
  font-size: 38px;
  margin: 0 0 16px 0;
  color: var(--secondary);
}

.hero p {
  font-size: 18px;
}

.cta {
  display: inline-block;
  background: var(--primary);
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-weight: 600;
  margin-top: 12px;
}

.section {
  padding: 60px 0;
  background: #fff;
}

.section-alt {
  padding: 60px 0;
  background: var(--light);
}

.section h2, .section-alt h2 {
  color: var(--secondary);
  font-size: 28px;
  margin-bottom: 16px;
}

.grid-3 {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: #fff;
  border: 1px solid var(--muted);
  padding: 20px;
  border-radius: 8px;
}

.card h3 {
  margin-top: 0;
  color: var(--primary);
}

.metrics {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.metric {
  background: var(--secondary);
  color: #fff;
  padding: 20px;
  border-radius: 8px;
}

.metric strong {
  display: block;
  font-size: 22px;
}

.faq details {
  background: #fff;
  padding: 16px;
  border: 1px solid var(--muted);
  border-radius: 6px;
  margin-bottom: 12px;
}

.contact-info {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

input, textarea, select {
  padding: 10px;
  border: 1px solid var(--muted);
  border-radius: 6px;
  font-size: 16px;
  font-family: inherit;
  background: #fff;
}

button {
  padding: 12px 18px;
  border: none;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  border-radius: 6px;
  cursor: pointer;
}

footer {
  background: var(--secondary);
  color: #fff;
  padding: 40px 0 20px;
}

.footer-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.footer-logo {
  max-height: 100px;
}

.footer-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
}

.footer-menu a {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 20px;
  padding-top: 14px;
  font-size: 14px;
  color: #E2E8F0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0F172A;
  color: #fff;
  padding: 16px;
  display: none;
  z-index: 2000;
}

.cookie-banner p {
  margin: 0 0 10px 0;
  font-size: 14px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  background: var(--accent);
  color: #0F172A;
  padding: 8px 12px;
  border-radius: 4px;
}

.badge {
  background: var(--accent);
  color: var(--secondary);
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

@media (max-width: 900px) {
  nav ul {
    display: none;
  }
  .burger {
    display: block;
  }
}

@media (max-width: 600px) {
  .hero h1 {
    font-size: 30px;
  }
  .section, .section-alt {
    padding: 50px 0;
  }
}