/* =====================================================
   PT. HASIAN BERSAMA SEJAHTERA - PREMIUM CORPORATE CSS
   Design System: Dark Forest + Gold Accent
   ===================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* ---- CSS VARIABLES ---- */
:root {
  --color-primary: #1a4a2e;
  --color-primary-dark: #0d2a18;
  --color-primary-light: #2d6b42;
  --color-accent: #c8a96e;
  --color-accent-light: #e6c88a;
  --color-accent-dark: #a07840;
  --color-green-bright: #3d9b5f;
  --color-white: #ffffff;
  --color-off-white: #f8f6f2;
  --color-light-gray: #f0ede8;
  --color-text: #1c2b1e;
  --color-text-muted: #5a6b5e;
  --color-text-light: #8a9d8e;
  --color-border: #d4cfc6;
  --color-dark-bg: #0a1a10;
  --color-dark-surface: #121f15;
  --color-dark-card: #1a2d1f;

  --font-display: 'Bebas Neue', sans-serif;
  --font-heading: 'Inter', sans-serif;
  --font-body: 'Inter', sans-serif;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.18);
  --shadow-xl: 0 40px 100px rgba(0, 0, 0, 0.25);
  --shadow-gold: 0 8px 30px rgba(200, 169, 110, 0.25);

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

  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: 0.2s ease;

  --container-max: 1280px;
  --section-pad: 100px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 16px;
}

.section-tag::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.2;
  margin-bottom: 20px;
}

.section-title .highlight {
  color: var(--color-primary);
}

.section-desc {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 600px;
  line-height: 1.75;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(26, 74, 46, 0.35);
  position: relative;
  overflow: hidden;
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-green-bright));
  opacity: 0;
  transition: var(--transition);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(26, 74, 46, 0.45);
}

.btn-primary span {
  position: relative;
  z-index: 1;
}

.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-2px);
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary-dark);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(200, 169, 110, 0.4);
}

/* ========================================
   NAVIGATION
   ======================================== */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}

.nav-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition);
}

#navbar.scrolled {
  background: rgba(10, 26, 16, 0.97);
  backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

#navbar:not(.scrolled) .nav-inner {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.55) 0%, transparent 100%);
}

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

.nav-logo img {
  height: 52px;
  width: auto;
  filter: brightness(1.1);
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-text .brand-name {
  font-family: var(--font-display);
  font-size: 18px;
  letter-spacing: 1px;
  color: var(--color-white);
  line-height: 1;
}

.nav-logo-text .brand-sub {
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-top: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu a {
  display: block;
  padding: 8px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  border-radius: var(--radius-sm);
  position: relative;
  transition: var(--transition-fast);
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: var(--transition-fast);
  border-radius: 2px;
}

.nav-menu a:hover {
  color: var(--color-white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: calc(100% - 32px);
}

.nav-menu a.active {
  color: var(--color-accent);
}

/* Desktop Dropdown Styles */
.nav-item-dropdown {
  position: relative;
}

.nav-menu .nav-item-dropdown > a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.nav-menu .nav-item-dropdown > a .chevron-svg {
  transition: transform var(--transition-fast);
}

.nav-item-dropdown:hover > a .chevron-svg {
  transform: rotate(180deg);
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: rgba(10, 26, 16, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 12px 0;
  width: 230px;
  list-style: none;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 100;
}

.nav-item-dropdown:hover .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown li {
  width: 100%;
}

.nav-dropdown a {
  display: block;
  padding: 10px 20px !important;
  color: rgba(255, 255, 255, 0.8) !important;
  font-size: 13px !important;
  font-weight: 500 !important;
  text-decoration: none;
  transition: var(--transition-fast) !important;
  border-radius: 0 !important;
}

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

.nav-dropdown a:hover {
  color: var(--color-accent) !important;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 24px !important;
}

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

.nav-cta a.btn-nav-rfq {
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  color: var(--color-primary-dark);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.nav-cta a.btn-nav-rfq:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(200, 169, 110, 0.45);
}

.nav-cta a.btn-nav-wa {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  transition: var(--transition);
}

.nav-cta a.btn-nav-wa:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
}

/* Mobile Menu Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}

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

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav Drawer */
.mobile-nav {
  position: fixed;
  top: 80px;
  left: 0;
  right: 0;
  background: rgba(10, 26, 16, 0.97);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 24px;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
  pointer-events: none;
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.mobile-nav a {
  display: block;
  padding: 14px 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-fast);
}

.mobile-nav a:hover {
  color: var(--color-accent);
  padding-left: 12px;
}

/* Mobile Dropdown / Submenu Styles */
.mobile-nav-dropdown {
  display: flex;
  flex-direction: column;
}

.mobile-nav-parent {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav-parent a {
  flex: 1;
  border-bottom: none !important;
}

.mobile-submenu-toggle {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.mobile-submenu-toggle:hover {
  color: var(--color-accent);
}

.mobile-submenu-toggle svg {
  transition: transform 0.3s ease;
}

.mobile-submenu-toggle.active svg {
  transform: rotate(180deg);
  color: var(--color-accent);
}

.mobile-submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.02);
}

.mobile-submenu.open {
  max-height: 400px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-submenu a {
  display: block;
  padding: 12px 24px !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  color: rgba(163, 207, 187, 0.8) !important;
  border-bottom: none !important;
  transition: var(--transition-fast) !important;
}

.mobile-submenu a:hover {
  color: var(--color-white) !important;
  background: rgba(255, 255, 255, 0.05);
  padding-left: 32px !important;
}

.mobile-nav .mobile-cta {
  margin-top: 20px;
}

/* ========================================
   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;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.15);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg,
      rgba(10, 26, 16, 0.85) 0%,
      rgba(10, 26, 16, 0.6) 50%,
      rgba(10, 26, 16, 0.4) 100%);
}

.hero-overlay-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(200, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(45, 107, 66, 0.15) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 120px 24px 80px;
  width: 100%;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200, 169, 110, 0.15);
  border: 1px solid rgba(200, 169, 110, 0.35);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent-light);
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeInDown 0.8s ease both;
}

.hero-badge::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  animation: pulse 2s ease infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.6;
    transform: scale(0.8);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 900;
  color: var(--color-white);
  line-height: 1.1;
  max-width: 820px;
  margin-bottom: 24px;
  animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-title .line-accent {
  display: block;
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(15px, 2vw, 18px);
  color: rgba(255, 255, 255, 0.78);
  max-width: 580px;
  line-height: 1.75;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
  animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease 0.8s both;
}

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

.hero-stat .num {
  font-family: var(--font-display);
  font-size: 36px;
  color: var(--color-accent);
  line-height: 1;
}

.hero-stat .label {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

.hero-stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
}

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeIn 1s ease 1.2s both;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.5), transparent);
  animation: scrollLine 2s ease infinite;
}

@keyframes scrollLine {
  0% {
    opacity: 1;
    transform: scaleY(1);
  }

  100% {
    opacity: 0;
    transform: scaleY(0.3);
    transform-origin: top;
  }
}

/* ========================================
   TICKER / MARQUEE
   ======================================== */
.ticker-bar {
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
  border-bottom: 1px solid rgba(200, 169, 110, 0.2);
  overflow: hidden;
  position: relative;
}

.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 40px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.5px;
}

.ticker-item::after {
  content: '◆';
  color: var(--color-accent);
  font-size: 8px;
  margin-left: 28px;
}

/* ========================================
   COMPANY OVERVIEW / ABOUT
   ======================================== */
#about {
  padding: var(--section-pad) 0;
  background: var(--color-off-white);
}

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

.about-visual {
  position: relative;
}

.about-main-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/3;
}

.about-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.about-main-img:hover img {
  transform: scale(1.05);
}

.about-badge-float {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  color: white;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  text-align: center;
  min-width: 140px;
}

.about-badge-float .big-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--color-accent);
  line-height: 1;
}

.about-badge-float .small-text {
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 4px;
}

.about-content {}

.about-content .section-tag {
  margin-bottom: 12px;
}

.about-content .section-title {
  margin-bottom: 20px;
}

.about-text {
  color: var(--color-text-muted);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-highlight-item .icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(26, 74, 46, 0.12), rgba(26, 74, 46, 0.06));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}

.about-highlight-item .text strong {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.about-highlight-item .text span {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* ========================================
   WHY CHOOSE US
   ======================================== */
#why-us {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.why-header {
  text-align: center;
  margin-bottom: 60px;
}

.why-header .section-tag {
  justify-content: center;
}

.why-header .section-title {
  margin: 0 auto 20px;
}

.why-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

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

.why-card {
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

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

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  background: var(--color-white);
}

.why-card .card-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  box-shadow: 0 8px 20px rgba(26, 74, 46, 0.25);
}

.why-card h3 {
  font-family: var(--font-heading);
  font-size: 19px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 12px;
}

.why-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ========================================
   PRODUCTS
   ======================================== */
#products {
  padding: var(--section-pad) 0;
  background: var(--color-dark-bg);
  position: relative;
  overflow: hidden;
}

.products-bg-decor {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 10% 20%, rgba(45, 107, 66, 0.12) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(200, 169, 110, 0.06) 0%, transparent 50%);
  pointer-events: none;
}

#products .section-tag {
  color: var(--color-accent);
}

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

#products .section-desc {
  color: rgba(255, 255, 255, 0.6);
}

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 24px;
}

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

.product-card {
  background: var(--color-dark-card);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  group: true;
}

.product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 169, 110, 0.25);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.product-card-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(200, 169, 110, 0.9);
  color: var(--color-primary-dark);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

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

.product-card-body h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 10px;
}

.product-card-body p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.7;
  margin-bottom: 20px;
}

.product-specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 24px;
}

.spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-row .spec-label {
  color: rgba(255, 255, 255, 0.45);
}

.spec-row .spec-val {
  color: var(--color-accent);
  font-weight: 600;
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-accent);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: var(--transition-fast);
}

.product-card-link:hover {
  gap: 14px;
}

.product-card-link svg {
  transition: var(--transition-fast);
}

/* ========================================
   PROCESS TIMELINE
   ======================================== */
#process {
  padding: var(--section-pad) 0;
  background: var(--color-off-white);
}

.process-header {
  text-align: center;
  margin-bottom: 70px;
}

.process-header .section-tag {
  justify-content: center;
}

.process-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

.process-track {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
}

.process-track::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 36px;
  right: 36px;
  height: 2px;
  background: linear-gradient(to right, var(--color-primary), var(--color-accent), var(--color-primary));
  z-index: 0;
}

.process-step {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
  position: relative;
  z-index: 1;
  padding: 0 12px;
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  border: 4px solid var(--color-off-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  box-shadow: 0 8px 24px rgba(26, 74, 46, 0.3);
  transition: var(--transition);
  position: relative;
}

.process-step:hover .step-circle {
  transform: scale(1.1);
  background: linear-gradient(135deg, var(--color-accent), var(--color-accent-light));
  box-shadow: 0 12px 32px rgba(200, 169, 110, 0.4);
}

.step-num {
  position: absolute;
  top: -6px;
  right: -6px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--color-accent);
  color: var(--color-primary-dark);
  font-size: 11px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-content {}

.step-content h4 {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 6px;
}

.step-content p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   SUSTAINABILITY
   ======================================== */
#sustainability {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 100%);
  position: relative;
  overflow: hidden;
}

.sustain-decor {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(200, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(61, 155, 95, 0.1) 0%, transparent 40%);
  pointer-events: none;
}

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

.sustain-content {}

#sustainability .section-tag {
  color: var(--color-accent);
}

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

#sustainability .section-desc {
  color: rgba(255, 255, 255, 0.65);
  max-width: 100%;
}

.sustain-pillars {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 36px;
}

.sustain-pillar {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.sustain-pillar:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: rgba(200, 169, 110, 0.3);
}

.sustain-pillar .icon {
  font-size: 28px;
  margin-bottom: 12px;
}

.sustain-pillar h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 6px;
}

.sustain-pillar p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.sustain-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.sustain-stat-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}

.sustain-stat-card:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

.sustain-stat-card .big-num {
  font-family: var(--font-display);
  font-size: 52px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.sustain-stat-card .stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* ========================================
   GLOBAL REACH / MAP
   ======================================== */
#global-reach {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.global-header {
  text-align: center;
  margin-bottom: 60px;
}

.global-header .section-tag {
  justify-content: center;
}

.global-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

.global-map-wrap {
  background: var(--color-off-white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
}

.world-svg-wrap {
  padding: 40px;
  position: relative;
}

.world-svg-wrap svg {
  width: 100%;
  height: auto;
}

.export-markers {
  position: absolute;
  inset: 0;
}

.marker-dot {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-accent);
  border: 3px solid white;
  box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.3);
  transform: translate(-50%, -50%);
  cursor: pointer;
  animation: markerPulse 2s ease infinite;
  transition: var(--transition);
}

.marker-dot:hover {
  transform: translate(-50%, -50%) scale(1.4);
  z-index: 10;
}

@keyframes markerPulse {

  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(200, 169, 110, 0.3);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(200, 169, 110, 0.1);
  }
}

.marker-tooltip {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary-dark);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition-fast);
}

.marker-dot:hover .marker-tooltip {
  opacity: 1;
}

.export-destinations {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 24px 40px;
  border-top: 1px solid var(--color-border);
  background: white;
}

.destination-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-off-white);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  padding: 8px 16px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  transition: var(--transition-fast);
}

.destination-tag:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.destination-tag .flag {
  font-size: 18px;
}

/* ========================================
   STATISTICS
   ======================================== */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}

.stat-item {
  padding: 40px 20px;
  text-align: center;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.stat-num {
  font-family: var(--font-display);
  font-size: 48px;
  color: var(--color-accent);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-unit {
  color: var(--color-accent-light);
  font-size: 28px;
}

.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* ========================================
   TESTIMONIALS
   ======================================== */
#testimonials {
  padding: var(--section-pad) 0;
  background: var(--color-off-white);
}

.testi-header {
  text-align: center;
  margin-bottom: 60px;
}

.testi-header .section-tag {
  justify-content: center;
}

.testi-header .section-desc {
  margin: 0 auto;
  text-align: center;
}

.testi-carousel {
  position: relative;
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testi-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.testi-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
}

.testi-stars span {
  color: #f59e0b;
  font-size: 16px;
}

.testi-quote {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  padding-left: 20px;
}

.testi-quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -8px;
  font-size: 48px;
  color: var(--color-primary);
  font-family: var(--font-heading);
  line-height: 1;
  opacity: 0.4;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
}

.testi-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 700;
  font-family: var(--font-heading);
  flex-shrink: 0;
}

.testi-info .name {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
}

.testi-info .role {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.testi-info .country {
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 600;
  margin-top: 2px;
}

.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.testi-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  color: var(--color-text);
}

.testi-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
}

.testi-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 100px;
  background: var(--color-border);
  transition: var(--transition);
  cursor: pointer;
}

.testi-dot.active {
  width: 24px;
  background: var(--color-primary);
}

/* ========================================
   CLIENTS LOGOS
   ======================================== */
#clients {
  padding: 70px 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.clients-header {
  text-align: center;
  margin-bottom: 40px;
}

.clients-header h3 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.clients-marquee {
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-track {
  display: flex;
  gap: 60px;
  animation: marquee 20s linear infinite;
  width: max-content;
}

.clients-track:hover {
  animation-play-state: paused;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.client-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  filter: grayscale(100%) opacity(0.4);
  transition: var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.client-logo:hover {
  filter: grayscale(0) opacity(1);
}

.client-logo .logo-placeholder {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text-muted);
  padding: 10px 24px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.client-logo:hover .logo-placeholder {
  color: var(--color-primary);
  border-color: var(--color-primary);
}

/* ========================================
   CERTIFICATIONS
   ======================================== */
#certifications {
  padding: var(--section-pad) 0;
  background: var(--color-off-white);
}

.cert-header {
  text-align: center;
  margin-bottom: 50px;
}

.cert-header .section-tag {
  justify-content: center;
}

.cert-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.cert-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  border: 1.5px solid var(--color-border);
  transition: var(--transition);
  cursor: default;
}

.cert-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.cert-card .cert-icon {
  font-size: 40px;
  margin-bottom: 16px;
}

.cert-card h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.cert-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* ========================================
   FAQ
   ======================================== */
#faq {
  padding: var(--section-pad) 0;
  background: var(--color-white);
}

.faq-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}

.faq-content {}

.faq-content .section-desc {
  max-width: 100%;
}

.faq-contact-note {
  margin-top: 32px;
  padding: 24px;
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-accent);
}

.faq-contact-note p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.faq-contact-note a {
  color: var(--color-primary);
  font-weight: 600;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--color-off-white);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item.open {
  border-color: var(--color-primary);
  box-shadow: 0 4px 20px rgba(26, 74, 46, 0.1);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 24px;
  cursor: pointer;
  user-select: none;
}

.faq-question h4 {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text);
  line-height: 1.4;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  transition: var(--transition);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--color-accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 24px 22px;
}

.faq-answer p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.75;
}

/* ========================================
   ARTICLES / BLOG
   ======================================== */
#articles {
  padding: var(--section-pad) 0;
  background: var(--color-off-white);
}

.articles-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 24px;
}

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

.article-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: var(--transition);
}

.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.article-img {
  aspect-ratio: 16/9;
  overflow: hidden;
}

.article-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.article-card:hover .article-img img {
  transform: scale(1.08);
}

.article-body {
  padding: 24px;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.article-cat {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(26, 74, 46, 0.08);
  color: var(--color-primary);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.article-date {
  font-size: 12px;
  color: var(--color-text-muted);
}

.article-title {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 12px;
  transition: var(--transition-fast);
}

.article-card:hover .article-title {
  color: var(--color-primary);
}

.article-excerpt {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.article-link:hover {
  gap: 10px;
}

/* ========================================
   CONTACT CTA
   ======================================== */
#contact-cta {
  padding: var(--section-pad) 0;
  background: var(--color-dark-bg);
  position: relative;
  overflow: hidden;
}

.cta-bg-img {
  position: absolute;
  inset: 0;
  opacity: 0.15;
}

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

.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--color-primary-dark) 0%, rgba(10, 26, 16, 0.9) 100%);
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-content .section-tag {
  justify-content: center;
}

.cta-content .section-title {
  color: var(--color-white);
  margin: 0 auto 20px;
}

.cta-content .section-desc {
  color: rgba(255, 255, 255, 0.65);
  margin: 0 auto 40px;
  text-align: center;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: white;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  transition: var(--transition);
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--color-white);
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: var(--transition);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.6);
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */
#footer {
  background: var(--color-dark-surface);
  padding: 70px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 50px;
  margin-bottom: 50px;
}

.footer-brand {}

.footer-logo {
  margin-bottom: 20px;
}

.footer-logo img {
  height: 64px;
  width: auto;
  filter: brightness(1.1);
}

.footer-about {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 300px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  transition: var(--transition);
  text-decoration: none;
}

.social-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--color-accent);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  transition: var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-accent);
  padding-left: 8px;
}

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

.footer-contact-item .fi-icon {
  width: 34px;
  height: 34px;
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 110, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item .fi-text {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.55);
  line-height: 1.6;
}

.footer-contact-item .fi-text a {
  color: rgba(255, 255, 255, 0.55);
}

.footer-contact-item .fi-text a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.3);
  transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
  color: var(--color-accent);
}

/* ========================================
   WHATSAPP FLOAT BUTTON
   ======================================== */
.wa-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.45);
  z-index: 900;
  color: white;
  transition: var(--transition);
  text-decoration: none;
}

.wa-float svg {
  width: 28px;
  height: 28px;
}

.wa-float:hover {
  transform: translateY(-4px) scale(1.1);
  box-shadow: 0 14px 40px rgba(37, 211, 102, 0.55);
}

.wa-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.4);
  animation: waPulse 2s ease infinite;
}

@keyframes waPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.2);
    opacity: 0;
  }
}

/* ========================================
   ANIMATIONS
   ======================================== */
@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-delay-1 {
  transition-delay: 0.1s !important;
}

.animate-delay-2 {
  transition-delay: 0.2s !important;
}

.animate-delay-3 {
  transition-delay: 0.3s !important;
}

.animate-delay-4 {
  transition-delay: 0.4s !important;
}

.animate-delay-5 {
  transition-delay: 0.5s !important;
}

.animate-delay-6 {
  transition-delay: 0.6s !important;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
  :root {
    --section-pad: 70px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .sustain-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .faq-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

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

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

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

  .stat-item:nth-child(3) {
    border-right: none;
  }

  .stat-item:nth-child(6) {
    border-right: none;
  }

  .testi-card {
    flex: 0 0 calc(50% - 12px);
  }

  .process-track {
    flex-wrap: wrap;
    gap: 40px;
  }

  .process-track::before {
    display: none;
  }

  .process-step {
    flex: 0 0 calc(33.333% - 27px);
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 56px;
  }

  .nav-menu,
  .nav-cta {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }

  .hero-title {
    font-size: clamp(30px, 8vw, 48px);
  }

  .hero-stats {
    gap: 20px;
  }

  .hero-stat .num {
    font-size: 26px;
  }

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

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

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

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

  .sustain-pillars {
    grid-template-columns: 1fr;
  }

  .sustain-stats {
    grid-template-columns: 1fr 1fr;
  }

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

  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .testi-card {
    flex: 0 0 calc(100%);
  }

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

  .about-badge-float {
    display: none;
  }

  .products-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .articles-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-step {
    flex: 0 0 calc(50% - 20px);
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a {
    text-align: center;
    justify-content: center;
  }

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

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

  .process-step {
    flex: 0 0 100%;
  }
}