/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --c-green:        #5f9739;
  --c-green-dim:    #4a7a2c;
  --c-dark:         #0d0f0b;
  --c-dark-mid:     #111510;
  --c-dark-card:    #1a2016;
  --c-surface:      #f7f8f5;
  --c-white:        #ffffff;
  --c-text:         #111a0d;
  --c-text-sec:     #4a5243;
  --c-text-on-dark: #dde8d5;
  --c-text-muted:   rgba(221,232,213,0.5);
  --c-border:       rgba(255,255,255,0.08);
  --c-border-light: rgba(0,0,0,0.08);

  --f-display: 'Space Grotesk', sans-serif;
  --f-mono:    'JetBrains Mono', monospace;

  --fs-hero:    clamp(3rem, 5.5vw + 0.8rem, 7rem);
  --fs-h2:      clamp(2rem, 3vw + 0.6rem, 3.8rem);
  --fs-h3:      clamp(1.25rem, 1.5vw + 0.4rem, 1.75rem);
  --fs-body-lg: 1.125rem;
  --fs-body:    1rem;
  --fs-small:   0.875rem;
  --fs-mono:    0.72rem;

  --lh-tight:  1.05;
  --lh-snug:   1.25;
  --lh-normal: 1.6;
  --ls-tight:  -0.04em;
  --ls-norm:   -0.01em;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --space-section: clamp(80px, 10vw, 140px);
  --max-w:   1360px;
  --gutter:  clamp(20px, 4vw, 48px);
  --radius-card: 12px;
  --shadow-float: 0 8px 48px rgba(0,0,0,0.38);
  --shadow-card:  0 2px 24px rgba(0,0,0,0.09);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--f-display);
  font-size: var(--fs-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: var(--lh-normal);
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { text-align: justify; }

/* ============================================================
   UTILITIES
   ============================================================ */
.accent { color: var(--c-green); }

.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section-pad {
  padding-top: var(--space-section);
  padding-bottom: var(--space-section);
}

.section-label {
  font-family: var(--f-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.section-label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-green);
  flex-shrink: 0;
}
.section-label--center { justify-content: center; }

/* ============================================================
   SCROLL REVEAL
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--c-green);
  color: #fff;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: var(--fs-small);
  padding: 14px 28px;
  border-radius: 8px;
  letter-spacing: -0.01em;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.btn-primary:hover {
  background: var(--c-green-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(95,151,57,0.3);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--c-text-on-dark);
  font-family: var(--f-display);
  font-weight: 500;
  font-size: var(--fs-small);
  padding: 14px 28px;
  border-radius: 8px;
  border: 1px solid rgba(221,232,213,0.2);
  letter-spacing: -0.01em;
  transition: border-color 0.2s, color 0.2s, transform 0.2s var(--ease);
}
.btn-ghost:hover {
  border-color: rgba(221,232,213,0.5);
  color: #fff;
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(13,15,11,0.92);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border-bottom: 1px solid var(--c-border);
}
.nav__logo img {
  height: 68px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav__links a {
  font-family: var(--f-display);
  font-size: var(--fs-small);
  font-weight: 500;
  color: rgba(221,232,213,0.8);
  letter-spacing: -0.01em;
  transition: color 0.2s;
}
.nav__links a:hover { color: #fff; }
.nav__links .nav__cta {
  color: var(--c-green);
  border: 1px solid var(--c-green);
  padding: 8px 18px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav__links .nav__cta:hover { background: var(--c-green); color: #fff; }

/* ── Language Toggle ── */
.lang-toggle {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 3px 5px;
  margin-left: 8px;
}
.lang-btn {
  font-family: var(--f-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(221,232,213,0.45);
  background: none;
  border: none;
  cursor: pointer;
  padding: 3px 7px;
  border-radius: 4px;
  transition: all 0.2s;
  line-height: 1;
}
.lang-btn.active { background: var(--c-green); color: #fff; }
.lang-btn:not(.active):hover { color: var(--c-text-on-dark); }
.lang-sep { color: rgba(221,232,213,0.18); font-size: 0.65rem; font-family: var(--f-mono); }

/* ── Hamburger ── */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--c-text-on-dark);
  transition: transform 0.3s var(--ease), opacity 0.3s;
}
.hamburger.is-active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ── Mobile Menu ── */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--c-dark);
  z-index: 999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 40px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.mobile-menu.is-open { opacity: 1; pointer-events: all; }
.mobile-menu a {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 600;
  color: var(--c-text-on-dark);
  letter-spacing: var(--ls-tight);
  transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--c-green); }
.mobile-menu__lang {
  display: flex;
  align-items: center;
  gap: 4px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 10px;
  margin-top: 8px;
}
.mobile-menu__lang .lang-btn {
  font-size: 0.85rem;
  padding: 6px 14px;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 58fr 42fr;
  background: var(--c-dark);
  overflow: hidden;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 120px clamp(24px, 4vw, 56px) 80px clamp(24px, 5vw, 72px);
  position: relative;
  z-index: 2;
}
.hero__tag {
  font-family: var(--f-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.1s forwards;
}
.hero__h1 {
  font-size: var(--fs-hero);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
  color: #fff;
  margin-bottom: 28px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.25s forwards;
}
.hero__sub {
  font-size: clamp(1rem, 1.2vw + 0.3rem, 1.2rem);
  color: var(--c-text-muted);
  line-height: var(--lh-normal);
  max-width: 520px;
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.4s forwards;
}
.hero__ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.55s forwards;
}
.hero__visual {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}
.hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero__visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(13,15,11,0.55) 0%, transparent 45%);
  pointer-events: none;
}
.hero__scroll-hint {
  position: absolute;
  bottom: 32px;
  left: clamp(24px, 5vw, 72px);
  font-family: var(--f-mono);
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(221,232,213,0.3);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeUp 0.7s cubic-bezier(0.22,1,0.36,1) 0.8s forwards;
}
.hero__scroll-hint::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: rgba(221,232,213,0.2);
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   BENTO / KEY FIGURES
   ============================================================ */
.bento { padding: clamp(48px, 6vw, 80px) 0; background: var(--c-white); }
.bento__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.bento__card {
  background: var(--c-surface);
  border: 1px solid var(--c-border-light);
  border-radius: var(--radius-card);
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 160px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.bento__card:hover { transform: translateY(-3px); box-shadow: var(--shadow-card); }
.bento__card--wide {
  grid-column: span 2;
  grid-row: span 2;
  position: relative;
  overflow: hidden;
  min-height: 320px;
  border: none;
  background: var(--c-dark);
}
.bento__bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.bento__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,15,11,0.88) 0%, rgba(13,15,11,0.55) 100%);
}
.bento__card-inner { position: relative; z-index: 1; }
.bento__number {
  display: block;
  font-size: clamp(3.5rem, 5vw, 5.5rem);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: 1;
  color: var(--c-text);
  margin-bottom: 8px;
}
.bento__card--wide .bento__number,
.bento__card--dark .bento__number { color: #fff; }
.bento__unit {
  display: block;
  font-size: clamp(1.8rem, 2.5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: var(--ls-tight);
  line-height: 1;
  color: var(--c-text);
  margin-bottom: 8px;
}
.bento__card--wide .bento__unit,
.bento__card--dark .bento__unit { color: #fff; }
.bento__label {
  font-family: var(--f-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--c-green);
}
.bento__card--dark { background: var(--c-dark); border-color: transparent; }

/* ============================================================
   CONTAINER SHOWCASE
   ============================================================ */
.container-showcase {
  background: var(--c-dark);
  padding: clamp(48px, 7vw, 100px) 0;
}
.container-showcase .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
.container-showcase__label {
  font-family: var(--f-mono);
  font-size: var(--fs-mono);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  display: flex;
  align-items: center;
  gap: 10px;
}
.container-showcase__label::before {
  content: '';
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--c-green);
  flex-shrink: 0;
}
.container-showcase__img {
  width: 100%;
  border-radius: var(--radius-card);
  overflow: hidden;
  position: relative;
}
.container-showcase__img img {
  width: 100%;
  height: clamp(280px, 42vw, 620px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.container-showcase__caption {
  font-family: var(--f-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
  text-align: center;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { background: var(--c-white); }
.about__grid {
  display: grid;
  grid-template-columns: 60fr 40fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.about__h2 {
  font-size: var(--fs-h2);
  font-weight: 700;
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-snug);
  color: var(--c-text);
  margin-bottom: 28px;
}
.about__text {
  font-size: var(--fs-body-lg);
  color: var(--c-text-sec);
  line-height: var(--lh-normal);
  margin-bottom: 16px;
}
.about__features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 36px;
}
.about__feature { display: flex; align-items: flex-start; gap: 12px; }
.about__feature-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--c-green);
  flex-shrink: 0;
  margin-top: 8px;
}
.about__feature-text { font-size: var(--fs-small); font-weight: 500; color: var(--c-text); line-height: 1.5; }
.about__visual { position: relative; }
.about__img-wrap {
  border-radius: var(--radius-card);
  overflow: hidden;
  transform: rotate(1.5deg);
  border-left: 3px solid var(--c-green);
  box-shadow: 0 24px 64px rgba(0,0,0,0.12);
}
.about__img-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: center; display: block; }
.about__badge {
  position: absolute; top: -16px; right: -12px;
  background: var(--c-green); color: #fff;
  font-family: var(--f-mono); font-size: 0.65rem; font-weight: 500;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 8px 14px; border-radius: 6px; white-space: nowrap;
  box-shadow: 0 4px 16px rgba(95,151,57,0.35);
}

/* ============================================================
   TECHNOLOGY
   ============================================================ */
.tech { background: var(--c-dark-mid); color: var(--c-text-on-dark); border-top: 1px solid var(--c-green); }
.tech__h2 {
  font-size: var(--fs-h2); font-weight: 700;
  letter-spacing: var(--ls-tight); line-height: var(--lh-snug);
  color: #fff; max-width: 720px; margin-bottom: 16px;
}
.tech__subtext {
  font-size: var(--fs-body-lg); color: var(--c-text-muted);
  max-width: 620px; line-height: var(--lh-normal);
  margin-bottom: clamp(40px, 5vw, 64px);
}
.tech__split {
  display: grid;
  grid-template-columns: 55fr 45fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: start;
  margin-bottom: 40px;
}
.tech__diagram-card {
  background: var(--c-dark-card); border-radius: var(--radius-card);
  padding: clamp(20px, 3vw, 32px); box-shadow: var(--shadow-float);
}
.tech__diagram-card img { width: 100%; height: auto; object-fit: contain; display: block; }
.tech__model-col { display: flex; flex-direction: column; gap: 20px; }
.tech__model-img {
  border-radius: var(--radius-card); overflow: hidden;
  background: rgba(255,255,255,0.05); padding: 20px;
  max-height: 420px;
  display: flex; align-items: center; justify-content: center;
}
.tech__model-img img { width: 100%; max-height: 380px; object-fit: contain; display: block; }
.tech__callouts { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.tech__callout {
  background: var(--c-dark-card);
  border: 1px solid var(--c-border);
  border-radius: 8px; padding: 16px;
}
.tech__callout-label {
  font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--c-green); margin-bottom: 6px;
}
.tech__callout-val { font-size: var(--fs-small); font-weight: 600; color: var(--c-text-on-dark); }
.tech__flow-card {
  background: var(--c-dark-card); border: 1px solid var(--c-border);
  border-radius: var(--radius-card); padding: clamp(24px, 3vw, 40px);
  display: grid; grid-template-columns: 1fr 2fr;
  gap: clamp(24px, 4vw, 48px); align-items: center;
}
.tech__flow-title { font-size: var(--fs-h3); font-weight: 600; letter-spacing: var(--ls-norm); color: #fff; margin-bottom: 12px; }
.tech__flow-desc { font-size: var(--fs-small); color: var(--c-text-muted); line-height: var(--lh-normal); }
.tech__flow-img { border-radius: 8px; overflow: hidden; }
.tech__flow-img img { width: 100%; height: auto; object-fit: contain; display: block; }

/* ============================================================
   RCDT MODULE
   ============================================================ */
.rcdt { background: var(--c-surface); position: relative; overflow: hidden; }
.rcdt::before {
  content: ''; position: absolute; inset: 0;
  background: repeating-linear-gradient(-45deg, transparent, transparent 32px, rgba(95,151,57,0.025) 32px, rgba(95,151,57,0.025) 33px);
  pointer-events: none;
}
.rcdt__split {
  display: grid; grid-template-columns: 40fr 60fr;
  gap: clamp(32px, 5vw, 64px); align-items: center;
  position: relative; z-index: 1;
}
.rcdt__features { display: flex; flex-direction: column; gap: 14px; }
.rcdt__feature {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: 10px; padding: 18px 22px;
  display: flex; align-items: flex-start; gap: 14px;
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.rcdt__feature:hover { border-color: var(--c-green); transform: translateX(4px); }
.rcdt__feature-icon {
  width: 8px; height: 8px;
  border-radius: 50%; background: var(--c-green);
  flex-shrink: 0; margin-top: 7px;
}
.rcdt__feature-label { font-family: var(--f-mono); font-size: 0.68rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-green); margin-bottom: 3px; }
.rcdt__feature-val { font-size: 1rem; font-weight: 600; color: var(--c-text); letter-spacing: var(--ls-norm); }
.rcdt__explosion {
  border-radius: var(--radius-card); overflow: hidden;
  box-shadow: 0 0 60px rgba(95,151,57,0.12);
  background: #fff; padding: 16px;
  max-height: 560px;
  display: flex; align-items: center; justify-content: center;
}
.rcdt__explosion img { width: 100%; max-height: 528px; object-fit: contain; display: block; }
.rcdt__modules-strip { margin-top: clamp(40px, 5vw, 64px); position: relative; z-index: 1; }
.rcdt__modules-img {
  width: 100%; border-radius: var(--radius-card); overflow: hidden;
  background: var(--c-white);
  display: flex; align-items: center; justify-content: center;
  max-height: 340px;
}
.rcdt__modules-img img { width: 100%; max-height: 340px; object-fit: contain; object-position: center; display: block; }
.rcdt__modules-caption {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding: 0 4px;
}
.rcdt__modules-caption span { font-family: var(--f-mono); font-size: var(--fs-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-sec); }
.rcdt__modules-caption .accent { font-weight: 600; }

/* ============================================================
   PERFORMANCE
   ============================================================ */
.performance { background: var(--c-white); }
.performance__h2 {
  font-size: var(--fs-h2); font-weight: 700;
  letter-spacing: var(--ls-tight); line-height: var(--lh-snug);
  color: var(--c-text); margin-bottom: clamp(40px, 5vw, 64px);
}
.perf__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 24px; }
.perf__card {
  background: var(--c-surface); border: 1px solid var(--c-border-light);
  border-radius: var(--radius-card); padding: clamp(24px, 3vw, 40px);
  position: relative; overflow: hidden;
}
.perf__card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 3px; height: 100%; background: var(--c-green);
}
.perf__param { font-family: var(--f-mono); font-size: var(--fs-mono); font-weight: 500; letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-green); margin-bottom: 24px; }
.perf__row { display: flex; align-items: center; gap: clamp(16px, 3vw, 32px); }
.perf__val-block { flex: 1; }
.perf__val-label { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-sec); margin-bottom: 4px; }
.perf__val-number { font-size: clamp(2rem, 3.5vw, 3.2rem); font-weight: 700; letter-spacing: var(--ls-tight); color: var(--c-text-sec); line-height: 1; }
.perf__val-unit { font-family: var(--f-mono); font-size: var(--fs-small); color: var(--c-text-sec); margin-top: 4px; }
.perf__arrow { flex-shrink: 0; display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--c-green); }
.perf__arrow svg { width: 28px; height: 28px; }
.perf__arrow span { font-family: var(--f-mono); font-size: 0.6rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--c-green); }
.perf__val-number--output { color: var(--c-green); font-size: clamp(2.4rem, 4vw, 3.8rem); }

.perf__table { width: 100%; border-collapse: collapse; margin-bottom: 28px; font-size: var(--fs-small); }
.perf__table th { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-green); text-align: left; padding: 10px 16px; border-bottom: 1px solid var(--c-border-light); }
.perf__table td { padding: 12px 16px; border-bottom: 1px solid var(--c-border-light); color: var(--c-text-sec); }
.perf__table tr:last-child td { border-bottom: none; }
.perf__table td:first-child { font-weight: 600; color: var(--c-text); }
.perf__table td.val-out { color: var(--c-green); font-weight: 700; }

.perf__pills { display: flex; gap: 12px; flex-wrap: wrap; }
.perf__pill {
  font-family: var(--f-mono); font-size: var(--fs-mono); font-weight: 500;
  letter-spacing: 0.08em; text-transform: uppercase;
  border: 1.5px solid var(--c-green); color: var(--c-text);
  padding: 10px 20px; border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.perf__pill:hover { background: var(--c-green); color: #fff; }
.perf__pill strong { color: var(--c-green); }
.perf__pill:hover strong { color: #fff; }

/* ============================================================
   WORLDWIDE
   ============================================================ */
.world { background: var(--c-dark); color: var(--c-text-on-dark); border-top: 1px solid var(--c-green); }
.world__header { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 80px); align-items: center; margin-bottom: clamp(48px, 6vw, 72px); }
.world__h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: var(--ls-tight); line-height: var(--lh-snug); color: #fff; margin-bottom: 28px; }
.world__creds { display: flex; flex-direction: column; gap: 14px; }
.world__cred { display: flex; align-items: center; gap: 12px; font-size: var(--fs-body-lg); color: var(--c-text-muted); }
.world__cred-dot { width: 6px; height: 6px; background: var(--c-green); border-radius: 50%; flex-shrink: 0; }
.world__stats { display: flex; flex-direction: column; gap: 20px; align-items: flex-end; }
.world__stat { text-align: right; }
.world__stat-num { font-size: clamp(3rem, 5vw, 5rem); font-weight: 700; letter-spacing: var(--ls-tight); line-height: 1; color: #fff; }
.world__stat-label { font-family: var(--f-mono); font-size: var(--fs-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-green); }
.world__countries { margin-bottom: clamp(40px, 5vw, 60px); border: 1px solid var(--c-border); border-radius: var(--radius-card); padding: 28px 32px; background: var(--c-dark-card); }
.world__countries-label { font-family: var(--f-mono); font-size: var(--fs-mono); letter-spacing: 0.12em; text-transform: uppercase; color: var(--c-green); margin-bottom: 16px; }
.world__countries-list { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.world__countries-list span { font-size: var(--fs-small); color: rgba(221,232,213,0.65); }
.world__countries-list .accent { font-size: var(--fs-small); }
.world__intro { font-size: var(--fs-body-lg); color: var(--c-text-muted); line-height: var(--lh-body); max-width: 700px; margin-bottom: clamp(40px, 5vw, 64px); }
.world__map-zone { text-align: center; }
.world__map-img { width: 100%; max-width: 960px; margin: 0 auto; border-radius: var(--radius-card); overflow: hidden; }
.world__map-img img { width: 100%; height: auto; object-fit: contain; display: block; }
.world__caption { margin-top: 24px; font-family: var(--f-mono); font-size: var(--fs-mono); letter-spacing: 0.18em; text-transform: uppercase; color: var(--c-text-muted); }

/* ============================================================
   EMERGENCY / RENTAL
   ============================================================ */
.rental { background: var(--c-surface); }
.rental__urgency {
  font-family: var(--f-mono); font-size: var(--fs-mono); font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: #c0392b;
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px;
}
.rental__urgency::before {
  content: ''; display: inline-block; width: 8px; height: 8px;
  background: #c0392b; border-radius: 50%;
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}
.rental__h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: var(--ls-tight); line-height: var(--lh-snug); color: var(--c-text); max-width: 680px; margin-bottom: clamp(32px, 4vw, 48px); }
.rental__split { display: grid; grid-template-columns: 65fr 35fr; gap: clamp(24px, 4vw, 40px); align-items: start; }
.rental__img-wrap { position: relative; border-radius: var(--radius-card); overflow: hidden; }
.rental__img-wrap img { width: 100%; height: clamp(280px, 35vw, 480px); object-fit: cover; object-position: center; display: block; }
.rental__badge { position: absolute; top: 20px; left: 20px; background: var(--c-green); color: #fff; font-family: var(--f-mono); font-size: var(--fs-mono); font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; padding: 8px 14px; border-radius: 6px; }
.rental__specs { display: flex; flex-direction: column; gap: 14px; }
.rental__spec {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: 10px; padding: 20px 24px; border-left: 3px solid var(--c-green);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.rental__spec:hover { transform: translateX(4px); box-shadow: var(--shadow-card); }
.rental__spec-val { font-size: 1.4rem; font-weight: 700; letter-spacing: var(--ls-tight); color: var(--c-text); margin-bottom: 4px; }
.rental__spec-label { font-family: var(--f-mono); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-sec); }

/* ============================================================
   EASY CLICK
   ============================================================ */
.easyclick { background: var(--c-white); border-bottom: 3px solid var(--c-green); }
.easyclick__header { text-align: center; margin-bottom: clamp(40px, 5vw, 64px); }
.easyclick__h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: var(--ls-tight); line-height: var(--lh-snug); color: var(--c-text); margin-bottom: 12px; }
.easyclick__sub { font-size: var(--fs-body-lg); color: var(--c-text-sec); }
.easyclick__split { display: grid; grid-template-columns: 45fr 55fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.easyclick__img-wrap { border-radius: var(--radius-card); overflow: hidden; padding: 32px; background: var(--c-surface); border: 1px solid var(--c-border-light); }
.easyclick__img-wrap img { width: 100%; height: auto; max-height: 360px; object-fit: contain; display: block; }
.easyclick__features { display: flex; flex-direction: column; gap: 18px; }
.easyclick__feature {
  padding: 20px 24px; border-radius: 10px; border: 1px solid var(--c-border-light);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.easyclick__feature:hover { border-color: var(--c-green); transform: translateX(4px); }
.easyclick__feature-highlight { font-size: 1.05rem; font-weight: 700; color: var(--c-green); letter-spacing: var(--ls-norm); margin-bottom: 4px; }
.easyclick__feature-desc { font-size: var(--fs-small); color: var(--c-text-sec); line-height: 1.55; }

/* ============================================================
   SERVICES
   ============================================================ */
.services { background: var(--c-surface); }
.services__h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: var(--ls-tight); line-height: var(--lh-snug); color: var(--c-text); margin-bottom: clamp(40px, 5vw, 56px); }
.services__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.service-card {
  background: var(--c-white); border: 1px solid var(--c-border-light);
  border-radius: var(--radius-card); padding: 28px 22px;
  display: flex; flex-direction: column;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), border-color 0.25s var(--ease);
  position: relative; overflow: hidden;
}
.service-card::after {
  content: ''; position: absolute; bottom: 0; left: 22px; right: 22px; height: 2px;
  background: var(--c-green); transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover { transform: translateY(-5px); box-shadow: 0 12px 40px rgba(0,0,0,0.09); border-color: var(--c-green); }
.service-card:hover::after { transform: scaleX(1); }
.service-card__num { font-family: var(--f-mono); font-size: clamp(2.5rem, 4vw, 3.8rem); font-weight: 500; color: rgba(95,151,57,0.15); line-height: 1; margin-bottom: 18px; letter-spacing: -0.04em; transition: color 0.25s var(--ease); }
.service-card:hover .service-card__num { color: rgba(95,151,57,0.3); }
.service-card__icon { width: 28px; height: 28px; color: var(--c-green); margin-bottom: 14px; }
.service-card__icon svg { width: 100%; height: 100%; }
.service-card__title { font-size: 0.95rem; font-weight: 700; color: var(--c-text); letter-spacing: var(--ls-norm); margin-bottom: 10px; line-height: 1.3; }
.service-card__desc { font-size: 0.82rem; color: var(--c-text-sec); line-height: 1.6; flex: 1; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { background: var(--c-surface); }
.faq__grid { display: grid; gap: 12px; max-width: 860px; margin: 0 auto; }
.faq__item { background: var(--c-white); border: 1px solid var(--c-border-light); border-radius: 8px; overflow: hidden; }
.faq__item[open] { border-color: rgba(95,151,57,0.3); }
.faq__summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 24px; cursor: pointer; font-weight: 600; font-size: 1rem;
  color: var(--c-text); list-style: none; user-select: none;
}
.faq__summary::-webkit-details-marker { display: none; }
.faq__summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--c-green); flex-shrink: 0; transition: transform 0.25s; }
.faq__item[open] .faq__summary::after { transform: rotate(45deg); }
.faq__answer { padding: 16px 24px 20px; color: var(--c-text-sec); line-height: 1.7; font-size: 0.95rem; border-top: 1px solid var(--c-border-light); }

/* ============================================================
   CONTACT
   ============================================================ */
.contact { background: var(--c-dark); color: var(--c-text-on-dark); position: relative; overflow: hidden; }
.contact__watermark { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; pointer-events: none; overflow: hidden; }
.contact__watermark img { width: min(600px, 80vw); height: auto; object-fit: contain; opacity: 0.04; }
.contact__inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; }
.contact__h2 { font-size: var(--fs-h2); font-weight: 700; letter-spacing: var(--ls-tight); line-height: var(--lh-snug); color: #fff; margin-bottom: 20px; }
.contact__text { font-size: var(--fs-body-lg); color: var(--c-text-muted); line-height: var(--lh-normal); margin-bottom: 44px; }
.contact__email-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-green); color: #fff;
  font-family: var(--f-display); font-size: 1.05rem; font-weight: 600;
  padding: 16px 36px; border-radius: 8px; letter-spacing: -0.01em;
  margin-bottom: 32px;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.contact__email-btn:hover { background: var(--c-green-dim); transform: translateY(-2px); box-shadow: 0 12px 32px rgba(95,151,57,0.35); }
.contact__email-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.contact__details { display: flex; flex-direction: column; align-items: center; gap: 10px; margin-bottom: 8px; }
.contact__detail { display: flex; align-items: center; gap: 8px; font-family: var(--f-mono); font-size: var(--fs-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--c-text-muted); }
.contact__detail svg { width: 14px; height: 14px; color: var(--c-green); flex-shrink: 0; }
.contact__footer { margin-top: clamp(60px, 8vw, 100px); padding-top: 24px; border-top: 1px solid var(--c-border); text-align: center; font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(221,232,213,0.2); }
.contact__footer-links { display: flex; justify-content: center; gap: 20px; margin-bottom: 10px; flex-wrap: wrap; }
.contact__footer-links a { font-family: var(--f-mono); font-size: 0.65rem; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(221,232,213,0.35); transition: color 0.2s; }
.contact__footer-links a:hover { color: var(--c-green); }
.contact__footer-links span { color: rgba(221,232,213,0.15); }

/* ============================================================
   LEGAL PAGES (datenschutz / impressum)
   ============================================================ */
.legal-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 var(--gutter);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--c-dark);
  border-bottom: 1px solid var(--c-border);
}
.legal-nav__back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-on-dark);
  opacity: 0.6;
  transition: opacity 0.2s;
}
.legal-nav__back:hover { opacity: 1; }
.legal-nav__back svg { width: 14px; height: 14px; flex-shrink: 0; }
.legal-nav__right { display: flex; align-items: center; gap: 20px; }

.legal-header {
  background: var(--c-dark);
  padding: 120px var(--gutter) 72px;
  text-align: center;
}
.legal-header__label {
  font-family: var(--f-mono);
  font-size: var(--fs-mono);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-green);
  margin-bottom: 16px;
}
.legal-header__h1 {
  font-family: var(--f-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--c-text-on-dark);
  letter-spacing: var(--ls-tight);
  line-height: var(--lh-tight);
}
.legal-header__sub {
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: var(--fs-mono);
  color: rgba(221,232,213,0.5);
}

.legal-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 80px var(--gutter) 100px;
}

.legal-section {
  margin-bottom: 52px;
}
.legal-section h2 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-text);
  letter-spacing: -0.01em;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-border-light);
  display: flex;
  align-items: center;
  gap: 10px;
}
.legal-section h2::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 16px;
  background: var(--c-green);
  border-radius: 2px;
  flex-shrink: 0;
}
.legal-section p {
  color: var(--c-text-sec);
  font-size: 0.95rem;
  margin-bottom: 10px;
  line-height: var(--lh-normal);
}
.legal-section p:last-child { margin-bottom: 0; }
.legal-section a { color: var(--c-green); text-decoration: underline; text-underline-offset: 3px; transition: color 0.15s; }
.legal-section a:hover { color: var(--c-green-dim); }
.legal-section ul { list-style: disc; padding-left: 24px; margin-bottom: 10px; }
.legal-section ul li { color: var(--c-text-sec); font-size: 0.95rem; margin-bottom: 5px; }

.legal-info-box {
  background: var(--c-surface);
  border-left: 3px solid var(--c-green);
  border-radius: 0 6px 6px 0;
  padding: 16px 20px;
  margin: 16px 0;
}
.legal-info-box p { margin-bottom: 5px; font-size: 0.9rem; }
.legal-info-box p:last-child { margin-bottom: 0; }

.legal-info-grid { display: grid; gap: 0; }
.legal-info-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--c-border-light);
  font-size: 0.95rem;
}
.legal-info-row:last-child { border-bottom: none; }
.legal-info-label {
  font-family: var(--f-mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-sec);
  padding-top: 2px;
}
.legal-info-value { color: var(--c-text); font-weight: 500; }

.legal-footer {
  background: var(--c-dark);
  padding: 32px var(--gutter);
  text-align: center;
  font-family: var(--f-mono);
}
.legal-footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.legal-footer__links a {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(221,232,213,0.35);
  transition: color 0.2s;
}
.legal-footer__links a:hover,
.legal-footer__links a.is-active { color: var(--c-green); }
.legal-footer__links span { color: rgba(221,232,213,0.15); font-size: 0.65rem; }
.legal-footer__copy {
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(221,232,213,0.2);
}

@media (max-width: 768px) {
  .legal-header { padding-top: 100px; padding-bottom: 52px; }
  .legal-content { padding-top: 52px; padding-bottom: 72px; }
  .legal-info-row { grid-template-columns: 1fr; gap: 3px; }
  .legal-nav { height: 64px; }
}

/* ============================================================
   COOKIE CONSENT — floating bottom-right card
   ============================================================ */
@keyframes cb-slide-in {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes cb-slide-out {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(16px); }
}

.consent-banner {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 360px;
  max-width: calc(100vw - 32px);
  z-index: 2000;
}
.consent-banner.cb--enter .cb-card {
  animation: cb-slide-in 0.32s var(--ease) both;
}
.consent-banner.cb--exit .cb-card {
  animation: cb-slide-out 0.28s var(--ease) both;
}
.consent-banner.cb--gone { display: none; }

.cb-card {
  background: var(--c-dark-card);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  padding: 18px 18px 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.55), 0 4px 16px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  gap: 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* Header */
.cb-header {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cb-icon-wrap {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 9px;
  background: rgba(95,151,57,0.15);
  color: var(--c-green);
  box-shadow: 0 0 0 1px rgba(95,151,57,0.25);
}
.cb-title {
  font-family: var(--f-display);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--c-text-on-dark);
  line-height: 1.25;
  flex: 1;
}
.cb-close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  border: none;
  background: transparent;
  color: var(--c-text-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin-left: auto;
}
.cb-close:hover { background: rgba(255,255,255,0.07); color: var(--c-text-on-dark); }

/* Message */
.cb-message {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.55;
}
.cb-link {
  color: var(--c-green);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity 0.15s;
}
.cb-link:hover { opacity: 0.8; }

/* Actions */
.cb-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Buttons */
.cb-btn {
  font-family: var(--f-display);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 7px 14px;
  border-radius: 7px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  transition: background 0.18s, border-color 0.18s, opacity 0.18s;
  white-space: nowrap;
}
.cb-btn--primary {
  background: var(--c-green);
  color: #fff;
}
.cb-btn--primary:hover { background: var(--c-green-dim); }
.cb-btn--ghost {
  background: rgba(255,255,255,0.06);
  color: var(--c-text-on-dark);
  border: 1px solid rgba(255,255,255,0.10);
}
.cb-btn--ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.18); }
.cb-btn--reject {
  background: transparent;
  color: var(--c-text-muted);
  border: 1px solid rgba(255,255,255,0.10);
}
.cb-btn--reject:hover { background: rgba(255,255,255,0.06); color: var(--c-text-on-dark); border-color: rgba(255,255,255,0.18); }
.cb-btn--sm { padding: 5px 10px; }
.cb-chevron { display: inline-flex; align-items: center; opacity: 0.6; }

/* Preferences panel */
.cb-prefs {
  overflow: hidden;
  transition: height 0.28s var(--ease);
}
.cb-prefs[hidden] { display: block; visibility: visible; } /* keep in flow, just height:0 */
.cb-prefs-inner {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 8px;
}

/* Preference row */
.cb-pref-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
}
.cb-pref-check {
  flex-shrink: 0;
  margin-top: 1px;
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1.5px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.05);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.15s, border-color 0.15s;
}
.cb-pref-check:hover:not(:disabled) { border-color: var(--c-green); }
.cb-pref-check--locked {
  background: rgba(95,151,57,0.25);
  border-color: rgba(95,151,57,0.45);
  cursor: not-allowed;
  color: var(--c-green);
}
.cb-pref-check--on {
  background: var(--c-green);
  border-color: var(--c-green);
}
.cb-pref-check svg { transition: opacity 0.12s; }
.cb-pref-info { flex: 1; display: flex; flex-direction: column; gap: 2px; }
.cb-pref-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--c-text-on-dark);
  display: flex;
  align-items: center;
  gap: 5px;
}
.cb-pref-required {
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--c-text-muted);
  font-family: var(--f-mono);
}
.cb-pref-desc {
  font-size: 0.7rem;
  color: var(--c-text-muted);
  line-height: 1.4;
}

/* Prefs footer */
.cb-prefs-footer {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  padding-top: 4px;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .nav__links { display: none; }
  .hamburger { display: flex; }

  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__visual { order: -1; height: 75vw; max-height: 560px; min-height: unset; }
  .hero__visual img { object-position: top center; }
  .hero__visual::after { background: linear-gradient(180deg, transparent 60%, rgba(13,15,11,0.6) 100%); }
  .hero__content { padding: 48px var(--gutter) 64px; }
  .hero__scroll-hint { display: none; }

  .bento__grid { grid-template-columns: repeat(2, 1fr); }
  .bento__card--wide { grid-column: 1 / -1; grid-row: span 1; min-height: 200px; }

  .about__grid { grid-template-columns: 1fr; }
  .about__img-wrap { transform: none; }
  .about__img-wrap img { height: 300px; }
  .about__badge { top: 12px; right: 12px; }

  .tech__split { grid-template-columns: 1fr; }
  .tech__flow-card { grid-template-columns: 1fr; }

  .rcdt__split { grid-template-columns: 1fr; }
  .rcdt__explosion { order: -1; }

  .perf__cards { grid-template-columns: 1fr; }

  .world__header { grid-template-columns: 1fr; }
  .world__stats { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 32px; }
  .world__stat { text-align: left; }

  .rental__split { grid-template-columns: 1fr; }
  .easyclick__split { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .about__features { grid-template-columns: 1fr; }
  .tech__callouts { grid-template-columns: 1fr; }
  .bento__grid { grid-template-columns: 1fr 1fr; }
  .bento__card--wide { grid-column: 1 / -1; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas a { width: 100%; justify-content: center; }
  .perf__pills { flex-direction: column; }
  .perf__pills .perf__pill { width: 100%; text-align: center; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .world__countries-list { gap: 6px 16px; }
  .perf__table { font-size: 0.8rem; }
  .perf__table th,
  .perf__table td { padding: 8px 10px; }
  .consent-banner { bottom: 12px; right: 12px; }
  .cb-actions { flex-wrap: wrap; }
  .cb-btn--primary { flex: 1; justify-content: center; }
}

/* ============================================================
   RESPONSIVE — 420px
   ============================================================ */
@media (max-width: 420px) {
  .bento__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .world__stats { flex-direction: column; }
}
