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

:root {
  --ink:     #0B0F1A;
  --ink2:    #111827;
  --blue:    #2563EB;
  --blue-lt: #3B82F6;
  --sky:     #0EA5E9;
  --mist:    #93C5FD;
  --chalk:   #F0EDE6;
  --stone:   #94A3B8;
  --line:    rgba(255,255,255,0.08);
  --serif:   'Cormorant Garamond', Georgia, serif;
  --sans:    'Syne', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--ink);
  color: var(--chalk);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── GRAIN OVERLAY ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 4rem;
  background: rgba(11,15,26,0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: padding 0.3s;
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: var(--chalk);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  width: 42px;
  height: 42px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(229,70,255,0.5));
  transition: filter 0.3s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 14px rgba(229,70,255,0.85));
}
.nav-logo span { color: var(--blue-lt); }
.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}
.nav-links a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--chalk); }
.nav-cta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-lt);
  text-decoration: none;
  border: 1px solid var(--blue);
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  transition: background 0.2s, color 0.2s;
}
.nav-cta:hover { background: var(--blue); color: #fff; }

/* ── HAMBURGER ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  margin-left: 1rem;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--chalk);
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── MOBILE NAV OVERLAY ── */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(11,15,26,0.98);
  backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--stone);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.5rem;
  line-height: 1;
  transition: color 0.2s;
}
.nav-mobile-close:hover { color: var(--chalk); }
.nav-mobile-link {
  font-family: var(--serif);
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 300;
  color: var(--chalk);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-mobile-link:hover { color: var(--blue-lt); }
.nav-mobile-cta {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: var(--blue);
  padding: 0.8rem 2.5rem;
  border-radius: 2px;
  margin-top: 1rem;
  transition: background 0.2s;
}
.nav-mobile-cta:hover { background: var(--blue-lt); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 5.5rem 4rem 4rem;
  gap: 4rem;
  position: relative;
  overflow: hidden;
}
#hero::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.18) 0%, transparent 70%);
  pointer-events: none;
}
.hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: var(--blue-lt);
}
h1 {
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--chalk);
  margin-bottom: 1.5rem;
}
h1 em { font-style: italic; color: var(--mist); }
.hero-sub {
  font-size: 1.05rem;
  color: var(--stone);
  line-height: 1.75;
  max-width: 480px;
  margin-bottom: 2.5rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  padding: 0.85rem 2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--blue-lt); transform: translateY(-1px); }
.btn-primary:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.btn-ghost {
  color: var(--chalk);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.btn-ghost:hover { color: var(--blue-lt); }
.btn-ghost::after { content: '↓'; font-size: 1rem; }

/* ── HERO LOGO ── */
.hero-right-col {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.hero-logo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-logo-img {
  width: 220px;
  height: 220px;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(229,70,255,0.55)) drop-shadow(0 0 60px rgba(37,99,235,0.35));
  animation: logoFloat 4s ease-in-out infinite;
  transition: filter 0.3s;
}
.hero-logo-img:hover {
  filter: drop-shadow(0 0 45px rgba(229,70,255,0.85)) drop-shadow(0 0 80px rgba(37,99,235,0.5));
}
@keyframes logoFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* ── HERO STATS ── */
.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.stat-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 1.8rem 1.5rem;
  transition: border-color 0.3s, background 0.3s;
}
.stat-card:hover {
  border-color: rgba(37,99,235,0.4);
  background: rgba(37,99,235,0.06);
}
.stat-card:first-child {
  grid-column: 1 / -1;
  background: rgba(37,99,235,0.1);
  border-color: rgba(37,99,235,0.3);
}
.stat-num {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--chalk);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-num span { font-size: 1.8rem; color: var(--blue-lt); }
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ── DIVIDER ── */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue) 30%, var(--sky) 70%, transparent);
  margin: 0 4rem;
  opacity: 0.3;
}

/* ── SECTIONS ── */
section {
  padding: 7rem 4rem;
}
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.section-label::before {
  content: '';
  width: 24px; height: 1px;
  background: var(--blue-lt);
  display: inline-block;
}
h2 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 3.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--chalk);
  margin-bottom: 1.5rem;
}
h2 em { font-style: italic; color: var(--mist); }

/* ── LEISTUNGEN ── */
#leistungen { background: var(--ink2); }
.services-intro {
  max-width: 580px;
  margin-bottom: 4rem;
}
.services-intro p { color: var(--stone); line-height: 1.8; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-item {
  background: var(--ink2);
  padding: 2.2rem 2rem;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}
.service-item::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: linear-gradient(180deg, var(--blue), var(--sky));
  transition: height 0.4s ease;
}
.service-item:hover { background: rgba(37,99,235,0.07); }
.service-item:hover::before { height: 100%; }

/* AI service card gets permanent left highlight */
.service-item.service-ai {
  background: rgba(37,99,235,0.04);
}
.service-item.service-ai::before { height: 100%; opacity: 0.7; }

.service-badge-new {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.15rem 0.5rem;
  border-radius: 2px;
  vertical-align: middle;
  margin-left: 0.4rem;
  position: relative;
  top: -1px;
}
.service-icon {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: block;
}
.service-title {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--chalk);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.service-desc {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.7;
}

/* ── MODELLE ── */
#modelle { background: var(--ink); }
.models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3.5rem;
}
.model-card {
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 2.5rem 2rem;
  position: relative;
  transition: border-color 0.3s;
}
.model-card:hover { border-color: rgba(37,99,235,0.5); }
.model-card.featured {
  border-color: rgba(37,99,235,0.5);
  background: rgba(37,99,235,0.08);
}
.model-badge {
  position: absolute;
  top: -1px; right: 1.5rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem;
  border-radius: 0 0 3px 3px;
}
.model-icon { font-size: 2rem; margin-bottom: 1.2rem; }
.model-title {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
  color: var(--chalk);
  margin-bottom: 0.5rem;
}
.model-sub {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 1.2rem;
}
.model-desc {
  font-size: 0.88rem;
  color: var(--stone);
  line-height: 1.75;
}

/* ── ÜBER MICH ── */
#ueber { background: var(--ink2); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3rem;
}
.about-text p {
  color: var(--stone);
  line-height: 1.85;
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.about-text p strong { color: var(--chalk); font-weight: 600; }
.timeline {
  border-left: 1px solid var(--line);
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.tl-item { position: relative; }
.tl-dot {
  position: absolute;
  left: -2.45rem;
  top: 0.3rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--ink2);
}
.tl-dot-ai {
  width: 14px;
  height: 14px;
  left: -2.55rem;
  background: linear-gradient(135deg, var(--blue), var(--sky));
  border: 2px solid var(--ink2);
  box-shadow: 0 0 10px rgba(37,99,235,0.6);
}
.tl-year {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue-lt);
  margin-bottom: 0.3rem;
}
.tl-title {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--chalk);
  margin-bottom: 0.2rem;
}
.tl-desc {
  font-size: 0.82rem;
  color: var(--stone);
  line-height: 1.6;
}

/* ── PREISE ── */
#preise { background: var(--ink); }
.pricing-note {
  max-width: 540px;
  color: var(--stone);
  line-height: 1.8;
  margin-bottom: 3rem;
  font-size: 0.92rem;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
}
.pricing-table th {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  padding: 0.8rem 1.5rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.pricing-table td {
  padding: 1.2rem 1.5rem;
  font-size: 0.9rem;
  border-bottom: 1px solid var(--line);
  vertical-align: middle;
}
.pricing-table tr:hover td { background: rgba(255,255,255,0.02); }
.pricing-row-ai td { background: rgba(37,99,235,0.04); }
.pricing-row-ai .pt-service { color: var(--blue-lt); }
.pt-service { color: var(--chalk); font-weight: 500; }
.pt-desc { color: var(--stone); font-size: 0.82rem; }
.pt-price {
  font-family: var(--serif);
  font-size: 1.3rem;
  color: var(--chalk);
  white-space: nowrap;
  text-align: right;
}
.pt-price small {
  font-size: 0.7rem;
  font-family: var(--sans);
  color: var(--stone);
  display: block;
  text-align: right;
}

/* ── KONTAKT ── */
#kontakt {
  background: var(--ink2);
  position: relative;
  overflow: hidden;
}
#kontakt::before {
  content: '';
  position: absolute;
  bottom: -300px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(14,165,233,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: start;
  margin-top: 3rem;
}
.contact-tagline {
  font-family: var(--serif);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 300;
  color: var(--chalk);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}
.contact-tagline em { font-style: italic; color: var(--mist); }
.contact-note {
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.contact-item-icon {
  width: 36px; height: 36px;
  border: 1px solid var(--line);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  color: var(--blue-lt);
}
.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 0.15rem;
}
.contact-item-value {
  font-size: 0.9rem;
  color: var(--chalk);
}
.contact-item-value a {
  color: var(--chalk);
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item-value a:hover { color: var(--blue-lt); }

/* Contact form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hp-field { display: none; } /* Honeypot hidden field */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone);
}
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 0.75rem 1rem;
  color: var(--chalk);
  font-family: var(--sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--blue);
  background: rgba(37,99,235,0.06);
}
.form-group select option { background: var(--ink2); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { margin-top: 0.5rem; }
.form-msg {
  margin-top: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 2px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.form-success {
  background: rgba(74,222,128,0.08);
  border: 1px solid rgba(74,222,128,0.3);
  color: #4ade80;
}
.form-error {
  background: rgba(248,113,113,0.08);
  border: 1px solid rgba(248,113,113,0.3);
  color: #f87171;
}

/* ── FOOTER ── */
footer {
  padding: 2rem 4rem;
  border-top: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-left {
  font-family: var(--serif);
  font-size: 0.95rem;
  color: var(--stone);
}
.footer-left span { color: var(--blue-lt); }
.footer-center {
  display: flex;
  gap: 1.5rem;
}
.footer-center a {
  font-size: 0.75rem;
  color: var(--stone);
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: color 0.2s;
}
.footer-center a:hover { color: var(--chalk); }
.footer-right {
  font-size: 0.75rem;
  color: var(--stone);
  letter-spacing: 0.05em;
}

/* ── COOKIE CONSENT BANNER ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(17,24,39,0.97);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(12px);
  padding: 1.2rem 4rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  justify-content: space-between;
}
.cookie-banner[hidden] { display: none; }
.cookie-content { flex: 1; }
.cookie-content p {
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.6;
  margin-bottom: 0.2rem;
}
.cookie-content strong { color: var(--chalk); }
.cookie-content a { color: var(--blue-lt); text-decoration: none; }
.cookie-content a:hover { text-decoration: underline; }
.cookie-actions {
  display: flex;
  gap: 0.75rem;
  align-items: center;
  flex-shrink: 0;
}
.cookie-accept { padding: 0.6rem 1.4rem; font-size: 0.78rem; }
.cookie-decline {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--stone);
  background: none;
  border: 1px solid var(--line);
  padding: 0.6rem 1.4rem;
  border-radius: 2px;
  cursor: pointer;
  letter-spacing: 0.05em;
  font-family: var(--sans);
  transition: color 0.2s, border-color 0.2s;
  white-space: nowrap;
}
.cookie-decline:hover {
  color: var(--chalk);
  border-color: rgba(255,255,255,0.2);
}

/* ── LEGAL PAGES ── */
.legal-page-body {
  padding-top: 5rem;
  min-height: 100vh;
}
.legal-content {
  max-width: 760px;
  padding: 5rem 4rem 6rem;
  margin: 0 auto;
}
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--blue-lt);
  text-decoration: none;
  margin-bottom: 3rem;
  transition: color 0.2s;
}
.legal-back:hover { color: var(--chalk); }
.legal-content h1 {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--chalk);
  margin-bottom: 3rem;
  line-height: 1.1;
}
.legal-content h2 {
  font-family: var(--sans);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--chalk);
  margin: 2.5rem 0 0.75rem;
  letter-spacing: 0.02em;
  line-height: 1.3;
}
.legal-content h3 {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--chalk);
  margin: 1.5rem 0 0.5rem;
}
.legal-content p {
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.85;
  margin-bottom: 1rem;
}
.legal-content a { color: var(--blue-lt); }
.legal-content ul, .legal-content ol {
  color: var(--stone);
  font-size: 0.9rem;
  line-height: 1.85;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}
.legal-content li { margin-bottom: 0.4rem; }
.legal-notice {
  background: rgba(37,99,235,0.06);
  border: 1px solid rgba(37,99,235,0.2);
  border-radius: 4px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.85rem;
  color: var(--stone);
  line-height: 1.7;
}
.legal-caps {
  font-size: 0.82rem;
  line-height: 1.7;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 0.7s ease both; }
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.22s; }
.delay-3 { animation-delay: 0.36s; }
.delay-4 { animation-delay: 0.5s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 1rem 1.5rem; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  #hero { grid-template-columns: 1fr; padding: 5rem 1.5rem 3rem; }
  .hero-right-col { order: -1; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat-card:first-child { grid-column: 1 / -1; }
  section { padding: 4rem 1.5rem; }
  .divider { margin: 0 1.5rem; }
  .models-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }
  footer { padding: 1.5rem; flex-direction: column; align-items: center; text-align: center; }
  .cookie-banner { padding: 1rem 1.5rem; flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-decline { flex: 1; text-align: center; }
  .legal-content { padding: 3rem 1.5rem 4rem; }
}
