:root {
  --primary: #0B2D4D;
  --secondary: #16A34A;
  --accent: #06B6D4;
  --background: #F6F8FB;
  --surface: #FFFFFF;
  --text: #0F172A;
  --muted: #64748B;
  --border: #E2E8F0;
  --gradient: linear-gradient(135deg, #0B2D4D 0%, #06B6D4 55%, #16A34A 100%);
  --shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
  --radius: 16px;
}

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

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

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

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

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

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

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

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

.site-nav {
  display: flex;
  gap: 24px;
  font-weight: 500;
}

.site-nav a {
  color: var(--text);
  position: relative;
  padding-bottom: 4px;
}

.site-nav a.active,
.site-nav a:hover {
  color: var(--secondary);
}

.nav-toggle,
.nav-toggle-label,
.mobile-nav {
  display: none;
}

.nav-toggle-label {
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-label span {
  width: 26px;
  height: 2px;
  background: var(--text);
  display: block;
}

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--surface);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 22px;
  font-size: 1.2rem;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.2s ease-in-out;
}

.nav-close {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text);
}

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

.hero {
  padding: 70px 0;
  background: var(--gradient);
  color: white;
}

.inner-hero {
  padding: 60px 0;
}

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

.hero-text p {
  margin: 18px 0;
  color: rgba(255,255,255,0.9);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.85rem;
  font-weight: 600;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
}

.btn {
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  display: inline-block;
}

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

.btn-secondary {
  background: transparent;
  border-color: rgba(255,255,255,0.7);
  color: white;
}

.section {
  padding: 70px 0;
}

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

.section-intro {
  margin: 16px 0 32px;
  color: var(--muted);
}

.cards-grid,
.process-grid,
.faq-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card,
.process-step,
.faq-item,
.form-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.process-step {
  background: rgba(255,255,255,0.85);
}

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

.feature-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0;
}

.feature-list li::before {
  content: "•";
  color: var(--secondary);
  margin-right: 8px;
}

.media-stack {
  display: grid;
  gap: 16px;
}

.pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.pill-grid span {
  background: rgba(6, 182, 212, 0.12);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95rem;
}

.hero-kpis {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin-top: 24px;
}

.hero-kpis h3 {
  font-size: 1.4rem;
}

.contact-section .form-card {
  background: white;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
  background: #fff;
}

input:focus,
textarea:focus {
  outline: 2px solid rgba(6, 182, 212, 0.3);
}

.site-footer {
  background: var(--primary);
  color: white;
  padding: 60px 0 30px;
}

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

.footer-nav {
  display: grid;
  gap: 8px;
}

.footer-nav a {
  color: rgba(255,255,255,0.85);
}

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

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

.legal-content ul {
  margin-left: 20px;
  margin-bottom: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: var(--surface);
  border-top: 1px solid var(--border);
  box-shadow: var(--shadow);
  padding: 16px 0;
  display: none;
  z-index: 200;
}

.cookie-content {
  width: min(1100px, 92%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}

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

@media (max-width: 920px) {
  .site-nav {
    display: none;
  }
  .nav-toggle-label {
    display: flex;
  }
  .mobile-nav {
    display: flex;
  }
}

@media (max-width: 600px) {
  .hero {
    padding: 50px 0;
  }
  .section {
    padding: 50px 0;
  }
  .hero-ctas {
    flex-direction: column;
    align-items: flex-start;
  }
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
}