:root {
  --navy: #0B1F3B;
  --emerald: #14B86A;
  --sky: #EAF4FF;
  --charcoal: #1F2937;
  --white: #FFFFFF;
  --amber: #FFB020;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

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

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

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

.container {
  width: 90%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.site-header {
  background: var(--white);
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
}

.logo-img {
  width: auto;
  height: 50px;
}

.nav {
  margin-left: auto;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

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

.nav a.active {
  color: var(--emerald);
}

.header-cta {
  margin-left: 1rem;
}

.nav-toggle,
.nav-burger,
.nav-close {
  display: none;
}

.btn {
  padding: 0.8rem 1.4rem;
  border-radius: 6px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.btn-primary {
  background: var(--emerald);
  color: var(--white);
}

.btn-secondary {
  background: var(--amber);
  color: var(--navy);
}

.hero {
  padding: 4rem 0;
  background: var(--sky);
}

.small-hero {
  padding: 3rem 0;
}

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

.hero-content h1 {
  font-size: 2.6rem;
  margin-bottom: 1rem;
  color: var(--navy);
}

.hero-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.keyword-line {
  font-size: 0.9rem;
  color: #556070;
  margin-top: 1.5rem;
}

.section {
  padding: 3.5rem 0;
}

.section.light {
  background: var(--sky);
}

.section-header {
  max-width: 800px;
  margin-bottom: 2rem;
}

.section-header h2 {
  color: var(--navy);
  font-size: 2rem;
}

.features-grid,
.services-grid,
.tools-grid,
.faq-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.feature-card,
.service-card,
.tool-card,
.faq-item {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  border: 1px solid #e5e7eb;
}

.tool-card img {
  margin-bottom: 1rem;
  border-radius: 8px;
}

.two-column {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
}

.timeline {
  list-style: none;
  padding: 0;
}

.timeline li {
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--emerald);
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  margin-bottom: 0.8rem;
  padding-left: 1.5rem;
  position: relative;
}

.checklist li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--emerald);
}

.contact-form {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
}

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

.form-field {
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
}

.form-field label {
  margin-bottom: 0.4rem;
  font-weight: 600;
}

.form-field input,
.form-field textarea {
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  font-size: 1rem;
}

.checkbox-field {
  flex-direction: row;
  align-items: flex-start;
  gap: 0.6rem;
}

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 3rem 0 1.5rem;
}

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

.footer-logo {
  height: 100px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
}

.footer-nav a {
  color: var(--white);
}

.footer-bottom {
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 2rem;
}

.sticky-cta {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--emerald);
  color: var(--white);
  padding: 0.9rem 1.2rem;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 8px 18px rgba(0,0,0,0.15);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem;
  display: none;
  z-index: 200;
}

.cookie-content {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cookie-content a {
  color: var(--amber);
  text-decoration: underline;
}

.summary-box {
  background: var(--white);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  max-width: 700px;
}

.legal-content h1,
.legal-content h2 {
  color: var(--navy);
}

@media (max-width: 900px) {
  .header-cta {
    display: none;
  }

  .nav {
    position: fixed;
    inset: 0;
    background: var(--white);
    padding: 2rem;
    transform: translateX(100%);
    transition: none;
    display: flex;
    flex-direction: column;
  }

  .nav ul {
    flex-direction: column;
    gap: 1rem;
    margin-top: 2rem;
  }

  .nav-toggle:checked ~ .nav {
    transform: translateX(0);
  }

  .nav-burger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    cursor: pointer;
  }

  .nav-burger span {
    width: 24px;
    height: 3px;
    background: var(--navy);
    border-radius: 3px;
  }

  .nav-close {
    display: block;
    align-self: flex-end;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--navy);
  }

  .sticky-cta {
    right: 1rem;
    left: 1rem;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .hero-content h1 {
    font-size: 2rem;
  }

  .cookie-content {
    align-items: flex-start;
  }
}