/* ============================================================
   ARMEX TRADING FZCO — style.css
   Scheme: Deep Navy #0D1F3C · Gold #B8922A · BG #F7F8FA
   ============================================================ */

:root {
  --navy:        #0D1F3C;
  --navy-mid:    #152b50;
  --navy-light:  #1e3a6e;
  --gold:        #B8922A;
  --gold-hover:  #d4a73c;
  --gold-pale:   rgba(184,146,42,0.10);
  --gold-border: rgba(184,146,42,0.28);
  --bg:          #F7F8FA;
  --bg-alt:      #EEF0F4;
  --white:       #FFFFFF;
  --text:        #1a2332;
  --muted:       #6B7280;
  --border:      #E5E7EB;
  --shadow-sm:   0 2px 8px rgba(13,31,60,0.07);
  --shadow-md:   0 8px 32px rgba(13,31,60,0.11);
  --shadow-lg:   0 24px 64px rgba(13,31,60,0.16);
  --r-sm:        6px;
  --r-md:        12px;
  --r-lg:        20px;
  --ease:        0.3s ease;
  --max-w:       1200px;
  --header-h:    76px;
}

/* ── Reset ─────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }
html { scroll-behavior:smooth; }
body {
  font-family:'Source Sans 3',sans-serif;
  font-size:16px;
  line-height:1.7;
  background:var(--bg);
  color:var(--text);
  -webkit-font-smoothing:antialiased;
}
img { max-width:100%; display:block; }
a  { color:inherit; text-decoration:none; }
ul { list-style:none; }
button { cursor:pointer; border:none; background:none; font-family:inherit; }
address { font-style:normal; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family:'Playfair Display',serif;
  font-weight:700;
  line-height:1.15;
  letter-spacing:-0.01em;
  color:var(--navy);
}
.text-gold  { color:var(--gold); }
.text-white { color:var(--white); }
.text-muted { color:var(--muted); }

/* ── Layout ─────────────────────────────────────────────────── */
.container {
  max-width:var(--max-w);
  margin:0 auto;
  padding:0 28px;
}
.section     { padding:96px 0; }
.section-sm  { padding:64px 0; }

.section-label {
  display:inline-block;
  font-size:11px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:var(--gold);
  margin-bottom:14px;
}
.section-title {
  font-size:clamp(26px,4vw,42px);
  margin-bottom:16px;
}
.section-sub {
  font-size:17px;
  color:var(--muted);
  line-height:1.75;
  max-width:620px;
}
.gold-bar {
  display:block;
  width:44px; height:3px;
  background:var(--gold);
  border-radius:2px;
  margin:14px 0 32px;
}
.gold-bar--center { margin-inline:auto; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 28px;
  border-radius:var(--r-sm);
  font-family:'Source Sans 3',sans-serif;
  font-size:15px;
  font-weight:600;
  letter-spacing:0.01em;
  transition:all var(--ease);
  white-space:nowrap;
}
.btn-primary {
  background:var(--gold);
  color:var(--white);
}
.btn-primary:hover {
  background:var(--gold-hover);
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(184,146,42,0.35);
}
.btn-outline {
  border:2px solid rgba(255,255,255,0.38);
  color:var(--white);
}
.btn-outline:hover {
  border-color:var(--gold);
  color:var(--gold);
  background:rgba(184,146,42,0.08);
}
.btn-dark {
  background:var(--navy);
  color:var(--white);
}
.btn-dark:hover {
  background:var(--navy-mid);
  transform:translateY(-2px);
  box-shadow:var(--shadow-md);
}
.btn-whatsapp {
  background:#25D366;
  color:var(--white);
}
.btn-whatsapp:hover {
  background:#1db956;
  transform:translateY(-2px);
  box-shadow:0 8px 24px rgba(37,211,102,0.32);
}
.btn-lg { padding:17px 36px; font-size:16px; }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  position:fixed; top:0; left:0; right:0;
  height:var(--header-h);
  background:var(--navy);
  z-index:1000;
  transition:box-shadow var(--ease);
}
.site-header.scrolled { box-shadow:0 4px 28px rgba(0,0,0,0.28); }

.nav {
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:var(--header-h);
}
.nav-logo { display:flex; flex-direction:column; line-height:1; }
.nav-logo .l-main {
  font-family:'Source Sans 3',sans-serif;
  font-weight:700; font-size:20px;
  color:var(--white); letter-spacing:0.1em;
}
.nav-logo .l-sub {
  font-size:10px; font-weight:600;
  color:var(--gold); letter-spacing:0.2em;
  text-transform:uppercase; margin-top:3px;
}
.nav-links {
  display:flex; align-items:center; gap:4px;
}
.nav-links a {
  padding:8px 14px;
  font-family:'Source Sans 3',sans-serif;
  font-size:14px; font-weight:500;
  letter-spacing:0.04em;
  color:rgba(255,255,255,0.7);
  border-radius:var(--r-sm);
  transition:all var(--ease);
}
.nav-links a:hover,
.nav-links a.active { color:var(--white); background:rgba(255,255,255,0.08); }
.nav-links a.active  { color:var(--gold); }
.nav-cta { margin-left:16px; }

.hamburger {
  display:none; flex-direction:column; gap:5px; padding:8px;
}
.hamburger span {
  display:block; width:24px; height:2px;
  background:var(--white); border-radius:2px;
  transition:all var(--ease);
}
.hamburger.open span:nth-child(1) { transform:translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity:0; }
.hamburger.open span:nth-child(3) { transform:translateY(-7px) rotate(-45deg); }

.mobile-nav {
  display:none; position:fixed;
  top:var(--header-h); left:0; right:0;
  background:var(--navy);
  padding:20px 24px 28px;
  border-top:1px solid rgba(255,255,255,0.08);
  flex-direction:column; gap:4px;
  z-index:999;
  box-shadow:0 20px 40px rgba(0,0,0,0.3);
}
.mobile-nav.open { display:flex; }
.mobile-nav a {
  padding:13px 16px;
  font-size:16px; font-weight:500;
  color:rgba(255,255,255,0.78);
  border-radius:var(--r-sm);
  transition:all var(--ease);
}
.mobile-nav a:hover,
.mobile-nav a.active { color:var(--gold); background:rgba(184,146,42,0.08); }
.mobile-nav .btn { margin-top:12px; width:100%; justify-content:center; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  min-height:100vh;
  background:var(--navy);
  display:flex; align-items:center;
  padding:calc(var(--header-h) + 72px) 0 120px;
  position:relative; overflow:hidden;
}
.hero-pattern {
  position:absolute; inset:0; pointer-events:none;
  background-image:radial-gradient(circle, rgba(184,146,42,0.11) 1px, transparent 1px);
  background-size:44px 44px;
}
.hero-glow {
  position:absolute;
  top:-200px; right:-100px;
  width:700px; height:700px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(184,146,42,0.07) 0%, transparent 65%);
  pointer-events:none;
}
.hero::after {
  content:'';
  position:absolute; bottom:-1px; left:0; right:0;
  height:100px; background:var(--bg);
  clip-path:polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}
.hero-inner {
  position:relative; z-index:1;
  display:grid; grid-template-columns:1.1fr 0.9fr;
  gap:72px; align-items:center;
}
.hero-eyebrow { margin-bottom:24px; }
.hero-eyebrow .pill {
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 16px;
  background:rgba(184,146,42,0.12);
  border:1px solid rgba(184,146,42,0.35);
  border-radius:50px;
  font-size:13px; font-weight:600;
  color:var(--gold); letter-spacing:0.04em;
}
.hero-title {
  font-size:clamp(38px,5.5vw,64px);
  color:var(--white);
  margin-bottom:24px;
  line-height:1.08;
}
.hero-title .accent { color:var(--gold); }
.hero-body {
  font-size:17px; line-height:1.8;
  color:rgba(255,255,255,0.68);
  max-width:520px; margin-bottom:40px;
}
.hero-actions {
  display:flex; gap:16px; flex-wrap:wrap; margin-bottom:48px;
}
.hero-actions .btn { font-size:16px; padding:16px 32px; }
.hero-trust {
  display:flex; gap:28px; flex-wrap:wrap;
}
.trust-item {
  display:flex; align-items:center; gap:7px;
  font-size:13px; color:rgba(255,255,255,0.5);
}
.trust-item svg { color:var(--gold); flex-shrink:0; }

/* Credential card (hero right) */
.cred-card {
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(255,255,255,0.10);
  border-radius:var(--r-lg);
  overflow:hidden;
}
.cred-card-head {
  background:rgba(184,146,42,0.12);
  border-bottom:1px solid rgba(184,146,42,0.22);
  padding:16px 24px;
  font-family:'Source Sans 3',sans-serif;
  font-size:11px; font-weight:700;
  letter-spacing:0.14em; text-transform:uppercase;
  color:var(--gold);
  display:flex; align-items:center; gap:8px;
}
.cred-row {
  display:flex; justify-content:space-between; align-items:center;
  padding:15px 24px;
  border-bottom:1px solid rgba(255,255,255,0.055);
  gap:20px;
}
.cred-row:last-of-type { border-bottom:none; }
.cred-row .label {
  font-size:12px; color:rgba(255,255,255,0.48); white-space:nowrap;
}
.cred-row .value {
  font-size:14px; font-weight:600; color:var(--white); text-align:right;
}
.cred-row .status-active {
  display:inline-flex; align-items:center; gap:6px;
  font-size:13px; font-weight:700; color:#34d399;
}
.cred-row .status-active::before {
  content:''; display:block;
  width:7px; height:7px; border-radius:50%;
  background:#34d399;
}
.cred-footer {
  display:block; padding:16px 24px;
  text-align:center; font-size:13px; font-weight:600;
  color:var(--gold); letter-spacing:0.02em;
  border-top:1px solid rgba(255,255,255,0.07);
  transition:background var(--ease);
}
.cred-footer:hover { background:rgba(184,146,42,0.1); }

/* ── Page hero (inner pages) ────────────────────────────────── */
.page-hero {
  padding:calc(var(--header-h) + 64px) 0 96px;
  background:var(--navy);
  position:relative; overflow:hidden;
}
.page-hero::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(184,146,42,0.09) 1px, transparent 1px);
  background-size:44px 44px; pointer-events:none;
}
.page-hero::after {
  content:''; position:absolute; bottom:-1px; left:0; right:0;
  height:80px; background:var(--bg);
  clip-path:polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}
.page-hero-inner { position:relative; z-index:1; }
.page-hero h1 { font-size:clamp(30px,5vw,52px); color:var(--white); margin-bottom:16px; }
.page-hero p  { font-size:18px; color:rgba(255,255,255,0.65); max-width:600px; }
.page-hero .breadcrumb {
  font-size:13px; color:rgba(255,255,255,0.45);
  margin-bottom:20px; letter-spacing:0.04em;
}
.page-hero .breadcrumb a { color:var(--gold); }
.page-hero .breadcrumb a:hover { text-decoration:underline; }

/* ── Sections with diagonal cuts ───────────────────────────── */
.section--navy {
  background:var(--navy);
  position:relative;
}
.section--navy .section-label,
.section--navy .section-title { color:var(--white); }
.section--navy .section-sub   { color:rgba(255,255,255,0.6); }

.cut-top::before {
  content:''; position:absolute; top:-1px; left:0; right:0;
  height:80px; background:var(--bg);
  clip-path:polygon(0 0, 100% 0, 100% 45%, 0 100%);
}
.cut-bottom::after {
  content:''; position:absolute; bottom:-1px; left:0; right:0;
  height:80px; background:var(--bg);
  clip-path:polygon(0 55%, 100% 0, 100% 100%, 0 100%);
}
.section--navy .inner-content { position:relative; z-index:1; }

/* ── Cards ──────────────────────────────────────────────────── */
.card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  padding:36px 32px;
  box-shadow:var(--shadow-sm);
  transition:all var(--ease);
}
.card:hover {
  box-shadow:var(--shadow-md);
  transform:translateY(-5px);
  border-color:var(--gold);
}
.card-icon {
  width:56px; height:56px;
  background:var(--gold-pale);
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:24px; color:var(--gold);
}
.card h3 { font-size:18px; margin-bottom:12px; }
.card p   { font-size:15px; color:var(--muted); line-height:1.7; }

/* Grid helpers */
.grid-2 { display:grid; grid-template-columns:1fr 1fr;       gap:28px; }
.grid-3 { display:grid; grid-template-columns:repeat(3,1fr); gap:28px; }
.grid-4 { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }

/* ── Why cards (navy bg) ─────────────────────────────────────── */
.why-card {
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.09);
  border-radius:var(--r-md);
  padding:36px 28px;
  transition:all var(--ease);
}
.why-card:hover {
  background:rgba(255,255,255,0.09);
  border-color:var(--gold-border);
  transform:translateY(-4px);
}
.why-icon {
  width:52px; height:52px; border-radius:50%;
  background:rgba(184,146,42,0.15);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); margin-bottom:20px;
}
.why-card h3 { font-size:17px; color:var(--white); margin-bottom:10px; }
.why-card p  { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.75; }
.why-card .tag-line {
  display:inline-block; margin-top:14px;
  font-size:12px; font-weight:700; letter-spacing:0.08em;
  text-transform:uppercase; color:var(--gold);
}

/* ── CTA band ───────────────────────────────────────────────── */
.cta-band {
  background:var(--navy);
  padding:80px 0;
  text-align:center;
  position:relative; overflow:hidden;
}
.cta-band::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(184,146,42,0.08) 1px, transparent 1px);
  background-size:44px 44px; pointer-events:none;
}
.cta-band-inner { position:relative; z-index:1; }
.cta-band h2  { font-size:clamp(26px,4vw,40px); color:var(--white); margin-bottom:16px; }
.cta-band p   { font-size:17px; color:rgba(255,255,255,0.62); max-width:560px; margin:0 auto 36px; }
.cta-band .actions { display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* ── About snippet ──────────────────────────────────────────── */
.about-snippet {
  display:grid; grid-template-columns:1fr 1fr; gap:72px; align-items:center;
}
.about-snippet-img {
  background:var(--navy);
  border-radius:var(--r-lg);
  min-height:360px;
  display:flex; align-items:center; justify-content:center;
  padding:48px;
  position:relative; overflow:hidden;
}
.about-snippet-img::before {
  content:''; position:absolute; inset:0;
  background-image:radial-gradient(circle, rgba(184,146,42,0.1) 1px, transparent 1px);
  background-size:36px 36px;
}
.about-snippet-img .logo-display {
  position:relative; z-index:1; text-align:center;
}
.about-snippet-img .logo-display .l1 {
  font-family:'Plus Jakarta Sans',sans-serif;
  font-weight:800; font-size:52px; letter-spacing:0.08em; color:var(--white);
}
.about-snippet-img .logo-display .l2 {
  font-size:13px; font-weight:600; letter-spacing:0.22em;
  text-transform:uppercase; color:var(--gold); margin-top:4px;
}
.about-snippet-img .logo-display .l3 {
  margin-top:28px; padding-top:24px;
  border-top:1px solid rgba(255,255,255,0.12);
  font-size:13px; color:rgba(255,255,255,0.45); line-height:1.8;
}

/* ── Values (about page) ────────────────────────────────────── */
.value-card {
  padding:32px 28px;
  border-left:3px solid var(--gold);
  background:var(--white);
  border-radius:0 var(--r-sm) var(--r-sm) 0;
  box-shadow:var(--shadow-sm);
  transition:all var(--ease);
}
.value-card:hover { box-shadow:var(--shadow-md); transform:translateX(4px); }
.value-card h3 { font-size:17px; margin-bottom:10px; }
.value-card p  { font-size:15px; color:var(--muted); line-height:1.7; }

/* ── Manager card ───────────────────────────────────────────── */
.manager-card {
  display:flex; align-items:center; gap:40px;
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:48px;
  box-shadow:var(--shadow-md);
}
.manager-avatar {
  width:100px; height:100px; border-radius:50%;
  background:var(--navy);
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0;
  font-family:'Plus Jakarta Sans',sans-serif;
  font-size:32px; font-weight:800; color:var(--gold);
}
.manager-info h3     { font-size:24px; margin-bottom:6px; }
.manager-info .role  { font-size:13px; font-weight:700; color:var(--gold); text-transform:uppercase; letter-spacing:0.1em; margin-bottom:18px; }
.manager-info p      { font-size:15px; color:var(--muted); line-height:1.75; }

/* ── Geo cards ──────────────────────────────────────────────── */
.geo-card {
  background:var(--navy);
  border-radius:var(--r-md); padding:40px 36px; color:var(--white);
}
.geo-card .geo-icon  { color:var(--gold); margin-bottom:16px; }
.geo-card h3         { font-size:22px; color:var(--white); margin-bottom:12px; }
.geo-card p          { font-size:15px; color:rgba(255,255,255,0.6); line-height:1.75; }
.geo-card ul         { margin-top:18px; }
.geo-card ul li {
  font-size:14px; color:rgba(255,255,255,0.65);
  padding:5px 0 5px 18px; position:relative;
}
.geo-card ul li::before {
  content:''; position:absolute; left:0; top:50%;
  transform:translateY(-50%);
  width:6px; height:6px; border-radius:50%; background:var(--gold);
}

/* ── Products page ──────────────────────────────────────────── */
.product-section {
  padding:72px 0;
  border-bottom:1px solid var(--border);
}
.product-section:last-child { border-bottom:none; }
.product-inner {
  display:grid; grid-template-columns:300px 1fr;
  gap:64px; align-items:start;
}
.product-sidebar {
  background:var(--navy);
  border-radius:var(--r-lg); padding:40px 32px;
  text-align:center;
  position:sticky; top:calc(var(--header-h) + 24px);
}
.product-sidebar .big-icon { color:var(--gold); margin-bottom:16px; }
.product-sidebar .line-no {
  font-size:11px; font-weight:700; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--gold); margin-bottom:8px;
}
.product-sidebar h3 { font-size:18px; color:var(--white); margin-bottom:12px; }
.product-sidebar p  { font-size:14px; color:rgba(255,255,255,0.55); line-height:1.75; }
.product-body h2    { font-size:32px; margin-bottom:14px; }
.product-body .intro {
  font-size:17px; color:var(--muted); line-height:1.8; margin-bottom:32px;
}
.product-tags {
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom:36px;
}
.tag {
  padding:7px 16px;
  background:var(--gold-pale); border:1px solid var(--gold-border);
  border-radius:50px; font-size:13px; font-weight:600; color:var(--gold);
}
.detail-grid {
  display:grid; grid-template-columns:1fr 1fr; gap:20px;
}
.detail-box {
  background:var(--bg); border:1px solid var(--border);
  border-radius:var(--r-sm); padding:20px;
}
.detail-box h4 {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:0.1em; color:var(--muted); margin-bottom:10px;
}
.detail-box p { font-size:14px; color:var(--text); line-height:1.7; }

/* ── Compliance page ────────────────────────────────────────── */
.notice {
  background:rgba(184,146,42,0.08);
  border:1px solid rgba(184,146,42,0.28);
  border-left:4px solid var(--gold);
  border-radius:var(--r-sm);
  padding:20px 24px;
  font-size:15px; color:var(--text); line-height:1.7;
  margin-bottom:40px;
}
.notice strong { font-weight:700; color:var(--navy); }

.comp-card {
  background:var(--white);
  border:1px solid var(--border);
  border-radius:var(--r-md);
  overflow:hidden;
  box-shadow:var(--shadow-sm);
  margin-bottom:32px;
}
.comp-card-head {
  background:var(--navy);
  padding:18px 28px;
  display:flex; align-items:center; gap:12px;
}
.comp-card-head h3 { font-size:15px; color:var(--white); font-weight:700; letter-spacing:0.02em; }
.comp-card-head svg { color:var(--gold); flex-shrink:0; }

.comp-table { width:100%; border-collapse:collapse; }
.comp-table tr { border-bottom:1px solid var(--border); transition:background var(--ease); }
.comp-table tr:last-child { border-bottom:none; }
.comp-table tr:hover { background:rgba(184,146,42,0.04); }
.comp-table td { padding:18px 24px; vertical-align:middle; font-size:15px; }
.comp-table td:first-child {
  font-size:12px; font-weight:700; text-transform:uppercase;
  letter-spacing:0.08em; color:var(--muted); white-space:nowrap; width:260px;
}
.comp-table td:last-child { color:var(--navy); font-weight:500; }

.badge-active {
  display:inline-flex; align-items:center; gap:6px;
  padding:5px 14px;
  background:rgba(16,185,129,0.1);
  border:1px solid rgba(16,185,129,0.3);
  border-radius:50px; font-size:13px; font-weight:700; color:#059669;
}
.badge-active::before {
  content:''; width:7px; height:7px;
  border-radius:50%; background:#10b981;
}

.license-hero-no {
  text-align:center; padding:40px 24px;
  border-bottom:1px solid var(--border);
}
.license-hero-no .no-label {
  font-size:11px; font-weight:700; letter-spacing:0.16em;
  text-transform:uppercase; color:var(--muted); margin-bottom:12px;
}
.license-hero-no .no-value {
  font-family:'Playfair Display',serif;
  font-size:56px; font-weight:700; color:var(--navy);
  letter-spacing:0.04em; line-height:1;
}
.license-hero-no .no-sub {
  font-size:14px; color:var(--muted); margin-top:10px;
}

.activities-list {
  padding:8px 24px 24px;
}
.activity-item {
  display:flex; align-items:center; gap:14px;
  padding:14px 0; border-bottom:1px solid var(--border);
}
.activity-item:last-child { border-bottom:none; }
.activity-item svg { color:var(--gold); flex-shrink:0; }
.activity-item span { font-size:15px; font-weight:500; color:var(--navy); }

/* ── Contact page ───────────────────────────────────────────── */
.contact-grid {
  display:grid; grid-template-columns:1fr 1.3fr;
  gap:64px; align-items:start;
}
.contact-detail {
  display:flex; align-items:flex-start; gap:16px; margin-bottom:32px;
}
.contact-icon {
  width:44px; height:44px; background:var(--gold-pale);
  border-radius:var(--r-sm);
  display:flex; align-items:center; justify-content:center;
  color:var(--gold); flex-shrink:0;
}
.contact-detail-text .label {
  font-size:11px; font-weight:700; text-transform:uppercase;
  letter-spacing:0.1em; color:var(--muted); margin-bottom:5px;
}
.contact-detail-text a,
.contact-detail-text p {
  font-size:16px; font-weight:500; color:var(--navy); line-height:1.6;
  transition:color var(--ease);
}
.contact-detail-text a:hover { color:var(--gold); }

.contact-form-wrap {
  background:var(--white); border:1px solid var(--border);
  border-radius:var(--r-lg); padding:40px 36px;
  box-shadow:var(--shadow-md);
}
.form-row { margin-bottom:20px; }
.form-row label {
  display:block; font-size:12px; font-weight:700;
  text-transform:uppercase; letter-spacing:0.08em;
  color:var(--muted); margin-bottom:8px;
}
.form-row input,
.form-row select,
.form-row textarea {
  width:100%; padding:14px 16px;
  border:1.5px solid var(--border); border-radius:var(--r-sm);
  font-family:'Source Sans 3',sans-serif; font-size:15px; color:var(--text);
  background:var(--bg); outline:none;
  transition:border-color var(--ease), box-shadow var(--ease), background var(--ease);
}
.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color:var(--gold);
  box-shadow:0 0 0 3px rgba(184,146,42,0.12);
  background:var(--white);
}
.form-row textarea { height:140px; resize:vertical; }
.form-2col { display:grid; grid-template-columns:1fr 1fr; gap:16px; }

.form-success {
  display:none; text-align:center; padding:32px 24px;
}
.form-success.show { display:block; }
.success-icon {
  width:64px; height:64px; border-radius:50%;
  background:#ecfdf5; display:flex;
  align-items:center; justify-content:center;
  margin:0 auto 20px; color:#10b981;
}
.form-success h3 { font-size:22px; margin-bottom:12px; }
.form-success p  { font-size:15px; color:var(--muted); line-height:1.7; }

.map-wrap {
  border-radius:var(--r-md); overflow:hidden;
  box-shadow:var(--shadow-md); margin-top:72px;
}
.map-wrap iframe { display:block; width:100%; height:420px; border:0; }

/* ── WhatsApp float ─────────────────────────────────────────── */
.wa-float {
  position:fixed; bottom:28px; right:28px;
  width:56px; height:56px; border-radius:50%;
  background:#25D366; color:var(--white);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 20px rgba(37,211,102,0.4);
  z-index:997; transition:all var(--ease);
}
.wa-float:hover { transform:scale(1.1); box-shadow:0 8px 28px rgba(37,211,102,0.5); }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer {
  background:var(--navy);
  color:rgba(255,255,255,0.72);
  padding:64px 0 32px;
}
.footer-grid {
  display:grid; grid-template-columns:2fr 1fr 1fr 1.2fr;
  gap:48px; margin-bottom:48px;
}
.footer-brand .l-main {
  font-family:'Source Sans 3',sans-serif;
  font-weight:700; font-size:22px; color:var(--white); letter-spacing:0.1em;
}
.footer-brand .l-sub {
  font-size:11px; font-weight:600; color:var(--gold);
  letter-spacing:0.2em; text-transform:uppercase; margin-top:3px;
}
.footer-brand p {
  font-size:14px; color:rgba(255,255,255,0.55); line-height:1.75; margin-top:14px;
}
.footer-brand .f-lic {
  margin-top:14px; font-size:12px; color:rgba(255,255,255,0.3);
}
.footer-col h4 {
  font-family:'Source Sans 3',sans-serif;
  font-size:12px; font-weight:700; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--gold); margin-bottom:20px;
}
.footer-col li { margin-bottom:10px; }
.footer-col a  { font-size:14px; color:rgba(255,255,255,0.58); transition:color var(--ease); }
.footer-col a:hover { color:var(--white); }
.footer-col address { font-size:14px; color:rgba(255,255,255,0.58); line-height:1.85; }
.footer-col address a { transition:color var(--ease); }
.footer-col address a:hover { color:var(--gold); }
.footer-bottom {
  border-top:1px solid rgba(255,255,255,0.08);
  padding-top:28px;
  display:flex; justify-content:space-between; align-items:center;
  flex-wrap:wrap; gap:12px;
  font-size:13px; color:rgba(255,255,255,0.38);
}
.footer-bottom a { color:rgba(255,255,255,0.38); transition:color var(--ease); }
.footer-bottom a:hover { color:var(--gold); }

/* ── Reveal animations ──────────────────────────────────────── */
.reveal {
  opacity:0; transform:translateY(28px);
  transition:opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity:1; transform:translateY(0); }
.reveal-d1 { transition-delay:0.10s; }
.reveal-d2 { transition-delay:0.20s; }
.reveal-d3 { transition-delay:0.30s; }
.reveal-d4 { transition-delay:0.40s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width:1024px) {
  .footer-grid    { grid-template-columns:1fr 1fr; }
  .product-inner  { grid-template-columns:1fr; gap:32px; }
  .product-sidebar {
    position:static;
    display:flex; align-items:center;
    text-align:left; gap:24px; padding:28px;
  }
  .product-sidebar .big-icon { margin-bottom:0; flex-shrink:0; }
  .about-snippet  { grid-template-columns:1fr; }
}
@media (max-width:900px) {
  .hero-inner  { grid-template-columns:1fr; }
  .hero-visual { display:none; }
  .hero-body   { max-width:100%; }
}
@media (max-width:768px) {
  :root { --header-h:64px; }
  .section { padding:64px 0; }
  .container { padding:0 20px; }
  .nav-links,.nav-cta { display:none; }
  .hamburger { display:flex; }
  .grid-2,.grid-3,.grid-4 { grid-template-columns:1fr; }
  .contact-grid   { grid-template-columns:1fr; gap:40px; }
  .footer-grid    { grid-template-columns:1fr; gap:28px; }
  .footer-bottom  { flex-direction:column; text-align:center; }
  .manager-card   { flex-direction:column; text-align:center; gap:24px; padding:32px 24px; }
  .detail-grid    { grid-template-columns:1fr; }
  .form-2col      { grid-template-columns:1fr; }
  .section--navy.cut-top::before,
  .section--navy.cut-bottom::after { height:50px; }
}
@media (max-width:480px) {
  .comp-table td:first-child { width:auto; white-space:normal; }
  .comp-table tr { display:flex; flex-direction:column; }
  .comp-table td { padding:10px 16px; }
  .comp-table td:first-child { padding-bottom:4px; }
  .contact-form-wrap { padding:28px 20px; }
  .license-hero-no .no-value { font-size:40px; }
}

/* ── Hero World Map Visual ──────────────────────────────────── */
.hero-visual {
  position:relative;
  display:flex; flex-direction:column; gap:10px;
}
.map-header {
  display:flex; align-items:center; gap:8px;
  font-family:'Source Sans 3',sans-serif;
  font-size:11px; font-weight:700; letter-spacing:0.12em;
  text-transform:uppercase; color:var(--gold);
}
.map-live-dot {
  width:7px; height:7px; border-radius:50%;
  background:#34d399; margin-left:auto;
  animation:livePulse 2s ease-in-out infinite;
}
@keyframes livePulse {
  0%,100% { opacity:1; }
  50% { opacity:0.3; }
}
.map-live-text {
  font-size:10px; font-weight:700; letter-spacing:0.1em;
  color:#34d399;
}
.world-map-wrap {
  background:rgba(255,255,255,0.03);
  border:1px solid rgba(184,146,42,0.25);
  border-radius:var(--r-lg);
  padding:6px;
  position:relative;
}
.world-map-svg {
  width:100%; height:auto; display:block;
}

/* Continent fills */
.continent {
  fill:rgba(255,255,255,0.06);
  stroke:rgba(255,255,255,0.12);
  stroke-width:0.6;
}
.continent-hl {
  fill:rgba(184,146,42,0.20);
  stroke:#B8922A;
  stroke-width:0.8;
  filter:drop-shadow(0 0 7px rgba(184,146,42,0.45));
}

/* Grid lines */
.map-grid {
  fill:none; stroke:rgba(255,255,255,0.04); stroke-width:0.5;
}

/* Animated trade routes */
.trade-route {
  fill:none;
  stroke:#B8922A;
  stroke-width:1.6;
  stroke-dasharray:7 5;
  stroke-linecap:round;
  opacity:0.75;
  animation:dashFlow 3s linear infinite;
}
.trade-route.route-2 { animation-delay:-1.5s; }
@keyframes dashFlow {
  from { stroke-dashoffset:48; }
  to   { stroke-dashoffset:0; }
}

/* ── D3 World Map container ── */
#world-map-d3 {
  width:100%;
  aspect-ratio:2/1;
  min-height:160px;
}
.map-route { animation:dashFlow 3s linear infinite; }
.map-route-alt { animation-delay:-1.5s; }

/* Pulse dots */
.pulse-core {
  fill:#B8922A;
  transform-box:fill-box; transform-origin:center;
}
.pulse-ring {
  fill:none; stroke:#B8922A; stroke-width:1.2;
  transform-box:fill-box; transform-origin:center;
  animation:pulseOut 2.2s ease-out infinite;
}
.pulse-ring.r2 { animation-delay:-1.1s; }
@keyframes pulseOut {
  0%   { transform:scale(1); opacity:0.9; }
  100% { transform:scale(4); opacity:0; }
}

/* City labels */
.map-label {
  fill:rgba(184,146,42,0.8);
  font-family:'Source Sans 3',sans-serif;
  font-size:9px; font-weight:600; letter-spacing:0.07em;
  text-transform:uppercase;
}

/* Credential strip below map */
.cred-strip {
  display:flex; align-items:center; gap:0;
  background:rgba(255,255,255,0.04);
  border:1px solid rgba(184,146,42,0.22);
  border-radius:var(--r-sm);
  overflow:hidden;
}
.cred-strip-item {
  display:flex; flex-direction:column; gap:2px;
  padding:10px 16px;
  border-right:1px solid rgba(255,255,255,0.07);
  flex:1;
}
.cred-strip-item:last-of-type { border-right:none; }
.cred-strip-label {
  font-family:'Source Sans 3',sans-serif;
  font-size:9px; font-weight:700; letter-spacing:0.1em;
  text-transform:uppercase; color:rgba(184,146,42,0.65);
}
.cred-strip-value {
  font-size:12px; font-weight:600; color:var(--white);
}
.cred-strip-value.active { color:#34d399; }
.cred-strip-link {
  padding:10px 14px;
  font-family:'Source Sans 3',sans-serif;
  font-size:11px; font-weight:600; color:var(--gold);
  white-space:nowrap; letter-spacing:0.03em;
  transition:background var(--ease);
  border-left:1px solid rgba(255,255,255,0.07);
}
.cred-strip-link:hover { background:rgba(184,146,42,0.1); }
