/* ============ BAUPLATZ MASTER STYLESHEET ============ */

:root {
  --blue: #2BB8E6;
  --blue-deep: #1A8BB8;
  --blue-dark: #0F5A7A;
  --ink: #0A0E1A;
  --ink-soft: #1A1F2E;
  --graphite: #2D333F;
  --steel: #6B7280;
  --concrete: #D4D6DC;
  --bone: #F4F4F0;
  --paper: #FAFAF7;
  --warn: #F5C518;
  --ok: #10B981;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.display { font-family: 'Archivo Black', sans-serif; letter-spacing: -0.02em; text-transform: uppercase; }
.mono { font-family: 'JetBrains Mono', monospace; }

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

/* ============ NAV ============ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 40px;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(10, 14, 26, 0.72);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
}
nav.scrolled { padding: 12px 40px; background: rgba(10, 14, 26, 0.92); }

.logo {
  display: flex; align-items: center;
  text-decoration: none;
  z-index: 110;
  color: white;
}
.logo-img {
  display: block; height: 42px; width: auto;
  transition: opacity 0.2s;
}
.logo:hover .logo-img { opacity: 0.85; }
nav.scrolled .logo-img { height: 36px; }

.nav-menu { display: flex; gap: 36px; align-items: center; }
.nav-menu a {
  color: rgba(255,255,255,0.82); text-decoration: none;
  font-size: 13px; font-weight: 500; letter-spacing: 0.02em;
  text-transform: uppercase; transition: color 0.2s;
  position: relative; padding: 6px 0;
}
.nav-menu a:hover, .nav-menu a.active { color: var(--blue); }
.nav-menu a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--blue); transition: width 0.3s;
}
.nav-menu a:hover::after, .nav-menu a.active::after { width: 100%; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: 100%; left: -20px; margin-top: 12px;
  background: var(--ink); padding: 12px 0; min-width: 300px;
  opacity: 0; visibility: hidden; transform: translateY(-8px);
  transition: all 0.25s;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
}
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: block; padding: 12px 24px; font-size: 13px; text-transform: none;
  letter-spacing: 0; border-left: 2px solid transparent;
}
.dropdown-menu a:hover { background: rgba(43,184,230,0.08); border-left-color: var(--blue); }
.dropdown-menu a::after { display: none; }

.lang-switch {
  display: flex; background: rgba(255,255,255,0.08); border-radius: 999px;
  padding: 3px; gap: 0;
}
.lang-switch button {
  background: none; border: none; color: rgba(255,255,255,0.6);
  padding: 6px 14px; font-size: 11px; font-weight: 700;
  cursor: pointer; border-radius: 999px; transition: all 0.2s;
  letter-spacing: 0.05em; font-family: 'JetBrains Mono', monospace;
}
.lang-switch button.active { background: var(--blue); color: var(--ink); }

/* ============ MOBILE TOGGLE + MENU ============ */
.mobile-toggle {
  display: none;
  background: rgba(43,184,230,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  cursor: pointer;
  width: 52px; height: 52px;
  align-items: center; justify-content: center;
  position: relative;
  z-index: 110;
  transition: all 0.3s;
}
.mobile-toggle:hover { background: rgba(43,184,230,0.2); border-color: var(--blue); }
.mobile-toggle .bars {
  width: 22px; height: 16px; position: relative;
}
.mobile-toggle .bars span {
  position: absolute; left: 0; right: 0; height: 2px;
  background: white; transition: all 0.35s cubic-bezier(.4,0,.2,1);
  transform-origin: center;
}
.mobile-toggle .bars span:nth-child(1) { top: 0; }
.mobile-toggle .bars span:nth-child(2) { top: 7px; }
.mobile-toggle .bars span:nth-child(3) { top: 14px; }
.mobile-toggle.open .bars span:nth-child(1) { top: 7px; transform: rotate(45deg); background: var(--blue); }
.mobile-toggle.open .bars span:nth-child(2) { opacity: 0; }
.mobile-toggle.open .bars span:nth-child(3) { top: 7px; transform: rotate(-45deg); background: var(--blue); }

.mobile-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 99;
  padding: 110px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  overflow-y: auto;
  display: flex; flex-direction: column;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu::before {
  content: ''; position: absolute; top: 0; left: 0; width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(43,184,230,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.mobile-menu > * { position: relative; }
.mobile-menu a {
  display: block;
  color: white;
  text-decoration: none;
  font-family: 'Archivo Black', sans-serif;
  font-size: 28px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  transition: all 0.2s;
}
.mobile-menu a:hover, .mobile-menu a.active { color: var(--blue); padding-left: 12px; }
.mobile-menu-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-section h4 {
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 12px;
  font-weight: 700;
}
.mobile-menu-section a {
  font-size: 18px;
  padding: 12px 0;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
}
.mobile-menu-lang {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-lang button {
  flex: 1;
  padding: 14px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.2s;
}
.mobile-menu-lang button.active {
  background: var(--blue);
  color: var(--ink);
  border-color: var(--blue);
}
.mobile-menu-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.mobile-menu-contact a {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Manrope', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-transform: none;
  letter-spacing: 0;
  padding: 12px 0;
  border: none;
  color: rgba(255,255,255,0.85);
}
.mobile-menu-contact a:hover { color: var(--blue); padding-left: 0; }
.mobile-menu-contact a svg { flex-shrink: 0; }

body.menu-open { overflow: hidden; }

/* ============ BTN ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 18px 32px; font-size: 13px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  text-decoration: none; border: none; cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  font-family: 'Manrope', sans-serif; position: relative; overflow: hidden;
}
.btn-primary { background: var(--blue); color: var(--ink); }
.btn-primary:hover { background: white; transform: translateY(-2px); box-shadow: 0 12px 32px rgba(43,184,230,0.4); }
.btn-ghost { background: transparent; color: white; border: 1px solid rgba(255,255,255,0.25); }
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: white; }
.btn-dark { background: var(--ink); color: white; }
.btn-dark:hover { background: white; color: var(--ink); }
.btn-ink { background: var(--ink); color: white; }
.btn-ink:hover { background: var(--blue); color: var(--ink); }
.btn svg { transition: transform 0.3s; }
.btn:hover svg { transform: translateX(4px); }

/* ============ MARQUEE ============ */
.marquee {
  background: var(--ink); border-top: 1px solid rgba(255,255,255,0.08);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0; overflow: hidden; position: relative;
}
.marquee-track {
  display: flex; gap: 80px; animation: scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee-item {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px; color: rgba(255,255,255,0.15);
  text-transform: uppercase; letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 80px;
}
.marquee-item::after {
  content: '◆'; color: var(--blue); font-size: 16px;
}
@keyframes scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============ SECTIONS ============ */
section { padding: 120px 40px; position: relative; }
.container { max-width: 1440px; margin: 0 auto; }

.section-head {
  display: grid; grid-template-columns: auto 1fr; gap: 60px;
  margin-bottom: 80px; align-items: end;
}
.section-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px; color: var(--blue); font-weight: 700;
  letter-spacing: 0.15em; display: flex; align-items: center; gap: 12px;
}
.section-num::before {
  content: ''; width: 40px; height: 1px; background: var(--blue);
}
.section-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(40px, 5vw, 72px); line-height: 0.95;
  text-transform: uppercase; letter-spacing: -0.02em;
  color: var(--ink);
}
.section-sub {
  max-width: 520px; font-size: 17px; color: var(--steel);
  line-height: 1.6;
}

/* ============ PAGE HEADER ============ */
.page-header {
  background: var(--ink); color: white;
  padding: 200px 40px 100px;
  position: relative; overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(43,184,230,0.18) 0%, transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(43,184,230,0.08) 0%, transparent 50%);
}
.page-header::after {
  content: ''; position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(circle at center, black 20%, transparent 80%);
}
.page-header-inner {
  max-width: 1440px; margin: 0 auto; position: relative; z-index: 2;
}
.breadcrumb {
  display: flex; gap: 8px; align-items: center; font-size: 12px;
  color: rgba(255,255,255,0.5); font-family: 'JetBrains Mono', monospace;
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 32px;
}
.breadcrumb a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.2s; }
.breadcrumb a:hover { color: var(--blue); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.page-header h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.95;
  text-transform: uppercase; letter-spacing: -0.02em;
  max-width: 900px;
}
.page-header h1 .accent { color: var(--blue); }
.page-header-sub {
  font-size: 18px; color: rgba(255,255,255,0.7);
  max-width: 620px; margin-top: 32px; line-height: 1.6;
}

/* ============ CONTENT ============ */
.content-section { padding: 100px 40px; background: var(--paper); }
.content-wrap { max-width: 1100px; margin: 0 auto; }
.content-wrap h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(32px, 3.5vw, 48px); line-height: 1;
  text-transform: uppercase; letter-spacing: -0.02em;
  margin: 56px 0 24px;
}
.content-wrap h2:first-child { margin-top: 0; }
.content-wrap h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 24px; line-height: 1.1;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin: 40px 0 16px;
  color: var(--ink);
}
.content-wrap h3 .mark {
  display: inline-block; width: 8px; height: 24px;
  background: var(--blue); margin-right: 14px;
  vertical-align: middle; position: relative; top: -2px;
}
.content-wrap p { font-size: 17px; line-height: 1.7; margin-bottom: 20px; color: var(--graphite); }
.content-wrap p.lead { font-size: 20px; color: var(--ink); font-weight: 500; }
.content-wrap ul { margin: 20px 0 28px; padding-left: 0; list-style: none; }
.content-wrap ul li {
  font-size: 16px; color: var(--graphite);
  padding: 10px 0 10px 28px; position: relative;
  border-bottom: 1px dashed var(--concrete);
}
.content-wrap ul li:last-child { border-bottom: none; }
.content-wrap ul li::before {
  content: '◆'; color: var(--blue); position: absolute;
  left: 0; top: 10px; font-size: 14px;
}
.content-wrap strong { color: var(--ink); font-weight: 700; }

.feature-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  background: var(--concrete); margin: 48px 0;
}
.feature-item {
  background: white; padding: 32px;
}
.feature-item .ic {
  width: 48px; height: 48px; background: var(--ink); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; margin-bottom: 20px;
}
.feature-item h4 {
  font-family: 'Archivo Black', sans-serif; font-size: 18px;
  text-transform: uppercase; letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.feature-item p { font-size: 14px; color: var(--steel); line-height: 1.6; margin-bottom: 0; }

.callout {
  background: var(--ink); color: white;
  padding: 48px; margin: 48px 0;
  position: relative; overflow: hidden;
  border-left: 6px solid var(--blue);
}
.callout::before {
  content: '"'; position: absolute; top: -20px; right: 32px;
  font-family: 'Archivo Black', sans-serif;
  font-size: 200px; color: rgba(43,184,230,0.15);
  line-height: 1;
}
.callout h3 {
  font-family: 'Archivo Black', sans-serif; color: var(--blue);
  font-size: 22px; text-transform: uppercase; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.callout p { color: rgba(255,255,255,0.85); font-size: 17px; margin-bottom: 0; }

/* ============ INQUIRY FORM ============ */
.inquiry {
  background: var(--ink); color: white; padding: 100px 40px;
  position: relative; overflow: hidden;
}
.inquiry::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(43,184,230,0.15) 0%, transparent 70%);
}
.inquiry-wrap {
  max-width: 800px; margin: 0 auto; position: relative;
}
.inquiry h2 {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(36px, 4vw, 56px);
  text-transform: uppercase; letter-spacing: -0.02em;
  line-height: 1; margin-bottom: 16px;
}
.inquiry h2 .accent { color: var(--blue); }
.inquiry-sub { color: rgba(255,255,255,0.7); font-size: 17px; margin-bottom: 48px; }
.inquiry-form {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
}
.inquiry-form .full { grid-column: span 2; }
.inquiry-form label {
  display: block;
  font-family: 'JetBrains Mono', monospace;
  font-size: 11px; font-weight: 700; color: var(--blue);
  text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 10px;
}
.inquiry-form input,
.inquiry-form textarea,
.inquiry-form select {
  width: 100%; padding: 14px 16px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  font-family: 'Manrope', sans-serif; font-size: 15px;
  transition: all 0.2s;
}
.inquiry-form input:focus,
.inquiry-form textarea:focus,
.inquiry-form select:focus {
  outline: none; border-color: var(--blue); background: rgba(43,184,230,0.06);
}
.inquiry-form select option { background: var(--ink); }
.inquiry-form textarea { resize: vertical; min-height: 120px; }
.radio-group { display: flex; gap: 12px; }
.radio-group label {
  flex: 1; padding: 14px; background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.15); cursor: pointer;
  text-align: center; margin: 0; color: rgba(255,255,255,0.7);
  font-family: 'Manrope', sans-serif; font-size: 14px;
  font-weight: 600; text-transform: none; letter-spacing: 0;
  transition: all 0.2s;
}
.radio-group label.active { background: var(--blue); color: var(--ink); border-color: var(--blue); }
.radio-group input { display: none; }
.inquiry-submit {
  grid-column: span 2;
  padding: 20px; background: var(--blue); color: var(--ink);
  border: none; font-weight: 800; font-size: 14px;
  text-transform: uppercase; letter-spacing: 0.1em; cursor: pointer;
  transition: all 0.3s; font-family: 'Manrope', sans-serif;
  margin-top: 12px;
}
.inquiry-submit:hover { background: white; }

/* ============ CTA BAND ============ */
.cta-band {
  background: var(--blue); color: var(--ink); padding: 80px 40px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-band::before {
  content: 'BAUPLATZ · BAUPLATZ · BAUPLATZ · BAUPLATZ · BAUPLATZ ·';
  position: absolute; top: -20px; left: 0; right: 0;
  font-family: 'Archivo Black', sans-serif; font-size: 140px;
  color: rgba(0,0,0,0.06); white-space: nowrap; letter-spacing: -0.02em;
  pointer-events: none;
}
.cta-band h2 {
  font-family: 'Archivo Black', sans-serif; font-size: clamp(36px, 5vw, 64px);
  text-transform: uppercase; letter-spacing: -0.02em;
  line-height: 0.95; margin-bottom: 24px; position: relative;
}
.cta-band p { font-size: 18px; margin-bottom: 40px; max-width: 640px; margin-left: auto; margin-right: auto; position: relative; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; position: relative; }

/* ============ FOOTER ============ */
footer {
  background: var(--ink); color: rgba(255,255,255,0.7); padding: 100px 40px 40px;
  position: relative; overflow: hidden;
}
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--blue), transparent);
}
.footer-grid {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr; gap: 60px;
  padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.08);
}
.foot-brand { display: flex; flex-direction: column; gap: 24px; }
.foot-logo-wrap { display: flex; align-items: center; color: white; }
.foot-logo-wrap .logo-img { height: 56px; width: auto; display: block; }
.foot-desc { font-size: 14px; line-height: 1.6; max-width: 320px; }
.foot-social { display: flex; gap: 12px; }
.foot-social a {
  width: 40px; height: 40px; border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7); text-decoration: none; transition: all 0.3s;
}
.foot-social a:hover { background: var(--blue); color: var(--ink); border-color: var(--blue); transform: translateY(-2px); }
.foot-col h4 {
  font-family: 'JetBrains Mono', monospace; font-size: 11px;
  color: var(--blue); text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 24px; font-weight: 700;
}
.foot-col ul { list-style: none; }
.foot-col li { margin-bottom: 12px; }
.foot-col a {
  color: rgba(255,255,255,0.7); text-decoration: none; font-size: 14px;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
}
.foot-col a:hover { color: var(--blue); padding-left: 6px; }
.foot-contact { display: flex; flex-direction: column; gap: 16px; font-size: 14px; }
.foot-contact a { color: rgba(255,255,255,0.85); text-decoration: none; transition: color 0.2s; }
.foot-contact a:hover { color: var(--blue); }
.foot-contact .label {
  font-family: 'JetBrains Mono', monospace; font-size: 10px;
  color: rgba(255,255,255,0.4); text-transform: uppercase; letter-spacing: 0.15em;
  margin-bottom: 4px; display: block;
}

.foot-bottom {
  max-width: 1440px; margin: 40px auto 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  font-size: 12px; color: rgba(255,255,255,0.4);
  font-family: 'JetBrains Mono', monospace;
}
.foot-bottom-links { display: flex; gap: 24px; }
.foot-bottom a { color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
.foot-bottom a:hover { color: var(--blue); }

.foot-mega {
  font-family: 'Archivo Black', sans-serif;
  font-size: clamp(80px, 15vw, 220px); color: rgba(255,255,255,0.04);
  text-transform: uppercase; letter-spacing: -0.04em;
  text-align: center; line-height: 0.9; margin: 60px 0 -20px;
  pointer-events: none; user-select: none;
}

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 32px; right: 32px;
  background: var(--ink); color: white; padding: 20px 28px;
  border-left: 4px solid var(--blue); z-index: 1000;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: translateX(120%); transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  max-width: 360px;
}
.toast.show { transform: translateX(0); }
.toast strong { display: block; color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 6px; font-family: 'JetBrains Mono', monospace; }

/* ============ COOKIE BANNER ============ */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: var(--ink); color: white;
  border-top: 4px solid var(--blue);
  padding: 24px 40px;
  z-index: 1001;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(.4,0,.2,1);
  box-shadow: 0 -20px 60px rgba(0,0,0,0.3);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center;
}
.cookie-banner-content h4 {
  font-family: 'Archivo Black', sans-serif; font-size: 16px;
  text-transform: uppercase; letter-spacing: -0.01em;
  color: var(--blue); margin-bottom: 8px;
}
.cookie-banner-content p {
  font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.75); margin: 0;
}
.cookie-banner-content a {
  color: var(--blue); text-decoration: underline; font-weight: 600;
}
.cookie-banner-actions { display: flex; gap: 12px; flex-shrink: 0; }
.cookie-btn {
  padding: 14px 22px; font-family: 'Manrope', sans-serif;
  font-size: 12px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; cursor: pointer;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent; color: white; transition: all 0.2s;
  white-space: nowrap;
}
.cookie-btn-essential:hover { border-color: white; background: rgba(255,255,255,0.08); }
.cookie-btn-all { background: var(--blue); color: var(--ink); border-color: var(--blue); }
.cookie-btn-all:hover { background: white; border-color: white; }

@media (max-width: 1024px) {
  .cookie-banner { padding: 20px; }
  .cookie-banner-inner { grid-template-columns: 1fr; gap: 20px; }
  .cookie-banner-actions { flex-wrap: wrap; }
  .cookie-btn { flex: 1; padding: 14px 16px; font-size: 11px; }
}
@media (max-width: 640px) {
  .cookie-banner-content h4 { font-size: 14px; }
  .cookie-banner-content p { font-size: 13px; }
}

/* ============ REVEAL ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: all 0.8s cubic-bezier(.25,.46,.45,.94); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  nav { padding: 14px 20px; }
  nav.scrolled { padding: 12px 20px; }
  .nav-menu { display: none; }
  .mobile-toggle { display: flex; }
  section { padding: 80px 20px; }
  .page-header { padding: 140px 20px 60px; }
  .content-section { padding: 60px 20px; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feature-grid { grid-template-columns: 1fr 1fr; }
  .inquiry { padding: 60px 20px; }
  .inquiry-form { grid-template-columns: 1fr; }
  .inquiry-form .full { grid-column: span 1; }
  .inquiry-submit { grid-column: span 1; }
  .cta-band { padding: 60px 20px; }
  footer { padding: 60px 20px 24px; }
  .callout { padding: 32px 24px; }
  .toast { bottom: 16px; right: 16px; left: 16px; max-width: none; }
}
@media (max-width: 640px) {
  .page-header h1 { font-size: 44px; }
  .footer-grid { grid-template-columns: 1fr; }
  .foot-bottom { flex-direction: column; align-items: flex-start; }
  .feature-grid { grid-template-columns: 1fr; }
  .section-title { font-size: 36px; }
  .content-wrap h2 { font-size: 28px; }
  .btn { padding: 16px 24px; font-size: 12px; }
  .logo-img { height: 34px; }
  nav.scrolled .logo-img { height: 30px; }
  .foot-logo-wrap .logo-img { height: 44px; }
  .mobile-menu a { font-size: 22px; padding: 14px 0; }
}
