:root {
  --saffron: #E8651A;
  --saffron-dark: #B84D10;
  --saffron-light: #F5A96B;
  --turmeric: #D4900A;
  --cream: #FAF6EF;
  --deep-green: #1A3A2A;
  --mid-green: #2D6A4F;
  --light-green: #52B788;
  --text-dark: #1C1C1C;
  --text-mid: #4A4A4A;
  --text-light: #888;
  --border: rgba(0,0,0,0.1);
  --white: #FFFFFF;
  --section-bg: #F5F0E8;
  --nav-height: 72px;
  --bottom-nav-height: 64px;
  --safe-bottom: env(safe-area-inset-bottom, 0px);
  --site-container: 1280px;
}

.site-container {
  width: 100%;
  max-width: var(--site-container);
  margin-left: auto;
  margin-right: auto;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
body.menu-open { overflow: hidden; }

/* NAV */
nav {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  background: rgba(26,58,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-height);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.3); }

.logo {
  display: flex; align-items: center;
  text-decoration: none; z-index: 1001;
  flex-shrink: 0;
}
nav .logo {
  height: 100%;
  align-items: center;
}
nav .logo-img {
  height: calc(var(--nav-height) - -1px);
  width: auto;
  max-width: min(320px, 42vw);
  object-fit: contain;
  display: block;
  box-shadow: -5px 0 5px rgba(0, 0, 0, 0.25), 5px 0 5px rgba(0, 0, 0, 0.25);
}
footer .logo-img {
  height: 52px;
  max-width: 190px;
  object-fit: contain;
  display: block;
  border-radius: 5px;
}
.logo-mark {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--turmeric));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 900; font-size: 20px; color: #fff;
}
.logo-text { color: #fff; }
.logo-text span { display: block; }
.logo-name { font-family: 'Playfair Display', serif; font-size: 16px; font-weight: 700; letter-spacing: 0.5px; }
.logo-tag { font-size: 10px; font-weight: 300; letter-spacing: 2px; text-transform: uppercase; opacity: 0.7; }

.nav-links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.85); text-decoration: none;
  font-size: 14px; font-weight: 400; letter-spacing: 0.3px;
  transition: color 0.2s; position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--saffron-light);
  transition: width 0.3s;
}
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a:hover,
.nav-links a.active { color: var(--saffron-light); }

.nav-cta {
  background: var(--saffron) !important; color: #fff !important;
  padding: 10px 22px !important; border-radius: 6px;
  font-size: 14px !important; font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--saffron-dark) !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; z-index: 1001;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: #fff; transition: all 0.3s; border-radius: 2px;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(12,31,22,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: calc(var(--nav-height) + 32px) 8% 120px;
  flex-direction: column; gap: 4px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: rgba(255,255,255,0.9); text-decoration: none;
  font-size: 22px; font-family: 'Playfair Display', serif;
  font-weight: 600; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.2s, padding-left 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--saffron-light); padding-left: 12px; }
.mobile-menu .mobile-cta {
  margin-top: 24px; background: var(--saffron); color: #fff;
  padding: 16px 28px; border-radius: 10px; text-align: center;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 500;
  border: none;
}

/* BOTTOM NAV (mobile app style) */
.bottom-nav {
  display: none; position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 998; background: rgba(26,58,42,0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 8px 0 calc(8px + var(--safe-bottom));
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
}
.bottom-nav-inner {
  display: flex; justify-content: space-around; align-items: center;
  max-width: 500px; margin: 0 auto;
}
.bottom-nav a {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  text-decoration: none; color: rgba(255,255,255,0.5);
  font-size: 10px; font-weight: 500; letter-spacing: 0.3px;
  padding: 6px 12px; border-radius: 12px;
  transition: all 0.2s; min-width: 56px;
}
.bottom-nav a .bn-icon { font-size: 20px; line-height: 1; }
.bottom-nav a.active,
.bottom-nav a:hover { color: var(--saffron-light); background: rgba(232,101,26,0.12); }

/* BUTTONS */
.btn-primary {
  background: var(--saffron); color: #fff;
  padding: 16px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 500; text-decoration: none;
  transition: all 0.2s; letter-spacing: 0.3px;
  display: inline-flex; align-items: center; gap: 8px;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-primary:hover { background: var(--saffron-dark); transform: translateY(-2px); }
.btn-outline {
  border: 1.5px solid rgba(255,255,255,0.3); color: #fff;
  padding: 16px 32px; border-radius: 8px;
  font-size: 15px; font-weight: 400; text-decoration: none;
  transition: all 0.2s; backdrop-filter: blur(4px);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.05); }
.btn-outline-dark {
  border: 1.5px solid var(--border); color: var(--text-dark);
  padding: 14px 28px; border-radius: 8px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: all 0.2s; display: inline-flex; align-items: center; gap: 8px;
  background: var(--white);
}
.btn-outline-dark:hover { border-color: var(--saffron); color: var(--saffron); }

/* HERO */
#hero, .page-hero {
  min-height: 100vh;
  background: linear-gradient(160deg, var(--deep-green) 0%, #0F2519 60%, #1A3A2A 100%);
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding: calc(var(--nav-height) + 40px) 5% 60px;
}
.page-hero { min-height: 50vh; }
.hero-pattern {
  position: absolute; inset: 0; opacity: 0.04;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-glow {
  position: absolute; top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(232,101,26,0.18) 0%, transparent 65%);
  pointer-events: none;
}
.hero-content { position: relative; z-index: 2; max-width: 620px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,101,26,0.15); border: 1px solid rgba(232,101,26,0.35);
  color: var(--saffron-light); padding: 6px 16px; border-radius: 100px;
  font-size: 12px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--saffron-light); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.4)} }
.hero h1, .page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5vw, 68px);
  font-weight: 700; color: #fff;
  line-height: 1.1; margin-bottom: 24px;
}
.hero h1 em, .page-hero h1 em { color: var(--saffron-light); font-style: normal; }
.hero p, .page-hero p {
  font-size: clamp(16px, 2vw, 18px); color: rgba(255,255,255,0.7);
  line-height: 1.7; margin-bottom: 40px; font-weight: 300;
  max-width: 520px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 40px; margin-top: 56px;
  padding-top: 40px; border-top: 1px solid rgba(255,255,255,0.1);
}
.hero-stat-num { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: var(--saffron-light); }
.hero-stat-lbl { font-size: 12px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; }

.hero-image-side {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  width: 380px;
}
.spice-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 24px 20px; text-align: center;
  backdrop-filter: blur(8px);
  transition: transform 0.3s;
}
.spice-card:hover { transform: translateY(-6px); }
.spice-card:nth-child(2) { margin-top: 28px; }
.spice-card:nth-child(4) { margin-top: 28px; }
.spice-emoji { font-size: 36px; margin-bottom: 10px; }
.spice-name { font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.9); }
.spice-origin { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 3px; }

.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.4); font-size: 11px; letter-spacing: 2px; text-transform: uppercase;
  animation: bounce 2s infinite; text-decoration: none;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* HOME HERO BANNER — REDESIGNED */
.hero-banner {
  min-height: 78vh;
  padding: calc(var(--nav-height) + 28px) 5% 56px;
  display: block;
  align-items: unset;
  background: #0A1F14;
}

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

.hero-mesh {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 40%, rgba(232,101,26,0.14) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 20%, rgba(82,183,136,0.1) 0%, transparent 55%),
    radial-gradient(ellipse 50% 40% at 70% 80%, rgba(212,144,10,0.08) 0%, transparent 50%),
    linear-gradient(165deg, #0A1F14 0%, var(--deep-green) 35%, #0F2519 70%, #1A3A2A 100%);
}

.hero-banner .hero-mesh {
  background:
    linear-gradient(to right, rgba(10,31,20,0.88) 0%, rgba(10,31,20,0.62) 32%, rgba(10,31,20,0.28) 52%, rgba(10,31,20,0.08) 72%, transparent 100%),
    linear-gradient(to bottom, rgba(10,31,20,0.5) 0%, transparent 28%, transparent 72%, rgba(10,31,20,0.55) 100%),
    url('../assets/img/banner_image.png') center center / cover no-repeat;
}

.hero-banner .hero-orb { opacity: 0.2; }
.hero-banner .hero-pattern { opacity: 0.03; }
.hero-banner .hero-line { opacity: 0.4; }
.hero-banner .hero-right { display: none; }
.hero-banner .hero-inner {
  grid-template-columns: 1fr;
  max-width: 640px;
}

.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(60px);
  animation: orbFloat 8s ease-in-out infinite;
}
.hero-orb-1 {
  width: 420px; height: 420px; top: -8%; right: 15%;
  background: radial-gradient(circle, rgba(232,101,26,0.22) 0%, transparent 70%);
}
.hero-orb-2 {
  width: 300px; height: 300px; bottom: 10%; left: 5%;
  background: radial-gradient(circle, rgba(82,183,136,0.15) 0%, transparent 70%);
  animation-delay: -3s;
}
.hero-orb-3 {
  width: 200px; height: 200px; top: 40%; right: 40%;
  background: radial-gradient(circle, rgba(212,144,10,0.12) 0%, transparent 70%);
  animation-delay: -5s;
}
@keyframes orbFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

.hero-line {
  position: absolute; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,101,26,0.25), transparent);
}
.hero-line-1 { width: 40%; top: 28%; left: -5%; transform: rotate(-8deg); animation: lineSlide 12s linear infinite; }
.hero-line-2 { width: 30%; bottom: 22%; right: -3%; transform: rotate(5deg); animation: lineSlide 15s linear infinite reverse; }
@keyframes lineSlide {
  0% { opacity: 0; transform: translateX(-20%) rotate(-8deg); }
  50% { opacity: 1; }
  100% { opacity: 0; transform: translateX(20%) rotate(-8deg); }
}

.hero-container {
  position: relative;
  z-index: 2;
}

.hero-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; align-items: center;
  width: 100%;
  margin: 0;
  min-height: calc(78vh - var(--nav-height) - 80px);
}

.hero-left { max-width: 600px; }

.hero-banner .hero-badge { margin-bottom: 20px; }
.hero-banner h1 {
  font-size: clamp(36px, 4.8vw, 64px);
  line-height: 1.05; margin-bottom: 18px;
  letter-spacing: -0.5px;
  color: #fff;
}

.hero-gradient-text {
  background: linear-gradient(135deg, var(--saffron-light) 0%, var(--turmeric) 50%, var(--saffron) 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.hero-banner h1 em {
  position: relative; font-style: normal;
  color: #fff;
}
.hero-banner h1 em::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0;
  height: 4px; border-radius: 2px;
  background: linear-gradient(90deg, var(--saffron), var(--turmeric));
  opacity: 0.7;
}

.hero-desc {
  font-size: clamp(15px, 1.6vw, 17px);
  color: rgba(255,255,255,0.72);
  line-height: 1.65; margin-bottom: 20px;
  max-width: 520px;
}

.hero-trust {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 22px;
}
.hero-trust-item {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 8px 14px; border-radius: 100px;
  font-size: 12px; font-weight: 500;
  color: rgba(255,255,255,0.8);
  backdrop-filter: blur(8px);
}
.hero-trust-icon { font-size: 14px; }

.btn-hero-primary {
  padding: 15px 30px; border-radius: 10px;
  box-shadow: 0 8px 32px rgba(232,101,26,0.35);
  font-size: 15px;
}
.btn-hero-primary .btn-arrow {
  display: inline-block; transition: transform 0.2s;
}
.btn-hero-primary:hover .btn-arrow { transform: translateX(4px); }

.btn-hero-outline {
  padding: 15px 28px; border-radius: 10px;
  background: rgba(255,255,255,0.04);
}

.hero-stats-pills {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 10px; margin-top: 28px;
}
.hero-pill {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px; padding: 14px 12px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s;
}
.hero-pill:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(232,101,26,0.3);
  transform: translateY(-3px);
}
.hero-pill-num {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  color: var(--saffron-light); line-height: 1.2;
}
.hero-pill-lbl {
  font-size: 10px; color: rgba(255,255,255,0.45);
  text-transform: uppercase; letter-spacing: 1px;
  margin-top: 6px;
}

/* Hero showcase — orbit visual */
.hero-right {
  display: flex; justify-content: center; align-items: center;
  position: relative;
  max-width: 100%;
  overflow: hidden;
}

.hero-showcase {
  position: relative;
  width: 360px; height: 360px;
}

.hero-ring {
  position: absolute; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.08);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
}
.hero-ring-outer {
  width: 100%; height: 100%;
  animation: ringRotate 30s linear infinite;
  border-style: dashed;
  border-color: rgba(232,101,26,0.15);
}
.hero-ring-inner {
  width: 72%; height: 72%;
  animation: ringRotate 20s linear infinite reverse;
  border-color: rgba(82,183,136,0.12);
}
@keyframes ringRotate { to { transform: translate(-50%, -50%) rotate(360deg); } }

.hero-center {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 160px; height: 160px;
  background: linear-gradient(145deg, rgba(232,101,26,0.2), rgba(45,106,79,0.25));
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  backdrop-filter: blur(16px);
  box-shadow: 0 0 60px rgba(232,101,26,0.15), inset 0 0 30px rgba(255,255,255,0.05);
  z-index: 3;
}
.hero-center-logo {
  font-family: 'Playfair Display', serif;
  font-size: 42px; font-weight: 900; color: #fff;
  line-height: 1;
}
.hero-center-tag {
  font-size: 11px; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--saffron-light);
  margin-top: 4px;
}
.hero-center-sub {
  font-size: 9px; color: rgba(255,255,255,0.4);
  letter-spacing: 1px; margin-top: 2px;
}

.hero-float {
  position: absolute;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px; padding: 14px 16px;
  backdrop-filter: blur(12px);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  z-index: 4;
  transition: transform 0.3s, box-shadow 0.3s;
}
.hero-float:hover {
  transform: scale(1.08) !important;
  box-shadow: 0 12px 40px rgba(232,101,26,0.2);
  border-color: rgba(232,101,26,0.35);
}
.hf-emoji { font-size: 28px; line-height: 1; }
.hf-name { font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85); letter-spacing: 0.5px; }

.hero-float-1 { top: 2%; left: 50%; transform: translateX(-50%); animation: floatY 4s ease-in-out infinite; }
.hero-float-2 { top: 18%; right: 0; animation: floatY 5s ease-in-out infinite -1s; }
.hero-float-3 { bottom: 18%; right: 2%; animation: floatY 4.5s ease-in-out infinite -2s; }
.hero-float-4 { bottom: 2%; left: 50%; transform: translateX(-50%); animation: floatY 5.5s ease-in-out infinite -0.5s; }
.hero-float-5 { top: 18%; left: 0; animation: floatY 4.8s ease-in-out infinite -1.5s; }

@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.hero-float-1 { animation-name: floatYCenter; }
.hero-float-4 { animation-name: floatYCenter; }
@keyframes floatYCenter {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

.hero-featured-card {
  position: absolute; bottom: -24px; left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  border-radius: 16px; padding: 16px 28px;
  text-align: center; z-index: 5;
  box-shadow: 0 12px 40px rgba(232,101,26,0.4);
  min-width: 220px;
  animation: cardPulse 3s ease-in-out infinite;
}
@keyframes cardPulse {
  0%, 100% { box-shadow: 0 12px 40px rgba(232,101,26,0.4); }
  50% { box-shadow: 0 16px 50px rgba(232,101,26,0.55); }
}
.hfc-label {
  font-size: 10px; text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,0.75); font-weight: 500;
}
.hfc-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px; font-weight: 700; color: #fff; margin-top: 4px;
}
.hfc-dots {
  display: flex; justify-content: center; gap: 6px; margin-top: 8px;
}
.hfc-dots span {
  width: 6px; height: 6px; border-radius: 50%;
  background: rgba(255,255,255,0.5);
  animation: dotBlink 1.5s ease-in-out infinite;
}
.hfc-dots span:nth-child(2) { animation-delay: 0.3s; }
.hfc-dots span:nth-child(3) { animation-delay: 0.6s; }
@keyframes dotBlink {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.2); }
}

.hero-mobile-spices { display: none; }

.hero-banner .hero-scroll {
  bottom: 36px;
}
.hero-scroll-mouse {
  width: 22px; height: 34px;
  border: 2px solid rgba(255,255,255,0.25);
  border-radius: 12px; position: relative;
}
.hero-scroll-mouse::after {
  content: ''; position: absolute;
  top: 6px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 8px; border-radius: 2px;
  background: var(--saffron-light);
  animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(12px); }
}

/* PAGE HEADER (inner pages) */
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: rgba(255,255,255,0.5); margin-bottom: 20px;
}
.page-breadcrumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.page-breadcrumb a:hover { color: var(--saffron-light); }
.page-breadcrumb span { color: var(--saffron-light); }

/* SECTIONS */
section { padding: 80px 5%; }
.section-label {
  font-size: 12px; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--saffron); font-weight: 500; margin-bottom: 14px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 3.5vw, 48px); font-weight: 700;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 18px;
}
.section-subtitle { font-size: 17px; color: var(--text-mid); line-height: 1.7; max-width: 580px; }
.section-header { margin-bottom: 48px; }
.section-header-center { text-align: center; max-width: 640px; margin: 0 auto 52px; }
.section-header-flex {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 52px; flex-wrap: wrap; gap: 20px;
}
.bg-cream { background: var(--cream); }
.bg-white { background: var(--white); }
.bg-green { background: var(--deep-green); }
.bg-section { background: var(--section-bg); }

/* MARQUEE */
.marquee-strip {
  background: var(--deep-green); padding: 16px 0; overflow: hidden;
}
.marquee-track {
  display: flex; gap: 48px; align-items: center;
  animation: scroll 30s linear infinite; white-space: nowrap;
}
@keyframes scroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  color: rgba(255,255,255,0.6); font-size: 13px; letter-spacing: 2px;
  text-transform: uppercase; font-weight: 400; display: flex; align-items: center; gap: 16px;
}
.marquee-item::after { content: '◆'; color: var(--saffron); font-size: 8px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-block { position: relative; }
.about-img-main {
  position: relative;
  background: linear-gradient(135deg, var(--mid-green), var(--deep-green));
  border-radius: 20px;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 56px rgba(14,36,25,0.28);
}
.about-img-main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../assets/img/export_product_img.png') center center / cover no-repeat;
}
.about-img-main::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, rgba(23,70,50,0.84) 0%, rgba(26,58,42,0.78) 45%, rgba(14,36,25,0.86) 100%);
}
.about-img-main > * {
  position: relative;
  z-index: 1;
}
.about-img-main .big-num { font-family: 'Playfair Display', serif; font-size: 80px; font-weight: 900; opacity: 0.15; line-height: 1; }
.about-img-main .txt { font-size: 15px; opacity: 0.8; margin-top: -20px; }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: var(--saffron); color: #fff;
  padding: 20px 24px; border-radius: 16px; text-align: center;
  box-shadow: 0 12px 40px rgba(232,101,26,0.35);
}
.about-badge-float .num { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 700; }
.about-badge-float .lbl { font-size: 11px; font-weight: 400; opacity: 0.9; margin-top: 2px; }
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.about-feature { display: flex; gap: 16px; align-items: flex-start; }
.about-feature-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(232,101,26,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 20px; flex-shrink: 0;
}
.about-feature h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.about-feature p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* HOME ABOUT (Home page redesign) */
.home-about { position: relative; overflow: hidden; }
.home-about-wrap {
  max-width: var(--site-container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.home-about-visual { position: relative; }
.home-about-panel {
  position: relative;
  z-index: 2;
  border-radius: 26px;
  padding: 36px 32px;
  color: #fff;
  background: linear-gradient(145deg, #174632 0%, #1A3A2A 45%, #0E2419 100%);
  border: 1px solid rgba(255,255,255,0.09);
  box-shadow: 0 22px 70px rgba(14,36,25,0.35);
  overflow: hidden;
  isolation: isolate;
}
.home-about-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url('../assets/img/about_us_who_we_are.png') center center / cover no-repeat;
}
.home-about-panel::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(145deg, rgba(23,70,50,0.82) 0%, rgba(26,58,42,0.76) 42%, rgba(14,36,25,0.88) 100%);
}
.home-about-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: var(--saffron-light);
  background: rgba(232,101,26,0.16);
  border: 1px solid rgba(232,101,26,0.36);
  border-radius: 100px;
  padding: 8px 12px;
}
.home-about-year {
  font-family: 'Playfair Display', serif;
  font-size: clamp(58px, 7vw, 84px);
  line-height: 1;
  margin-top: 18px;
  color: rgba(255,255,255,0.2);
}
.home-about-panel h3 {
  font-size: 22px;
  line-height: 1.3;
  margin-top: -6px;
  margin-bottom: 12px;
  max-width: 380px;
}
.home-about-panel p {
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}
.home-about-meta {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.home-about-meta span {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  padding: 7px 10px;
  border-radius: 9px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
}
.home-about-float {
  position: absolute;
  right: -20px;
  bottom: 26px;
  z-index: 3;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  min-width: 190px;
  box-shadow: 0 16px 40px rgba(232,101,26,0.32);
}
.home-about-float strong {
  display: block;
  font-size: 13px;
  letter-spacing: 0.3px;
}
.home-about-float span {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  opacity: 0.9;
}
.home-about-orb {
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  right: -60px;
  top: -50px;
  background: radial-gradient(circle, rgba(232,101,26,0.24) 0%, transparent 70%);
  filter: blur(6px);
}
.home-about-content .section-title { margin-bottom: 14px; }
.home-about-content .section-subtitle {
  max-width: 650px;
  margin-bottom: 26px;
}
.home-about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
.home-about-feature {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;
  background: rgba(255,255,255,0.62);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 14px;
  padding: 14px;
  transition: all 0.25s;
}
.home-about-feature:hover {
  transform: translateY(-3px);
  border-color: rgba(232,101,26,0.25);
  box-shadow: 0 14px 40px rgba(232,101,26,0.11);
}
.home-about-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background: linear-gradient(135deg, rgba(232,101,26,0.16), rgba(212,144,10,0.12));
  border: 1px solid rgba(232,101,26,0.2);
}
.home-about-feature h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.home-about-feature p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.6;
}
.home-about-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* HOME TEAM */
.home-team {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, var(--cream) 0%, #f5f0e8 50%, var(--section-bg) 100%);
}
.home-team::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(232,101,26,0.09) 0%, transparent 42%),
    radial-gradient(circle at 88% 82%, rgba(45,106,79,0.1) 0%, transparent 42%);
  pointer-events: none;
}
.home-team::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: min(900px, 80%);
  height: 320px;
  background: radial-gradient(ellipse, rgba(232,101,26,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 52px;
  position: relative;
  z-index: 1;
}
.team-card {
  position: relative;
  background: var(--white);
  border-radius: 24px;
  padding: 0 26px 36px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 12px 48px rgba(0,0,0,0.07);
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease, border-color 0.4s ease;
  overflow: hidden;
}
.team-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, rgba(45,106,79,0.25), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}
.team-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 64px rgba(232,101,26,0.14);
  border-color: rgba(232,101,26,0.22);
}
.team-card:hover::after { opacity: 1; }
.team-card-header {
  height: 88px;
  margin: 0 -26px 0;
  background: linear-gradient(135deg, #1a4532 0%, #2d6a4f 40%, #1a3a2a 100%);
  position: relative;
  overflow: hidden;
}
.team-card-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(255,255,255,0.12) 1px, transparent 1px);
  background-size: 14px 14px;
  opacity: 0.35;
}
.team-card-header::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 55%, rgba(255,255,255,0.1) 0%, transparent 48%),
    radial-gradient(circle at 82% 25%, rgba(232,101,26,0.18) 0%, transparent 42%);
  pointer-events: none;
}
.team-founder .team-card-header {
  background: linear-gradient(135deg, #b84a0a 0%, var(--saffron) 40%, var(--turmeric) 100%);
}
.team-founder .team-card-header::after {
  background:
    radial-gradient(circle at 22% 65%, rgba(255,255,255,0.14) 0%, transparent 50%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.1) 0%, transparent 38%);
}
.team-founder::after {
  background: linear-gradient(90deg, transparent, var(--saffron), transparent);
}
.team-avatar {
  position: relative;
  z-index: 2;
  margin-top: -76px;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}
.team-avatar::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 168px;
  height: 168px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(45,106,79,0.14) 0%, transparent 68%);
  z-index: -1;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.team-founder .team-avatar::before {
  background: radial-gradient(circle, rgba(232,101,26,0.18) 0%, transparent 68%);
}
.team-card:hover .team-avatar::before {
  transform: translate(-50%, -50%) scale(1.08);
}
.team-avatar-ring {
  width: 152px;
  height: 152px;
  border-radius: 50%;
  padding: 5px;
  background: linear-gradient(145deg, var(--mid-green), var(--deep-green), #1a3a2a);
  box-shadow: 0 10px 36px rgba(26,58,42,0.22), 0 0 0 1px rgba(255,255,255,0.5) inset;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
}
.team-founder .team-avatar-ring {
  background: linear-gradient(145deg, var(--saffron-light), var(--saffron), var(--turmeric));
  box-shadow: 0 10px 36px rgba(232,101,26,0.32), 0 0 0 1px rgba(255,255,255,0.5) inset;
}
.team-card:hover .team-avatar-ring {
  transform: scale(1.04);
  box-shadow: 0 16px 48px rgba(232,101,26,0.28);
}
.team-photo {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  display: block;
  border: 5px solid var(--white);
  background: var(--cream);
}
.team-photo-placeholder {
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(180deg, #f8f4ef 0%, #ede8e0 100%);
}
.team-card-body {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.team-role-pill {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--mid-green);
  background: rgba(45,106,79,0.08);
  border: 1px solid rgba(45,106,79,0.18);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.team-role-founder {
  color: var(--saffron-dark);
  background: rgba(232,101,26,0.1);
  border-color: rgba(232,101,26,0.28);
}
.team-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.35;
  position: relative;
  padding-bottom: 14px;
}
.team-card h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 36px;
  height: 3px;
  border-radius: 3px;
  background: linear-gradient(90deg, var(--mid-green), var(--deep-green));
}
.team-founder h3::after {
  background: linear-gradient(90deg, var(--saffron-light), var(--saffron));
}
.team-desc {
  font-size: 14px;
  color: var(--text-mid);
  line-height: 1.75;
  max-width: 290px;
  margin: 0 auto;
}
.team-founder {
  border-color: rgba(232,101,26,0.18);
  box-shadow: 0 12px 48px rgba(232,101,26,0.1);
}
.team-founder:hover {
  box-shadow: 0 24px 64px rgba(232,101,26,0.18);
}

/* About page — distinct team band between Company Info & CTA */
.home-team-about {
  background: var(--white);
  box-shadow:
    inset 0 4px 0 0 rgba(45,106,79,0.12),
    inset 0 -4px 0 0 rgba(232,101,26,0.1),
    0 -24px 48px rgba(26,58,42,0.04),
    0 24px 48px rgba(26,58,42,0.04);
}
.home-team-about::before {
  background:
    linear-gradient(180deg, rgba(45,106,79,0.04) 0%, transparent 28%),
    linear-gradient(0deg, rgba(232,101,26,0.04) 0%, transparent 28%),
    radial-gradient(circle at 10% 25%, rgba(45,106,79,0.07) 0%, transparent 38%),
    radial-gradient(circle at 90% 75%, rgba(232,101,26,0.06) 0%, transparent 38%);
}
.home-team-about::after {
  height: 1px;
  width: min(720px, 72%);
  top: auto;
  bottom: 0;
  transform: translate(-50%, 0);
  background: linear-gradient(90deg, transparent, rgba(45,106,79,0.18), rgba(232,101,26,0.22), rgba(45,106,79,0.18), transparent);
  border-radius: 0;
}

/* VALUES GRID */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card {
  background: var(--white); border-radius: 16px; padding: 32px 28px;
  border: 1px solid var(--border); text-align: center;
  transition: all 0.3s;
}
.value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.08); border-color: var(--saffron-light); }
.value-icon { font-size: 36px; margin-bottom: 16px; }
.value-card h3 { font-size: 17px; font-weight: 600; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-mid); line-height: 1.6; }

/* PRODUCTS */
.product-card[id] { scroll-margin-top: calc(var(--nav-height) + 24px); }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 24px; }
.product-card {
  background: var(--cream); border-radius: 20px;
  padding: 36px 28px; position: relative; overflow: hidden;
  transition: all 0.3s; border: 1px solid transparent;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); border-color: var(--saffron-light); }
.product-card-accent {
  position: absolute; top: 0; right: 0;
  width: 120px; height: 120px;
  background: radial-gradient(circle at top right, rgba(232,101,26,0.08) 0%, transparent 70%);
}
.product-img-wrap {
  width: 100%;
  height: 160px;
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.05);
}
.product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.product-card:hover .product-img { transform: scale(1.05); }
.product-icon { font-size: 44px; margin-bottom: 16px; }
.product-name { font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; margin-bottom: 4px; }
.product-name-hindi {
  font-size: 13px;
  font-weight: 500;
  color: var(--saffron-dark);
  letter-spacing: 0.3px;
  margin-bottom: 10px;
}
.product-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; margin-bottom: 20px; }
.product-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  background: rgba(45,106,79,0.1); color: var(--mid-green);
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.5px;
}
.product-export { margin-top: 20px; font-size: 12px; color: var(--text-light); display: flex; align-items: center; gap: 6px; }
.product-export span { width: 6px; height: 6px; background: var(--light-green); border-radius: 50%; }
.product-card.featured {
  background: linear-gradient(135deg, #1A3A2A, #2D6A4F); color: #fff;
}
.product-card.featured .product-name { color: #fff; }
.product-card.featured .product-desc { color: rgba(255,255,255,0.7); }

/* WHY US */
.why-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; align-items: center; }
.why-text .section-title { color: #fff; }
.why-text .section-subtitle { color: rgba(255,255,255,0.65); }
.why-text .section-label { color: var(--saffron-light); }
.why-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px; padding: 28px 24px; transition: background 0.2s;
}
.why-card:hover { background: rgba(255,255,255,0.1); }
.why-card-icon { font-size: 28px; margin-bottom: 14px; }
.why-card h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 8px; }
.why-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* MARKETS */
.markets-intro { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; margin-bottom: 60px; }
.markets-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
.market-card {
  background: var(--white); border-radius: 14px; padding: 24px 20px;
  display: flex; align-items: center; gap: 14px;
  border: 1px solid var(--border); transition: all 0.2s;
}
.market-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.08); transform: translateY(-3px); }
.market-flag { font-size: 28px; }
.market-name { font-size: 14px; font-weight: 600; }
.market-type { font-size: 11px; color: var(--text-light); margin-top: 2px; }
.market-active { border-left: 3px solid var(--light-green); }
.market-soon { border-left: 3px solid var(--turmeric); }

/* QUALITY */
.quality-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.quality-card {
  border: 1px solid var(--border); border-radius: 20px;
  padding: 40px 32px; position: relative; overflow: hidden;
  transition: all 0.3s;
}
.quality-card:hover { border-color: var(--saffron-light); box-shadow: 0 8px 30px rgba(232,101,26,0.08); }
.quality-card-top { display: flex; align-items: center; gap: 16px; margin-bottom: 20px; }
.quality-num {
  font-family: 'Playfair Display', serif; font-size: 48px; font-weight: 900;
  color: rgba(232,101,26,0.12); position: absolute; top: 16px; right: 24px;
}
.quality-icon-bg {
  width: 52px; height: 52px; border-radius: 12px;
  background: linear-gradient(135deg, var(--saffron), var(--turmeric));
  display: flex; align-items: center; justify-content: center; font-size: 24px;
}
.quality-card h3 { font-size: 18px; font-weight: 600; }
.quality-card p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* PROCESS */
.process-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; margin-top: 52px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 36px; left: 10%; right: 10%;
  height: 1px; background: linear-gradient(90deg, transparent, var(--saffron-light), transparent);
  z-index: 0;
}
.process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--white); border: 2px solid var(--saffron-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px;
  box-shadow: 0 4px 20px rgba(232,101,26,0.15);
}
.step-num {
  position: absolute; top: 0; right: calc(50% - 44px);
  width: 20px; height: 20px; background: var(--saffron);
  border-radius: 50%; font-size: 10px; font-weight: 700; color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: 14px; font-weight: 600; margin-bottom: 8px; }
.process-step p { font-size: 12px; color: var(--text-mid); line-height: 1.6; }

/* CERTIFICATIONS */
.cert-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.cert-card {
  border: 1.5px solid var(--border); border-radius: 16px;
  padding: 32px 24px; text-align: center; transition: all 0.2s;
}
.cert-card:hover { border-color: var(--saffron-light); box-shadow: 0 6px 24px rgba(232,101,26,0.1); }
.cert-icon { font-size: 36px; margin-bottom: 12px; }
.cert-name { font-size: 14px; font-weight: 600; margin-bottom: 6px; }
.cert-desc { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* COMPANY */
.company-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; align-items: start; }
.info-table { width: 100%; border-collapse: collapse; margin-top: 28px; }
.info-table tr { border-bottom: 1px solid var(--border); }
.info-table tr:last-child { border-bottom: none; }
.info-table td { padding: 14px 0; font-size: 14px; }
.info-table td:first-child { color: var(--text-light); width: 40%; font-weight: 400; }
.info-table td:last-child { color: var(--text-dark); font-weight: 500; }
.company-sidebar { display: flex; flex-direction: column; gap: 20px; }
.sidebar-card {
  background: var(--white); border-radius: 16px; padding: 28px 24px;
  border: 1px solid var(--border);
}
.sidebar-card h4 { font-size: 15px; font-weight: 600; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-text .section-title { color: #fff; }
.contact-text .section-subtitle { color: rgba(255,255,255,0.65); max-width: 460px; }
.contact-text .section-label { color: var(--saffron-light); }
.contact-info { display: flex; flex-direction: column; gap: 20px; margin-top: 36px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon {
  width: 44px; height: 44px; border-radius: 10px;
  background: rgba(255,255,255,0.08); display: flex; align-items: center;
  justify-content: center; font-size: 18px; flex-shrink: 0;
}
.contact-item-label { font-size: 11px; text-transform: uppercase; letter-spacing: 1px; color: var(--saffron-light); font-weight: 500; margin-bottom: 4px; }
.contact-item-val { font-size: 14px; color: rgba(255,255,255,0.85); line-height: 1.6; }
.contact-form {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px; padding: 40px 36px;
}
.contact-form h3 { font-size: 20px; font-weight: 600; color: #fff; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 12px; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-bottom: 8px; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px; padding: 12px 16px; color: #fff; font-family: 'DM Sans', sans-serif;
  font-size: 14px; outline: none; transition: border-color 0.2s;
}
.form-group input::placeholder, .form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group select option { background: var(--deep-green); }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--saffron-light); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.submit-btn {
  width: 100%; background: var(--saffron); color: #fff;
  padding: 15px; border: none; border-radius: 8px;
  font-size: 15px; font-weight: 500; cursor: pointer;
  font-family: 'DM Sans', sans-serif; transition: background 0.2s;
  letter-spacing: 0.3px;
}
.submit-btn:hover { background: var(--saffron-dark); }

/* Light form variant */
.contact-form-light {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 20px; padding: 40px 36px;
}
.contact-form-light h3 { color: var(--text-dark); }
.contact-form-light .form-group label { color: var(--text-light); }
.contact-form-light .form-group input,
.contact-form-light .form-group textarea,
.contact-form-light .form-group select {
  background: var(--cream); border-color: var(--border); color: var(--text-dark);
}
.contact-form-light .form-group input::placeholder,
.contact-form-light .form-group textarea::placeholder { color: var(--text-light); }
.contact-form-light .form-group select option { background: var(--white); color: var(--text-dark); }

/* CTA BANNER */
.cta-section {
  padding: 80px 5%;
  background: linear-gradient(180deg, var(--cream) 0%, var(--section-bg) 100%);
}

.cta-banner {
  position: relative;
  max-width: var(--site-container);
  margin: 0 auto;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(135deg, #1A3A2A 0%, #0F2519 45%, #163828 100%);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 24px 80px rgba(14,36,25,0.35);
}

.cta-banner-bg {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.cta-orb {
  position: absolute; border-radius: 50%; filter: blur(50px);
}
.cta-orb-1 {
  width: 320px; height: 320px; top: -40%; right: -5%;
  background: radial-gradient(circle, rgba(232,101,26,0.35) 0%, transparent 70%);
  animation: ctaOrb 8s ease-in-out infinite;
}
.cta-orb-2 {
  width: 240px; height: 240px; bottom: -30%; left: 10%;
  background: radial-gradient(circle, rgba(82,183,136,0.2) 0%, transparent 70%);
  animation: ctaOrb 10s ease-in-out infinite -3s;
}
@keyframes ctaOrb {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(15px, -10px); }
}
.cta-line {
  position: absolute; top: 50%; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(232,101,26,0.2), transparent);
}

.cta-banner-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.4fr auto;
  gap: 40px; align-items: center;
  padding: 52px 56px;
}

.cta-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,101,26,0.18); border: 1px solid rgba(232,101,26,0.35);
  color: var(--saffron-light); padding: 7px 16px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: 1.8px; text-transform: uppercase;
  margin-bottom: 20px;
}
.cta-badge span {
  width: 6px; height: 6px; background: var(--saffron-light);
  border-radius: 50%; animation: pulse 2s infinite;
}

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3.2vw, 40px);
  color: #fff; font-weight: 700;
  line-height: 1.15; margin-bottom: 14px;
  letter-spacing: -0.3px;
}
.cta-banner h2 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--saffron-light), var(--turmeric));
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-banner p {
  color: rgba(255,255,255,0.72);
  font-size: 16px; line-height: 1.7;
  max-width: 520px; margin-bottom: 22px;
}

.cta-trust {
  display: flex; flex-wrap: wrap; gap: 10px;
}
.cta-trust span {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: 12px; font-weight: 500; color: rgba(255,255,255,0.75);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 7px 14px; border-radius: 100px;
}

.cta-actions {
  display: flex; flex-direction: column; gap: 12px;
  min-width: 220px;
}
.btn-cta-primary {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff; padding: 18px 32px; border-radius: 12px;
  font-size: 15px; font-weight: 600; text-decoration: none;
  border: none; cursor: pointer; font-family: 'DM Sans', sans-serif;
  box-shadow: 0 10px 36px rgba(232,101,26,0.4);
  transition: all 0.25s; white-space: nowrap;
}
.btn-cta-primary span { transition: transform 0.2s; }
.btn-cta-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 44px rgba(232,101,26,0.5);
}
.btn-cta-primary:hover span { transform: translateX(4px); }

.btn-cta-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.08);
  border: 1.5px solid rgba(255,255,255,0.25);
  color: #fff; padding: 16px 28px; border-radius: 12px;
  font-size: 14px; font-weight: 500; text-decoration: none;
  transition: all 0.25s; white-space: nowrap;
}
.btn-cta-secondary:hover {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.45);
}

.cta-spices {
  position: absolute; right: 48px; top: 50%;
  transform: translateY(-50%);
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0.15; font-size: 28px; z-index: 1;
  pointer-events: none;
}
.cta-spices span { animation: ctaSpiceFloat 4s ease-in-out infinite; }
.cta-spices span:nth-child(2) { animation-delay: -1s; font-size: 32px; }
.cta-spices span:nth-child(3) { animation-delay: -2s; }
.cta-spices span:nth-child(4) { animation-delay: -0.5s; font-size: 24px; }
@keyframes ctaSpiceFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

/* FOOTER */
footer {
  background: #0C1F16;
  padding: 60px 5% 30px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.7; margin-top: 14px; max-width: 280px; }
.footer-col h5 { font-size: 11px; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 14px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-col ul a:hover { color: var(--saffron-light); }
.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: 13px; color: rgba(255,255,255,0.35); }
.cin-badge {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 6px; padding: 6px 14px;
  font-size: 11px; color: rgba(255,255,255,0.4); font-family: monospace;
  letter-spacing: 0.5px;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed; bottom: calc(24px + var(--safe-bottom)); right: 24px;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--saffron); color: #fff; border: none;
  font-size: 20px; cursor: pointer; z-index: 997;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(232,101,26,0.4);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--saffron-dark); transform: translateY(-3px); }

/* WHATSAPP FLOAT */
.whatsapp-float {
  position: fixed;
  bottom: calc(24px + var(--safe-bottom));
  left: 24px;
  z-index: 997;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
}
.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}
.whatsapp-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.55);
}

/* ANIMATIONS */
.fade-up { opacity: 0; transform: translateY(30px); transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }
.fade-up:nth-child(5) { transition-delay: 0.4s; }
.fade-up:nth-child(6) { transition-delay: 0.5s; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden;
}
.faq-question {
  width: 100%; background: none; border: none; cursor: pointer;
  padding: 20px 24px; text-align: left;
  font-size: 15px; font-weight: 600; color: var(--text-dark);
  display: flex; justify-content: space-between; align-items: center;
  font-family: 'DM Sans', sans-serif;
}
.faq-question::after { content: '+'; font-size: 20px; color: var(--saffron); transition: transform 0.3s; }
.faq-item.open .faq-question::after { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-item.open .faq-answer { max-height: 200px; padding: 0 24px 20px; }
.faq-answer p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-image-side { display: none; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; min-height: auto; }
  .hero-right { order: -1; }
  .hero-showcase { width: 340px; height: 340px; margin: 0 auto; }
  .hero-center { width: 130px; height: 130px; }
  .hero-center-logo { font-size: 34px; }
  .hero-float { padding: 10px 12px; }
  .hf-emoji { font-size: 22px; }
  .hero-stats-pills { grid-template-columns: repeat(2, 1fr); }
  .hero-left { max-width: 100%; text-align: center; margin: 0 auto; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-trust { justify-content: center; }
  .hero-actions { justify-content: center; }
  .about-grid, .why-grid, .company-grid, .contact-grid, .markets-intro { grid-template-columns: 1fr; gap: 40px; }
  .home-about-wrap { grid-template-columns: 1fr; gap: 28px; }
  .home-about-content { order: 1; }
  .home-about-visual { order: 0; max-width: 640px; }
  .quality-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 32px; }
  .process-steps::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --nav-height: 64px; }
  nav .logo {
    height: var(--nav-height);
    max-height: var(--nav-height);
  }
  nav .logo-img {
    height: var(--nav-height);
    max-height: var(--nav-height);
    width: auto;
    max-width: min(200px, 52vw);
    object-fit: contain;
    box-shadow: -4px 0 4px rgba(0, 0, 0, 0.2), 4px 0 4px rgba(0, 0, 0, 0.2);
  }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu { display: flex; }
  .bottom-nav { display: block; }
  body { padding-bottom: calc(var(--bottom-nav-height) + var(--safe-bottom)); }
  .back-to-top { bottom: calc(80px + var(--safe-bottom)); }
  .whatsapp-float { bottom: calc(80px + var(--safe-bottom)); left: 16px; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 28px; height: 28px; }
  section { padding: 60px 5%; }
  #hero, .page-hero { min-height: auto; padding: calc(var(--nav-height) + 32px) 5% 48px; }
  .page-hero { min-height: auto; }
  .hero-banner { min-height: auto; padding: calc(var(--nav-height) + 24px) 5% 40px; }
  .hero-banner .hero-mesh {
    background:
      linear-gradient(to bottom, rgba(10,31,20,0.82) 0%, rgba(10,31,20,0.55) 45%, rgba(10,31,20,0.75) 100%),
      url('../assets/img/banner_image.png') center center / cover no-repeat;
  }
  .hero-banner .hero-inner { max-width: none; }
  .hero-right { display: none; }
  .hero-left { order: 0; }
  .hero-showcase { width: 300px; height: 300px; }
  .hero-center { width: 110px; height: 110px; }
  .hero-center-logo { font-size: 28px; }
  .hero-featured-card { bottom: -16px; padding: 12px 20px; min-width: 180px; }
  .hfc-title { font-size: 14px; }
  .hero-float-5 { display: none; }
  .hero-stats { flex-wrap: wrap; gap: 24px; margin-top: 40px; padding-top: 32px; }
  .hero-stat-num { font-size: 28px; }
  .hero-stats-pills { margin-top: 32px; gap: 10px; }
  .hero-pill { padding: 14px 10px; }
  .hero-pill-num { font-size: 18px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn-primary,
  .hero-actions .btn-outline { width: 100%; justify-content: center; text-align: center; }
  .hero-banner .hero-scroll { display: none; }
  .hero-mobile-spices {
    display: block; position: relative; z-index: 3;
    margin-top: 8px; overflow: hidden;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  }
  .hero-mobile-scroll {
    display: flex; gap: 12px; padding: 4px 0 8px;
    overflow-x: auto; scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch; scrollbar-width: none;
  }
  .hero-mobile-scroll::-webkit-scrollbar { display: none; }
  .hero-m-chip {
    flex-shrink: 0; scroll-snap-align: start;
    display: flex; align-items: center; gap: 8px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 10px 18px; border-radius: 100px;
    font-size: 13px; font-weight: 500; color: rgba(255,255,255,0.85);
    backdrop-filter: blur(8px);
  }
  .hero-m-chip span { font-size: 18px; }
  .page-hero .hero-scroll { display: none; }
  .home-about-panel { padding: 28px 22px; border-radius: 20px; }
  .home-about-panel h3 { font-size: 19px; }
  .home-about-year { font-size: 62px; }
  .home-about-float {
    position: static;
    margin-top: 12px;
    min-width: 0;
    width: 100%;
  }
  .home-about-meta span { font-size: 11px; }
  .home-about-feature { grid-template-columns: 40px 1fr; gap: 10px; }
  .home-about-icon { width: 40px; height: 40px; font-size: 18px; }
  .home-about-actions .btn-primary,
  .home-about-actions .btn-outline-dark {
    width: 100%;
    justify-content: center;
  }
  .quality-grid, .why-cards, .form-row, .values-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; gap: 28px; }
  .team-avatar-ring { width: 136px; height: 136px; }
  .team-avatar { margin-top: -68px; }
  .team-avatar::before { width: 150px; height: 150px; }
  .team-card-header { height: 76px; }
  .process-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-section { padding: 60px 5%; }
  .cta-banner-grid { grid-template-columns: 1fr; padding: 40px 28px; text-align: center; gap: 28px; }
  .cta-banner p { margin-left: auto; margin-right: auto; }
  .cta-trust { justify-content: center; }
  .cta-actions { min-width: 0; width: 100%; }
  .btn-cta-primary, .btn-cta-secondary { width: 100%; }
  .cta-spices { display: none; }
  .about-badge-float { right: 10px; bottom: -10px; }
  footer .logo-img { height: 44px; max-width: 150px; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .markets-grid { grid-template-columns: 1fr 1fr; }
  .hero h1, .page-hero h1 { font-size: 32px; }
  .hero-banner h1 { font-size: 34px; }
  .hero-trust-item { font-size: 11px; padding: 6px 10px; }
  .hero-showcase { width: 260px; height: 260px; }
  .hero-float { padding: 8px 10px; border-radius: 12px; }
  .hf-emoji { font-size: 18px; }
  .hf-name { font-size: 9px; }
}

/* Site protection — deterrents only; cannot block OS screenshots or server downloads */
body.site-protected {
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
body.site-protected input,
body.site-protected textarea,
body.site-protected select {
  -webkit-user-select: text;
  user-select: text;
}
body.site-protected img {
  -webkit-user-drag: none;
  user-drag: none;
}
@media print {
  body.site-protected,
  body.site-protected * {
    display: none !important;
    visibility: hidden !important;
  }
}

/* DevTools block overlay */
body.devtools-blocked {
  overflow: hidden !important;
  height: 100vh;
}
.devtools-block-overlay {
  position: fixed;
  inset: 0;
  z-index: 2147483646;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(10, 31, 20, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.devtools-block-card {
  max-width: 460px;
  width: 100%;
  text-align: center;
  background: linear-gradient(145deg, #1A3A2A 0%, #0E2419 100%);
  border: 1px solid rgba(232, 101, 26, 0.35);
  border-radius: 20px;
  padding: 40px 32px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  color: #fff;
}
.devtools-block-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.devtools-block-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 12px;
  color: #fff;
}
.devtools-block-card p {
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  margin: 0;
}
.devtools-block-note {
  margin-top: 18px !important;
  font-size: 12px !important;
  color: var(--saffron-light) !important;
  letter-spacing: 0.3px;
}
