/* ============================================================
   EURO OIL HOLDINGS — Master Stylesheet v4
   Font: Times New Roman serif | Full mobile responsive
   ============================================================ */

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

/* ── Variables ── */
:root {
  --gold:        #C9A84C;
  --gold-lt:     #E2C06A;
  --gold-dk:     #A07830;
  --gold-glow:   rgba(201,168,76,0.12);
  --gold-border: rgba(201,168,76,0.22);
  --black:       #080808;
  --dark:        #0f0f0f;
  --card:        #141414;
  --card2:       #1a1a1a;
  --white:       #FFFFFF;
  --txt:         #CCCCCC;
  --muted:       #777777;
  --green:       #4CAF74;
  --nav-h:       78px;
  --serif:       'Times New Roman', Times, serif;
  --sans:        'Montserrat', sans-serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: #080808;
  background: var(--black);
  color: #fff;
  color: var(--white);
  font-family: var(--serif) !important;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { cursor: pointer; }

/* ── All text uses Times New Roman ── */
h1, h2, h3, h4, h5, h6,
p, a, span, div, li, td, th,
input, textarea, select, button,
.btn, .hero-title, .section-title,
.hero-label, .section-label,
.stat-num, .stat-label,
.logo-name, .logo-sub, .logo-tag,
.nav-links a, .footer-col ul a,
.mobile-nav-links a {
  font-family: 'Times New Roman', Times, serif !important;
}

/* Navigation labels — keep uppercase tracking */
.nav-links a,
.hero-label,
.section-label,
.btn,
.logo-name,
.logo-sub,
.logo-tag,
.ig-title,
.stat-label,
.mobile-nav-links a,
.chart-tab,
.pillar-title,
.sp-tit,
.git-lbl,
.ci-lbl,
.metric-lbl,
.office-city,
.biz-card-title,
.biz-main-card .biz-card-title,
.why-title,
.job-title {
  letter-spacing: 1.5px;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9000;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 44px;
  background: rgba(8,8,8,0.97);
  border-bottom: 1px solid var(--gold-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 4px 40px rgba(0,0,0,0.8); }

.nav-logo { display: flex; align-items: center; gap: 11px; flex-shrink: 0; }
.logo-svg  { width: 48px; height: 48px; flex-shrink: 0; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name { font-size: 13px !important; font-weight: 800; letter-spacing: 3.5px; color: var(--white); }
.logo-sub  { font-size: 9px  !important; font-weight: 600; letter-spacing: 2.5px; color: var(--gold); }
.logo-tag  { font-size: 8px  !important; font-weight: 400; letter-spacing: 2px;   color: var(--muted); }

/* Desktop nav links */
.nav-links { list-style: none; display: flex; align-items: center; gap: 28px; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 11px !important; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: var(--txt);
  position: relative; padding-bottom: 3px; transition: color 0.25s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.25s;
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Right side of navbar */
.nav-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav-lang {
  display: flex; align-items: center; gap: 5px;
  font-size: 10px !important; font-weight: 700; letter-spacing: 1.5px;
  color: var(--txt); border: 1px solid var(--gold-border);
  padding: 5px 12px; cursor: pointer; transition: all 0.25s;
}
.nav-lang:hover { border-color: var(--gold); color: var(--gold); }
.nav-lang i { font-size: 8px; }

/* Hamburger */
.nav-hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
  -webkit-appearance: none; appearance: none;
  outline: none; -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  min-width: 40px; min-height: 40px;
  align-items: center; justify-content: center;
}
.nav-hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); transition: all 0.32s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   MOBILE MENU  — slide in from right
   ============================================================ */
.mobile-overlay {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.80);
  z-index: 9100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.mobile-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu {
  position: fixed;
  top: 0; right: 0;
  width: 300px; max-width: 85vw; height: 100%;
  background: var(--card);
  border-left: 1px solid var(--gold-border);
  z-index: 9200;
  display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.mobile-menu.open {
  transform: translateX(0);
}

/* Mobile menu header */
.mobile-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--gold-border);
  background: var(--dark);
  min-height: var(--nav-h);
  flex-shrink: 0;
}
.mm-logo { display: flex; align-items: center; gap: 9px; }
.mm-logo svg { width: 36px; height: 36px; flex-shrink: 0; }

.mobile-close {
  width: 44px; height: 44px;
  border: 1px solid var(--gold-border);
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 18px; cursor: pointer;
  transition: all 0.25s; flex-shrink: 0;
  font-family: 'Times New Roman', Times, serif !important;
  line-height: 1; padding: 0; outline: none;
  border-radius: 0; -webkit-appearance: none; appearance: none;
  -webkit-tap-highlight-color: transparent;
  pointer-events: all;
  touch-action: manipulation;
  position: relative; z-index: 10;
}
.mobile-close:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.mobile-close:focus-visible { outline: 1px solid var(--gold); }

/* Mobile nav links */
.mobile-nav-links {
  flex: 1; overflow-y: auto;
  padding: 10px 0;
  display: flex; flex-direction: column;
}
.mobile-nav-links a {
  display: flex !important; align-items: center; justify-content: space-between;
  padding: 16px 26px;
  font-size: 11px !important; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--txt);
  border-bottom: 1px solid rgba(201,168,76,0.08);
  transition: all 0.25s;
  text-decoration: none;
}
.mn-arrow { color: rgba(201,168,76,0.3); font-size: 13px; transition: all 0.25s; font-style: normal; }
.mobile-nav-links a:hover,
.mobile-nav-links a.active {
  color: var(--gold);
  background: var(--gold-glow);
  padding-left: 32px;
}
.mobile-nav-links a:hover .mn-arrow,
.mobile-nav-links a.active .mn-arrow { color: var(--gold); }

/* Mobile menu footer */
.mobile-menu-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--gold-border);
  background: var(--dark);
  flex-shrink: 0;
}
.mm-footer-label { font-size: 9px; letter-spacing: 2px; color: var(--muted); font-weight: 600; text-transform: uppercase; margin-bottom: 5px; }
.mm-footer-email { font-size: 12px; font-weight: 600; color: var(--gold); }

/* ============================================================
   HERO — shared
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden; padding-top: var(--nav-h);
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  background-repeat: no-repeat;
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  /*background: linear-gradient(105deg, rgba(8,8,8,0.96) 0%, rgba(8,8,8,0.72) 50%, rgba(8,8,8,0.32) 100%);*/
}
.hero-content {
  position: relative; z-index: 2;
  padding: 80px 80px; max-width: 720px;
}
.hero-label {
  font-size: 10px !important; font-weight: 700; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 16px;
  display: flex; align-items: center; gap: 14px;
}
.hero-label::before {
  content: ''; display: block; width: 28px; height: 1px;
  background: var(--gold); flex-shrink: 0;
}
.hero-title {
  font-size: clamp(38px, 5.5vw, 68px) !important;
  font-weight: 800; line-height: 1.05;
  text-transform: uppercase; letter-spacing: -1px;
  color: var(--white); margin-bottom: 22px;
}
.hero-title .gold { color: var(--gold); }
.gold-line { width: 46px; height: 2px; background: var(--gold); margin: 0 0 22px; }
.hero-desc { font-size: 13.5px; color: var(--txt); line-height: 1.85; margin-bottom: 36px; max-width: 480px; }

/* Scroll indicator */
.scroll-dot {
  position: absolute; bottom: 36px; right: 50px; z-index: 3;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  writing-mode: vertical-rl;
  font-size: 8px !important; letter-spacing: 3px; color: var(--gold); font-weight: 700;
}
.scroll-dot::before {
  content: ''; width: 1px; height: 52px;
  background: linear-gradient(var(--gold), transparent);
  animation: scrollLine 1.8s ease-in-out infinite;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 26px;
  font-size: 11px !important; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  cursor: pointer; transition: all 0.25s; border: none;
  text-decoration: none;
}
.btn-outline { background: transparent; border: 1px solid var(--gold); color: var(--white); }
.btn-outline:hover { background: var(--gold); color: var(--black); }
.btn-gold { background: var(--gold); color: var(--black); border: 1px solid var(--gold); }
.btn-gold:hover { background: var(--gold-lt); border-color: var(--gold-lt); }
.btn-arrow { font-size: 14px; transition: transform 0.25s; }
.btn:hover .btn-arrow { transform: translateX(4px); }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 80px; }
.section-label {
  font-size: 10px !important; font-weight: 700; letter-spacing: 4px;
  color: var(--gold); text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(26px, 3.2vw, 44px) !important;
  font-weight: 800; text-transform: uppercase; line-height: 1.08; letter-spacing: -0.5px;
}
.section-title .gold { color: var(--gold); }

/* ============================================================
   STAT BAR
   ============================================================ */
.stats-bar {
  display: grid; grid-template-columns: repeat(4,1fr);
  background: var(--card);
  border-top: 1px solid var(--gold-border); border-bottom: 1px solid var(--gold-border);
}
.stat-item {
  display: flex; align-items: center; gap: 16px;
  padding: 28px 32px; border-right: 1px solid var(--gold-border);
}
.stat-item:last-child { border-right: none; }
.stat-icon { color: var(--gold); font-size: 22px; flex-shrink: 0; }
.stat-num  { font-size: 28px !important; font-weight: 800; color: var(--gold); line-height: 1; }
.stat-label { font-size: 9px !important; font-weight: 600; letter-spacing: 2px; color: var(--muted); text-transform: uppercase; margin-top: 4px; }

/* ============================================================
   ICON GRID (6 cols — Investors)
   ============================================================ */
.icon-grid {
  display: grid; grid-template-columns: repeat(6,1fr);
  background: var(--card); border: 1px solid var(--gold-border); margin: 0 80px;
}
.icon-grid-item {
  padding: 34px 18px; text-align: center;
  border-right: 1px solid var(--gold-border);
  transition: background 0.25s; cursor: pointer;
}
.icon-grid-item:last-child { border-right: none; }
.icon-grid-item:hover { background: var(--gold-glow); }
.ig-icon  { font-size: 26px; color: var(--gold); margin-bottom: 13px; }
.ig-title { font-size: 9px !important; font-weight: 700; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 8px; }
.ig-desc  { font-size: 11px !important; color: var(--muted); line-height: 1.65; margin-bottom: 10px; }
.ig-arrow { color: var(--gold); font-size: 14px; }

/* ============================================================
   CONTACT BAR
   ============================================================ */
.contact-bar {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 26px 44px; margin: 0 80px;
  background: rgba(201,168,76,0.05); border: 1px solid var(--gold-border);
}
.contact-bar .cb-left { display: flex; align-items: center; gap: 18px; }
.cb-icon {
  width: 42px; height: 42px; border: 1px solid var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 15px; flex-shrink: 0;
}
.cb-text  { font-size: 12px; color: var(--txt); }
.cb-email { font-size: 15px !important; font-weight: 600; color: var(--gold); margin-top: 2px; }

/* ============================================================
   FORM
   ============================================================ */
.form-group { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.form-group.single { grid-template-columns: 1fr; }
.form-input, .form-select, .form-textarea {
  width: 100%; background: rgba(255,255,255,0.04);
  border: 1px solid var(--gold-border); color: var(--white);
  font-family: 'Times New Roman', Times, serif !important;
  font-size: 13px !important; padding: 13px 15px;
  outline: none; transition: border-color 0.25s; -webkit-appearance: none;
}
.form-input::placeholder, .form-textarea::placeholder { color: #555; }
.form-input:focus, .form-select:focus, .form-textarea:focus { border-color: var(--gold); }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='%23C9A84C'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
  padding-right: 36px; background-color: rgba(255,255,255,0.04);
}
.form-select option { background: var(--dark); color: var(--white); }
.form-textarea { resize: vertical; min-height: 110px; }
.alert { padding: 13px 18px; font-size: 12px !important; font-weight: 600; margin-bottom: 14px; display: none; }
.alert.show { display: block; }
.alert-success { background: rgba(76,175,80,0.1); border: 1px solid rgba(76,175,80,0.4); color: #81C784; }
.alert-error   { background: rgba(244,67,54,0.1); border: 1px solid rgba(244,67,54,0.4); color: #EF9A9A; }

/* ============================================================
   FOOTER
   ============================================================ */
footer { background: var(--dark); border-top: 1px solid var(--gold-border); padding: 60px 80px 26px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-desc { font-size: 11.5px !important; color: var(--muted); line-height: 1.85; max-width: 260px; margin-top: 14px; }
.footer-social { display: flex; gap: 8px; margin-top: 18px; }
.social-btn {
  width: 34px; height: 34px; border: 1px solid var(--gold-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 12px; cursor: pointer; transition: all 0.25s;
}
.social-btn:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
.footer-col h4 { font-size: 9.5px !important; font-weight: 700; letter-spacing: 3px; color: var(--white); text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-col ul a { font-size: 11.5px !important; color: var(--muted); transition: color 0.25s; }
.footer-col ul a:hover { color: var(--gold); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 22px; border-top: 1px solid var(--gold-border); }
.footer-bottom p { font-size: 10.5px !important; color: var(--muted); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 10.5px !important; color: var(--muted); transition: color 0.25s; }
.footer-bottom-links a:hover { color: var(--gold); }
.footer-follow { display: flex; align-items: center; gap: 10px; }
.footer-follow span { font-size: 9px !important; letter-spacing: 2.5px; color: var(--muted); font-weight: 600; }

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: translateY(0); } }
@keyframes blink { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.animate-fade-up { animation: fadeInUp 0.85s ease both; }

/* ============================================================
   RESPONSIVE — 1280px
   ============================================================ */
@media (max-width: 1280px) {
  .navbar { padding: 0 32px; }
  .nav-links { gap: 20px; }
  .section { padding: 70px 48px; }
  .hero-content { padding: 70px 48px; }
  .icon-grid { margin: 0 48px; }
  .contact-bar { margin: 0 48px; }
  footer { padding: 56px 48px 24px; }
}

/* ============================================================
   RESPONSIVE — 1024px  (tablet landscape — hide desktop nav)
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }

  .stats-bar { grid-template-columns: repeat(2,1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-top: 1px solid var(--gold-border); }
  .stat-item:nth-child(4) { border-top: 1px solid var(--gold-border); border-right: none; }

  .icon-grid { grid-template-columns: repeat(3,1fr); margin: 0 40px; }
  .icon-grid-item:nth-child(3) { border-right: none; }
  .icon-grid-item:nth-child(4),
  .icon-grid-item:nth-child(5),
  .icon-grid-item:nth-child(6) { border-top: 1px solid var(--gold-border); }
  .icon-grid-item:nth-child(6) { border-right: none; }

  .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 30px; }
  .section { padding: 60px 40px; }
  .hero-content { padding: 60px 40px; }
  .contact-bar { margin: 0 40px; padding: 22px 28px; flex-wrap: wrap; }
  footer { padding: 50px 40px 22px; }
}

/* ============================================================
   RESPONSIVE — 768px  (tablet portrait)
   ============================================================ */
@media (max-width: 768px) {
  :root { --nav-h: 66px; }
  .navbar { padding: 0 18px; }
  .nav-lang { display: none; }

  .stats-bar { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 20px 16px; }
  .stat-item:nth-child(1) { border-right: 1px solid var(--gold-border); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid var(--gold-border); border-top: 1px solid var(--gold-border); }
  .stat-item:nth-child(4) { border-right: none; border-top: 1px solid var(--gold-border); }

  .icon-grid { grid-template-columns: repeat(2,1fr); margin: 0 16px; }
  .icon-grid-item:nth-child(2) { border-right: none; }
  .icon-grid-item:nth-child(3) { border-top: 1px solid var(--gold-border); border-right: 1px solid var(--gold-border); }
  .icon-grid-item:nth-child(4) { border-top: 1px solid var(--gold-border); border-right: none; }
  .icon-grid-item:nth-child(5) { border-top: 1px solid var(--gold-border); border-right: 1px solid var(--gold-border); }
  .icon-grid-item:nth-child(6) { border-top: 1px solid var(--gold-border); border-right: none; }

  .section { padding: 50px 20px; }
  .hero-content { padding: 60px 20px 40px; }
  .hero-title { font-size: clamp(30px, 9vw, 46px) !important; }
  .scroll-dot { display: none; }

  .contact-bar { margin: 0 16px; padding: 20px; flex-direction: column; text-align: center; gap: 20px; }
  .contact-bar .cb-left { flex-direction: column; align-items: center; }

  footer { padding: 44px 20px 18px; }
  .footer-desc { max-width: 100%; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-follow { justify-content: center; }
  .form-group { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — 480px  (small mobile)
   ============================================================ */
@media (max-width: 480px) {
  .stats-bar { grid-template-columns: 1fr; }
  .stat-item { border-right: none !important; border-top: none !important; border-bottom: 1px solid var(--gold-border); }
  .stat-item:last-child { border-bottom: none; }

  .icon-grid { grid-template-columns: 1fr; margin: 0 12px; }
  .icon-grid-item { border-right: none !important; border-top: 1px solid var(--gold-border) !important; }
  .icon-grid-item:first-child { border-top: none !important; }

  .hero-title { font-size: 28px !important; letter-spacing: -0.5px; }
  .hero-content { padding: 50px 16px 36px; }
  .section { padding: 44px 16px; }
  footer { padding: 36px 16px 16px; }
}

/* ============================================================
   MOBILE — FULL RESPONSIVE OVERHAUL v3
   ============================================================ */

/* ── Global ── */
html, body { overflow-x: hidden; max-width: 100vw; }
*, *::before, *::after { box-sizing: border-box; }
a, button { -webkit-tap-highlight-color: transparent; }
a:focus-visible, button:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
img { image-rendering: auto; max-width: 100%; height: auto; }
table { display: block; overflow-x: auto; -webkit-overflow-scrolling: touch; }

/* ── iOS form zoom prevention ── */
input[type="text"], input[type="email"], input[type="tel"],
input[type="number"], textarea, select { font-size: 16px !important; }

/* ── Hamburger: HIDDEN on desktop, VISIBLE on mobile ── */
@media (min-width: 1025px) {
  .nav-hamburger { display: none !important; }
  .nav-links     { display: flex !important; }
}
@media (max-width: 1024px) {
  .nav-hamburger { display: flex !important; }
  .navbar        { justify-content: space-between; }
}

/* ── Body padding for mobile bottom nav ── */
@media (max-width: 768px) {
  body { padding-bottom: 64px; }
}

/* ============================================================
   768px — TABLET / LARGE MOBILE
   ============================================================ */
@media (max-width: 768px) {

  /* Navbar */
  .logo-svg  { width: 36px !important; height: 36px !important; }
  .logo-name { font-size: 11px !important; }
  .logo-sub  { font-size: 7px !important; }
  .logo-tag  { font-size: 7px !important; }

  /* Typography */
  .section-title  { font-size: clamp(18px, 6vw, 28px) !important; }
  .section-label  { font-size: 9px !important; letter-spacing: 3px !important; }

  /* Buttons */
  .btn { padding: 12px 22px; font-size: 10px !important; }

  /* Stats bar */
  .stat-num   { font-size: clamp(22px, 7vw, 36px) !important; }
  .stat-label { font-size: 9px !important; }

  /* Icon grid → 2 col */
  .icon-grid { grid-template-columns: repeat(2,1fr) !important; margin: 0 16px !important; }
  .icon-grid-item { padding: 24px 16px; border-right: none !important; border-bottom: 1px solid var(--gold-border) !important; }
  .icon-grid-item:nth-child(odd)  { border-right: 1px solid var(--gold-border) !important; }
  .icon-grid-item:last-child,
  .icon-grid-item:nth-last-child(2):nth-child(odd) { border-bottom: none !important; }

  /* Contact bar */
  .cb-right a { font-size: 11px !important; }
  .cb-left p  { font-size: 12px !important; }

  /* Footer → 2 columns, logo row spans full width */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px 20px !important; }
  .footer-grid > div:first-child { grid-column: 1 / -1; } /* logo+desc spans both cols */
  .footer-col { margin-bottom: 4px; }
  .footer-col h4 { margin-bottom: 12px; }

  /* Footer bottom */
  .footer-bottom { flex-direction: column; align-items: center; text-align: center; gap: 10px; }
  .footer-bottom-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .footer-follow { flex-wrap: wrap; justify-content: center; }

  /* Legal pages */
  .legal-toc { padding: 20px; }
  .legal-body { padding: 44px 16px 60px; }
  .legal-contact-box { padding: 20px 16px; }

  /* Investors metrics */
  .metrics-row { grid-template-columns: repeat(2,1fr) !important; }
  .metric-item { border-right: none !important; border-bottom: 1px solid var(--gold-border) !important; }
  .metric-item:nth-child(odd) { border-right: 1px solid var(--gold-border) !important; }
  .metric-item:last-child { border-bottom: none !important; }

  /* Chart tabs */
  .chart-tabs { gap: 4px; flex-wrap: wrap; }
  .chart-tab  { font-size: 9px !important; padding: 5px 8px !important; }
  .chart-wrap { height: 180px !important; }

  /* Investors split → single col */
  .inv-wrap { grid-template-columns: 1fr !important; }

  /* Contact split → single col */
  .con-wrap { grid-template-columns: 1fr !important; }
  .con-right { padding: 50px 20px 40px !important; }
  .con-left  { padding: 50px 20px 30px !important; min-height: auto !important; }

  /* git-bar 4 col → 2 col */
  .git-bar { grid-template-columns: repeat(2,1fr) !important; }
  .git-item { border-right: none !important; border-bottom: 1px solid var(--gold-border) !important; }
  .git-item:nth-child(odd) { border-right: 1px solid var(--gold-border) !important; }
  .git-item:last-child { border-bottom: none !important; }

  /* Offices 6 col → 2 col */
  .offices-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Business page */
  .biz-main-grid { grid-template-columns: 1fr !important; }
  .biz-main-img  { min-height: 220px !important; }

  /* About page story grid */
  .story-grid { grid-template-columns: 1fr !important; gap: 32px !important; }
  .story-badge { left: 10px !important; bottom: -10px !important; }

  /* Careers jobs */
  .job-card    { flex-direction: column !important; align-items: flex-start !important; gap: 12px !important; }
  .job-right   { align-self: flex-end !important; }

  /* Sustainability pillars → 2 col */
  .sus-pillars { grid-template-columns: repeat(2,1fr) !important; margin: 0 16px !important; }
  .sus-pillar:nth-child(odd) { border-right: 1px solid var(--gold-border) !important; }
  .sus-pillar:nth-child(even){ border-right: none !important; }
  .sus-pillar:nth-child(n+3) { border-top: 1px solid var(--gold-border) !important; }
  .sus-mid    { grid-template-columns: 1fr !important; margin: 32px 16px 0 !important; }
  .sus-metrics{ grid-template-columns: 1fr 1fr !important; }
  .sus-commit { grid-template-columns: 1fr !important; margin: 2px 16px 40px !important; }
  .sus-commit-left { padding: 28px 20px !important; }
  .sus-img-panel { min-height: 220px !important; }

  /* About pillars → 2 col already handled, 768 keep 2 */
  .pillars { grid-template-columns: repeat(2,1fr) !important; }
  .pillar { border-right: none !important; border-bottom: 1px solid var(--gold-border) !important; }
  .pillar:nth-child(odd) { border-right: 1px solid var(--gold-border) !important; }
  .pillar:last-child     { border-bottom: none !important; }

  /* About 8-stats → 2 col */
  .stats8 { grid-template-columns: repeat(2,1fr) !important; margin: 30px 20px !important; }
  .s8 { border-right: none !important; border-bottom: 1px solid var(--gold-border) !important; }
  .s8:nth-child(odd)  { border-right: 1px solid var(--gold-border) !important; }
  .s8:last-child      { border-bottom: none !important; }

  /* About split */
  .about-split { grid-template-columns: 1fr !important; }
  .about-split-body { padding: 40px 20px !important; }

  /* Home stats bar → 2 col */
  .stats-bar { grid-template-columns: repeat(2,1fr) !important; }
  .stat-item { border-right: none !important; border-bottom: 1px solid var(--gold-border) !important; }
  .stat-item:nth-child(odd)  { border-right: 1px solid var(--gold-border) !important; }
  .stat-item:last-child      { border-bottom: none !important; }

  /* Business grid handled by index.php inline styles */

  /* Why-grid careers → 2 col */
  .why-grid { grid-template-columns: repeat(2,1fr) !important; }

  /* Contact form rows → single col */
  .form-row { grid-template-columns: 1fr !important; gap: 0 !important; }
}

/* ============================================================
   480px — SMALL MOBILE
   ============================================================ */
@media (max-width: 480px) {

  /* Navbar */
  .navbar    { padding: 0 14px !important; }
  .logo-svg  { width: 30px !important; height: 30px !important; }
  .logo-name { font-size: 10px !important; letter-spacing: 2.5px !important; }
  .logo-sub  { display: none !important; }

  /* Mobile menu full width */
  .mobile-menu { width: 100% !important; max-width: 100vw !important; }

  /* Hero */
  .home-hero-content { padding: 70px 16px 40px !important; }

  /* Stats bar → 1 col */
  .stats-bar { grid-template-columns: 1fr !important; }
  .stat-item { border-right: none !important; }

  /* About 8-stats → 1 col */
  .stats8 { grid-template-columns: 1fr !important; }
  .s8 { border-right: none !important; }
  .s8:nth-child(odd) { border-right: none !important; }

  /* About pillars → 1 col */
  .pillars { grid-template-columns: 1fr !important; }
  .pillar:nth-child(odd) { border-right: none !important; }

  /* Sus pillars → 1 col */
  .sus-pillars { grid-template-columns: 1fr !important; margin: 0 12px !important; }
  .sus-pillar  { border-right: none !important; border-bottom: 1px solid var(--gold-border) !important; }
  .sus-pillar:last-child { border-bottom: none !important; }
  .sus-pillar:nth-child(odd) { border-right: none !important; }

  /* Icon grid → 1 col */
  .icon-grid { grid-template-columns: 1fr !important; }
  .icon-grid-item { border-right: none !important; }
  .icon-grid-item:nth-child(odd) { border-right: none !important; }

  /* Git bar → 1 col */
  .git-bar { grid-template-columns: 1fr !important; }
  .git-item:nth-child(odd) { border-right: none !important; }

  /* Offices → 1 col */
  .offices-grid { grid-template-columns: 1fr !important; }

  /* Why-grid → 1 col */
  .why-grid { grid-template-columns: 1fr !important; }

  /* Metrics → 1 col */
  .metrics-row { grid-template-columns: 1fr !important; }
  .metric-item { border-right: none !important; }
  .metric-item:nth-child(odd) { border-right: none !important; }

  /* Footer stays 2 col even on small phones */
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 20px 16px !important; }
  footer { padding: 32px 14px 14px !important; }
  .footer-bottom-links a { font-size: 10px !important; }

  /* Section padding */
  .section { padding: 48px 16px !important; }
  .gold-line { margin: 14px 0; }
  .stat-item { padding: 16px 12px; }
  .btn { padding: 11px 18px; font-size: 10px !important; }
  .section-label { font-size: 8px !important; letter-spacing: 3px !important; }
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR
   ============================================================ */
.mobile-bottom-nav {
  display: none; /* hidden on desktop */
}
@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    height: 64px;
    background: rgba(8,8,8,0.98);
    border-top: 1px solid var(--gold-border);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 8900;
    align-items: stretch;
  }
  .mbn-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--muted);
    text-decoration: none;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    transition: color 0.2s, background 0.2s;
    border-right: 1px solid var(--gold-border);
    padding: 8px 4px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }
  .mbn-item:last-child { border-right: none; }
  .mbn-item i { font-size: 18px; }
  .mbn-item.active,
  .mbn-item:hover { color: var(--gold); background: rgba(201,168,76,0.06); }
  .mbn-item.mbn-wa {
    color: #25D366;
    border-right: none;
    background: rgba(37,211,102,0.05);
  }
  .mbn-item.mbn-wa:hover { background: rgba(37,211,102,0.12); color: #25D366; }
  .mbn-item.mbn-wa i { font-size: 22px; }
}

/* ============================================================
   WHATSAPP FLOATING BUTTON (all screens, hides on mobile — bottom nav takes over)
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 54px; height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 8800;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.55); color: #fff; }
/* Hide floating button on mobile (bottom nav has WhatsApp already) */
@media (max-width: 768px) { .whatsapp-float { display: none; } }

/* ============================================================
   COOKIE CONSENT BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99000;
  background: rgba(14,14,14,0.98);
  border-top: 1px solid var(--gold-border);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 16px 32px;
  animation: slideUpBanner 0.5s ease;
}
@keyframes slideUpBanner {
  from { transform: translateY(100%); }
  to   { transform: translateY(0); }
}
.cookie-inner {
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.cookie-text {
  font-size: 12px !important; color: var(--txt); line-height: 1.6;
  flex: 1; min-width: 240px;
}
.cookie-text a { color: var(--gold); text-decoration: underline; text-underline-offset: 2px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-sm   { padding: 9px 18px; font-size: 9px !important; letter-spacing: 1.5px; }
.btn-ghost { background: transparent; border-color: var(--gold-border); color: var(--muted); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: var(--gold-glow); }
@media (max-width: 768px) {
  .cookie-banner { padding: 14px 16px; bottom: 64px; } /* sit above bottom nav */
  .cookie-inner  { flex-direction: column; align-items: flex-start; gap: 12px; }
  .cookie-actions { width: 100%; }
  .cookie-actions .btn { flex: 1; text-align: center; }
}
