/* ============================================================
   ARIKKATH GROUP OF COMPANIES — Global Stylesheet
   Brand: Premium Food Export | Est. Kerala, India
   ============================================================ */

/* ── Scroll Progress Bar ── */
#scrollProgress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  z-index: 9999;
  pointer-events: none;
  transition: width 0.08s linear;
}

/* ── Scroll-reveal base states ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1);
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

.reveal-left  { opacity: 0; transform: translateX(-50px); transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal-right { opacity: 0; transform: translateX(50px);  transition: opacity 0.75s cubic-bezier(0.22,1,0.36,1), transform 0.75s cubic-bezier(0.22,1,0.36,1); }
.reveal-left.revealed, .reveal-right.revealed { opacity: 1; transform: translateX(0); }

.reveal-scale { opacity: 0; transform: scale(0.88); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.reveal-scale.revealed { opacity: 1; transform: scale(1); }

/* Stagger delays */
.reveal-d1 { transition-delay: 0.1s !important; }
.reveal-d2 { transition-delay: 0.2s !important; }
.reveal-d3 { transition-delay: 0.3s !important; }
.reveal-d4 { transition-delay: 0.4s !important; }
.reveal-d5 { transition-delay: 0.5s !important; }

/* ── 3D Card tilt ── */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.15s ease, box-shadow 0.3s ease;
  will-change: transform;
}
.tilt-card:hover { box-shadow: 0 24px 60px rgba(0,0,0,0.14); }

/* ── Magnetic button glow ── */
.btn-primary, .btn-dark {
  position: relative;
  overflow: hidden;
}
.btn-primary::after, .btn-dark::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--mx,50%) var(--my,50%), rgba(255,255,255,0.18) 0%, transparent 65%);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.btn-primary:hover::after, .btn-dark:hover::after { opacity: 1; }

/* ── Section divider line animation ── */
.section-divider {
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 2rem 0;
  transition: width 1.2s cubic-bezier(0.22,1,0.36,1);
}
.section-divider.revealed { width: 80px; }

/* ── Parallax wrapper ── */
.parallax-section { overflow: hidden; }
.parallax-bg {
  will-change: transform;
  transition: transform 0s linear;
}

/* ── Floating badge on scroll ── */
@keyframes floatBadge {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}
.scroll-float { animation: floatBadge 4s ease-in-out infinite; }

/* ── Number counter glow ── */
.stat-num { transition: color 0.3s; }
.stat-item.counting .stat-num { color: var(--gold); }

/* ── Reduce motion ── */
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-left, .reveal-right, .reveal-scale { transition: none !important; opacity: 1 !important; transform: none !important; }
  .tilt-card { transition: none !important; }
  #scrollProgress { transition: none !important; }
}

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

/* --- CSS Variables --- */
:root {
  --primary: #193a45;
  --primary-light: #1e4a58;
  --primary-dark: #0f2530;
  --gold: #e4b643;
  --gold-light: #f0c85a;
  --gold-dark: #c49b2e;
  --dark: #231f20;
  --dark-soft: #2e2a2b;
  --white: #ffffff;
  --off-white: #f8f7f4;
  --gray-100: #f5f5f5;
  --gray-200: #e8e8e8;
  --gray-400: #9ca3af;
  --gray-600: #6b7280;
  --gray-800: #1f2937;
  --text-body: #3d3535;
  --text-light: #6b7280;
  --border: rgba(25, 58, 69, 0.12);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08), 0 2px 6px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.10), 0 4px 12px rgba(0,0,0,0.06);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.12), 0 8px 20px rgba(0,0,0,0.08);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Poppins', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }
input, textarea, select { font-family: var(--font-body); }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark);
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; font-weight: 700; }
h5 { font-size: 1.1rem; font-weight: 600; }
p { font-size: 1rem; line-height: 1.75; color: var(--text-body); }

/* --- Navigation --- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(15, 35, 48, 0.82);
  transition: background 0.4s ease, box-shadow 0.4s ease;
  padding: 0;
}
#navbar.scrolled {
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 42px; width: 42px; object-fit: cover; object-position: left center; display: block; border-radius: 8px; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text span:first-child {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1.2;
}
.nav-logo-text span:last-child {
  font-size: 0.7rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; background: var(--gold); }
.nav-cta {
  background: var(--gold);
  color: var(--dark) !important;
  font-weight: 600 !important;
  padding: 10px 22px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition) !important;
}
.nav-cta:hover { background: var(--gold-light) !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  padding: 10px;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  border-radius: 8px;
  z-index: 1002;
  position: relative;
}
.nav-toggle span {
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  display: block;
  transform-origin: center;
}
/* Hamburger → X animation */
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Nav overlay backdrop */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}
.nav-overlay.open { display: block; }

/* Mobile Nav */
@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0; left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: var(--primary-dark);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 90px 2rem 2rem;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 1001;
    overflow-y: auto;
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a {
    font-size: 1.1rem;
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.9);
  }
  .nav-links a:first-child { border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-cta {
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    border-bottom: none !important;
    border-top: none !important;
  }
}
@media (max-width: 640px) {
  .nav-links { padding: 80px 1.5rem 2rem; }
  .nav-links a { font-size: 1rem; padding: 13px 0; }
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(228, 182, 67, 0.35);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }
.btn-lg { padding: 18px 36px; font-size: 1.05rem; }

/* --- Section Helpers --- */
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1rem;
}
.section-tag::before {
  content: '';
  width: 28px; height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--dark);
}
.section-title span { color: var(--primary); }
.section-title .gold { color: var(--gold-dark); }
.section-desc {
  font-size: 1.05rem;
  color: var(--text-light);
  max-width: 580px;
  line-height: 1.8;
}
.text-center { text-align: center; }
.text-center .section-desc { margin: 0 auto; }
.text-center .section-tag { justify-content: center; }
.section-header { margin-bottom: 3.5rem; }

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  overflow: hidden;
  border: 1px solid var(--border);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-xl);
}

/* --- Badges --- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  letter-spacing: 0.04em;
}
.badge-gold {
  background: rgba(228, 182, 67, 0.15);
  color: #a07a1a;
  border: 1px solid rgba(228, 182, 67, 0.4);
}
.badge-primary {
  background: rgba(25, 58, 69, 0.1);
  color: var(--primary);
  border: 1px solid rgba(25, 58, 69, 0.2);
}
.badge-green {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border: 1px solid rgba(34, 197, 94, 0.25);
}

/* --- Hero Section --- */
.hero {
  min-height: 100vh;
  background: var(--primary-dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2530 0%, #193a45 50%, #1a4a5a 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(228, 182, 67, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(228, 182, 67, 0.06) 0%, transparent 50%),
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.02) 0%, transparent 60%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 2; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(228, 182, 67, 0.12);
  border: 1px solid rgba(228, 182, 67, 0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}
.hero-tag .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 1.5rem;
}
.hero h1 .gold-text { color: var(--gold); }
.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  max-width: 540px;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-bottom: 3rem; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
}
.hero-stat { display: flex; flex-direction: column; gap: 4px; }
.hero-stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 2rem;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
  letter-spacing: 0.04em;
}
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}
.hero-product-card {
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  transition: var(--transition);
}
.hero-product-card:hover { transform: translateY(-4px); }
.hero-float-card {
  position: absolute;
  background: rgba(255,255,255,0.06);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
}

/* --- Product Cards --- */
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.product-img {
  width: 100%;
  height: 220px;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.product-card:hover .product-img img { transform: scale(1.06); }
.product-body { padding: 1.5rem; }
.product-badges { display: flex; gap: 8px; margin-bottom: 1rem; flex-wrap: wrap; }
.product-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

/* --- Feature Cards --- */
.feature-card {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(25, 58, 69, 0.2);
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(25, 58, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}
.feature-card:hover .feature-icon {
  background: var(--primary);
}
.feature-card:hover .feature-icon svg { color: var(--white); }
.feature-icon svg { width: 26px; height: 26px; color: var(--primary); }
.feature-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.feature-desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.65;
}

/* --- Stats Section --- */
.stats-section {
  background: var(--primary);
  padding: 64px 0;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.15);
  align-self: stretch;
}

/* --- Testimonials --- */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}
.testimonial-stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.5rem;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.author-name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
  margin-bottom: 2px;
}
.author-role {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* --- Timeline --- */
.timeline { position: relative; padding: 1rem 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-left: 60px;
  margin-bottom: 2.5rem;
}
.timeline-dot {
  position: absolute;
  left: 12px;
  top: 4px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--primary);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--primary);
  z-index: 1;
}
.timeline-dot.gold {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}
.timeline-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.timeline-desc {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* --- World Map SVG --- */
.map-wrap {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}
.map-wrap svg { width: 100%; height: auto; }
.map-marker {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 0 4px rgba(228,182,67,0.25);
  animation: markerPulse 2s infinite;
}
@keyframes markerPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(228,182,67,0.25); }
  50% { box-shadow: 0 0 0 8px rgba(228,182,67,0.1); }
}

/* --- Blog Cards --- */
.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.blog-img {
  width: 100%; height: 200px;
  background: var(--off-white);
  overflow: hidden;
  position: relative;
}
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-img img { transform: scale(1.05); }
.blog-cat {
  position: absolute;
  top: 1rem; left: 1rem;
  background: var(--primary);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  letter-spacing: 0.05em;
}
.blog-body { padding: 1.5rem; }
.blog-meta {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 0.75rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.blog-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.6rem;
  line-height: 1.4;
  transition: var(--transition);
}
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.blog-read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: var(--transition);
}
.blog-read-more:hover { gap: 10px; }

/* --- Contact --- */
.contact-info-card {
  background: var(--primary);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  color: var(--white);
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(228, 182, 67, 0.15);
  border: 1px solid rgba(228, 182, 67, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-icon svg { width: 20px; height: 20px; }
.contact-info-text h5 { color: var(--gold); font-size: 0.8rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { color: rgba(255,255,255,0.85); font-size: 0.95rem; }
.contact-info-text a:hover { color: var(--gold); }
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(25, 58, 69, 0.08);
}
.form-control::placeholder { color: var(--gray-400); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpolyline points='6,9 12,15 18,9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; padding-right: 40px; }

/* --- Footer --- */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand img { height: 44px; width: auto; display: block; margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--dark); }
.social-link svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--white);
  margin-bottom: 1.25rem;
  letter-spacing: 0.02em;
}
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-top { grid-template-columns: 1fr; }
}

/* --- WhatsApp Float --- */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 1050;
  width: 58px; height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  animation: floatBounce 3s ease-in-out infinite;
}
.whatsapp-float:hover {
  animation-play-state: paused;
  transform: scale(1.12) !important;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
}
.whatsapp-float svg { width: 32px; height: 32px; fill: #fff; }
@keyframes floatBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-7px); }
}
@media (max-width: 640px) {
  .whatsapp-float {
    width: 52px; height: 52px;
    right: 16px;
    bottom: 130px;
  }
  .whatsapp-float svg { width: 28px; height: 28px; }
}

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: var(--primary-dark);
  padding: 140px 0 80px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #0f2530 0%, #193a45 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.7); font-size: 1.1rem; max-width: 600px; margin-top: 1rem; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.breadcrumb a { color: rgba(255,255,255,0.5); transition: var(--transition); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb .sep { color: rgba(255,255,255,0.3); }
.breadcrumb .current { color: var(--gold); }

/* --- Utility --- */
.bg-primary { background: var(--primary); }
.bg-dark { background: var(--dark); }
.bg-off-white { background: var(--off-white); }
.bg-white { background: var(--white); }
.text-white { color: var(--white); }
.text-gold { color: var(--gold); }
.text-primary { color: var(--primary); }
.gold-line::after {
  content: '';
  display: block;
  width: 60px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-top: 1rem;
}
.text-center.gold-line::after { margin: 1rem auto 0; }
.divider { height: 1px; background: var(--border); margin: 0; }

/* --- Animations --- */
[data-aos] { transition-property: transform, opacity; }
.fade-in { animation: fadeIn 0.6s ease forwards; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- Swiper Overrides --- */
.swiper-pagination-bullet { background: var(--primary) !important; opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1 !important; background: var(--gold) !important; }
.swiper-button-next, .swiper-button-prev {
  color: var(--primary) !important;
  background: var(--white);
  width: 44px !important; height: 44px !important;
  border-radius: 50%;
  box-shadow: var(--shadow-md);
}
.swiper-button-next::after, .swiper-button-prev::after { font-size: 14px !important; font-weight: 700; }

/* --- FAQ --- */
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin-bottom: 0.75rem;
  transition: var(--transition);
}
.faq-item.open { border-color: rgba(25, 58, 69, 0.25); }
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--primary);
}
.faq-item.open .faq-icon { background: var(--primary); color: var(--white); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* --- Newsletter --- */
.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 480px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border: none;
  outline: none;
  font-size: 0.95rem;
  font-family: var(--font-body);
}
.newsletter-form button {
  background: var(--gold);
  color: var(--dark);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 14px 24px;
  white-space: nowrap;
  transition: var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }

/* --- Responsive Grid Helpers --- */
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-4, .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { justify-content: center; }
}

/* --- Certifications --- */
.cert-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.cert-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.cert-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(25, 58, 69, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.cert-icon svg { width: 32px; height: 32px; color: var(--primary); }
.cert-name { font-weight: 700; font-size: 0.9rem; color: var(--dark); margin-bottom: 4px; }
.cert-desc { font-size: 0.8rem; color: var(--text-light); }

/* --- Values Cards --- */
.value-card {
  text-align: center;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.value-num {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 3rem;
  color: rgba(25, 58, 69, 0.08);
  line-height: 1;
  margin-bottom: -0.5rem;
}
.value-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
}
.value-icon svg { width: 28px; height: 28px; }
.value-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.value-desc { font-size: 0.88rem; color: var(--text-light); line-height: 1.65; }

/* --- Sticky enquiry bar --- */
.sticky-enquiry {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--primary);
  padding: 12px 2rem;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 990;
  transform: translateY(100%);
  transition: var(--transition);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}
.sticky-enquiry.show { transform: translateY(0); }
.sticky-enquiry-text {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
}
.sticky-enquiry-text span { color: var(--gold); font-weight: 700; }
@media (max-width: 640px) {
  .sticky-enquiry {
    padding: 12px 1rem;
    padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    justify-content: center;
  }
  .sticky-enquiry-text { display: none; }
  .sticky-enquiry .btn {
    width: 100%;
    justify-content: center;
    padding: 14px;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }
}

/* --- Skip link for accessibility --- */
.skip-link {
  position: absolute;
  top: -100px;
  left: 1rem;
  background: var(--primary);
  color: var(--white);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  z-index: 9999;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* --- Scroll to top --- */
.scroll-top {
  position: fixed;
  bottom: 100px; right: 28px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  z-index: 990;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.scroll-top.show { opacity: 1; pointer-events: all; }
.scroll-top:hover { background: var(--primary-light); transform: translateY(-2px); }
.scroll-top svg { width: 20px; height: 20px; }

/* --- Product category filter tabs --- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.filter-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--border);
  color: var(--text-light);
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.filter-tab:hover, .filter-tab.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* --- Map regions --- */
.export-region {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border-left: 4px solid var(--primary);
}
.export-region:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.export-region.africa { border-left-color: var(--gold); }
.export-region.europe { border-left-color: #4f46e5; }
.export-region.middle-east { border-left-color: #059669; }
.export-region-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.export-region-name { font-family: var(--font-heading); font-weight: 700; font-size: 1.1rem; color: var(--dark); margin-bottom: 0.5rem; }
.export-region-countries { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
.export-region-countries strong { color: var(--primary); }

/* --- Why choose us grid --- */
.why-card {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.75rem;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.why-card:hover { border-color: var(--primary); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.why-card-icon {
  width: 48px; height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(25, 58, 69, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--primary);
  transition: var(--transition);
}
.why-card:hover .why-card-icon { background: var(--primary); color: var(--white); }
.why-card-icon svg { width: 22px; height: 22px; }
.why-card-title { font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 4px; }
.why-card-desc { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* --- Process steps --- */
.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.process-title { font-family: var(--font-heading); font-weight: 700; font-size: 1rem; color: var(--dark); margin-bottom: 0.5rem; }
.process-desc { font-size: 0.875rem; color: var(--text-light); line-height: 1.6; }

/* --- Vision roadmap timeline (horizontal) --- */
.roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.roadmap::before {
  content: '';
  position: absolute;
  top: 28px; left: 0; right: 0;
  height: 2px;
  background: var(--border);
  z-index: 0;
}
.roadmap-step {
  position: relative;
  padding: 0 1.5rem;
  text-align: center;
}
.roadmap-dot {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 1;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary);
  font-size: 1rem;
  transition: var(--transition);
}
.roadmap-step.active .roadmap-dot {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  box-shadow: 0 0 0 6px rgba(25, 58, 69, 0.15);
}
.roadmap-step.gold .roadmap-dot {
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  box-shadow: 0 0 0 6px rgba(228, 182, 67, 0.15);
}
.roadmap-year {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}
.roadmap-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.5rem;
}
.roadmap-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }
@media (max-width: 768px) {
  .roadmap { grid-template-columns: 1fr; }
  .roadmap::before { display: none; }
  .roadmap-step { padding: 0 0 2rem; }
}

/* --- Partner logos --- */
.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  opacity: 0.6;
  transition: var(--transition);
  filter: grayscale(1);
}
.partner-logo:hover { opacity: 1; filter: grayscale(0); box-shadow: var(--shadow-sm); }
.partner-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  color: var(--primary);
  letter-spacing: -0.02em;
}

/* --- Print --- */
@media print { #navbar, .whatsapp-float, .sticky-enquiry, .scroll-top { display: none !important; } }

/* ============================================================
   COMPREHENSIVE MOBILE FIXES
   ============================================================ */

/* 1. Newsletter section */
.newsletter-section {
  background: var(--primary);
  padding: 64px 0;
}
.newsletter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* 2. Nav toggle — always visible on mobile */
@media (max-width: 1024px) {
  .nav-toggle {
    background: rgba(228,182,67,0.30) !important;
    border: 2px solid rgba(228,182,67,0.85) !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 12px rgba(0,0,0,0.40);
  }
  .nav-toggle span { background: #fff !important; width: 22px !important; }
}

/* 3. Hero slide actions — stack on mobile */
@media (max-width: 640px) {
  .slide-actions {
    flex-direction: column;
    gap: 0.75rem;
  }
  .slide-actions .btn {
    width: 100%;
    justify-content: center;
  }
  /* Hero stats — 2×2 grid */
  .hero-stats {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 1.5rem;
    padding-top: 1.5rem;
    margin-top: 0;
  }
  .hero-stat-num { font-size: 1.6rem; }
}

/* 4. Newsletter responsive */
@media (max-width: 768px) {
  .newsletter-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  .newsletter-form {
    max-width: 100%;
  }
}

/* 5. About section inner value cards — keep 2×2 on mobile */
@media (max-width: 900px) {
  .about-inner-grid {
    grid-template-columns: 1fr !important;
    gap: 2.5rem !important;
  }
}

/* 6. Logo / partner grid */
@media (max-width: 640px) {
  .logo-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* 7. Products preview — single col on very small screens */
@media (max-width: 480px) {
  .products-preview-grid { grid-template-columns: 1fr !important; }
  .why-grid { grid-template-columns: 1fr !important; }
  .markets-grid { grid-template-columns: 1fr !important; }
  .vision-grid { grid-template-columns: 1fr !important; }
}

/* 8. General container overflow guard */
@media (max-width: 640px) {
  .container { padding-left: 1rem; padding-right: 1rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: clamp(1.5rem, 5vw, 2rem) !important; }
  .btn-lg { padding: 14px 24px; font-size: 1rem; }
}
