/* ============================================
   OOPA Company Profile — Aligned with DistribusiOopa Theme
   ============================================ */

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

/* === CSS Custom Properties (aligned with index.php) === */
:root {
  /* Brand Colors — same as index.php */
  --oopa-brown:       #8B5E3C;
  --oopa-brown-dark:  #6B4226;
  --oopa-brown-light: #A67458;
  --oopa-gold:        #D4A574;
  --oopa-gold-light:  #E8C9A0;
  --oopa-cream:       #F9F6F2;
  --oopa-cream-dark:  #F0E8DE;
  --oopa-text:        #3e2a1f;
  --oopa-text-light:  #7a6458;

  /* Glass */
  --glass-bg:     rgba(255, 255, 255, 0.75);
  --glass-border: rgba(255, 255, 255, 0.3);

  /* Section spacing */
  --section-padding: 100px;
  --container-max:   1200px;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Effects */
  --shadow-card:      0 8px 40px rgba(139, 94, 60, 0.08);
  --shadow-hover:     0 12px 40px rgba(139, 94, 60, 0.14);
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-bounce: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--oopa-cream);
  color: var(--oopa-text);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--oopa-brown);
  text-decoration: none;
  transition: var(--transition-smooth);
}

a:hover {
  color: var(--oopa-brown-dark);
}

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

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--oopa-brown);
  margin-bottom: 12px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--oopa-gold);
  border-radius: 2px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--oopa-text);
}

.section-title em {
  font-style: italic;
  background: linear-gradient(135deg, var(--oopa-brown), var(--oopa-gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 1.02rem;
  color: var(--oopa-text-light);
  max-width: 600px;
  line-height: 1.7;
}

/* === Scroll Animation === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

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

/* === Navigation === */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition-smooth);
}

.navbar.scrolled {
  padding: 10px 0;
  background: rgba(249, 246, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 20px rgba(139, 94, 60, 0.08);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.navbar-brand img {
  height: 40px;
  width: auto;
}

.navbar-brand-text {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--oopa-brown);
  letter-spacing: 1px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--oopa-text);
  position: relative;
  padding: 4px 6px;
  white-space: nowrap;
}

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

.nav-links a:hover {
  color: var(--oopa-brown);
}

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

.nav-cta {
  padding: 8px 22px !important;
  background: var(--oopa-brown) !important;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600 !important;
  font-size: 0.88rem !important;
  transition: all 0.3s;
}

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

.nav-cta:hover {
  background: var(--oopa-brown-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(139, 94, 60, 0.3);
  color: #fff !important;
}

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

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--oopa-brown);
  border-radius: 2px;
  transition: var(--transition-smooth);
  display: block;
}

/* === Hero Section === */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, var(--oopa-cream) 0%, rgba(249,246,242,0.6) 40%, transparent 100%);
  z-index: 1;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to top, var(--oopa-cream), transparent);
  z-index: 1;
}

/* Floating particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oopa-gold);
  opacity: 0.3;
  animation: floatParticle 8s infinite ease-in-out;
}

.particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s;   animation-duration: 7s; }
.particle:nth-child(2) { top: 60%; left: 25%; animation-delay: 1.5s; animation-duration: 9s; }
.particle:nth-child(3) { top: 35%; left: 70%; animation-delay: 3s;   animation-duration: 6s; }
.particle:nth-child(4) { top: 75%; left: 80%; animation-delay: 2s;   animation-duration: 8s; }
.particle:nth-child(5) { top: 15%; left: 55%; animation-delay: 4s;   animation-duration: 10s; }
.particle:nth-child(6) { top: 85%; left: 45%; animation-delay: 1s;   animation-duration: 7.5s; }

@keyframes floatParticle {
  0%, 100% { transform: translate(0, 0) scale(1);    opacity: 0.2; }
  50%       { transform: translate(20px, -30px) scale(1.5); opacity: 0.5; }
}

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

.hero-inner {
  max-width: 540px;
}

.hero h1,
.hero-badge,
.hero-description,
.hero-actions,
.hero-stats {
  max-width: 540px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 100px;
  background: rgba(139, 94, 60, 0.1);
  border: 1px solid rgba(139, 94, 60, 0.15);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--oopa-brown);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--oopa-brown);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.4; }
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--oopa-text);
}

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

.hero-description {
  font-size: 1.05rem;
  color: var(--oopa-text-light);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--oopa-brown), var(--oopa-brown-dark));
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 20px rgba(139, 94, 60, 0.25);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(139, 94, 60, 0.35);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  background: transparent;
  color: var(--oopa-brown);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 12px;
  border: 2px solid var(--oopa-brown);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.btn-secondary:hover {
  background: rgba(139, 94, 60, 0.06);
  transform: translateY(-2px);
  color: var(--oopa-brown);
}

.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 52px;
  padding-top: 32px;
  border-top: 1px solid rgba(139, 94, 60, 0.1);
  position: relative;
  z-index: 3;
}

.stat-item {
  text-align: left;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--oopa-brown);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--oopa-text-light);
  margin-top: 2px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* === About Section === */
.about {
  padding: var(--section-padding) 0;
  background: #fff;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oopa-gold-light), transparent);
}

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

.about-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  box-shadow: var(--shadow-hover);
}

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

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

.about-image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(62,42,31,0.85));
}

.about-image-caption {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  font-style: italic;
}

.about-image-caption strong {
  color: var(--oopa-gold-light);
}

.about-text p {
  font-size: 0.98rem;
  color: var(--oopa-text-light);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about-highlight {
  margin-top: 24px;
  padding: 20px 24px;
  background: rgba(139, 94, 60, 0.05);
  border-left: 3px solid var(--oopa-brown);
  border-radius: 0 12px 12px 0;
}

.about-highlight p {
  font-family: var(--font-display);
  font-size: 1.02rem !important;
  color: var(--oopa-brown-dark) !important;
  margin-bottom: 0 !important;
  font-style: italic;
}

/* === Timeline === */
.timeline-section {
  padding: var(--section-padding) 0;
  background: var(--oopa-cream);
  position: relative;
}

.timeline-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oopa-gold-light), transparent);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 48px auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--oopa-brown), var(--oopa-gold-light));
}

.timeline-item {
  position: relative;
  padding-bottom: 48px;
  padding-left: 32px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -45px;
  top: 4px;
  width: 12px;
  height: 12px;
  background: var(--oopa-brown);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(139, 94, 60, 0.15);
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--oopa-brown);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}

.timeline-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--oopa-text);
  margin-bottom: 8px;
}

.timeline-desc {
  font-size: 0.93rem;
  color: var(--oopa-text-light);
  line-height: 1.7;
}

/* === Products Section === */
.products {
  padding: var(--section-padding) 0;
  background: #fff;
  position: relative;
}

.products::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oopa-gold-light), transparent);
}

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

.products-header .section-label {
  justify-content: center;
}

.products-header .section-subtitle {
  margin: 0 auto;
}

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

.product-card {
  position: relative;
  padding: 32px 28px;
  background: var(--oopa-cream);
  border: 1px solid transparent;
  border-radius: 16px;
  transition: var(--transition-smooth);
  overflow: hidden;
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oopa-brown), var(--oopa-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
  background: #fff;
  border-color: rgba(139, 94, 60, 0.12);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

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

.product-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139,94,60,0.1), rgba(212,165,116,0.15));
  border-radius: 14px;
  margin-bottom: 16px;
  font-size: 1.5rem;
}

.product-status {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.status-active {
  background: rgba(34, 197, 94, 0.1);
  color: #16A34A;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.status-coming {
  background: rgba(139, 94, 60, 0.1);
  color: var(--oopa-brown);
  border: 1px solid rgba(139, 94, 60, 0.2);
}

.status-dev {
  background: rgba(139, 92, 246, 0.08);
  color: #7C3AED;
  border: 1px solid rgba(139, 92, 246, 0.15);
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--oopa-text);
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.93rem;
  color: var(--oopa-text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.product-features {
  list-style: none;
}

.product-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--oopa-text-light);
  padding: 4px 0;
}

.product-features li::before {
  content: '✦';
  color: var(--oopa-gold);
  font-size: 0.65rem;
}

/* === Product Showcase Image === */
.product-showcase {
  margin-top: 64px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-hover);
}

.product-showcase img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  filter: brightness(0.88);
  transition: transform 0.6s ease;
}

.product-showcase:hover img {
  transform: scale(1.03);
}

.product-showcase-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(62,42,31,0.6) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 40px;
}

.product-showcase-text {
  max-width: 400px;
}

.product-showcase-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: #fff;
}

.product-showcase-text p {
  font-size: 0.93rem;
  color: rgba(255,255,255,0.8);
}

/* === Product Photo Gallery === */
.product-gallery {
  margin-top: 80px;
}

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

.gallery-header .section-label {
  justify-content: center;
}

.gallery-header .section-subtitle {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: var(--shadow-card);
}

.gallery-item-large {
  grid-column: 1 / -1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.92);
}

.gallery-item-large img {
  aspect-ratio: 21/9;
}

.gallery-item:not(.gallery-item-large) img {
  aspect-ratio: 4/3;
}

.gallery-item:hover img {
  transform: scale(1.05);
  filter: brightness(0.75);
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 24px;
  background: linear-gradient(transparent, rgba(62,42,31,0.85));
  transform: translateY(20px);
  opacity: 0;
  transition: all 0.4s ease;
}

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

.gallery-tag {
  display: inline-flex;
  padding: 4px 12px;
  background: rgba(212, 165, 116, 0.25);
  border: 1px solid rgba(212, 165, 116, 0.35);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--oopa-gold-light);
  margin-bottom: 8px;
  backdrop-filter: blur(8px);
}

.gallery-overlay p {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.6;
  margin: 0;
}

/* === Values Section === */
.values {
  padding: var(--section-padding) 0;
  background: var(--oopa-cream);
  position: relative;
}

.values::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oopa-gold-light), transparent);
}

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

.value-card {
  padding: 32px 24px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(139, 94, 60, 0.08);
  border-radius: 16px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.value-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--oopa-brown), var(--oopa-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.value-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(139, 94, 60, 0.14);
}

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

.value-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(139,94,60,0.1), rgba(212,165,116,0.15));
  border-radius: 16px;
  font-size: 1.8rem;
  transition: var(--transition-bounce);
}

.value-card:hover .value-icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(139,94,60,0.15), rgba(212,165,116,0.25));
}

.value-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--oopa-text);
  margin-bottom: 10px;
}

.value-desc {
  font-size: 0.87rem;
  color: var(--oopa-text-light);
  line-height: 1.7;
}

/* === Target Market === */
.market {
  padding: var(--section-padding) 0;
  background: #fff;
  position: relative;
}

.market::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oopa-gold-light), transparent);
}

.market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
  margin-top: 48px;
}

.market-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.market-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--oopa-cream);
  border: 1px solid rgba(139, 94, 60, 0.06);
  border-radius: 14px;
  transition: var(--transition-smooth);
}

.market-item:hover {
  border-color: rgba(139, 94, 60, 0.15);
  transform: translateX(6px);
  box-shadow: var(--shadow-card);
  background: #fff;
}

.market-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(139,94,60,0.1), rgba(212,165,116,0.15));
  border-radius: 12px;
  font-size: 1.3rem;
}

.market-item-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--oopa-text);
  margin-bottom: 4px;
}

.market-item-desc {
  font-size: 0.87rem;
  color: var(--oopa-text-light);
  line-height: 1.6;
}

/* === Distribution Section === */
.distribution {
  padding: var(--section-padding) 0;
  background: var(--oopa-cream);
  position: relative;
}

.distribution::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oopa-gold-light), transparent);
}

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

.dist-card {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(139, 94, 60, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.dist-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--oopa-brown), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.dist-card:hover {
  transform: translateY(-6px);
  border-color: rgba(139, 94, 60, 0.14);
  box-shadow: var(--shadow-hover);
}

.dist-card:hover::after {
  opacity: 1;
}

.dist-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  background: linear-gradient(135deg, rgba(139,94,60,0.1), rgba(212,165,116,0.15));
  border-radius: 14px;
  font-size: 1.5rem;
}

.dist-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--oopa-text);
  margin-bottom: 6px;
}

.dist-desc {
  font-size: 0.85rem;
  color: var(--oopa-text-light);
  line-height: 1.6;
}

.dist-channels {
  list-style: none;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dist-channels li {
  font-size: 0.8rem;
  color: var(--oopa-text-light);
  padding: 5px 10px;
  background: var(--oopa-cream);
  border-radius: 6px;
}

/* === Certification Section === */
.certifications {
  padding: var(--section-padding) 0;
  background: #fff;
  position: relative;
}

.certifications::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oopa-gold-light), transparent);
}

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

.cert-card {
  padding: 32px;
  background: var(--oopa-cream);
  border: 1px solid rgba(139, 94, 60, 0.08);
  border-radius: 16px;
  text-align: center;
  transition: var(--transition-smooth);
}

.cert-card:hover {
  border-color: rgba(34, 197, 94, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  background: #fff;
}

.cert-icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  background: rgba(34, 197, 94, 0.08);
  border-radius: 50%;
  font-size: 1.8rem;
}

.cert-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--oopa-text);
  margin-bottom: 6px;
}

.cert-number {
  font-size: 0.78rem;
  color: var(--oopa-brown);
  font-family: 'Courier New', monospace;
  font-weight: 600;
  margin-bottom: 10px;
  word-break: break-all;
}

.cert-desc {
  font-size: 0.87rem;
  color: var(--oopa-text-light);
  line-height: 1.65;
}

.cert-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 6px 14px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 600;
  color: #16A34A;
}

/* === CTA Section === */
.cta {
  padding: var(--section-padding) 0;
  background: var(--oopa-cream);
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--oopa-gold-light), transparent);
}

.cta-inner {
  position: relative;
  padding: 72px 48px;
  background: linear-gradient(135deg, #fff 0%, var(--oopa-cream-dark) 100%);
  border: 1px solid rgba(139, 94, 60, 0.12);
  border-radius: 28px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -40%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 165, 116, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 94, 60, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--oopa-text);
  position: relative;
}

.cta-desc {
  font-size: 1.05rem;
  color: var(--oopa-text-light);
  max-width: 500px;
  margin: 0 auto 36px;
  line-height: 1.75;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
}

/* === Footer === */
.footer {
  padding: 48px 0;
  background: var(--oopa-text);
  border-top: none;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand img {
  height: 36px;
  border-radius: 6px;
  filter: brightness(1.2);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}

.footer-tagline {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
}

.footer-legal {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
  text-align: right;
}

.footer-legal span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,0.35);
}

/* === Responsive === */
@media (max-width: 1024px) {
  :root { --section-padding: 80px; }

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

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

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

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

  .market-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(249, 246, 242, 0.98);
    backdrop-filter: blur(20px);
    padding: 20px 24px;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-bottom: 1px solid rgba(139,94,60,0.08);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-bg {
    width: 100%;
    opacity: 0.25;
  }

  .hero-bg::before {
    background: linear-gradient(90deg, var(--oopa-cream) 0%, rgba(249,246,242,0.9) 100%);
  }

  .hero-inner { max-width: 100%; }

  .hero-stats {
    gap: 24px;
    flex-wrap: wrap;
  }

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

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

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

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

  .gallery-item-large img {
    aspect-ratio: 16/9;
  }

  .cta-inner {
    padding: 48px 24px;
  }

  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

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

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }
}

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

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

/* === Print Styles === */
@media print {
  .navbar, .hero-particles, .nav-toggle {
    display: none !important;
  }

  body {
    background: #fff;
    color: var(--oopa-text);
  }

  .product-card, .value-card, .dist-card, .cert-card, .market-item {
    border: 1px solid #ddd;
    background: #fafafa;
  }
}
