:root {
  --bg: #070b09;
  --bg-soft: #0b1410;
  --bg-deep: #050806;
  --card: rgba(255,255,255,.07);
  --card-border: rgba(255,255,255,.12);
  --text: #f4f7f5;
  --muted: #a7b4ad;
  --green: #49ff8f;
  --green-dark: #16a956;
  --white: #ffffff;
  --shadow: 0 24px 80px rgba(0,0,0,.45);
  --radius: 28px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

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

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
}

.section { position: relative; }

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  padding: 14px 0;
  transition: .3s ease;
}

.site-header.scrolled {
  background: rgba(8, 12, 10, .76);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,.08);
  padding: 8px 0;
}

.navbar {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 72px;
  flex-shrink: 0;
}

.brand-logo {
  width: clamp(175px, 14vw, 220px);
  max-height: 68px;
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(14px);
}

.nav-links a {
  padding: 10px 16px;
  border-radius: 999px;
  color: rgba(255,255,255,.78);
  font-weight: 600;
  font-size: 13.5px;
  transition: .25s ease;
}

.nav-links a:hover {
  background: rgba(73,255,143,.14);
  color: var(--white);
}

.nav-toggle {
  display: none;
  border: 0;
  cursor: pointer;
}

.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(12,22,17,.92), rgba(5,8,6,.98));
}

.hero-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 70% 45%, rgba(73,255,143,.18), transparent 28%),
    linear-gradient(90deg, rgba(8,12,10,.92), rgba(8,12,10,.54), rgba(8,12,10,.84)),
    linear-gradient(0deg, rgba(8,12,10,1), transparent 30%);
  z-index: -2;
}

.hero-content {
  padding-top: 80px;
  max-width: 700px;
  margin-left: max(calc((100vw - 1180px) / 2), 20px);
  margin-right: auto;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: clamp(10px, 1vw, 11px);
  font-weight: 900;
}

h1, h2, h3, p, ul { margin-top: 0; }

h1 {
  font-size: clamp(34px, 4.4vw, 54px);
  line-height: 1.06;
  letter-spacing: -.04em;
  max-width: 690px;
  margin-bottom: 18px;
}

.hero-text {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: clamp(15px, 1.3vw, 17px);
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}

.btn:hover { transform: translateY(-3px); }
.btn-primary {
  background: var(--green);
  color: #041008;
  box-shadow: 0 18px 42px rgba(73,255,143,.22);
}
.btn-primary:hover { box-shadow: 0 24px 56px rgba(73,255,143,.30); }
.btn-secondary {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-color: rgba(255,255,255,.14);
  backdrop-filter: blur(12px);
}
.full { width: 100%; }

.scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  width: 28px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 999px;
}
.scroll-hint span {
  position: absolute;
  left: 50%;
  top: 10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
  transform: translateX(-50%);
  animation: wheel 1.8s infinite;
}
@keyframes wheel {
  0% { opacity: 1; transform: translate(-50%,0); }
  100% { opacity: 0; transform: translate(-50%,18px); }
}

.logo-section {
  padding: 86px 0 60px;
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
  overflow: hidden;
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 38px;
  max-width: 780px;
}
.section-head.compact { margin-bottom: 26px; }
.section-head h2, .about-text h2, .production-copy h2, .contact-copy h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  line-height: 1.08;
  letter-spacing: -.035em;
  margin-bottom: 0;
}
.section-head p, .about-text p, .production-copy p, .contact-copy p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
}

.logo-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: marquee 26s linear infinite;
}
.logo-item {
  width: 190px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 10px;
}
.logo-item img {
  width: auto;
  height: 46px;
  max-width: 150px;
  max-height: 46px;
  object-fit: contain;
  filter: none;
  opacity: 1;
  transition: transform .25s ease, opacity .25s ease;
}
.logo-item:hover img {
  transform: scale(1.04);
  opacity: 1;
}
@keyframes marquee {
  to { transform: translateX(calc(-50% - 10px)); }
}

.about {
  padding: 115px 0 90px;
  background:
    radial-gradient(circle at 70% 25%, rgba(73,255,143,.10), transparent 30%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.about-grid-clean {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, .95fr);
  gap: 48px;
  align-items: end;
}

.about-text {
  max-width: 680px;
  padding-bottom: 14px;
}

.about-text h2 {
  margin-bottom: 22px;
}

.about-text p {
  max-width: 620px;
  margin-bottom: 16px;
}

.about-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.about-facts div {
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.09);
}

.about-facts strong {
  display: block;
  color: var(--white);
  font-size: 20px;
  margin-bottom: 6px;
}

.about-facts span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.about-portrait {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.portrait-glow {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(73,255,143,.23), transparent 68%);
  filter: blur(12px);
  bottom: 30px;
  z-index: 0;
}

.portrait-free {
  position: relative;
  z-index: 1;
  width: min(420px, 100%);
  max-height: 540px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 28px 54px rgba(0,0,0,.52));
}


.media-card,
.solution-card,
.process-card,
.contact-form,
.reference-card {
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.solutions {
  padding: 110px 0;
  background: linear-gradient(180deg, var(--bg), var(--bg-soft));
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.solution-card {
  padding: 28px;
  transition: .28s ease;
}

.solution-card:hover,
.process-card:hover,
.reference-card:hover {
  transform: translateY(-8px);
  border-color: rgba(73,255,143,.36);
}

.solution-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: rgba(73,255,143,.12);
  color: var(--green);
  font-weight: 900;
  letter-spacing: .08em;
  margin-bottom: 18px;
}

.solution-card h3,
.process-card h3,
.reference-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.solution-card p,
.process-card p {
  color: var(--muted);
  line-height: 1.75;
  margin-bottom: 0;
}

.process {
  padding: 110px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(73,255,143,.12), transparent 24%),
    var(--bg);
}

.process-head {
  margin-bottom: 46px;
}

.process-timeline {
  position: relative;
  display: grid;
  gap: 28px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(73,255,143,.42), rgba(73,255,143,.08));
}

.process-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 100px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
}

.process-col {
  min-width: 0;
}

.process-visual {
  border-radius: 30px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: linear-gradient(145deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  box-shadow: var(--shadow);
}

.process-visual img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center;
}

.process-content-card {
  padding: 30px 30px 32px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow);
  transition: .28s ease;
}

.process-content-card:hover,
.process-visual:hover {
  transform: translateY(-6px);
  border-color: rgba(73,255,143,.36);
}

.process-content-card h3 {
  font-size: 32px;
  line-height: 1.08;
  margin-bottom: 16px;
}

.process-content-card p {
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 0;
}

.process-marker {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.process-marker span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(10,16,13,.95);
  border: 1px solid rgba(73,255,143,.38);
  color: var(--green);
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .08em;
  box-shadow: 0 0 0 8px rgba(6,12,9,.95);
}

.references {
  padding: 110px 0;
  background: var(--bg-soft);
}
.reference-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.reference-card {
  padding: 14px;
  transition: .28s ease;
}
.video-frame {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 20px;
  background: #111;
}
.video-frame video { width: 100%; height: 100%; object-fit: cover; }
.reference-card div:last-child { padding: 18px 8px 6px; }
.reference-card p {
  color: var(--green);
  margin-bottom: 7px;
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .09em;
}
.center { text-align: center; margin-top: 34px; }

.map-section {
  height: 390px;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.map-section iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(1) invert(.92) contrast(.92);
}

.contact {
  padding: 110px 0;
  background:
    radial-gradient(circle at 80% 10%, rgba(73,255,143,.13), transparent 26%),
    var(--bg-deep);
}
.contact-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 40px;
  align-items: start;
}
.contact-details {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}
.contact-details a {
  color: var(--white);
  font-weight: 800;
}
.contact-form {
  padding: 30px;
}
.form-row {
  display: grid;
  gap: 9px;
  margin-bottom: 18px;
}
label { color: rgba(255,255,255,.78); font-weight: 700; font-size: 14px; }
input, textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  color: var(--white);
  border-radius: 18px;
  padding: 16px 17px;
  font: inherit;
  outline: none;
  transition: .22s ease;
}
input:focus, textarea:focus {
  border-color: rgba(73,255,143,.55);
  box-shadow: 0 0 0 4px rgba(73,255,143,.08);
}
textarea { resize: vertical; }

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.captcha-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.text-captcha {
  align-items: stretch;
}

.captcha-question {
  min-height: 58px;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 18px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(0,0,0,.22);
  color: var(--white);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: .02em;
}

.captcha-refresh {
  width: 58px;
  min-width: 58px;
  height: 58px;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  transition: .22s ease;
}

.captcha-refresh:hover {
  border-color: rgba(73,255,143,.5);
  color: var(--green);
  transform: rotate(90deg);
}

.footer {
  padding: 58px 0;
  background: #050806;
  border-top: 1px solid rgba(255,255,255,.08);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, .7fr);
  gap: 34px;
}
.footer-logo { width: 140px; max-height: 40px; object-fit: contain; margin-bottom: 18px; }
.footer p { color: var(--muted); line-height: 1.7; max-width: 420px; }
.footer h4 { margin: 0 0 15px; }
.footer a {
  display: block;
  color: var(--muted);
  margin: 10px 0;
  transition: .2s ease;
}
.footer a:hover { color: var(--green); }

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: .12s; }
.delay-2 { transition-delay: .24s; }

@media (max-width: 1100px) {
  .about-facts {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 980px) {
  .nav-toggle {
    display: grid;
    gap: 6px;
    width: 46px;
    height: 46px;
    place-content: center;
    border: 1px solid rgba(255,255,255,.16);
    border-radius: 50%;
    background: rgba(255,255,255,.08);
  }
  .nav-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: #fff;
  }
  .nav-links {
    position: fixed;
    top: 76px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border-radius: 24px;
    padding: 12px;
  }
  .nav-links.open { display: flex; }
  .nav-links a { text-align: center; }
  .about-grid-clean,
  .production-grid,
  .solution-grid,
  .reference-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .process-timeline::before {
    left: 29px;
    transform: none;
  }
  .process-row,
  .process-row.reverse {
    grid-template-columns: 58px minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }
  .process-row > .process-col,
  .process-row > .process-marker {
    grid-row: auto;
  }
  .process-row > .process-marker {
    grid-column: 1;
    margin-top: 18px;
  }
  .process-row > .process-visual,
  .process-row > .process-content-card {
    grid-column: 2;
  }
  .process-row.reverse > .process-content-card,
  .process-row.reverse > .process-visual,
  .process-row > .process-content-card,
  .process-row > .process-visual {
    grid-column: 2;
  }
  .process-row {
    gap: 16px;
  }
  .about-portrait {
    order: -1;
    min-height: auto;
    justify-content: flex-start;
  }
  .portrait-free {
    max-height: 420px;
  }
  .production-copy {
    padding-left: 0;
  }
}

@media (max-width: 620px) {
  .container, .navbar { width: min(100% - 28px, 1180px); }
  .brand-logo { width: 150px; max-height: 52px; }
  .hero-content { margin-left: 14px; margin-right: 14px; padding-top: 66px; }
  h1 { font-size: clamp(30px, 9vw, 40px); letter-spacing: -.03em; }
  .hero-text { font-size: 15px; }
  .hero-actions { align-items: stretch; }
  .btn { width: 100%; }
  .logo-item { width: 150px; height: 78px; }
  .logo-item img {
    height: 38px;
    max-width: 118px;
    max-height: 38px;
  }
  .about,
  .production-shot,
  .solutions,
  .process,
  .references,
  .contact {
    padding: 82px 0;
  }
  .about-facts {
    grid-template-columns: 1fr;
  }
  .process-content-card {
    padding: 24px;
  }
  .process-content-card h3 {
    font-size: 26px;
  }
  .process-marker span {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }
  .about-portrait {
    justify-content: center;
  }
  .portrait-free {
    max-height: 330px;
  }
  .production-image {
    max-width: none;
    aspect-ratio: 4 / 3;
  }
  .map-section { height: 310px; }
  .solution-card,
  .process-card,
  .contact-form {
    padding: 24px;
  }
}


/* Version 9 additions: scroll-active process */
.process-row .process-marker span {
  opacity: .45;
  color: rgba(255,255,255,.74);
  border-color: rgba(255,255,255,.16);
  background: rgba(9,14,12,.92);
  transition: .35s ease;
}

.process-row .process-content-card,
.process-row .process-visual {
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease, opacity .35s ease;
}

.process-row:not(.is-active) .process-content-card,
.process-row:not(.is-active) .process-visual {
  opacity: .66;
}

.process-row.is-active .process-marker span {
  opacity: 1;
  color: #031108;
  background: var(--green);
  border-color: rgba(73,255,143,.95);
  box-shadow:
    0 0 0 8px rgba(73,255,143,.10),
    0 0 36px rgba(73,255,143,.55),
    0 0 80px rgba(73,255,143,.28);
  transform: scale(1.08);
}

.process-row.is-active .process-content-card,
.process-row.is-active .process-visual {
  opacity: 1;
  border-color: rgba(73,255,143,.42);
  box-shadow:
    0 24px 80px rgba(0,0,0,.45),
    0 0 50px rgba(73,255,143,.07);
}

.process-row.is-active .process-content-card h3 {
  color: var(--white);
}




/* Version 13: stronger headline accents + Top 3 reasons */
.hero-title {
  display: grid;
  gap: 10px;
  max-width: 860px;
}

.hero-title .accent-block {
  display: inline-block;
  width: fit-content;
  padding: .06em .18em .12em;
  background: linear-gradient(90deg, var(--green), #b8ff4f);
  color: #031108;
  line-height: .92;
  text-transform: uppercase;
  letter-spacing: -.055em;
}

.hero-title span:last-child {
  display: block;
  max-width: 790px;
}

.hero-benefits {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  color: var(--white);
  font-weight: 900;
  font-size: clamp(18px, 2vw, 28px);
}

.hero-benefits span {
  position: relative;
  padding-left: 38px;
}

.hero-benefits span::before {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  filter: drop-shadow(0 8px 18px rgba(73,255,143,.24));
}

.hero-benefits span:nth-child(1)::before { content: '🏆'; }
.hero-benefits span:nth-child(2)::before { content: '💚'; }
.hero-benefits span:nth-child(3)::before { content: '🎞️'; }

.text-accent {
  color: var(--green);
}

.headline-accent {
  margin-bottom: 34px;
}

.headline-accent h2 {
  display: grid;
  gap: 10px;
  font-size: clamp(42px, 6vw, 86px);
  line-height: .95;
  letter-spacing: -.055em;
  text-transform: uppercase;
  margin: 0;
}

.headline-accent mark {
  width: fit-content;
  padding: .06em .16em .12em;
  background: linear-gradient(90deg, var(--green), #b8ff4f);
  color: #031108;
}

.top-reasons {
  padding: 110px 0;
  background:
    radial-gradient(circle at 60% 10%, rgba(73,255,143,.09), transparent 24%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.reason-card {
  min-height: 330px;
  padding: 30px;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 20% 0%, rgba(73,255,143,.10), transparent 26%),
    linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  transition: .28s ease;
}

.reason-card:hover {
  transform: translateY(-8px);
  border-color: rgba(73,255,143,.38);
}

.reason-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 18px;
  background: rgba(73,255,143,.10);
  border: 1px solid rgba(73,255,143,.26);
  font-size: 30px;
}

.reason-card h3 {
  font-size: clamp(24px, 2vw, 31px);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.reason-card p {
  color: var(--muted);
  line-height: 1.8;
  font-size: 16px;
  margin-bottom: 0;
}

.btn-outline-accent {
  border-color: var(--green);
  color: var(--green);
  background: rgba(73,255,143,.04);
  box-shadow: 0 0 36px rgba(73,255,143,.08);
}

.btn-outline-accent:hover {
  background: var(--green);
  color: #031108;
}

@media (max-width: 980px) {
  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason-card {
    min-height: auto;
  }

  .headline-accent h2 {
    font-size: clamp(36px, 8vw, 64px);
  }
}

@media (max-width: 620px) {
  .hero-title .accent-block {
    padding: .08em .16em .12em;
  }

  .hero-benefits {
    font-size: 19px;
  }

  .top-reasons {
    padding: 82px 0;
  }

  .reason-card {
    padding: 24px;
  }
}


/* Version 14: softer typography + section accents */
.soft-highlight {
  color: var(--green);
  font-weight: inherit;
}

.hero-benefits {
  gap: 10px;
  font-weight: 650;
  font-size: clamp(16px, 1.45vw, 22px);
  line-height: 1.35;
}

.hero-benefits span {
  padding-left: 34px;
  opacity: .94;
}

.hero-benefits span::before {
  font-size: .95em;
  opacity: .9;
}

.headline-accent h2 {
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.02;
  letter-spacing: -.045em;
}

.headline-accent mark {
  padding: .08em .18em .13em;
}

.reason-card {
  min-height: 300px;
  padding: 28px;
}

.reason-card h3 {
  font-size: clamp(22px, 1.7vw, 27px);
  line-height: 1.18;
  font-weight: 800;
}

.reason-card p {
  font-size: 15.5px;
  line-height: 1.78;
}

.reason-icon {
  width: 52px;
  height: 52px;
  font-size: 25px;
}

.section-head h2,
.about-text h2,
.production-copy h2,
.contact-copy h2 {
  font-weight: 820;
}

.solution-card h3,
.process-content-card h3,
.reference-card h3 {
  font-weight: 800;
}

@media (max-width: 980px) {
  .headline-accent h2 {
    font-size: clamp(32px, 7vw, 52px);
  }
}

@media (max-width: 620px) {
  .hero-benefits {
    font-size: 17px;
  }

  .headline-accent h2 {
    font-size: clamp(30px, 9vw, 42px);
  }
}








/* testimonials stay */
.testimonials {
  padding: 110px 0;
  background:
    radial-gradient(circle at 72% 8%, rgba(73,255,143,.08), transparent 24%),
    linear-gradient(180deg, var(--bg-soft), var(--bg));
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.testimonial-card {
  min-height: 260px;
  display: grid;
  align-content: space-between;
  gap: 26px;
  padding: 28px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
  transition: .28s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(73,255,143,.36);
}

.stars {
  color: #b8ff4f;
  font-size: 24px;
  letter-spacing: .08em;
  line-height: 1;
}

.testimonial-card p {
  color: rgba(255,255,255,.78);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 0;
}

.testimonial-meta {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: end;
}

.testimonial-meta strong {
  color: var(--white);
  font-size: 15px;
  line-height: 1.3;
}

.testimonial-meta span {
  color: var(--muted);
  font-size: 14px;
}

@media (max-width: 1100px) {
  .production-feature,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .production-visual {
    justify-self: start;
    max-width: 620px;
  }

  .production-copy {
    max-width: none;
  }

  .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .production-shot,
  .testimonials {
    padding: 80px 0;
  }

  .production-title-clean {
    font-size: clamp(34px, 9vw, 48px);
    gap: 8px;
  }

  .production-copy p,
  .testimonial-card p {
    font-size: 15.5px;
  }

  .production-image-frame {
    border-radius: 22px;
  }

  .testimonial-card {
    padding: 24px;
  }

  .testimonial-meta {
    display: grid;
  }
}


/* Version 18: production section closer to madgrower.eu style */
.production-shot {
  padding: 96px 0 108px;
  background:
    radial-gradient(circle at 30% 45%, rgba(73,255,143,.08), transparent 25%),
    linear-gradient(180deg, #050806 0%, #070b09 100%);
  overflow: hidden;
}

.production-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, .88fr);
  gap: clamp(42px, 5vw, 76px);
  align-items: center;
}

.mg-style-block {
  max-width: 1240px;
}

.production-copy {
  max-width: 700px;
}

.mg-section-title {
  display: grid;
  gap: 10px;
  margin: 0 0 28px;
  font-size: clamp(46px, 5.25vw, 82px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
  font-weight: 900;
}

.mg-section-title span {
  display: block;
  color: rgba(255,255,255,.95);
}

.mg-section-title mark {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding: .06em .18em .12em;
  background: linear-gradient(90deg, var(--green), #b8ff4f);
  color: #031108;
  line-height: .9;
  border-radius: 0;
}

.production-text {
  max-width: 690px;
  display: grid;
  gap: 22px;
  margin-bottom: 34px;
}

.production-text p {
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 1.32vw, 21px);
  line-height: 1.66;
  margin: 0;
}

.production-text strong {
  color: var(--white);
  font-weight: 850;
}

.production-btn {
  min-height: 58px;
  padding: 0 30px;
  font-size: 18px;
  border-width: 2px;
}

.production-visual {
  justify-self: end;
  width: 100%;
  max-width: 560px;
}

.production-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.13);
  background: rgba(255,255,255,.03);
  box-shadow: 0 34px 90px rgba(0,0,0,.48);
}

.production-image-frame::before,
.production-image-frame::after {
  content: '';
  position: absolute;
  z-index: 2;
  width: 44px;
  height: 44px;
  border-color: #b8ff4f;
  pointer-events: none;
}

.production-image-frame::before {
  top: 22px;
  left: 22px;
  border-top: 4px solid #b8ff4f;
  border-left: 4px solid #b8ff4f;
}

.production-image-frame::after {
  right: 22px;
  bottom: 22px;
  border-right: 4px solid #b8ff4f;
  border-bottom: 4px solid #b8ff4f;
}

.production-image-frame img {
  width: 100%;
  aspect-ratio: 4 / 4.15;
  object-fit: cover;
  object-position: center;
}

@media (max-width: 1100px) {
  .production-feature {
    grid-template-columns: 1fr;
  }

  .production-copy {
    max-width: none;
  }

  .production-visual {
    justify-self: start;
    max-width: 680px;
  }

  .production-image-frame img {
    aspect-ratio: 16 / 10;
  }

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

  .testimonial-card {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .production-shot {
    padding: 82px 0;
  }

  .mg-section-title {
    font-size: clamp(36px, 11vw, 54px);
    gap: 8px;
  }

  .production-text p {
    font-size: 16px;
  }

  .production-btn {
    width: 100%;
    font-size: 16px;
  }

  .production-image-frame {
    border-radius: 22px;
  }

  .production-image-frame::before,
  .production-image-frame::after {
    width: 34px;
    height: 34px;
  }
}





/* Version 22: Impressum page */
.legal-hero {
  min-height: 62vh;
  display: grid;
  align-items: center;
  padding: 130px 0 80px;
  background:
    radial-gradient(circle at 74% 24%, rgba(73,255,143,.13), transparent 26%),
    linear-gradient(180deg, rgba(5,8,6,1), rgba(8,12,10,.96));
  overflow: hidden;
}

.legal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, .7fr);
  gap: 44px;
  align-items: end;
}

.legal-title {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
  font-size: clamp(46px, 6vw, 86px);
  line-height: .92;
  letter-spacing: -.055em;
  text-transform: uppercase;
}

.legal-title span {
  color: rgba(255,255,255,.96);
}

.legal-title mark {
  width: fit-content;
  padding: .06em .18em .12em;
  background: linear-gradient(90deg, var(--green), #b8ff4f);
  color: #031108;
}

.legal-hero-copy p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(255,255,255,.78);
  font-size: 18px;
  line-height: 1.7;
}

.legal-quick-card {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.08), rgba(255,255,255,.035));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.legal-quick-card h2 {
  font-size: 30px;
  margin-bottom: 18px;
}

.legal-quick-card a {
  display: block;
  color: var(--white);
  font-weight: 800;
  margin-top: 12px;
}

.legal-content {
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at 20% 12%, rgba(73,255,143,.08), transparent 24%),
    var(--bg);
}

.legal-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.legal-card {
  padding: 30px;
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.075), rgba(255,255,255,.032));
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: var(--shadow);
}

.legal-wide {
  grid-column: 1 / -1;
}

.legal-card h2 {
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.12;
  letter-spacing: -.025em;
  margin-bottom: 18px;
}

.legal-card p {
  color: rgba(255,255,255,.76);
  line-height: 1.75;
  margin-bottom: 16px;
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card a {
  color: var(--green);
  font-weight: 800;
  word-break: break-word;
}

.legal-info {
  display: grid;
  gap: 18px;
}

.legal-placeholder {
  color: #b8ff4f;
  font-weight: 700;
}

.legal-note {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(73,255,143,.08);
  border: 1px solid rgba(73,255,143,.18);
  font-size: 14px;
}

.legal-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

@media (max-width: 980px) {
  .legal-hero-grid,
  .legal-grid {
    grid-template-columns: 1fr;
  }

  .legal-hero {
    min-height: auto;
  }
}

@media (max-width: 620px) {
  .legal-hero {
    padding: 110px 0 64px;
  }

  .legal-title {
    font-size: clamp(38px, 12vw, 54px);
  }

  .legal-card,
  .legal-quick-card {
    padding: 24px;
  }

  .legal-bottom .btn {
    width: 100%;
  }
}


/* Version 24: Datenschutz + Cookie Banner */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(920px, calc(100% - 48px));
  margin: 0 auto;
  padding: 22px;
  border-radius: 24px;
  background: rgba(5, 8, 6, .92);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 24px 90px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner strong {
  display: block;
  color: var(--white);
  font-size: 18px;
  margin-bottom: 6px;
}

.cookie-banner p {
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

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

.cookie-btn {
  min-height: 46px;
  padding: 0 18px;
}

@media (max-width: 760px) {
  .cookie-banner {
    display: none;
    flex-direction: column;
    align-items: stretch;
    left: 14px;
    right: 14px;
    bottom: 14px;
    width: calc(100% - 28px);
  }

  .cookie-banner.show {
    display: flex;
  }

  .cookie-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-btn {
    width: 100%;
  }
}
