/* ============================================
   BUDHA GLOBAL EXPORTS – Design System
   Colors: Dark Green, Gold, White
   Fonts: Inter (headings), Outfit (body)
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@300;400;500;600;700&display=swap');

/* ---------- CSS Custom Properties ---------- */
:root {
  --green-900: #05511c;
  --green-800: #145A1E;
  --green-700: #1B5E20;
  --green-600: #2E7D32;
  --green-500: #388E3C;
  --gold-600: #B8860B;
  --gold-500: #D4A44C;
  --gold-400: #E8C36A;
  --gold-300: #F0D68A;
  --white: #FFFFFF;
  --off-white: #FAFAF5;
  --gray-100: #F5F5F0;
  --gray-200: #E8E8E0;
  --gray-400: #9E9E8E;
  --gray-600: #5A5A50;
  --gray-800: #333328;
  --charcoal: #1A1A1A;

  --font-heading: 'Inter', sans-serif;
  --font-body: 'Outfit', sans-serif;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, .1);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .15);
  --shadow-xl: 0 20px 60px rgba(0, 0, 0, .2);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --transition: 0.3s cubic-bezier(.4, 0, .2, 1);
  --transition-slow: 0.5s cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--gray-800);
  background: var(--off-white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition);
}

ul,
ol {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

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

/* ---------- Utility ---------- */
.text-gold {
  color: var(--gold-500);
}

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

.text-center {
  text-align: center;
}

.text-white {
  color: var(--white);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 640px;
  margin: 0 auto 48px;
  line-height: 1.8;
}

/* ---------- Animations ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  opacity: 0;
  transition: opacity 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
}

@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(212, 164, 76, .35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 164, 76, .5);
  background: linear-gradient(135deg, var(--gold-400), var(--gold-500));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, .4);
}

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

.btn-green {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(27, 94, 32, .3);
}

.btn-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(27, 94, 32, .45);
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition);
}

.navbar.scrolled {
  background: rgba(13, 59, 19, .97);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .2);
  padding: 10px 0;
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
}

.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--white);
  letter-spacing: 1px;
  line-height: 1.2;
}

.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-weight: 500;
  color: var(--gold-400);
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .8);
  letter-spacing: 0.5px;
  position: relative;
  padding: 4px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-500);
  transition: width var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.85rem !important;
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  border-radius: 50px;
  color: var(--white) !important;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(212, 164, 76, .4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(13, 59, 19, .92) 0%,
      rgba(27, 94, 32, .8) 40%,
      rgba(13, 59, 19, .85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 24px;
}

.hero-tag {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-400);
  padding: 8px 20px;
  border: 1px solid rgba(212, 164, 76, .3);
  border-radius: 50px;
  margin-bottom: 24px;
  backdrop-filter: blur(4px);
}

.hero h1 {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.08;
}

.hero h1 .gold {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, .85);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 540px;
}

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

.hero-stats {
  display: flex;
  gap: 48px;
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, .15);
}

.hero-stat h3 {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-400);
  line-height: 1;
}

.hero-stat p {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, .6);
  margin-top: 4px;
  letter-spacing: 0.5px;
}

/* Decorative floating element */
.hero-decor {
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(212, 164, 76, .1);
  z-index: 1;
}

/* ============================================
   SECTIONS (General)
   ============================================ */
section {
  padding: 100px 0;
}

.section-dark {
  background: var(--green-900);
  color: var(--white);
}

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

.section-dark .section-subtitle {
  color: rgba(255, 255, 255, .65);
}

.section-light {
  background: var(--white);
}

.section-cream {
  background: var(--gray-100);
}

/* ============================================
   ABOUT PREVIEW (Homepage)
   ============================================ */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  margin: 0 auto;
}

.about-image-wrap img {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  max-height: 500px;
  object-fit: cover;
}

.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: rgba(13, 59, 19, .9);
  backdrop-filter: blur(8px);
  color: var(--white);
  padding: 14px 24px;
  border-radius: var(--radius-md);
}

.about-image-badge h4 {
  font-size: 1.6rem;
  color: var(--gold-400);
  font-weight: 800;
  line-height: 1;
}

.about-image-badge p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, .7);
  margin-top: 2px;
}

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

.about-text .section-title {
  text-align: left;
  margin-bottom: 20px;
}

.about-text p {
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-text .about-list {
  margin: 24px 0 32px;
}

.about-text .about-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 0;
  font-weight: 500;
  color: var(--gray-800);
}

.about-text .about-list li .check-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-text .about-list li .check-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--white);
}

/* ============================================
   PRODUCTS
   ============================================ */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, .04);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.product-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.product-card:hover .product-card-image img {
  transform: scale(1.06);
}

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--green-700);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.product-card-body {
  padding: 28px;
}

.product-card-body h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.spec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 20px;
}

.spec-item {
  display: flex;
  flex-direction: column;
  padding: 10px 14px;
  background: var(--gray-100);
  border-radius: var(--radius-sm);
}

.spec-item .spec-label {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-400);
}

.spec-item .spec-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-700);
}

.product-card-coming {
  position: relative;
}

.product-card-coming .product-card-image::after {
  content: 'COMING SOON';
  position: absolute;
  inset: 0;
  background: rgba(13, 59, 19, .7);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--gold-400);
}

/* ============================================
   WHY CHOOSE US
   ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.feature-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: all var(--transition);
}

.feature-card:hover {
  background: rgba(255, 255, 255, .08);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .2);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--white);
  fill: none;
}

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

.feature-card p {
  color: rgba(255, 255, 255, .6);
  font-size: 0.95rem;
  line-height: 1.7;
}


/* ============================================
   MARKETS
   ============================================ */
.markets-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.market-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  border: 1px solid rgba(0, 0, 0, .04);
  position: relative;
  overflow: hidden;
}

.market-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--green-700), var(--gold-500));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.market-card:hover::before {
  transform: scaleX(1);
}

.market-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}

.market-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green-700), var(--green-500));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.market-icon svg {
  width: 32px;
  height: 32px;
  fill: var(--white);
  stroke: none;
}

.market-card h3 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.market-card p {
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  padding: 80px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  border: 1px solid rgba(212, 164, 76, .08);
}

.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -120px;
  left: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .05);
}

.cta-banner h2 {
  color: var(--white);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: rgba(255, 255, 255, .65);
  font-size: 1.05rem;
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* ============================================
   CONTACT / INQUIRY FORM
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 48px;
}

.contact-info {
  padding: 40px;
  background: linear-gradient(135deg, var(--green-800), var(--green-900));
  border-radius: var(--radius-lg);
  color: var(--white);
}

.contact-info h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.contact-info>p {
  color: rgba(255, 255, 255, .6);
  margin-bottom: 32px;
  font-size: 0.95rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-item-icon svg {
  width: 20px;
  height: 20px;
  stroke: var(--gold-400);
  fill: none;
}

.contact-item-text strong {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(255, 255, 255, .5);
  margin-bottom: 4px;
}

.contact-item-text span,
.contact-item-text a {
  color: var(--white);
  font-weight: 500;
}

.contact-item-text a:hover {
  color: var(--gold-400);
}

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}

.contact-form-wrap h3 {
  font-size: 1.4rem;
  margin-bottom: 4px;
}

.contact-form-wrap>p {
  color: var(--gray-600);
  font-size: 0.92rem;
  margin-bottom: 28px;
}

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

.form-row.full {
  grid-template-columns: 1fr;
}

.form-group {
  display: flex;
  flex-direction: column;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--gray-600);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  background: var(--gray-100);
  color: var(--gray-800);
  transition: all var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-600);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(27, 94, 32, .1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-submit {
  margin-top: 8px;
}

.form-submit .btn {
  width: 100%;
  justify-content: center;
  padding: 16px;
  font-size: 1rem;
}

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
  padding: 60px 0;
}

.leadership-content {
  text-align: left;
}

.leadership-desc {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
}

.leadership-meta {
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 3px solid var(--gold-500);
}

.leadership-meta strong {
  display: block;
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 4px;
}

.leadership-meta span {
  color: var(--gold-400);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.leadership-image {
  position: relative;
  display: flex;
  justify-content: center;
}

.leadership-image img {
  width: 100%;
  max-width: 440px;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 50px rgba(0, 0, 0, 0.6));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.image-orb {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  background: radial-gradient(circle, rgba(212, 164, 76, 0.12) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

@media (max-width: 991px) {
  .leadership-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 56px;
    padding: 40px 0;
  }

  .leadership-content {
    order: 2;
    text-align: center;
  }

  .leadership-meta {
    border-left: none;
    padding-left: 0;
  }

  .leadership-image {
    order: 1;
  }

  .leadership-image img {
    max-width: 320px;
  }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, .6);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.footer-brand p {
  font-size: 0.92rem;
  line-height: 1.8;
  margin-top: 16px;
  max-width: 280px;
}

.footer h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.92rem;
  transition: all var(--transition);
}

.footer-links a:hover {
  color: var(--gold-400);
  padding-left: 4px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  stroke: var(--gold-400);
  fill: none;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.82rem;
}

/* ============================================
   PAGE HEADERS (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--green-900), var(--green-700));
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(212, 164, 76, .06);
}

.page-header h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}

.page-header p {
  color: rgba(255, 255, 255, .6);
  font-size: 1.05rem;
  max-width: 520px;
  margin: 0 auto;
}

.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 20px;
  font-size: 0.85rem;
}

.breadcrumb a {
  color: var(--gold-400);
}

.breadcrumb span {
  color: rgba(255, 255, 255, .4);
}

/* About page specific */
.about-full {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-full-text h2 {
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.about-full-text p {
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 16px;
}

.mission-card {
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  border-radius: var(--radius-lg);
  padding: 40px;
  color: var(--white);
}

.mission-card h3 {
  color: var(--gold-400);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.mission-card p {
  color: rgba(255, 255, 255, .8);
  line-height: 1.8;
}

/* Products page detail */
.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.product-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.product-detail-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
}

.product-detail-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.product-detail-info p {
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 28px;
}

.spec-table tr {
  border-bottom: 1px solid var(--gray-200);
}

.spec-table td {
  padding: 14px 16px;
  font-size: 0.95rem;
}

.spec-table td:first-child {
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-800);
  width: 40%;
}

.spec-table td:last-child {
  color: var(--green-700);
  font-weight: 600;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {

  .about-preview,
  .about-full,
  .product-detail,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .hero-stats {
    gap: 32px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 64px 0;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -280px;
    width: 280px;
    height: 100vh;
    background: var(--green-900);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 0;
    transition: right var(--transition);
    box-shadow: -4px 0 30px rgba(0, 0, 0, .3);
  }

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

  .nav-links a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    font-size: 1rem;
  }

  .nav-cta {
    margin-top: 16px;
    text-align: center;
    width: 100%;
    display: block;
  }

  .hero-content {
    padding-top: 40px;
  }

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

  .hero-buttons {
    flex-direction: column;
  }

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

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

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

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

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

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

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

  .page-header {
    padding: 130px 0 60px;
  }
}

/* ============================================
   WHATSAPP FLOATING BUTTON
   ============================================ */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  color: #FFF;
}

@media (max-width: 768px) {
  .whatsapp-float {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}

/* ============================================
   INTERACTIVE GALLERY
   ============================================ */
.interactive-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--gray-200);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.gallery-item img,
.gallery-item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .gallery-item-overlay {
  opacity: 1;
}

.gallery-item-overlay span {
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.1rem;
  transform: translateY(10px);
  transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-overlay span {
  transform: translateY(0);
}

.video-icon {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  backdrop-filter: blur(4px);
}

.video-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.95);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(10px);
}

.lightbox.active {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: transparent;
  border: none;
  color: var(--white);
  cursor: pointer;
  z-index: 2010;
  padding: 8px;
  transition: transform 0.3s ease;
}

.lightbox-close svg {
  width: 32px;
  height: 32px;
  stroke: currentColor;
}

.lightbox-close:hover {
  transform: rotate(90deg);
  color: var(--gold-400);
}

.lightbox-content {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  transform: scale(0.95);
  transition: transform 0.3s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1);
}

#lightboxMediaContainer {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

#lightboxMediaContainer img,
#lightboxMediaContainer video {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-sm);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 16px;
  text-align: center;
  letter-spacing: 0.5px;
}

/* ============================================
   FOUNDER / CEO SECTION
   ============================================ */

/* --- Section wrapper --- */
.founder-section {
  position: relative;
  padding: 110px 0;
  background: linear-gradient(135deg, #0a1a0d 0%, #0d2e13 40%, #07180a 100%);
  overflow: hidden;
}

/* --- Decorative background elements --- */
.founder-bg-decor {
  pointer-events: none;
}

.founder-bg-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(212, 164, 76, .07);
}

.founder-bg-circle--1 {
  width: 700px;
  height: 700px;
  top: -200px;
  right: -200px;
}

.founder-bg-circle--2 {
  width: 500px;
  height: 500px;
  bottom: -180px;
  left: -180px;
  border-color: rgba(255, 255, 255, .03);
}

.founder-bg-grain {
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
  opacity: 0.4;
}

/* --- Section heading --- */
.founder-heading {
  text-align: center;
  margin-bottom: 52px;
}

.founder-section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--white);
  font-weight: 800;
}

.founder-gold-text {
  background: linear-gradient(135deg, var(--gold-400), var(--gold-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* --- Main glass card --- */
.founder-card {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(212, 164, 76, .12);
  border-radius: 28px;
  padding: 52px 52px 52px 52px;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 24px 80px rgba(0, 0, 0, .45), inset 0 1px 0 rgba(255, 255, 255, .06);
  position: relative;
}

.founder-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 28px 28px 0 0;
  background: linear-gradient(90deg, transparent, var(--gold-500), var(--gold-400), transparent);
}

/* --- Photo column --- */
.founder-photo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

/* Trust badge */
.founder-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border: 1px solid rgba(212, 164, 76, .35);
  border-radius: 50px;
  background: rgba(212, 164, 76, .08);
  color: var(--gold-400);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  backdrop-filter: blur(4px);
}

.founder-trust-badge__icon {
  display: flex;
  align-items: center;
}

.founder-trust-badge__icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--gold-400);
  fill: none;
}

/* Image with glow ring */
.founder-img-wrap {
  position: relative;
  width: 240px;
  height: 240px;
  flex-shrink: 0;
}

/* Animated glow */
.founder-img-glow {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  background: conic-gradient(from 0deg,
      transparent 0deg,
      var(--gold-500) 60deg,
      var(--gold-400) 120deg,
      transparent 180deg,
      transparent 240deg,
      var(--gold-600) 300deg,
      var(--gold-500) 360deg);
  animation: founderGlowSpin 4s linear infinite;
  opacity: 0.65;
  filter: blur(6px);
}

@keyframes founderGlowSpin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* Thin crisp ring */
.founder-img-ring {
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 2px solid rgba(212, 164, 76, .4);
  z-index: 2;
}

/* The photo itself */
.founder-img {
  position: relative;
  z-index: 3;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  border: 4px solid rgba(13, 59, 19, .8);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .5);
  display: block;
}

/* Verified badge overlay */
.founder-verified-badge {
  position: absolute;
  bottom: 8px;
  right: 0;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: linear-gradient(135deg, var(--green-700), var(--green-600));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .3);
}

.founder-verified-badge svg {
  width: 13px;
  height: 13px;
  fill: var(--gold-400);
}

/* Social icons row */
.founder-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.founder-social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  color: rgba(255, 255, 255, .7);
  transition: all var(--transition);
  flex-shrink: 0;
}

.founder-social-btn svg {
  width: 17px;
  height: 17px;
}

.founder-social-btn:hover {
  background: rgba(212, 164, 76, .18);
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 164, 76, .25);
}

.founder-social-btn--whatsapp:hover {
  background: rgba(37, 211, 102, .15);
  border-color: #25d366;
  color: #25d366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .25);
}

/* --- Info column --- */
.founder-info-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* Name block */
.founder-name-block {
  margin-bottom: 20px;
}

.founder-name {
  font-size: clamp(1.6rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 12px;
}

.founder-role-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.founder-role-tag {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-600));
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.founder-company-tag {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, .15);
  color: rgba(255, 255, 255, .7);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.founder-company-tag svg {
  stroke: rgba(255, 255, 255, .5);
}

/* Gold divider */
.founder-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  border-radius: 2px;
  margin: 20px 0;
}

/* Description blockquote */
.founder-description {
  font-size: 1.02rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, .72);
  font-style: italic;
  padding-left: 18px;
  border-left: 3px solid rgba(212, 164, 76, .4);
  margin-bottom: 28px;
  font-family: var(--font-body);
}

/* Highlight items */
.founder-highlights {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 28px;
}

.founder-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.founder-highlight-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(212, 164, 76, .2), rgba(212, 164, 76, .08));
  border: 1px solid rgba(212, 164, 76, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.founder-highlight-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--gold-400);
  fill: none;
}

.founder-highlight-item strong {
  display: block;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.founder-highlight-item p {
  color: rgba(255, 255, 255, .55);
  font-size: 0.85rem;
  line-height: 1.6;
  margin: 0;
}

/* Signature */
.founder-signature-block {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 28px;
  padding: 16px 20px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(212, 164, 76, .1);
}

.founder-signature-text {
  font-family: 'Georgia', 'Times New Roman', serif;
  font-size: 1.55rem;
  font-style: italic;
  color: var(--gold-400);
  letter-spacing: 1px;
  line-height: 1.3;
}

.founder-signature-label {
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .4);
}

/* CTA buttons row */
.founder-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.founder-btn {
  padding: 13px 28px;
  font-size: 0.92rem;
}

.founder-btn--outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(212, 164, 76, .4);
}

.founder-btn--outline:hover {
  background: rgba(212, 164, 76, .1);
  border-color: var(--gold-500);
  color: var(--gold-400);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 164, 76, .2);
}

/* Staggered fade-in for inner text */
.founder-info-col .fade-in-text {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.founder-info-col .fade-in-text.visible {
  opacity: 1;
  transform: translateY(0);
}

.founder-info-col .fade-in-text:nth-child(1) {
  transition-delay: 0.1s;
}

.founder-info-col .fade-in-text:nth-child(2) {
  transition-delay: 0.2s;
}

.founder-info-col .fade-in-text:nth-child(3) {
  transition-delay: 0.3s;
}

.founder-info-col .fade-in-text:nth-child(4) {
  transition-delay: 0.4s;
}

.founder-info-col .fade-in-text:nth-child(5) {
  transition-delay: 0.5s;
}

/* ============================================
   FOUNDER — RESPONSIVE
   ============================================ */

/* Tablet landscape: tighten up */
@media (max-width: 1024px) {
  .founder-card {
    grid-template-columns: 280px 1fr;
    gap: 40px;
    padding: 44px;
  }

  .founder-img-wrap,
  .founder-img {
    width: 210px;
    height: 210px;
  }
}

/* Tablet portrait: stack vertically */
@media (max-width: 768px) {
  .founder-section {
    padding: 80px 0;
  }

  .founder-card {
    grid-template-columns: 1fr;
    gap: 36px;
    padding: 36px 28px;
  }

  .founder-photo-col {
    order: 1;
  }

  .founder-info-col {
    order: 2;
  }

  .founder-img-wrap,
  .founder-img {
    width: 200px;
    height: 200px;
  }

  .founder-name {
    font-size: 1.65rem;
  }

  .founder-cta-row {
    flex-direction: column;
  }

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

/* Mobile */
@media (max-width: 480px) {
  .founder-section {
    padding: 64px 0;
  }

  .founder-card {
    padding: 28px 20px;
  }

  .founder-img-wrap,
  .founder-img {
    width: 180px;
    height: 180px;
  }

  .founder-section-title {
    font-size: 1.6rem;
  }

  .founder-description {
    font-size: 0.95rem;
  }

  .founder-socials {
    gap: 8px;
  }

  .founder-role-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .founder-signature-text {
    font-size: 1.3rem;
  }
}
/* ============================================
   NEW SECTIONS CSS (TRUST, TESTIMONIALS, FAQ, FOUNDER)
   ============================================ */

/* Trust Signals */
.trust-signals {
  background: var(--off-white);
  padding: 60px 0;
  border-top: 1px solid rgba(0,0,0,0.05);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}
.trust-item span {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
}
.trust-item h3 {
  font-size: 1.1rem;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.trust-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Testimonials */
.testimonial-section {
  background: var(--white);
  padding: 80px 0;
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--off-white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
}
.testimonial-card p {
  font-style: italic;
  color: var(--gray-800);
  margin-bottom: 20px;
  line-height: 1.6;
}
.client-info {
  display: flex;
  flex-direction: column;
}
.client-info strong {
  color: var(--green-900);
  font-size: 1rem;
}
.client-info span {
  font-size: 0.85rem;
  color: var(--gray-600);
}

/* FAQ */
.faq-section {
  background: var(--gray-100);
  padding: 80px 0;
}
.faq-grid {
  max-width: 800px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 20px;
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-answer {
  padding: 0 20px 20px;
  color: var(--gray-600);
  line-height: 1.6;
  display: none;
}
.faq-item.active .faq-answer {
  display: block;
}

/* Product Specs Table */
.product-specs-table {
  margin-top: 30px;
  overflow-x: auto;
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.specs-table th, .specs-table td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.specs-table th {
  background: var(--green-900);
  color: var(--white);
  font-weight: 600;
}
.specs-table tr:last-child td {
  border-bottom: none;
}

/* NEW FOUNDER PAGE */
.founder-hero {
  padding: 140px 0 80px;
  background: var(--green-900);
  color: var(--white);
}
.founder-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.founder-photo-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.founder-photo {
  width: 100%;
  height: auto;
  display: block;
}
.founder-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255,255,255,0.9);
  padding: 10px 20px;
  border-radius: 50px;
  color: var(--green-900);
  font-weight: 700;
  backdrop-filter: blur(5px);
}
.eyebrow {
  color: var(--gold-400);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 10px;
}
.founder-intro-side h1 {
  font-size: 3.5rem;
  color: var(--white);
  margin-bottom: 10px;
}
.founder-title {
  font-size: 1.2rem;
  color: var(--gold-300);
  margin-bottom: 25px;
  font-weight: 500;
}
.founder-tagline {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 35px;
  font-style: italic;
}
.founder-contact-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
.founder-contact-quick a {
  padding: 10px 20px;
  background: rgba(255,255,255,0.1);
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  font-weight: 500;
  transition: all 0.3s;
}
.founder-contact-quick a:hover {
  background: var(--gold-500);
  border-color: var(--gold-500);
}

.founder-story {
  padding: 80px 0;
  background: var(--white);
}
.founder-story h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}
.story-content {
  max-width: 800px;
  margin: 0 auto;
}
.story-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--gray-800);
}

.founder-values {
  padding: 80px 0;
  background: var(--gray-100);
}
.founder-values h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}
.value-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.value-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 20px;
}
.value-card h3 {
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.founder-credentials {
  padding: 80px 0;
  background: var(--white);
}
.founder-credentials h2 {
  text-align: center;
  margin-bottom: 40px;
  font-size: 2.2rem;
}
.credentials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}
.credential-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.05);
}
.credential-item span {
  font-size: 2rem;
}
.credential-item strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 5px;
}
.credential-item p {
  font-size: 0.85rem;
  color: var(--gray-600);
  margin: 0;
}

.founder-cta {
  padding: 80px 0;
  background: var(--green-900);
  color: var(--white);
  text-align: center;
}
.founder-cta h2 {
  color: var(--white);
  font-size: 2.2rem;
  margin-bottom: 20px;
}
.founder-cta p {
  max-width: 600px;
  margin: 0 auto 40px;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
}
.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
}
.btn-email {
  background: transparent;
  border: 2px solid white;
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
}
.btn-quote {
  background: var(--gold-500);
  color: white;
  padding: 15px 30px;
  border-radius: 50px;
  font-weight: 600;
}
.response-time {
  font-size: 0.9rem;
  color: var(--gold-400) !important;
  font-weight: 600;
}

@media (max-width: 768px) {
  .founder-hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .founder-contact-quick {
    justify-content: center;
  }
  .founder-intro-side h1 {
    font-size: 2.5rem;
  }
}

/* ============================================
   SEO CONTENT SECTION
   ============================================ */
.seo-content-block { padding: 20px 0; }

.seo-content-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 60px;
  margin-top: 40px;
  align-items: start;
}

.seo-content-text h3 {
  font-size: 1.4rem;
  color: var(--green-900);
  margin: 32px 0 14px;
}

.seo-content-text p {
  font-size: 1.02rem;
  line-height: 1.85;
  color: var(--gray-600);
  margin-bottom: 18px;
}

.seo-content-stats { display: flex; flex-direction: column; gap: 20px; }

.stat-highlight-card {
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: var(--radius-md);
  padding: 24px 22px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.stat-highlight-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.stat-emoji { font-size: 2rem; display: block; margin-bottom: 10px; }
.stat-highlight-card h4 { font-size: 1rem; color: var(--green-900); margin-bottom: 8px; }
.stat-highlight-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; margin: 0; }

@media (max-width: 900px) {
  .seo-content-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ============================================
   CERTIFICATIONS SECTION
   ============================================ */
.certifications-section { background: var(--off-white); padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 48px; }

.section-eyebrow, .eyebrow {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 12px;
}

.section-desc { color: var(--gray-600); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

.cert-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}

.cert-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}

.cert-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cert-card.featured { border: 2px solid var(--gold-400); background: linear-gradient(135deg, #fffdf5, #fff); }
.cert-icon { font-size: 2.5rem; margin-bottom: 16px; }
.cert-card h3 { font-size: 1.1rem; margin-bottom: 10px; color: var(--charcoal); }
.cert-card p { font-size: 0.88rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 16px; }

.cert-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  background: rgba(27,94,32,0.1);
  color: var(--green-700);
}

.trust-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 0.9rem; color: var(--charcoal); }
.trust-icon { font-size: 1.1rem; }

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section { background: var(--white); padding: 80px 0; }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin: 32px 0; }
.stars { font-size: 1.1rem; margin-bottom: 14px; }
.testimonial-text { font-style: italic; color: var(--gray-800); line-height: 1.7; margin-bottom: 20px; font-size: 1rem; }
.testimonial-author { display: flex; flex-direction: column; gap: 4px; }
.testimonial-author strong { color: var(--green-900); font-family: var(--font-heading); }
.testimonial-author span { font-size: 0.85rem; color: var(--gray-600); }
.review-cta { text-align: center; margin-top: 32px; padding: 32px; background: var(--off-white); border-radius: var(--radius-md); }
.review-cta p { color: var(--gray-800); margin-bottom: 20px; font-size: 1.05rem; line-height: 1.6; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner { background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); padding: 80px 0; text-align: center; }
.cta-banner h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.88); font-size: 1.1rem; max-width: 600px; margin: 0 auto 32px; line-height: 1.7; }

/* ============================================
   LEADERSHIP SECTION
   ============================================ */
.leadership-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.leadership-content .section-title { text-align: left; margin-bottom: 16px; }
.leadership-desc { color: rgba(255,255,255,0.7); font-size: 1rem; line-height: 1.8; margin-bottom: 24px; }

.leadership-meta {
  margin-bottom: 28px;
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}

.leadership-meta strong { display: block; color: var(--gold-400); font-family: var(--font-heading); font-size: 1.1rem; }
.leadership-meta span { font-size: 0.85rem; color: rgba(255,255,255,0.55); }
.leadership-image { position: relative; text-align: center; }

.image-orb {
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,164,76,0.15), transparent 70%);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
}

.leadership-image img {
  position: relative; z-index: 1;
  max-height: 420px; object-fit: contain;
  border-radius: var(--radius-lg);
  filter: drop-shadow(0 12px 40px rgba(0,0,0,0.3));
}

@media (max-width: 768px) {
  .leadership-grid { grid-template-columns: 1fr; }
  .leadership-image { order: -1; }
  .leadership-content .section-title { text-align: center; }
  .leadership-desc { text-align: center; }
}

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header { background: var(--green-900); padding: 140px 0 60px; color: var(--white); }
.page-header h1 { color: var(--white); font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 12px; }
.page-header p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; margin-bottom: 16px; color: rgba(255,255,255,0.6); }
.breadcrumb a { color: var(--gold-400); }
.breadcrumb a:hover { color: var(--white); }

/* ============================================
   FOOTER BOTTOM - DUAL LINE
   ============================================ */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 48px; padding-top: 24px;
  display: flex; flex-direction: column;
  gap: 6px; align-items: center; text-align: center;
}
.footer-bottom span { color: rgba(255,255,255,0.5); font-size: 0.82rem; }
.footer-bottom span:first-child { color: rgba(255,255,255,0.75); font-weight: 500; font-size: 0.88rem; }

/* Mobile nav open state */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(5,51,28,0.98); align-items: center; justify-content: center; gap: 32px; z-index: 999; }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .hamburger { display: flex; }
}

/* ============================================
   ADDITIONAL PREMIUM STYLES & INTERACTIONS
   ============================================ */

/* --- Sticky CTA Bar --- */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(5, 81, 28, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 2px solid var(--gold-400);
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  transform: translateY(100%);
  transition: transform var(--transition);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.2);
}
.sticky-cta-bar.visible {
  transform: translateY(0);
}
.sticky-cta-info {
  display: flex;
  align-items: center;
  gap: 16px;
}
.sticky-cta-text h4 {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2px;
}
.sticky-cta-text p {
  color: var(--gold-300);
  font-size: 0.8rem;
  font-weight: 500;
}
.sticky-cta-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-cta-btn {
  padding: 8px 20px;
  font-size: 0.85rem;
  border-radius: 50px;
}

@media (max-width: 600px) {
  .sticky-cta-bar {
    flex-direction: column;
    gap: 8px;
    padding: 10px 16px;
    text-align: center;
  }
  .sticky-cta-info {
    display: none;
  }
  .sticky-cta-actions {
    width: 100%;
    justify-content: center;
  }
  .sticky-cta-btn {
    width: 100%;
    text-align: center;
  }
}

/* --- Counter Animations --- */
.stat-item {
  position: relative;
  overflow: hidden;
}
.stat-number {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

/* --- Export Process Timeline --- */
.export-timeline {
  position: relative;
  max-width: 1000px;
  margin: 60px auto;
  padding: 0 20px;
}
.export-timeline::after {
  content: '';
  position: absolute;
  width: 4px;
  background: var(--green-900);
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -2px;
  border-radius: 2px;
}
.timeline-item {
  padding: 10px 40px;
  position: relative;
  background-color: inherit;
  width: 50%;
}
.timeline-item::after {
  content: '';
  position: absolute;
  width: 20px;
  height: 20px;
  right: -10px;
  background-color: var(--white);
  border: 4px solid var(--gold-500);
  top: 20px;
  border-radius: 50%;
  z-index: 1;
  transition: var(--transition);
}
.timeline-item.left {
  left: 0;
  text-align: right;
}
.timeline-item.right {
  left: 50%;
}
.timeline-item.right::after {
  left: -10px;
}
.timeline-content {
  padding: 30px;
  background: var(--white);
  position: relative;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: var(--transition);
}
.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.timeline-icon {
  font-size: 2.2rem;
  margin-bottom: 12px;
  display: inline-block;
}
.timeline-step-num {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-500);
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.timeline-content h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--green-900);
}
.timeline-content p {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.6;
}

@media (max-width: 768px) {
  .export-timeline::after {
    left: 31px;
  }
  .timeline-item {
    width: 100%;
    padding-left: 70px;
    padding-right: 25px;
  }
  .timeline-item.left {
    text-align: left;
  }
  .timeline-item.right {
    left: 0;
  }
  .timeline-item::after {
    left: 21px;
    right: auto;
  }
  .timeline-item.left::after {
    left: 21px;
  }
}

/* --- Glassmorphism Product Details --- */
.glass-card {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-md);
}

/* --- Specifications Table --- */
.specs-table-container {
  overflow-x: auto;
  margin: 32px 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.specs-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  background: var(--white);
}
.specs-table th, .specs-table td {
  padding: 16px 20px;
  font-size: 0.95rem;
}
.specs-table th {
  background: var(--green-900);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.specs-table tr {
  border-bottom: 1px solid var(--gray-200);
}
.specs-table tr:last-child {
  border-bottom: none;
}
.specs-table tr:nth-child(even) td {
  background: var(--off-white);
}
.specs-table td:first-child {
  font-weight: 600;
  color: var(--charcoal);
  width: 35%;
}
.specs-table td:last-child {
  color: var(--gray-600);
}

/* --- Product Layouts & Styling --- */
.product-hero {
  background: linear-gradient(135deg, var(--green-900), var(--green-800));
  color: var(--white);
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.product-hero-bg {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(circle at 80% 20%, rgba(212,164,76,0.15) 0%, transparent 60%);
  z-index: 0;
}
.product-hero .container {
  position: relative;
  z-index: 1;
}
.product-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 16px;
}
.product-grid-2col {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: flex-start;
  margin-top: 48px;
}
@media (max-width: 992px) {
  .product-grid-2col {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
.product-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.product-image-wrapper img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform var(--transition-slow);
}
.product-image-wrapper:hover img {
  transform: scale(1.03);
}

/* --- Certification Marquee / Trust Bar --- */
.scrolling-trust-bar {
  background: var(--white);
  padding: 30px 0;
  border-bottom: 1px solid var(--gray-200);
  overflow: hidden;
  position: relative;
}
.scrolling-trust-track {
  display: flex;
  width: max-content;
  animation: scrollTrack 30s linear infinite;
  gap: 60px;
}
.scrolling-trust-track:hover {
  animation-play-state: paused;
}
.trust-logo-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--gray-600);
  white-space: nowrap;
}
.trust-logo-icon {
  font-size: 1.5rem;
  color: var(--gold-500);
}
@keyframes scrollTrack {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* --- Pulse Animations --- */
.pulse-whatsapp {
  animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* --- Testimonial Flags --- */
.flag-icon {
  display: inline-block;
  margin-left: 8px;
  font-size: 1.1rem;
  vertical-align: middle;
}

/* --- Interactive Hover Micro-interactions --- */
.nav-links a::after {
  content: '';
  display: block;
  width: 0;
  height: 2px;
  background: var(--gold-400);
  transition: width 0.3s;
}
.nav-links a:hover::after {
  width: 100%;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(5, 81, 28, 0.3);
}
.btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 164, 76, 0.3);
}

/* --- Cards & Badges for Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px;
  border: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-300);
}
.feature-card-icon {
  font-size: 2.2rem;
  color: var(--gold-600);
  margin-bottom: 20px;
}
.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--green-900);
}
.feature-card p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* --- Country Grid --- */
.countries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.country-card {
  background: var(--white);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.country-card:hover {
  border-color: var(--green-500);
  background: rgba(5, 81, 28, 0.02);
  transform: translateY(-2px);
}
.country-flag {
  font-size: 2rem;
  margin-bottom: 10px;
  display: block;
}
.country-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--charcoal);
  margin-bottom: 4px;
}
.country-note {
  font-size: 0.8rem;
  color: var(--gray-600);
}

/* --- Urgency Alert --- */
.urgency-alert {
  background: rgba(212, 164, 76, 0.15);
  border: 1px solid var(--gold-400);
  color: var(--green-900);
  padding: 12px 24px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
  animation: pulseGold 2.5s infinite;
}
@keyframes pulseGold {
  0% { transform: scale(1); }
  50% { transform: scale(1.02); }
  100% { transform: scale(1); }
}

/* --- FAQ Accordion --- */
.faq-accordion {
  max-width: 800px;
  margin: 40px auto;
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0, 0, 0, 0.04);
  overflow: hidden;
  transition: var(--transition);
}
.faq-question {
  padding: 20px 24px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--gold-500);
  transition: transform var(--transition);
}
.faq-item.active .faq-question::after {
  transform: rotate(45deg);
  color: var(--green-700);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out, padding 0.3s ease-out;
  padding: 0 24px;
  color: var(--gray-600);
  font-size: 0.92rem;
  line-height: 1.7;
  border-top: 0px solid transparent;
}
.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 0 24px 20px;
  border-top: 1px solid var(--gray-100);
}

/* --- Hero Grain/Particle Overlay --- */
.hero-decor {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  z-index: 1;
  pointer-events: none;
}

/* --- Animated Gradient Border for Featured Products --- */
.cert-card.featured {
  position: relative;
  background: var(--white);
  background-clip: padding-box;
  border: solid 2px transparent;
  border-radius: var(--radius-md);
}
.cert-card.featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  margin: -2px;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold-400), var(--green-600), var(--gold-400));
  background-size: 200% auto;
  animation: shimmerBorder 3s linear infinite;
}
@keyframes shimmerBorder {
  to {
    background-position: 200% center;
  }
}
