/* ================================================================
   SUNUBIZ INTERNATIONAL — Premium CSS Design System v4.0
   Tencent-caliber: Typography, Spacing, Micro-interactions, Elegance
   Color System: Brand Red + Charcoal + Ink + White + Surfaces
   ================================================================ */

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

/* ======================== CSS VARIABLES ======================== */
:root {
  /* Brand Colors */
  --red: #EF364C;
  --red-dark: #C8001A;
  --red-light: #FF6B7A;
  --red-50: #FFF0F2;
  --red-100: #FFCCD1;

  /* Neutrals */
  --charcoal: #3C3B3C;
  --ink: #0A0A0F;
  --ink-2: #14141C;
  --surface: #F8F8FA;
  --white: #FFFFFF;

  /* Grayscale */
  --gray-900: #1A1A2E;
  --gray-800: #333333;
  --gray-700: #4A4A4A;
  --gray-600: #666666;
  --gray-500: #8A8A8A;
  --gray-400: #ABABAB;
  --gray-300: #D1D5DB;
  --gray-200: #E5E7EB;
  --gray-100: #F3F4F6;
  --gray-50: #F9FAFB;

  /* Subsidiary Colors */
  --sub-it: #283593;
  --sub-commerce: #1565C0;
  --sub-farming: #2E7D32;
  --sub-immobilier: #F57F17;
  --sub-food: #E64A19;
  --sub-charity: #AD1457;

  /* Accent Colors */
  --gold: #D4A017;
  --gold-light: #F0C14B;
  --green-sen: #00853F;

  /* Text Colors */
  --text-primary: #1A1A2E;
  --text-body: #4A4A4A;
  --text-sec: #6B7280;
  --text-muted: #9CA3AF;
  --text-inverse: #FFFFFF;

  /* Borders & Dividers */
  --border: #E5E7EB;
  --border-light: #F0F1F3;

  /* Typography */
  --font-display: 'Bebas Neue', cursive;
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
  --font-arabic: 'Noto Sans Arabic', sans-serif;

  /* Layout */
  --section-py: 120px;
  --container: 1380px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;

  /* Shadows */
  --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06), 0 1px 2px rgba(0,0,0,0.04);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 2px 4px rgba(0,0,0,0.04);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.06);
  --shadow-card-hover: 0 12px 40px rgba(0,0,0,0.12);
  --shadow-red: 0 8px 32px rgba(239,54,76,0.2);

  /* Animation */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --tr: all 0.3s var(--ease);
  --tr-fast: all 0.2s var(--ease);
  --tr-slow: all 0.5s var(--ease);

  /* Senegalese Palette */
  --cream: #FDF6EC;
  --sand: #C9A96E;
  --sand-light: #F0E4C8;
  --earth: #8B5E3C;
  --terracotta: #C1440E;
  --baobab: #2D6A4F;
  --atlantic: #1A4D6E;
}

/* RTL Support */
[dir="rtl"] {
  direction: rtl;
  text-align: right;
}

/* ======================== RESET ======================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text-body);
  background-color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ======================== TYPOGRAPHY ======================== */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 12px;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 16px;
  line-height: 1.75;
}

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

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

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

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

/* ======================== NAVBAR ======================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  background-color: var(--white);
  box-shadow: 0 1px 0 var(--border);
  z-index: 1000;
  transition: var(--tr);
}

.navbar.scrolled {
  backdrop-filter: blur(20px);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 1001;
}

.nav-logo-img {
  height: 44px;
  width: auto;
  transition: var(--tr-fast);
}

.nav-logo:hover .nav-logo-img {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  margin-left: 60px;
}

.nav-links a {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: var(--tr-fast);
  position: relative;
}

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

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.lang-switcher {
  display: flex;
  gap: 6px;
  align-items: center;
}

.lang-btn {
  padding: 6px 12px;
  border: 1.5px solid var(--border);
  background: transparent;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--tr-fast);
  color: var(--text-body);
}

.lang-btn:hover,
.lang-btn.active {
  background-color: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background-color: var(--text-primary);
  transition: var(--tr-fast);
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  padding: 24px 16px;
  flex-direction: column;
  gap: 16px;
  z-index: 999;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.mobile-menu a {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 14px;
}

@media (max-width: 768px) {
  .nav-links,
  .nav-right {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .mobile-menu.active {
    display: flex;
  }
}

/* ======================== PRELOADER ======================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.pre-logo {
  text-align: center;
  margin-bottom: 32px;
}

.pre-tagline {
  font-family: var(--font-heading);
  font-size: 16px;
  font-style: italic;
  color: var(--text-body);
  margin-top: 12px;
}

.pre-bar {
  width: 100%;
  height: 2px;
  background-color: var(--gray-200);
  position: absolute;
  bottom: 0;
  left: 0;
  overflow: hidden;
}

.pre-bar-fill {
  height: 100%;
  background-color: var(--red);
  width: 0;
  animation: preload 2s ease-in-out forwards;
}

@keyframes preload {
  0% { width: 0; }
  80% { width: 100%; }
  100% { width: 100%; }
}

/* ======================== HERO SECTION ======================== */
.hero {
  min-height: 100vh;
  position: relative;
}

/* Split hero: used on main landing page only */
.hero.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 72px;
  gap: 0;
  background: var(--white);
}

/* Full-bleed hero: used on subsidiary pages */
.hero:not(.hero-split) {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 80px;
}

.hero-left {
  background-color: var(--cream);
  background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 0 L40 20 L20 40 L0 20 Z' fill='none' stroke='%23C9A96E' stroke-width='0.5' stroke-opacity='0.25'/%3E%3C/svg%3E");
  background-size: 40px 40px;
  padding: 140px 64px 80px 88px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
}

.hero-right {
  position: relative;
  overflow: hidden;
}

.hero-img-grid {
  display: block;
  height: 100%;
  width: 100%;
}

.hero-img-grid img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.hero-img-grid img:last-child {
  display: none;
}

.hero-right::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,77,110,0.12) 0%, rgba(139,94,60,0.08) 100%);
  pointer-events: none;
}

.hero-floating-card,
.hero-float-stat {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 16px 56px rgba(0,0,0,0.14);
  border: 1px solid var(--border-light);
  z-index: 5;
  animation: floatCard 6s ease-in-out infinite;
}

/* Hero logo lockup (replaces text title on main page) */
.hero-logo-lockup {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.hero-logo-img {
  height: clamp(44px, 6vw, 80px);
  width: auto;
  display: block;
}

.hero-logo-lockup .grp {
  font-family: var(--font-display);
  font-size: clamp(44px, 7vw, 88px);
  color: var(--charcoal);
  line-height: 1;
  letter-spacing: 0.05em;
}

.hero-float-stat {
  top: 120px;
  left: -28px;
  text-align: center;
  min-width: 160px;
  animation-delay: 0.3s;
}

.hero-float-pill {
  position: absolute;
  bottom: 80px;
  left: -28px;
  background: var(--white);
  border-radius: 50px;
  padding: 14px 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  box-shadow: 0 16px 48px rgba(0,0,0,0.14);
  border: 1px solid var(--border-light);
  z-index: 5;
  white-space: nowrap;
  animation: floatCard 7s ease-in-out infinite;
  animation-delay: 1s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sand-light);
  border: 1px solid var(--sand);
  color: var(--earth);
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  width: fit-content;
}

.hero-badge .badge-dot {
  background: var(--earth);
}

.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  background-color: var(--earth);
  border-radius: 50%;
  animation: badgepulse 2s ease-in-out infinite;
}

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

.hero-meta {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(68px, 10vw, 136px);
  font-weight: 700;
  line-height: 0.86;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.hero-title .sunu {
  color: var(--charcoal);
  display: block;
}

.hero-title .biz {
  color: var(--red);
  display: block;
}

.hero-title .grp {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.22em;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-top: 8px;
}

.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(17px, 2vw, 23px);
  line-height: 1.6;
  color: var(--text-body);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  padding-top: 48px;
  border-top: 1px solid var(--gray-200);
  margin-top: 48px;
  flex-wrap: wrap;
}

.h-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.h-stat-n {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--charcoal);
}

.h-stat-div {
  width: 1px;
  background: var(--gray-200);
  align-self: stretch;
  flex-shrink: 0;
}

.hero-cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.badge-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: var(--red);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

.h-stat-l {
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--text-muted);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 88px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--earth);
  z-index: 10;
}

.scroll-pill {
  width: 22px;
  height: 38px;
  border: 2px solid var(--sand);
  border-radius: 50px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.scroll-bead {
  width: 4px;
  height: 8px;
  background: var(--red);
  border-radius: 50px;
  animation: scrollBead 1.8s ease-in-out infinite;
}

@keyframes scrollBead {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(12px); opacity: 0.3; }
}

.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 88px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  animation: scrollHint 2s ease-in-out infinite;
}

@keyframes scrollHint {
  0%, 100% { transform: translateY(0); opacity: 0.6; }
  50% { transform: translateY(8px); opacity: 1; }
}

@media (max-width: 1024px) {
  .hero.hero-split {
    grid-template-columns: 1fr;
  }

  .hero-left {
    padding: 100px 48px 60px 48px;
  }

  .hero-right {
    min-height: 500px;
  }
}

@media (max-width: 768px) {
  .hero.hero-split {
    grid-template-columns: 1fr;
    margin-top: 72px;
  }

  .hero-left {
    padding: 80px 24px 60px 24px;
  }

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

  .hero-stats {
    gap: 24px;
    margin-top: 32px;
    padding-top: 32px;
  }

  .scroll-hint {
    display: none;
  }
}

/* ======================== SECTIONS ======================== */
.section {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 1;
}

.section-dark {
  background-color: var(--ink);
  color: var(--white);
}

.section-alt {
  background-color: var(--surface);
}

.section-eyebrow {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--red);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 2px;
  background-color: var(--red);
  flex-shrink: 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  color: inherit;
}

.section-lead {
  font-size: 17px;
  color: var(--text-sec);
  max-width: 600px;
  line-height: 1.85;
  margin-bottom: 40px;
}

.section-dark .section-lead {
  color: rgba(255,255,255,0.7);
}

/* ======================== SUBSIDIARY CARDS ======================== */
.sub-card {
  min-height: 390px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.sub-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  z-index: 1;
}

.sub-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.03) 0%, rgba(0,0,0,0.72) 100%);
  transition: opacity 0.5s ease;
  z-index: 2;
}

.sub-card:hover .sub-card-overlay {
  opacity: 0.9;
}

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

.sub-card:hover {
  transform: scale(1.02);
  box-shadow: 0 24px 80px rgba(0,0,0,0.16);
}

.sub-card-content {
  position: relative;
  z-index: 3;
  padding: 28px;
  color: var(--white);
}

.sub-card-num {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 4;
  background-color: var(--red);
  color: var(--white);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 6px;
}

/* .sub-card h3 and .sub-card p overrides removed — new card design uses
   .sub-card-body .sub-card-title and .sub-card-body .sub-card-desc below */

/* ======================== IMPACT SECTION ======================== */
.impact-section {
  background-color: var(--ink);
  color: var(--white);
  padding: 100px 0;
}

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

.impact-item {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.impact-icon {
  font-size: 40px;
  color: var(--red);
  opacity: 0.8;
  margin-bottom: 12px;
}

.impact-num {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 12px;
}

.impact-label {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 1024px) {
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .impact-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}

/* ======================== BUTTONS ======================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 48px;
  padding: 0 28px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--tr);
  text-decoration: none;
  font-family: var(--font-body);
}

.btn-red {
  background-color: var(--red);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(239,54,76,0.3);
}

.btn-red:hover {
  background-color: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(239,54,76,0.4);
}

.btn-outline {
  border: 1.5px solid var(--charcoal);
  color: var(--charcoal);
  background-color: transparent;
}

.btn-outline:hover {
  background-color: var(--charcoal);
  color: var(--white);
}

.btn-red-outline {
  border: 1.5px solid var(--red);
  color: var(--red);
  background-color: transparent;
}

.btn-red-outline:hover {
  background-color: var(--red);
  color: var(--white);
}

.btn-full {
  width: 100%;
}

/* ======================== ABOUT SECTION ======================== */
.about-section {
  background-color: var(--cream);
}

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

.about-visual {
  position: relative;
  perspective: 1200px;
}

.about-image {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.12);
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: var(--tr-slow);
}

.about-visual:hover .about-image {
  transform: translateY(-8px);
  box-shadow: 0 32px 96px rgba(0,0,0,0.16);
}

.stat-bubble {
  position: absolute;
  background: var(--white);
  border-radius: 20px;
  padding: 20px 28px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
  text-align: center;
  animation: floatCard 6s ease-in-out infinite;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.about-content h2 {
  margin-bottom: 24px;
}

.about-features {
  margin-top: 40px;
}

.about-feat {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}

.feat-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background-color: var(--red-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 20px;
}

.about-feat h4 {
  margin-bottom: 8px;
  color: var(--text-primary);
}

.about-feat p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sec);
}

.proverb-block {
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin-top: 32px;
  font-size: 16px;
  font-style: italic;
  color: var(--text-body);
  line-height: 1.7;
}

.about-section .section-eyebrow {
  color: var(--earth);
}
.about-section .section-eyebrow::before {
  background-color: var(--earth);
}

.feat-icon.gold {
  background-color: rgba(201,169,110,0.15);
  color: var(--earth);
}

@media (max-width: 1024px) {
  .about-grid {
    gap: 60px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-image {
    aspect-ratio: 3 / 2;
  }
}

/* ======================== TICKER ======================== */
.ticker {
  background-color: var(--red);
  height: 48px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0;
  position: relative;
}

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ======================== FOOTER ======================== */
.footer {
  background-color: var(--ink);
  color: var(--white);
  padding-top: 80px;
}

.kente-border {
  height: 8px;
  background: repeating-linear-gradient(
    90deg,
    var(--red) 0px, var(--red) 20px,
    var(--gold) 20px, var(--gold) 40px,
    var(--baobab) 40px, var(--baobab) 60px,
    var(--sand) 60px, var(--sand) 80px,
    var(--atlantic) 80px, var(--atlantic) 100px
  );
}

.footer-main {
  padding: 80px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 24px;
}

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

.social-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.08);
  border: none;
  color: var(--white);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--tr-fast);
  font-size: 16px;
}

.social-btn:hover {
  background-color: var(--red);
  transform: translateY(-3px);
}

.f-col-title {
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.9);
  margin-bottom: 16px;
}

.f-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.f-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--tr-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.f-links a:hover {
  color: var(--red);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  flex-wrap: wrap;
  gap: 16px;
}

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

.footer-bottom-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: var(--tr-fast);
  font-size: 13px;
}

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

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }
}

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

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

  .footer-bottom-links {
    justify-content: center;
  }
}

/* ======================== FORMS ======================== */
.contact-form {
  background: var(--white);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
  padding: 12px 16px;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--tr-fast);
  background-color: var(--white);
  color: var(--text-primary);
}

textarea {
  height: auto;
  min-height: 120px;
  resize: vertical;
}

input[type="text"]:focus,
input[type="email"]:focus,
input[type="tel"]:focus,
textarea:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,54,76,0.1);
}

input[type="submit"] {
  width: 100%;
}

/* ======================== VALUE CARDS ======================== */
.value-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  transition: var(--tr);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}

.value-card h4 {
  color: var(--text-primary);
}

.value-card p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--text-sec);
  margin-bottom: 0;
}

/* ======================== PRESENCE SECTION ======================== */
.presence-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.country-badge {
  background-color: var(--surface);
  border-radius: 16px;
  padding: 24px 20px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--tr);
  cursor: pointer;
}

.country-badge:hover {
  border-color: var(--red);
  background-color: var(--red-50);
}

.country-flag {
  font-size: 32px;
  margin-bottom: 12px;
}

.country-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

/* ======================== COMPANY SHOWCASE ======================== */
.company-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.company-card {
  background: var(--surface);
  border-radius: 16px;
  padding: 28px 24px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--tr);
}

.company-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

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

.company-card h4 {
  margin-bottom: 12px;
}

.company-card p {
  font-size: 13px;
  color: var(--text-sec);
  margin-bottom: 20px;
}

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

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

/* ======================== UTILITIES ======================== */
.hidden-mobile {
  display: block;
}

@media (max-width: 768px) {
  .hidden-mobile {
    display: none !important;
  }
}

.hidden-desktop {
  display: none;
}

@media (max-width: 768px) {
  .hidden-desktop {
    display: block !important;
  }
}

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

.text-right {
  text-align: right;
}

.mt-20 { margin-top: 20px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-40 { margin-top: 40px; }
.mt-48 { margin-top: 48px; }
.mb-20 { margin-bottom: 20px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-40 { margin-bottom: 40px; }
.mb-48 { margin-bottom: 48px; }

.pt-20 { padding-top: 20px; }
.pt-24 { padding-top: 24px; }
.pt-32 { padding-top: 32px; }
.pb-20 { padding-bottom: 20px; }
.pb-24 { padding-bottom: 24px; }
.pb-32 { padding-bottom: 32px; }

/* ======================== ANIMATIONS ======================== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.aos-animate,
[data-aos].aos-animate {
  animation-duration: 0.8s;
  animation-fill-mode: both;
}

.aos-animate[data-aos="fade-up"],
[data-aos="fade-up"].aos-animate {
  animation-name: fadeInUp;
}

.aos-animate[data-aos="fade-down"],
[data-aos="fade-down"].aos-animate {
  animation-name: fadeInDown;
}

.aos-animate[data-aos="fade-in"],
[data-aos="fade-in"].aos-animate {
  animation-name: fadeIn;
}

/* ======================== COMPANY INTRODUCTION SECTION ======================== */
.company-intro {
  background: var(--white);
  padding: 80px 0 72px;
  border-bottom: 1px solid var(--border);
}

.company-intro-inner {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 0 24px;
}

.company-intro-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent, var(--red));
  margin-bottom: 20px;
}

.company-intro-eyebrow::before,
.company-intro-eyebrow::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--accent, var(--red));
}

.company-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.15;
  margin-bottom: 24px;
}

.company-intro-lead {
  font-size: clamp(15px, 1.6vw, 18px);
  color: var(--text-sec);
  line-height: 1.9;
  margin-bottom: 16px;
}

.company-intro-lead + .company-intro-lead {
  margin-bottom: 48px;
}

.company-intro-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
  text-align: left;
}

@media (max-width: 768px) {
  .company-intro-pillars {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

.intro-pillar {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px 20px;
  transition: var(--tr);
}

.intro-pillar:hover {
  border-color: var(--accent, var(--red));
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.intro-pillar-icon {
  font-size: 28px;
  margin-bottom: 12px;
  display: block;
}

.intro-pillar h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.intro-pillar p {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.6;
  margin: 0;
}

/* ======================== SPECIFIC PAGES ======================== */

/* Subsidiary Page Hero */
.sub-hero {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px;
  background: linear-gradient(135deg, rgba(239,54,76,0.05) 0%, rgba(239,54,76,0.02) 100%);
}

.sub-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(48px, 8vw, 96px);
  margin-bottom: 16px;
}

.sub-hero p {
  font-size: 18px;
  color: var(--text-sec);
  max-width: 600px;
  margin: 0 auto 24px;
}

/* ======================== RESPONSIVE IMPROVEMENTS ======================== */
@media (max-width: 480px) {
  body {
    font-size: 15px;
  }

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

  .section-title {
    font-size: clamp(24px, 5vw, 36px);
  }

  .nav-wrap {
    padding: 0 16px;
  }

  .hero-left {
    padding: 80px 16px 40px 16px;
  }

  .btn {
    padding: 0 20px;
    height: 44px;
    font-size: 13px;
  }

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

/* ======================== TICKER INNER ======================== */
.ticker-track {
  display: flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
  animation: ticker 40s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 20px;
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
}

.ticker-star {
  color: rgba(255,255,255,0.5);
  font-size: 10px;
}

/* ======================== SUBSIDIARIES SECTION ======================== */
.subs-section {
  background-color: #F5F0E8;
}

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

.subs-header .section-eyebrow {
  justify-content: center;
}

.subs-header .section-eyebrow::before {
  display: none;
}

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

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

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

/* ====================== SUBSIDIARY CARD INNER STRUCTURE ====================== */
.sub-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-card);
  transition: var(--tr);
}

.sub-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 80px rgba(0,0,0,0.14);
}

.sub-card-banner {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--ink);
  flex-shrink: 0;
}

.sub-card-banner .sub-card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

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

.sub-card-banner .sub-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.02) 0%, rgba(0,0,0,0.55) 100%);
  z-index: 2;
}

.sub-card-icon {
  position: absolute;
  bottom: 16px;
  right: 16px;
  z-index: 4;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  border: 1px solid rgba(255,255,255,0.2);
}

.sub-card-num {
  z-index: 4;
}

.sub-card-body {
  padding: 24px 28px 28px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 10px;
}

.sub-card-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--red);
}

.sub-card-body .sub-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0;
}

.sub-card-body .sub-card-desc {
  font-size: 13px;
  color: var(--text-sec);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}

.country-badges-container {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
}

.country-badges-container .country-badge {
  background: var(--red-50);
  color: var(--red);
  border: 1px solid var(--red-100);
  border-radius: 50px;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}

.sub-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  margin-top: 8px;
  text-decoration: none;
  transition: gap var(--tr-fast);
}

.sub-card:hover .sub-card-cta {
  gap: 10px;
}

/* ======================== ABOUT STAT BUBBLES ======================== */
.stat-bubble-top {
  top: -24px;
  right: -24px;
  animation-delay: 0s;
}

.stat-bubble-bottom {
  bottom: -20px;
  left: -24px;
  animation-delay: 1.5s;
}

/* ======================== VALUES SECTION ======================== */
.values-section {
  background-color: var(--cream);
}

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

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

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

.value-icon-wrap {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 8px;
}

.value-wolof {
  font-size: 12px;
  font-style: italic;
  color: var(--text-muted);
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}

/* ======================== PRESENCE SECTION ======================== */
.presence-section {
  background-color: var(--white);
}

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

@media (max-width: 1024px) {
  .presence-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.presence-map-wrap {
  position: relative;
}

.presence-map-art {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse at 50% 50%,
    rgba(239,54,76,0.07) 0%,
    rgba(239,54,76,0.03) 40%,
    transparent 70%);
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}

.presence-map-content {
  position: relative;
  z-index: 1;
  background: var(--ink);
  border-radius: 28px;
  padding: 60px 48px;
  text-align: center;
  overflow: hidden;
}

.presence-map-content::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(239,54,76,0.15) 0%, transparent 70%);
  border-radius: 50%;
}

.map-globe {
  font-size: 64px;
  margin-bottom: 24px;
  display: block;
}

.map-title {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 32px);
  color: var(--white);
  letter-spacing: 0.08em;
  line-height: 1.1;
}

.map-separator,
.map-sep-2 {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--red);
  padding: 10px 0;
  display: block;
}

.map-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 32px;
}

.flag-badge {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  border-radius: 50px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  transition: var(--tr-fast);
  cursor: default;
}

.flag-badge:hover {
  background: rgba(239,54,76,0.2);
  border-color: var(--red);
  color: var(--white);
}

.presence-list .section-eyebrow {
  justify-content: flex-start;
}

.countries {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
}

.country-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  transition: var(--tr-fast);
}

.country-row:last-child {
  border-bottom: none;
}

.country-row:hover {
  background-color: var(--red-50);
}

.country-flag {
  font-size: 28px;
  min-width: 40px;
  text-align: center;
}

.country-info {
  flex: 1;
  min-width: 0;
}

.country-info h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.country-info p {
  font-size: 12px;
  color: var(--text-muted);
  margin: 0;
}

.country-tag {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}

.tag-hq {
  background: var(--red);
  color: var(--white);
}

.tag-primary {
  background: rgba(46,125,50,0.12);
  color: #2E7D32;
}

.tag-growing {
  background: rgba(21,101,192,0.1);
  color: #1565C0;
}

.tag-expanding {
  background: rgba(245,127,23,0.12);
  color: #F57F17;
}

/* ======================== CONTACT SECTION ======================== */
.contact-section {
  background-color: var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}

@media (max-width: 1024px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 60px;
  }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.c-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.c-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: var(--red-50);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 18px;
}

.c-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.c-text p {
  font-size: 14px;
  color: var(--text-sec);
  line-height: 1.6;
  margin: 0;
}

.contact-form-wrap {
  background: var(--white);
  border-radius: 24px;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-light);
}

@media (max-width: 768px) {
  .contact-form-wrap {
    padding: 28px 20px;
  }
}

.contact-form-el {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.f-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .f-row {
    grid-template-columns: 1fr;
  }
}

.f-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.f-group label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
}

select {
  padding: 12px 16px;
  height: 48px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--tr-fast);
  background-color: var(--white);
  color: var(--text-primary);
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%236B7280' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
}

select:focus {
  outline: none;
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(239,54,76,0.1);
}

/* ======================== NEWSLETTER ======================== */
.newsletter-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.newsletter-form input {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--white);
  height: 44px;
  border-radius: 10px;
  padding: 0 14px;
  font-size: 13px;
  font-family: var(--font-body);
  transition: var(--tr-fast);
}

.newsletter-form input::placeholder {
  color: rgba(255,255,255,0.4);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(255,255,255,0.12);
}

.newsletter-form button {
  height: 40px;
  padding: 0 20px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--font-body);
  transition: var(--tr-fast);
  letter-spacing: 0.04em;
}

.newsletter-form button:hover {
  background: var(--red-dark);
}

/* ======================== ACCESSIBILITY ======================== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* High Contrast Mode */
@media (prefers-contrast: more) {
  :root {
    --red: #C8001A;
    --charcoal: #000000;
    --ink: #000000;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --bg: #1A1A2E;
    --text-primary: #FFFFFF;
    --text-body: #E5E5E5;
  }

  body {
    background-color: var(--ink);
    color: var(--text-body);
  }
}

/* ======================== CULTURE BAND ======================== */
.culture-band {
  background: linear-gradient(135deg, var(--ink) 0%, #1A1A2E 50%, var(--atlantic) 100%);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.culture-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A96E' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.culture-band-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.culture-region {
  text-align: center;
  color: var(--white);
}
.culture-region-flag {
  font-size: 48px;
  display: block;
  margin-bottom: 12px;
  line-height: 1;
}
.culture-region-name {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.12em;
  color: var(--sand);
  display: block;
  margin-bottom: 6px;
}
.culture-region-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.culture-divider {
  width: 1px;
  height: 60px;
  background: linear-gradient(180deg, transparent, var(--sand), transparent);
}
