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

/* ========================================
   M.Y MOVEMENT — MILLENNIUM YOUTH MOVEMENT
   Main Stylesheet
   ======================================== */

:root {
  --blue:        #00AEEF;
  --blue-dark:   #0090C8;
  --blue-dim:    rgba(0, 174, 239, 0.12);
  --red:         #E84E1B;
  --red-dark:    #C73C10;
  --black:       #0A0A0A;
  --dark:        #111111;
  --card-bg:     #161616;
  --white:       #FFFFFF;
  --gray-700:    #374151;
  --gray-500:    #6B7280;
  --gray-300:    #D1D5DB;
  --gray-100:    #F3F4F6;
  --border-dark: rgba(255, 255, 255, 0.07);
  --border-mid:  rgba(255, 255, 255, 0.12);
  --border-light: rgba(0, 0, 0, 0.1);
  --nav-height:  72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Inter', sans-serif;
  background: #fff;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }


/* ── LAYOUT ─────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.section       { padding: 100px 0; }
.section-sm    { padding: 64px 0; }
.section-xs    { padding: 40px 0; }
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,174,239,0.2), transparent);
}


/* ── TYPOGRAPHY HELPERS ─────────────────── */
.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 18px;
}
.eyebrow.red { color: var(--red); }
.eyebrow.dim { color: rgba(255,255,255,0.62); }

h1.display, h2.display, h3.display {
  font-family: 'Montserrat', sans-serif;
  font-weight: 900;
  letter-spacing: -1.5px;
  line-height: 0.96;
}
h1.display { font-size: clamp(54px, 7vw, 92px); }
h2.display { font-size: clamp(38px, 4.5vw, 58px); }
h3.display { font-size: clamp(28px, 3vw, 40px); }

.display em  { font-style: normal; color: var(--blue); }
.display .accent-red { color: var(--red); }
.display.light { color: #fff; }
.display.dark  { color: var(--black); }

.lead {
  font-size: 17px;
  color: var(--gray-500);
  line-height: 1.78;
  font-weight: 400;
  max-width: 560px;
}
.lead.light { color: rgba(255,255,255,0.82); }


/* ── BUTTONS ────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 4px 16px rgba(0,174,239,0.25);
}
.btn-primary:hover { background: var(--blue-dark); box-shadow: 0 6px 22px rgba(0,174,239,0.38); transform: translateY(-1px); }

.btn-danger {
  background: var(--red);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,78,27,0.25);
}
.btn-danger:hover { background: var(--red-dark); box-shadow: 0 6px 22px rgba(232,78,27,0.38); transform: translateY(-1px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.25);
}
.btn-outline:hover { border-color: rgba(255,255,255,0.6); transform: translateY(-1px); }

.btn-dark {
  background: var(--black);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,0,0,0.35);
}
.btn-dark:hover { background: #222; transform: translateY(-1px); }

.btn-white {
  background: #fff;
  color: var(--black);
  box-shadow: 0 4px 14px rgba(0,0,0,0.12);
}
.btn-white:hover { background: #f0f0f0; transform: translateY(-1px); }

.btn .arrow { font-size: 16px; font-weight: 400; }


/* ── NAVIGATION ─────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 900;
  background: var(--black);
  border-bottom: 1px solid var(--border-dark);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 42px;
  display: block;
}
/* fallback text logo */
.nav-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.5px;
}
.nav-logo-text span { color: var(--blue); }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-menu a {
  color: rgba(255,255,255,0.55);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-menu a:hover,
.nav-menu a.active { color: #fff; }

.nav-menu .nav-cta {
  background: var(--blue);
  color: #fff;
  padding: 10px 22px;
  border-radius: 50px;
  letter-spacing: 1px;
  box-shadow: 0 3px 12px rgba(0,174,239,0.28);
}
.nav-menu .nav-cta:hover { background: var(--blue-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ── HOME HERO ──────────────────────────── */
.hero {
  min-height: 91vh;
  background: var(--black);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-bg-art {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-bg-art svg {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 680px;
  height: 680px;
  opacity: 0.055;
}
.hero-bg-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(0,174,239,0.06) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 0% 100%, rgba(232,78,27,0.04) 0%, transparent 60%);
}
.hero .container {
  position: relative;
  z-index: 2;
  padding-top: 80px;
  padding-bottom: 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 72px;
  align-items: center;
}
.hero-content .eyebrow { margin-bottom: 24px; }
.hero-title {
  margin-bottom: 28px;
  color: #fff;
}
.hero-body {
  font-size: 17px;
  color: rgba(255,255,255,0.82);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 44px;
  max-width: 480px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.hero-link {
  color: rgba(255,255,255,0.75);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.hero-link:hover { color: #fff; }

/* Trust badges column */
.trust-stack { display: flex; flex-direction: column; gap: 14px; }
.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border-dark);
  border-radius: 14px;
  transition: border-color 0.25s, transform 0.22s, box-shadow 0.22s;
}
.trust-card:hover { border-color: rgba(0,174,239,0.22); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }
.trust-icon {
  width: 40px;
  height: 40px;
  background: var(--blue-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.trust-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
}
.trust-body { flex: 1; }
.trust-body strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 3px;
}
.trust-body span {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}
.trust-pill {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--blue);
  border: 1px solid rgba(0,174,239,0.28);
  padding: 4px 12px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}


/* ── TICKER / CLIENTS BAR ───────────────── */
.ticker-wrap {
  background: #131313;
  border-top: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  padding: 18px 0;
  overflow: hidden;
}
.ticker-inner {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 48px;
}
.ticker-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
  flex-shrink: 0;
  margin-right: 40px;
  padding-right: 40px;
  border-right: 1px solid var(--border-dark);
}
.ticker-track {
  display: flex;
  gap: 48px;
  align-items: center;
  animation: scroll-ticker 22s linear infinite;
  white-space: nowrap;
}
.ticker-item {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 600;
}
.ticker-dot { color: rgba(0,174,239,0.35); font-size: 10px; }
@keyframes scroll-ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}


/* ── SUPPLY CATEGORIES ──────────────────── */
.supply-section { background: var(--black); }
.supply-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 56px;
}
.supply-intro .lead { margin-top: 0; }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--border-dark);
  border-bottom: none;
}
.cat-card {
  padding: 36px 28px;
  border-right: 1px solid var(--border-dark);
  border-bottom: 1px solid var(--border-dark);
  position: relative;
  cursor: default;
  transition: background 0.2s;
}
.cat-card:nth-child(4n)   { border-right: none; }
.cat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}
.cat-card:hover { background: #161616; }
.cat-card:hover::before { transform: scaleX(1); }

.cat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -2px;
  transition: color 0.2s;
}
.cat-card:hover .cat-num { color: rgba(0,174,239,0.07); }
.cat-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  line-height: 1.45;
  letter-spacing: 0.2px;
}
.cat-desc {
  font-size: 12px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
}


/* ── PROCESS STEPS ──────────────────────── */
.process-section { background: #0D0D0D; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 64px;
  border: 1px solid var(--border-dark);
}
.step {
  padding: 52px 40px;
  border-right: 1px solid var(--border-dark);
  position: relative;
}
.step:last-child { border-right: none; }

.step-bg-num {
  position: absolute;
  top: 28px;
  right: 28px;
  font-family: 'Montserrat', sans-serif;
  font-size: 88px;
  font-weight: 900;
  color: rgba(0,174,239,0.04);
  line-height: 1;
  letter-spacing: -4px;
  pointer-events: none;
  user-select: none;
}
.step-icon-box {
  width: 50px;
  height: 50px;
  background: var(--blue-dim);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.step-icon-box svg {
  width: 22px;
  height: 22px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 1.5;
}
.step-title {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: 0.2px;
}
.step-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.78;
}


/* ── SECTORS ────────────────────────────── */
.sectors-section { background: var(--black); }
.sectors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-dark);
  margin-top: 56px;
}
.sector-card {
  background: var(--black);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.2s;
}
.sector-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.sector-card:hover { background: #181818; }
.sector-card:hover::after { transform: scaleX(1); }

.sector-icon { font-size: 28px; display: block; margin-bottom: 24px; }
.sector-name {
  font-family: 'Montserrat', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
  letter-spacing: 0.2px;
}
.sector-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.68;
}


/* ── WHY US ─────────────────────────────── */
.why-section { background: #111; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.why-points { margin-top: 44px; }
.why-point {
  display: flex;
  gap: 22px;
  padding: 28px 0;
  border-bottom: 1px solid var(--border-dark);
  align-items: flex-start;
}
.why-point:last-child { border-bottom: none; }
.why-line {
  width: 3px;
  height: 44px;
  background: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
  border-radius: 2px;
}
.why-point-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 7px;
}
.why-point-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.72;
}

.compliance-box {
  background: var(--black);
  border: 1px solid var(--border-dark);
  border-radius: 18px;
  padding: 44px;
}
.compliance-box-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 6px;
}
.compliance-box-sub {
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  margin-bottom: 32px;
  line-height: 1.6;
}
.c-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-dark);
}
.c-row:last-child { border-bottom: none; }
.c-check {
  width: 30px;
  height: 30px;
  background: var(--blue-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.c-check svg {
  width: 13px;
  height: 13px;
  stroke: var(--blue);
  fill: none;
  stroke-width: 2.5;
}
.c-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.c-note {
  font-size: 12px;
  color: rgba(255,255,255,0.68);
  margin-top: 3px;
}


/* ── CTA BAND ───────────────────────────── */
.cta-band {
  background: var(--blue);
  padding: 84px 0;
}
.cta-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.cta-band h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  color: #fff;
  line-height: 1.0;
  letter-spacing: -1.5px;
}
.cta-band p {
  font-size: 16px;
  color: rgba(255,255,255,0.90);
  margin-top: 14px;
  font-weight: 300;
  max-width: 520px;
}


/* ── CONTACT SECTION ────────────────────── */
.contact-section { background: var(--black); }
.contact-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}
.contact-info { padding-top: 12px; }
.contact-details { margin-top: 44px; display: flex; flex-direction: column; gap: 32px; }
.detail-label {
  font-size: 10px;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.60);
  margin-bottom: 8px;
  font-weight: 600;
}
.detail-value { font-size: 16px; color: #fff; }
.detail-value.blue { color: var(--blue); }
.detail-value a { color: var(--blue); }
.detail-value a:hover { text-decoration: underline; }

.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  font-weight: 700;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  padding: 14px 16px;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  width: 100%;
  transition: border-color 0.2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.40); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: rgba(0,174,239,0.45);
}
.form-group select option { background: #1a1a1a; }
.form-group textarea { min-height: 130px; }


/* ── FOOTER ─────────────────────────────── */
footer { background: #050505; border-top: 1px solid var(--border-dark); }
.footer-top {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--border-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
  gap: 48px;
}
.footer-brand .footer-logo img { height: 36px; margin-bottom: 20px; }
.footer-brand .footer-logo-text {
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 900;
  color: rgba(255,255,255,0.70);
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.footer-brand .footer-logo-text span { color: var(--blue); }
.footer-brand p {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
  max-width: 280px;
}
.footer-brand .footer-tagline {
  margin-top: 20px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.footer-tag {
  font-size: 10px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(0,174,239,0.5);
  border: 1px solid rgba(0,174,239,0.18);
  padding: 4px 12px;
  border-radius: 50px;
}
.footer-col h4 {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
  margin-bottom: 24px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  margin-bottom: 13px;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue); }
.footer-col .footer-detail {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.68);
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-bottom {
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy-wrap { display: flex; flex-direction: column; gap: 3px; }
.footer-copy {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.3px;
}
.footer-credit {
  font-size: 11px;
  color: rgba(255,255,255,0.38);
  letter-spacing: 0.3px;
}
.footer-credit a {
  color: var(--blue);
  transition: color 0.2s;
}
.footer-credit a:hover { color: #fff; }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a {
  font-size: 12px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }


/* ── PAGE HERO (inner pages) ────────────── */
.page-hero {
  background: var(--black);
  padding: 100px 0 84px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 90% at -10% 120%, rgba(232,78,27,0.05) 0%, transparent 60%),
              radial-gradient(ellipse 50% 70% at 110% 0%,   rgba(0,174,239,0.07) 0%, transparent 60%);
}
.page-hero .container {
  position: relative;
  z-index: 1;
  max-width: 900px;
}
.page-hero-title { color: #fff; margin-bottom: 24px; }
.page-hero-body {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.78;
  font-weight: 300;
  max-width: 640px;
}
.page-hero-line {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--blue), var(--red));
  border-radius: 2px;
  margin-bottom: 32px;
}


/* ── ABOUT PAGE ─────────────────────────── */
.story-section { background: #fff; }
.story-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 96px;
  align-items: start;
}
.story-sidebar { position: sticky; top: 90px; }
.story-sidebar .eyebrow { color: var(--red); }
.story-sidebar h2 {
  font-family: 'Montserrat', sans-serif;
  font-size: clamp(32px, 3.5vw, 44px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.05;
  letter-spacing: -1px;
}
.story-body p {
  font-size: 16px;
  color: #444;
  line-height: 1.88;
  margin-bottom: 26px;
}
.story-body p:last-child { margin-bottom: 0; }
.story-body strong { color: var(--black); font-weight: 600; }

.mission-section { background: var(--gray-100); }
.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3px;
  background: #d8d8d8;
  margin-top: 56px;
}
.mv-card { background: #fff; padding: 60px 48px; }
.mv-card h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 26px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}
.mv-card p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.82;
}
.mv-card .mv-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
}
.mv-card .mv-icon.blue { background: var(--blue-dim); }
.mv-card .mv-icon.red  { background: rgba(232,78,27,0.1); }
.mv-card .mv-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke-width: 1.5;
}
.mv-card .mv-icon.blue svg { stroke: var(--blue); }
.mv-card .mv-icon.red  svg { stroke: var(--red); }

.values-section { background: var(--black); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border-dark);
  margin-top: 56px;
}
.value-card { background: var(--black); padding: 44px 36px; }
.value-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 52px;
  font-weight: 900;
  color: rgba(0,174,239,0.06);
  line-height: 1;
  margin-bottom: 24px;
  letter-spacing: -3px;
}
.value-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
}
.value-text {
  font-size: 13px;
  color: rgba(255,255,255,0.75);
  line-height: 1.72;
}


/* ── SERVICES PAGE ──────────────────────── */
.service-full-card {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 18px;
  padding: 44px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
  transition: box-shadow 0.22s, transform 0.22s;
}
.service-full-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.1); transform: translateY(-2px); }
.service-full-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 64px;
  font-weight: 900;
  color: rgba(0,174,239,0.12);
  line-height: 1;
  letter-spacing: -3px;
  white-space: nowrap;
}
.service-full-title {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 12px;
  letter-spacing: -0.3px;
}
.service-full-desc {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.78;
  margin-bottom: 20px;
}
.service-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.service-tag {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--blue);
  background: var(--blue-dim);
  padding: 5px 14px;
  border-radius: 50px;
}
.services-list { display: flex; flex-direction: column; gap: 20px; margin-top: 0; }

.services-section-white { background: #fff; }
.services-section-gray  { background: var(--gray-100); }


/* ── STATS BAR ──────────────────────────── */
.stats-bar { background: var(--blue); }
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  divide-color: rgba(255,255,255,0.15);
}
.stat-item {
  padding: 48px 40px;
  border-right: 1px solid rgba(255,255,255,0.15);
  text-align: center;
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.88);
  margin-top: 8px;
  letter-spacing: 0.5px;
}


/* ── CONTACT PAGE ───────────────────────── */
.contact-page { background: #fff; }
.contact-page-inner {
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 80px;
  align-items: start;
}
.contact-page-info { padding-top: 8px; }
.contact-page-info h3 {
  font-family: 'Montserrat', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: var(--black);
  margin-bottom: 8px;
}
.contact-page-info p {
  font-size: 15px;
  color: var(--gray-500);
  line-height: 1.75;
  margin-bottom: 36px;
}
.cpage-details { display: flex; flex-direction: column; gap: 28px; }
.cpage-detail-label {
  font-size: 10px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gray-500);
  margin-bottom: 6px;
  font-weight: 700;
}
.cpage-detail-value {
  font-size: 15px;
  color: var(--black);
  font-weight: 500;
}
.cpage-detail-value a { color: var(--blue); }
.cpage-detail-value a:hover { text-decoration: underline; }

.contact-form-light {
  background: #fff;
  border: 1px solid var(--border-light);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 32px rgba(0,0,0,0.06);
}
.contact-form-light .form-group label {
  color: var(--gray-500);
  font-size: 11px;
  letter-spacing: 2px;
}
.contact-form-light .form-group input,
.contact-form-light .form-group select,
.contact-form-light .form-group textarea {
  background: var(--gray-100);
  border: 1px solid var(--gray-300);
  color: var(--black);
  border-radius: 10px;
}
.contact-form-light .form-group input::placeholder,
.contact-form-light .form-group textarea::placeholder { color: #aaa; }
.contact-form-light .form-group input:focus,
.contact-form-light .form-group select:focus,
.contact-form-light .form-group textarea:focus {
  border-color: var(--blue);
}
.contact-form-light .form-group select option { background: #fff; color: #111; }

.compliance-highlight {
  background: var(--gray-100);
  border-radius: 14px;
  padding: 32px;
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.compliance-highlight h4 {
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray-500);
  font-weight: 700;
  margin-bottom: 4px;
}
.comp-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.comp-dot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  flex-shrink: 0;
}
.comp-text { font-size: 14px; color: var(--gray-700); font-weight: 500; }

/* Success/Error messages */
.form-message {
  padding: 14px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  display: none;
}
.form-message.success { background: rgba(0,174,239,0.1); color: var(--blue); display: block; }
.form-message.error   { background: rgba(232,78,27,0.1);  color: var(--red);  display: block; }


/* ── RESPONSIVE ─────────────────────────── */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav-inner { padding: 0 32px; }
  .ticker-inner { padding: 0 32px; }

  .hero .container {
    grid-template-columns: 1fr;
  }
  .hero-right { display: none; }

  .supply-intro { grid-template-columns: 1fr; gap: 32px; }
  .cat-grid { grid-template-columns: repeat(2, 1fr); }
  .cat-card:nth-child(2n) { border-right: none; }
  .cat-card:nth-child(4n) { border-right: 1px solid var(--border-dark); }
  .cat-card:nth-child(4n) { border-right: none; }

  .steps-grid { grid-template-columns: 1fr; }
  .step { border-right: none; border-bottom: 1px solid var(--border-dark); }
  .step:last-child { border-bottom: none; }

  .sectors-grid { grid-template-columns: 1fr 1fr; }

  .why-grid { grid-template-columns: 1fr; gap: 48px; }

  .cta-band-inner { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }

  .story-grid { grid-template-columns: 1fr; gap: 56px; }
  .story-sidebar { position: static; }
  .mv-grid { grid-template-columns: 1fr; gap: 3px; }
  .values-grid { grid-template-columns: 1fr 1fr; }

  .contact-page-inner { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3) { border-right: 1px solid rgba(255,255,255,0.15); }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .nav-inner { padding: 0 20px; }
  .ticker-inner { padding: 0 20px; }

  nav { position: sticky; }
  .hamburger { display: flex; }
  .nav-menu {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px 20px 24px;
    border-bottom: 1px solid var(--border-dark);
    z-index: 800;
  }
  .nav-menu.open { display: flex; }
  .nav-menu a {
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-dark);
    font-size: 14px;
    text-transform: none;
    letter-spacing: 0;
  }
  .nav-menu a.nav-cta {
    margin-top: 12px;
    text-align: center;
    border: none;
    padding: 14px;
  }

  .section { padding: 72px 0; }
  .hero { min-height: auto; padding: 40px 0 60px; }

  .cat-grid { grid-template-columns: 1fr; }
  .cat-card { border-right: none !important; }

  .sectors-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }

  .values-grid { grid-template-columns: 1fr; }

  .stats-inner { grid-template-columns: 1fr 1fr; }
  .stat-item { padding: 32px 24px; }

  .service-full-card { grid-template-columns: 1fr; gap: 16px; }
  .service-full-num { font-size: 40px; }

  .contact-form-light { padding: 28px 20px; }

  .cta-band { padding: 60px 0; }
  .cta-band-inner { gap: 28px; }

  .feature-strip { min-height: 300px; background-attachment: scroll; }
  .feature-strip-grid { grid-template-columns: 1fr; }
  .image-split-grid { grid-template-columns: 1fr; }
  .image-split-photo { height: 280px; }
}


/* ── FEATURE IMAGE STRIP ─────────────────── */
.feature-strip {
  position: relative;
  min-height: 460px;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.feature-strip-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.55) 55%, rgba(0,0,0,0.3) 100%);
}
.feature-strip-overlay.centered {
  background: rgba(0,0,0,0.65);
}
.feature-strip .container {
  position: relative;
  z-index: 2;
  padding-top: 72px;
  padding-bottom: 72px;
}
.feature-strip-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.08);
}
.feature-stat {
  padding: 32px 28px;
  background: rgba(0,0,0,0.4);
}
.feature-stat-num {
  font-family: 'Montserrat', sans-serif;
  font-size: 42px;
  font-weight: 900;
  color: var(--blue);
  line-height: 1;
  letter-spacing: -2px;
  margin-bottom: 8px;
}
.feature-stat-label {
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 0.5px;
}


/* ── IMAGE SPLIT SECTION ─────────────────── */
.image-split-section { background: var(--black); }
.image-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 500px;
}
.image-split-photo {
  position: relative;
  overflow: hidden;
  min-height: 420px;
}
.image-split-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.image-split-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, rgba(0,0,0,0.5) 100%);
}
.image-split-content {
  display: flex;
  align-items: center;
  padding: 72px 56px;
  background: #111;
}
.image-split-content.right {
  background: var(--black);
}


/* ── SECTOR CARDS WITH IMAGES ────────────── */
.sector-card-img {
  background-size: cover;
  background-position: center;
}
.sector-card-img .sector-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(5,5,10,0.78);
  transition: background 0.25s;
}
.sector-card-img:hover .sector-card-overlay { background: rgba(5,5,10,0.65); }
.sector-card-inner {
  position: relative;
  z-index: 1;
}


/* ── SERVICES PAGE CATEGORY IMAGES ──────── */
.service-hero-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  margin-bottom: 24px;
  display: block;
}
.service-full-card.with-img { grid-template-columns: 1fr; }
.service-full-card.with-img .service-full-num {
  font-size: 28px;
  color: var(--blue);
  margin-bottom: 0;
}
.service-card-header {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 16px;
}


/* ── ABOUT PAGE VISUAL STRIP ─────────────── */
.about-visual-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 320px;
  overflow: hidden;
}
.about-visual-strip-img {
  position: relative;
  overflow: hidden;
}
.about-visual-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.about-visual-strip-img:hover img { transform: scale(1.05); }
.about-visual-strip-img .strip-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600;
}
@media (max-width: 768px) {
  .about-visual-strip { grid-template-columns: 1fr; height: auto; }
  .about-visual-strip-img { height: 220px; }
  .feature-strip-grid { grid-template-columns: 1fr; gap: 40px; }
  .image-split-grid { grid-template-columns: 1fr; }
  .image-split-photo { min-height: 280px; }
  .image-split-content { padding: 48px 32px; }
}


/* ════════════════════════════════════════════
   ANIMATIONS & MOTION
   ════════════════════════════════════════════ */

/* ── Scroll progress bar ───────────────────── */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--blue), var(--red));
  z-index: 9999;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ── Reveal items (stagger) ────────────────── */
.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-item.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Fade-up for headings / text ───────────── */
.fade-up-ready {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.fade-up-in {
  opacity: 1;
  transform: translateY(0);
}

/* ── Hero entrance ─────────────────────────── */
.hero-entrance {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1),
              transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.hero-entered {
  opacity: 1;
  transform: translateY(0);
}

/* ── CTA band animate ──────────────────────── */
.cta-band { transition: transform 0.6s ease; }
.cta-band .cta-band-inner { transition: opacity 0.7s ease, transform 0.7s ease; }
.cta-band:not(.cta-animate) .cta-band-inner {
  opacity: 0;
  transform: translateY(20px);
}
.cta-band.cta-animate .cta-band-inner {
  opacity: 1;
  transform: translateY(0);
}

/* ── Floating glow on nav CTA ──────────────── */
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 3px 12px rgba(0,174,239,0.28); }
  50%       { box-shadow: 0 3px 22px rgba(0,174,239,0.55); }
}
.nav-menu .nav-cta { animation: pulse-glow 3s ease-in-out infinite; }

/* ── Gradient shimmer on hero title ────────── */
@keyframes shimmer-text {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-title em {
  background: linear-gradient(90deg, var(--blue), #7dd8f8, var(--blue));
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer-text 4s ease infinite;
}

/* ── Floating trust cards subtle bob ──────── */
@keyframes card-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}
.trust-stack .trust-card:nth-child(1) { animation: card-float 4s ease-in-out infinite; }
.trust-stack .trust-card:nth-child(2) { animation: card-float 4s ease-in-out 0.8s infinite; }
.trust-stack .trust-card:nth-child(3) { animation: card-float 4s ease-in-out 1.6s infinite; }
/* pause float on hover */
.trust-card:hover { animation-play-state: paused !important; }

/* ── Touch ripple ──────────────────────────── */
.btn-touch { filter: brightness(0.9); }


/* ════════════════════════════════════════════
   MOBILE — MODERN LAYOUT & CENTRED TEXT
   ════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Global mobile text centring ────────── */
  .section,
  .section-sm,
  .section-xs {
    text-align: center;
  }
  .eyebrow { margin-left: auto; margin-right: auto; }
  .lead    { margin-left: auto; margin-right: auto; text-align: center; }
  .supply-intro .lead { text-align: center; }
  .page-hero-line { margin-left: auto; margin-right: auto; }
  .page-hero-body { margin-left: auto; margin-right: auto; text-align: center; }

  /* ── Hero ────────────────────────────────── */
  .hero { padding-top: 0; padding-bottom: 0; min-height: auto; }
  .hero .container {
    padding-top: 64px;
    padding-bottom: 64px;
    text-align: center;
  }
  .hero-body { max-width: 100%; text-align: center; }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-link { justify-content: center; }
  h1.display { font-size: clamp(38px, 10vw, 54px); }

  /* ── Section headings ────────────────────── */
  .supply-intro {
    text-align: center;
  }
  .supply-intro .display { text-align: center; }
  .cta-band-inner { text-align: center; }
  .cta-band h2 { text-align: center; }
  .cta-band p  { margin-left: auto; margin-right: auto; text-align: center; }
  .cta-band-inner .btn { width: 100%; justify-content: center; }

  /* ── Category grid ───────────────────────── */
  .cat-grid { grid-template-columns: 1fr; border: none; gap: 2px; }
  .cat-card {
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    text-align: center;
  }
  .cat-card:nth-child(4n),
  .cat-card:nth-child(2n) { border-right: 1px solid var(--border-dark); }
  .cat-num { font-size: 30px; }

  /* ── Process steps ───────────────────────── */
  .steps-grid { border: none; gap: 2px; }
  .step {
    border: 1px solid var(--border-dark);
    border-radius: 14px;
    padding: 36px 28px;
    text-align: center;
  }
  .step-icon-box { margin-left: auto; margin-right: auto; }
  .step:last-child { border-bottom: 1px solid var(--border-dark); }

  /* ── Sectors ─────────────────────────────── */
  .sectors-grid { grid-template-columns: 1fr; gap: 2px; background: transparent; }
  .sector-card {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    text-align: center;
    padding: 36px 24px;
  }
  .sector-icon { font-size: 36px; }

  /* ── Why us ──────────────────────────────── */
  .why-grid { gap: 40px; }
  .why-point { flex-direction: column; align-items: center; text-align: center; gap: 14px; }
  .why-line  { width: 44px; height: 3px; margin-top: 0; }
  .compliance-box { padding: 28px 20px; text-align: center; }
  .c-row { justify-content: center; }

  /* ── Stats ───────────────────────────────── */
  .stats-inner {
    grid-template-columns: 1fr 1fr;
  }
  .stat-item { padding: 32px 16px; border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-item:nth-child(2n) { border-right: none; }
  .stat-item:nth-child(3)  { border-right: 1px solid rgba(255,255,255,0.12); }
  .stat-num  { font-size: 38px; }

  /* ── Services page ───────────────────────── */
  .service-full-card { padding: 28px 20px; border-radius: 16px; }
  .service-full-card.with-img { text-align: left; }
  .service-tags { justify-content: center; }

  /* ── Contact ─────────────────────────────── */
  .contact-grid { gap: 40px; }
  .contact-info { text-align: center; }
  .contact-details { align-items: center; }
  .contact-details .detail-label { text-align: center; }
  .contact-details .detail-value { text-align: center; }

  /* ── Contact page ────────────────────────── */
  .contact-page-info { text-align: center; }
  .cpage-details { align-items: center; }
  .contact-form-light { padding: 28px 20px; border-radius: 16px; }
  .compliance-highlight { text-align: left; }

  /* ── About page ──────────────────────────── */
  .story-grid { text-align: center; }
  .story-sidebar { text-align: center; }
  .story-body p { text-align: left; }
  .mv-grid { gap: 2px; }
  .mv-card { text-align: center; }
  .mv-card .mv-icon { margin-left: auto; margin-right: auto; }
  .values-grid { grid-template-columns: 1fr; gap: 2px; background: transparent; }
  .value-card {
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.07);
    text-align: center;
  }

  /* ── Page heroes (inner pages) ───────────── */
  .page-hero { padding: 72px 0 60px; text-align: center; }
  .page-hero .container { max-width: 100%; }
  .page-hero-title { text-align: center; }

  /* ── Footer ──────────────────────────────── */
  .footer-grid { grid-template-columns: 1fr; text-align: center; }
  .footer-brand p { max-width: 100%; text-align: center; }
  .footer-brand .footer-tagline { justify-content: center; }
  .footer-brand .footer-logo img { margin-left: auto; margin-right: auto; }
  .footer-col h4 { text-align: center; }
  .footer-col a  { text-align: center; }
  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
    align-items: center;
  }
  .footer-copy-wrap { align-items: center; }
  .footer-legal { justify-content: center; }

  /* ── Feature strip ───────────────────────── */
  .feature-strip-grid { gap: 40px; text-align: center; }
  .feature-stat-grid  { border-radius: 14px; overflow: hidden; }

  /* ── Image split ─────────────────────────── */
  .image-split-content { padding: 44px 24px; text-align: center; }
  .image-split-content .lead { text-align: center; }
  .image-split-content .btn  { width: 100%; justify-content: center; }

  /* ── CTA section ─────────────────────────── */
  .section .btn,
  .cta-band .btn {
    min-width: 200px;
  }

  /* ── General spacing tightening ─────────── */
  .section    { padding: 60px 0; }
  .section-sm { padding: 48px 0; }
  h2.display  { font-size: clamp(30px, 8vw, 44px); letter-spacing: -0.8px; }
  h3.display  { font-size: clamp(24px, 6vw, 34px); }

  /* ── Prevent float animation interfering
        with scroll-reveal on mobile ────────── */
  .trust-stack .trust-card { animation: none; }
}

/* ── Very small screens (< 400px) ─────────── */
@media (max-width: 400px) {
  h1.display { font-size: 34px; }
  .hero .container { padding-top: 52px; padding-bottom: 52px; }
  .stat-num  { font-size: 32px; }
  .section   { padding: 52px 0; }
}
