/* ==========================================================================
   Artesanías MG - Modern Vanguard Design System
   40 Años de Tradición, Seriedad y Exclusividad en Alfarería Colombiana
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600;1,700&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Vibrant & Exclusive Color Palette */
  --color-terracotta: #FF5A26;
  --color-terracotta-dark: #D43E0F;
  --color-terracotta-light: #FFF0EB;
  --color-terracotta-glow: rgba(255, 90, 38, 0.35);

  --color-gold: #F59E0B;
  --color-gold-light: #FEF3C7;
  --color-gold-glow: rgba(245, 158, 11, 0.4);

  --color-emerald: #10B981;
  --color-emerald-light: #ECFDF5;

  --color-dark-bg: #0C0F14;
  --color-dark-surface: #141922;
  --color-dark-card: #1A222F;
  --color-dark-border: rgba(255, 255, 255, 0.1);

  --color-light-bg: #FBF9F5;
  --color-light-surface: #FFFFFF;
  --color-light-muted: #F3EFEA;
  --color-light-border: rgba(220, 100, 50, 0.12);

  --color-text-dark: #0F172A;
  --color-text-muted: #64748B;
  --color-text-light: #F8FAFC;
  --color-text-light-muted: #94A3B8;

  /* Typography */
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;

  /* Shadows & Glassmorphism */
  --shadow-sm: 0 2px 10px rgba(12, 15, 20, 0.05);
  --shadow-md: 0 8px 30px rgba(12, 15, 20, 0.08);
  --shadow-lg: 0 20px 45px rgba(12, 15, 20, 0.12);
  --shadow-terracotta: 0 12px 35px rgba(255, 90, 38, 0.28);
  --shadow-gold: 0 12px 35px rgba(245, 158, 11, 0.25);

  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.6);
  --glass-dark-bg: rgba(20, 25, 34, 0.82);
  --glass-dark-border: rgba(255, 255, 255, 0.12);

  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
  font-family: var(--font-sans);
  background-color: var(--color-light-bg);
  color: var(--color-text-dark);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

/* Typography Utilities */
h1, h2, h3, h4, .font-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-dark);
  letter-spacing: -0.015em;
}

.text-gradient-fire {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #F59E0B 0%, #FBBF24 50%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Layout Containers */
.container {
  width: 92%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1rem;
}

.section-padding {
  padding: 6rem 0;
  position: relative;
}

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

/* Badges */
.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.badge-terracotta {
  background: linear-gradient(135deg, rgba(255, 90, 38, 0.12), rgba(245, 158, 11, 0.15));
  color: var(--color-terracotta-dark);
  border: 1px solid rgba(255, 90, 38, 0.25);
}

.badge-gold {
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.18), rgba(251, 191, 36, 0.28));
  color: #B45309;
  border: 1px solid rgba(245, 158, 11, 0.35);
}

.badge-dark {
  background: rgba(255, 255, 255, 0.1);
  color: #FEF3C7;
  border: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  padding: 0.95rem 1.95rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition-normal);
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, #E04816 100%);
  color: white;
  box-shadow: var(--shadow-terracotta);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(255, 90, 38, 0.45);
  background: linear-gradient(135deg, #FF6F3D 0%, #EA4D1B 100%);
  color: white;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-text-dark);
  border-color: rgba(200, 90, 50, 0.2);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: white;
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.35);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-whatsapp svg {
  width: 1.25rem;
  height: 1.25rem;
  fill: currentColor;
  flex-shrink: 0;
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.5);
  color: white;
}

.btn-sm {
  padding: 0.65rem 1.35rem;
  font-size: 0.85rem;
}



/* MODERN GLASS NAVBAR */
.header-main {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 249, 245, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(220, 100, 50, 0.1);
  transition: all var(--transition-normal);
}

.header-scrolled {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.nav-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 84px;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
}

.brand-logo-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 90, 38, 0.3));
  transition: transform var(--transition-fast), filter var(--transition-fast);
  flex-shrink: 0;
  display: block;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.08) rotate(-3deg);
  filter: drop-shadow(0 6px 20px rgba(255, 90, 38, 0.55));
}

.footer-main .brand-logo-img {
  width: 68px;
  height: 68px;
  filter: drop-shadow(0 4px 15px rgba(245, 158, 11, 0.35));
}

.brand-text-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--color-text-dark);
  line-height: 1.1;
}

.brand-text-subtitle {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-terracotta);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-link {
  font-weight: 600;
  font-size: 0.95rem;
  color: #334155;
  transition: color var(--transition-fast);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
  transition: width var(--transition-normal);
  border-radius: var(--radius-full);
}

.nav-link:hover {
  color: var(--color-terracotta);
}

.nav-link:hover::after {
  width: 100%;
}

.mobile-nav-toggle {
  display: none;
  background: transparent;
  border: none;
  font-size: 1.8rem;
  color: var(--color-text-dark);
  cursor: pointer;
  padding: 0.5rem;
}

@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
  }
  .nav-links {
    position: fixed;
    top: 84px;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(25px);
    flex-direction: column;
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition-normal);
  }
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
}

/* ==========================================================================
   DYNAMIC HERO CAROUSEL (VANGUARD SLIDER)
   ========================================================================== */
.hero-slider-section {
  position: relative;
  background: var(--color-dark-bg);
  overflow: hidden;
  color: white;
  min-height: 640px;
}

.hero-slider-track {
  position: relative;
  width: 100%;
  min-height: 640px;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: flex;
  align-items: center;
  padding: 5rem 0 6.5rem;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-size: cover;
  background-position: center;
  filter: brightness(0.35) saturate(1.2);
  transform: scale(1.06);
  transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide.active .hero-slide-bg {
  transform: scale(1);
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  background: radial-gradient(circle at 70% 50%, rgba(255, 90, 38, 0.15) 0%, transparent 60%),
              linear-gradient(90deg, rgba(12, 15, 20, 0.95) 0%, rgba(12, 15, 20, 0.75) 50%, rgba(12, 15, 20, 0.4) 100%);
}

.hero-slide-container {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-slide-content {
  max-width: 650px;
}

.hero-slide-content .badge-pill {
  margin-bottom: 1.25rem;
  animation: slideFadeDown 0.6s ease forwards;
}

.hero-slide-title {
  font-size: 3.4rem;
  line-height: 1.12;
  color: white;
  margin-bottom: 1.25rem;
  animation: slideFadeUp 0.7s ease 0.1s both;
}

.hero-slide-desc {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  animation: slideFadeUp 0.7s ease 0.2s both;
}

.hero-slide-actions {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2.25rem;
  animation: slideFadeUp 0.7s ease 0.3s both;
}

.hero-features-list {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  animation: slideFadeUp 0.7s ease 0.4s both;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.hero-feature-check {
  width: 20px;
  height: 20px;
  background: var(--color-emerald);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 800;
}

/* Hero Visual Showcase Box */
.hero-visual-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(255, 90, 38, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: visualZoomIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.hero-visual-card img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.hero-visual-card:hover img {
  transform: scale(1.04);
}

.hero-floating-stat {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(15, 23, 42, 0.88);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.4rem;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

.hero-stat-number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, var(--color-gold) 0%, #FBBF24 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}

.hero-stat-text {
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Carousel Controls & Navigation */
.hero-controls {
  position: absolute;
  bottom: 2rem;
  left: 0;
  width: 100%;
  z-index: 10;
}

.hero-controls-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.hero-dots {
  display: flex;
  gap: 0.75rem;
  align-items: center;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.25);
  border: none;
  cursor: pointer;
  transition: all var(--transition-normal);
  position: relative;
  padding: 0;
}

.hero-dot.active {
  width: 42px;
  background: linear-gradient(90deg, var(--color-terracotta), var(--color-gold));
  box-shadow: 0 0 15px var(--color-terracotta-glow);
}

.hero-arrows {
  display: flex;
  gap: 0.75rem;
}

.hero-arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: all var(--transition-fast);
  font-size: 1.2rem;
}

.hero-arrow-btn:hover {
  background: var(--color-terracotta);
  border-color: var(--color-terracotta);
  transform: scale(1.08);
  box-shadow: 0 0 20px var(--color-terracotta-glow);
}

@keyframes slideFadeUp {
  from { opacity: 0; transform: translateY(25px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes visualZoomIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@media (max-width: 992px) {
  .hero-slide-container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2.5rem;
  }
  .hero-slide-content {
    margin: 0 auto;
  }
  .hero-slide-title {
    font-size: 2.5rem;
  }
  .hero-slide-actions {
    justify-content: center;
  }
  .hero-features-list {
    justify-content: center;
  }
  .hero-visual-card img {
    height: 360px;
  }
}

/* ==========================================================================
   STATISTICS & TRUST STRIP
   ========================================================================== */
.stats-strip {
  background: white;
  border-bottom: 1px solid rgba(220, 100, 50, 0.1);
  padding: 3rem 0;
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.stat-card {
  text-align: center;
  padding: 1rem;
  position: relative;
}

.stat-card:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(220, 100, 50, 0.15);
}

.stat-card-number {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--color-terracotta);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
}

.stat-card-sub {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

@media (max-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  .stat-card:nth-child(2)::after {
    display: none;
  }
}

/* ==========================================================================
   PRODUCT LINES SHOWCASE (CATALOG GRID)
   ========================================================================== */
.section-header {
  text-align: center;
  max-width: 750px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  font-size: 2.6rem;
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 1.1rem;
}

.catalog-controls {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.filter-btn {
  padding: 0.65rem 1.4rem;
  border-radius: var(--radius-full);
  background: white;
  border: 1px solid rgba(220, 100, 50, 0.18);
  color: var(--color-text-dark);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.filter-btn:hover {
  border-color: var(--color-terracotta);
  color: var(--color-terracotta);
  transform: translateY(-2px);
}

.filter-btn.active {
  background: linear-gradient(135deg, var(--color-terracotta) 0%, #E04816 100%);
  color: white;
  border-color: transparent;
  box-shadow: 0 8px 25px var(--color-terracotta-glow);
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2.25rem;
}

.product-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid rgba(220, 100, 50, 0.12);
  box-shadow: var(--shadow-md);
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  position: relative;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(255, 90, 38, 0.18);
  border-color: rgba(255, 90, 38, 0.35);
}

.product-image {
  position: relative;
  height: 270px;
  overflow: hidden;
  background: #0C0F14;
}

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

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

.product-tag {
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  background: rgba(12, 15, 20, 0.85);
  backdrop-filter: blur(10px);
  color: #FEF3C7;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-origin {
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--color-terracotta);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.5rem;
}

.product-title {
  font-size: 1.45rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-dark);
}

.product-desc {
  font-size: 0.95rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.product-footer {
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(220, 100, 50, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.product-tagline {
  font-size: 0.85rem;
  font-weight: 700;
  color: #B45309;
}

/* ==========================================================================
   BENTO GRID: 40 YEARS TRAYECTORY & VALUES
   ========================================================================== */
.bento-section {
  background: var(--color-dark-bg);
  color: white;
  position: relative;
  overflow: hidden;
}

.bento-ambient-glow {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 90, 38, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}

.bento-card {
  background: var(--color-dark-surface);
  border: 1px solid var(--color-dark-border);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  position: relative;
  overflow: hidden;
  transition: all var(--transition-normal);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.bento-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 90, 38, 0.4);
  box-shadow: 0 20px 45px rgba(255, 90, 38, 0.15);
}

.bento-card-large {
  grid-column: span 2;
}

.bento-card-highlight {
  background: linear-gradient(135deg, rgba(255, 90, 38, 0.15) 0%, rgba(20, 25, 34, 0.95) 100%);
  border-color: rgba(255, 90, 38, 0.3);
}

.bento-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--color-terracotta) 0%, var(--color-gold) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: white;
  margin-bottom: 1.5rem;
  box-shadow: 0 8px 25px rgba(255, 90, 38, 0.35);
}

.bento-card h3 {
  color: white;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.bento-card p {
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
  }
  .bento-card-large {
    grid-column: span 1;
  }
}

/* ==========================================================================
   LOGISTICS & PACKAGING SHOWCASE
   ========================================================================== */
.logistics-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.logistics-card-grid {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.logistics-item {
  background: white;
  border: 1px solid rgba(220, 100, 50, 0.15);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
}

.logistics-item:hover {
  transform: translateX(6px);
  border-color: var(--color-terracotta);
  box-shadow: var(--shadow-md);
}

.logistics-item-icon {
  width: 48px;
  height: 48px;
  background: var(--color-terracotta-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.packaging-visual-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(220, 100, 50, 0.2);
}

.packaging-visual-wrapper img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.packaging-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background: rgba(15, 23, 42, 0.9);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md);
  color: white;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

@media (max-width: 992px) {
  .logistics-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ==========================================================================
   INTERACTIVE ADVISORY & WHATSAPP GENERATOR
   ========================================================================== */
.advisory-section {
  background: linear-gradient(135deg, #141922 0%, #0C0F14 100%);
  border-radius: var(--radius-lg);
  padding: 4rem 3rem;
  color: white;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.advisory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: rgba(255, 255, 255, 0.9);
}

.form-control {
  width: 100%;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font-size: 0.95rem;
  transition: all var(--transition-fast);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(255, 255, 255, 0.15);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25);
}

.form-control option {
  background: #141922;
  color: white;
}

@media (max-width: 900px) {
  .advisory-section {
    padding: 2.5rem 1.5rem;
  }
  .advisory-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-container {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: white;
  border: 1px solid rgba(220, 100, 50, 0.15);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--transition-fast);
  box-shadow: var(--shadow-sm);
}

.faq-item:hover {
  border-color: var(--color-terracotta);
}

.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--color-text-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-terracotta-light);
  color: var(--color-terracotta);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  transition: transform var(--transition-normal);
  flex-shrink: 0;
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--color-terracotta);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-normal) cubic-bezier(0.4, 0, 0.2, 1), padding var(--transition-normal) ease;
  padding: 0 1.5rem;
  color: var(--color-text-muted);
  font-size: 0.96rem;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

.faq-item.active .faq-answer {
  max-height: 600px;
  padding-top: 0.25rem;
  padding-bottom: 1.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-main {
  background: #080A0E;
  color: white;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  transition: all var(--transition-fast);
}

.footer-links a:hover {
  color: var(--color-gold);
  transform: translateX(4px);
  display: inline-block;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON WITH PULSE
   ========================================================================== */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.45);
  z-index: 999;
  transition: all var(--transition-fast);
  text-decoration: none;
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid #25D366;
  opacity: 0.8;
  animation: pulseFloat 2s infinite;
}

@keyframes pulseFloat {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(1.4); opacity: 0; }
}

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