/* ======================================
   Q2BX Global Energy & Trading
   Brand Stylesheet
   ====================================== */

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

/* ----- Custom Properties ----- */
:root {
  /* Brand Colors */
  --teal-dark: #0a3d4a;
  --teal: #0d4a5a;
  --teal-mid: #1a6b7e;
  --teal-light: #2a8a9e;
  --teal-glow: #3aafcc;

  --gold-dark: #a07020;
  --gold: #d4952b;
  --gold-light: #e8b44a;
  --gold-glow: #f0c96d;

  --navy: #0f2630;
  --navy-mid: #1e3a4f;
  --navy-light: #2c4e65;

  --white: #ffffff;
  --off-white: #f4f6f8;
  --gray-100: #e8ecef;
  --gray-200: #cdd5db;
  --gray-400: #8a9bab;
  --gray-600: #5a6f80;
  --gray-800: #2d3e4f;
  --black: #0a0f14;

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-pad: 100px;
  --container-max: 1200px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-med: 0.4s ease;
  --transition-slow: 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

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

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

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

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

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

ul {
  list-style: none;
}

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

/* ----- Utility: Fade In on Scroll ----- */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* =============================================
   NAVIGATION
   ============================================= */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(15, 38, 48, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(212, 149, 43, 0.15);
  transition: background var(--transition-med);
}

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

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

.nav-logo img {
  height: 48px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  color: var(--gray-200);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 8px 18px;
  border-radius: 6px;
  transition: all var(--transition-fast);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  background: rgba(212, 149, 43, 0.08);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.nav-cta {
  margin-left: 12px;
  padding: 10px 24px !important;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark)) !important;
  color: var(--white) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  box-shadow: 0 4px 20px rgba(212, 149, 43, 0.3);
  transition: all var(--transition-fast) !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(212, 149, 43, 0.45) !important;
  background: linear-gradient(135deg, var(--gold-light), var(--gold)) !important;
}

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

.nav-toggle span {
  width: 26px;
  height: 2px;
  background: var(--gray-200);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

/* =============================================
   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;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(10, 61, 74, 0.92) 0%,
    rgba(15, 38, 48, 0.88) 40%,
    rgba(30, 58, 79, 0.75) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 78px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 149, 43, 0.12);
  border: 1px solid rgba(212, 149, 43, 0.3);
  color: var(--gold-light);
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.hero-badge svg {
  width: 16px;
  height: 16px;
  fill: var(--gold-light);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 800;
  max-width: 700px;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.hero h1 span {
  color: var(--gold-light);
}

.hero-sub {
  color: var(--gray-200);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

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

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  padding: 14px 32px;
  border-radius: 10px;
  cursor: pointer;
  border: none;
  transition: all var(--transition-fast);
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  box-shadow: 0 4px 24px rgba(212, 149, 43, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(212, 149, 43, 0.5);
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-outline:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
  background: rgba(212, 149, 43, 0.08);
}

.btn svg {
  width: 18px;
  height: 18px;
}

/* =============================================
   STATS BAR
   ============================================= */
.stats-bar {
  background: var(--navy);
  padding: 0;
  position: relative;
  overflow: hidden;
}

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

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

.stat-item {
  text-align: center;
  padding: 44px 24px;
  position: relative;
  transition: background var(--transition-fast);
}

.stat-item:hover {
  background: rgba(212, 149, 43, 0.05);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--gray-400);
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* =============================================
   SECTION HEADERS
   ============================================= */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
}

.section-tag {
  display: inline-block;
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.section-header p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* =============================================
   PILLAR CARDS (3-Column)
   ============================================= */
.pillars {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

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

.pillar-card {
  background: var(--white);
  border-radius: 16px;
  padding: 44px 36px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-med);
  position: relative;
  overflow: hidden;
}

.pillar-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-med);
}

.pillar-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(10, 61, 74, 0.12);
  border-color: transparent;
}

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

.pillar-icon {
  width: 64px;
  height: 64px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 24px rgba(13, 74, 90, 0.2);
}

.pillar-icon svg {
  width: 30px;
  height: 30px;
  fill: var(--gold-light);
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.pillar-card p {
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.7;
}

.pillar-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--teal-mid);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 20px;
  transition: all var(--transition-fast);
}

.pillar-link:hover {
  color: var(--gold);
  gap: 10px;
}

.pillar-link svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform var(--transition-fast);
}

/* =============================================
   STOCK TICKER
   ============================================= */
.ticker-section {
  padding: var(--section-pad) 0;
  background: var(--white);
}

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

.ticker-card {
  background: linear-gradient(145deg, var(--navy), var(--navy-mid));
  border-radius: 16px;
  padding: 32px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--transition-med);
}

.ticker-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(15, 38, 48, 0.3);
}

.ticker-exchange {
  font-size: 0.8rem;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 600;
  margin-bottom: 4px;
}

.ticker-symbol {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.ticker-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.ticker-change {
  font-size: 0.9rem;
  font-weight: 600;
}

.ticker-change.positive {
  color: #4ade80;
}

.ticker-change.negative {
  color: #f87171;
}

.ticker-meta {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* =============================================
   GLOBAL PRESENCE
   ============================================= */
.global-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(180deg, var(--off-white), var(--white));
}

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

.global-text h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

.global-text p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

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

.region-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-fast);
}

.region-item:hover {
  border-color: var(--teal-light);
  box-shadow: 0 4px 16px rgba(10, 61, 74, 0.08);
}

.region-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.region-dot.europe { background: var(--teal-light); }
.region-dot.south-america { background: var(--gold); }
.region-dot.north-america { background: #6366f1; }
.region-dot.middle-east { background: #f59e0b; }
.region-dot.asia { background: #10b981; }
.region-dot.africa { background: #ef4444; }

.region-name {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
}

.region-count {
  margin-left: auto;
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

.global-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.globe-graphic {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--navy) 100%);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 0 0 20px rgba(13, 74, 90, 0.06),
    0 0 0 40px rgba(13, 74, 90, 0.03),
    0 40px 80px rgba(10, 61, 74, 0.2);
  overflow: hidden;
}

.globe-graphic::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px dashed rgba(212, 149, 43, 0.2);
  animation: rotate 30s linear infinite;
}

@keyframes rotate {
  to { transform: rotate(360deg); }
}

.globe-number {
  font-family: var(--font-heading);
  font-size: 5rem;
  font-weight: 900;
  color: var(--gold-light);
  text-shadow: 0 4px 24px rgba(212, 149, 43, 0.3);
}

.globe-label {
  color: var(--gray-200);
  font-size: 1.1rem;
  text-align: center;
  margin-top: -8px;
}

/* =============================================
   PAGE HERO (for inner pages)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero .hero-bg::after {
  background: linear-gradient(
    135deg,
    rgba(10, 61, 74, 0.93) 0%,
    rgba(15, 38, 48, 0.90) 50%,
    rgba(30, 58, 79, 0.80) 100%
  );
}

.page-hero-content {
  position: relative;
  z-index: 1;
  padding-top: 78px;
  text-align: center;
  width: 100%;
}

.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 16px;
}

.page-hero p {
  color: var(--gray-200);
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto;
}

/* =============================================
   ABOUT PAGE SECTIONS
   ============================================= */
.mission-section {
  padding: var(--section-pad) 0;
}

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

.mission-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}

.mission-text p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 16px;
}

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

.value-item {
  padding: 24px;
  background: var(--off-white);
  border-radius: 12px;
  border-left: 4px solid var(--teal);
  transition: all var(--transition-fast);
}

.value-item:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(10, 61, 74, 0.08);
}

.value-item h4 {
  font-size: 1rem;
  margin-bottom: 8px;
  color: var(--teal-dark);
}

.value-item p {
  font-size: 0.9rem;
  color: var(--gray-600);
  line-height: 1.6;
}

/* Timeline */
.timeline-section {
  padding: var(--section-pad) 0;
  background: var(--off-white);
}

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

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--gold));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-dot {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gold);
  border: 4px solid var(--off-white);
  flex-shrink: 0;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 4px rgba(212, 149, 43, 0.2);
}

.timeline-content {
  width: calc(50% - 40px);
  padding: 24px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-fast);
}

.timeline-content:hover {
  box-shadow: 0 8px 24px rgba(10, 61, 74, 0.08);
}

.timeline-year {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--teal);
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.timeline-content h4 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.9rem;
  color: var(--gray-600);
}

/* Leadership */
.leadership-section {
  padding: var(--section-pad) 0;
}

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

.leader-card {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border-radius: 16px;
  border: 1px solid var(--gray-100);
  transition: all var(--transition-med);
}

.leader-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(10, 61, 74, 0.1);
}

.leader-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(13, 74, 90, 0.2);
}

.leader-card h4 {
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.leader-role {
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ESG */
.esg-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
  color: var(--white);
}

.esg-section .section-header h2 {
  color: var(--white);
}

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

.esg-card {
  padding: 36px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  transition: all var(--transition-med);
}

.esg-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.esg-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(212, 149, 43, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.esg-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-light);
}

.esg-card h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.esg-card p {
  color: var(--gray-400);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* =============================================
   PRODUCTS PAGE
   ============================================= */
.products-section {
  padding: var(--section-pad) 0;
}

.products-section:nth-child(even) {
  background: var(--off-white);
}

.product-segment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.product-segment.reverse {
  direction: rtl;
}

.product-segment.reverse > * {
  direction: ltr;
}

.product-visual {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(10, 61, 74, 0.12);
  position: relative;
}

.product-visual::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10, 61, 74, 0.3) 0%, transparent 60%);
  border-radius: 20px;
}

.product-visual img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.product-info h2 {
  font-size: 2rem;
  margin-bottom: 16px;
}

.product-info p {
  color: var(--gray-600);
  font-size: 1.05rem;
  margin-bottom: 24px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-800);
}

.product-feature .check {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  background: rgba(13, 74, 90, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.product-feature .check svg {
  width: 14px;
  height: 14px;
  fill: var(--teal);
}

/* Trading Section */
.trading-section {
  padding: var(--section-pad) 0;
  background: linear-gradient(135deg, var(--navy), var(--teal-dark));
}

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

.trading-card {
  padding: 32px 24px;
  text-align: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--transition-med);
}

.trading-card:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.trading-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(212, 149, 43, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.trading-icon svg {
  width: 26px;
  height: 26px;
  fill: var(--gold-light);
}

.trading-card h4 {
  color: var(--white);
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.trading-card p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

/* CTA Banner */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--teal-dark), var(--navy));
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 149, 43, 0.1), transparent 60%);
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.4rem;
  margin-bottom: 16px;
}

.cta-banner p {
  color: var(--gray-200);
  font-size: 1.1rem;
  max-width: 500px;
  margin: 0 auto 32px;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--black);
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand img {
  height: 44px;
  margin-bottom: 20px;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
  max-width: 300px;
  margin-bottom: 24px;
  line-height: 1.7;
}

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

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.footer-socials a:hover {
  background: var(--gold);
  transform: translateY(-2px);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: var(--gray-400);
}

.footer-socials a:hover svg {
  fill: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-col ul a {
  color: var(--gray-400);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}

.footer-col ul a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom p {
  color: var(--gray-600);
  font-size: 0.8rem;
}

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

.footer-legal a {
  color: var(--gray-600);
  font-size: 0.8rem;
}

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

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .pillars-grid,
  .ticker-grid,
  .esg-grid {
    grid-template-columns: 1fr 1fr;
  }

  .leadership-grid,
  .trading-grid {
    grid-template-columns: 1fr 1fr;
  }

  .global-grid,
  .mission-grid,
  .product-segment {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .product-segment.reverse {
    direction: ltr;
  }

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

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

  .nav-links {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    background: rgba(15, 38, 48, 0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 4px;
    border-bottom: 1px solid rgba(212, 149, 43, 0.15);
  }

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

  .nav-toggle {
    display: flex;
  }

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

  .stat-item:nth-child(2)::after {
    display: none;
  }

  .pillars-grid,
  .ticker-grid,
  .esg-grid,
  .leadership-grid,
  .trading-grid {
    grid-template-columns: 1fr;
  }

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

  .timeline::before {
    left: 16px;
  }

  .timeline-item,
  .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 48px;
  }

  .timeline-dot {
    left: 16px;
  }

  .timeline-content {
    width: 100%;
  }

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

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

  .hero h1 {
    font-size: 2rem;
  }
}

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

  .hero-buttons {
    flex-direction: column;
  }
}
