/* =========================================================
   ASME TRADING — Company Profile Website
   Design system + layout
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root{
  --navy-950: #0e1830;
  --navy-900: #131f3d;
  --navy-800: #1b2a4a;
  --navy-700: #24365d;
  --navy-600: #33497a;
  --navy-500: #4a6099;

  --orange-600: #e26f0f;
  --orange-500: #f5821f;
  --orange-400: #f89a3f;
  --gold-400: #fdb813;
  --gold-300: #ffd166;

  --ink: #16213f;
  --ink-soft: #4b5877;
  --ink-faint: #7d88a3;

  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --bg-dark: var(--navy-900);
  --line: #e7eaf2;

  --gradient-brand: linear-gradient(135deg, var(--orange-500) 0%, var(--gold-400) 100%);
  --gradient-navy: linear-gradient(160deg, var(--navy-950) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  --gradient-text: linear-gradient(120deg, var(--orange-500), var(--gold-400));

  --shadow-sm: 0 2px 8px rgba(19, 31, 61, .06);
  --shadow-md: 0 8px 24px rgba(19, 31, 61, .10);
  --shadow-lg: 0 24px 60px rgba(19, 31, 61, .16);
  --shadow-orange: 0 14px 34px rgba(242, 130, 31, .35);

  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --container: 1240px;
  --nav-h: 76px;

  --ease: cubic-bezier(.22, 1, .36, 1);
  --dur: .6s;
}

/* ---------- Reset ---------- */
*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; scroll-padding-top: var(--nav-h); }
body, h1, h2, h3, h4, p, ul, ol, figure{ margin: 0; }
ul, ol{ padding: 0; list-style: none; }
img, svg{ display: block; max-width: 100%; }
a{ color: inherit; text-decoration: none; }
button{ font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
input, textarea, select{ font: inherit; color: inherit; }
table{ border-collapse: collapse; width: 100%; }

body{
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, .display{
  font-family: 'Poppins', 'Inter', sans-serif;
  font-weight: 700;
  line-height: 1.14;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}

::selection{ background: var(--orange-500); color: #fff; }

/* ---------- Scrollbar ---------- */
::-webkit-scrollbar{ width: 10px; }
::-webkit-scrollbar-track{ background: var(--bg-alt); }
::-webkit-scrollbar-thumb{ background: var(--navy-600); border-radius: 10px; }

/* ---------- Layout helpers ---------- */
.container{
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}
.section{ padding: 112px 0; position: relative; }
.section--tight{ padding: 84px 0; }
.section--alt{ background: var(--bg-alt); }
.section--navy{ background: var(--gradient-navy); color: #fff; }
.section--navy h2, .section--navy h3{ color: #fff; }

.grid{ display: grid; gap: 28px; }

.eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--orange-600);
  background: rgba(245, 130, 31, .1);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 18px;
}
.eyebrow::before{
  content: "";
  width: 6px; height: 6px;
  background: var(--orange-500);
  border-radius: 50%;
}
.section--navy .eyebrow{ background: rgba(255,255,255,.1); color: var(--gold-300); }

.section-head{
  max-width: 700px;
  margin-bottom: 56px;
}
.section-head.center{ margin-inline: auto; text-align: center; }
.section-head h2{ font-size: clamp(28px, 3.6vw, 42px); }
.section-head p{ margin-top: 16px; color: var(--ink-soft); font-size: 17px; }
.section--navy .section-head p{ color: rgba(255,255,255,.72); }

.text-gradient{
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .35s var(--ease), color .35s var(--ease), border-color .35s;
  will-change: transform;
}
.btn svg{ width: 18px; height: 18px; flex-shrink: 0; transition: transform .35s var(--ease); }
.btn:hover{ transform: translateY(-3px); }

.btn--primary{
  background: var(--gradient-brand);
  color: #fff;
  box-shadow: var(--shadow-orange);
}
.btn--primary:hover{ box-shadow: 0 20px 44px rgba(242,130,31,.45); }
.btn--primary:hover svg{ transform: translateX(3px); }

.btn--ghost{
  background: rgba(255,255,255,.06);
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(6px);
}
.btn--ghost:hover{ background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.6); }

.btn--dark{
  background: var(--navy-900);
  color: #fff;
}
.btn--dark:hover{ background: var(--navy-800); box-shadow: var(--shadow-lg); }

.btn--outline{
  background: transparent;
  color: var(--navy-900);
  border: 1.5px solid var(--line);
}
.btn--outline:hover{ border-color: var(--orange-500); color: var(--orange-600); }

.btn--sm{ padding: 11px 22px; font-size: 14px; }
.btn--block{ width: 100%; }

/* =========================================================
   PRELOADER
   ========================================================= */
.preloader{
  position: fixed; inset: 0; z-index: 9999;
  background: var(--navy-950);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.preloader.is-hidden{ opacity: 0; visibility: hidden; }
.preloader__mark{
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.preloader__ring{
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 3px solid rgba(255,255,255,.15);
  border-top-color: var(--orange-500);
  animation: spin 0.9s linear infinite;
}
@keyframes spin{ to{ transform: rotate(360deg); } }
.preloader__mark span{ color: #fff; font-weight: 700; letter-spacing: .18em; font-size: 13px; }

/* =========================================================
   PROGRESS BAR
   ========================================================= */
.scroll-progress{
  position: fixed; top: 0; left: 0; height: 3px;
  background: var(--gradient-brand);
  z-index: 1100; width: 0%;
  transition: width .1s linear;
}

/* =========================================================
   HEADER / NAV
   ========================================================= */
.site-header{
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), height .3s var(--ease);
}
.site-header .container{ display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.site-header.is-scrolled{
  height: 68px;
  background: rgba(14, 24, 48, .82);
  backdrop-filter: blur(14px) saturate(140%);
  box-shadow: 0 6px 24px rgba(0,0,0,.18);
}

.brand{ display: flex; align-items: center; gap: 12px; }
.brand__mark{
  width: 42px; height: 42px; flex-shrink: 0;
  background: rgba(255,255,255,.94);
  border-radius: 10px;
  padding: 5px;
  object-fit: contain;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.brand__text{ display: flex; flex-direction: column; line-height: 1.05; }
.brand__name{ font-family: 'Poppins', sans-serif; font-weight: 800; font-size: 18px; color: #fff; letter-spacing: .02em; }
.brand__tag{ font-size: 10px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-400); font-weight: 600; margin-top: 2px; }

.nav{ display: flex; align-items: center; gap: 8px; }
.nav__link{
  position: relative;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: rgba(255,255,255,.82);
  border-radius: var(--radius-pill);
  transition: color .3s, background .3s;
}
.nav__link:hover{ color: #fff; background: rgba(255,255,255,.08); }
.nav__link.is-active{ color: #fff; background: rgba(255,255,255,.1); }

.nav-actions{ display: flex; align-items: center; gap: 14px; }

.nav-toggle{
  display: none;
  width: 42px; height: 42px;
  border-radius: 10px;
  background: rgba(255,255,255,.08);
  align-items: center; justify-content: center;
  flex-direction: column; gap: 5px;
}
.nav-toggle span{ width: 20px; height: 2px; background: #fff; border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.is-active span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle.is-active span:nth-child(2){ opacity: 0; }
.nav-toggle.is-active span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  padding-top: calc(var(--nav-h) + 40px);
  padding-bottom: 60px;
  background: var(--gradient-navy);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}
.hero::before{
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(245,130,31,.16), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(253,184,19,.12), transparent 50%);
  z-index: -2;
}
.hero__slideshow{
  position: absolute; inset: 0; z-index: -4; overflow: hidden;
}
.hero__slide{
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  animation: heroSlide 24s infinite;
}
.hero__slide:nth-child(1){ animation-delay: 0s; }
.hero__slide:nth-child(2){ animation-delay: 6s; }
.hero__slide:nth-child(3){ animation-delay: 12s; }
.hero__slide:nth-child(4){ animation-delay: 18s; }
@keyframes heroSlide{
  0%{ opacity: 0; transform: scale(1.08); }
  4%{ opacity: 1; transform: scale(1.02); }
  22%{ opacity: 1; transform: scale(1); }
  26%{ opacity: 0; transform: scale(.98); }
  100%{ opacity: 0; }
}
.hero__scrim{
  position: absolute; inset: 0; z-index: -3;
  background:
    linear-gradient(100deg, rgba(14,24,48,.94) 0%, rgba(14,24,48,.86) 38%, rgba(19,31,61,.72) 62%, rgba(27,42,74,.55) 100%),
    linear-gradient(0deg, rgba(9,15,30,.5), transparent 40%);
}
@media (prefers-reduced-motion: reduce){
  .hero__slide{ animation: none; opacity: 0; }
  .hero__slide:first-child{ opacity: 1; }
}
.hero__grid-bg{
  position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 20%, transparent 75%);
  z-index: -1;
}
.hero__wave{
  position: absolute; left: 0; right: 0; bottom: -2px; z-index: 0;
  color: var(--bg); line-height: 0;
}
.hero__wave svg{ width: 100%; height: auto; display: block; }

.hero .container{
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero h1{
  font-size: clamp(34px, 5vw, 60px);
  color: #fff;
  letter-spacing: -0.02em;
}
.hero h1 em{ font-style: normal; }

.hero__lead{
  margin-top: 24px;
  font-size: 18px;
  color: rgba(255,255,255,.75);
  max-width: 560px;
}

.hero__cta{ display: flex; align-items: center; gap: 16px; margin-top: 38px; flex-wrap: wrap; }

/* Hero visual: route card */
.hero__visual{ position: relative; }
.route-card{
  position: relative;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 30px;
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-lg);
}
.route-card__title{ font-size: 13px; text-transform: uppercase; letter-spacing: .1em; color: rgba(255,255,255,.55); margin-bottom: 22px; font-weight: 600; }
.route-line{ position: relative; padding-left: 26px; }
.route-line::before{
  content:"";
  position: absolute; left: 5px; top: 8px; bottom: 8px; width: 2px;
  background: linear-gradient(180deg, var(--orange-500), var(--gold-400));
  border-radius: 2px;
}
.route-stop{ position: relative; padding-bottom: 26px; }
.route-stop:last-child{ padding-bottom: 0; }
.route-stop::before{
  content: "";
  position: absolute; left: -26px; top: 3px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--orange-500);
  border: 3px solid var(--navy-900);
  box-shadow: 0 0 0 2px rgba(245,130,31,.4);
}
.route-stop.is-end::before{ background: var(--gold-400); box-shadow: 0 0 0 2px rgba(253,184,19,.4); }
.route-stop strong{ display: block; color: #fff; font-size: 15.5px; font-weight: 600; }
.route-stop span{ display: block; font-size: 13px; color: rgba(255,255,255,.5); margin-top: 2px; }

.route-card__badge{
  position: absolute; top: -18px; right: -14px;
  background: var(--gradient-brand);
  color: #fff; font-weight: 700; font-size: 13px;
  padding: 12px 18px; border-radius: 14px;
  box-shadow: var(--shadow-orange);
  display: flex; flex-direction: column; align-items: center; text-align: center;
  line-height: 1.2;
  animation: float 4.5s ease-in-out infinite;
}
.route-card__badge small{ font-weight: 500; font-size: 10.5px; opacity: .9; text-transform: uppercase; letter-spacing: .05em; }
@keyframes float{ 0%,100%{ transform: translateY(0); } 50%{ transform: translateY(-10px); } }

.hero__scroll{
  position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,.5); font-size: 11px; letter-spacing: .1em; text-transform: uppercase;
  z-index: 2;
}
.hero__scroll-dot{
  width: 22px; height: 36px; border: 2px solid rgba(255,255,255,.35); border-radius: 20px;
  position: relative;
}
.hero__scroll-dot::before{
  content: ""; position: absolute; top: 6px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--orange-500); border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot{ 0%{ opacity: 1; transform: translate(-50%,0);} 70%{opacity:0; transform: translate(-50%,14px);} 100%{opacity:0;} }

/* =========================================================
   STATS
   ========================================================= */
.stats{
  margin-top: -1px;
  background: var(--bg);
  padding: 0;
}
.stats__grid{
  grid-template-columns: repeat(4, 1fr);
  margin-top: -76px;
  position: relative;
  z-index: 3;
}
.stat-card{
  background: #fff;
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
  text-align: left;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.stat-card:hover{ transform: translateY(-6px); box-shadow: 0 30px 60px rgba(19,31,61,.16); }
.stat-card__icon{
  width: 46px; height: 46px; border-radius: 12px;
  background: rgba(245,130,31,.1); color: var(--orange-500);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.stat-card__icon svg{ width: 24px; height: 24px; }
.stat-card strong{
  display: block; font-family: 'Poppins', sans-serif;
  font-size: 34px; color: var(--navy-900); font-weight: 800;
}
.stat-card span{ display: block; font-size: 13.5px; color: var(--ink-soft); margin-top: 6px; }

/* =========================================================
   ABOUT
   ========================================================= */
.about__grid{ grid-template-columns: .95fr 1.05fr; align-items: center; gap: 64px; }
.about__visual{ position: relative; }
.about__frame{
  border-radius: var(--radius-lg);
  background: var(--gradient-navy);
  aspect-ratio: 4/4.6;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__frame img{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.about__frame-overlay{
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(14,24,48,.05) 0%, rgba(14,24,48,.15) 55%, rgba(14,24,48,.85) 100%);
}
.about__frame-caption{
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  display: flex; align-items: center; gap: 10px;
  color: #fff; font-family: 'Poppins', sans-serif; font-weight: 700; font-size: 15px;
}
.about__frame-dot{ width: 9px; height: 9px; border-radius: 50%; background: var(--orange-500); flex-shrink: 0; }

.about__content p{ color: var(--ink-soft); font-size: 16.5px; }
.about__content p + p{ margin-top: 16px; }
.about__content .lead{ font-size: 19px; color: var(--ink); font-weight: 500; }
.about__content .lead strong{ color: var(--navy-900); }

.founder-strip{
  margin-top: 30px; padding: 20px 22px;
  background: var(--bg-alt);
  border-left: 4px solid var(--orange-500);
  border-radius: 12px;
  display: flex; gap: 16px; align-items: flex-start;
}
.founder-strip .avatar{
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--gradient-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-family: 'Poppins', sans-serif; flex-shrink: 0;
}
.founder-strip strong{ display: block; font-size: 14.5px; color: var(--navy-900); }
.founder-strip span{ font-size: 13px; color: var(--ink-soft); }

/* Infrastructure table */
.info-table{
  margin-top: 44px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.info-table__row{
  display: grid; grid-template-columns: 240px 1fr;
  border-top: 1px solid var(--line);
}
.info-table__row:first-child{ border-top: 0; }
.info-table__row:nth-child(odd){ background: var(--bg-alt); }
.info-table__label{
  padding: 18px 22px; font-weight: 600; color: var(--navy-900); font-size: 14.5px;
  display: flex; align-items: center; gap: 10px;
}
.info-table__label svg{ width: 17px; height: 17px; color: var(--orange-500); flex-shrink: 0; }
.info-table__value{ padding: 18px 22px; color: var(--ink-soft); font-size: 14.5px; display: flex; align-items: center; }

/* =========================================================
   ACTIVITIES (tabs)
   ========================================================= */
.tabs{ display: flex; flex-direction: column; }
.tabs__nav{
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 40px;
}
.tabs__btn{
  display: flex; align-items: center; gap: 10px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1.5px solid var(--line);
  font-weight: 600; font-size: 14.5px; color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.tabs__btn svg{ width: 18px; height: 18px; }
.tabs__btn:hover{ border-color: var(--orange-400); color: var(--navy-900); }
.tabs__btn.is-active{
  background: var(--gradient-navy); color: #fff; border-color: transparent;
  box-shadow: var(--shadow-md);
}
.tabs__panel{ display: none; }
.tabs__panel.is-active{ display: block; animation: fadeUp .5s var(--ease); }
@keyframes fadeUp{ from{ opacity: 0; transform: translateY(14px);} to{ opacity: 1; transform: translateY(0);} }

.activity-layout{
  display: grid; grid-template-columns: .8fr 1.2fr; gap: 44px; align-items: flex-start;
}
.activity-intro h3{ font-size: 26px; margin-bottom: 14px; }
.activity-intro p{ color: var(--ink-soft); font-size: 15.5px; }
.activity-intro .tag-row{ display: flex; flex-wrap: wrap; gap: 8px; margin-top: 22px; }
.tag{
  font-size: 12.5px; font-weight: 600; padding: 7px 14px;
  border-radius: var(--radius-pill); background: rgba(27,42,74,.06); color: var(--navy-800);
}

.feature-list{ display: grid; gap: 14px; }
.feature-item{
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.feature-item:hover{ transform: translateX(4px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-item__icon{
  width: 40px; height: 40px; border-radius: 10px; flex-shrink: 0;
  background: rgba(245,130,31,.1); color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
}
.feature-item__icon svg{ width: 20px; height: 20px; }
.feature-item h4{ font-size: 15.5px; color: var(--navy-900); margin-bottom: 4px; }
.feature-item p{ font-size: 14px; color: var(--ink-soft); }

/* =========================================================
   SOURCING NEEDS (data tables)
   ========================================================= */
.needs-switch{
  display: inline-flex; padding: 5px; background: var(--bg-alt); border-radius: var(--radius-pill);
  margin-bottom: 36px; border: 1px solid var(--line);
}
.needs-switch button{
  padding: 11px 22px; border-radius: var(--radius-pill); font-weight: 600; font-size: 14px; color: var(--ink-soft);
  transition: all .3s var(--ease);
}
.needs-switch button.is-active{ background: var(--navy-900); color: #fff; box-shadow: var(--shadow-sm); }

.needs-panel{ display: none; }
.needs-panel.is-active{ display: block; animation: fadeUp .5s var(--ease); }

.data-table-wrap{
  border-radius: var(--radius-md); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  overflow-x: auto;
}
.data-table{ min-width: 560px; }
.data-table thead th{
  text-align: left; background: var(--navy-900); color: #fff;
  padding: 16px 22px; font-size: 12.5px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600;
}
.data-table tbody td{ padding: 15px 22px; font-size: 14.5px; border-top: 1px solid var(--line); color: var(--ink-soft); }
.data-table tbody tr:nth-child(odd){ background: var(--bg-alt); }
.data-table tbody tr:hover{ background: rgba(245,130,31,.06); }
.data-table tbody td:first-child{ font-weight: 600; color: var(--navy-900); }

/* =========================================================
   OFFER CARDS
   ========================================================= */
.offer-grid{ grid-template-columns: repeat(4, 1fr); }
.offer-card{
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 32px 26px; position: relative; overflow: hidden;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.offer-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.offer-card::before{
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-brand);
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.offer-card:hover::before{ transform: scaleX(1); }
.offer-card__head{
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.offer-card__icon{
  width: 52px; height: 52px; border-radius: 14px; background: var(--gradient-navy);
  color: #fff; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.offer-card__icon svg{ width: 26px; height: 26px; }
.offer-card__num{
  width: 30px; height: 30px; border-radius: 50%; flex-shrink: 0;
  background: rgba(245,130,31,.1); color: var(--orange-600);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Poppins', sans-serif; font-size: 13px; font-weight: 800;
}
.offer-card h4{ font-size: 17px; margin-bottom: 10px; }
.offer-card p{ font-size: 14px; color: var(--ink-soft); }

/* =========================================================
   MAP / MARKETS
   ========================================================= */
.markets__intro{ max-width: 640px; margin-bottom: 40px; }
.markets__grid{ grid-template-columns: 1fr; gap: 32px; }
.markets__list{ display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
@media (max-width: 700px){ .markets__list{ grid-template-columns: 1fr; } }
.market-row{
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px; background: #fff; border: 1px solid var(--line); border-radius: 14px;
  transition: border-color .3s, transform .3s var(--ease);
}
.market-row:hover{ border-color: var(--orange-400); transform: translateX(4px); }
.market-row__left{ display: flex; align-items: center; gap: 14px; }
.market-row__flag{
  width: 38px; height: 38px; border-radius: 50%; background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center; font-size: 15px; font-weight: 700; color: var(--navy-800);
}
.market-row strong{ font-size: 15px; color: var(--navy-900); display: block; }
.market-row span{ font-size: 12.5px; color: var(--ink-faint); }
.market-row__badge{
  font-size: 11.5px; font-weight: 700; padding: 5px 12px; border-radius: var(--radius-pill);
  background: rgba(34,197,94,.12); color: #1a8b4c; text-transform: uppercase; letter-spacing: .04em;
}
.market-row__badge.is-hub{ background: rgba(245,130,31,.12); color: var(--orange-600); }

/* Real OpenStreetMap (Leaflet) embed */
.map-visual{
  position: relative; aspect-ratio: 16 / 9; width: 100%;
  background: var(--bg-alt); border-radius: var(--radius-md);
  border: 1px solid var(--line); overflow: hidden;
}
.map-visual__leaflet{ position: absolute; inset: 0; width: 100%; height: 100%; background: var(--bg-alt); }

.asme-marker{ display: flex; align-items: center; justify-content: center; }
.asme-marker__dot{
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--gold-400); border: 2px solid #fff; box-shadow: 0 1px 4px rgba(0,0,0,.4);
}
.asme-marker--origin .asme-marker__dot{ background: var(--orange-500); width: 13px; height: 13px; }
.asme-marker--hq .asme-marker__dot{ background: var(--navy-800); width: 16px; height: 16px; }
.asme-marker--hub .asme-marker__dot{ background: var(--orange-500); width: 14px; height: 14px; }
.asme-marker--hq{ position: relative; }
.asme-marker--hq::before{
  content: ""; position: absolute; left: 50%; top: 50%; width: 16px; height: 16px;
  transform: translate(-50%, -50%);
  border-radius: 50%; border: 2px solid var(--orange-500);
  animation: mapPulse 2.4s ease-out infinite;
}
@keyframes mapPulse{
  0%{ transform: translate(-50%,-50%) scale(1); opacity: .9; }
  100%{ transform: translate(-50%,-50%) scale(3); opacity: 0; }
}
@media (prefers-reduced-motion: reduce){ .asme-marker--hq::before{ display: none; } }

.leaflet-popup-content{ font-family: 'Inter', sans-serif; font-size: 13.5px; }
.leaflet-popup-content strong{ font-family: 'Poppins', sans-serif; color: var(--navy-900); }
.asme-route{ stroke-dasharray: 6 5; }

/* =========================================================
   WHY US
   ========================================================= */
.why-grid{ grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card{
  display: flex; gap: 18px; padding: 28px; background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-md);
  transition: background .3s, border-color .3s, transform .3s var(--ease);
}
.why-card:hover{ background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.22); transform: translateY(-4px); }
.why-card__icon{
  width: 48px; height: 48px; border-radius: 12px; flex-shrink: 0;
  background: var(--gradient-brand); color: #fff;
  display: flex; align-items: center; justify-content: center;
}
.why-card__icon svg{ width: 24px; height: 24px; }
.why-card h4{ color: #fff; font-size: 16.5px; margin-bottom: 8px; }
.why-card p{ font-size: 14px; color: rgba(255,255,255,.65); }

.legal-strip{
  margin-top: 40px; display: flex; flex-wrap: wrap; gap: 12px 28px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,.12);
}
.legal-strip div{ font-size: 13px; color: rgba(255,255,255,.55); }
.legal-strip strong{ color: #fff; font-weight: 600; }

/* =========================================================
   PARTNER CRITERIA
   ========================================================= */
.criteria-grid{ grid-template-columns: repeat(5, 1fr); gap: 18px; }
.criteria-card{
  padding: 26px 20px; background: #fff; border-radius: var(--radius-md); border: 1px solid var(--line);
  text-align: center; transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.criteria-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.criteria-card__icon{
  width: 50px; height: 50px; border-radius: 50%; margin: 0 auto 16px;
  background: rgba(27,42,74,.06); color: var(--navy-800);
  display: flex; align-items: center; justify-content: center;
}
.criteria-card__icon svg{ width: 24px; height: 24px; }
.criteria-card h4{ font-size: 14.5px; margin-bottom: 8px; }
.criteria-card p{ font-size: 12.5px; color: var(--ink-soft); }

/* =========================================================
   TESTIMONIAL / FOUNDER QUOTE
   ========================================================= */
.quote-section{ position: relative; }
.quote-card{
  max-width: 900px; margin-inline: auto; text-align: center; position: relative;
  padding: 60px 40px;
}
.quote-mark{
  font-family: 'Poppins', sans-serif; font-size: 90px; color: var(--orange-500); opacity: .25; line-height: 1;
  margin-bottom: -20px;
}
.quote-card blockquote{
  font-family: 'Poppins', sans-serif; font-size: clamp(20px, 2.6vw, 28px); color: var(--navy-900);
  font-weight: 500; line-height: 1.5;
}
.quote-author{ margin-top: 30px; display: flex; align-items: center; justify-content: center; gap: 14px; }
.quote-author .avatar{
  width: 52px; height: 52px; border-radius: 50%; background: var(--gradient-navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 700; font-family: 'Poppins', sans-serif;
}
.quote-author strong{ display: block; font-size: 15px; color: var(--navy-900); }
.quote-author span{ font-size: 13px; color: var(--ink-soft); }

/* =========================================================
   CONTACT
   ========================================================= */
.contact__grid{ grid-template-columns: .85fr 1.15fr; gap: 50px; align-items: stretch; }
.contact-info{
  background: var(--gradient-navy); border-radius: var(--radius-lg); padding: 44px 36px; color: #fff;
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.contact-info::after{
  content: ""; position: absolute; width: 260px; height: 260px; border-radius: 50%;
  background: radial-gradient(circle, rgba(245,130,31,.25), transparent 70%);
  right: -80px; bottom: -80px;
}
.contact-info h3{ color: #fff; font-size: 22px; margin-bottom: 10px; }
.contact-info > p{ color: rgba(255,255,255,.65); font-size: 14.5px; margin-bottom: 30px; }
.contact-list{ display: grid; gap: 20px; position: relative; z-index: 1; }
.contact-list li{ display: flex; gap: 16px; align-items: flex-start; }
.contact-list .icon-circle{
  width: 42px; height: 42px; border-radius: 12px; background: rgba(255,255,255,.08); flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; color: var(--gold-400);
}
.contact-list .icon-circle svg{ width: 20px; height: 20px; }
.contact-list strong{ display: block; font-size: 14px; color: #fff; }
.contact-list span, .contact-list a{ font-size: 13.5px; color: rgba(255,255,255,.65); }
.contact-list a:hover{ color: var(--gold-400); }

.social-row{ display: flex; gap: 10px; margin-top: auto; padding-top: 34px; position: relative; z-index: 1; }
.social-row a{
  width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,.08);
  display: flex; align-items: center; justify-content: center; transition: background .3s, transform .3s;
}
.social-row a:hover{ background: var(--gradient-brand); transform: translateY(-3px); }
.social-row svg{ width: 18px; height: 18px; color: #fff; }

.contact-form{
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 44px 40px;
  box-shadow: var(--shadow-md);
}
.form-row{ display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field{ margin-bottom: 20px; }
.field label{ display: block; font-size: 13px; font-weight: 600; color: var(--navy-900); margin-bottom: 8px; }
.field input, .field select, .field textarea{
  width: 100%; padding: 14px 16px; border-radius: 10px; border: 1.5px solid var(--line);
  background: var(--bg-alt); font-size: 14.5px; transition: border-color .3s, background .3s;
}
.field input:focus, .field select:focus, .field textarea:focus{
  outline: none; border-color: var(--orange-500); background: #fff;
}
.field textarea{ resize: vertical; min-height: 120px; }
.form-msg{ margin-top: 16px; font-size: 13.5px; font-weight: 600; display: none; }
.form-msg.is-visible{ display: block; }
.form-msg.is-success{ color: #1a8b4c; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--navy-950); color: rgba(255,255,255,.6); padding: 64px 0 28px; }
.footer__top{ display: grid; grid-template-columns: 1.3fr repeat(3, 1fr); gap: 40px; padding-bottom: 44px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer__brand .brand__name{ color: #fff; }
.footer__about{ margin-top: 18px; font-size: 14px; max-width: 320px; color: rgba(255,255,255,.5); }
.footer__col h5{ color: #fff; font-size: 14px; margin-bottom: 20px; letter-spacing: .04em; text-transform: uppercase; }
.footer__col ul{ display: grid; gap: 12px; }
.footer__col a{ font-size: 14px; color: rgba(255,255,255,.55); transition: color .3s; }
.footer__col a:hover{ color: var(--orange-400); }
.footer__bottom{
  display: flex; justify-content: space-between; align-items: center; padding-top: 28px; flex-wrap: wrap; gap: 12px;
  font-size: 13px; color: rgba(255,255,255,.4);
}
.footer__bottom a{ color: rgba(255,255,255,.4); }
.footer__bottom a:hover{ color: #fff; }

/* =========================================================
   WHATSAPP FAB + BACK TO TOP
   ========================================================= */
.fab-stack{ position: fixed; right: 24px; bottom: 24px; display: flex; flex-direction: column; gap: 12px; z-index: 900; }
.fab{
  width: 54px; height: 54px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg); transition: transform .3s var(--ease), opacity .3s;
}
.fab svg{ width: 26px; height: 26px; }
.fab--whatsapp{ background: #25D366; color: #fff; animation: pulse 2.4s ease-in-out infinite; }
.fab--top{
  background: #fff; color: var(--navy-900); border: 1px solid var(--line);
  opacity: 0; pointer-events: none; transform: translateY(10px);
}
.fab--top.is-visible{ opacity: 1; pointer-events: auto; transform: translateY(0); }
.fab:hover{ transform: translateY(-4px) scale(1.05); }
@keyframes pulse{ 0%,100%{ box-shadow: 0 0 0 0 rgba(37,211,102,.5), var(--shadow-lg);} 50%{ box-shadow: 0 0 0 10px rgba(37,211,102,0), var(--shadow-lg);} }

/* =========================================================
   REVEAL ANIMATIONS
   ========================================================= */
[data-reveal]{ opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].is-visible{ opacity: 1; transform: translateY(0); }
[data-reveal="fade-left"]{ transform: translateX(-32px); }
[data-reveal="fade-left"].is-visible{ transform: translateX(0); }
[data-reveal="fade-right"]{ transform: translateX(32px); }
[data-reveal="fade-right"].is-visible{ transform: translateX(0); }
[data-reveal-group] > *{ opacity: 0; transform: translateY(24px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
[data-reveal-group].is-visible > *{ opacity: 1; transform: translateY(0); }
[data-reveal-group].is-visible > *:nth-child(1){ transition-delay: .05s; }
[data-reveal-group].is-visible > *:nth-child(2){ transition-delay: .12s; }
[data-reveal-group].is-visible > *:nth-child(3){ transition-delay: .19s; }
[data-reveal-group].is-visible > *:nth-child(4){ transition-delay: .26s; }
[data-reveal-group].is-visible > *:nth-child(5){ transition-delay: .33s; }

/* =========================================================
   REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  [data-reveal], [data-reveal-group] > *{ opacity: 1; transform: none; }
  .map-pin__pulse{ display: none; }
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1080px){
  .stats__grid{ grid-template-columns: repeat(2, 1fr); }
  .offer-grid{ grid-template-columns: repeat(2, 1fr); }
  .criteria-grid{ grid-template-columns: repeat(3, 1fr); }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .activity-layout{ grid-template-columns: 1fr; }
  .about__grid, .markets__grid, .contact__grid{ grid-template-columns: 1fr; }
  .about__visual{ order: 2; max-width: 420px; margin-inline: auto; }
}

@media (max-width: 860px){
  .nav{ display: none; }
  .nav-toggle{ display: flex; }
  .hero .container{ grid-template-columns: 1fr; }
  .hero__visual{ order: -1; max-width: 420px; margin-inline: auto; }
  .why-grid{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer__top{ grid-template-columns: 1fr 1fr; }
  .criteria-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px){
  .section{ padding: 76px 0; }
  .stats__grid{ grid-template-columns: 1fr; margin-top: -50px; }
  .offer-grid{ grid-template-columns: 1fr; }
  .criteria-grid{ grid-template-columns: 1fr; }
  .info-table__row{ grid-template-columns: 1fr; }
  .info-table__label{ padding-bottom: 6px; }
  .footer__top{ grid-template-columns: 1fr; }
  .hero__cta{ flex-direction: column; align-items: stretch; }
  .hero__cta .btn{ width: 100%; }
  .tabs__nav{ overflow-x: auto; flex-wrap: nowrap; padding-bottom: 6px; }
}

/* Mobile nav drawer */
@media (max-width: 860px){
  .nav.is-open{
    display: flex; flex-direction: column;
    position: fixed; top: var(--nav-h); left: 0; right: 0; bottom: 0;
    background: var(--navy-950); padding: 28px 24px; gap: 4px; overflow-y: auto;
    z-index: 999;
  }
  .nav.is-open .nav__link{ font-size: 17px; padding: 16px 12px; border-bottom: 1px solid rgba(255,255,255,.06); border-radius: 0; }
  .nav.is-open .btn{ display: inline-flex; margin-top: 20px; }
}
