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

:root {
  --primary: hsl(207, 75%, 50%);
  --primary-fg: hsl(0, 0%, 100%);
  --background: hsl(0, 0%, 100%);
  --foreground: hsl(0, 0%, 15%);
  --muted: hsl(0, 0%, 45%);
  --secondary: hsl(160, 40%, 94%);
  --border: hsl(0, 0%, 88%);
  --accent: hsl(160, 50%, 42%);
  --radius: 0.5rem;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--foreground);
  background: var(--background);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  line-height: 1.6;
}

.container { max-width: 1200px; margin: 0 auto; width: 100%; }
.text-center { text-align: center; }
.text-muted { color: var(--muted); }
.text-sm { font-size: 0.875rem; }
.leading-relaxed { line-height: 1.75; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: none; border-radius: var(--radius); cursor: pointer;
  font-weight: 500; font-size: 0.875rem; transition: opacity 0.2s;
  text-decoration: none;
}
.btn:hover { opacity: 0.9; }
.btn-primary { background: var(--primary); color: var(--primary-fg); padding: 0.75rem 3rem; font-size: 1rem; }
.btn-secondary { background: var(--secondary); color: var(--foreground); }
.btn-sm { padding: 0.4rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.75rem 3rem; font-size: 1rem; }

.link { color: var(--accent); text-decoration: underline; }

/* Header */
.header { background: var(--primary); padding: 1.25rem 1.5rem; position: relative; }
.header-inner { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 1.5rem; font-weight: 700;    filter: brightness(22.5); color: var(--primary-fg); text-decoration: none; }
.logo:hover { opacity: 0.9; }
.header-right { display: flex; align-items: center; gap: 1rem; }
.nav-desktop { display: flex; align-items: center; gap: 1.5rem; }
.nav-desktop a, .nav-mobile a { color: rgba(255,255,255,0.7); text-decoration: none; font-size: 0.875rem; }
.nav-desktop a:hover, .nav-mobile a:hover { color: var(--primary-fg); }
.lang-btn {
  display: flex; align-items: center; gap: 0.375rem; background: none; border: none;
  color: rgba(255,255,255,0.7); cursor: pointer; font-size: 0.875rem; padding: 0;
}
.lang-btn:hover { color: var(--primary-fg); }
.hamburger { display: none; background: none; border: none; color: var(--primary-fg); cursor: pointer; }
.nav-mobile { display: none; flex-direction: column; gap: 1rem; padding: 1rem 1.5rem 0.5rem; }

@media (max-width: 768px) {
  .nav-desktop { display: none; }
  .hamburger { display: block; }
  .nav-mobile.open { display: flex; }
}

/* Hero */
.hero { padding: 5rem 1.5rem; }
.hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.hero-title { font-size: 3rem; font-weight: 700; margin-bottom: 1.5rem; line-height: 1.1; }
.hero-desc { font-size: 1.125rem; color: var(--muted); margin-bottom: 1rem; }
.hero-sub { color: var(--muted); margin-bottom: 2rem; }
.hero-card {  border-radius: 1rem; padding: 1rem;  }
.hero-card-inner { text-align: center; }
.hero-emoji { font-size: 2.5rem; margin-bottom: 1rem; }

@media (max-width: 768px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.25rem; }
}

/* Features */
.features { background: var(--secondary); padding: 4rem 1.5rem; }
.features-container { max-width: 900px; display: flex; flex-direction: column; gap: 1.5rem; }
.feature-card {
  background: var(--background); border-radius: var(--radius); padding: 1.5rem;
  display: flex; align-items: flex-start; gap: 1rem; transition: box-shadow 0.2s;
}
.feature-card:hover { box-shadow: 0 10px 25px -5px rgba(0,0,0,0.1); }
.feature-icon {
  width: 3.5rem; height: 3.5rem; flex-shrink: 0; border-radius: 0.5rem;
  background: hsl(160, 50%, 42%, 0.1); display: flex; align-items: center;
  justify-content: center; font-size: 1.5rem;
}
.feature-title { font-weight: 600; font-size: 1.125rem; margin-bottom: 0.25rem; }

/* Steps */
.steps { padding: 4rem 1.5rem; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-title { font-size: 1.875rem; font-weight: 700; margin-bottom: 0.75rem; }
.steps-sub { margin-bottom: 2.5rem; }
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.step-card {
  background: hsl(160, 50%, 42%, 0.05); border-radius: var(--radius);
  padding: 1.5rem; border-left: 4px solid var(--accent);
}
.step-num { font-size: 1.875rem; font-weight: 700; color: var(--accent); margin-bottom: 0.75rem; }
.step-title { font-weight: 600; font-size: 1.125rem; }

@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; }
}

/* Contact */
.contact { padding: 4rem 1.5rem; }
.contact-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.5rem; }
.contact-box {
  display: inline-flex; align-items: center; gap: 0.75rem;
  background: var(--secondary); padding: 1rem 1.5rem; border-radius: 0.5rem;
}
.contact-box a { color: var(--foreground); text-decoration: none; font-weight: 500; }
.contact-box a:hover { color: var(--primary); }

/* Footer */
.footer { background: var(--primary); padding: 1.5rem; margin-top: auto; }
.footer-inner { display: flex; align-items: center; justify-content: center; gap: 1.5rem; }
.footer a { color: rgba(255,255,255,0.8); text-decoration: underline; font-size: 0.875rem; }
.footer a:hover { color: var(--primary-fg); }
.footer-sep { color: rgba(255,255,255,0.4); }

/* Page content (about, terms, privacy) */
.page-content { flex: 1; padding: 3rem 1.5rem; }
.page-container { max-width: 42rem; }
.page-container-wide { max-width: 48rem; }
.page-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1.25rem; }
.page-title-lg { font-size: 1.875rem; font-weight: 700; margin-bottom: 2rem; }
.section-title { font-size: 1.25rem; font-weight: 600; margin-bottom: 0.5rem; color: var(--foreground); }
.legal-sections { display: flex; flex-direction: column; gap: 1.5rem; }
.legal-list { padding-left: 1.5rem; display: flex; flex-direction: column; gap: 0.5rem; margin-top: 0.5rem; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; border: 1px solid var(--border); border-radius: 0.5rem; }
.cookie-table th { text-align: left; padding: 0.75rem; border-bottom: 1px solid var(--border); font-weight: 600; background: var(--secondary); color: var(--foreground); }
.cookie-table td { padding: 0.75rem; border-bottom: 1px solid var(--border); }
.cookie-table tr:last-child td { border-bottom: none; }
