/* ═══════════════════════════════════════════════════════════
   JN ECO PACKAGING — Design System
   Palette: Chlorophyll-inspired greens on deep earth tones
   Typography: Bricolage Grotesque + Plus Jakarta Sans
═══════════════════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  --green-deep:    #0A1F02;
  --green-dark:    #1a3a0a;
  --green-mid:     #2D6A1E;
  --green-light:   #4a9a2e;
  --green-lime:    #B8F369;
  --green-pale:    #d4f89a;
  --cream:         #F5F2EB;
  --cream-dark:    #E8E3D8;
  --white:         #FFFFFF;
  --text-primary:  #0A1F02;
  --text-secondary:#3a5a2a;
  --text-muted:    #6a8a5a;
  --border:        rgba(45, 106, 30, 0.15);
  --shadow-sm:     0 2px 8px rgba(10, 31, 2, 0.08);
  --shadow-md:     0 8px 32px rgba(10, 31, 2, 0.12);
  --shadow-lg:     0 24px 64px rgba(10, 31, 2, 0.18);
  --radius-sm:     6px;
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-xl:     32px;
  --transition:    0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  background-color: var(--cream);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Bricolage Grotesque', sans-serif;
  line-height: 1.1;
  font-weight: 700;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Scroll Reveal ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════ */
.nav-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.nav-header.scrolled {
  background: rgba(245, 242, 235, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--green-deep);
  flex-shrink: 0;
}

.logo-icon { display: flex; align-items: center; }
.logo-accent { color: var(--green-mid); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}

.nav-link:hover {
  color: var(--green-mid);
  background: rgba(45, 106, 30, 0.08);
}

.nav-link.nav-cta {
  background: var(--green-mid);
  color: var(--white);
  padding: 10px 20px;
  border-radius: var(--radius-md);
  font-weight: 600;
}

.nav-link.nav-cta:hover {
  background: var(--green-dark);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}

.hamburger:hover { background: rgba(45, 106, 30, 0.08); }

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-deep);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-md);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

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

.btn-primary:hover {
  background: var(--green-dark);
  border-color: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(45, 106, 30, 0.35);
}

.btn-ghost {
  background: transparent;
  color: var(--green-deep);
  border-color: var(--green-mid);
}

.btn-ghost:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-full { width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════════════════ */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(45, 106, 30, 0.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--green-deep);
  line-height: 1.1;
  margin-bottom: 16px;
}

.section-title em {
  font-style: italic;
  color: var(--green-mid);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-subtitle {
  margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: var(--green-deep);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(45, 106, 30, 0.4) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(184, 243, 105, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(45, 106, 30, 0.2) 0%, transparent 40%);
  pointer-events: none;
}

.hero-bg-pattern::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%232D6A1E' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(184, 243, 105, 0.12);
  border: 1px solid rgba(184, 243, 105, 0.3);
  color: var(--green-lime);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}

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

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.title-highlight {
  color: var(--green-lime);
}

.title-outline {
  -webkit-text-stroke: 2px var(--green-lime);
  color: transparent;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(245, 242, 235, 0.7);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-actions .btn-ghost {
  color: var(--cream);
  border-color: rgba(245, 242, 235, 0.3);
}

.hero-actions .btn-ghost:hover {
  background: rgba(245, 242, 235, 0.1);
  color: var(--cream);
  border-color: rgba(245, 242, 235, 0.6);
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--green-lime);
  line-height: 1;
}

.stat-suffix {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green-lime);
}

.stat-label {
  font-size: 0.78rem;
  color: rgba(245, 242, 235, 0.5);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(245, 242, 235, 0.15);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 420px;
}

.hero-card-stack {
  position: relative;
  width: 280px;
  height: 340px;
}

.visual-card {
  position: absolute;
  width: 200px;
  height: 260px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 243, 105, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-slow);
}

.card-back {
  background: rgba(45, 106, 30, 0.2);
  top: 0;
  left: 0;
  transform: rotate(-12deg) translateX(-20px);
  animation: float-back 6s ease-in-out infinite;
}

.card-mid {
  background: rgba(45, 106, 30, 0.35);
  top: 20px;
  left: 40px;
  transform: rotate(-4deg);
  animation: float-mid 6s ease-in-out infinite 0.5s;
}

.card-front {
  background: rgba(45, 106, 30, 0.55);
  top: 40px;
  left: 80px;
  transform: rotate(4deg);
  animation: float-front 6s ease-in-out infinite 1s;
  border-color: rgba(184, 243, 105, 0.4);
}

@keyframes float-back {
  0%, 100% { transform: rotate(-12deg) translateX(-20px) translateY(0); }
  50% { transform: rotate(-12deg) translateX(-20px) translateY(-12px); }
}

@keyframes float-mid {
  0%, 100% { transform: rotate(-4deg) translateY(0); }
  50% { transform: rotate(-4deg) translateY(-8px); }
}

@keyframes float-front {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-16px); }
}

.card-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: var(--green-lime);
}

.cup-icon {
  width: 80px;
  height: 100px;
}

.card-inner span {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: rgba(184, 243, 105, 0.8);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-leaf {
  position: absolute;
  font-size: 2.5rem;
  animation: leaf-float 8s ease-in-out infinite;
  pointer-events: none;
  opacity: 0.6;
}

.hero-leaf-1 { top: 10%; right: -10px; animation-delay: 0s; }
.hero-leaf-2 { bottom: 15%; left: -10px; animation-delay: 3s; font-size: 2rem; }

@keyframes leaf-float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-15px) rotate(8deg); }
  66% { transform: translateY(8px) rotate(-5deg); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 242, 235, 0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(184, 243, 105, 0.5), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.6); }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════ */
.about {
  background: var(--cream);
  padding: 100px 0;
  position: relative;
}

.about-diagonal-top {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--green-deep);
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 100%);
}

.about-diagonal-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%);
}

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

.about-text .section-tag { margin-bottom: 12px; }

.about-body {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 20px;
}

.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.value-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(45, 106, 30, 0.08);
  border: 1px solid rgba(45, 106, 30, 0.2);
  color: var(--green-mid);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all var(--transition);
}

.value-pill:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
}

.about-visual {
  position: relative;
  height: 380px;
}

.about-card-main {
  position: absolute;
  top: 0;
  left: 0;
  right: 80px;
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}

.about-icon-wrap {
  margin-bottom: 20px;
}

.about-card-main h3 {
  font-size: 1.4rem;
  color: var(--green-deep);
  margin-bottom: 12px;
}

.about-card-main p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.about-card-accent {
  position: absolute;
  background: var(--green-mid);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

.about-card-accent:first-of-type,
.about-card-accent {
  bottom: 60px;
  right: 0;
  width: 160px;
}

.accent-2 {
  bottom: -10px !important;
  right: 100px !important;
  background: var(--green-lime) !important;
  color: var(--green-deep) !important;
}

.accent-number {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.accent-label {
  font-size: 0.78rem;
  font-weight: 600;
  opacity: 0.85;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCTS
═══════════════════════════════════════════════════════════ */
.products {
  background: var(--white);
  padding: 100px 0;
}

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

.product-card {
  position: relative;
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all var(--transition);
  overflow: hidden;
  cursor: default;
}

.product-card-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45, 106, 30, 0.04) 0%, transparent 60%);
  transition: opacity var(--transition);
  pointer-events: none;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(45, 106, 30, 0.3);
}

.product-card:hover .product-card-bg {
  opacity: 2;
}

.product-card-featured {
  background: var(--green-deep);
  border-color: rgba(184, 243, 105, 0.3);
  grid-column: span 1;
}

.product-card-featured .product-card-bg {
  background: linear-gradient(135deg, rgba(184, 243, 105, 0.08) 0%, transparent 60%);
}

.product-card-featured .product-tag {
  background: rgba(184, 243, 105, 0.15);
  color: var(--green-lime);
  border-color: rgba(184, 243, 105, 0.3);
}

.product-card-featured .product-name,
.product-card-featured .product-desc,
.product-card-featured .product-features li {
  color: var(--cream);
}

.product-card-featured .product-features li::before {
  background: var(--green-lime);
}

.product-card-featured .product-cta {
  color: var(--green-lime);
  border-color: rgba(184, 243, 105, 0.3);
}

.product-card-featured .product-cta:hover {
  background: var(--green-lime);
  color: var(--green-deep);
  border-color: var(--green-lime);
}

.product-card-featured .product-icon {
  color: var(--green-lime);
}

.featured-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--green-lime);
  color: var(--green-deep);
  font-size: 0.72rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

.product-icon {
  width: 64px;
  height: 80px;
  color: var(--green-mid);
  flex-shrink: 0;
}

.product-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: rgba(45, 106, 30, 0.1);
  border: 1px solid rgba(45, 106, 30, 0.2);
  padding: 4px 10px;
  border-radius: 100px;
}

.product-name {
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--green-deep);
  line-height: 1.2;
}

.product-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  flex: 1;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-features li {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--green-mid);
  border-radius: 50%;
  flex-shrink: 0;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-mid);
  border: 1px solid rgba(45, 106, 30, 0.25);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  transition: all var(--transition);
  margin-top: auto;
  align-self: flex-start;
}

.product-cta:hover {
  background: var(--green-mid);
  color: var(--white);
  border-color: var(--green-mid);
  transform: translateX(4px);
}

/* Staggered reveal for product cards */
.product-card[data-index="0"] { transition-delay: 0.0s; }
.product-card[data-index="1"] { transition-delay: 0.1s; }
.product-card[data-index="2"] { transition-delay: 0.2s; }
.product-card[data-index="3"] { transition-delay: 0.3s; }
.product-card[data-index="4"] { transition-delay: 0.4s; }
.product-card[data-index="5"] { transition-delay: 0.5s; }

/* ═══════════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════════ */
.why-us {
  background: var(--green-deep);
  padding: 120px 0;
  position: relative;
}

.why-diagonal-top {
  position: absolute;
  top: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.why-diagonal-bottom {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--cream);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
}

.why-us .section-tag {
  background: rgba(184, 243, 105, 0.12);
  color: var(--green-lime);
  border: 1px solid rgba(184, 243, 105, 0.2);
}

.why-us .section-title {
  color: var(--white);
}

.why-us .section-title em {
  color: var(--green-lime);
}

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

.why-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(184, 243, 105, 0.1);
  border-radius: var(--radius-xl);
  padding: 32px;
  transition: all var(--transition);
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(184, 243, 105, 0.25);
  transform: translateY(-4px);
}

.why-icon {
  width: 56px;
  height: 56px;
  background: rgba(184, 243, 105, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-lime);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.why-card:hover .why-icon {
  background: var(--green-lime);
  color: var(--green-deep);
}

.why-card h3 {
  font-size: 1.15rem;
  color: var(--white);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.6);
  line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════ */
.contact {
  background: var(--cream);
  padding: 100px 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-person-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
}

.contact-person-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(45, 106, 30, 0.3);
  transform: translateX(4px);
}

.person-avatar {
  width: 56px;
  height: 56px;
  background: var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  color: var(--white);
  flex-shrink: 0;
}

.avatar-2 {
  background: var(--green-dark);
}

.person-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.person-info h3 {
  font-size: 1.1rem;
  color: var(--green-deep);
}

.person-role {
  font-size: 0.8rem;
  color: var(--text-muted);
  font-weight: 500;
}

.person-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--green-mid);
  margin-top: 4px;
  transition: color var(--transition);
}

.person-phone:hover {
  color: var(--green-dark);
}

.contact-info-card {
  background: var(--green-deep);
  border-radius: var(--radius-xl);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.info-icon {
  width: 44px;
  height: 44px;
  background: rgba(184, 243, 105, 0.1);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-lime);
  flex-shrink: 0;
}

.info-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.info-label {
  font-size: 0.75rem;
  color: rgba(245, 242, 235, 0.5);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.info-value {
  font-size: 0.95rem;
  color: var(--cream);
  font-weight: 600;
  transition: color var(--transition);
}

a.info-value:hover {
  color: var(--green-lime);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-md);
}

.form-title {
  font-size: 1.5rem;
  color: var(--green-deep);
  margin-bottom: 28px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 0.02em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  color: var(--text-primary);
  background: var(--cream);
  transition: all var(--transition);
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(45, 106, 30, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236a8a5a' stroke-width='2' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.form-success {
  display: none;
  align-items: center;
  gap: 10px;
  background: rgba(45, 106, 30, 0.1);
  border: 1px solid rgba(45, 106, 30, 0.3);
  color: var(--green-mid);
  padding: 14px 18px;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 12px;
}

.form-success.show {
  display: flex;
  animation: fadeIn 0.4s ease;
}

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

/* ═══════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════ */
.footer {
  background: var(--green-deep);
  padding: 72px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
  gap: 48px;
  margin-bottom: 56px;
}

.footer-logo {
  margin-bottom: 16px;
  display: inline-flex;
}

.footer-logo .logo-text {
  color: var(--cream);
}

.footer-tagline {
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.5);
  line-height: 1.7;
  max-width: 280px;
}

.footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-lime);
  margin-bottom: 20px;
}

.footer-links ul,
.footer-products ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a,
.footer-products a {
  font-size: 0.9rem;
  color: rgba(245, 242, 235, 0.6);
  transition: color var(--transition);
}

.footer-links a:hover,
.footer-products a:hover {
  color: var(--green-lime);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  color: rgba(245, 242, 235, 0.6);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-contact-item svg {
  color: var(--green-lime);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item a {
  color: rgba(245, 242, 235, 0.6);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--green-lime);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(245, 242, 235, 0.4);
}

.footer-eco {
  color: rgba(184, 243, 105, 0.6) !important;
}

/* ═══════════════════════════════════════════════════════════
   BACK TO TOP
═══════════════════════════════════════════════════════════ */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--green-mid);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  pointer-events: none;
  z-index: 999;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top:hover {
  background: var(--green-dark);
  transform: translateY(-4px);
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — TABLET (≤ 1024px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero-subtitle { margin: 0 auto 36px; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { margin: 0 auto 24px; }

  .hero-visual {
    height: 300px;
    order: -1;
  }

  .hero-card-stack {
    width: 240px;
    height: 280px;
  }

  .visual-card { width: 170px; height: 220px; }

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

  .about-visual {
    height: 280px;
    order: -1;
  }

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

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

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

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

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — MOBILE (≤ 768px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(320px, 85vw);
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    box-shadow: -8px 0 32px rgba(10, 31, 2, 0.15);
    transition: right var(--transition-slow);
    z-index: 999;
  }

  .nav-links.open { right: 0; }

  .nav-link {
    width: 100%;
    font-size: 1.1rem;
    padding: 12px 16px;
  }

  .nav-link.nav-cta {
    margin-top: 16px;
    text-align: center;
    justify-content: center;
  }

  /* Hero */
  .hero { padding: 100px 20px 60px; }

  .hero-title { font-size: clamp(2.2rem, 8vw, 3.5rem); }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .stat-divider { display: none; }

  .hero-visual { height: 240px; }
  .hero-card-stack { width: 200px; height: 240px; }
  .visual-card { width: 140px; height: 180px; }

  /* Products */
  .products-grid {
    grid-template-columns: 1fr;
  }

  /* Why Us */
  .why-grid {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  /* Footer */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  /* Back to top */
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
  }

  /* Diagonal cuts reduced on mobile */
  .about-diagonal-top,
  .about-diagonal-bottom,
  .why-diagonal-top,
  .why-diagonal-bottom {
    height: 48px;
  }
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (≤ 480px)
═══════════════════════════════════════════════════════════ */
@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    justify-content: center;
  }

  .about-card-accent,
  .accent-2 {
    display: none;
  }

  .about-visual {
    height: auto;
  }

  .about-card-main {
    position: static;
    right: auto;
  }

  .section-title { font-size: 1.8rem; }
}