/* ================================================================
   L.I.A.M. Global — Premium Design System 2026
   Custom CSS layer (Tailwind handles utilities)
   ================================================================ */

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

/* ── Brand tokens ───────────────────────────────────────────── */
:root {
  --blue:        #0057A4;
  --blue-d:      #003d75;
  --blue-l:      #1a6fbd;
  --green:       #009444;
  --green-d:     #006f32;
  --red:         #D71920;
  --red-d:       #a51118;
  --dark:        #231F20;
  --navy:        #001830;
  --navy-mid:    #002952;
  --white:       #ffffff;
  --off-white:   #F7F9FC;
  --glass-light: rgba(255,255,255,0.07);
  --glass-border: rgba(255,255,255,0.13);

  /* ── Premium easing (dagama-kinetic-animations: power3.out) ── */
  --transition:  0.50s cubic-bezier(0.16,1,0.3,1);
  --transition-fast: 0.30s cubic-bezier(0.16,1,0.3,1);
  --transition-slow: 0.80s cubic-bezier(0.16,1,0.3,1);

  /* ── Ghost gold accent (dagama-color-ledger) ─────────────── */
  --ghost-gold:     #C5A059;
  --burnished-gold: #D4B97A;
  --glow-gold:      0 0 8px rgba(197,160,89,0.55);
}

/* ── Reset & base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  { font-family: 'Inter', sans-serif; color: var(--dark); overflow-x: hidden; }
img   { max-width: 100%; display: block; }
a     { text-decoration: none; color: inherit; }
ul    { list-style: none; }

::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: #f0f0f0; }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* RTL support */
body[dir="rtl"] { direction: rtl; }

/* ── Typography ─────────────────────────────────────────────── */
.font-display { font-family: 'Space Grotesk', sans-serif; }
h1,h2,h3,h4  { font-family: 'Space Grotesk', sans-serif; }

/* ── Glassmorphism Nav ──────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 72px; padding: 0 clamp(1rem,4vw,2.5rem);
  display: flex; align-items: center;
  transition: background var(--transition), border-color var(--transition), box-shadow var(--transition);
  background: var(--glass-light);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border-bottom: 1px solid var(--glass-border);
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 2px 24px rgba(0,0,0,0.09);
}
.nav-inner { max-width: 1280px; width: 100%; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; }

/* Nav link style */
.nav-link {
  font-size: .88rem; font-weight: 500; letter-spacing: .01em;
  color: rgba(255,255,255,.85); transition: color var(--transition);
  position: relative;
}
#navbar.scrolled .nav-link { color: #374151; }
.nav-link::after {
  content: ''; position: absolute; bottom: -3px; left: 0; right: 0;
  height: 2px; background: var(--blue); border-radius: 2px;
  transform: scaleX(0); transform-origin: left; transition: transform var(--transition);
}
.nav-link:hover { color: var(--white); }
#navbar.scrolled .nav-link:hover { color: var(--blue); }
.nav-link:hover::after { transform: scaleX(1); }

/* Lang toggle */
.lang-toggle {
  display: flex; border-radius: 8px; overflow: hidden;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: border-color var(--transition);
}
#navbar.scrolled .lang-toggle { border-color: #e5e7eb; }
.lang-btn {
  padding: .3rem .65rem; font-size: .78rem; font-weight: 700;
  cursor: pointer; background: transparent; border: none;
  color: rgba(255,255,255,.8); transition: background var(--transition), color var(--transition);
  font-family: 'Inter', sans-serif;
}
#navbar.scrolled .lang-btn { color: #6b7280; }
.lang-btn.active { background: var(--blue); color: white !important; }
.lang-btn:not(.active):hover { background: rgba(255,255,255,.12); }
#navbar.scrolled .lang-btn:not(.active):hover { background: #f3f4f6; color: var(--dark) !important; }

/* Nav CTA button */
.nav-cta {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .55rem 1.2rem; border-radius: 8px; font-weight: 700;
  font-size: .84rem; background: var(--green); color: white;
  box-shadow: 0 3px 12px rgba(0,148,68,.35);
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
}
.nav-cta:hover { background: var(--green-d); transform: translateY(-1px); box-shadow: 0 6px 18px rgba(0,148,68,.4); }

/* Mobile hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: .5rem; }
.hamburger span { width: 22px; height: 2px; background: white; border-radius: 2px; transition: var(--transition); }
#navbar.scrolled .hamburger span { background: var(--dark); }

/* ── Hero ───────────────────────────────────────────────────── */
#hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero-left-bg {
  position: absolute; inset: 0; width: 58%;
  background: linear-gradient(155deg, #000d1f 0%, #001830 45%, #002952 100%);
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}
.hero-right-bg {
  position: absolute; inset: 0; left: 42%;
  background: linear-gradient(155deg, #031a0b 0%, #062a10 50%, #0a3a18 100%);
}
.hero-grid-overlay {
  position: absolute; inset: 0; width: 58%; pointer-events: none;
  background-image:
    linear-gradient(rgba(0,87,164,0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,164,0.12) 1px, transparent 1px);
  background-size: 52px 52px;
  clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
}
.hero-vine-overlay {
  position: absolute; inset: 0; left: 50%; pointer-events: none; overflow: hidden;
  opacity: .12;
}

/* Hero content */
.hero-content {
  position: relative; z-index: 3;
  max-width: 1280px; width: 100%; margin: 0 auto;
  padding: 9rem clamp(1rem,4vw,2.5rem) 5rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .38rem .95rem; border-radius: 99px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  font-size: .75rem; font-weight: 700; color: rgba(255,255,255,.85);
  letter-spacing: .1em; text-transform: uppercase; margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}
.hero-eyebrow-dot { width: 6px; height: 6px; border-radius: 50%; background: #4ade80; animation: pulse-dot 2s infinite; }
@keyframes pulse-dot {
  0%,100% { opacity:1; transform:scale(1); }
  50%      { opacity:.5; transform:scale(1.4); }
}

.hero-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.2rem,4.2vw,3.8rem);
  font-weight: 700; line-height: 1.06;
  letter-spacing: -.035em; color: white; margin-bottom: 1.5rem;
}
.hero-title .accent-blue  { color: #60a5fa; }
.hero-title .accent-green { color: #4ade80; }

.hero-subtitle {
  font-size: clamp(.95rem,1.6vw,1.15rem);
  color: rgba(255,255,255,.7); line-height: 1.75;
  max-width: 480px; margin-bottom: 2.5rem;
}

/* Hero stats */
.hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.1); }
.hero-stat-num { font-family: 'Space Grotesk', sans-serif; font-size: 2.1rem; font-weight: 900; color: white; line-height: 1; }
.hero-stat-label { font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.5); text-transform: uppercase; letter-spacing: .08em; margin-top: .25rem; }

/* Hero right visual */
.hero-map-panel {
  background: rgba(0,0,0,.25); border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(255,255,255,.1);
  backdrop-filter: blur(8px); position: relative;
}

/* ── Stats Bar ──────────────────────────────────────────────── */
#stats-bar { background: white; border-bottom: 1px solid #f1f5f9; }
.stat-item  { text-align: center; }
.stat-item-num { font-family: 'Space Grotesk', sans-serif; font-size: 2rem; font-weight: 900; line-height: 1; }
.stat-item-label { font-size: .75rem; font-weight: 600; color: #6b7280; text-transform: uppercase; letter-spacing: .07em; margin-top: .3rem; }

/* ── Bento Grid ─────────────────────────────────────────────── */
.bento-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}
.bento-L { grid-column: 1; grid-row: 1 / 3; }
.bento-I { grid-column: 2; grid-row: 1; }
.bento-A { grid-column: 3; grid-row: 1; }
.bento-M { grid-column: 2 / 4; grid-row: 2; }

.bento-card {
  border-radius: 18px; padding: 2.25rem 2rem;
  position: relative; overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: default;
}
.bento-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(0,0,0,.18); }

.bento-card-L { background: var(--blue);     color: white; }
.bento-card-I { background: var(--green);    color: white; }
.bento-card-A { background: var(--red);      color: white; }
.bento-card-M { background: var(--dark);     color: white; }

.bento-letter {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(4rem,7vw,7rem);
  font-weight: 900; line-height: 1;
  letter-spacing: -.04em; opacity: .15;
  position: absolute; bottom: -.5rem; right: 1rem;
}
.bento-word {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .7rem; font-weight: 800;
  letter-spacing: .18em; text-transform: uppercase;
  opacity: .8; margin-bottom: .6rem;
}
.bento-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.4rem, 2.2vw, 2rem);
  font-weight: 800; line-height: 1.2; margin-bottom: 1rem;
}
.bento-desc { font-size: .9rem; opacity: .8; line-height: 1.7; max-width: 360px; }
.bento-icon {
  width: 48px; height: 48px; border-radius: 14px;
  background: rgba(255,255,255,.15); display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 1.5rem;
}
.bento-card-M .bento-desc { max-width: 600px; }

/* ── Trade Map ──────────────────────────────────────────────── */
#trade-map-section { background: var(--navy); }
.trade-map-wrap {
  background: #050e1f; border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(0,87,164,.25);
  box-shadow: 0 0 80px rgba(0,87,164,.15), inset 0 0 80px rgba(0,87,164,.05);
}

/* Trade route animated paths */
.trade-path-animate {
  stroke-dasharray: 8 6;
  animation: flow-dash 3s linear infinite;
}
.trade-path-slow { animation-duration: 5s; }
.trade-path-med  { animation-duration: 4s; }

@keyframes flow-dash { to { stroke-dashoffset: -42; } }

/* Hub pulse ring */
.hub-ring {
  animation: hub-pulse 2.5s ease-in-out infinite;
  transform-origin: center;
}
@keyframes hub-pulse {
  0%,100% { opacity:.15; r:18; }
  50%      { opacity:.04; r:26; }
}
.hub-ring-2 { animation-duration: 3.5s; animation-delay: .5s; }

/* ── Fruit Corridor ─────────────────────────────────────────── */
#fruit-section { background: #f0faf4; }
.fruit-visual {
  border-radius: 20px; overflow: hidden;
  background: linear-gradient(160deg, #0a3a12 0%, #145220 40%, #1a6e2a 70%, #22922e 100%);
  aspect-ratio: 4/3; position: relative;
  box-shadow: 0 24px 64px rgba(0,100,40,.3);
}
.fruit-visual-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 55%);
}

/* ── Industrial ─────────────────────────────────────────────── */
#industrial-section { background: var(--navy); }
.industrial-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.09);
  border-radius: 16px; padding: 2rem;
  backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
  transition: background var(--transition), transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}
.industrial-card:hover {
  background: rgba(255,255,255,.08); transform: translateY(-5px);
  border-color: rgba(0,87,164,.5);
  box-shadow: 0 24px 64px rgba(0,0,0,0.35), 0 0 0 1px rgba(0,87,164,0.2);
}
.industrial-card-icon {
  width: 56px; height: 56px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; margin-bottom: 1.25rem;
}
.industrial-card-icon.blue  { background: rgba(0,87,164,.2); }
.industrial-card-icon.green { background: rgba(0,148,68,.2); }
.industrial-card-icon.red   { background: rgba(215,25,32,.2); }
.industrial-card-icon.gold  { background: rgba(214,158,46,.2); }
.isi-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .45rem 1rem; border-radius: 99px;
  background: rgba(197,160,89,0.12); border: 1px solid rgba(212,185,122,0.4);
  color: var(--burnished-gold,#D4B97A); font-size: .75rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
}

/* ── Offices (Mercury-style) ────────────────────────────────── */
#offices-section { background: var(--off-white); }
.office-card {
  background: white; border-radius: 18px; padding: 2.25rem 2rem;
  border: 1.5px solid #e8ecf2;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.office-card:hover { transform: translateY(-5px); box-shadow: 0 16px 48px rgba(0,0,0,.1); border-color: var(--blue); }
.office-flag-wrap {
  width: 52px; height: 52px; border-radius: 14px; overflow: hidden;
  font-size: 2rem; display: flex; align-items: center; justify-content: center;
  background: #f3f4f6; margin-bottom: 1.25rem;
}
.office-role-tag {
  display: inline-block; padding: .28rem .8rem; border-radius: 99px;
  font-size: .72rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  margin-bottom: 1rem;
}
.office-role-tag.blue  { background: rgba(0,87,164,.08);   color: var(--blue); }
.office-role-tag.green { background: rgba(0,148,68,.08);   color: var(--green); }
.office-role-tag.red   { background: rgba(215,25,32,.08);  color: var(--red); }
.office-divider { height: 1px; background: #f1f5f9; margin: 1.1rem 0; }
.office-detail-line {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .85rem; color: #4b5563; line-height: 1.5;
  margin-bottom: .55rem;
}
.office-detail-icon { font-size: .95rem; flex-shrink: 0; margin-top: .05rem; }

/* ── Trust bar ──────────────────────────────────────────────── */
#trust-section { background: white; border-top: 1px solid #f1f5f9; border-bottom: 1px solid #f1f5f9; }
.trust-item { display: flex; align-items: center; gap: .75rem; }
.trust-icon-wrap {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.2rem;
  flex-shrink: 0;
}

/* ── Contact CTA ────────────────────────────────────────────── */
#cta-section   { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #003d75 100%); }
.cta-section   { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, #003d75 100%); }
.nav-tagline-text { color: rgba(255,255,255,.55); }
.cta-form-row {
  display: flex; gap: 1rem; max-width: 560px;
}
.cta-input {
  flex: 1; padding: .9rem 1.25rem; border-radius: 10px; font-family: 'Inter', sans-serif;
  font-size: .95rem; border: none; background: rgba(255,255,255,.1);
  color: white; backdrop-filter: blur(8px); border: 1.5px solid rgba(255,255,255,.15);
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}
.cta-input::placeholder { color: rgba(255,255,255,.4); }
.cta-input:focus { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.15); }

/* ── Footer ─────────────────────────────────────────────────── */
footer { background: #0b0d0f; color: rgba(255,255,255,.65); }
.footer-logo-liam {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.7rem; font-weight: 900;
  letter-spacing: .1em; color: white; line-height: 1;
}
.footer-link { font-size: .875rem; color: rgba(255,255,255,.45); transition: color var(--transition); }
.footer-link:hover { color: white; }
.footer-col-title { font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 1.1rem; }
.footer-color-dots { display: flex; gap: 6px; }
.footer-dot { width: 10px; height: 10px; border-radius: 50%; }

/* ── Buttons ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .75rem 1.75rem; border-radius: 9px; font-weight: 700;
  font-size: .9rem; border: 2px solid transparent; cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), border-color var(--transition);
  white-space: nowrap; font-family: 'Inter', sans-serif;
}
.btn:hover { transform: translateY(-2px); }
.btn-blue  { background: var(--blue);  color: white; box-shadow: 0 4px 14px rgba(0,87,164,.35); }
.btn-blue:hover  { background: var(--blue-d);  box-shadow: 0 8px 22px rgba(0,87,164,.45); }
.btn-green { background: var(--green); color: white; box-shadow: 0 4px 14px rgba(0,148,68,.35); }
.btn-green:hover { background: var(--green-d); box-shadow: 0 8px 22px rgba(0,148,68,.45); }
.btn-white { background: white; color: var(--blue); }
.btn-white:hover { background: #f0f7ff; }
.btn-outline-white { background: transparent; border-color: rgba(255,255,255,.35); color: white; }
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.btn-lg { padding: 1rem 2.25rem; font-size: 1rem; border-radius: 11px; }

/* ── Section labels ─────────────────────────────────────────── */
.section-label {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .32rem .85rem; border-radius: 99px; margin-bottom: .9rem;
  font-size: .72rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.label-blue  { background: rgba(0,87,164,.09);   color: var(--blue); }
.label-green { background: rgba(0,148,68,.09);   color: var(--green); }
.label-red   { background: rgba(215,25,32,.09);  color: var(--red); }
.label-white { background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }

/* ── FAB ────────────────────────────────────────────────────── */
.quote-fab {
  position: fixed; bottom: 1.75rem; right: 1.75rem; z-index: 900;
  display: flex; align-items: center; gap: .55rem;
  padding: .85rem 1.4rem; border-radius: 99px;
  background: var(--green); color: white; border: none;
  font-weight: 700; font-size: .88rem; font-family: 'Inter', sans-serif;
  box-shadow: 0 8px 28px rgba(0,148,68,.45); cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  animation: fab-in .6s .8s both;
}
body[dir="rtl"] .quote-fab { right: auto; left: 1.75rem; }
.quote-fab:hover { transform: translateY(-3px) scale(1.03); box-shadow: 0 14px 36px rgba(0,148,68,.5); background: var(--green-d); }
@keyframes fab-in { from { opacity:0; transform:scale(.7) translateY(20px); } to { opacity:1; transform:scale(1) translateY(0); } }

/* ── Modal ──────────────────────────────────────────────────── */
.modal-backdrop {
  position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.65); backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center; padding: 1rem;
  opacity: 0; pointer-events: none; transition: opacity var(--transition);
}
.modal-backdrop.open { opacity: 1; pointer-events: all; }
.modal-box {
  background: white; border-radius: 20px; padding: 2.5rem;
  max-width: 520px; width: 100%;
  box-shadow: 0 32px 80px rgba(0,0,0,.25);
  transform: translateY(24px) scale(.96);
  transition: transform var(--transition);
}
.modal-backdrop.open .modal-box { transform: translateY(0) scale(1); }
.modal-input {
  width: 100%; padding: .8rem 1.1rem; border-radius: 10px;
  border: 1.5px solid #e5e7eb; background: #f9fafb;
  font-family: 'Inter', sans-serif; font-size: .93rem; outline: none;
  transition: border-color var(--transition), background var(--transition);
}
.modal-input:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(0,87,164,.1); }

/* ── Mobile nav overlay ─────────────────────────────────────── */
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 999;
  background: var(--navy); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 2.25rem;
  transform: translateX(100%); transition: transform var(--transition);
}
.mobile-nav-overlay.open { transform: translateX(0); }
.mobile-nav-link { font-size: 1.6rem; font-weight: 700; color: white; font-family: 'Space Grotesk', sans-serif; transition: color var(--transition); }
.mobile-nav-link:hover { color: #60a5fa; }
.mobile-close { position: absolute; top: 1.5rem; right: 1.5rem; width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.1); border: none; color: white; font-size: 1.2rem; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--transition); }
.mobile-close:hover { background: rgba(255,255,255,.2); }

/* ── Scroll reveal (power3.out, 40px rise — dagama-kinetic-animations) */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.80s cubic-bezier(0.16,1,0.3,1), transform 0.80s cubic-bezier(0.16,1,0.3,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: .10s; }
.reveal-d2 { transition-delay: .20s; }
.reveal-d3 { transition-delay: .30s; }
.reveal-d4 { transition-delay: .40s; }

/* ── Language content toggle ────────────────────────────────── */
.en-show { display: block; }
.he-show { display: none; }
.en-inline { display: inline; }
.he-inline { display: none; }
body[dir="rtl"] .en-show   { display: none; }
body[dir="rtl"] .he-show   { display: block; }
body[dir="rtl"] .en-inline { display: none; }
body[dir="rtl"] .he-inline { display: inline; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .bento-grid { grid-template-columns: 1fr 1fr; }
  .bento-L { grid-row: 1; }
  .bento-M { grid-column: 1 / 3; grid-row: 3; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; padding: 6rem 1.25rem 3rem; }
  .hero-map-panel { display: none; }
  .hero-left-bg { width: 100%; clip-path: none; }
  .hero-right-bg { display: none; }
  .hero-grid-overlay { width: 100%; clip-path: none; }
  nav .nav-links-desktop { display: none !important; }
  .hamburger { display: flex !important; }
  .bento-grid { grid-template-columns: 1fr; gap: 1rem; }
  .bento-L,.bento-I,.bento-A,.bento-M { grid-column: 1; grid-row: auto; }
  .bento-card { padding: 1.5rem; }
  .cta-form-row { flex-direction: column; }
  .hero-thin { font-size: clamp(1.9rem, 8vw, 2.6rem) !important; }
  .hero-stat-num { font-size: 1.65rem; }
  .hero-stats { gap: 1.25rem; padding-top: 1.5rem; }
  .stat-item-num { font-size: 1.5rem; }
  .office-card { padding: 1.5rem 1.25rem; }
  .industrial-card { padding: 1.5rem; }
  .ind-grid { gap: .875rem; }
  .modal-box { padding: 1.75rem 1.25rem; width: calc(100vw - 2rem); }
  .feature-row { padding: .875rem 1rem; }
}
@media (max-width: 480px) {
  .hero-thin { font-size: clamp(1.7rem, 9.5vw, 2.2rem) !important; }
  .hero-stats { flex-wrap: wrap; gap: 1rem; }
  .hero-stat-num { font-size: 1.5rem; }
  .hero-eyebrow { font-size: .65rem; letter-spacing: .07em; }
  .section-label { font-size: .6rem; }
  .bento-card { padding: 1.25rem; }
}

/* ── Technology Capabilities Section ───────────────────────── */
.tech-section-pill {
  display: inline-flex; align-items: center;
  padding: .28rem .85rem; border-radius: 99px;
  background: rgba(0,87,164,0.12); border: 1px solid rgba(0,87,164,0.3);
  font-size: .68rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: #60a5fa;
  white-space: nowrap;
}
.tech-capabilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 1024px) { .tech-capabilities-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 640px)  { .tech-capabilities-grid { grid-template-columns: 1fr; } }

.tech-cap-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px; padding: 1.5rem;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  transition: border-color var(--transition), background var(--transition), transform var(--transition);
  position: relative; overflow: hidden;
}
.tech-cap-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--sig, #60a5fa), transparent);
  opacity: 0; transition: opacity var(--transition);
}
.tech-cap-card:hover { border-color: rgba(255,255,255,0.14); background: rgba(255,255,255,0.05); transform: translateY(-3px); }
.tech-cap-card:hover::before { opacity: 1; }

.tech-cap-icon {
  width: 44px; height: 44px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem; color: var(--sig, #60a5fa);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 0 16px rgba(0,0,0,.3), inset 0 1px 0 rgba(255,255,255,.06);
}
.tech-cap-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem; font-weight: 600; color: #f1f5f9;
  letter-spacing: -.01em; margin-bottom: .4rem;
}
.tech-cap-desc {
  font-size: .8rem; line-height: 1.6;
  color: rgba(255,255,255,.45);
}

/* ════════════════════════════════════════════════════════════
   v2 PREMIUM ENHANCEMENTS — 2026
   ════════════════════════════════════════════════════════════ */

/* Page entry */
body { animation: body-reveal 0.4s ease both; }
@keyframes body-reveal { from { opacity: 0; } to { opacity: 1; } }

/* Premium selection + scrollbar */
::selection { background: rgba(0,87,164,0.18); }
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #060a10; }
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #0057A4 0%, #009444 100%);
  border-radius: 3px;
}

/* ── Hero particles ──────────────────────────────────────── */
#hero-particles {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden; z-index: 2;
  width: 58%; clip-path: polygon(0 0,100% 0,82% 100%,0 100%);
}
.hero-particle {
  position: absolute; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(96,165,250,0.5));
  animation: particle-drift ease-in-out infinite alternate;
  pointer-events: none; will-change: transform;
}
@keyframes particle-drift {
  from { transform: translate(0,0) scale(1); }
  to   { transform: translate(var(--dx,0px),var(--dy,-20px)) scale(1.4); }
}

/* ── Hero diagonal glow line ────────────────────────────── */
/* ── Gradient hero text ─────────────────────────────────── */
.hero-accent-blue {
  background: linear-gradient(90deg, #60a5fa 0%, #93c5fd 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-accent-green {
  background: linear-gradient(90deg, #4ade80 0%, #86efac 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-accent-strong {
  background: linear-gradient(90deg, #ffffff 0%, #e0f2fe 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Hero stats border-top glow */
.hero-stats { position: relative; }
.hero-stats::before {
  content: '';
  position: absolute; top: -1px; left: 0; width: 40%; height: 1px;
  background: linear-gradient(90deg, #4ade80, rgba(96,165,250,0.3), transparent);
}

/* ── Bento shimmer on hover ─────────────────────────────── */
.bento-card { overflow: hidden; }
.bento-shimmer {
  position: absolute; top: -60%; left: -80%; width: 55%; height: 220%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.11) 50%, transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none; z-index: 10;
}
.bento-card:hover .bento-shimmer { animation: bento-shine 0.8s ease; }
@keyframes bento-shine {
  0%   { left: -80%; }
  100% { left: 180%; }
}
.bento-card:hover .bento-letter { opacity: 0.22; transition: opacity 0.4s; }

/* ── ISI badge pulse glow ───────────────────────────────── */
.isi-badge { animation: isi-pulse 3s ease-in-out infinite; }
@keyframes isi-pulse {
  0%,100% { box-shadow: 0 0 0 0 rgba(74,222,128,0); }
  50%      { box-shadow: 0 0 10px 4px rgba(74,222,128,0.18), 0 0 0 1px rgba(74,222,128,0.35); }
}

/* ── Industrial hero card glow ──────────────────────────── */
.ind-hero {
  box-shadow: 0 0 0 1px rgba(215,25,32,0.12), 0 20px 60px rgba(0,0,0,0.3) !important;
  transition: box-shadow 0.35s cubic-bezier(.4,0,.2,1), transform 0.35s cubic-bezier(.4,0,.2,1), background 0.35s !important;
}
.ind-hero:hover {
  background: rgba(255,255,255,.09) !important;
  box-shadow: 0 0 0 1px rgba(215,25,32,0.4), 0 0 60px rgba(215,25,32,0.1), 0 28px 70px rgba(0,0,0,0.45) !important;
  transform: translateY(-6px) !important;
}

/* ── Feature row enhanced ───────────────────────────────── */
.feature-row {
  transition: border-color .25s, box-shadow .25s, transform .25s !important;
}
.feature-row:hover {
  border-color: rgba(0,148,68,0.25) !important;
  box-shadow: -3px 0 0 rgba(0,148,68,0.65), 0 6px 24px rgba(0,148,68,0.06) !important;
  transform: translateX(4px) !important;
}

/* ── Fruit visual enhanced ──────────────────────────────── */
.fruit-visual { transition: transform var(--transition), box-shadow var(--transition) !important; }
.fruit-visual:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 48px 100px rgba(0,120,50,0.45), 0 0 0 1px rgba(74,222,128,0.2) !important;
}

/* ── Office card enhanced ───────────────────────────────── */
.office-card { transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition) !important; }
.office-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 24px 64px rgba(0,87,164,0.14), 0 0 0 1.5px var(--blue) !important;
  border-color: var(--blue) !important;
}

/* ── Wave section dividers ──────────────────────────────── */
.wave-divider { display: block; line-height: 0; overflow: hidden; pointer-events: none; }
.wave-divider svg { display: block; width: 100%; }

/* ── Section top accent lines ───────────────────────────── */
#pillars::before {
  content: ''; display: block;
  height: 1px; margin: 0 auto;
  width: min(520px,75%);
  background: linear-gradient(90deg, transparent, rgba(0,87,164,0.25), rgba(0,148,68,0.2), transparent);
}

/* ── Footer top gradient line ───────────────────────────── */
footer { position: relative; }
footer::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, #0057A4 25%, #009444 50%, #D71920 75%, transparent);
  opacity: 0.5;
}

/* ── Stat number pop animation ──────────────────────────── */
@keyframes stat-num-pop {
  0%   { transform: scale(0.6) translateY(10px); opacity: 0; }
  60%  { transform: scale(1.12) translateY(-2px); opacity: 1; }
  100% { transform: scale(1) translateY(0); opacity: 1; }
}
.stat-item-num.popped { animation: stat-num-pop 0.65s cubic-bezier(0.34,1.56,0.64,1) both; }

/* ── Counter number flicker ─────────────────────────────── */
.stat-item-num { font-variant-numeric: tabular-nums; }

/* ── Industrial section tech-grid overlay ───────────────── */
#industrial::after {
  content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image:
    linear-gradient(rgba(0,87,164,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,87,164,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
}
#industrial > * { position: relative; z-index: 1; }
#industrial { position: relative; }

/* ── Trust item glow on hover ───────────────────────────── */
.trust-item {
  transition: transform 0.25s ease;
  padding: 0.75rem; border-radius: 12px;
}
.trust-item:hover { transform: translateY(-3px); }

/* ── Subtle bento card ambient glow colors ──────────────── */
.bento-card-L { box-shadow: 0 16px 48px rgba(0,87,164,0.25); }
.bento-card-I { box-shadow: 0 16px 48px rgba(0,148,68,0.25); }
.bento-card-A { box-shadow: 0 16px 48px rgba(215,25,32,0.25); }
.bento-card-M { box-shadow: 0 16px 48px rgba(35,31,32,0.35); }
.bento-card:hover { box-shadow: 0 24px 64px rgba(0,0,0,0.28) !important; }
