/* ============================================================
   CHINAFRICA MARKET — Premium Light Mode Design System
   ============================================================ */

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

/* ---- VARIABLES ---- */
:root {
  --brand-blue: #1B2FCC;
  --brand-blue-mid: #2540E8;
  --brand-blue-light: #3B55F0;
  --brand-blue-pale: #EEF1FF;
  --brand-blue-xpale: #F5F7FF;
  --brand-dark: #0A0F2E;
  --brand-ink: #111827;
  --brand-slate: #374151;
  --brand-muted: #6B7280;
  --brand-border: #E5E7EB;
  --brand-light-bg: #F9FAFB;
  --brand-white: #FFFFFF;
  --brand-gold: #D97706;
  --brand-gold-light: #FEF3C7;
  --brand-green: #059669;
  --brand-green-light: #D1FAE5;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(27,47,204,0.10), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(27,47,204,0.14), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-xl: 0 24px 64px rgba(27,47,204,0.18), 0 8px 24px rgba(0,0,0,0.10);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;
  --transition: 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', 'Outfit', sans-serif;
  background: var(--brand-white);
  color: var(--brand-ink);
  line-height: 1.6;
  overflow-x: hidden;
  max-width: 100%;
}

img, video, svg {
  max-width: 100%;
  height: auto;
}

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: inherit; }

/* ---- FLAGS & ICONS ---- */
.flag-icon {
  width: 18px;
  height: 12px;
  object-fit: cover;
  border-radius: 1px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 6px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

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

.modal-icon {
  width: 20px;
  height: 20px;
  stroke-width: 2.5px;
  vertical-align: middle;
  margin-right: 8px;
  color: var(--brand-blue);
}

i[data-lucide] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  vertical-align: middle;
  width: 1.25em;
  height: 1.25em;
  stroke-width: 2.2px;
}

.service-icon i[data-lucide] {
  width: 28px;
  height: 28px;
  color: var(--brand-blue);
  transition: var(--transition);
}
.service-card:hover .service-icon i[data-lucide] {
  color: var(--brand-white);
  transform: scale(1.05);
}

.factory-benefit-icon i[data-lucide] {
  width: 20px;
  height: 20px;
  color: var(--brand-blue);
}

.cat-card-icon i[data-lucide] {
  width: 22px;
  height: 22px;
  color: var(--brand-blue);
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--brand-light-bg); }
::-webkit-scrollbar-thumb { background: var(--brand-blue); border-radius: 100px; }

/* ---- TYPOGRAPHY ---- */
.font-display { font-family: 'Outfit', sans-serif; }

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

.section-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brand-blue);
  margin-bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--brand-dark);
  line-height: 1.15;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--brand-muted);
  max-width: 600px;
  line-height: 1.75;
}

.text-blue { color: var(--brand-blue); }
.text-gold { color: var(--brand-gold); }

/* ---- ANIMATIONS ---- */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33%       { transform: translateY(-12px) rotate(1deg); }
  66%       { transform: translateY(-6px) rotate(-1deg); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(48px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes pulse-ring {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
@keyframes countUp {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}
@keyframes shimmer {
  0%   { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
@keyframes blobMove {
  0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
  50%       { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 10px 0;
  transition: var(--transition);
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--brand-border);
  box-shadow: 0 1px 12px rgba(10, 15, 46, 0.06);
}

#navbar.scrolled {
  box-shadow: 0 2px 20px rgba(27, 47, 204, 0.10);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 52px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

.nav-logo img {
  height: 58px;
  width: auto;
  transition: var(--transition);
}

.nav-links {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  margin: 0;
  padding: 0;
  z-index: 1;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-left: auto;
  z-index: 2;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--brand-slate);
  letter-spacing: 0.01em;
  position: relative;
  transition: color var(--transition);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--brand-blue);
  border-radius: 2px;
  transition: width var(--transition);
}

.nav-links a:hover { color: var(--brand-blue); }
.nav-links a:hover::after { width: 100%; }

#navbar.scrolled .nav-links a { color: var(--brand-slate); }

@media (max-width: 1100px) {
  .nav-links {
    gap: 22px;
  }
  .nav-links a {
    font-size: 0.84rem;
  }
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-blue);
  color: var(--brand-white) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.875rem !important;
  font-weight: 700 !important;
  transition: var(--transition) !important;
  box-shadow: 0 4px 16px rgba(27,47,204,0.30);
}
.nav-cta:hover {
  background: var(--brand-blue-mid) !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,47,204,0.40) !important;
}
.nav-cta::after { display: none !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  background: var(--brand-blue-pale);
  border-radius: 8px;
  cursor: pointer;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2.5px;
  background: var(--brand-blue);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}
.hamburger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}
.hamburger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--brand-dark);
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--brand-blue); }
.mobile-menu-close {
  position: absolute;
  top: 20px; right: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--brand-slate);
  background: var(--brand-blue-pale);
  border: none;
  border-radius: 10px;
  cursor: pointer;
}

.mobile-menu-close i[data-lucide] {
  width: 22px;
  height: 22px;
}

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: clamp(680px, 92vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 64px;
  text-align: center;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.38);
  pointer-events: none;
}

.hero-container {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 2rem 0 3rem;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #0a0f2e url('assets/trucknexttoboatvectorimagekindof.png') no-repeat center / cover;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }
}

.hero-content {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.hero-markets {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 14px;
  animation: fadeUp 0.8s ease 0.05s both;
}

.hero-markets-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
}

.hero-flags {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-flag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.hero-flag img {
  display: block;
  width: 40px;
  height: 30px;
  border-radius: 4px;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: 100px;
  padding: 6px 16px 6px 8px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--brand-slate);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  animation: fadeIn 0.8s ease forwards;
}

.hero-badge-dot {
  width: 8px; height: 8px;
  background: var(--brand-green);
  border-radius: 50%;
  display: inline-block;
  position: relative;
}
.hero-badge-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--brand-green);
  animation: pulse-ring 1.5s ease-out infinite;
}

.hero-heading {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--brand-white);
  margin-bottom: 14px;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-heading .highlight {
  color: #e0e7ff;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.65;
  margin: 0 auto 22px;
  max-width: 560px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.3);
  animation: fadeUp 0.8s ease 0.3s both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 0.8s ease 0.45s both;
}

#hero .btn-secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--brand-white);
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

#hero .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: var(--brand-white);
  color: var(--brand-white);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--brand-blue);
  color: var(--brand-white);
  padding: 15px 30px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(27,47,204,0.35);
  transition: var(--transition);
}
.btn-primary:hover {
  background: var(--brand-blue-mid);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(27,47,204,0.40);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-white);
  color: var(--brand-blue);
  padding: 14px 26px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  border: 2px solid var(--brand-blue);
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--brand-blue-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--brand-white);
  padding: 15px 30px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(37,211,102,0.35);
  transition: var(--transition);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(37,211,102,0.40);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 36px;
  animation: fadeUp 0.8s ease 0.6s both;
}

.hero-trust-avatars {
  display: flex;
}
.hero-trust-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 2.5px solid var(--brand-white);
  margin-left: -8px;
  object-fit: cover;
  background: var(--brand-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--brand-blue);
  overflow: hidden;
}
.hero-trust-avatar:first-child { margin-left: 0; }

.hero-trust-text {
  font-size: 0.85rem;
  color: var(--brand-muted);
}
.hero-trust-text strong {
  display: block;
  color: var(--brand-dark);
  font-weight: 700;
}


.hero-card-float {
  position: absolute;
  background: var(--brand-white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  white-space: nowrap;
}

.hero-card-float-1 {
  bottom: -20px;
  left: -30px;
  animation: float 5s ease-in-out 1s infinite;
}
.hero-card-float-2 {
  top: 30px;
  right: -30px;
  animation: float 7s ease-in-out 0.5s infinite;
}

.hero-card-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.hero-card-icon.blue { background: var(--brand-blue-pale); }
.hero-card-icon.gold { background: var(--brand-gold-light); }
.hero-card-icon.green { background: var(--brand-green-light); }

.hero-card-info strong {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-dark);
}
.hero-card-info span {
  font-size: 0.78rem;
  color: var(--brand-muted);
}

/* ============================================================
   MARQUEE / SHIPPING PARTNERS
   ============================================================ */
#partners {
  padding: 28px 0;
  background: var(--brand-white);
  border-top: 1px solid var(--brand-border);
  border-bottom: 1px solid var(--brand-border);
  overflow: hidden;
}

.partners-label {
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--brand-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.marquee-track {
  display: flex;
  gap: 0;
  overflow: hidden;
  position: relative;
}

.marquee-inner {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: marquee 20s linear infinite;
  padding-right: 60px;
  flex-shrink: 0;
}

.partner-logo {
  height: 36px;
  width: auto;
  filter: grayscale(100%) opacity(0.55);
  transition: filter var(--transition);
  flex-shrink: 0;
}
.partner-logo:hover { filter: grayscale(0%) opacity(1); }

/* ============================================================
   SERVICES
   ============================================================ */
#services {
  padding: 100px 0;
  background: var(--brand-light-bg);
}

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

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

.products-band {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--brand-border);
}

.products-band-head {
  text-align: center;
  margin-bottom: 20px;
}

.products-band-label {
  font-family: 'Outfit', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brand-blue);
  display: block;
  margin-bottom: 6px;
}

.products-band-sub {
  font-size: 0.88rem;
  color: var(--brand-muted);
  margin: 0;
  line-height: 1.5;
}

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

.product-tile {
  background: var(--brand-white);
  border: 1px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  transition: var(--transition);
}

.product-tile:hover {
  border-color: rgba(27, 47, 204, 0.3);
  box-shadow: var(--shadow-sm);
}

.product-tile-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.product-tile-head i[data-lucide] {
  width: 17px;
  height: 17px;
  color: var(--brand-blue);
  flex-shrink: 0;
}

.product-tile-head h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin: 0;
  line-height: 1.25;
}

.product-tile p {
  font-size: 0.76rem;
  color: var(--brand-muted);
  line-height: 1.45;
  margin: 0;
}

.service-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1.5px solid var(--brand-border);
  transition: var(--transition);
  cursor: default;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--brand-blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue-pale);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 56px; height: 56px;
  border-radius: var(--radius-sm);
  background: var(--brand-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--brand-blue);
  transform: scale(1.1) rotate(-5deg);
}

.service-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 10px;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--brand-muted);
  line-height: 1.7;
}

/* ============================================================
   STATS BANNER
   ============================================================ */
#stats {
  padding: 36px 0;
  background: var(--brand-blue);
  position: relative;
  overflow: hidden;
}

#stats::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}

.stat-item {
  text-align: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child { border-right: none; }

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--brand-white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-suffix {
  color: rgba(255,255,255,0.7);
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.75);
  font-weight: 500;
  line-height: 1.3;
}

/* ============================================================
   ABOUT / PROCESS
   ============================================================ */
#about {
  padding: 100px 0;
  background: var(--brand-white);
}

.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  align-items: start;
}

.about-content {
  min-width: 0;
}

.about-img-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  align-self: start;
}

.about-img-main {
  width: 100%;
  max-width: 480px;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: top right;
}

.process-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 48px;
}

.process-card {
  padding: 18px 16px;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--brand-border);
  background: var(--brand-white);
  transition: var(--transition);
}

.process-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.process-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--brand-blue-pale);
  color: var(--brand-blue);
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  transition: var(--transition);
}

.process-card:hover .process-num {
  background: var(--brand-blue);
  color: var(--brand-white);
}

.process-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}

.process-desc {
  font-size: 0.8rem;
  color: var(--brand-muted);
  line-height: 1.5;
}

/* ============================================================
   FACTORY VISITS
   ============================================================ */
#factory {
  padding: 100px 0;
  background: var(--brand-light-bg);
}

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

.factory-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.factory-img-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
}

.factory-img-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.factory-img-item:hover img { transform: scale(1.06); }

.factory-img-item:first-child {
  grid-column: span 2;
}
.factory-img-item:first-child img { height: 280px; }

.factory-benefits {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 32px;
}

.factory-benefit {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.factory-benefit-icon {
  width: 38px; height: 38px;
  background: var(--brand-blue-pale);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.factory-benefit-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 3px;
}
.factory-benefit-desc {
  font-size: 0.83rem;
  color: var(--brand-muted);
  line-height: 1.6;
}

/* ============================================================
   CONTAINER SELECTOR
   ============================================================ */
#logistics {
  padding: 100px 0;
  background: var(--brand-white);
}

.logistics-partners {
  margin-top: 48px;
  margin-bottom: 0;
  text-align: center;
}

.logistics-partners .logistics-shipping-title {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

.partner-cards-row {
  grid-template-columns: repeat(4, 1fr);
  max-width: 900px;
  margin: 0 auto;
  gap: 20px;
}

.logistics-partners .partner-card {
  padding: 20px 24px;
}

.logistics-partners .partner-card img {
  height: 44px;
}

.logistics-table {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 0;
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--brand-white);
  box-shadow: var(--shadow-md);
}

.logistics-table-col {
  padding: 40px 48px;
}

.logistics-container-col {
  border-right: 1.5px solid var(--brand-border);
  background: var(--brand-blue-xpale);
  padding: 32px 36px;
}

.logistics-customs-col {
  padding: 40px 52px;
}

.logistics-col-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logistics-col-icon {
  width: 24px;
  height: 24px;
  color: var(--brand-blue);
}

.logistics-col-desc {
  font-size: 1rem;
  color: var(--brand-muted);
  margin-bottom: 16px;
  line-height: 1.65;
}

.logistics-split {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) auto minmax(200px, 0.85fr);
  gap: 32px 28px;
  align-items: start;
}

.logistics-split-block {
  min-width: 0;
}

.logistics-split-block:first-child {
  padding-right: 8px;
}

.logistics-customs-col .dédouanement-item {
  line-height: 1.6;
}

.logistics-split-divider {
  font-family: 'Outfit', sans-serif;
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--brand-border);
  line-height: 1;
  padding-top: 0.25rem;
  user-select: none;
}

.logistics-cta-wrap {
  text-align: center;
  margin-top: 32px;
}

.container-visual {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  margin-bottom: 28px;
  background: var(--brand-blue-pale);
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-visual-large {
  aspect-ratio: 16 / 11;
  margin-bottom: 0;
  min-height: 220px;
  max-height: 300px;
}

.container-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.container-features,
.dédouanement-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.container-feature,
.dédouanement-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  color: var(--brand-slate);
  line-height: 1.55;
}

.container-feature::before,
.dédouanement-item::before {
  content: '';
  width: 6px;
  height: 6px;
  margin-top: 7px;
  background: var(--brand-blue);
  border-radius: 50%;
  flex-shrink: 0;
}

.container-feature::before {
  background: var(--brand-green);
}

.logistics-shipping-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 24px;
}

.partner-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 28px;
}

.partner-card {
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  min-height: 80px;
}
.partner-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.partner-card img {
  height: 32px;
  width: auto;
  object-fit: contain;
  filter: grayscale(50%);
  transition: filter var(--transition);
}
.partner-card:hover img { filter: grayscale(0%); }

/* ============================================================
   CATALOGUE PRODUITS
   ============================================================ */
#catalogue {
  padding: 100px 0;
  background: var(--brand-light-bg);
}

.catalogue-header {
  text-align: center;
  margin-bottom: 48px;
}

.catalogue-search-wrap {
  display: flex;
  justify-content: center;
  margin-bottom: 28px;
}

.catalogue-search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: 100px;
  padding: 12px 20px;
  width: 100%;
  max-width: 500px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.catalogue-search:focus-within {
  border-color: var(--brand-blue);
  box-shadow: 0 0 0 3px rgba(27,47,204,0.10);
}

.catalogue-search-icon { font-size: 1rem; color: var(--brand-muted); }

.catalogue-search input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 0.9rem;
  color: var(--brand-dark);
  background: transparent;
  font-family: 'Inter', sans-serif;
}
.catalogue-search input::placeholder { color: var(--brand-muted); }

.catalogue-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}

.cat-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--brand-muted);
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  cursor: pointer;
  transition: var(--transition);
}
.cat-tab:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.cat-tab.active {
  background: var(--brand-blue);
  border-color: var(--brand-blue);
  color: var(--brand-white);
  box-shadow: 0 4px 14px rgba(27,47,204,0.25);
}

.catalogue-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.product-card {
  background: var(--brand-white);
  border: 1.5px solid var(--brand-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  cursor: pointer;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--brand-blue-pale);
}

.product-img {
  width: 100%;
  height: 180px;
  object-fit: contain;
  padding: 16px;
  background: var(--brand-blue-xpale);
  transition: transform 0.4s ease;
}
.product-card:hover .product-img { transform: scale(1.06); }

.product-info {
  padding: 16px;
}

.product-category {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--brand-blue);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.product-name {
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.product-cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
  background: var(--brand-green-light);
  padding: 7px 14px;
  border-radius: 100px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  justify-content: center;
}
.product-cta:hover {
  background: var(--brand-green);
  color: var(--brand-white);
}

.catalogue-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.catalogue-category-card {
  background: var(--brand-white);
  border-radius: var(--radius-lg);
  border: 1.5px solid var(--brand-border);
  padding: 24px;
  transition: var(--transition);
}
.catalogue-category-card:hover {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.cat-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cat-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--brand-blue-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.cat-card-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-dark);
}

.cat-card-items {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cat-card-item {
  font-size: 0.85rem;
  color: var(--brand-slate);
  display: flex;
  align-items: center;
  gap: 8px;
}
.cat-card-item::before {
  content: '→';
  color: var(--brand-blue);
  font-size: 0.75rem;
}

/* ============================================================
   CONTACT
   ============================================================ */
#contact {
  padding: 100px 0;
  background: var(--brand-dark);
  position: relative;
  overflow: hidden;
}

#contact::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(27,47,204,0.25) 0%, transparent 70%);
  right: -200px;
  top: -200px;
  pointer-events: none;
}

#contact::after {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(217,119,6,0.12) 0%, transparent 70%);
  left: -100px;
  bottom: -100px;
  pointer-events: none;
}

.contact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}

.contact-section-label {
  color: rgba(255, 255, 255, 0.6);
}

.contact-section-label::before {
  background: rgba(255, 255, 255, 0.4);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
  z-index: 1;
}

.contact-panel {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.contact-panel-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--brand-white);
  margin-bottom: 24px;
}

.contact-title {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 900;
  color: var(--brand-white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.contact-title .highlight-gold { color: var(--brand-gold); }

.contact-desc {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.75;
  margin: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.form-field label {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.7);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.08);
  color: var(--brand-white);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--brand-blue-light);
  background: rgba(255, 255, 255, 0.1);
}

.form-field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-form-submit {
  width: 100%;
  justify-content: center;
  margin-top: 4px;
  border: none;
  cursor: pointer;
}

.contact-form-submit i[data-lucide] {
  width: 18px;
  height: 18px;
}

.contact-channels {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-channel {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  color: var(--brand-white);
  transition: var(--transition);
  text-decoration: none;
}
.contact-channel:hover {
  background: rgba(27, 47, 204, 0.25);
  border-color: rgba(27, 47, 204, 0.5);
}

.contact-channel-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.channel-wa  { background: rgba(37,211,102,0.15); color: #25D366; }
.channel-phone { background: rgba(27,47,204,0.20); color: #93c5fd; }
.channel-mail  { background: rgba(217,119,6,0.15); color: #fbbf24; }

.contact-channel-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  opacity: 0.65;
  margin-bottom: 2px;
}
.contact-channel-info span {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.contact-qr-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: auto;
}

.qr-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  height: 100%;
}

.qr-img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
  background: var(--brand-white);
  padding: 6px;
  flex-shrink: 0;
  object-fit: contain;
}

.qr-info strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--brand-white);
  display: block;
  margin-bottom: 6px;
}

.qr-info p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}

.qr-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
}
.qr-badge.green { background: rgba(5,150,105,0.20); color: #34d399; }
.qr-badge.blue  { background: rgba(27,47,204,0.25); color: #93c5fd; }

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #050811;
  padding: 40px 0 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  margin-bottom: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-self: start;
}

.footer-logo img {
  height: 58px;
  width: auto;
  transition: var(--transition);
}

.footer-links {
  justify-self: center;
}

.footer-cta {
  justify-self: end;
}

.footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.45);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--brand-white); }

.footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brand-blue);
  color: var(--brand-white);
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: var(--transition);
}
.footer-cta:hover {
  background: var(--brand-blue-mid);
  box-shadow: 0 4px 16px rgba(27,47,204,0.35);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.30);
}

.footer-countries {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.30);
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.float-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
  transition: var(--transition);
  font-size: 1.5rem;
  text-decoration: none;
}
.float-wa:hover {
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 14px 36px rgba(37,211,102,0.55);
}
.float-wa::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #25D366;
  animation: pulse-ring 2s ease-out infinite;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  #hero {
    min-height: clamp(560px, 85vh, 780px);
    padding-top: 60px;
  }

  .hero-container {
    padding-top: 1rem;
    padding-bottom: 2rem;
  }

  .about-intro-grid,
  .factory-grid,
  .logistics-table,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .logistics-container-col {
    border-right: none;
    border-bottom: 1.5px solid var(--brand-border);
  }

  .logistics-split {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .logistics-split-divider {
    display: none;
  }

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

  .hero-card-float-1,
  .hero-card-float-2 { display: none; }

  .about-intro-grid {
    gap: 32px;
  }

  .about-img-wrap {
    justify-content: center;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-item { border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(even) { border-right: none; }
  .stat-item:nth-last-child(-n+2) { border-bottom: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .nav-actions { display: flex; margin-left: auto; }
  .hamburger { display: flex; }

  .hero-heading { font-size: 2.2rem; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .hero-content {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  #services,
  #about,
  #factory,
  #logistics,
  #contact {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .services-header {
    margin-bottom: 40px;
  }

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

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

  .partner-cards { grid-template-columns: 1fr 1fr; }

  .logistics-table-col {
    padding: 28px 24px;
  }

  .section-sub {
    max-width: 100%;
  }

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

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

  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-logo,
  .footer-links,
  .footer-cta {
    justify-self: center;
  }

  .footer-links {
    justify-content: center;
  }

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

  #factory .factory-grid { grid-template-columns: 1fr; }

  .qr-card { flex-direction: column; text-align: center; }

  .process-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-heading { font-size: 1.85rem; }
  .hero-desc { font-size: 0.95rem; }

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

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

  .process-cards {
    grid-template-columns: 1fr;
  }

  .partner-cards-row {
    grid-template-columns: 1fr 1fr;
    max-width: 100%;
  }

  .stat-item {
    padding: 10px 8px;
  }

  .stat-label {
    font-size: 0.72rem;
  }

  .contact-panel {
    padding: 24px 20px;
  }

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

  .footer-countries {
    flex-wrap: wrap;
    justify-content: center;
  }

  .modal-box {
    padding: 24px 20px;
  }

  .modal-actions {
    flex-direction: column;
  }

  .btn-primary,
  .btn-whatsapp {
    width: 100%;
    justify-content: center;
  }

  .float-wa {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
  }
}

/* ============================================================
   MODAL (WhatsApp Quote)
   ============================================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,15,46,0.7);
  backdrop-filter: blur(6px);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.modal-overlay.open { display: flex; }

.modal-box {
  background: var(--brand-white);
  border-radius: var(--radius-xl);
  padding: 36px;
  max-width: 460px;
  width: 100%;
  box-shadow: var(--shadow-xl);
  animation: fadeUp 0.3s ease both;
}

.modal-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--brand-dark);
  margin-bottom: 8px;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--brand-muted);
  margin-bottom: 24px;
}

.modal-product-name {
  background: var(--brand-blue-pale);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  color: var(--brand-blue);
  margin-bottom: 24px;
}

.modal-actions {
  display: flex;
  gap: 12px;
}

.modal-close-btn {
  flex: 1;
  padding: 13px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  background: var(--brand-light-bg);
  color: var(--brand-slate);
  border: 1.5px solid var(--brand-border);
  cursor: pointer;
  transition: var(--transition);
}
.modal-close-btn:hover { background: var(--brand-border); }

.modal-wa-btn {
  flex: 2;
  padding: 13px;
  border-radius: 100px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  background: #25D366;
  color: var(--brand-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 14px rgba(37,211,102,0.30);
}
.modal-wa-btn:hover { background: #1ebe5d; box-shadow: 0 8px 24px rgba(37,211,102,0.40); }
