/* ================================================================
   RAWAFID HOLDING — Master Stylesheet
   Navy #071B34 | Gold #D4AF37 | Dark Gold #B68D2A | White | Light #F4F6F8
   Cinzel (headings) · Montserrat (body)
   ================================================================ */

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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy:       #071B34;
  --navy-deep:  #04101f;
  --navy-mid:   #0c2645;
  --navy-card:  #0a2038;
  --gold:       #D4AF37;
  --gold-dark:  #B68D2A;
  --gold-light: #e6c965;
  --gold-dim:   rgba(212,175,55,0.12);
  --gold-line:  rgba(212,175,55,0.3);
  --white:      #FFFFFF;
  --light:      #F4F6F8;
  --border:     #e4e8ec;
  --text:       #0f2238;
  --muted:      #5a6b7d;
  --serif:      'Cinzel', Georgia, serif;
  --sans:       'Montserrat', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--sans); color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; line-height: 1.7; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }

/* ── ACCENTS ── */
.eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 1.2rem; }
.eyebrow::before { content: ''; width: 42px; height: 1px; background: var(--gold); flex-shrink: 0; }
.eyebrow span { font-size: 11px; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; color: var(--gold); font-family: var(--sans); }
.eyebrow.center { justify-content: center; }

h1, h2, h3, .serif { font-family: var(--serif); }

.section-title { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--navy); line-height: 1.2; letter-spacing: 0.5px; }
.section-title.light { color: var(--white); }
.section-sub { font-size: 15px; color: var(--muted); line-height: 1.8; max-width: 600px; margin-top: 1rem; font-weight: 400; }
.section-sub.light { color: rgba(255,255,255,0.6); }
.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin-left: auto; margin-right: auto; }

/* ── BUTTONS ── */
.btn { display: inline-block; text-decoration: none; font-family: var(--sans); font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; padding: 15px 36px; cursor: pointer; border: none; transition: all 0.3s; }
.btn-gold { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: var(--navy); }
.btn-gold:hover { background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(212,175,55,0.25); }
.btn-outline { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 1px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-mid); }

/* ── NAVBAR ── */
header { background: rgba(7,27,52,0.97); backdrop-filter: blur(12px); position: fixed; top: 0; left: 0; right: 0; z-index: 900; border-bottom: 1px solid rgba(212,175,55,0.18); }
.nav-wrap { display: flex; align-items: center; justify-content: flex-start; height: 80px; max-width: 1320px; margin: 0 auto; padding: 0 2.5rem; gap: 1rem; }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 56px; width: auto; display: block; }
.nav-logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav-logo-name { font-family: var(--serif); color: var(--white); font-size: 20px; font-weight: 700; letter-spacing: 3px; }
.nav-logo-sub { color: var(--gold); font-size: 7.5px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; margin-top: 3px; }

.nav-menu { display: flex; align-items: center; height: 80px; margin-left: auto; }
.nav-item { position: relative; height: 80px; display: flex; align-items: center; }
.nav-item > a { display: flex; align-items: center; gap: 5px; height: 80px; color: rgba(255,255,255,0.8); text-decoration: none; font-size: 12px; font-weight: 500; padding: 0 12px; letter-spacing: 0.5px; text-transform: uppercase; transition: color 0.2s; white-space: nowrap; }
.nav-item > a:hover, .nav-item > a.active { color: var(--gold); }
.nav-arrow { font-size: 8px; opacity: 0.5; transition: transform 0.2s; }
.nav-item:hover .nav-arrow { transform: rotate(180deg); }
.dropdown { display: none; position: absolute; top: 80px; left: 0; background: var(--navy-deep); min-width: 230px; border-top: 2px solid var(--gold); box-shadow: 0 16px 48px rgba(0,0,0,0.5); padding: 8px 0; }
.nav-item:hover .dropdown { display: block; }
.dropdown a { display: block; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 12px; padding: 10px 20px; letter-spacing: 0.5px; transition: all 0.15s; }
.dropdown a:hover { color: var(--gold); background: rgba(212,175,55,0.07); padding-left: 26px; }

.nav-right { display: flex; align-items: center; gap: 18px; }
.nav-cta { background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; padding: 12px 24px; text-decoration: none; transition: all 0.25s; white-space: nowrap; }
.nav-cta:hover { box-shadow: 0 6px 20px rgba(212,175,55,0.3); }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 1px; }
.mobile-nav { display: none; flex-direction: column; background: var(--navy-deep); padding: 1rem 2rem 2rem; position: fixed; top: 80px; left: 0; right: 0; z-index: 899; max-height: calc(100vh - 80px); overflow-y: auto; border-top: 1px solid var(--gold-line); }
.mobile-nav.open { display: flex; }
.mobile-nav a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 14px; font-weight: 500; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.06); letter-spacing: 0.5px; text-transform: uppercase; }
.mobile-nav .m-sub { font-size: 12px; padding: 9px 0 9px 16px; color: rgba(255,255,255,0.45); text-transform: none; }
.mobile-nav a:last-child { border: none; }

/* ── HERO HOME ── */
.home-hero { min-height: 100vh; background: var(--navy); display: flex; align-items: center; padding: 7rem 2.5rem 5rem; margin-top: 80px; position: relative; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0.22; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(7,27,52,0.94) 0%, rgba(7,27,52,0.78) 45%, rgba(7,27,52,0.5) 100%); }
.hero-glow { position: absolute; right: -10%; top: 20%; width: 600px; height: 600px; border-radius: 50%; background: radial-gradient(circle, rgba(212,175,55,0.1) 0%, transparent 65%); pointer-events: none; }
.hero-inner { position: relative; z-index: 2; max-width: 1200px; margin: 0 auto; width: 100%; }
.hero-content { max-width: 760px; }
.hero-mark { height: 90px; margin-bottom: 2rem; }
.hero-h1 { font-family: var(--serif); font-size: 56px; font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: 1.8rem; letter-spacing: 0.5px; }
.hero-h1 .gold { color: var(--gold); }
.hero-desc { font-size: 17px; color: rgba(255,255,255,0.65); line-height: 1.85; margin-bottom: 2.5rem; max-width: 600px; font-weight: 300; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── STATS STRIP ── */
.stats-strip { background: var(--navy-mid); border-top: 1px solid rgba(212,175,55,0.15); border-bottom: 1px solid rgba(212,175,55,0.15); }
.stats-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: flex; justify-content: space-around; flex-wrap: wrap; }
.stat { text-align: center; padding: 2.5rem 1.5rem; }
.stat-num { font-family: var(--serif); font-size: 40px; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-label { font-size: 11px; color: rgba(255,255,255,0.55); margin-top: 8px; letter-spacing: 1.5px; text-transform: uppercase; }

/* ── PAGE HERO ── */
.page-hero { min-height: 460px; background-size: cover; background-position: center; display: flex; align-items: flex-end; padding: 5rem 2.5rem 4rem; margin-top: 80px; position: relative; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(100deg, rgba(4,16,31,0.94) 0%, rgba(7,27,52,0.7) 55%, rgba(7,27,52,0.4) 100%); }
.page-hero-inner { position: relative; z-index: 1; max-width: 1200px; margin: 0 auto; width: 100%; }
.page-hero h1 { font-family: var(--serif); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1rem; letter-spacing: 0.5px; }
.page-hero h1 em { color: var(--gold); font-style: normal; }
.page-hero p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; margin-bottom: 2rem; }
.page-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── SECTIONS ── */
.section { padding: 6rem 0; }
.section-navy { background: var(--navy); }
.section-navy-deep { background: var(--navy-deep); }
.section-light { background: var(--light); }
.section-white { background: var(--white); }

/* Background-image sections — medium visibility with navy overlay */
.section-bg { position: relative; background-size: cover; background-position: center; background-attachment: fixed; }
.section-bg > .container { position: relative; z-index: 2; }
.section-bg::before { content: ''; position: absolute; inset: 0; z-index: 1; }
/* dark overlay for sections with dark cards/light text */
.section-bg.overlay-dark::before { background: linear-gradient(rgba(7,27,52,0.82), rgba(7,27,52,0.88)); }
/* light overlay for sections that hold white/light cards */
.section-bg.overlay-light::before { background: linear-gradient(rgba(244,246,248,0.86), rgba(244,246,248,0.92)); }
/* On mobile, disable fixed attachment (causes glitches on iOS) */
@media (max-width: 1024px) { .section-bg { background-attachment: scroll; } }

/* ── TWO COL ── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.col-img { min-height: 420px; background-size: cover; background-position: center; position: relative; }
.col-img::after { content: ''; position: absolute; inset: 14px; border: 1px solid var(--gold-line); pointer-events: none; }
.col-text h2 { font-family: var(--serif); font-size: 36px; font-weight: 700; color: var(--navy); line-height: 1.2; margin-bottom: 1.2rem; }
.col-text h2.light { color: var(--white); }
.col-text p { font-size: 15px; color: var(--muted); line-height: 1.85; margin-bottom: 1rem; }
.col-text p.light { color: rgba(255,255,255,0.6); }
.gold-rule { width: 70px; height: 2px; background: var(--gold); margin: 1.2rem 0; }
.gold-rule.center { margin: 1.2rem auto; }
.bullets { list-style: none; margin: 1.4rem 0 2rem; }
.bullets li { font-size: 14px; color: var(--muted); padding: 8px 0; display: flex; gap: 12px; border-bottom: 1px solid var(--border); }
.bullets li.light { color: rgba(255,255,255,0.6); border-color: rgba(255,255,255,0.08); }
.bullets li::before { content: '◆'; color: var(--gold); font-size: 9px; flex-shrink: 0; margin-top: 5px; }

/* ── INDUSTRY / CARD GRID ── */
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit,minmax(250px,1fr)); gap: 24px; }

.industry-card { background: var(--navy-card); border: 1px solid rgba(212,175,55,0.15); padding: 2.5rem 2rem; transition: all 0.3s; position: relative; overflow: hidden; }
.industry-card::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 2px; background: linear-gradient(90deg, var(--gold), transparent); transform: scaleX(0); transform-origin: left; transition: transform 0.3s; }
.industry-card:hover::before { transform: scaleX(1); }
.industry-card:hover { border-color: var(--gold-line); transform: translateY(-4px); }
.industry-icon { font-size: 36px; margin-bottom: 1.2rem; }
.industry-card h3 { font-family: var(--serif); font-size: 20px; font-weight: 600; color: var(--white); margin-bottom: 0.8rem; letter-spacing: 0.5px; }
.industry-card p { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.7; }

/* light card */
.lux-card { background: var(--white); border: 1px solid var(--border); padding: 2.5rem 2rem; transition: all 0.3s; }
.lux-card:hover { border-color: var(--gold); box-shadow: 0 10px 40px rgba(7,27,52,0.08); transform: translateY(-3px); }
.lux-card .num { font-family: var(--serif); font-size: 14px; font-weight: 700; color: var(--gold); letter-spacing: 2px; margin-bottom: 1rem; }
.lux-card .icon { font-size: 34px; margin-bottom: 1.2rem; }
.lux-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--navy); margin-bottom: 0.8rem; }
.lux-card p { font-size: 14px; color: var(--muted); line-height: 1.75; }

/* commodity tag cards */
.commodity-block { background: var(--white); border: 1px solid var(--border); border-top: 3px solid var(--gold); padding: 2.5rem 2rem; }
.commodity-block .icon { font-size: 32px; margin-bottom: 1rem; }
.commodity-block h3 { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--navy); margin-bottom: 1rem; }
.commodity-block p { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 1.4rem; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { font-size: 12px; font-weight: 500; color: var(--navy); background: var(--light); border: 1px solid var(--border); padding: 6px 14px; letter-spacing: 0.3px; }

/* ── IMG SECTION ── */
.img-section { min-height: 440px; background-size: cover; background-position: center; position: relative; display: flex; align-items: center; padding: 5rem 2.5rem; }
.img-section::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,16,31,0.9) 0%, rgba(4,16,31,0.6) 100%); }
.img-section-inner { position: relative; z-index: 1; max-width: 640px; }
.img-section-inner h2 { font-family: var(--serif); font-size: 38px; font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.img-section-inner p { font-size: 15px; color: rgba(255,255,255,0.7); line-height: 1.85; margin-bottom: 2rem; }

/* ── GLOBAL MAP REGIONS ── */
.region-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap: 1px; background: rgba(212,175,55,0.12); border: 1px solid rgba(212,175,55,0.12); }
.region-card { background: var(--navy); padding: 2.5rem 2rem; transition: background 0.3s; }
.region-card:hover { background: var(--navy-mid); }
.region-card h3 { font-family: var(--serif); font-size: 18px; color: var(--gold); margin-bottom: 1rem; letter-spacing: 1px; }
.region-card ul { list-style: none; }
.region-card li { font-size: 13px; color: rgba(255,255,255,0.6); padding: 5px 0; }

/* ── TRADE FINANCE ── */
.finance-grid { display: grid; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); gap: 1px; background: var(--border); border: 1px solid var(--border); }
.finance-card { background: var(--white); padding: 2.5rem 2rem; transition: background 0.2s; }
.finance-card:hover { background: var(--light); }
.finance-abbr { font-family: var(--serif); font-size: 28px; font-weight: 700; color: var(--gold); margin-bottom: 0.6rem; }
.finance-card h3 { font-size: 15px; font-weight: 600; color: var(--navy); margin-bottom: 0.6rem; }
.finance-card p { font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: start; }
.contact-info h2 { font-family: var(--serif); font-size: 32px; font-weight: 700; color: var(--navy); margin-bottom: 1rem; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 1.8rem; align-items: flex-start; }
.contact-ico { width: 46px; height: 46px; background: var(--navy); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 18px; }
.contact-detail label { font-size: 11px; font-weight: 600; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; display: block; margin-bottom: 3px; }
.contact-detail span, .contact-detail a { font-size: 15px; color: var(--navy); font-weight: 500; text-decoration: none; }
.contact-form-wrap { background: var(--light); padding: 3rem; border-top: 3px solid var(--gold); }
.contact-form-wrap h3 { font-family: var(--serif); font-size: 24px; font-weight: 600; color: var(--navy); margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 11px; font-weight: 600; color: var(--muted); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.8px; }
.fg input, .fg select, .fg textarea { width: 100%; padding: 13px 15px; border: 1px solid var(--border); font-size: 14px; font-family: var(--sans); color: var(--text); background: var(--white); outline: none; transition: border-color 0.2s; }
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); }
.fg textarea { height: 120px; resize: vertical; }
.form-submit { width: 100%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); color: var(--navy); border: none; padding: 16px; font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; cursor: pointer; font-family: var(--sans); transition: all 0.25s; }
.form-submit:hover { box-shadow: 0 8px 24px rgba(212,175,55,0.3); }

/* ── FOOTER ── */
footer { background: var(--navy-deep); border-top: 1px solid rgba(212,175,55,0.2); }
.footer-top { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem 3rem; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; }
.footer-brand img { height: 64px; margin-bottom: 1.4rem; }
.footer-brand p { font-size: 13px; color: rgba(255,255,255,0.4); line-height: 1.85; max-width: 280px; }
.footer-col h5 { font-family: var(--serif); font-size: 13px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.4rem; }
.footer-col a { display: block; color: rgba(255,255,255,0.45); text-decoration: none; font-size: 13px; margin-bottom: 11px; transition: color 0.2s; }
.footer-col a:hover { color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); padding: 1.8rem 2rem; max-width: 1200px; margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 1rem; align-items: center; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.3); letter-spacing: 0.5px; }
.footer-tagline { font-family: var(--serif); color: var(--gold); font-size: 13px; letter-spacing: 1px; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .two-col, .contact-grid { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-h1 { font-size: 44px; }
}
/* Show hamburger as soon as the full menu would crowd the logo */
@media (max-width: 1240px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-h1 { font-size: 32px; }
  .page-hero h1 { font-size: 30px; }
  .section-title { font-size: 28px; }
  .section { padding: 4rem 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .nav-wrap { padding: 0 1.5rem; }
  .home-hero { padding: 5rem 1.5rem 3.5rem; }
  .page-hero { padding: 3.5rem 1.5rem 2.5rem; }
  .nav-logo-name { font-size: 16px; }
}

/* ── FORM STATUS + SUCCESS MODAL ── */
.form-status { margin-top: 14px; font-size: 13px; padding: 0; text-align: center; }
.form-status.error { color: #c0392b; background: #fdeaea; padding: 12px; border: 1px solid #f5c6c6; }

.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(7,27,52,0.85); backdrop-filter: blur(4px);
  align-items: center; justify-content: center; padding: 1.5rem;
}
.modal-overlay.open { display: flex; animation: modalFade 0.25s ease; }
@keyframes modalFade { from { opacity: 0; } to { opacity: 1; } }
.modal-box {
  background: var(--white); max-width: 420px; width: 100%;
  padding: 3rem 2.5rem; text-align: center; border-top: 4px solid var(--gold);
  animation: modalRise 0.3s ease;
}
@keyframes modalRise { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-icon {
  width: 70px; height: 70px; border-radius: 50%; margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  font-size: 34px; color: var(--navy); font-weight: 700;
}
.modal-box h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--navy); margin-bottom: 0.8rem; }
.modal-box p { font-size: 14px; color: var(--muted); line-height: 1.7; margin-bottom: 2rem; }

/* ── STACKED HERO HEADLINE (reference style) ── */
.hero-h1.stacked { font-size: 60px; line-height: 1.12; }
@media (max-width: 768px) { .hero-h1.stacked { font-size: 34px; } }

/* ── FEATURE STRIP ── */
.feature-strip { background: var(--navy-mid); border-bottom: 1px solid rgba(212,175,55,0.15); }
.feature-strip-inner { max-width: 1200px; margin: 0 auto; padding: 2.5rem 2rem; display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; }
.feature-ico { width: 54px; height: 54px; min-width: 54px; border: 1px solid var(--gold-line); display: flex; align-items: center; justify-content: center; font-size: 24px; }
.feature-text h4 { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--gold); margin-bottom: 5px; letter-spacing: 0.5px; }
.feature-text p { font-size: 12.5px; color: rgba(255,255,255,0.55); line-height: 1.6; }
@media (max-width: 1024px) { .feature-strip-inner { grid-template-columns: 1fr 1fr; gap: 1.8rem; } }
@media (max-width: 600px) { .feature-strip-inner { grid-template-columns: 1fr; } }

/* ── ACTIVITY CARDS (Our Core Activities) ── */
.activity-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.activity-card { display: block; text-decoration: none; background: var(--white); border: 1px solid var(--border); overflow: hidden; position: relative; transition: all 0.3s; }
.activity-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(7,27,52,0.18); border-color: var(--gold); }
.activity-img { height: 150px; background-size: cover; background-position: center; position: relative; }
.activity-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7,27,52,0.55), rgba(7,27,52,0.1)); }
.activity-badge { position: absolute; top: 122px; left: 50%; transform: translateX(-50%); width: 56px; height: 56px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark)); display: flex; align-items: center; justify-content: center; font-size: 24px; z-index: 2; box-shadow: 0 4px 14px rgba(7,27,52,0.25); }
.activity-body { padding: 2.2rem 1.2rem 1.6rem; text-align: center; }
.activity-body h3 { font-family: var(--serif); font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.activity-body p { font-size: 12px; color: var(--muted); line-height: 1.55; }
@media (max-width: 1024px) { .activity-grid { grid-template-columns: 1fr 1fr 1fr; } }
@media (max-width: 768px) { .activity-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .activity-grid { grid-template-columns: 1fr; } }

/* ── PREMIUM LINE ICONS ── */
.lux-ico { width: 1em; height: 1em; display: inline-block; vertical-align: -0.125em; color: var(--gold); }
.industry-icon .lux-ico, .activity-badge .lux-ico, .feature-ico .lux-ico { width: 1em; height: 1em; }
.industry-icon, .feature-ico, .lux-card .icon, .commodity-block .icon { color: var(--gold); }
.activity-badge .lux-ico { color: var(--navy); width: 26px; height: 26px; }
.contact-ico .lux-ico { color: var(--gold); width: 20px; height: 20px; }

/* ── HERO SPLIT + SLIDESHOW ── */
.hero-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.hero-slider { position: relative; height: 460px; border: 1px solid var(--gold-line); overflow: hidden; box-shadow: 0 24px 60px rgba(0,0,0,0.5); }
.hero-slider .slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.1s ease; }
.hero-slider .slide.active { opacity: 1; }
.hero-slider::after { content: ''; position: absolute; inset: 0; box-shadow: inset 0 0 80px rgba(7,27,52,0.5); pointer-events: none; }
.slider-dots { position: absolute; bottom: 18px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 3; }
.slider-dots .dot { width: 9px; height: 9px; border-radius: 50%; border: none; background: rgba(255,255,255,0.4); cursor: pointer; padding: 0; transition: all 0.3s; }
.slider-dots .dot.active { background: var(--gold); width: 26px; border-radius: 5px; }
@media (max-width: 1024px) {
  .hero-split { grid-template-columns: 1fr; gap: 2.5rem; }
  .hero-slider { height: 300px; }
}

/* ── FULL-WIDTH HERO SLIDESHOW ── */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.6s ease-in-out; transform: scale(1.05); }
.hero-slide.active { opacity: 1; animation: heroZoom 6s ease-out forwards; }
@keyframes heroZoom { from { transform: scale(1.05); } to { transform: scale(1.14); } }
.home-hero .hero-overlay { z-index: 1; }
.home-hero .hero-glow { z-index: 1; }
.home-hero .hero-inner { z-index: 2; }

/* ── CLASSIC LUXURY BACKGROUND (replaces photos on inner pages) ── */
.lux-bg {
  position: relative;
  background:
    radial-gradient(ellipse 80% 60% at 75% 20%, rgba(212,175,55,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 10% 90%, rgba(212,175,55,0.04) 0%, transparent 55%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
}
.lux-bg::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.5;
  background-image:
    linear-gradient(rgba(212,175,55,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}
.lux-bg > * { position: relative; z-index: 1; }
/* thin gold top accent for luxury page heroes */
.lux-hero {
  position: relative; min-height: 360px; display: flex; align-items: flex-end;
  padding: 6rem 2.5rem 3.5rem; margin-top: 80px; overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 80% 15%, rgba(212,175,55,0.09) 0%, transparent 60%),
    linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  border-bottom: 1px solid rgba(212,175,55,0.18);
}
.lux-hero::before {
  content: ''; position: absolute; inset: 0; pointer-events: none; opacity: 0.6;
  background-image:
    linear-gradient(rgba(212,175,55,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.04) 1px, transparent 1px);
  background-size: 70px 70px;
}
/* faint large logo flame watermark on luxury heroes */
.lux-hero::after {
  content: ''; position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 380px; height: 380px; pointer-events: none; opacity: 0.05;
  background: url('logo-mark.png') no-repeat center / contain;
}
.lux-hero .page-hero-inner { position: relative; z-index: 2; }

/* classic luxury two-col image replacement: elegant gold-framed panel */
.lux-panel {
  min-height: 360px; position: relative;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(212,175,55,0.08) 0%, transparent 65%),
    linear-gradient(150deg, var(--navy-mid) 0%, var(--navy-deep) 100%);
  border: 1px solid var(--gold-line);
  display: flex; align-items: center; justify-content: center;
}
.lux-panel::before {
  content: ''; position: absolute; inset: 16px; border: 1px solid rgba(212,175,55,0.18); pointer-events: none;
}
.lux-panel img { width: 110px; height: auto; opacity: 0.9; }

/* ── LUX-HERO inner text (matches page-hero typography) ── */
.lux-hero .page-hero-inner { max-width: 1200px; margin: 0 auto; width: 100%; }
.lux-hero h1 { font-family: var(--serif); font-size: 48px; font-weight: 700; color: var(--white); line-height: 1.15; margin-bottom: 1rem; letter-spacing: 0.5px; }
.lux-hero h1 em { color: var(--gold); font-style: normal; }
.lux-hero p { font-size: 16px; color: rgba(255,255,255,0.65); max-width: 560px; line-height: 1.75; margin-bottom: 2rem; }
.lux-hero .gold-rule { background: var(--gold); }
@media (max-width: 768px){ .lux-hero h1 { font-size: 30px; } }

/* ── Orphaned two-col (image removed) → center text full width ── */
.two-col:has(> .col-text:only-child) { grid-template-columns: 1fr; max-width: 760px; margin: 0 auto; text-align: center; }
.two-col:has(> .col-text:only-child) .eyebrow,
.two-col:has(> .col-text:only-child) .gold-rule { justify-content: center; margin-left: auto; margin-right: auto; }
.two-col:has(> .col-text:only-child) .bullets { display: inline-block; text-align: left; }


/* ================================================================
   PREMIUM ENHANCEMENT LAYER — v4.1
   Cinematic hero · robust banner imagery · scroll reveals · polish
   ================================================================ */

/* Guard: transforms (parallax, Ken Burns, reveals) never spill horizontally */
html, body { overflow-x: hidden; }

/* ── CINEMATIC HERO SLIDESHOW ──────────────────────────────────
   Crossfade between slides while each active slide runs a slow,
   directional Ken Burns pan/zoom. Replaces the old opacity flip. */
.hero-slideshow { position: absolute; inset: 0; z-index: 0; overflow: hidden; will-change: transform, opacity; }
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0;
  transform: scale(1.12);
  transition: opacity 1.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}
/* Active slide fades in and drifts via a per-direction keyframe */
.hero-slide.active { opacity: 1; }
.hero-slide.leaving { opacity: 0; z-index: 0; }
.hero-slide.active { z-index: 1; }

.hero-slide.active[data-pan="left"]  { animation: kbLeft  9s ease-out forwards; }
.hero-slide.active[data-pan="right"] { animation: kbRight 9s ease-out forwards; }
.hero-slide.active[data-pan="up"]    { animation: kbUp    9s ease-out forwards; }
.hero-slide.active[data-pan="down"]  { animation: kbDown  9s ease-out forwards; }

@keyframes kbLeft  { from { transform: scale(1.12) translate(2.5%, 0); }  to { transform: scale(1.2) translate(-2.5%, 0); } }
@keyframes kbRight { from { transform: scale(1.12) translate(-2.5%, 0); } to { transform: scale(1.2) translate(2.5%, 0); } }
@keyframes kbUp    { from { transform: scale(1.12) translate(0, 2.5%); }  to { transform: scale(1.2) translate(0, -2.5%); } }
@keyframes kbDown  { from { transform: scale(1.12) translate(0, -2.5%); } to { transform: scale(1.2) translate(0, 2.5%); } }

/* Richer cinematic overlay — directional + vignette for depth */
.home-hero .hero-overlay {
  z-index: 2;
  background:
    linear-gradient(100deg, rgba(4,16,31,0.95) 0%, rgba(7,27,52,0.78) 42%, rgba(7,27,52,0.42) 78%, rgba(7,27,52,0.55) 100%),
    radial-gradient(120% 100% at 50% 100%, rgba(4,16,31,0.7) 0%, transparent 55%);
}
/* Fine film grain for a tactile, non-flat hero */
.hero-grain {
  position: absolute; inset: 0; z-index: 2; pointer-events: none; opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}
.home-hero .hero-glow { z-index: 2; }
.home-hero .hero-inner { z-index: 3; }

/* Hero entrance — content rises once on load */
.home-hero .hero-content > * { opacity: 0; transform: translateY(22px); animation: heroRise 1s cubic-bezier(0.22,1,0.36,1) forwards; }
.home-hero .hero-mark   { animation-delay: 0.15s; }
.home-hero .eyebrow     { animation-delay: 0.32s; }
.home-hero .hero-h1     { animation-delay: 0.46s; }
.home-hero .hero-desc   { animation-delay: 0.62s; }
.home-hero .hero-btns   { animation-delay: 0.78s; }
@keyframes heroRise { to { opacity: 1; transform: translateY(0); } }

/* Segmented progress indicator (replaces plain dots) */
.hero-progress {
  position: absolute; bottom: 38px; left: 50%; transform: translateX(-50%);
  z-index: 4; display: flex; gap: 10px; width: min(360px, 64vw);
}
.hero-prog-seg {
  flex: 1; height: 3px; padding: 0; border: none; cursor: pointer;
  background: rgba(255,255,255,0.22); border-radius: 2px; overflow: hidden;
  transition: background 0.3s;
}
.hero-prog-seg span { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.hero-prog-seg.done span { width: 100%; }
.hero-prog-seg.active span { animation: progFill 6.5s linear forwards; }
.hero-prog-seg:hover { background: rgba(255,255,255,0.4); }
@keyframes progFill { from { width: 0; } to { width: 100%; } }

/* Scroll cue */
.home-hero::after {
  content: ''; position: absolute; left: 50%; bottom: 16px; width: 1px; height: 26px; z-index: 4;
  background: linear-gradient(var(--gold), transparent);
  transform: translateX(-50%); opacity: 0.6;
  animation: scrollCue 2.4s ease-in-out infinite;
}
@keyframes scrollCue { 0%,100% { transform: translateX(-50%) scaleY(0.4); opacity: 0.25; } 50% { transform: translateX(-50%) scaleY(1); opacity: 0.7; } }

/* ── ROBUST FULL-BLEED BANNERS (fixes screenshot scaling) ──────
   Real <img> with object-fit:cover inside a clipped container so
   the picture keeps its aspect ratio, fills cleanly, and never
   stretches or jumps (no background-attachment:fixed glitches). */
.banner, .cta-band {
  position: relative; overflow: hidden;
  display: flex; align-items: center;
  min-height: clamp(380px, 56vh, 560px);
  padding: clamp(3rem, 7vw, 6rem) 2.5rem;
}
.banner-media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.banner-media img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  display: block;
  transform: scale(1.04);
  transition: transform 1.2s cubic-bezier(0.22,1,0.36,1);
}
.banner[data-reveal].in .banner-media img,
.cta-band[data-reveal].in .banner-media img { transform: scale(1); }

.banner-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(4,16,31,0.92) 0%, rgba(4,16,31,0.72) 42%, rgba(4,16,31,0.32) 100%);
}
.cta-band { text-align: center; }
.cta-scrim {
  position: absolute; inset: 0; z-index: 1;
  background: radial-gradient(120% 120% at 50% 40%, rgba(7,27,52,0.74) 0%, rgba(4,16,31,0.9) 100%);
}
.banner-inner { position: relative; z-index: 2; max-width: 620px; }
.cta-content  { position: relative; z-index: 2; }
.banner-inner h2 { font-family: var(--serif); font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; color: var(--white); line-height: 1.18; margin-bottom: 0.4rem; }
.banner-inner p { font-size: 15px; color: rgba(255,255,255,0.72); line-height: 1.85; margin: 1.2rem 0 2rem; }

/* ── REMOVE FIXED-ATTACHMENT JANK on remaining .section-bg ─────
   Fixed backgrounds mis-scale on most laptops/phones; use a
   cleanly-scaled scrolling cover instead, everywhere. */
.section-bg { background-attachment: scroll !important; background-size: cover; background-position: center; }

/* ── SCROLL REVEALS ── quiet, premium entrance ── */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity 0.9s cubic-bezier(0.22,1,0.36,1), transform 0.9s cubic-bezier(0.22,1,0.36,1); }
[data-reveal].in { opacity: 1; transform: translateY(0); }

/* Staggered children inside a revealed grid */
.stagger > * { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].in .stagger > *,
.stagger[data-reveal].in > * { opacity: 1; transform: translateY(0); }
[data-reveal].in .stagger > *:nth-child(1){ transition-delay: 0.05s; }
[data-reveal].in .stagger > *:nth-child(2){ transition-delay: 0.12s; }
[data-reveal].in .stagger > *:nth-child(3){ transition-delay: 0.19s; }
[data-reveal].in .stagger > *:nth-child(4){ transition-delay: 0.26s; }
[data-reveal].in .stagger > *:nth-child(5){ transition-delay: 0.33s; }
[data-reveal].in .stagger > *:nth-child(6){ transition-delay: 0.40s; }

/* ── REFINED MICRO-INTERACTIONS ── */
.activity-card { border-radius: 14px; }
.activity-img { transition: transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.activity-card:hover .activity-img { transform: scale(1.07); }
.activity-card { transition: transform 0.4s cubic-bezier(0.22,1,0.36,1), box-shadow 0.4s ease, border-color 0.4s ease; }

.btn { border-radius: 2px; position: relative; }
.btn-gold { box-shadow: 0 2px 16px rgba(212,175,55,0.18); }
.btn-outline { backdrop-filter: blur(2px); }

.col-img { overflow: hidden; }
.col-img { transition: transform 1.1s cubic-bezier(0.22,1,0.36,1); }
[data-reveal] .col-img { transform: scale(1.06); }
[data-reveal].in .col-img { transform: scale(1); }

/* Gentle gold underline sweep on activity headings */
.activity-body h3 { position: relative; display: inline-block; }

/* ── ACCESSIBILITY: respect reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  .hero-slide, .hero-slide.active { animation: none !important; transform: scale(1.05) !important; transition: opacity 0.6s ease; }
  .hero-prog-seg.active span { animation: none; width: 100%; }
  .home-hero .hero-content > * { animation: none; opacity: 1; transform: none; }
  .home-hero::after { animation: none; }
  [data-reveal], .stagger > *, .col-img, .banner-media img { transition: none !important; opacity: 1 !important; transform: none !important; }
}

/* ── MOBILE TUNING ── */
@media (max-width: 768px) {
  .hero-progress { width: 78vw; bottom: 26px; }
  .banner-scrim { background: linear-gradient(180deg, rgba(4,16,31,0.78) 0%, rgba(4,16,31,0.9) 100%); }
  .banner, .cta-band { min-height: clamp(340px, 70vh, 460px); padding: 3rem 1.5rem; }
}


/* ================================================================
   INNER-PAGE DARK-SECTION HARMONY  (v4.2)
   Content placed on the dark .lux-bg gradient was using light-theme
   colors (navy headings, white cards) — invisible text and clashing
   panels. Scope a cohesive dark-glass treatment to .lux-bg only, so
   the homepage (which uses light sections) is unaffected.
   ================================================================ */

/* Headings + subtext readable on the dark gradient */
.lux-bg .section-title { color: var(--white); }
.lux-bg .section-sub   { color: rgba(255,255,255,0.62); }
.lux-bg .section-head .eyebrow span { color: var(--gold-light); }

/* "Numbered offer" cards → dark glass with gold accents */
.lux-bg .lux-card {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.16);
  border-radius: 14px;
  backdrop-filter: blur(6px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.lux-bg .lux-card:hover {
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(0,0,0,0.4);
  transform: translateY(-5px);
}
.lux-bg .lux-card h3  { color: var(--white); }
.lux-bg .lux-card p   { color: rgba(255,255,255,0.62); }
.lux-bg .lux-card .num { color: var(--gold); letter-spacing: 3px; }

/* Industry cards: match the radius for a consistent card system */
.lux-bg .industry-card { border-radius: 14px; }

/* Trade-finance instruments: drop the light-gray line-grid (which left
   ugly empty cells) for a centered, dark-glass card row */
.lux-bg .finance-grid {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 16px; background: transparent; border: none;
}
.lux-bg .finance-card {
  flex: 1 1 210px; max-width: 264px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.16);
  border-top: 3px solid var(--gold);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.lux-bg .finance-card:hover {
  background: linear-gradient(160deg, rgba(255,255,255,0.08), rgba(255,255,255,0.03));
  border-color: var(--gold);
  box-shadow: 0 18px 44px rgba(0,0,0,0.4);
  transform: translateY(-5px);
}
.lux-bg .finance-card h3   { color: var(--white); }
.lux-bg .finance-card p    { color: rgba(255,255,255,0.62); }
.lux-bg .finance-abbr      { color: var(--gold); }

/* Tighten section rhythm on these pages */
@media (max-width: 600px) {
  .lux-bg .finance-card { flex: 1 1 100%; max-width: 100%; }
}


/* ================================================================
   v4.3 — About redesign · Downloads · dark contact/commodities ·
          global network · final polish
   ================================================================ */

/* ---- Shared: gold eyebrow + light content text on dark sections ---- */
.lux-bg .eyebrow span, .about-lux .eyebrow span { color: var(--gold); }
.lux-bg .two-col h2.light, .lux-bg .col-text h2.light { color: var(--white); }
.lux-bg .col-text p.light { color: rgba(255,255,255,0.66); }
.lux-bg .bullets li.light { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.08); }

/* ---- ABOUT premium section (home + about page) ---- */
.about-lux {
  position: relative;
  background:
    radial-gradient(120% 90% at 82% 20%, rgba(212,175,55,0.10), transparent 55%),
    linear-gradient(160deg, #061224 0%, #071B34 60%, #04101f 100%);
  overflow: hidden;
}
.about-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 4.5rem; align-items: center;
}
.about-copy .eyebrow { margin-bottom: 1rem; }
.about-title {
  font-family: var(--serif); font-weight: 700; color: var(--gold);
  font-size: clamp(34px, 4.4vw, 52px); letter-spacing: 4px; line-height: 1; margin-bottom: 0.6rem;
}
.about-lead {
  font-family: var(--sans); font-weight: 600; color: var(--white);
  font-size: clamp(17px, 2vw, 22px); letter-spacing: 1px; line-height: 1.4; margin-bottom: 1.1rem;
}
.about-lux .gold-rule { background: var(--gold); margin-bottom: 1.4rem; }
.about-copy > p { font-size: 15px; color: rgba(255,255,255,0.68); line-height: 1.9; margin-bottom: 1.6rem; max-width: 560px; }
.about-features {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
  margin: 1.8rem 0; max-width: 540px;
}
.about-feature { text-align: center; }
.af-ico {
  display: inline-flex; align-items: center; justify-content: center;
  width: 52px; height: 52px; border-radius: 50%;
  border: 1px solid rgba(212,175,55,0.4); color: var(--gold); margin-bottom: 10px;
}
.af-ico svg { width: 24px; height: 24px; }
.af-label {
  display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.6px;
  color: rgba(255,255,255,0.72); text-transform: uppercase; line-height: 1.4;
}
.about-motto {
  font-family: var(--sans); font-weight: 600; color: var(--gold);
  letter-spacing: 2px; text-transform: uppercase; font-size: 13px; margin: 1.6rem 0 1.8rem;
}
.about-visual { position: relative; }
.about-visual img {
  width: 100%; height: 100%; max-height: 540px; object-fit: cover;
  border-radius: 16px; display: block;
  border: 1px solid rgba(212,175,55,0.18);
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
}

/* ---- DOWNLOADS page ---- */
.downloads-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px; margin-top: 1rem;
}
.download-card {
  display: flex; flex-direction: column; gap: 1.2rem;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.16); border-top: 3px solid var(--gold);
  border-radius: 14px; padding: 2.2rem 2rem; backdrop-filter: blur(6px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s, box-shadow 0.35s;
}
.download-card:hover { transform: translateY(-5px); border-color: var(--gold); box-shadow: 0 18px 44px rgba(0,0,0,0.4); }
.download-icon { width: 46px; height: 46px; color: var(--gold); }
.download-icon svg { width: 100%; height: 100%; }
.download-tag {
  display: inline-block; font-size: 11px; font-weight: 600; letter-spacing: 1.4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 8px;
}
.download-body h3 { font-family: var(--serif); font-size: 21px; font-weight: 600; color: var(--white); margin-bottom: 0.7rem; line-height: 1.25; }
.download-body p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.75; }
.download-btn { margin-top: auto; display: inline-flex; align-items: center; gap: 12px; justify-content: center; }
.download-meta { font-size: 11px; font-weight: 600; opacity: 0.75; letter-spacing: 0.5px; }
.downloads-note { text-align: center; margin-top: 2.5rem; color: rgba(255,255,255,0.6); font-size: 14px; }
.downloads-note a { color: var(--gold); text-decoration: none; }
.downloads-note a:hover { text-decoration: underline; }

/* ---- CONTACT page: dark harmony ---- */
.lux-bg .contact-info h2 { color: var(--white); }
.lux-bg .contact-detail span, .lux-bg .contact-detail a { color: rgba(255,255,255,0.82); }
.contact-note {
  background: rgba(212,175,55,0.07); border-left: 3px solid var(--gold);
  padding: 1.5rem 1.8rem; margin-top: 1.4rem; border-radius: 0 8px 8px 0;
}
.contact-note-label { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
.contact-note p { font-size: 13px; color: rgba(255,255,255,0.6); line-height: 1.75; }

.lux-bg .contact-form-wrap {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.16); border-top: 3px solid var(--gold);
  border-radius: 14px; backdrop-filter: blur(6px);
}
.lux-bg .contact-form-wrap h3 { color: var(--white); }
.lux-bg .fg label { color: rgba(255,255,255,0.62); }
.lux-bg .fg input, .lux-bg .fg select, .lux-bg .fg textarea {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.14);
  color: var(--white); border-radius: 8px;
}
.lux-bg .fg input::placeholder, .lux-bg .fg textarea::placeholder { color: rgba(255,255,255,0.4); }
.lux-bg .fg input:focus, .lux-bg .fg select:focus, .lux-bg .fg textarea:focus { border-color: var(--gold); background: rgba(255,255,255,0.06); }
.lux-bg .fg select option { background: #0c2645; color: #fff; }

/* ---- COMMODITIES: dark commodity blocks ---- */
.lux-bg .commodity-block {
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.16); border-top: 3px solid var(--gold);
  border-radius: 12px; backdrop-filter: blur(6px);
  transition: transform 0.35s cubic-bezier(0.22,1,0.36,1), border-color 0.35s, box-shadow 0.35s;
}
.lux-bg .commodity-block:hover { transform: translateY(-4px); border-color: var(--gold); box-shadow: 0 16px 40px rgba(0,0,0,0.35); }
.lux-bg .commodity-block h3 { color: var(--white); }
.lux-bg .commodity-block p { color: rgba(255,255,255,0.62); }
.lux-bg .tag { color: rgba(255,255,255,0.78); background: rgba(255,255,255,0.05); border-color: rgba(212,175,55,0.22); }

/* ---- GLOBAL NETWORK page ---- */
.net-map { margin: 0 auto 3rem; max-width: 1100px; }
.net-map img {
  width: 100%; height: auto; display: block; border-radius: 16px;
  border: 1px solid rgba(212,175,55,0.18); box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.net-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.net-stat {
  text-align: center; padding: 1.8rem 1rem; border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.16);
}
.net-ico { display: inline-flex; width: 40px; height: 40px; color: var(--gold); margin-bottom: 12px; }
.net-ico svg { width: 100%; height: 100%; }
.net-num { display: block; font-family: var(--serif); font-size: 34px; font-weight: 700; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.net-lbl { display: block; font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: rgba(255,255,255,0.66); }

.net-reach { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.reach-item {
  text-align: center; padding: 2rem 1rem; border-radius: 14px;
  background: linear-gradient(160deg, rgba(255,255,255,0.04), rgba(255,255,255,0.015));
  border: 1px solid rgba(212,175,55,0.14); transition: transform 0.35s, border-color 0.35s;
}
.reach-item:hover { transform: translateY(-4px); border-color: var(--gold); }
.reach-ico { display: inline-flex; width: 46px; height: 46px; color: var(--gold); margin-bottom: 14px; }
.reach-ico svg { width: 100%; height: 100%; }
.reach-item h4 { font-family: var(--serif); font-size: 16px; font-weight: 600; color: var(--white); line-height: 1.35; }

.net-strength {
  display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; justify-content: center;
  text-align: left; padding: 2.5rem; border-radius: 16px;
  background: linear-gradient(160deg, rgba(212,175,55,0.08), rgba(255,255,255,0.02));
  border: 1px solid rgba(212,175,55,0.25);
}
.net-strength .reach-ico { width: 60px; height: 60px; margin: 0; flex-shrink: 0; }
.net-strength > div { flex: 1 1 360px; }
.net-strength h3 { font-family: var(--serif); font-size: 26px; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.net-strength p { font-size: 14px; color: rgba(255,255,255,0.66); line-height: 1.8; }


/* ================================================================
   v4.3 — MOBILE OPTIMIZATION (images · slideshow · icons · layout)
   ================================================================ */

/* Global safety: media never overflow, smoother text scaling */
img, svg, video { max-width: 100%; height: auto; }
* { -webkit-text-size-adjust: 100%; }

/* Tablet */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-visual img { max-height: 420px; }
  .about-copy > p, .about-features { max-width: 100%; }
  .net-stats, .net-reach { grid-template-columns: 1fr 1fr; }
  .downloads-grid { grid-template-columns: 1fr 1fr; }
}

/* Phone */
@media (max-width: 768px) {
  /* Section rhythm: tighter vertical padding so content isn't lost in whitespace */
  .section { padding: 3.2rem 0; }
  .container { padding-left: 1.25rem; padding-right: 1.25rem; }

  /* Hero: dependable height on mobile browsers, readable controls */
  .home-hero { min-height: 88vh; min-height: 88svh; }
  .hero-progress { width: 82vw; bottom: 22px; gap: 7px; }
  .hero-prog-seg { height: 3px; }

  /* About */
  .about-features { grid-template-columns: repeat(4, 1fr); gap: 0.5rem; }
  .af-ico { width: 44px; height: 44px; }
  .af-ico svg { width: 20px; height: 20px; }
  .af-label { font-size: 10px; }
  .about-visual img { max-height: 320px; }

  /* Global network */
  .net-strength { flex-direction: column; text-align: center; padding: 2rem 1.4rem; }
  .net-strength > div { flex-basis: auto; }
  .net-map { margin-bottom: 2rem; }

  /* Downloads + finance + commodity single column reads better */
  .downloads-grid { grid-template-columns: 1fr; }

  /* Banners / image sections: shorter, content-centered */
  .img-section { min-height: 360px; padding: 3rem 1.5rem; }
  .banner, .cta-band { padding: 3rem 1.5rem; }

  /* Forms easier to tap */
  .form-row { grid-template-columns: 1fr; }
  .fg input, .fg select, .fg textarea { font-size: 16px; padding: 14px 15px; } /* 16px stops iOS zoom */
}

/* Small phones */
@media (max-width: 480px) {
  .about-features { grid-template-columns: 1fr 1fr; gap: 1rem; max-width: 320px; margin-left: auto; margin-right: auto; }
  .net-stats, .net-reach { grid-template-columns: 1fr 1fr; gap: 12px; }
  .net-num { font-size: 28px; }
  .about-title { letter-spacing: 2px; }
  .lux-hero h1 { font-size: 26px; }
  .img-section-inner h2 { font-size: 28px; }
  /* keep tap targets comfortable */
  .btn { padding: 14px 22px; }
}
