/* ============================================
   GLOBAL EXPRESS PAPER — Design System
   Aesthetic: Editorial Industrial Precision
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

/* ─── Variables ─────────────────────────────── */
:root {
  --green-deep:    #022601;
  --green-mid:     #0A3D0F;
  --green-bright:  #14591E;
  --green-light:   #92F27E;
  --electric:      #0DF205;
  --gold:          #92F27E;
  --gold-light:    #0DF205;
  --black:         #0D0D0D;
  --dark:          #111111;
  --dark-2:        #1A1A1A;
  --dark-3:        #242424;
  --dark-4:        #2E2E2E;
  --mid:           #4A4A4A;
  --light-1:       #F5F5F5;
  --light-2:       #EBEBEB;
  --light-3:       #D8D8D8;
  --white:         #FFFFFF;

  --font-display:  'Cormorant Garamond', Georgia, serif;
  --font-body:     'Barlow', sans-serif;
  --font-cond:     'Barlow Condensed', sans-serif;

  --max-w:         1280px;
  --section-pad:   clamp(4rem, 8vw, 7rem);
  --ease:          cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:       cubic-bezier(0.4, 0, 1, 1);
}

/* ─── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--light-1);
  color: var(--dark);
  line-height: 1.6;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Typography Scale ───────────────────────── */
.display-xl {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.02em;
}
.display-lg {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.display-md {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 400;
  line-height: 1.1;
}
.label {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ─── Layout Utilities ───────────────────────── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 clamp(1.5rem, 5vw, 3rem); }
.section { padding: var(--section-pad) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ─── HEADER / NAV ───────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem clamp(1.5rem, 5vw, 3rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.4s var(--ease), backdrop-filter 0.4s;
}
.site-header.scrolled {
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 154, 90, 0.15);
}
.site-header.light {
  background: rgba(247, 243, 236, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(27, 94, 53, 0.12);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  height: 42px;
  width: auto;
}
.nav-logo-text {
  font-family: var(--font-cond);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  opacity: 0.6;
}
.site-header.light .nav-logo-text { color: var(--dark); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  transition: color 0.25s;
  position: relative;
}
.site-header.light .nav-links a { color: rgba(10,10,10,0.6); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--electric);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.site-header.light .nav-links a:hover { color: var(--dark); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  font-family: var(--font-cond);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.65rem 1.5rem;
  background: var(--green-bright);
  color: var(--white) !important;
  border: 1px solid var(--green-bright);
  transition: background 0.25s, color 0.25s !important;
}
.nav-cta:hover { background: transparent; color: var(--green-bright) !important; }
.nav-cta::after { display: none !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--white);
  transition: transform 0.3s, opacity 0.3s;
}
.site-header.light .nav-hamburger span { background: var(--dark); }
.nav-hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 99;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
.nav-mobile.open { opacity: 1; pointer-events: all; }
.nav-mobile a {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--white);
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: color 0.2s, padding 0.2s;
}
.nav-mobile a:hover { color: var(--gold); padding-left: 1rem; }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1rem 2.25rem;
  border: 1.5px solid transparent;
  transition: all 0.28s var(--ease);
  position: relative;
  overflow: hidden;
}
.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  transform: translateX(-101%);
  transition: transform 0.35s var(--ease);
}
.btn:hover::before { transform: translateX(0); }
.btn span { position: relative; z-index: 1; }
.btn svg { position: relative; z-index: 1; transition: transform 0.25s var(--ease); }
.btn:hover svg { transform: translateX(4px); }

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

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}
.btn-outline-white::before { background: rgba(255,255,255,0.1); }
.btn-outline-white:hover { border-color: var(--white); }

.btn-outline-green {
  background: transparent;
  color: var(--green-bright);
  border-color: var(--green-bright);
}
.btn-outline-green::before { background: var(--green-bright); }
.btn-outline-green:hover { color: var(--white); }

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

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(4rem, 8vh, 7rem);
  background: var(--black);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://res.cloudinary.com/dka8t5gf5/image/upload/v1772983429/global_express_paper06__h9l2ym.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 12s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); opacity: 0.3; } }

.hero-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 512 512' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: 0.4;
  pointer-events: none;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,10,10,0.92) 0%,
    rgba(10,10,10,0.5) 50%,
    rgba(10,10,10,0.2) 100%
  );
}
.hero-line-left {
  position: absolute;
  left: clamp(1.5rem, 5vw, 3rem);
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(196,154,90,0.3) 30%, rgba(196,154,90,0.3) 70%, transparent);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s 0.3s var(--ease) forwards;
}
.hero-eyebrow-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-eyebrow-text {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 9rem);
  font-weight: 300;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.45s var(--ease) forwards;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold);
}
.hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255,255,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s 0.6s var(--ease) forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 0.9s 0.75s var(--ease) forwards;
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}
.hero-scroll-text {
  font-family: var(--font-cond);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  writing-mode: vertical-rl;
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollLine 2s 2s infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.3; transform: scaleY(0.5); }
}

/* ─── STATS BAR ──────────────────────────────── */
.stats-bar {
  background: var(--dark-2);
  border-bottom: 1px solid rgba(196,154,90,0.2);
  border-top: 1px solid rgba(196,154,90,0.2);
}
.stats-bar-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,0.06);
  transition: background 0.3s;
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(255,255,255,0.03); }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ─── SECTION HEADERS ────────────────────────── */
.section-header {
  margin-bottom: clamp(3rem, 5vw, 5rem);
}
.section-header .label {
  color: var(--green-bright);
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.section-header .label::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--electric);
}
.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.01em;
}
.section-header p {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--mid);
  max-width: 540px;
  line-height: 1.7;
}

/* Dark section headers */
.dark .section-header .label { color: var(--gold); }
.dark .section-header .label::before { background: var(--gold); }
.dark .section-header h2 { color: var(--white); }
.dark .section-header p { color: rgba(255,255,255,0.5); }

/* ─── WHY CHOOSE ─────────────────────────────── */
.why-section { background: var(--light-1); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--light-3);
}
.pillar {
  padding: 2.5rem;
  border-right: 1px solid var(--light-3);
  border-bottom: 1px solid var(--light-3);
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}
.pillar:nth-child(even) { border-right: none; }
.pillar:nth-last-child(-n+2) { border-bottom: none; }
.pillar::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: var(--electric);
  transition: height 0.4s var(--ease);
}
.pillar:hover { background: var(--white); }
.pillar:hover::before { height: 100%; }
.pillar-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-primary);
  color: var(--white);
  margin-bottom: 1.25rem;
}
.pillar h3 {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.65rem;
}
.pillar p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ─── PRODUCTS SECTION ───────────────────────── */
.products-section { background: var(--dark); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5px;
  background: rgba(255,255,255,0.06);
}
.product-card {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background 0.3s;
}
.product-card:hover { background: var(--dark-3); }
.product-card-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
  filter: grayscale(30%);
}
.product-card:hover .product-card-image img { transform: scale(1.06); filter: grayscale(0%); }
.product-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--dark-2), transparent 60%);
}
.product-card-body {
  padding: 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-tag {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}
.product-card h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.1;
}
.product-card-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1.25rem;
  font-style: italic;
  font-family: var(--font-display);
}
.product-card p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
}
.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-cond);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid rgba(196,154,90,0.3);
  padding-bottom: 0.2rem;
  transition: border-color 0.25s, gap 0.25s;
  align-self: flex-start;
}
.product-card-link:hover { border-color: var(--gold); gap: 0.9rem; }

/* ─── INDUSTRIES ─────────────────────────────── */
.industries-section { background: var(--light-1); }
.industries-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--light-3);
}
.industry-item {
  background: var(--light-1);
  padding: 2rem 2.25rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.industry-item::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--electric);
  transition: width 0.4s var(--ease);
}
.industry-item:hover { background: var(--white); }
.industry-item:hover::after { width: 100%; }
.industry-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-bright);
  margin-top: 0.1rem;
}
.industry-item h3 {
  font-family: var(--font-cond);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.industry-item p {
  font-size: 0.84rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ─── PROCESS SECTION ────────────────────────── */
.process-section { background: var(--dark-2); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 2.5rem;
  right: 2.5rem;
  height: 1px;
  background: linear-gradient(to right, var(--green-bright), var(--gold));
  opacity: 0.3;
}
.process-step {
  padding: 0 2rem 2rem;
  position: relative;
}
.step-number {
  width: 4rem;
  height: 4rem;
  border: 1px solid rgba(196,154,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1.5rem;
  background: var(--dark-2);
  position: relative;
  z-index: 1;
  transition: border-color 0.3s, background 0.3s;
}
.process-step:hover .step-number {
  border-color: var(--gold);
  background: rgba(196,154,90,0.08);
}
.process-step h3 {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 0.6rem;
}
.process-step p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.6;
}

/* ─── LOGISTICS STRIP ────────────────────────── */
.logistics-strip {
  background: var(--green-deep);
  padding: 0;
}
.logistics-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
.logistics-option {
  padding: 4rem clamp(2rem, 5vw, 4rem);
  position: relative;
  overflow: hidden;
}
.logistics-option:first-child {
  border-right: 1px solid rgba(255,255,255,0.15);
}
.logistics-option-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.12;
  transition: opacity 0.4s;
}
.logistics-option:hover .logistics-option-bg { opacity: 0.2; }
.logistics-option > * { position: relative; z-index: 1; }
.logistics-option-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.logistics-option h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.logistics-option p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
  max-width: 360px;
}

/* ─── TRUST / QUALITY ────────────────────────── */
.quality-section {
  background: var(--light-1);
}
.quality-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.quality-image {
  position: relative;
  aspect-ratio: 4/5;
}
.quality-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.quality-image::before {
  content: '';
  position: absolute;
  top: -1.5rem;
  left: -1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  border: 1px solid var(--green-primary);
  z-index: -1;
  opacity: 0.3;
}
.quality-image-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--dark);
  padding: 1.5rem 2rem;
  color: var(--white);
}
.quality-image-badge .badge-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.quality-image-badge .badge-text {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.quality-content .section-header { margin-bottom: 2rem; }
.quality-points { margin-top: 2rem; }
.quality-point {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--light-3);
}
.quality-point:last-child { border-bottom: none; }
.quality-point-icon {
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: 0.1rem;
}
.quality-point-text h4 {
  font-family: var(--font-cond);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}
.quality-point-text p {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ─── CTA BAND ───────────────────────────────── */
.cta-band {
  background: var(--black);
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(27,94,53,0.25) 0%, transparent 70%);
}
.cta-band-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.05;
}
.cta-band h2 em { font-style: italic; color: var(--gold); }
.cta-band p {
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 2.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-phone {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2rem;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  font-family: var(--font-cond);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.cta-phone a {
  color: var(--white);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  transition: color 0.2s;
}
.cta-phone a:hover { color: var(--gold); }

/* ─── CONTACT / FOOTER ───────────────────────── */
.contact-section { background: var(--dark); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.contact-info .section-header { margin-bottom: 2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.contact-item:first-of-type { border-top: 1px solid rgba(255,255,255,0.07); }
.contact-item-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(20,89,30,0.5);
  color: var(--green-light);
}
.contact-item-label {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 0.25rem;
}
.contact-item-value {
  font-size: 0.95rem;
  color: var(--white);
  font-weight: 400;
}
.contact-item-value a:hover { color: var(--gold); transition: color 0.2s; }

/* Contact Form */
.contact-form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.contact-form-sub {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  margin-bottom: 2rem;
}
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--white);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  border-radius: 0;
  -webkit-appearance: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-bright);
  background: rgba(45, 138, 78, 0.06);
}
.form-group select { color: rgba(255,255,255,0.6); }
.form-group select option { background: var(--dark-2); color: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ─── FOOTER ─────────────────────────────────── */
.site-footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 3rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.footer-logo img { height: 36px; width: auto; }
.footer-logo-text {
  font-family: var(--font-cond);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
.footer-links a {
  font-family: var(--font-cond);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-legal {
  font-family: var(--font-cond);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.2);
  text-align: right;
}
.footer-legal p { margin-bottom: 0.15rem; }

/* ─── PAGE HERO (inner pages) ────────────────── */
.page-hero {
  background: var(--dark);
  padding: calc(5rem + 80px) 0 5rem;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 100% at 0% 50%, rgba(27,94,53,0.2) 0%, transparent 60%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero .label { color: var(--gold); margin-bottom: 0.75rem; }
.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  letter-spacing: -0.01em;
}
.page-hero p {
  margin-top: 1rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  max-width: 520px;
  line-height: 1.7;
}

/* ─── PRODUCTS PAGE ──────────────────────────── */
.product-full {
  padding: 5rem 0;
  border-bottom: 1px solid var(--light-3);
}
.product-full:last-child { border-bottom: none; }
.product-full-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: start;
}
.product-full:nth-child(even) .product-full-inner { direction: rtl; }
.product-full:nth-child(even) .product-full-inner > * { direction: ltr; }
.product-full-image {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product-full-image img { width: 100%; height: 100%; object-fit: cover; }
.product-full h2 {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 300;
  line-height: 1.05;
  margin-bottom: 0.5rem;
}
.product-full-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--mid);
  margin-bottom: 1.5rem;
}
.product-full p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 2rem;
}
.product-uses h4 {
  font-family: var(--font-cond);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.75rem;
}
.product-uses ul li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.88rem;
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--light-3);
}
.product-uses ul li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--green-bright);
  flex-shrink: 0;
}

/* ─── ABOUT PAGE ─────────────────────────────── */
.about-story {
  background: var(--light-1);
  padding: var(--section-pad) 0;
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}
.about-pull {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  line-height: 1.3;
  color: var(--dark);
  border-left: 3px solid var(--green-bright);
  padding-left: 1.5rem;
  margin: 2rem 0;
}
.about-text p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--light-3);
  margin-top: 3rem;
}
.value-item {
  padding: 1.75rem;
  border-right: 1px solid var(--light-3);
  border-bottom: 1px solid var(--light-3);
}
.value-item:nth-child(even) { border-right: none; }
.value-item:nth-last-child(-n+2) { border-bottom: none; }
.value-item h4 {
  font-family: var(--font-cond);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  color: var(--green-deep);
}
.value-item p { font-size: 0.84rem; color: var(--mid); line-height: 1.55; }

/* ─── HOW TO ORDER ───────────────────────────── */
.order-steps-section { background: var(--light-1); }
.order-steps-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.order-step-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2.5rem 0;
  border-bottom: 1px solid var(--light-3);
  align-items: start;
  position: relative;
}
.order-step-row:last-child { border-bottom: none; }
.order-step-row::before {
  content: '';
  position: absolute;
  top: 5rem;
  left: 39px;
  bottom: 0;
  width: 1px;
  background: var(--light-3);
}
.order-step-row:last-child::before { display: none; }
.order-step-num {
  width: 80px;
  height: 80px;
  border: 1px solid var(--light-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 300;
  color: var(--green-bright);
  background: var(--white);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.order-step-content { padding-top: 1.25rem; }
.order-step-content h3 {
  font-family: var(--font-cond);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.order-step-content p { font-size: 0.9rem; color: var(--mid); line-height: 1.65; }

/* ─── INDUSTRIES PAGE ────────────────────────── */
.industry-full {
  padding: 4rem 0;
  border-bottom: 1px solid var(--light-3);
}
.industry-full h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  margin-bottom: 0.75rem;
}
.industry-full p { font-size: 0.95rem; color: var(--mid); line-height: 1.75; max-width: 600px; }

/* ─── QUOTE FORM PAGE ────────────────────────── */
.quote-section {
  background: var(--light-1);
  padding: var(--section-pad) 0;
}
.quote-inner {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
}
.quote-form-card {
  background: var(--dark);
  padding: 3rem;
}

/* ─── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: 1fr; }
  .quality-inner { grid-template-columns: 1fr; gap: 3rem; }
  .quality-image { aspect-ratio: 16/9; max-height: 360px; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-steps::before { display: none; }
  .product-full-inner { grid-template-columns: 1fr !important; direction: ltr !important; gap: 2rem; }
  .about-story-inner { grid-template-columns: 1fr; gap: 2rem; }
  .quote-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-mobile { display: flex; }
  .pillars-grid { grid-template-columns: 1fr; }
  .pillar:nth-child(even) { border-right: 1px solid var(--light-3); }
  .pillar:nth-last-child(-n+2) { border-bottom: 1px solid var(--light-3); }
  .pillar:last-child { border-bottom: none; }
  .industries-list { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .logistics-inner { grid-template-columns: 1fr; }
  .stats-bar-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2), .stat-item:nth-child(4) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,0.06); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-legal { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}
