/* =============================================================
   LASERPROFI24 – Industrial Precision Design System
   Reines CSS – keine Frameworks
   Signaturfarbe: Laser-Rot #E53935
   Schriften: Barlow Condensed (Headlines), Barlow (Body)
   ============================================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --red:          #e53935;
  --red-dark:     #b71c1c;
  --anthracite:   #1c2331;
  --steel:        #28303f;
  --steel-light:  #38424f;
  --light-bg:     #f3f4f6;
  --white:        #ffffff;
  --text-dark:    #1c2331;
  --text-muted:   #6b7280;
  --text-muted-dark: #9ca3af;
  --border-light: #e0e2e6;
  --border-dark:  rgba(255,255,255,0.08);
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Barlow', sans-serif;
  --ease-out:     cubic-bezier(0.23, 1, 0.32, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.02em;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.5rem; } }
@media (min-width: 1024px) { .container { padding: 0 2rem; } }

/* ---- Utility ---- */
.text-red { color: var(--red); }
.grid-texture {
  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: 40px 40px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: opacity 200ms var(--ease-out), transform 150ms var(--ease-out);
  border: none;
}
.btn:active { transform: scale(0.97); }
.btn--red  { background: var(--red); color: var(--white); }
.btn--red:hover { opacity: 0.88; }
.btn--outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.4);
}
.btn--outline:hover { background: rgba(255,255,255,0.08); }
.btn--full { width: 100%; justify-content: center; }
.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

/* ---- Scroll-reveal ---- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---- Laser rule ---- */
.laser-rule { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1.25rem; }
.laser-rule__solid { display: block; width: 3rem; height: 2px; background: var(--red); }
.laser-rule__fade  { display: block; width: 2rem; height: 2px; background: rgba(229,57,53,0.3); }

/* ---- Section label ---- */
.section-label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(229,57,53,0.3);
}
.section-label--dark { border-bottom-color: rgba(229,57,53,0.4); }
.section-label__badge {
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--red);
  border: 1px solid var(--red);
  padding: 2px 8px;
}
.section-label__line { flex: 1; height: 1px; background: var(--border-light); }
.section-label__line--dark { background: rgba(255,255,255,0.08); }
.section-label__text {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
}
.section-label__text--dark { color: var(--steel-light); }

/* ---- Section headlines & body ---- */
.section-headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.8rem, 5vw, 4rem);
  text-transform: uppercase;
  line-height: 0.95;
  color: var(--text-dark);
  margin-bottom: 1rem;
}
.section-headline--white { color: var(--white); }
.section-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.section-body--dark { color: var(--text-muted-dark); }

/* =============================================================
   NAVBAR
   ============================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 300ms var(--ease-out), box-shadow 300ms;
}
.navbar.scrolled {
  background: rgba(28,35,49,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.navbar__topbar {
  display: none;
  align-items: center;
  justify-content: flex-end;
  gap: 1.5rem;
  padding: 0.35rem 2rem;
  background: var(--red);
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--white);
}
@media (min-width: 768px) { .navbar__topbar { display: flex; } }

.navbar__topbar-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  opacity: 0.9;
  transition: opacity 200ms;
}
.navbar__topbar-link:hover { opacity: 1; }

.navbar__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 1.5rem;
}
@media (min-width: 1024px) { .navbar__main { padding: 0.75rem 2.5rem; } }

.navbar__logo img {
  height: 3rem;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}
.navbar.scrolled .navbar__logo img { filter: none; }

.navbar__nav {
  display: none;
  align-items: center;
  gap: 2rem;
}
@media (min-width: 768px) { .navbar__nav { display: flex; } }

.navbar__link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  transition: color 200ms;
}
.navbar__link:hover { color: var(--red); }

.navbar__cta {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

/* Burger */
.navbar__burger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 768px) { .navbar__burger { display: none; } }
.navbar__burger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--white);
  transition: transform 250ms var(--ease-out), opacity 200ms;
}
.navbar__burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__burger.open span:nth-child(2) { opacity: 0; }
.navbar__burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.navbar__mobile {
  display: none;
  flex-direction: column;
  background: rgba(28,35,49,0.98);
  padding-bottom: 1rem;
}
.navbar__mobile.open { display: flex; }
.navbar__mobile a {
  padding: 0.85rem 2rem;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 200ms;
}
.navbar__mobile a:hover { color: var(--red); }
.navbar__mobile-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem 2rem 0;
}
.navbar__mobile-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  border: none;
  padding: 0;
}

/* =============================================================
   HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: #12161f;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, #12161f 38%, rgba(18,22,31,0.6) 65%, rgba(18,22,31,0.1) 100%);
}
.hero__content {
  position: relative;
  z-index: 2;
  padding-top: 9rem;
  padding-bottom: 6rem;
  max-width: 680px;
}
.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--red);
  margin-bottom: 1.25rem;
}
.hero__eyebrow-line {
  display: block;
  width: 2.5rem;
  height: 1px;
  background: var(--red);
}
.hero__headline {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3.5rem, 9vw, 6.5rem);
  text-transform: uppercase;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero__laser-line {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.hero__laser-line-solid { display: block; width: 5rem; height: 2px; background: var(--red); }
.hero__laser-line-fade  { display: block; width: 8rem; height: 2px; background: rgba(229,57,53,0.3); }
.hero__sub {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.75);
  max-width: 520px;
  margin-bottom: 2.5rem;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.hero__diagonal {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 5rem;
  background: var(--light-bg);
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  z-index: 3;
}

/* =============================================================
   USP STRIP
   ============================================================= */
.usp-strip {
  background: var(--light-bg);
  padding: 4rem 0;
}
.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  border: 1px solid var(--border-light);
}
@media (min-width: 640px)  { .usp-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .usp-grid { grid-template-columns: repeat(4, 1fr); } }

.usp-card {
  background: var(--white);
  padding: 1.5rem;
  border-right: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
@media (min-width: 1024px) { .usp-card:last-child { border-right: none; } }

.usp-card__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(229,57,53,0.15);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.usp-card__title {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.usp-card__rule { width: 2rem; height: 2px; background: var(--red); margin-bottom: 0.75rem; }
.usp-card__desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* =============================================================
   SERVICE SECTIONS
   ============================================================= */
.service-section { padding: 5rem 0 6rem; }
.service-section--light { background: var(--light-bg); }
.service-section--dark  { background: var(--anthracite); }

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 1024px) {
  .service-layout { grid-template-columns: 5fr 8fr; align-items: start; }
  .service-layout--reverse { grid-template-columns: 8fr 5fr; }
  .service-layout--reverse .service-layout__right { order: -1; }
}

/* Service image */
.service-img-wrap {
  position: relative;
  overflow: hidden;
}
.service-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}
.service-img__caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1rem;
  background: linear-gradient(to top, #12161f 0%, transparent 100%);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--white);
}
.service-img__corner {
  position: absolute;
  top: 0;
  width: 2rem; height: 2rem;
  background: var(--red);
}
.service-img__corner--tr { right: 0; }
.service-img__corner--tl { left: 0; }

/* Spec grid */
.spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
@media (min-width: 640px) { .spec-grid { grid-template-columns: 1fr 1fr; } }

/* Spec card */
.spec-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 1.25rem;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms var(--ease-out);
}
.spec-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 100%;
  background: var(--red);
  opacity: 0;
  transition: opacity 180ms ease;
}
.spec-card:hover::before { opacity: 1; }
.spec-card:hover {
  border-color: var(--red);
  box-shadow: 0 8px 28px rgba(229,57,53,0.15);
  transform: translateY(-3px);
}
.spec-card--dark {
  background: #222b38;
  border-color: rgba(255,255,255,0.08);
}
.spec-card--dark:hover { border-color: var(--red); box-shadow: 0 8px 28px rgba(229,57,53,0.2); }
.spec-card--wide { grid-column: 1 / -1; }
.spec-card--cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
  background: var(--anthracite);
  border-color: rgba(229,57,53,0.3);
}
.spec-card--cta.spec-card--dark { background: #12161f; }

.spec-card__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.spec-card__icon {
  width: 2.25rem; height: 2.25rem;
  display: flex; align-items: center; justify-content: center;
  background: rgba(229,57,53,0.1);
  border: 1px solid rgba(229,57,53,0.25);
  color: var(--red);
  flex-shrink: 0;
}
.spec-card__icon--dark { background: rgba(229,57,53,0.12); border-color: rgba(229,57,53,0.3); }
.spec-card__title {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-dark);
}
.spec-card__title--dark { color: var(--white); }
.spec-card__rule { height: 1px; background: var(--border-light); margin-bottom: 0.75rem; }
.spec-card__rule--dark { background: rgba(255,255,255,0.07); }
.spec-card__desc { font-size: 0.82rem; line-height: 1.6; color: var(--text-muted); }
.spec-card__desc--dark { color: var(--text-muted-dark); }
.spec-card__cta-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: var(--white);
}
.spec-card__cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--red);
  transition: opacity 200ms;
}
.spec-card__cta-link:hover { opacity: 0.75; }

/* Bild in Spec-Card */
.spec-card__img-wrap {
  position: relative;
  width: 100%;
  height: 140px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.spec-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms var(--ease-out);
}
.spec-card:hover .spec-card__img { transform: scale(1.05); }
.spec-card__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,35,49,0.55) 0%, transparent 60%);
  pointer-events: none;
}

/* =============================================================
   CONTACT SECTION
   ============================================================= */
.contact-section {
  background: var(--anthracite);
  padding: 5rem 0 6rem;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
}
@media (min-width: 1024px) { .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; } }

.contact-info__card {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--red);
  background: #222b38;
  margin-bottom: 1rem;
  font-size: 0.88rem;
  color: var(--text-muted-dark);
  line-height: 1.6;
}
.contact-info__card svg { flex-shrink: 0; margin-top: 2px; }
.contact-info__card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.contact-info__card a { color: var(--text-muted-dark); transition: color 200ms; }
.contact-info__card a:hover { color: var(--white); }

.contact-form-wrap {
  background: #222b38;
  border: 1px solid rgba(255,255,255,0.07);
  padding: 2rem 2.5rem;
}
.contact-form-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-form-header__dot {
  width: 0.75rem; height: 0.75rem;
  background: var(--red);
  display: inline-block;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.45);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: #12161f;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.9rem;
  padding: 0.75rem 1rem;
  outline: none;
  transition: border-color 200ms;
  width: 100%;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--red); }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: none; }

.contact-form-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 1rem;
  text-align: center;
}
.contact-form-success p {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--white);
}
.contact-form-success span { font-size: 0.85rem; color: var(--text-muted-dark); }

/* =============================================================
   FOOTER
   ============================================================= */
.footer { background: #12161f; color: rgba(255,255,255,0.85); }
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
}
@media (min-width: 768px) { .footer__grid { grid-template-columns: 1fr 1fr 1fr; } }

.footer__logo { height: 3.5rem; width: auto; object-fit: contain; margin-bottom: 1rem; }
.footer__brand-text { font-size: 0.85rem; color: rgba(255,255,255,0.45); line-height: 1.7; }
.footer__heading {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer__list { list-style: none; display: flex; flex-direction: column; gap: 0.4rem; }
.footer__list li { font-size: 0.85rem; color: rgba(255,255,255,0.45); }
.footer__list-sep { margin-top: 0.75rem; }
.footer__list--contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.6;
}
.footer__list--contact svg { flex-shrink: 0; margin-top: 2px; }
.footer__list--contact a { color: rgba(255,255,255,0.45); transition: color 200ms; }
.footer__list--contact a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 1rem 0;
}
.footer__bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
}
@media (min-width: 640px) {
  .footer__bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer__bottom-inner a { transition: color 200ms; }
.footer__bottom-inner a:hover { color: var(--white); }

/* =============================================================
   IMPRESSUM PAGE
   ============================================================= */
.impressum-page {
  min-height: 100vh;
  background: var(--light-bg);
  padding-top: 7rem;
  padding-bottom: 5rem;
}
.impressum-page .impressum-inner {
  max-width: 760px;
  margin: 0 auto;
}
.impressum-page h1 {
  font-family: var(--font-display);
  font-size: 3.5rem;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}
.impressum-page .impressum-rule {
  width: 4rem; height: 3px;
  background: var(--red);
  margin-bottom: 2.5rem;
}
.impressum-card {
  background: var(--white);
  padding: 2.5rem 3rem;
}
.impressum-card section { margin-bottom: 2rem; }
.impressum-card h2 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}
.impressum-card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}
.impressum-card p { font-size: 0.95rem; line-height: 1.75; color: #374151; }
.impressum-card a { color: var(--red); transition: opacity 200ms; }
.impressum-card a:hover { opacity: 0.75; }

/* =============================================================
   COOKIE BANNER
   ============================================================= */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--anthracite);
  border-top: 2px solid var(--red);
  padding: 1.25rem 0;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.4);
  transform: translateY(0);
  transition: transform 400ms cubic-bezier(0.23,1,0.32,1);
}
.cookie-banner.hidden { transform: translateY(110%); }
.cookie-banner__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.cookie-banner__text {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  min-width: 260px;
}
.cookie-banner__text p { font-size: 0.82rem; line-height: 1.6; color: rgba(255,255,255,0.8); margin: 0; }
.cookie-banner__text a { color: var(--red); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-banner__btn { font-size: 0.8rem; padding: 0.55rem 1.25rem; white-space: nowrap; }
@media (max-width: 640px) {
  .cookie-banner__inner { flex-direction: column; gap: 1rem; }
  .cookie-banner__actions { width: 100%; }
  .cookie-banner__btn { flex: 1; text-align: center; justify-content: center; }
}
