/*
Theme Name: Assani Avicola
Theme URI: https://assani.ro
Author: Assani Imp-Exp S.R.L.
Description: Tema custom pentru Assani Avicola - producator de oua din Romania
Version: 3.3
License: All rights reserved
Text Domain: assani
*/

/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-black: #111111;
  --color-white: #FFFFFF;
  --color-green-deep: #2B6E2B;
  --color-green-mid: #3D8B37;
  --color-green-light: #5BAA55;
  --color-green-pale: #E8F5E9;
  --color-gold: #D4A843;
  --color-gold-light: #F5E6C0;
  --color-red: #E04B3A;
  --color-gray-100: #F5F5F5;
  --color-gray-200: #E0E0E0;
  --color-gray-300: #BDBDBD;
  --color-gray-600: #555555;
  --color-gray-800: #333333;
  --font-heading: 'Bebas Neue', 'Arial Narrow', sans-serif;
  --font-body: 'Barlow', 'Helvetica Neue', sans-serif;
  --section-pad: 100px;
  --container-max: 1200px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--color-black);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul, ol { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-transform: uppercase;
}

h1 { font-size: clamp(3rem, 7vw, 6rem); }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { font-size: 1.05rem; line-height: 1.8; color: var(--color-gray-600); }
.lead { font-size: 1.25rem; line-height: 1.7; color: var(--color-gray-800); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 36px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
  transition: left 0.6s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn svg {
  transition: transform 0.3s ease;
}

.btn:hover svg {
  transform: translateX(4px);
}

.btn-primary {
  background: var(--color-green-deep);
  color: var(--color-white);
  border-color: var(--color-green-deep);
}

.btn-primary:hover {
  background: var(--color-green-mid);
  border-color: var(--color-green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(43, 110, 43, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline:hover {
  background: var(--color-white);
  color: var(--color-black);
  border-color: var(--color-white);
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
}

.btn-gold:hover {
  background: var(--color-gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(212, 168, 67, 0.4);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.site-header.scrolled {
  background: rgba(17, 17, 17, 0.97);
  padding: 10px 0;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
}

.site-logo img.logo-desktop {
  height: 50px;
  width: auto;
  transition: all 0.4s ease;
}

.site-logo img.logo-mobile {
  display: none;
  height: 40px;
  width: auto;
}

.site-header.scrolled .site-logo img.logo-desktop { height: 38px; }

.main-nav ul { display: flex; gap: 4px; }

.main-nav a {
  display: block;
  padding: 10px 18px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-white);
  position: relative;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.main-nav a:hover::after,
.main-nav .current-menu-item a::after,
.main-nav .current_page_item a::after {
  transform: scaleX(1);
  transform-origin: left;
}

.main-nav a:hover { color: var(--color-gold); }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--color-white);
  transition: all 0.3s ease;
  transform-origin: center;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* ============================================
   HERO SECTION (v2)
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  background: var(--color-black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: 0.5;
  transform: scale(1.15);
  transition: transform 8s ease-out, opacity 2s ease;
  will-change: transform;
}

.hero.loaded .hero-bg {
  transform: scale(1.12);
  opacity: 0.55;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(11, 11, 11, 0.85) 0%,
    rgba(43, 110, 43, 0.25) 60%,
    rgba(11, 11, 11, 0.7) 100%
  );
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 6s infinite ease-in-out;
}

@keyframes particleFloat {
  0% { opacity: 0; transform: translateY(0) scale(0); }
  20% { opacity: 0.6; }
  80% { opacity: 0.3; }
  100% { opacity: 0; transform: translateY(-200px) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  opacity: 0;
  transform: translateY(40px);
  animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

@keyframes heroFadeIn {
  to { opacity: 1; transform: translateY(0); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.4);
  color: var(--color-gold);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 28px;
  backdrop-filter: blur(4px);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--color-green-mid);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(61, 139, 55, 0.6); }
  50% { box-shadow: 0 0 0 8px rgba(61, 139, 55, 0); }
}

.hero h1 { color: var(--color-white); margin-bottom: 24px; }
.hero h1 .accent { color: var(--color-gold); display: inline-block; }

.hero .lead {
  color: rgba(255, 255, 255, 0.75);
  max-width: 620px;
  margin-bottom: 40px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3;
  opacity: 0;
  animation: fadeInUp 1s ease 2s forwards;
}

.scroll-indicator span {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.4); opacity: 0.3; }
}

@keyframes fadeInUp {
  to { opacity: 1; }
}

/* ============================================
   STATS BAND
   ============================================ */
.stats-band {
  background: var(--color-green-deep);
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.stats-band::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 50%;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item { position: relative; }

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.15);
}

.stat-item:last-child::after { display: none; }

.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
  font-variant-numeric: tabular-nums;
}

.stat-label {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 500;
}

/* ============================================
   SECTIONS GENERAL
   ============================================ */
.section { padding: var(--section-pad) 0; }
.section-dark { background: var(--color-black); color: var(--color-white); }
.section-dark p { color: rgba(255, 255, 255, 0.7); }
.section-gray { background: var(--color-gray-100); }
.section-green { background: var(--color-green-deep); color: var(--color-white); }
.section-green p { color: rgba(255, 255, 255, 0.8); }

.section-header { margin-bottom: 60px; }
.section-header .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green-mid);
  margin-bottom: 12px;
}
.section-dark .section-header .overline,
.section-green .section-header .overline { color: var(--color-gold); }
.section-header h2 { margin-bottom: 20px; }
.section-header p { max-width: 700px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

.green-bar {
  width: 60px;
  height: 4px;
  background: var(--color-gold);
  margin-bottom: 20px;
  transition: width 0.6s ease;
}

.centered .green-bar { margin-left: auto; margin-right: auto; }

/* Animate green bar on reveal */
.reveal.visible .green-bar { width: 80px; }

/* ============================================
   REVEAL ANIMATIONS
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal.from-left {
  transform: translateX(-50px);
}

.reveal.from-left.visible {
  transform: translateX(0);
}

.reveal.from-right {
  transform: translateX(50px);
}

.reveal.from-right.visible {
  transform: translateX(0);
}

/* Staggered */
.features-grid .reveal:nth-child(1) { transition-delay: 0s; }
.features-grid .reveal:nth-child(2) { transition-delay: 0.15s; }
.features-grid .reveal:nth-child(3) { transition-delay: 0.3s; }

.stats-grid .reveal:nth-child(1) { transition-delay: 0s; }
.stats-grid .reveal:nth-child(2) { transition-delay: 0.12s; }
.stats-grid .reveal:nth-child(3) { transition-delay: 0.24s; }
.stats-grid .reveal:nth-child(4) { transition-delay: 0.36s; }

/* Legacy animation classes (for other pages) */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
.fade-in-left { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-left.visible { opacity: 1; transform: translateX(0); }
.fade-in-right { opacity: 0; transform: translateX(40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-in-right.visible { opacity: 1; transform: translateX(0); }
.stagger-children > *:nth-child(1) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.4s; }

/* ============================================
   FEATURE CARDS (v2)
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature-card {
  background: var(--color-white);
  padding: 44px 36px 36px;
  border-bottom: 4px solid var(--color-green-deep);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
  background: var(--color-green-pale);
  transition: height 0.5s ease;
  z-index: 0;
}

.feature-card:hover::before { height: 100%; }

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
  border-bottom-color: var(--color-gold);
}

.feature-card > * { position: relative; z-index: 1; }

.feature-icon {
  width: 68px;
  height: 68px;
  background: var(--color-green-deep);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--color-white);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
  background: var(--color-gold);
  color: var(--color-black);
  transform: scale(1.08) rotate(-3deg);
}

.feature-card h3 { margin-bottom: 14px; color: var(--color-black); }
.feature-card p { font-size: 0.95rem; flex: 1; }

.feature-card-footer {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 1px solid var(--color-gray-200);
}

.feature-card-footer a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-green-deep);
  transition: all 0.3s ease;
}

.feature-card-footer a svg { transition: transform 0.3s ease; }

.feature-card-footer a:hover {
  color: var(--color-gold);
  gap: 12px;
}

.feature-card-footer a:hover svg { transform: translateX(4px); }

/* ============================================
   IMAGE BREAK (parallax band)
   ============================================ */
.image-break {
  overflow: hidden;
}

.image-break-inner {
  min-height: 400px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  position: relative;
}

.image-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,17,17,0.8), rgba(43,110,43,0.5));
}

.image-break-content {
  max-width: 600px;
}

.image-break-content h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.15;
}

/* ============================================
   CLIENTS CAROUSEL
   ============================================ */
.clients-section {
  padding: 80px 0;
  background: var(--color-white);
  overflow: hidden;
}

/* Carousel container */
.carousel-wrap {
  position: relative;
  overflow: hidden;
  margin-top: 40px;
}

/* Strong fade edges - logos appear/disappear smoothly */
.carousel-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 35%;
  z-index: 2;
  pointer-events: none;
}

.carousel-fade-left {
  left: 0;
  background: linear-gradient(to right, var(--color-white) 40%, transparent);
}

.carousel-fade-right {
  right: 0;
  background: linear-gradient(to left, var(--color-white) 40%, transparent);
}

/* Track: JS handles the infinite scroll animation
   Gap reduced so duplicates never overlap on any screen */
.carousel-track {
  display: flex;
  align-items: center;
  gap: 30px;
  width: max-content;
  padding: 24px 0;
  will-change: transform;
}

.carousel-track:hover {
  /* pause handled by JS */
}

/* Individual logo */
.carousel-item {
  flex-shrink: 0;
  width: 160px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  filter: grayscale(100%) opacity(0.5);
  transition: all 0.4s ease;
}

.carousel-item:hover {
  filter: grayscale(0%) opacity(1);
  transform: scale(1.1);
}

.carousel-item img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  height: auto;
  object-fit: contain;
}

/* Per-logo size tuning so all appear visually equal */
.carousel-item img[alt="Profi"]         { max-height: 55px; }
.carousel-item img[alt="Selgros"]       { max-height: 50px; }
.carousel-item img[alt="Metro"]         { max-height: 55px; }
.carousel-item img[alt="Kaufland"]      { max-height: 50px; max-width: 200px; }
.carousel-item img[alt="Euroglobal"]    { max-height: 65px; }
.carousel-item img[alt="Gruppo Eurovo"] { max-height: 70px; }

/* ============================================
   CTA SPLIT (image + text)
   ============================================ */
.cta-section-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.cta-split-image {
  background-size: cover;
  background-position: center;
  position: relative;
}

.cta-split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 60%, var(--color-black) 100%);
}

.cta-split-content {
  background: var(--color-black);
  display: flex;
  align-items: center;
  padding: 60px;
}

.cta-split-inner { max-width: 500px; }
.cta-split-inner .green-bar { margin-bottom: 20px; }
.cta-split-inner h2 { color: var(--color-white); margin-bottom: 20px; }
.cta-split-inner p { color: rgba(255,255,255,0.7); margin-bottom: 32px; }

/* ============================================
   LEGACY CTA (for other pages)
   ============================================ */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-green-deep) 0%, #1B4D1B 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  border: 2px solid rgba(212, 168, 67, 0.1);
  border-radius: 50%;
}

.cta-section h2 { color: var(--color-white); margin-bottom: 20px; }
.cta-section p { color: rgba(255,255,255,0.8); max-width: 600px; margin: 0 auto 32px; }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-intro-text .lead { margin-bottom: 20px; }

.about-image-block {
  position: relative;
}

.about-image-block .image-mask {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  transform: translateZ(0);
}

.about-image-block .image-mask::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-green-deep);
  z-index: 2;
  transform-origin: right center;
  transform: scaleX(1);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.about-image-block.is-visible .image-mask::before {
  transform: scaleX(0);
}

.about-image-block .image-mask img {
  display: block;
  width: 100%;
  height: 450px;
  object-fit: cover;
  transform: scale(1.15);
  transition: transform 1.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.about-image-block.is-visible .image-mask img {
  transform: scale(1);
}

.about-image-block::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100%;
  height: 100%;
  border: 3px solid var(--color-green-deep);
  z-index: -1;
}

.image-stat-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--color-white);
  padding: 22px 28px;
  border-left: 4px solid var(--color-gold);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  z-index: 3;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 1s, transform 0.6s ease 1s;
}

.about-image-block.is-visible .image-stat-card {
  opacity: 1;
  transform: translateY(0);
}

.image-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.6rem;
  line-height: 1;
  color: var(--color-green-deep);
  letter-spacing: 0.02em;
}

.image-stat-label {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-gray-600);
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.process-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.process-step::after {
  content: '';
  position: absolute;
  right: -16px;
  top: 55px;
  width: 28px;
  height: 2px;
  background: var(--color-green-mid);
}

.process-step:last-child::after { display: none; }

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: var(--color-green-deep);
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  border-radius: 50%;
  margin-bottom: 16px;
}

.process-step h4 { margin-bottom: 10px; }

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

.farm-card {
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.farm-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.farm-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.farm-card-img .farm-tag {
  position: absolute;
  bottom: 16px;
  left: 16px;
  padding: 6px 14px;
  background: var(--color-green-deep);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.farm-card-body { padding: 28px; }
.farm-card-body h3 { margin-bottom: 8px; font-size: 1.3rem; }
.farm-card-body .farm-location { font-size: 0.85rem; color: var(--color-green-mid); font-weight: 600; margin-bottom: 12px; }

/* ============================================
   ABOUT PAGE - CREATIVE EXTRAS
   ============================================ */

/* Big counters strip */
.counters-strip {
  padding: 70px 0;
  background: var(--color-black);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}

.counters-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(43, 110, 43, 0.25), transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(212, 168, 67, 0.15), transparent 50%);
  pointer-events: none;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
  z-index: 1;
}

.counter-block {
  text-align: center;
  padding: 20px 12px;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
}

.counter-block:first-child { border-left: none; }

.counter-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}

.counter-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Timeline process - replaces .process-steps for despre-noi */
.timeline-process {
  position: relative;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.timeline-line {
  position: absolute;
  top: 35px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  z-index: 0;
}

.timeline-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, var(--color-green-mid), var(--color-gold));
  transition: width 0.4s ease;
}

.timeline-step {
  position: relative;
  text-align: center;
  z-index: 1;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.timeline-step.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.timeline-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--color-black);
  border: 2px solid var(--color-green-mid);
  color: var(--color-gold);
  font-family: var(--font-heading);
  font-size: 1.6rem;
  border-radius: 50%;
  margin-bottom: 24px;
  position: relative;
  transition: transform 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.timeline-step.is-visible .timeline-step-num {
  animation: stepPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes stepPop {
  0%   { transform: scale(0.4); }
  60%  { transform: scale(1.15); }
  100% { transform: scale(1); }
}

.timeline-step:hover .timeline-step-num {
  background: var(--color-green-deep);
  border-color: var(--color-gold);
  transform: scale(1.08);
}

.timeline-step-content h4 {
  color: var(--color-white);
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.timeline-step-content p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
}

/* Values marquee */
.values-marquee {
  background: var(--color-green-deep);
  padding: 28px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 35s linear infinite;
}

.marquee-track span {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: var(--color-white);
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.marquee-track i {
  color: var(--color-gold);
  font-style: normal;
  font-size: 1.8rem;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Reveal-words: heading words animate in */
.reveal-words {
  overflow: hidden;
}

.reveal-words .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.reveal-words .word-inner {
  display: inline-block;
  transform: translateY(110%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-words.is-visible .word-inner {
  transform: translateY(0);
}

/* ============================================
   TECHNOLOGY PAGE
   ============================================ */
.tech-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.tech-card {
  display: flex;
  gap: 24px;
  padding: 36px;
  background: var(--color-white);
  border-left: 4px solid var(--color-green-deep);
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.06);
  transition: var(--transition);
}

.tech-card:hover {
  border-left-color: var(--color-gold);
  transform: translateX(4px);
}

.tech-card-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--color-green-pale);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.tech-card h3 { margin-bottom: 8px; font-size: 1.3rem; }

.info-boxes {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.info-box {
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.info-box.green-bg { background: var(--color-green-deep); color: var(--color-white); }
.info-box.green-bg p { color: rgba(255, 255, 255, 0.85); }
.info-box.dark-bg { background: var(--color-black); color: var(--color-white); }
.info-box.dark-bg p { color: rgba(255, 255, 255, 0.75); }
.info-box h3 { margin-bottom: 16px; }
.info-box-icon { font-size: 2.5rem; margin-bottom: 20px; display: block; }

/* ============================================
   PRODUCTS PAGE
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  align-items: start;
}

.product-card {
  padding: 48px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  position: relative;
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--color-green-deep), var(--color-gold));
}

.product-badge {
  display: inline-block;
  padding: 6px 16px;
  background: var(--color-green-pale);
  color: var(--color-green-deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.product-card h3 { margin-bottom: 16px; }

.sizes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.size-item {
  text-align: center;
  padding: 28px 16px;
  background: var(--color-green-deep);
  color: var(--color-white);
}

.size-letter {
  font-family: var(--font-heading);
  font-size: 3rem;
  color: var(--color-gold);
  line-height: 1;
  margin-bottom: 8px;
}

.size-weight { font-size: 0.85rem; opacity: 0.8; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-areas:
    "email form"
    "rest  form";
  gap: 32px 60px;
  align-items: start;
}
.contact-email-card { grid-area: email; }
.contact-info-rest  { grid-area: rest; }
.contact-form-wrap  { grid-area: form; }

@media (max-width: 768px) {
  .contact-layout {
    grid-template-columns: 1fr;
    grid-template-areas:
      "email"
      "form"
      "rest";
    gap: 32px;
  }
}

.contact-info-card {
  padding: 32px;
  background: var(--color-gray-100);
  margin-bottom: 24px;
}

.contact-info-card h4 { margin-bottom: 12px; color: var(--color-green-deep); }
.contact-info-card p, .contact-info-card a { font-size: 0.95rem; }
.contact-info-card a:hover { color: var(--color-green-deep); }

.farm-contact { padding: 20px 0; border-bottom: 1px solid var(--color-gray-200); }
.farm-contact:last-child { border-bottom: none; }
.farm-contact h4 { font-size: 1.1rem; margin-bottom: 6px; }
.farm-contact .address { font-size: 0.9rem; color: var(--color-gray-600); }
.farm-contact .phone { font-size: 0.9rem; color: var(--color-green-deep); font-weight: 600; }

.farm-contact .address-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  color: var(--color-gray-600);
  transition: var(--transition);
  margin-bottom: 4px;
}

.farm-contact .address-link:hover {
  color: var(--color-green-deep);
}

.farm-contact .address-link svg {
  color: var(--color-green-mid);
  flex-shrink: 0;
}

.farm-contact .farm-type-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-green-mid);
  margin-top: 4px;
}

/* Farm card map link (despre noi page) */
.farm-map-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-green-deep);
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--color-gray-200);
  transition: var(--transition);
}

.farm-map-link:hover {
  color: var(--color-gold);
  gap: 12px;
}

.farm-map-link svg {
  transition: transform 0.3s ease;
}

.farm-map-link:hover svg {
  transform: scale(1.2);
}

/* Maps grid (contact page) */
.maps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.map-card {
  background: var(--color-white);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: var(--transition);
}

.map-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.map-embed {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: var(--color-gray-200);
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  display: block;
}

.map-card-info {
  padding: 20px 24px;
}

.map-card-info h4 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}

.farm-type-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-green-pale);
  color: var(--color-green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}

.farm-type-badge.badge-tineret {
  background: var(--color-gold-light);
  color: var(--color-gray-800);
}

.map-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--color-green-deep);
  transition: var(--transition);
}

.map-directions:hover {
  color: var(--color-gold);
}

.contact-form-wrap {
  background: var(--color-white);
  padding: 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.contact-form-wrap h3 { margin-bottom: 28px; }

/* Form overrides (WPForms, CF7, Everest Forms) */
.contact-form-wrap .wpforms-container input[type="text"],
.contact-form-wrap .wpforms-container input[type="email"],
.contact-form-wrap .wpforms-container input[type="tel"],
.contact-form-wrap .wpforms-container textarea,
.contact-form-wrap .wpcf7 input[type="text"],
.contact-form-wrap .wpcf7 input[type="email"],
.contact-form-wrap .wpcf7 input[type="tel"],
.contact-form-wrap .wpcf7 textarea,
.contact-form-wrap .everest-forms input[type="text"],
.contact-form-wrap .everest-forms input[type="email"],
.contact-form-wrap .everest-forms input[type="tel"],
.contact-form-wrap .everest-forms textarea {
  width: 100%;
  padding: 14px 18px !important;
  border: 2px solid var(--color-gray-200) !important;
  font-family: var(--font-body) !important;
  font-size: 1rem !important;
  transition: var(--transition);
  background: var(--color-gray-100) !important;
  border-radius: 0 !important;
}

.contact-form-wrap input:focus,
.contact-form-wrap textarea:focus {
  border-color: var(--color-green-deep) !important;
  outline: none;
  background: var(--color-white) !important;
}

.contact-form-wrap .wpforms-submit,
.contact-form-wrap .wpcf7 input[type="submit"],
.contact-form-wrap .everest-forms button[type="submit"],
.contact-form-wrap .everest-forms input[type="submit"],
.contact-form-wrap .evf-submit-container button {
  background: var(--color-green-deep) !important;
  color: var(--color-white) !important;
  padding: 16px 40px !important;
  font-family: var(--font-body) !important;
  font-weight: 600 !important;
  font-size: 0.9rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: pointer !important;
  transition: var(--transition) !important;
  width: auto !important;
}

.contact-form-wrap .wpforms-submit:hover,
.contact-form-wrap .wpcf7 input[type="submit"]:hover,
.contact-form-wrap .everest-forms button[type="submit"]:hover,
.contact-form-wrap .evf-submit-container button:hover {
  background: var(--color-green-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(43, 110, 43, 0.3);
}

/* Everest Forms specific overrides */
.contact-form-wrap .everest-forms .evf-field-container .evf-frontend-row {
  margin-bottom: 0 !important;
}

.contact-form-wrap .everest-forms label {
  font-family: var(--font-body) !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: var(--color-gray-800) !important;
  letter-spacing: 0.03em !important;
  margin-bottom: 6px !important;
}

.contact-form-wrap .everest-forms .evf-field {
  margin-bottom: 20px !important;
}

/* ============================================
   PAGE HERO (internal pages)
   ============================================ */
.page-hero {
  padding: 180px 0 80px;
  background: var(--color-black);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-green-deep), var(--color-gold), var(--color-green-deep));
}

.page-hero h1 { color: var(--color-white); margin-bottom: 16px; }
.page-hero .lead { color: rgba(255, 255, 255, 0.7); max-width: 700px; }
.page-hero .overline {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 16px;
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal-content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 1.4rem;
  color: var(--color-black);
}

.legal-content h3:first-child { margin-top: 0; }
.legal-content p { margin-bottom: 14px; }
.legal-content table { font-family: var(--font-body); }

.legal-content code {
  background: var(--color-gray-100);
  padding: 2px 8px;
  border-radius: 3px;
  font-size: 0.85em;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: var(--color-black);
  color: var(--color-white);
  padding: 24px 0;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.visible { transform: translateY(0); }

.cookie-banner-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-banner-text { flex: 1; min-width: 280px; }
.cookie-banner-text p { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; margin: 0; }
.cookie-banner-text a { color: var(--color-gold); text-decoration: underline; }

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

.cookie-btn {
  padding: 12px 28px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
}

.cookie-btn-accept { background: var(--color-green-deep); color: var(--color-white); border-color: var(--color-green-deep); }
.cookie-btn-accept:hover { background: var(--color-green-mid); }
.cookie-btn-reject { background: transparent; color: var(--color-white); border-color: rgba(255,255,255,0.3); }
.cookie-btn-reject:hover { border-color: var(--color-white); }

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-black);
  color: var(--color-white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-col h4 { font-size: 1rem; letter-spacing: 0.15em; margin-bottom: 24px; color: var(--color-gold); }
.footer-logo img { height: 60px; margin-bottom: 20px; }
.footer-col p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); line-height: 1.7; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.9rem; color: rgba(255, 255, 255, 0.6); }
.footer-col ul a:hover { color: var(--color-gold); padding-left: 4px; }

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-contact-item .icon { color: var(--color-green-mid); flex-shrink: 0; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer-bottom a { color: rgba(255, 255, 255, 0.4); }
.footer-bottom a:hover { color: var(--color-gold); }

/* ============================================
   DESPRE NOI - ANIMATED PAGE
   ============================================ */

/* HERO */
.dn-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #0f1f0f 0%, #1a3a1a 50%, #0f1f0f 100%);
  overflow: hidden;
  color: var(--color-white);
}

.dn-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212, 168, 67, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212, 168, 67, 0.06) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  pointer-events: none;
}

.dn-hero-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.dn-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
  animation: dnOrbFloat 20s ease-in-out infinite;
}

.dn-orb-1 {
  width: 500px;
  height: 500px;
  background: var(--color-green-mid);
  top: -150px;
  left: -150px;
  animation-delay: 0s;
}

.dn-orb-2 {
  width: 400px;
  height: 400px;
  background: var(--color-gold);
  bottom: -100px;
  right: -100px;
  opacity: 0.25;
  animation-delay: -7s;
}

.dn-orb-3 {
  width: 350px;
  height: 350px;
  background: var(--color-green-light);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.3;
  animation-delay: -14s;
}

@keyframes dnOrbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(80px, -60px) scale(1.1); }
  66% { transform: translate(-60px, 40px) scale(0.95); }
}

.dn-orb-3 {
  animation-name: dnOrbFloatCenter;
}

@keyframes dnOrbFloatCenter {
  0%, 100% { transform: translate(-50%, -50%) scale(1); }
  50% { transform: translate(-50%, -50%) scale(1.15); }
}

.dn-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

.dn-hero .overline {
  color: var(--color-gold);
}

.dn-hero-title {
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: 0.95;
  margin: 16px 0 24px;
  color: var(--color-white);
}

.dn-word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  margin-right: 0.25em;
}

.dn-word span {
  display: inline-block;
  transform: translateY(110%);
  animation: dnWordRise 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.dn-word:nth-child(1) span { animation-delay: 0.1s; }
.dn-word:nth-child(2) span { animation-delay: 0.25s; }
.dn-word:nth-child(3) span { animation-delay: 0.4s; }

.dn-word-accent span {
  color: var(--color-gold);
}

@keyframes dnWordRise {
  to { transform: translateY(0); }
}

.dn-hero .lead {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  font-size: 1.2rem;
  line-height: 1.7;
}

.dn-fade-up {
  opacity: 0;
  transform: translateY(30px);
  animation: dnFadeUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: 0.2s;
}
.dn-fade-up-d3 { animation-delay: 0.7s; }
.dn-fade-up-d4 { animation-delay: 0.9s; }

@keyframes dnFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.dn-hero-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 40px;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.dn-hero-meta strong {
  display: block;
  font-size: 1.6rem;
  font-family: var(--font-heading);
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.dn-meta-sep {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

.dn-hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  z-index: 2;
}

.dn-hero-scroll span {
  position: absolute;
  top: 6px;
  left: 50%;
  width: 3px;
  height: 8px;
  background: var(--color-gold);
  border-radius: 2px;
  transform: translateX(-50%);
  animation: dnScrollDot 2s ease-in-out infinite;
}

@keyframes dnScrollDot {
  0%, 100% { opacity: 1; transform: translate(-50%, 0); }
  50% { opacity: 0.3; transform: translate(-50%, 14px); }
}

/* MARQUEE STRIP */
.dn-marquee-wrap {
  background: var(--color-black);
  color: var(--color-white);
  padding: 24px 0;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
  border-bottom: 1px solid rgba(212, 168, 67, 0.2);
  overflow: hidden;
}

.dn-marquee {
  position: relative;
  overflow: hidden;
}

.dn-marquee-track {
  display: flex;
  align-items: center;
  gap: 40px;
  width: max-content;
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  will-change: transform;
}

.dn-marquee-track span {
  display: inline-block;
}

.dn-marquee-track .dn-dot {
  color: var(--color-gold);
  font-size: 0.6rem;
}

/* INTRO + STATS */
.dn-intro-section {
  background: var(--color-white);
}

.dn-intro {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.dn-intro-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.15;
  margin: 16px 0 24px;
}

.dn-intro-text .lead {
  margin-bottom: 20px;
  font-weight: 500;
}

.dn-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.dn-stat-card {
  background: linear-gradient(135deg, var(--color-green-pale) 0%, #f0f9f0 100%);
  padding: 32px 24px;
  border-radius: 16px;
  border: 1px solid rgba(43, 110, 43, 0.1);
  position: relative;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.dn-stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dn-stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(43, 110, 43, 0.15);
}

.dn-stat-card:hover::before {
  transform: scaleY(1);
}

.dn-stat-num {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1;
  color: var(--color-green-deep);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

.dn-stat-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--color-gray-600);
}

/* TIMELINE - process closed loop */
.dn-process-section {
  position: relative;
}

.dn-timeline {
  position: relative;
  max-width: 800px;
  margin: 60px auto 0;
  padding-left: 60px;
}

.dn-timeline-line {
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 23px;
  width: 2px;
  background: rgba(255, 255, 255, 0.1);
}

.dn-timeline-progress {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg, var(--color-gold) 0%, var(--color-green-light) 100%);
  transition: height 0.2s linear;
  box-shadow: 0 0 20px rgba(212, 168, 67, 0.5);
}

.dn-tl-step {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding-bottom: 60px;
}

.dn-tl-step:last-child {
  padding-bottom: 0;
}

.dn-tl-marker {
  position: absolute;
  left: -60px;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-black);
  border: 2px solid rgba(212, 168, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-gold);
  z-index: 2;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.dn-tl-step.dn-active .dn-tl-marker {
  background: var(--color-gold);
  color: var(--color-black);
  border-color: var(--color-gold);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.6);
  transform: scale(1.1);
}

.dn-tl-content h4 {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}

.dn-tl-content p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* DN REVEAL animation - drives by IntersectionObserver in JS */
.dn-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1), transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.dn-reveal.dn-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  :root { --section-pad: 70px; }

  .features-grid,
  .farms-grid,
  .tech-partners-grid,
  .info-boxes,
  .products-grid { grid-template-columns: 1fr 1fr; }

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

  .about-intro { grid-template-columns: 1fr; gap: 40px; }

  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2)::after { display: none; }

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

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
  .stat-item:nth-child(2)::after { display: none; }

  .cta-section-split { grid-template-columns: 1fr; }
  .cta-split-image { min-height: 300px; }
  .cta-split-image::after { background: linear-gradient(180deg, transparent 40%, var(--color-black) 100%); }
}

@media (max-width: 768px) {
  :root { --section-pad: 50px; }

  .menu-toggle { display: flex; }

  .site-logo img.logo-desktop { height: 40px; }
  .site-logo img.logo-mobile { display: none; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 340px;
    height: 100vh;
    height: 100dvh;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 100px 32px 32px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
  }

  .main-nav.active { right: 0; }

  .main-nav ul { flex-direction: column; gap: 0; }

  .main-nav a {
    padding: 18px 0;
    font-size: 1.1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .main-nav a::after { display: none; }

  .features-grid,
  .farms-grid,
  .tech-partners-grid,
  .info-boxes,
  .products-grid,
  .maps-grid { grid-template-columns: 1fr; }

  .process-steps { grid-template-columns: 1fr; }
  .process-step::after { display: none; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .sizes-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .about-image-block::after { display: none; }

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; justify-content: center; }

  .scroll-indicator { display: none; }

  .image-break-inner {
    background-attachment: scroll;
    min-height: 300px;
    padding: 60px 0;
  }

  .cta-split-content { padding: 40px 24px; }

  .cookie-banner-inner { flex-direction: column; text-align: center; }
  .cookie-banner-buttons { width: 100%; justify-content: center; }

  .carousel-item { width: 80px; height: 60px; }
  .carousel-item img { max-height: 40px; max-width: 80px; }
  .carousel-item img[alt="Kaufland"]      { max-height: 42px; max-width: 80px; }
  .carousel-item img[alt="Gruppo Eurovo"] { max-height: 48px; }
  .carousel-item img[alt="Euroglobal"]    { max-height: 44px; }
  .carousel-track { gap: 16px; }
  .carousel-fade { width: 12%; }
  .carousel-fade-left { background: linear-gradient(to right, var(--color-white) 20%, transparent); }
  .carousel-fade-right { background: linear-gradient(to left, var(--color-white) 20%, transparent); }

  /* Despre Noi mobile */
  .dn-hero { min-height: 70vh; padding: 100px 0 60px; }
  .dn-hero-title { font-size: clamp(2.4rem, 11vw, 4rem); }
  .dn-hero .lead { font-size: 1rem; }
  .dn-hero-meta { gap: 14px; margin-top: 28px; font-size: 0.7rem; }
  .dn-hero-meta strong { font-size: 1.2rem; }
  .dn-meta-sep { display: none; }
  .dn-hero-scroll { display: none; }
  .dn-orb-1 { width: 280px; height: 280px; }
  .dn-orb-2 { width: 240px; height: 240px; }
  .dn-orb-3 { width: 220px; height: 220px; }

  .dn-marquee-track { font-size: 1rem; gap: 24px; }
  .dn-marquee-wrap { padding: 18px 0; }

  .dn-intro { grid-template-columns: 1fr; gap: 40px; }
  .dn-stats-grid { gap: 12px; }
  .dn-stat-card { padding: 22px 18px; border-radius: 12px; }
  .dn-stat-num { font-size: 2.2rem; }
  .dn-stat-label { font-size: 0.7rem; }

  .dn-timeline { padding-left: 50px; margin-top: 40px; }
  .dn-timeline-line { left: 18px; }
  .dn-tl-marker { left: -50px; width: 38px; height: 38px; font-size: 0.9rem; }
  .dn-tl-step { gap: 20px; padding-bottom: 40px; }
  .dn-tl-content h4 { font-size: 1.2rem; }
}

@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr; }
  .stat-item::after { display: none; }
  .sizes-grid { grid-template-columns: 1fr 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .hero h1 { font-size: 2.5rem; }
  .hero .lead { font-size: 1.05rem; }
  .hero-badge { font-size: 0.7rem; padding: 8px 16px; }
}

/* ============================================
   DESPRE NOI v2 - additional sections
   (farms sweep, pillars, fiscal, magnetic CTA)
   ============================================ */

/* ---- FARMS SWEEP ROWS ---- */
.dn-farms-section { position: relative; overflow: hidden; }

.dn-farms-section .dn-bg-deco {
  position: absolute;
  top: 10%;
  right: -200px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.06) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.dn-farms-section .container { position: relative; z-index: 1; }

.dn-farms-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 50px;
}

.dn-farm-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 36px;
  padding: 36px 40px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.5s ease;
}

.dn-farm-row::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.dn-farm-row::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(43, 110, 43, 0.04) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none;
}

.dn-farm-row:hover {
  transform: translateX(8px);
  border-color: var(--color-green-mid);
  box-shadow: 0 24px 50px rgba(43, 110, 43, 0.12);
}

.dn-farm-row:hover::before { transform: scaleY(1); }
.dn-farm-row:hover::after  { transform: translateX(100%); }

.dn-farm-num {
  font-family: var(--font-heading);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  opacity: 0.9;
}

.dn-farm-info h3 {
  font-size: 1.7rem;
  margin: 8px 0 4px;
  color: var(--color-black);
}

.dn-farm-info p {
  margin-top: 12px;
  color: var(--color-gray-600);
  font-size: 0.96rem;
  line-height: 1.65;
  max-width: 560px;
}

.dn-farm-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}

.dn-tag-green {
  background: var(--color-green-pale);
  color: var(--color-green-deep);
}

.dn-tag-gold {
  background: var(--color-gold-light);
  color: #8a6c1c;
}

.dn-farm-county {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-green-mid);
}

.dn-farm-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1.5px solid var(--color-green-deep);
  color: var(--color-green-deep);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 4px;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.dn-farm-link svg {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.dn-farm-link:hover {
  background: var(--color-green-deep);
  color: var(--color-white);
}

.dn-farm-link:hover svg {
  transform: translateX(6px);
}

/* clip-path sweep reveal driven by IntersectionObserver */
.dn-sweep {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  -webkit-clip-path: inset(0 100% 0 0);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1),
              -webkit-clip-path 1.1s cubic-bezier(0.77, 0, 0.175, 1),
              transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.4s ease,
              box-shadow 0.5s ease;
}

.dn-sweep.dn-swept {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

/* ---- PILLARS ---- */
.dn-pillars-section { overflow: hidden; }

.dn-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 40px;
}

.dn-pillar {
  position: relative;
  padding: 48px 44px 44px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.dn-pillar-light {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
}

.dn-pillar-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.dn-pillar-dark p,
.dn-pillar-dark .dn-pillar-overline { color: rgba(255, 255, 255, 0.7); }

.dn-pillar-visual {
  margin-bottom: 36px;
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dn-pillar-overline {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-green-mid);
  margin-bottom: 14px;
}

.dn-pillar h3 {
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  margin-bottom: 18px;
  font-family: var(--font-heading);
}

.dn-pillar-dark h3 { color: var(--color-white); }

.dn-pillar p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin-bottom: 22px;
}

.dn-pillar-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.dn-pillar-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--color-gray-600);
  line-height: 1.5;
}

.dn-pillar-list li span {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-green-deep);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  margin-top: 1px;
}

/* Year bridge visual (light pillar) */
.dn-year-bridge {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.dn-yb-year {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  color: var(--color-green-deep);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.dn-yb-from { transition-delay: 0.1s; }
.dn-yb-to {
  color: var(--color-gold);
  transition-delay: 0.7s;
}

.dn-pillar.dn-visible .dn-yb-year {
  opacity: 1;
  transform: translateY(0);
}

.dn-yb-line {
  position: relative;
  flex: 1;
  max-width: 140px;
  height: 2px;
  background: var(--color-gray-200);
  border-radius: 2px;
  overflow: hidden;
}

.dn-yb-line-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: linear-gradient(90deg, var(--color-green-deep), var(--color-gold));
  transition: width 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}

.dn-pillar.dn-visible .dn-yb-line-fill { width: 100%; }

/* Dot grid visual (dark pillar) */
.dn-dotgrid-wrap {
  position: relative;
  width: 100%;
  max-width: 320px;
}

.dn-dotgrid {
  width: 100%;
  height: auto;
  display: block;
}

.dn-dot-px {
  fill: rgba(212, 168, 67, 0.18);
  opacity: 0;
  transition: fill 0.4s ease;
}

.dn-pillar.dn-visible .dn-dot-px {
  animation: dnDotPop 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes dnDotPop {
  0%   { opacity: 0; transform: scale(0.4); transform-origin: center; }
  60%  { opacity: 1; }
  100% { opacity: 1; transform: scale(1); fill: rgba(212, 168, 67, 0.55); }
}

.dn-dotgrid-num {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 3rem;
  letter-spacing: 0.04em;
  color: var(--color-white);
  text-shadow: 0 0 24px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease 1.1s, transform 0.6s ease 1.1s;
}

.dn-dotgrid-num span {
  color: var(--color-gold);
  font-size: 0.7em;
  margin-left: 2px;
}

.dn-pillar.dn-visible .dn-dotgrid-num {
  opacity: 1;
  transform: scale(1);
}

/* ---- FISCAL ---- */
.dn-fiscal-section { padding-top: 40px; padding-bottom: 80px; }

.dn-fiscal {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 44px 32px;
  border-top: 1px solid var(--color-gray-200);
  border-bottom: 1px solid var(--color-gray-200);
}

.dn-fiscal-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-green-mid);
  margin-bottom: 14px;
}

.dn-fiscal-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin-bottom: 24px;
}

.dn-fiscal-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

.dn-fiscal-meta > div {
  text-align: left;
  font-size: 0.95rem;
  color: var(--color-gray-600);
}

.dn-fiscal-meta span {
  display: block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-green-mid);
  margin-bottom: 4px;
}

/* ---- MAGNETIC BUTTON ---- */
.dn-magnetic {
  display: inline-block;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dn-mag-inner {
  display: inline-block;
  will-change: transform;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   DESPRE NOI v2 - RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .dn-pillars { grid-template-columns: 1fr; gap: 20px; }
  .dn-pillar { padding: 40px 32px 36px; }

  .dn-farm-row {
    grid-template-columns: 60px 1fr;
    gap: 24px;
    padding: 28px 28px;
  }
  .dn-farm-num { font-size: 2.8rem; }
  .dn-farm-info h3 { font-size: 1.45rem; }
  .dn-farm-link {
    grid-column: 1 / -1;
    justify-self: start;
    margin-top: 8px;
    padding: 12px 18px;
    font-size: 0.78rem;
  }
}

@media (max-width: 768px) {
  .dn-farms-stack { gap: 14px; margin-top: 36px; }

  .dn-farm-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 22px 20px;
    border-radius: 4px;
  }
  .dn-farm-row:hover { transform: none; }
  .dn-farm-num { font-size: 2.2rem; }
  .dn-farm-info h3 { font-size: 1.25rem; margin: 6px 0 2px; }
  .dn-farm-info p {
    margin-top: 10px;
    font-size: 0.9rem;
    line-height: 1.55;
  }
  .dn-farm-tag { font-size: 0.62rem; padding: 4px 10px; }
  .dn-farm-county { font-size: 0.72rem; }
  .dn-farm-link {
    margin-top: 6px;
    padding: 10px 16px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }
  .dn-farms-section .dn-bg-deco {
    width: 300px;
    height: 300px;
    right: -150px;
  }

  .dn-pillar { padding: 32px 22px 30px; border-radius: 6px; }
  .dn-pillar-visual { min-height: 90px; margin-bottom: 24px; }
  .dn-pillar h3 { font-size: 1.35rem; margin-bottom: 14px; }
  .dn-pillar p { font-size: 0.92rem; margin-bottom: 18px; }
  .dn-pillar-list li { font-size: 0.88rem; gap: 10px; }
  .dn-pillar-list li span { width: 20px; height: 20px; font-size: 0.65rem; }

  .dn-yb-year { font-size: 1.9rem; }
  .dn-yb-line { max-width: 90px; }

  .dn-dotgrid-wrap { max-width: 240px; }
  .dn-dotgrid-num { font-size: 2.3rem; }

  .dn-fiscal-section { padding-bottom: 56px; }
  .dn-fiscal { padding: 32px 16px; }
  .dn-fiscal-name { font-size: 1.4rem; margin-bottom: 18px; }
  .dn-fiscal-meta { gap: 18px; }
  .dn-fiscal-meta > div { font-size: 0.88rem; }

  /* disable magnetic on touch */
  .dn-magnetic, .dn-mag-inner { transform: none !important; }
}

@media (max-width: 480px) {
  .dn-farm-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 22px 18px;
  }
  .dn-farm-num {
    font-size: 1.6rem;
    opacity: 0.7;
  }
  .dn-farm-info h3 { font-size: 1.2rem; }
}

/* respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dn-sweep,
  .dn-yb-year,
  .dn-yb-line-fill,
  .dn-dot-px,
  .dn-dotgrid-num,
  .dn-magnetic,
  .dn-mag-inner {
    transition: none !important;
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    clip-path: none !important;
    -webkit-clip-path: none !important;
    width: 100% !important;
  }
}

/* ==========================================================================
   TEHNOLOGIE PAGE - dedicated styles (th-*)
   Partners grid, automation flow, energy cards, split section
   ========================================================================== */

/* ---------- PARTNERS GRID ---------- */
.th-partners-section { position: relative; overflow: hidden; }

.th-partners-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 60px;
}

.th-partner {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 4px;
  padding: 42px 36px 36px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              border-color 0.5s ease;
}

.th-partner::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--color-green-deep);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.th-partner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(212, 168, 67, 0.06));
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.th-partner:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.10);
  border-color: var(--color-green-deep);
}

.th-partner:hover::before { transform: scaleX(1); }
.th-partner:hover::after  { opacity: 1; }

.th-partner-mark {
  position: absolute;
  top: 28px;
  right: 32px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-green-pale);
  color: var(--color-green-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.9rem;
  letter-spacing: 0;
  transition: background 0.5s ease, color 0.5s ease, transform 0.5s ease;
}

.th-partner:hover .th-partner-mark {
  background: var(--color-gold);
  color: var(--color-black);
  transform: rotate(-8deg) scale(1.05);
}

.th-partner-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.95rem;
  color: var(--color-gold);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
}

.th-partner h3 {
  font-size: 1.7rem;
  margin: 0 0 12px;
  color: var(--color-black);
  position: relative;
  z-index: 1;
}

.th-partner p {
  margin: 0 0 22px;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  position: relative;
  z-index: 1;
}

.th-partner-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 7px 14px;
  background: var(--color-green-pale);
  color: var(--color-green-deep);
  border-radius: 999px;
  position: relative;
  z-index: 1;
}

/* ---------- AUTOMATION FLOW ---------- */
.th-flow-section { position: relative; }

.th-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  gap: 18px;
  align-items: stretch;
  margin-top: 60px;
}

.th-flow-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 4px;
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  transition: background 0.5s ease, border-color 0.5s ease, transform 0.5s ease;
}

.th-flow-step:hover {
  background: rgba(212, 168, 67, 0.06);
  border-color: rgba(212, 168, 67, 0.4);
  transform: translateY(-4px);
}

.th-flow-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 18px;
  color: var(--color-gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.th-flow-icon svg {
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.th-flow-step:hover .th-flow-icon svg {
  transform: scale(1.1) rotate(-4deg);
}

.th-flow-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 0.9rem;
  letter-spacing: 0.15em;
  color: var(--color-gold);
  margin-bottom: 8px;
}

.th-flow-step h4 {
  color: var(--color-white);
  font-size: 1.4rem;
  margin: 0 0 10px;
}

.th-flow-step p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0;
}

.th-flow-arrow {
  align-self: center;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), rgba(212, 168, 67, 0.2));
  position: relative;
}

.th-flow-arrow::after {
  content: "";
  position: absolute;
  right: -2px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-top: 2px solid var(--color-gold);
  border-right: 2px solid var(--color-gold);
  transform: translateY(-50%) rotate(45deg);
}

/* ---------- ENERGY CARDS ---------- */
.th-energy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.th-energy-card {
  position: relative;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 6px;
  padding: 44px 32px 36px;
  text-align: center;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              border-color 0.5s ease;
}

.th-energy-card::before {
  content: "";
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--color-green-deep);
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.th-energy-solar::before { background: var(--color-gold); }

.th-energy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.08);
  border-color: var(--color-green-deep);
}

.th-energy-solar:hover { border-color: var(--color-gold); }
.th-energy-card:hover::before { transform: scaleX(1); transform-origin: left center; }

.th-energy-visual {
  width: 96px;
  height: 96px;
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.th-energy-visual svg {
  width: 100%;
  height: 100%;
}

.th-energy-solar .th-energy-visual svg g {
  transform-origin: 50px 50px;
  animation: th-spin 18s linear infinite;
}

@keyframes th-spin {
  to { transform: rotate(360deg); }
}

.th-energy-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--color-green-deep);
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.th-energy-solar .th-energy-num { color: var(--color-gold); }

.th-energy-card h4 {
  font-size: 1.4rem;
  color: var(--color-black);
  margin: 0 0 12px;
}

.th-energy-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--color-gray-600);
  margin: 0;
}

/* ---------- SPLIT SECTION (FNC + LOGISTICA) ---------- */
.th-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.th-split-card {
  padding: 48px 42px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.th-split-green {
  background: var(--color-green-deep);
  color: var(--color-white);
}

.th-split-green .overline { color: var(--color-gold); }
.th-split-green h3 { color: var(--color-white); }
.th-split-green p { color: rgba(255, 255, 255, 0.85); }

.th-split-dark {
  background: var(--color-black);
  color: var(--color-white);
}

.th-split-dark .overline { color: var(--color-gold); }
.th-split-dark h3 { color: var(--color-white); }
.th-split-dark p { color: rgba(255, 255, 255, 0.78); }

.th-split-icon {
  width: 56px;
  height: 56px;
  color: var(--color-gold);
  margin-bottom: 22px;
}

.th-split-icon svg { width: 100%; height: 100%; }

.th-split-card h3 {
  font-size: 1.9rem;
  margin: 8px 0 18px;
}

.th-split-card p {
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 24px;
}

.th-split-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.th-split-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 0.98rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.92);
}

.th-split-list li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }

.th-split-list li span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--color-gold);
  color: var(--color-black);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .th-partners-grid { gap: 22px; }
  .th-partner { padding: 36px 28px 30px; }
  .th-partner-mark { width: 48px; height: 48px; font-size: 1.6rem; top: 22px; right: 24px; }
  .th-partner h3 { font-size: 1.5rem; }

  .th-flow {
    grid-template-columns: 1fr;
    gap: 14px;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
  .th-flow-arrow {
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, var(--color-gold), rgba(212, 168, 67, 0.2));
    justify-self: center;
  }
  .th-flow-arrow::after {
    right: 50%;
    top: auto;
    bottom: -2px;
    transform: translateX(50%) rotate(135deg);
  }

  .th-energy-grid { grid-template-columns: 1fr; gap: 18px; max-width: 520px; margin-left: auto; margin-right: auto; }
  .th-energy-card { padding: 36px 28px 30px; }

  .th-split { grid-template-columns: 1fr; gap: 18px; }
  .th-split-card { padding: 38px 30px; }
}

@media (max-width: 768px) {
  .th-partners-grid { grid-template-columns: 1fr; gap: 18px; margin-top: 40px; }
  .th-partner { padding: 32px 24px 28px; }
  .th-partner-mark { width: 44px; height: 44px; font-size: 1.5rem; top: 20px; right: 20px; }
  .th-partner h3 { font-size: 1.4rem; padding-right: 56px; }
  .th-partner p { font-size: 0.94rem; }
  .th-partner-tag { font-size: 0.72rem; padding: 6px 12px; }

  .th-flow { margin-top: 40px; }
  .th-flow-step { padding: 26px 20px 22px; }
  .th-flow-icon { width: 52px; height: 52px; margin-bottom: 14px; }
  .th-flow-step h4 { font-size: 1.25rem; }
  .th-flow-step p { font-size: 0.88rem; }

  .th-energy-card { padding: 32px 24px 26px; }
  .th-energy-visual { width: 80px; height: 80px; margin-bottom: 18px; }
  .th-energy-num { font-size: 2.6rem; }
  .th-energy-card h4 { font-size: 1.25rem; }
  .th-energy-card p { font-size: 0.9rem; }

  .th-split-card { padding: 32px 24px; }
  .th-split-card h3 { font-size: 1.55rem; }
  .th-split-card p { font-size: 0.96rem; }
  .th-split-list li { font-size: 0.92rem; }
}

@media (max-width: 480px) {
  .th-partner { padding: 28px 20px 24px; }
  .th-partner-mark { width: 40px; height: 40px; font-size: 1.35rem; top: 18px; right: 18px; }
  .th-partner h3 { font-size: 1.25rem; padding-right: 48px; }

  .th-energy-num { font-size: 2.3rem; }
  .th-split-card h3 { font-size: 1.4rem; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .th-energy-solar .th-energy-visual svg g {
    animation: none !important;
  }
  .th-partner,
  .th-partner-mark,
  .th-flow-step,
  .th-flow-icon svg,
  .th-energy-card {
    transition: none !important;
    transform: none !important;
  }
}

/* ==========================================================================
   PRODUSE PAGE - dedicated styles (pr-*)
   Hero hatching egg, type stamps, sizes rail, private label carton, CTA
   ========================================================================== */

/* ---------- SHARED REVEAL ---------- */
.pr-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.pr-reveal.pr-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HERO ---------- */
.pr-hero {
  position: relative;
  padding: 160px 0 110px;
  min-height: 580px;
  overflow: hidden;
  background: linear-gradient(180deg, #ffffff 0%, #F9FCF9 60%, #F2FAF2 100%);
}
.pr-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pr-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.pr-particle {
  position: absolute;
  bottom: -20px;
  border-radius: 50%;
  background: var(--color-gold);
  opacity: 0;
  animation-name: prParticleRise;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  will-change: transform, opacity;
}
@keyframes prParticleRise {
  0%   { transform: translateY(0) translateX(0); opacity: 0; }
  10%  { opacity: 0.55; }
  50%  { transform: translateY(-50vh) translateX(10px); }
  90%  { opacity: 0.35; }
  100% { transform: translateY(-110vh) translateX(-6px); opacity: 0; }
}
.pr-hero-egg {
  position: absolute;
  right: -30px;
  top: 50%;
  width: 500px;
  max-width: 48%;
  height: auto;
  transform: translateY(-50%);
  animation: prHeroFloat 7s ease-in-out infinite;
}
@keyframes prHeroFloat {
  0%, 100% { transform: translateY(-50%); }
  50%      { transform: translateY(calc(-50% - 14px)); }
}
.pr-hero-egg-stroke {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: prHeroStroke 2.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s forwards;
}
@keyframes prHeroStroke {
  to { stroke-dashoffset: 0; }
}
.pr-hero-egg-fill {
  opacity: 0;
  animation: prHeroFill 1.2s ease-out 1.4s forwards;
}
@keyframes prHeroFill {
  to { opacity: 1; }
}

.pr-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}
.pr-hero-overline,
.pr-hero-title,
.pr-hero-lead {
  opacity: 0;
  transform: translateX(-30px);
  animation: prHeroTextIn 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.pr-hero-overline { animation-delay: 0.5s; display: inline-block; }
.pr-hero-title    { animation-delay: 0.7s; }
.pr-hero-lead     { animation-delay: 0.9s; font-size: 1.2rem; line-height: 1.7; color: var(--color-gray-600); margin-top: 20px; max-width: 560px; }
@keyframes prHeroTextIn {
  to { opacity: 1; transform: translateX(0); }
}

/* ---------- TYPES (Cod 2 / Cod 3) ---------- */
.pr-types-section { position: relative; overflow: hidden; }
.pr-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  margin-top: 60px;
}
.pr-type {
  position: relative;
  padding: 50px 40px 46px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease,
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.pr-type::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pr-type-green::before { background: radial-gradient(circle at 50% 0%, rgba(43, 110, 43, 0.07), transparent 60%); }
.pr-type-gold::before  { background: radial-gradient(circle at 50% 0%, rgba(212, 168, 67, 0.09), transparent 60%); }

.pr-type:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}
.pr-type-green:hover { border-color: var(--color-green-mid); }
.pr-type-gold:hover  { border-color: var(--color-gold); }

.pr-type-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 320px;
  margin-bottom: 26px;
}
.pr-type-egg {
  width: 220px;
  height: auto;
  display: block;
  position: relative;
  z-index: 0;
}
.pr-type-fill {
  transform: translateY(320px);
  transition: transform 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.pr-visible .pr-type-fill { transform: translateY(0); }

.pr-stamp {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  padding: 10px 22px;
  border-radius: 4px;
  border: 3px solid;
  background: rgba(255, 255, 255, 0.92);
  transform: translate(-50%, -50%) rotate(-28deg) scale(2.6);
  opacity: 0;
  z-index: 2;
  transition: transform 0.55s cubic-bezier(0.34, 1.56, 0.64, 1) 1s,
              opacity 0.25s ease 1s;
  pointer-events: none;
}
.pr-visible .pr-stamp {
  opacity: 0.95;
  transform: translate(-50%, -50%) rotate(-12deg) scale(1);
}
.pr-stamp-green { color: var(--color-green-deep); border-color: var(--color-green-deep); }
.pr-stamp-gold  { color: #8a6a1f; border-color: var(--color-gold); }

.pr-type-body h3 {
  font-size: 1.55rem;
  color: var(--color-black);
  margin-bottom: 14px;
  text-align: center;
}
.pr-type-body p {
  color: var(--color-gray-600);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 10px;
}
.pr-type-body p:last-child { margin-bottom: 0; }

/* ---------- SIZES RAIL ---------- */
.pr-sizes-section { position: relative; overflow: hidden; }
.pr-sizes-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 60px;
  align-items: end;
  justify-items: center;
}
.pr-size {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}
.pr-size-egg-wrap {
  width: 140px;
  height: 190px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 18px;
}
.pr-size-egg {
  width: calc(140px * var(--pr-scale, 1));
  height: auto;
  transform: scale(0) translateY(20px);
  transform-origin: center bottom;
  transition: transform 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pr-visible .pr-size-egg { transform: scale(1) translateY(0); }

.pr-size-letter {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  line-height: 1;
  margin-bottom: 8px;
}
.pr-size-weight {
  font-family: var(--font-body);
  font-size: 0.98rem;
  color: rgba(255, 255, 255, 0.78);
  letter-spacing: 0.02em;
}
.pr-size-prefix {
  font-style: italic;
  margin-right: 4px;
  opacity: 0.7;
}

.pr-sizes-line {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.12);
  margin-top: 42px;
  border-radius: 2px;
  overflow: hidden;
}
.pr-sizes-line-fill {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, var(--color-gold) 15%, var(--color-gold) 85%, transparent 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.6s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.pr-sizes-section.pr-line-active .pr-sizes-line-fill { transform: scaleX(1); }

/* ---------- PRIVATE LABEL + ORGANIC ---------- */
.pr-label-section { position: relative; }
.pr-label-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.pr-label-main {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: 8px;
  padding: 48px 44px;
}
.pr-label-main h2 {
  margin: 10px 0 16px;
  color: var(--color-black);
}
.pr-label-main .lead {
  font-size: 1.1rem;
  margin-bottom: 14px;
  color: var(--color-gray-800);
}
.pr-label-main > p {
  color: var(--color-gray-600);
  line-height: 1.7;
}

.pr-carton-wrap {
  position: relative;
  margin-top: 32px;
  max-width: 440px;
}
.pr-carton {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.08));
}
.pr-carton-label {
  position: absolute;
  top: 6.25%;
  left: 16.67%;
  width: 66.67%;
  height: 21.25%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  pointer-events: none;
}
.pr-carton-brand {
  position: absolute;
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(0.95rem, 2.2vw, 1.45rem);
  letter-spacing: 0.14em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(100%);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.pr-carton-brand.pr-carton-brand-active {
  opacity: 1;
  transform: translateY(0);
}
.pr-carton-brand.pr-carton-brand-leaving {
  opacity: 0;
  transform: translateY(-100%);
}

.pr-organic {
  background: var(--color-green-deep);
  color: #fff;
  border-radius: 8px;
  padding: 44px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.pr-organic::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(212, 168, 67, 0.18), transparent 60%);
  pointer-events: none;
}
.pr-organic > * { position: relative; z-index: 1; }
.pr-organic-svg {
  width: 96px;
  height: 96px;
  margin-bottom: 20px;
}
.pr-organic-ground {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1s ease-out 0.2s;
}
.pr-organic-stem {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1s ease-out 0.7s;
}
.pr-organic-leaf {
  opacity: 0;
  transform: scale(0);
  transform-origin: 60px 65px;
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.pr-organic-leaf-l { transition-delay: 1.3s; }
.pr-organic-leaf-r { transition-delay: 1.5s; }

.pr-visible .pr-organic-ground,
.pr-visible .pr-organic-stem { stroke-dashoffset: 0; }
.pr-visible .pr-organic-leaf { opacity: 1; transform: scale(1); }

.pr-organic h3 {
  font-size: 1.55rem;
  color: #fff;
  margin-bottom: 12px;
}
.pr-organic p {
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  font-size: 0.98rem;
}

/* ---------- CTA ---------- */
.pr-cta {
  padding: 110px 0;
  background: linear-gradient(135deg, var(--color-black) 0%, #1a2e1a 100%);
  color: #fff;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pr-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 30%, rgba(43, 110, 43, 0.28), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(212, 168, 67, 0.16), transparent 50%);
  pointer-events: none;
}
.pr-cta .container { position: relative; z-index: 1; }
.pr-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 18px;
}
.pr-cta p {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 34px;
}
.pr-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 38px;
  background: var(--color-gold);
  color: var(--color-black);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
  transition: color 0.45s ease, transform 0.45s ease, box-shadow 0.45s ease;
}
.pr-cta-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--color-green-deep);
  transform: translateX(-101%);
  transition: transform 0.55s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 0;
}
.pr-cta-btn > * { position: relative; z-index: 1; }
.pr-cta-btn:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(43, 110, 43, 0.3);
}
.pr-cta-btn:hover::before { transform: translateX(0); }
.pr-cta-btn-arrow {
  display: inline-block;
  transition: transform 0.45s ease;
}
.pr-cta-btn:hover .pr-cta-btn-arrow { transform: translateX(6px); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .pr-hero-egg { width: 420px; right: -80px; }
  .pr-types-grid { gap: 24px; }
  .pr-label-grid { grid-template-columns: 1fr; gap: 24px; }
  .pr-carton-wrap { max-width: 480px; }
}

@media (max-width: 768px) {
  .pr-hero { padding: 110px 0 80px; min-height: auto; }
  .pr-hero-egg { width: 340px; right: -120px; opacity: 0.35; }
  .pr-hero-inner { max-width: 100%; }
  .pr-hero-lead { font-size: 1.05rem; }

  .pr-types-grid { grid-template-columns: 1fr; gap: 22px; margin-top: 44px; }
  .pr-type { padding: 40px 26px 36px; }
  .pr-type-visual { height: 280px; margin-bottom: 22px; }
  .pr-type-egg { width: 190px; }
  .pr-type-body h3 { font-size: 1.35rem; }

  .pr-sizes-rail { gap: 10px; margin-top: 44px; }
  .pr-size-egg-wrap { width: 90px; height: 140px; margin-bottom: 14px; }
  .pr-size-egg { width: calc(90px * var(--pr-scale, 1)); }
  .pr-size-letter { font-size: 1.9rem; }
  .pr-size-weight { font-size: 0.85rem; }
  .pr-sizes-line { margin-top: 32px; }

  .pr-label-main { padding: 36px 26px; }
  .pr-organic { padding: 36px 26px; }

  .pr-cta { padding: 80px 0; }
  .pr-cta p { font-size: 1rem; }
  .pr-cta-btn { padding: 16px 30px; font-size: 1rem; }
}

@media (max-width: 480px) {
  .pr-hero-egg { width: 260px; right: -140px; opacity: 0.22; }
  .pr-type-visual { height: 240px; }
  .pr-type-egg { width: 160px; }
  .pr-stamp { font-size: 1.15rem; padding: 8px 16px; }

  .pr-sizes-rail { gap: 6px; }
  .pr-size-egg-wrap { width: 64px; height: 100px; margin-bottom: 10px; }
  .pr-size-egg { width: calc(64px * var(--pr-scale, 1)); }
  .pr-size-letter { font-size: 1.4rem; }
  .pr-size-weight { font-size: 0.72rem; }
  .pr-size-prefix { display: block; margin-right: 0; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .pr-reveal,
  .pr-hero-egg,
  .pr-hero-egg-stroke,
  .pr-hero-egg-fill,
  .pr-hero-overline,
  .pr-hero-title,
  .pr-hero-lead,
  .pr-particle,
  .pr-type-fill,
  .pr-size-egg,
  .pr-sizes-line-fill,
  .pr-organic-ground,
  .pr-organic-stem,
  .pr-organic-leaf,
  .pr-cta-btn,
  .pr-carton-brand {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
  .pr-stamp {
    animation: none !important;
    transition: none !important;
    opacity: 0.95 !important;
    transform: translate(-50%, -50%) rotate(-12deg) !important;
  }
  .pr-sizes-line-fill { transform: scaleX(1) !important; }
  .pr-carton-brand { opacity: 0 !important; }
  .pr-carton-brand.pr-carton-brand-active { opacity: 1 !important; }
}


/* ==========================================================================
   HOMEPAGE - dedicated styles (hp-*)
   Hero parallax + corner brackets + word stagger, stats with fill bars,
   feature cards with ghost numbers + stroke-draw icon circles, image
   break with gold line + mask reveal, CTA split with sliding mask.
   ========================================================================== */

/* ---------- SHARED REVEAL ---------- */
.hp-reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1),
              transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-reveal.hp-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- HERO ---------- */
.hp-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #fff;
}
.hp-hero-bg-wrap {
  position: absolute;
  top: -12%;
  left: 0;
  right: 0;
  bottom: -12%;
  overflow: hidden;
  z-index: 0;
  will-change: transform;
}
.hp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  animation: hpKenBurns 22s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes hpKenBurns {
  0%   { transform: scale(1) translate(0, 0); }
  100% { transform: scale(1.08) translate(-1.5%, -1.5%); }
}
.hp-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.78) 100%),
    radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.35) 100%);
  z-index: 1;
}

/* corner brackets */
.hp-corner {
  position: absolute;
  width: 80px;
  height: 80px;
  z-index: 2;
  pointer-events: none;
}
.hp-corner-tl { top: 30px; left: 30px; }
.hp-corner-tr { top: 30px; right: 30px; }
.hp-corner-bl { bottom: 30px; left: 30px; }
.hp-corner-br { bottom: 30px; right: 30px; }
.hp-corner path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: hpCornerDraw 1.5s cubic-bezier(0.77, 0, 0.175, 1) 0.5s forwards;
}
@keyframes hpCornerDraw { to { stroke-dashoffset: 0; } }

.hp-hero-inner {
  position: relative;
  z-index: 3;
  max-width: 860px;
  padding: 80px 24px;
}

.hp-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(91, 170, 85, 0.55);
  border-radius: 60px;
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transform: translateX(-30px);
  animation: hpBadgeIn 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
  margin-bottom: 32px;
}
@keyframes hpBadgeIn { to { opacity: 1; transform: translateX(0); } }
.hp-badge-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--color-green-light);
  box-shadow: 0 0 0 0 rgba(91, 170, 85, 0.7);
  animation: hpDotPulse 2s ease-out infinite;
}
@keyframes hpDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(91, 170, 85, 0.7); }
  70%  { box-shadow: 0 0 0 10px rgba(91, 170, 85, 0); }
  100% { box-shadow: 0 0 0 0 rgba(91, 170, 85, 0); }
}

.hp-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7.5vw, 6rem);
  line-height: 1.05;
  color: #fff;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
.hp-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(42px);
  animation: hpWordIn 0.95s cubic-bezier(0.16, 1, 0.3, 1) var(--hp-delay, 0s) forwards;
}
@keyframes hpWordIn { to { opacity: 1; transform: translateY(0); } }

.hp-accent-wrap {
  position: relative;
  padding: 0 0.08em;
}
.hp-accent {
  color: var(--color-green-light);
  position: relative;
  z-index: 1;
}
.hp-accent-line {
  position: absolute;
  left: 0;
  bottom: 0.08em;
  height: 8px;
  width: 100%;
  background: var(--color-green-light);
  opacity: 0.35;
  transform: scaleX(0);
  transform-origin: left center;
  animation: hpAccentLine 1.2s cubic-bezier(0.77, 0, 0.175, 1) 1.7s forwards;
  z-index: 0;
}
@keyframes hpAccentLine { to { transform: scaleX(1); } }

.hp-hero-lead {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  max-width: 640px;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
  animation: hpFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.65s forwards;
}
.hp-hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
  animation: hpFadeUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 1.85s forwards;
}
@keyframes hpFadeUp { to { opacity: 1; transform: translateY(0); } }

/* ---------- BUTTONS ---------- */
.hp-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 34px;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}
.hp-btn > * { position: relative; z-index: 1; }
.hp-btn svg { transition: transform 0.4s ease; }
.hp-btn:hover svg { transform: translateX(5px); }

.hp-btn-gold {
  background: var(--color-gold);
  color: var(--color-black);
}
.hp-btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 70%;
  height: 100%;
  background: linear-gradient(120deg, transparent 15%, rgba(255, 255, 255, 0.55) 50%, transparent 85%);
  transition: left 0.75s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 0;
}
.hp-btn-gold:hover::before { left: 130%; }
.hp-btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(212, 168, 67, 0.35);
}

.hp-btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.5);
}
.hp-btn-outline:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  transform: translateY(-3px);
}

/* ---------- SCROLL INDICATOR ---------- */
.hp-scroll-ind {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: hpFadeIn 1s ease 2.2s forwards;
}
@keyframes hpFadeIn { to { opacity: 1; } }
.hp-scroll-rail {
  position: relative;
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.25);
  overflow: hidden;
}
.hp-scroll-dot {
  position: absolute;
  left: -2px;
  top: 0;
  width: 5px;
  height: 14px;
  background: var(--color-green-light);
  border-radius: 3px;
  animation: hpScrollDot 2.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
}
@keyframes hpScrollDot {
  0%   { top: -14px; opacity: 0; }
  25%  { opacity: 1; }
  75%  { opacity: 1; }
  100% { top: 60px; opacity: 0; }
}
.hp-scroll-text {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* ---------- STATS ---------- */
.hp-stats {
  padding: 80px 0;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-gray-200);
}
.hp-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.hp-stat {
  padding: 30px 36px;
  border-right: 1px solid var(--color-gray-200);
}
.hp-stat:last-child { border-right: none; }
.hp-stat-num {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5vw, 3.8rem);
  line-height: 1;
  color: var(--color-green-deep);
  margin-bottom: 12px;
  letter-spacing: 0.02em;
}
.hp-stat-label {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gray-600);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hp-stat-bar {
  height: 3px;
  background: var(--color-gray-200);
  border-radius: 3px;
  overflow: hidden;
}
.hp-stat-bar-fill {
  display: block;
  height: 100%;
  width: 100%;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 1.8s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.hp-stat.hp-visible .hp-stat-bar-fill { transform: scaleX(1); }

/* ---------- WHY (feature cards) ---------- */
.hp-why { position: relative; overflow: hidden; }
.hp-why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 54px;
}
.hp-card {
  position: relative;
  background: var(--color-white);
  padding: 56px 38px 38px;
  border-radius: 6px;
  border: 1px solid var(--color-gray-200);
  overflow: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
              box-shadow 0.5s ease,
              border-color 0.4s ease,
              opacity 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(43, 110, 43, 0.14);
  border-color: var(--color-green-mid);
}
.hp-card-num {
  position: absolute;
  top: 18px;
  right: 28px;
  font-family: var(--font-heading);
  font-size: 4.6rem;
  line-height: 1;
  color: var(--color-green-pale);
  z-index: 0;
  letter-spacing: 0.02em;
  transition: color 0.45s ease, transform 0.5s ease;
}
.hp-card:hover .hp-card-num {
  color: rgba(212, 168, 67, 0.32);
  transform: scale(1.08);
}
.hp-card-icon {
  position: relative;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-green-deep);
  margin-bottom: 26px;
  z-index: 1;
}
.hp-card-circle {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.hp-card-circle circle {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.hp-card.hp-visible .hp-card-circle circle { stroke-dashoffset: 0; }
.hp-card:hover .hp-card-circle { transform: rotate(20deg); }
.hp-card-icon-svg { position: relative; z-index: 1; }

.hp-card h3 {
  font-size: 1.4rem;
  color: var(--color-black);
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}
.hp-card p {
  color: var(--color-gray-600);
  line-height: 1.75;
  font-size: 0.98rem;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}
.hp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--color-green-deep);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  position: relative;
  z-index: 1;
  padding-bottom: 4px;
}
.hp-card-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--color-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.175, 1);
}
.hp-card-link:hover::after { transform: scaleX(1); }
.hp-card-link svg { transition: transform 0.3s ease; }
.hp-card-link:hover svg { transform: translateX(4px); }

/* ---------- IMAGE BREAK ---------- */
.hp-break {
  position: relative;
  height: 520px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hp-break-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
  transition: transform 1.6s cubic-bezier(0.77, 0, 0.175, 1);
}
.hp-break.hp-visible .hp-break-img { transform: scale(1); }
.hp-break-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.42) 55%, rgba(0, 0, 0, 0.2) 100%);
}
.hp-break-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 40px;
}
.hp-break-line {
  display: block;
  flex-shrink: 0;
  width: 4px;
  height: 140px;
  background: var(--color-gold);
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1) 0.3s;
}
.hp-break.hp-visible .hp-break-line { transform: scaleY(1); }
.hp-break-text {
  max-width: 760px;
  opacity: 0;
  transform: translateX(-24px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s,
              transform 1s cubic-bezier(0.16, 1, 0.3, 1) 0.95s;
}
.hp-break.hp-visible .hp-break-text { opacity: 1; transform: translateX(0); }
.hp-break-text h2 {
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 3rem);
  margin-top: 12px;
  line-height: 1.22;
}

/* ---------- CLIENTS (wraps existing carousel) ---------- */
.hp-clients-section {
  padding: 90px 0 80px;
  background: var(--color-white);
}
.hp-clients-section .section-header { margin-bottom: 40px; }

/* ---------- CTA SPLIT ---------- */
.hp-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 520px;
  overflow: hidden;
}
.hp-cta-img {
  position: relative;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hp-cta-img-mask {
  position: absolute;
  inset: 0;
  background: var(--color-black);
  transform: translateX(0);
  transition: transform 1.4s cubic-bezier(0.77, 0, 0.175, 1) 0.25s;
  z-index: 1;
}
.hp-cta.hp-visible .hp-cta-img-mask { transform: translateX(-101%); }

.hp-cta-content {
  background: var(--color-green-deep);
  color: #fff;
  display: flex;
  align-items: center;
  padding: 80px 60px;
  position: relative;
  overflow: hidden;
}
.hp-cta-content::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(212, 168, 67, 0.22), transparent 60%);
  pointer-events: none;
}
.hp-cta-inner { position: relative; z-index: 1; max-width: 520px; }
.hp-cta-inner .overline { color: var(--color-gold); }
.hp-cta-inner h2 {
  color: #fff;
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin: 16px 0 18px;
  line-height: 1.22;
}
.hp-cta-inner p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.1rem;
  line-height: 1.7;
  margin-bottom: 32px;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .hp-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hp-stat { border-right: none; border-bottom: 1px solid var(--color-gray-200); }
  .hp-stat:nth-child(odd) { border-right: 1px solid var(--color-gray-200); }
  .hp-stat:nth-last-child(-n+2) { border-bottom: none; }

  .hp-why-grid { grid-template-columns: 1fr; gap: 22px; }
  .hp-cta { grid-template-columns: 1fr; }
  .hp-cta-img { min-height: 320px; }
}

@media (max-width: 768px) {
  .hp-corner { width: 50px; height: 50px; }
  .hp-corner-tl, .hp-corner-tr { top: 20px; }
  .hp-corner-bl, .hp-corner-br { bottom: 20px; }
  .hp-corner-tl, .hp-corner-bl { left: 20px; }
  .hp-corner-tr, .hp-corner-br { right: 20px; }

  .hp-hero-inner { padding: 60px 24px; }
  .hp-hero-lead { font-size: 1.05rem; }
  .hp-hero-badge { font-size: 0.74rem; padding: 8px 16px; }
  .hp-btn { padding: 15px 26px; font-size: 0.95rem; }

  .hp-stats { padding: 60px 0; }
  .hp-stat { padding: 24px 22px; }

  .hp-card { padding: 48px 28px 34px; }
  .hp-card-num { font-size: 3.6rem; top: 16px; right: 22px; }

  .hp-break { height: 380px; }
  .hp-break-inner { flex-direction: column; align-items: flex-start; gap: 20px; }
  .hp-break-line { height: 90px; }

  .hp-cta-content { padding: 60px 30px; }
  .hp-cta-img { min-height: 240px; }

  .hp-clients-section { padding: 60px 0; }
}

@media (max-width: 480px) {
  .hp-hero { min-height: 92vh; }
  .hp-hero-title { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .hp-hero-buttons { flex-direction: column; width: 100%; }
  .hp-btn { width: 100%; justify-content: center; }

  .hp-stats-grid { grid-template-columns: 1fr; }
  .hp-stat { border-right: none !important; border-bottom: 1px solid var(--color-gray-200); }
  .hp-stat:last-child { border-bottom: none; }

  .hp-card-num { font-size: 2.8rem; }
  .hp-break { height: 360px; }
  .hp-break-line { height: 70px; }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: reduce) {
  .hp-reveal,
  .hp-hero-bg,
  .hp-hero-bg-wrap,
  .hp-hero-badge,
  .hp-word,
  .hp-accent-line,
  .hp-hero-lead,
  .hp-hero-buttons,
  .hp-scroll-ind,
  .hp-scroll-dot,
  .hp-badge-dot,
  .hp-corner path,
  .hp-stat-bar-fill,
  .hp-card-circle,
  .hp-card-circle circle,
  .hp-break-img,
  .hp-break-line,
  .hp-break-text,
  .hp-cta-img-mask {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
    stroke-dashoffset: 0 !important;
  }
  .hp-cta-img-mask { transform: translateX(-101%) !important; }
  .hp-stat-bar-fill { transform: scaleX(1) !important; }
}


/* ==========================================================================
   HERO BACKGROUND VARIANTS
   Distinct backgrounds for Despre Noi and Tehnologie hero sections.
   These build on top of the shared .dn-hero base without altering it.
   ========================================================================== */

/* ---------- DESPRE NOI: heritage / topographic ---------- */
.dn-hero--despre {
  background:
    radial-gradient(ellipse at 20% 20%, rgba(212, 168, 67, 0.10) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(91, 170, 85, 0.18) 0%, transparent 55%),
    linear-gradient(160deg, #0c1b0c 0%, #1c3a1c 50%, #0a160a 100%);
}

/* hide the default square grid on despre noi */
.dn-hero--despre .dn-hero-grid { display: none; }

/* topographic concentric rings as ::before */
.dn-hero--despre::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-radial-gradient(
      circle at 22% 78%,
      transparent 0,
      transparent 38px,
      rgba(212, 168, 67, 0.08) 38px,
      rgba(212, 168, 67, 0.08) 39px
    );
  mask-image: radial-gradient(ellipse at 22% 78%, black 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at 22% 78%, black 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* large vintage stamp arc on the right side as ::after */
.dn-hero--despre::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -180px;
  width: 540px;
  height: 540px;
  border-radius: 50%;
  border: 1px solid rgba(212, 168, 67, 0.18);
  box-shadow:
    inset 0 0 0 12px transparent,
    inset 0 0 0 13px rgba(212, 168, 67, 0.08),
    inset 0 0 0 24px transparent,
    inset 0 0 0 25px rgba(91, 170, 85, 0.10);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
  animation: dnDespreArcDrift 24s ease-in-out infinite;
}

@keyframes dnDespreArcDrift {
  0%, 100% { transform: translateY(-50%) rotate(0deg); }
  50%      { transform: translateY(-50%) rotate(8deg); }
}

/* recolor orbs warmer */
.dn-hero--despre .dn-orb-1 { background: #2f5e2f; opacity: 0.45; }
.dn-hero--despre .dn-orb-2 { background: var(--color-gold); opacity: 0.20; }
.dn-hero--despre .dn-orb-3 { background: #5BAA55; opacity: 0.22; }


/* ---------- TEHNOLOGIE: engineering / blueprint ---------- */
.dn-hero--tehnologie {
  background:
    radial-gradient(ellipse at 70% 30%, rgba(91, 170, 85, 0.15) 0%, transparent 55%),
    linear-gradient(170deg, #081208 0%, #0f2010 45%, #050b05 100%);
}

/* hide the default square grid */
.dn-hero--tehnologie .dn-hero-grid { display: none; }

/* diagonal blueprint hatch + hex pattern via ::before */
.dn-hero--tehnologie::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent 0,
      transparent 80px,
      rgba(212, 168, 67, 0.05) 80px,
      rgba(212, 168, 67, 0.05) 81px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent 0,
      transparent 80px,
      rgba(91, 170, 85, 0.06) 80px,
      rgba(91, 170, 85, 0.06) 81px
    );
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

/* corner technical brackets via ::after */
.dn-hero--tehnologie::after {
  content: '';
  position: absolute;
  top: 80px;
  left: 80px;
  right: 80px;
  bottom: 80px;
  background:
    /* top-left corner */
    linear-gradient(to right,  rgba(212, 168, 67, 0.35) 0, rgba(212, 168, 67, 0.35) 60px, transparent 60px) top    left  / 60px 1px no-repeat,
    linear-gradient(to bottom, rgba(212, 168, 67, 0.35) 0, rgba(212, 168, 67, 0.35) 60px, transparent 60px) top    left  / 1px 60px no-repeat,
    /* top-right corner */
    linear-gradient(to left,   rgba(212, 168, 67, 0.35) 0, rgba(212, 168, 67, 0.35) 60px, transparent 60px) top    right / 60px 1px no-repeat,
    linear-gradient(to bottom, rgba(212, 168, 67, 0.35) 0, rgba(212, 168, 67, 0.35) 60px, transparent 60px) top    right / 1px 60px no-repeat,
    /* bottom-left corner */
    linear-gradient(to right,  rgba(212, 168, 67, 0.35) 0, rgba(212, 168, 67, 0.35) 60px, transparent 60px) bottom left  / 60px 1px no-repeat,
    linear-gradient(to top,    rgba(212, 168, 67, 0.35) 0, rgba(212, 168, 67, 0.35) 60px, transparent 60px) bottom left  / 1px 60px no-repeat,
    /* bottom-right corner */
    linear-gradient(to left,   rgba(212, 168, 67, 0.35) 0, rgba(212, 168, 67, 0.35) 60px, transparent 60px) bottom right / 60px 1px no-repeat,
    linear-gradient(to top,    rgba(212, 168, 67, 0.35) 0, rgba(212, 168, 67, 0.35) 60px, transparent 60px) bottom right / 1px 60px no-repeat;
  pointer-events: none;
  z-index: 0;
  opacity: 0;
  animation: dnThBracketsIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.4s forwards;
}

@keyframes dnThBracketsIn {
  to { opacity: 1; }
}

/* recolor orbs cooler / electric */
.dn-hero--tehnologie .dn-orb-1 { background: #1f6b3a; opacity: 0.35; }
.dn-hero--tehnologie .dn-orb-2 { background: var(--color-gold); opacity: 0.18; }
.dn-hero--tehnologie .dn-orb-3 { background: #2f9a4a; opacity: 0.22; }

/* make sure inner content stays above the new pseudo decorations */
.dn-hero--despre .dn-hero-orbs,
.dn-hero--despre .dn-hero-inner,
.dn-hero--despre .dn-hero-scroll,
.dn-hero--tehnologie .dn-hero-orbs,
.dn-hero--tehnologie .dn-hero-inner,
.dn-hero--tehnologie .dn-hero-scroll {
  position: relative;
  z-index: 1;
}
.dn-hero--despre .dn-hero-inner,
.dn-hero--tehnologie .dn-hero-inner { z-index: 2; }

/* responsive: hide brackets and shrink arc on small screens to keep things clean */
@media (max-width: 768px) {
  .dn-hero--tehnologie::after { display: none; }
  .dn-hero--despre::after {
    width: 360px;
    height: 360px;
    right: -160px;
  }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  .dn-hero--despre::after {
    animation: none !important;
  }
  .dn-hero--tehnologie::after {
    animation: none !important;
    opacity: 1 !important;
  }
}

/* ============================================
   PRODUSE PAGE - HEADER FIX
   The Produse hero is a light gradient (unlike all other pages, which have
   dark heroes). The default transparent header has white menu text, which is
   invisible against the light hero until the user scrolls and the bar turns
   dark. On this page only, render the header with its solid dark background
   from page load. The .scrolled state still applies normally on scroll, so
   the background stays consistent with no flicker.
   ============================================ */
body.pr-light-header .site-header {
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.2);
}
