/* ============================================
   ZAMANA INTERNATIONAL TRADING
   Corporate Website Stylesheet
   Version 1.0
   ============================================ */

/* ---- CSS Variables ---- */
:root {
  /* Brand Colors */
  --navy-900: #061325;
  --navy-800: #0A2647;
  --navy-700: #0E3A6B;
  --navy-600: #144272;
  --navy-500: #1A5276;
  --navy-400: #2471A3;
  --navy-300: #5499C7;
  --navy-200: #A9CCE3;
  --navy-100: #D4E6F1;

  --gold-600: #B8960C;
  --gold-500: #D4AF37;
  --gold-400: #E0C068;
  --gold-300: #ECD898;
  --gold-200: #F5EACC;
  --gold-100: #FBF5E8;

  --charcoal-900: #0D0D0D;
  --charcoal-800: #1A1A1A;
  --charcoal-700: #2D2D2D;
  --charcoal-600: #404040;
  --charcoal-500: #555555;

  --white: #FFFFFF;
  --off-white: #F8F9FA;
  --light-gray: #E9ECEF;
  --medium-gray: #CED4DA;

  /* Typography */
  --font-heading: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --font-accent: 'Georgia', 'Times New Roman', serif;

  /* Spacing */
  --section-padding: 100px 0;
  --container-width: 1240px;
  --header-height: 120px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.16);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --shadow-gold: 0 4px 30px rgba(212,175,55,0.15);
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul { list-style: none; }

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

/* ---- Typography ---- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy-800);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.5rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--gold-500);
}

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

.section-subtitle {
  font-size: 1.125rem;
  color: var(--charcoal-500);
  max-width: 640px;
  line-height: 1.8;
}

.section-header {
  margin-bottom: 60px;
}

.section-header.centered {
  text-align: center;
}

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

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn-gold:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold-500);
  border-color: var(--gold-500);
}

.btn-outline-gold:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  transform: translateY(-2px);
}

.btn-navy {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.btn-navy:hover {
  background: var(--navy-700);
  border-color: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.4);
}

.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--white);
}

.btn-lg {
  padding: 18px 42px;
  font-size: 0.9375rem;
}

.btn-arrow::after {
  content: '→';
  transition: transform var(--transition-fast);
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* ============================================
   HEADER
   ============================================ */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition-base);
  background: transparent;
}

.site-header.scrolled {
  background: rgba(6, 19, 37, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

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

.logo-link {
  display: flex;
  align-items: center;
  z-index: 1001;
}

.logo {
  height: 80px !important;
  width: auto !important;
  max-width: none !important;
}

.main-nav { flex: 1; display: flex; justify-content: center; }

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

.nav-link {
  display: block;
  padding: 10px 18px;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  transition: color var(--transition-fast);
  position: relative;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-500);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 18px;
  right: 18px;
  height: 1px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: var(--navy-800);
  border: 1px solid rgba(212,175,55,0.1);
  border-top: 2px solid var(--gold-500);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 24px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition-fast);
}

.dropdown a:hover {
  background: rgba(212,175,55,0.08);
  color: var(--gold-500);
  padding-left: 30px;
}

/* Language Switch */
.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-500);
  transition: all var(--transition-fast);
}

.lang-switch:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

/* Header actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.header-actions .btn {
  padding: 10px 24px;
  font-size: 0.8rem;
}

/* Mobile Toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition-base);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--navy-900);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(6,19,37,0.95) 0%,
    rgba(10,38,71,0.85) 40%,
    rgba(14,58,107,0.7) 100%
  );
}

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

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

.hero-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 28px;
}

.hero-label::before {
  content: '';
  display: inline-block;
  width: 50px;
  height: 1px;
  background: var(--gold-500);
}

.hero-title {
  font-size: clamp(2.75rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 28px;
  letter-spacing: -1px;
}

.hero-title .highlight {
  color: var(--gold-500);
  font-style: italic;
  font-family: var(--font-accent);
}

.hero-description {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 580px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-stats {
  display: flex;
  gap: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.hero-stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 6px;
}

.hero-stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Floating accent shapes */
.hero-accent {
  position: absolute;
  z-index: 2;
  opacity: 0.06;
}

.hero-accent-1 {
  top: 15%;
  right: 8%;
  width: 400px;
  height: 400px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
}

.hero-accent-2 {
  bottom: 20%;
  right: 15%;
  width: 200px;
  height: 200px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
}

.hero-accent-3 {
  top: 40%;
  right: 5%;
  width: 1px;
  height: 200px;
  background: var(--gold-500);
}

/* ============================================
   TICKER / LIVE COMMODITY PRICE BAR
   TradingView Widget Integration
   ============================================ */

.ticker-bar {
  background: #131722;
  border-top: 1px solid rgba(212,175,55,0.2);
  border-bottom: 1px solid rgba(212,175,55,0.2);
}

/* TradingView widget — let the widget control its own styling */
.tradingview-widget-container {
  width: 100%;
}

.tradingview-widget-container__widget {
  min-height: 54px;
}

.tradingview-widget-copyright {
  display: none; /* hide attribution in the strip; TradingView still loads */
}

/* OTC strip — static items below the live widget */
.ticker-otc-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 24px;
  background: rgba(0,0,0,0.2);
  border-top: 1px solid rgba(255,255,255,0.05);
  gap: 12px;
  overflow: hidden;
}

.ticker-otc-items {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  overflow: hidden;
}

.ticker-otc-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 20px 0 0;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.06);
  margin-right: 20px;
}

.ticker-otc-item:last-child {
  border-right: none;
  margin-right: 0;
}

.ticker-otc-item .otc-name {
  color: var(--gold-400);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.68rem;
}

.ticker-otc-item .otc-label {
  color: var(--gold-500);
  font-style: italic;
  font-size: 0.66rem;
  opacity: 0.65;
}

.ticker-otc-item .otc-unit {
  color: rgba(255,255,255,0.25);
  font-size: 0.62rem;
}

.ticker-source {
  font-size: 0.62rem;
  color: rgba(255,255,255,0.2);
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.ticker-source a {
  color: rgba(255,255,255,0.2);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.ticker-source a:hover {
  color: var(--gold-500);
}

/* ============================================
   ABOUT / INTRO SECTION
   ============================================ */

.about-section {
  padding: var(--section-padding);
  background: var(--white);
}

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

.about-content .lead-text {
  font-size: 1.25rem;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--navy-700);
  line-height: 1.8;
  margin-bottom: 24px;
}

.about-content p {
  color: var(--charcoal-500);
  margin-bottom: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 36px;
}

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

.about-feature-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-feature-icon svg {
  width: 18px;
  height: 18px;
  color: var(--gold-600);
}

.about-feature h5 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy-800);
  margin-bottom: 2px;
}

.about-feature p {
  font-size: 0.825rem;
  color: var(--charcoal-500);
  margin: 0;
}

.about-image {
  position: relative;
}

.about-image img {
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.about-image::before {
  content: '';
  position: absolute;
  top: -20px;
  right: -20px;
  width: 200px;
  height: 200px;
  border: 2px solid var(--gold-500);
  opacity: 0.15;
  z-index: -1;
}

.about-image-badge {
  position: absolute;
  bottom: -30px;
  left: -30px;
  background: var(--navy-800);
  color: var(--white);
  padding: 28px 32px;
  border-radius: 4px;
  box-shadow: var(--shadow-xl);
}

.about-image-badge .badge-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
}

.about-image-badge .badge-text {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  opacity: 0.7;
  margin-top: 4px;
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.services-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

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

.service-card {
  background: var(--white);
  padding: 44px 36px;
  border-radius: 4px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transition: transform var(--transition-base);
}

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

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

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-100), var(--gold-200));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon svg {
  width: 24px;
  height: 24px;
  color: var(--gold-600);
}

.service-card h3 {
  font-size: 1.2rem;
  margin-bottom: 14px;
  color: var(--navy-800);
}

.service-card p {
  font-size: 0.925rem;
  color: var(--charcoal-500);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link {
  font-size: 0.825rem;
  font-weight: 600;
  color: var(--gold-600);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap var(--transition-fast);
}

.service-link:hover { gap: 12px; }

.service-card .service-number {
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy-800);
  opacity: 0.04;
  line-height: 1;
}

/* ============================================
   COMMODITIES SECTION
   ============================================ */

.commodities-section {
  padding: var(--section-padding);
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
}

.commodities-section .section-label { color: var(--gold-500); }
.commodities-section .section-title { color: var(--white); }
.commodities-section .section-subtitle { color: rgba(255,255,255,0.6); }

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

.commodity-card {
  position: relative;
  height: 380px;
  border-radius: 4px;
  overflow: hidden;
  cursor: pointer;
  group: true;
}

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

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

.commodity-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(6,19,37,0.95) 0%,
    rgba(6,19,37,0.4) 50%,
    rgba(6,19,37,0.2) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  transition: all var(--transition-base);
}

.commodity-card:hover .commodity-card-overlay {
  background: linear-gradient(
    to top,
    rgba(6,19,37,0.98) 0%,
    rgba(6,19,37,0.6) 50%,
    rgba(6,19,37,0.3) 100%
  );
}

.commodity-card-icon {
  width: 44px;
  height: 44px;
  border: 1px solid var(--gold-500);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.commodity-card-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-500);
}

.commodity-card h3 {
  font-size: 1.3rem;
  color: var(--white);
  margin-bottom: 8px;
}

.commodity-card p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
  margin: 0;
}

.commodity-products {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all var(--transition-base);
}

.commodity-card:hover .commodity-products {
  opacity: 1;
  transform: translateY(0);
}

.commodity-tag {
  padding: 4px 12px;
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--gold-500);
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* ============================================
   ZAMANA NETWORK SECTION
   ============================================ */

.network-section {
  padding: var(--section-padding);
  background: var(--white);
  position: relative;
}

.network-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 80px;
}

.network-visual {
  position: relative;
}

.network-visual img {
  border-radius: 4px;
  box-shadow: var(--shadow-lg);
}

.network-badge {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--gold-500);
  color: var(--navy-900);
  padding: 16px 24px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  box-shadow: var(--shadow-gold);
}

.network-content .lead-text {
  font-size: 1.2rem;
  font-family: var(--font-accent);
  font-style: italic;
  color: var(--navy-700);
  line-height: 1.8;
  margin-bottom: 20px;
}

.network-content p {
  color: var(--charcoal-500);
}

.network-benefits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.network-benefit {
  text-align: center;
  padding: 40px 28px;
  background: var(--off-white);
  border-radius: 4px;
  border: 1px solid var(--light-gray);
  transition: all var(--transition-base);
}

.network-benefit:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold-200);
}

.network-benefit-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.network-benefit-icon svg {
  width: 28px;
  height: 28px;
  color: var(--gold-600);
}

.network-benefit h4 {
  font-size: 1.05rem;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.network-benefit p {
  font-size: 0.875rem;
  color: var(--charcoal-500);
  margin: 0;
}

/* Network Steps */
.network-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid var(--light-gray);
}

.network-step {
  text-align: center;
  padding: 32px 20px;
  position: relative;
}

.network-step-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gold-500);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: 16px;
}

.network-step h4 {
  font-size: 1rem;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.network-step p {
  font-size: 0.85rem;
  color: var(--charcoal-500);
  margin: 0;
}

.network-step::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--gold-500);
  font-size: 1.5rem;
  opacity: 0.3;
}

.network-step:last-child::after { display: none; }

/* ============================================
   STATS / NUMBERS SECTION
   ============================================ */

.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-900));
  position: relative;
}

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

.stat-item {
  text-align: center;
  padding: 20px;
  position: relative;
}

.stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.1);
}

.stat-item:last-child::after { display: none; }

.stat-number {
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold-500);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* ============================================
   WHY ZAMANA / VALUE PROP
   ============================================ */

.why-section {
  padding: var(--section-padding);
  background: var(--off-white);
}

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

.why-card {
  padding: 48px 40px;
  background: var(--white);
  border-radius: 4px;
  border: 1px solid var(--light-gray);
  display: flex;
  gap: 24px;
  transition: all var(--transition-base);
}

.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--gold-200);
}

.why-card-number {
  flex-shrink: 0;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--gold-500);
  opacity: 0.2;
  line-height: 1;
}

.why-card h3 {
  font-size: 1.15rem;
  color: var(--navy-800);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.9rem;
  color: var(--charcoal-500);
  margin: 0;
  line-height: 1.7;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(212,175,55,0.06);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 400px;
  height: 400px;
  border: 1px solid rgba(212,175,55,0.04);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.cta-title .highlight {
  color: var(--gold-500);
}

.cta-subtitle {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.8;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-section {
  padding: var(--section-padding);
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.contact-info { padding-top: 20px; }

.contact-info p {
  font-size: 1.05rem;
  color: var(--charcoal-500);
  margin-bottom: 36px;
  line-height: 1.8;
}

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

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-detail-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--gold-100);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  color: var(--gold-600);
}

.contact-detail h5 {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--charcoal-500);
  margin-bottom: 4px;
}

.contact-detail p {
  font-size: 1rem;
  color: var(--navy-800);
  font-weight: 500;
  margin: 0;
}

.contact-detail a {
  color: var(--navy-800);
  transition: color var(--transition-fast);
}

.contact-detail a:hover { color: var(--gold-600); }

/* Contact Form */
.contact-form {
  background: var(--off-white);
  padding: 48px;
  border-radius: 4px;
  border: 1px solid var(--light-gray);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--charcoal-600);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  font-family: var(--font-body);
  font-size: 0.925rem;
  color: var(--charcoal-700);
  background: var(--white);
  border: 1px solid var(--medium-gray);
  border-radius: 2px;
  transition: border-color var(--transition-fast);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-500);
  box-shadow: 0 0 0 3px rgba(212,175,55,0.1);
}

.form-group textarea {
  height: 140px;
  resize: vertical;
}

.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* ============================================
   FOOTER
   ============================================ */

.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
}

.footer-top {
  padding: 80px 0 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 40px;
}

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

.footer-tagline {
  font-size: 0.925rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
  margin-bottom: 24px;
}

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

.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
}

.social-link:hover {
  border-color: var(--gold-500);
  color: var(--gold-500);
  transform: translateY(-2px);
}

.footer-heading {
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--white);
  margin-bottom: 24px;
}

.footer-links li { margin-bottom: 12px; }

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  transition: all var(--transition-fast);
  display: inline-block;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
}

.footer-contact svg { flex-shrink: 0; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}

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

.copyright {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 0;
}

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

.footer-legal a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition-fast);
}

.footer-legal a:hover { color: var(--gold-500); }

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
  .commodities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }

  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 992px) {
  .about-grid,
  .network-hero,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

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

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

  .stat-item::after { display: none; }

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

  .network-step::after { display: none; }

  .hero-stats {
    gap: 40px;
  }

  .header-actions { display: none; }

  .mobile-toggle { display: flex; }

  .main-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--navy-900);
    padding: 100px 32px 40px;
    transition: right var(--transition-base);
    box-shadow: -10px 0 30px rgba(0,0,0,0.3);
    flex-direction: column;
    justify-content: flex-start;
  }

  .main-nav.open {
    right: 0;
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    width: 100%;
  }

  .nav-link {
    padding: 14px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .nav-link::after { display: none; }

  .dropdown {
    position: static;
    background: transparent;
    border: none;
    border-top: none;
    padding: 0 0 0 16px;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }

  .has-dropdown:hover .dropdown { display: block; }

  .dropdown a {
    padding: 8px 0;
    font-size: 0.8rem;
  }
}

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

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

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

  .commodity-card { height: 280px; }

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

  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; }

  .form-row { grid-template-columns: 1fr; }

  .contact-form { padding: 28px; }

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

  .network-steps {
    grid-template-columns: 1fr;
  }

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

  .about-features { grid-template-columns: 1fr; }

  .about-image-badge {
    bottom: -16px;
    left: -8px;
    padding: 20px 24px;
  }

  .about-image::before { display: none; }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 2.25rem;
  }
}
