/* ════════════════════════════════════════════════════════════
   NONPIC Limited — Design System
   Tailwind-compatible custom layer
   Organised: Base → Tokens → Components → Animations → Responsive
════════════════════════════════════════════════════════════ */

/* ── Fonts ─────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Manrope:wght@500;600;700;800&display=swap');

/* ── Base reset ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { overflow-x: hidden; }
img  { max-width: 100%; display: block; }
a    { text-decoration: none; color: inherit; }

/* ── Token aliases ──────────────────────────────────────── */
:root {
  --navy:      #0d2f57;
  --navy-deep: #071b34;
  --gold:      #c89643;
  --gold-lt:   #d7ad69;
  --muted:     #667085;
  --soft:      #f5f7fa;
  --shadow-card: 0 24px 70px rgba(9,35,66,0.12);
}

/* ════════════════════════════════════════════════════════════
   SHARED UTILITIES
════════════════════════════════════════════════════════════ */

/* Gold gradient text */
.gold-text {
  background: linear-gradient(135deg, #c89643 0%, #e8b86d 45%, #b87c28 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section headings */
.sect-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: var(--navy-deep);
  line-height: 1.13;
  letter-spacing: -0.035em;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
}

/* Section labels (eyebrow) */
.sect-label,
.sect-label-light,
.sect-label-centered {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.sect-label        { color: var(--navy); }
.sect-label-light  { color: rgba(215,173,105,0.88); }
.sect-label-centered { justify-content: center; }

/* Label dashes */
.lbl-dash {
  display: inline-block;
  width: 20px; height: 2px;
  background: var(--gold);
  border-radius: 100px;
  flex-shrink: 0;
}
.lbl-dash-gold {
  display: inline-block;
  width: 14px; height: 2px;
  background: rgba(200,150,67,0.65);
  border-radius: 100px;
  flex-shrink: 0;
}

/* Gold rule */
.gold-rule {
  width: 48px; height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8b86d);
  border-radius: 100px;
}

/* Absolute background helpers */
.abs-bg { position: absolute; inset: 0; pointer-events: none; }
.dark-noise {
  background:
    radial-gradient(circle at 80% 15%, rgba(200,150,67,0.06) 0%, transparent 50%),
    radial-gradient(circle at 10% 85%, rgba(7,27,52,0.6) 0%, transparent 50%);
}
.abs-orb {
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
}
.orb-tr {
  width: 560px; height: 560px;
  top: 0; right: 0;
  background: radial-gradient(circle, rgba(200,150,67,0.04) 0%, transparent 70%);
  transform: translate(35%, -45%);
}
.orb-bl {
  width: 420px; height: 420px;
  bottom: 0; left: 0;
  background: radial-gradient(circle, rgba(13,47,87,0.25) 0%, transparent 70%);
  transform: translate(-35%, 45%);
}

/* ════════════════════════════════════════════════════════════
   HEADER
════════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: rgba(255,255,255,0);
  backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: background .4s ease, backdrop-filter .4s ease,
              border-color .4s ease, box-shadow .4s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,0.93);
  backdrop-filter: blur(22px);
  border-bottom-color: rgba(13,47,87,0.07);
  box-shadow: 0 4px 28px rgba(9,35,66,0.07);
}
.inner-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Nav links */
.nav-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: #52667a;
  position: relative;
  padding-bottom: 2px;
  transition: color .2s;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  border-radius: 100px;
  transition: width .3s cubic-bezier(.16,1,.3,1);
}
.nav-link:hover             { color: var(--navy); }
.nav-link:hover::after,
.nav-link.active::after     { width: 100%; }
.nav-link.active            { color: var(--navy); }

.nav-cta-pill {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--navy);
  padding: 9px 20px;
  border: 1.5px solid rgba(13,47,87,0.22);
  border-radius: 100px;
  transition: all .25s ease;
}
.nav-cta-pill:hover {
  background: var(--navy);
  color: white;
  border-color: var(--navy);
}

/* Hamburger */
.hamburger-btn {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.ham-bar {
  display: block;
  width: 22px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all .3s ease;
}
#menu-btn.open .ham-bar:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
#menu-btn.open .ham-bar:nth-child(2) { opacity: 0; transform: scaleX(0); }
#menu-btn.open .ham-bar:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: absolute;
  top: 100%;
  left: 16px; right: 16px;
  background: white;
  border: 1px solid rgba(13,47,87,0.07);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
  z-index: 40;
}
.mobile-drawer.open { display: block; }
.mob-link {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #526071;
  border-radius: 10px;
  transition: background .2s, color .2s;
}
.mob-link:hover { background: var(--soft); color: var(--navy); }
.mob-link-cta {
  display: block;
  padding: 12px 16px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
  background: var(--soft);
  border-radius: 10px;
  text-align: center;
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════════ */
.hero-section { padding-top: 0; }

/* Decorative shapes */
.dot-grid {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(13,47,87,0.10) 1px, transparent 1px);
  background-size: 28px 28px;
  opacity: 0.45;
  pointer-events: none;
}
.shape-one {
  position: absolute;
  width: 500px; height: 500px;
  right: -110px; bottom: -250px;
  border: 2px solid rgba(13,47,87,0.055);
  border-radius: 3.5rem;
}
.shape-two {
  position: absolute;
  width: 210px; height: 210px;
  right: 270px; top: -105px;
  border: 1px solid rgba(200,150,67,0.17);
  border-radius: 1.75rem;
}
.shape-three {
  position: absolute;
  width: 380px; height: 380px;
  left: -130px; top: 55%;
  border-radius: 50%;
  background: rgba(200,150,67,0.045);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--navy);
  color: white;
  box-shadow: 0 12px 28px rgba(13,47,87,0.22), 0 4px 8px rgba(13,47,87,0.12);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.btn-primary:hover {
  background: var(--navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(13,47,87,0.28);
}
.btn-primary:active { transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 26px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--navy);
  border: 1.5px solid rgba(13,47,87,0.2);
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(8px);
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.btn-secondary:hover {
  border-color: var(--navy);
  background: rgba(13,47,87,0.04);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(13,47,87,0.09);
}

/* Stat strip */
.stat-strip { position: relative; }
.stat-rule {
  height: 1px;
  margin-bottom: 28px;
  background: linear-gradient(90deg, transparent, rgba(13,47,87,0.13) 20%, rgba(13,47,87,0.13) 80%, transparent);
}
.stat-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
}
.stat-block {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 24px;
}
.stat-block:first-child { padding-left: 0; }
.stat-num {
  font-family: 'Manrope', sans-serif;
  font-size: 2.1rem;
  font-weight: 800;
  color: var(--navy-deep);
  line-height: 1;
  letter-spacing: -0.045em;
}
.stat-text-gold {
  font-size: 1.15rem;
  letter-spacing: 0.06em;
  color: var(--gold);
}
.stat-lbl {
  font-size: 0.73rem;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
}
.stat-divider {
  width: 1px;
  height: 44px;
  background: rgba(13,47,87,0.09);
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.5;
}
.scroll-cue-label {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}
.scroll-track {
  width: 1px; height: 38px;
  background: rgba(13,47,87,0.15);
  position: relative;
  overflow: hidden;
}
.scroll-dot-inner {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 50%;
  background: var(--gold);
  animation: scrollDot 1.7s ease-in-out infinite;
}
@keyframes scrollDot {
  0%   { transform: translateY(-100%); opacity: 0; }
  20%  { opacity: 1; }
  80%  { opacity: 1; }
  100% { transform: translateY(200%); opacity: 0; }
}

/* ════════════════════════════════════════════════════════════
   ABOUT — value cards
════════════════════════════════════════════════════════════ */
.val-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(13,47,87,0.07);
  background: rgba(245,247,250,0.55);
  transition: border-color .3s, box-shadow .3s, transform .3s;
}
.val-card:hover {
  border-color: rgba(13,47,87,0.14);
  box-shadow: 0 8px 30px rgba(13,47,87,0.06);
  transform: translateY(-2px);
}
.val-icon {
  width: 40px; height: 40px;
  border-radius: 11px;
  background: rgba(13,47,87,0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .3s, color .3s;
}
.val-card:hover .val-icon {
  background: var(--navy);
  color: var(--gold);
}

/* ════════════════════════════════════════════════════════════
   HOW WE WORK — process steps
════════════════════════════════════════════════════════════ */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
}
/* Animated connector line */
.process-steps::before {
  content: '';
  position: absolute;
  top: 44px;                      /* vertically centred on icon */
  left: calc(12.5% + 4px);
  right: calc(12.5% + 4px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(200,150,67,0.08) 0%,
    rgba(200,150,67,0.5) 30%,
    rgba(200,150,67,0.5) 70%,
    rgba(200,150,67,0.08) 100%
  );
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1.3s cubic-bezier(.16,1,.3,1) .5s;
  pointer-events: none;
  z-index: 0;
}
.process-steps.drawn::before { transform: scaleX(1); }

.process-step { position: relative; z-index: 1; }
.step-inner {
  padding: 28px 22px 32px;
  border-radius: 18px;
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.07);
  height: 100%;
  transition: background .3s, border-color .3s, transform .3s;
}
.process-step:hover .step-inner {
  background: rgba(255,255,255,0.075);
  border-color: rgba(200,150,67,0.18);
  transform: translateY(-5px);
}
.step-icon-box {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(200,150,67,0.85);
  margin-bottom: 20px;
  transition: background .3s, border-color .3s;
}
.process-step:hover .step-icon-box {
  background: rgba(200,150,67,0.12);
  border-color: rgba(200,150,67,0.28);
}
.step-badge {
  font-size: 0.65rem;
  font-weight: 800;
  color: rgba(200,150,67,0.45);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.step-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 10px;
}
.step-desc {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════
   CAPABILITIES — cards
════════════════════════════════════════════════════════════ */
.cap-card {
  background: white;
  padding: 30px 26px;
  border-radius: 18px;
  border: 1px solid rgba(13,47,87,0.07);
  position: relative;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  cursor: default;
}
.cap-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 60px rgba(13,47,87,0.12);
  border-color: rgba(200,150,67,0.22);
}

.cap-icon-box {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(13,47,87,0.06);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  transition: background .3s, color .3s;
}
.cap-card:hover .cap-icon-box {
  background: var(--navy);
  color: var(--gold);
}

.cap-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: 0.08em;
}
.cap-title {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin: 14px 0 10px;
}
.cap-desc {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 14px;
}
.cap-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.cap-bullets li {
  font-size: 0.78rem;
  color: #7a8fa5;
  padding-left: 14px;
  position: relative;
  line-height: 1.5;
}
.cap-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.65;
}

/* Hover accent line */
.cap-line {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), #e8b86d);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .4s ease;
  border-radius: 0 0 18px 18px;
}
.cap-card:hover .cap-line { transform: scaleX(1); }

/* ════════════════════════════════════════════════════════════
   GLOBAL PRESENCE — market cards
════════════════════════════════════════════════════════════ */
.mkt-card {
  background: white;
  border: 1px solid rgba(13,47,87,0.08);
  border-radius: 20px;
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
  cursor: default;
}
.mkt-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 22px 60px rgba(13,47,87,0.10);
  border-color: rgba(200,150,67,0.22);
}
.mkt-card-featured {
  border-color: rgba(200,150,67,0.18);
  background: linear-gradient(160deg, #fff 55%, rgba(200,150,67,0.025) 100%);
}
.mkt-flag {
  font-size: 2.6rem;
  line-height: 1;
  margin-bottom: 16px;
}
.mkt-country {
  font-family: 'Manrope', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--navy-deep);
  margin-bottom: 3px;
}
.mkt-city {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 14px;
}
.mkt-role-tag {
  display: inline-block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(200,150,67,0.08);
  border: 1px solid rgba(200,150,67,0.2);
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.mkt-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.mkt-bullets li {
  font-size: 0.855rem;
  color: #526071;
  padding-left: 16px;
  position: relative;
  line-height: 1.5;
}
.mkt-bullets li::before {
  content: '';
  position: absolute;
  left: 0; top: 8px;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.55;
}

/* ════════════════════════════════════════════════════════════
   PARTNERSHIP
════════════════════════════════════════════════════════════ */
.pship-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  align-items: start;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: padding-left .3s;
}
.pship-item:hover { padding-left: 5px; }
.pship-num {
  font-size: 0.68rem;
  font-weight: 800;
  color: rgba(200,150,67,0.5);
  letter-spacing: 0.1em;
  padding-top: 2px;
}
.pship-title {
  display: block;
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 5px;
}
.pship-desc {
  font-size: 0.845rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════ */
.ql-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color .2s;
}
.ql-link:hover { color: var(--navy-deep); }

.contact-card {
  background: white;
  border: 1px solid rgba(13,47,87,0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cc-header {
  padding: 24px 28px 18px;
  border-bottom: 1px solid rgba(13,47,87,0.06);
}
.cc-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px 28px;
  border-bottom: 1px solid rgba(13,47,87,0.055);
  transition: background .2s;
}
.cc-row:hover { background: rgba(245,247,250,0.65); }
.cc-badge {
  width: 36px; height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}
.cc-bd { background: rgba(0,106,78,0.09);  color: #006a4e; }
.cc-cn { background: rgba(222,41,16,0.09); color: #c42b10; }
.cc-ae { background: rgba(0,115,185,0.09); color: #0073b9; }
.cc-label {
  display: block;
  font-size: 0.77rem;
  color: var(--muted);
  margin-bottom: 3px;
}
.cc-val {
  font-size: 0.875rem;
  color: var(--navy-deep);
  font-weight: 600;
}
.cc-footer {
  display: flex;
  border-top: 1px solid rgba(13,47,87,0.06);
}
.cc-flink {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 14px 16px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--navy);
  border-right: 1px solid rgba(13,47,87,0.06);
  transition: background .2s, color .2s;
}
.cc-flink:hover { background: rgba(13,47,87,0.03); color: var(--gold); }
.cc-flink:last-child { border-right: none; }

/* ════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════ */
.footer-logo {
  filter: invert(1) brightness(.85);
  mix-blend-mode: screen;
  opacity: .85;
}
.footer-section-title {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.footer-link {
  font-size: 0.855rem;
  color: rgba(255,255,255,0.38);
  transition: color .2s;
}
.footer-link:hover { color: rgba(255,255,255,0.75); }

/* ════════════════════════════════════════════════════════════
   SCROLL REVEAL ANIMATIONS
════════════════════════════════════════════════════════════ */
.reveal-up,
.reveal-left,
.reveal-right,
.reveal-fade,
.reveal-up-child {
  opacity: 0;
  transition:
    opacity .85s cubic-bezier(.16,1,.3,1),
    transform .85s cubic-bezier(.16,1,.3,1);
}
.reveal-up      { transform: translateY(44px); }
.reveal-left    { transform: translateX(-44px); }
.reveal-right   { transform: translateX(44px); }
.reveal-fade    { transform: none; }
.reveal-up-child{ transform: translateY(32px); }

.reveal-up.in-view,
.reveal-left.in-view,
.reveal-right.in-view,
.reveal-fade.in-view,
.reveal-up-child.in-view {
  opacity: 1;
  transform: none;
}

/* Stagger via data-delay */
[data-delay="0"]   { transition-delay: 0s; }
[data-delay="100"] { transition-delay: .1s; }
[data-delay="150"] { transition-delay: .15s; }
[data-delay="200"] { transition-delay: .2s; }
[data-delay="300"] { transition-delay: .3s; }
[data-delay="450"] { transition-delay: .45s; }

/* ════════════════════════════════════════════════════════════
   COUNTER ANIMATION
════════════════════════════════════════════════════════════ */
@keyframes countUp {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.stat-num.counting { animation: countUp .4s ease forwards; }

/* ════════════════════════════════════════════════════════════
   REDUCED MOTION
════════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce) {
  .reveal-up, .reveal-left, .reveal-right, .reveal-fade, .reveal-up-child {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .animate-float, .animate-float-slow, .animate-pulse-glow { animation: none !important; }
  .process-steps::before { transition: none !important; }
}

/* ════════════════════════════════════════════════════════════
   RESPONSIVE  — Mobile · Tablet Portrait · Tablet Landscape
   Desktop (≥1024px) is untouched.
════════════════════════════════════════════════════════════ */

/* ── Tablet portrait (640–1023px)  ─────────────────────── */
@media (min-width: 640px) and (max-width: 1023px) {

  /* Process 2-col on tablet portrait */
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
  .process-steps::before { display: none; }

  /* Step cards a bit more compact */
  .step-inner { padding: 24px 20px 28px; }

  /* Capability cards — tighten inner padding */
  .cap-card { padding: 24px 20px; }

  /* Market cards — ensure full-width role-tag doesn't overflow */
  .mkt-role-tag { font-size: 0.6rem; }

  /* Partnership layout: let text breathe on tablet */
  .pship-item { padding: 18px 0; }

  /* Contact card rows  */
  .cc-row { padding: 16px 22px; }

  /* Footer: full-width brand col on tablet */
  .footer-logo { height: 36px; }
}

/* ── Tablet landscape (768–1023px, landscape) ─────────── */
@media (min-width: 768px) and (max-width: 1023px) and (orientation: landscape) {

  /* Process back to 4-col in landscape tablet (enough space) */
  .process-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }
  .process-steps::before { display: block; }
  .step-inner { padding: 20px 16px 24px; }
  .step-title { font-size: 1rem; }
  .step-desc  { font-size: 0.8rem; }

  /* Capabilities 4-col in landscape tablet */
  /* (already handled by Tailwind lg:grid-cols-4; but we can't use Tailwind here) */
  /* Let it stay 2-col via sm:grid-cols-2 — that's fine */

  /* Sections: a bit less vertical padding in landscape */
  section { padding-top: 60px !important; padding-bottom: 60px !important; }
}

/* ── Mobile portrait (≤639px) ────────────────────────── */
@media (max-width: 639px) {

  /* Header: no scrolled blur flash on mobile tap */
  .site-header { border-bottom-color: transparent; }

  /* Hero: reduce body text size slightly */
  .hero-section p.text-\[1\.1rem\] { font-size: 0.95rem; }

  /* Eyebrow label — allow wrapping, reduce tracking */
  .sect-label,
  .sect-label-light,
  .sect-label-centered {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    flex-wrap: wrap;
  }

  /* Section heading: tighten tracking on small screens */
  .sect-heading { letter-spacing: -0.02em; }

  /* Stat strip: 2×2 grid, hide vertical dividers */
  .stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 16px 8px;
  }
  .stat-divider { display: none; }
  .stat-block   { padding: 0; }
  .stat-num     { font-size: 1.7rem; }
  .stat-lbl     { font-size: 0.68rem; }
  .stat-text-gold { font-size: 0.95rem; }

  /* Stat rule: shorter */
  .stat-rule { margin-bottom: 18px; }

  /* Scroll cue: hide on very narrow to save vertical space */
  .scroll-cue { display: none; }

  /* Process steps: single column on phones */
  .process-steps {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .process-steps::before { display: none; }
  .step-inner { padding: 22px 18px 26px; }

  /* Capability cards: full width, less padding */
  .cap-card { padding: 22px 18px; }
  .cap-icon-box { margin-bottom: 18px; }

  /* Market cards: full width (already via Tailwind grid-cols-1) */
  .mkt-card { padding: 24px 20px; }
  .mkt-flag { font-size: 2rem; }

  /* Partnership items: tighter */
  .pship-item { padding: 16px 0; }
  .pship-desc { font-size: 0.82rem; }

  /* Contact quick links */
  .ql-link { font-size: 0.85rem; }

  /* Contact card */
  .cc-row   { padding: 14px 20px; flex-direction: column; gap: 8px; }
  .cc-footer { flex-direction: column; }
  .cc-flink  {
    border-right: none;
    border-bottom: 1px solid rgba(13,47,87,0.06);
    font-size: 0.78rem;
  }
  .cc-flink:last-child { border-bottom: none; }

  /* Buttons: full width on very small screens */
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }

  /* Footer: full-span brand col */
  .footer-logo { height: 32px; }

  /* Value cards: reduce padding */
  .val-card { padding: 14px 16px; }
}

/* ── Mobile landscape (≤767px, landscape) ────────────── */
@media (max-width: 767px) and (orientation: landscape) {

  /* Hero: much less top/bottom so content stays visible */
  .hero-section { min-height: auto; padding-top: 80px; padding-bottom: 40px; }

  /* Hero content wrapper: reduce gaps */
  /* (pt-24 is handled via Tailwind; we adjust here for landscape specifically) */
  .hero-section .max-w-\[1200px\] {
    padding-top: 80px !important;
    padding-bottom: 24px !important;
  }

  /* Reduce hero mb-12 on CTA row */
  .hero-section .flex.flex-wrap.gap-3 {
    margin-bottom: 20px;
  }

  /* Stat strip: single row 4-col in landscape */
  .stat-row {
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
    gap: 0;
  }
  .stat-divider { display: block; }
  .stat-block   { padding: 0 12px; }
  .stat-num     { font-size: 1.3rem; }
  .stat-lbl     { font-size: 0.62rem; }
  .stat-text-gold { font-size: 0.85rem; }

  /* Scroll cue: hide in landscape (rarely helpful) */
  .scroll-cue { display: none; }

  /* Process: 2-col in mobile landscape */
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .step-inner { padding: 18px 14px 22px; }

  /* Sections: reduce vertical padding drastically for short viewport */
  section {
    padding-top: 48px !important;
    padding-bottom: 48px !important;
  }

  /* Buttons: auto width in landscape — rows have space */
  .btn-primary, .btn-secondary { width: auto; }
}

/* ── Very small phones (≤374px) ─────────────────────── */
@media (max-width: 374px) {

  /* Hero h1 floor is 2.2rem — push slightly smaller */
  .hero-section h1 { font-size: 1.9rem !important; }

  /* Eyebrow: hide the middot separators, they wrap weirdly */
  .hero-section .sect-label { font-size: 0.58rem; }

  /* Stat numbers */
  .stat-num     { font-size: 1.5rem; }
  .stat-text-gold { font-size: 0.85rem; }

  /* Process: single col */
  .process-steps { grid-template-columns: 1fr; }

  /* Market: already single col */
  .mkt-role-tag { white-space: normal; }

  /* Buttons: full width */
  .btn-primary, .btn-secondary { width: 100%; min-height: 48px; }
}
