@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --ivory: #F7F3EE;
  --charcoal: #1E1E1E;
  --blue: #1B5E7A;
  --coral: #FF6B4A;
  --sand: #D8C7AE;
  --mist: #E6E6E6;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--charcoal);
  background: var(--ivory);
  line-height: 1.6;
}

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

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

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

.site-header {
  background: var(--ivory);
  border-bottom: 1px solid var(--mist);
  position: sticky;
  top: 0;
  z-index: 20;
}

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

.logo {
  width: 50px;
  height: 50px;
}

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

.nav {
  display: flex;
  gap: 24px;
}

.nav a {
  font-weight: 500;
}

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

.hero {
  padding: 80px 0;
}

.hero.compact {
  padding: 60px 0;
}

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

.hero h1 {
  font-size: 2.6rem;
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 16px;
}

.hero-image img {
  border-radius: 8px;
}

.section {
  padding: 70px 0;
}

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

.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  font-size: 2rem;
  margin-bottom: 10px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  align-items: center;
}

.card {
  background: white;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.card h3 {
  margin: 16px 0 12px;
}

.highlight .grid-3 div {
  background: white;
  padding: 24px;
  border-radius: 8px;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 4px;
  font-weight: 600;
  margin-top: 12px;
}

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

.btn-secondary {
  background: var(--coral);
  color: white;
}

.section-cta {
  text-align: center;
  margin-top: 30px;
}

.process-list {
  list-style: none;
  padding-left: 0;
}

.process-list li {
  margin-bottom: 12px;
  padding-left: 16px;
  position: relative;
}

.process-list li::before {
  content: "•";
  color: var(--coral);
  position: absolute;
  left: 0;
}

.faq {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.faq-item h3 {
  margin-bottom: 8px;
}

.form {
  background: white;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.06);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 20px;
}

form label {
  font-weight: 500;
  display: block;
  margin-bottom: 8px;
}

form input,
form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--mist);
  border-radius: 4px;
  background: var(--ivory);
}

.form-summary {
  background: var(--mist);
  padding: 20px;
  border-radius: 8px;
  margin: 20px 0;
}

.site-footer {
  background: var(--charcoal);
  color: white;
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
}

.footer-brand p {
  margin-bottom: 12px;
}

.footer-nav a,
.footer-legal a {
  display: block;
  margin-bottom: 8px;
  color: white;
}

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

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: white;
  border: 1px solid var(--mist);
  border-radius: 8px;
  padding: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
  display: none;
  z-index: 50;
}

.cookie-content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-content a {
  color: var(--blue);
  font-weight: 500;
}

.legal h1 {
  margin-bottom: 20px;
}

.legal h2 {
  margin-top: 20px;
  margin-bottom: 10px;
}

@media (max-width: 1024px) {
  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .faq,
  .form-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .nav {
    position: fixed;
    background: var(--ivory);
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    padding: 80px 30px;
    gap: 24px;
    transform: translateX(100%);
  }
  .nav-toggle:checked + .burger + .nav {
    transform: translateX(0);
  }
  .burger {
    display: inline-flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
  }
  .burger span {
    width: 24px;
    height: 2px;
    background: var(--charcoal);
  }
  .nav-close {
    display: block;
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }
  .section {
    padding: 50px 0;
  }
}