/* =========================================================================
   Astenzo Industries — styles
   This file controls how everything LOOKS: colours, fonts, spacing, layout.
   It is organised top-to-bottom in the same order as the page.
   ========================================================================= */

/* ---- Colour & font "memory slots" (CSS variables) -----------------------
   Defining colours once here means we can reuse them everywhere by name. */
:root {
  --navy:      #0E1726;   /* main dark background          */
  --navy-2:    #0A1120;   /* slightly darker (marquee/market) */
  --navy-3:    #080E1A;   /* footer background             */
  --panel:     #16223A;   /* card background on dark areas */
  --cream:     #F4F1EC;   /* near-white headings           */
  --text:      #E8ECF2;   /* default light text            */
  --muted:     #9FB0C5;   /* soft grey-blue body text      */
  --muted-2:   #7C8CA6;   /* dimmer labels                 */
  --slate:     #C4CFDF;   /* light slate (nav links)       */
  --copper:    #B66E41;   /* deep copper accent            */
  --copper-2:  #E9A86B;   /* bright copper accent          */
  --copper-3:  #D98A4F;   /* mid copper accent             */
  --light:     #FBFCFD;   /* light section background      */
  --ink:       #16223A;   /* dark text on light areas      */
  --ink-2:     #52617A;   /* muted text on light areas     */
  --ink-3:     #5B6A82;   /* muted text on light areas     */
  --line:      #E4E8EE;   /* light hairline borders        */

  --sans: 'IBM Plex Sans', system-ui, -apple-system, sans-serif;
  --serif: 'Fraunces', Georgia, serif;
  --mono: 'IBM Plex Mono', ui-monospace, monospace;

  --pad: 40px;            /* left/right breathing room; shrinks on phones */
}

/* ---- Sensible base defaults --------------------------------------------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--sans);
  background: var(--navy);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }

/* A centred column used by most sections */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* Small repeated text bits ------------------------------------------------- */
.eyebrow {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: .24em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.section--light .eyebrow { color: var(--copper); }
.section--dark .eyebrow,
.market .eyebrow         { color: var(--copper-3); }

.h2 {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.06;
  letter-spacing: -.02em;
  margin: 0;
}
.h2--gap { margin-bottom: 18px; }
.section--light .h2 { color: var(--ink); }
.section--dark .h2  { color: var(--cream); }

/* Buttons ------------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 15px;
  text-decoration: none;
  padding: 15px 28px;
  border-radius: 2px;
  letter-spacing: .01em;
}
.btn--primary {
  font-weight: 600;
  color: #0B1322;
  background: linear-gradient(135deg, var(--copper-2), var(--copper));
}
.btn--ghost {
  font-weight: 500;
  color: var(--cream);
  border: 1px solid rgba(244,241,236,.24);
}

/* =========================================================================
   TOP MENU BAR
   ========================================================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .4s ease, border-color .4s ease, backdrop-filter .4s ease;
}
/* When the page is scrolled, script.js adds this class to tint the bar */
.nav--solid {
  background: rgba(10,17,32,.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.nav__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 13px; text-decoration: none; }
.nav__brand img { width: 30px; height: 30px; }
.brand-name { display: flex; flex-direction: column; line-height: 1; }
.brand-name__main {
  font-size: 18px; font-weight: 600; letter-spacing: .16em; color: var(--cream);
}
.brand-name__main sup { font-size: .5em; font-weight: 500; letter-spacing: 0; top: -.9em; }
.brand-name__sub {
  font-family: var(--mono); font-size: 9px; letter-spacing: .3em;
  color: var(--muted-2); margin-top: 3px;
}
.nav__links { display: flex; align-items: center; gap: 34px; }
.nav__link {
  font-size: 14px; font-weight: 500; color: var(--slate);
  text-decoration: none; letter-spacing: .01em;
}
.nav__cta {
  font-size: 14px; font-weight: 600; color: #0B1322;
  text-decoration: none;
  background: linear-gradient(135deg, var(--copper-2), var(--copper));
  padding: 10px 20px; border-radius: 2px; letter-spacing: .01em;
}

/* =========================================================================
   HERO
   ========================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(1000px 680px at 80% 26%, rgba(182,110,65,.20), transparent 60%),
    radial-gradient(760px 540px at 8% 92%, rgba(28,63,118,.30), transparent 62%),
    var(--navy);
}
.hero__grid {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.028) 0 1px, transparent 1px 64px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.028) 0 1px, transparent 1px 64px);
  -webkit-mask-image: radial-gradient(120% 100% at 50% 30%, #000 30%, transparent 90%);
          mask-image: radial-gradient(120% 100% at 50% 30%, #000 30%, transparent 90%);
}
.hero__disc {
  position: absolute;
  top: 50%; right: -90px;
  transform: translateY(-50%);
  width: 880px; height: 740px; max-width: 64vw;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
          mask-image: linear-gradient(90deg, transparent 0%, #000 26%);
}
.hero__copy {
  position: relative;
  max-width: 1240px;
  margin: 0 auto;
  padding: 128px var(--pad) 0;
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}
.hero__copy-inner { max-width: 680px; }
.hero__eyebrow { color: var(--copper-3); margin-bottom: 26px; }
.hero__title {
  font-family: var(--serif);
  font-optical-sizing: auto;
  font-weight: 500;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.02;
  letter-spacing: -.022em;
  color: var(--cream);
  margin: 0 0 26px;
}
.hero__title em { font-style: italic; color: var(--copper-2); }
.hero__lead {
  font-size: 18px; line-height: 1.62; color: var(--muted);
  max-width: 54ch; margin: 0 0 38px;
}
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* key-numbers bar at the bottom of the hero */
.statbar {
  position: relative;
  border-top: 1px solid rgba(255,255,255,.09);
  background: rgba(8,14,26,.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
.statbar__inner {
  max-width: 1240px; margin: 0 auto; padding: 0 var(--pad);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat { padding: 28px; border-right: 1px solid rgba(255,255,255,.08); }
.stat:first-child { padding-left: 0; }
.stat:last-child  { padding-right: 0; border-right: none; }
.stat__num {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(28px, 3.2vw, 42px); color: var(--cream); line-height: 1;
}
.stat__num span {
  font-size: .42em; color: var(--copper-3); margin-left: 6px;
  font-family: var(--mono); letter-spacing: .04em;
}
.stat__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .13em;
  text-transform: uppercase; color: var(--muted-2); margin-top: 10px;
}

/* =========================================================================
   SCROLLING FACT STRIP (marquee)
   ========================================================================= */
.marquee {
  background: var(--navy-2);
  border-top: 1px solid rgba(217,138,79,.18);
  border-bottom: 1px solid rgba(217,138,79,.18);
  overflow: hidden;
  padding: 16px 0;
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: astenzo-marquee 38s linear infinite;
  font-family: var(--mono);
  font-size: 13px;
  letter-spacing: .06em;
  color: #B9C6DA;
  white-space: nowrap;
}
.marquee__group { display: inline-flex; }
.marquee__item { padding: 0 30px; }
.marquee__sep { color: var(--copper); }
.amber { color: var(--copper-2); }
@keyframes astenzo-marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================================================
   GENERIC SECTION + SHARED LAYOUT PIECES
   ========================================================================= */
.section { padding: 112px 0; }
.section--light { background: var(--light); color: var(--ink); }
.section--dark  { background: var(--navy);  color: var(--text); }
.section--process { padding: 108px 0; }
.has-top-border      { border-top: 1px solid rgba(217,138,79,.16); }
.has-top-border-soft { border-top: 1px solid rgba(255,255,255,.06); }

/* intro block (eyebrow + heading, sometimes a sub-paragraph) */
.lead-block { max-width: 680px; margin-bottom: 60px; }
.lead-block__sub { font-size: 17px; line-height: 1.6; color: var(--ink-2); margin: 0; }
.section--process .lead-block { margin-bottom: 64px; }

/* heading on the left, supporting paragraph on the right */
.split-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}
.split-head--product   { margin-bottom: 56px; }
.split-head--portfolio { margin-bottom: 60px; }
.body-lead { font-size: 17px; line-height: 1.66; color: var(--muted); margin: 0; }

/* card grids */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }

/* small mono kicker label */
.kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 24px;
}

/* footnote-style note row (NDA / NOTE) */
.note {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--muted-2);
}
.note__tag { color: var(--copper-3); font-family: var(--mono); flex-shrink: 0; }

/* ---- Light cards (Why Astenzo) ------------------------------------------ */
.card-light {
  background: #fff; border: 1px solid var(--line);
  border-radius: 4px; padding: 38px 34px;
}
.card-light__num {
  font-family: var(--serif); font-weight: 500; font-size: 46px;
  line-height: 1; color: var(--copper-3); margin-bottom: 22px;
}
.card-light__title { font-size: 19px; font-weight: 600; color: var(--ink); margin-bottom: 12px; }
.card-light p { font-size: 15px; line-height: 1.62; color: var(--ink-2); margin: 0; }

/* ---- Dark cards (Company) ----------------------------------------------- */
.card-dark {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px; padding: 34px;
  display: flex; flex-direction: column;
}
.card-dark__head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 24px;
}
.card-dark__kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted-2);
}
.metric {
  font-family: var(--serif); font-weight: 500; font-size: 38px; line-height: 1;
  color: var(--copper-2); margin-bottom: 6px;
}
.metric span { font-size: .5em; color: var(--slate); font-family: var(--mono); letter-spacing: .02em; }
.card-dark__title { font-size: 16px; font-weight: 600; color: var(--cream); margin-bottom: 12px; }
.card-dark p { font-size: 14.5px; line-height: 1.6; color: var(--muted); margin: 0; }

/* =========================================================================
   PROCESS
   ========================================================================= */
.process-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
}
.steps { display: flex; flex-direction: column; }
.step {
  display: flex; gap: 22px; padding: 22px 0;
  border-top: 1px solid var(--line);
}
.step:last-child { border-bottom: 1px solid var(--line); }
.step__num {
  font-family: var(--mono); font-size: 13px; color: var(--copper);
  font-weight: 500; padding-top: 3px;
}
.step__title { font-size: 17px; font-weight: 600; color: var(--ink); margin-bottom: 5px; }
.step__desc { font-size: 14.5px; line-height: 1.55; color: var(--ink-3); }

.plate {
  position: relative; aspect-ratio: 4 / 5;
  border-radius: 4px; overflow: hidden;
  border: 1px solid #E1E6ED; background: var(--navy);
}
.plate img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.plate__tag {
  position: absolute; top: 14px; left: 16px;
  font-family: var(--mono); font-size: 9.5px; letter-spacing: .14em;
  color: var(--cream); background: rgba(8,14,26,.55);
  padding: 5px 9px; border-radius: 2px;
}
.plate-caption {
  margin-top: 14px; font-family: var(--mono); font-size: 11px;
  letter-spacing: .04em; color: #9AA7B8; text-align: center;
}

/* =========================================================================
   PRODUCT — use cards
   ========================================================================= */
.use-card {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-top: 2px solid var(--copper);
  border-radius: 4px; padding: 30px 28px;
}
.use-card__title { font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.use-card p { font-size: 14px; line-height: 1.58; color: var(--muted); margin: 0; }

/* =========================================================================
   CAPACITY — phase cards
   ========================================================================= */
.phase {
  background: #fff; border: 1px solid var(--line);
  border-radius: 4px; padding: 34px;
}
.phase__kicker {
  font-family: var(--mono); font-size: 11px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted-2); margin-bottom: 18px;
}
.phase__num {
  font-family: var(--serif); font-weight: 500; font-size: 40px;
  line-height: 1; color: var(--ink);
}
.phase__num span { font-size: .4em; color: var(--copper); font-family: var(--mono); margin-left: 6px; }
.phase__sub { font-size: 13.5px; color: var(--ink-2); margin: 10px 0 22px; }
.bar { height: 6px; background: #EEF1F5; border-radius: 3px; overflow: hidden; }
.bar__fill { height: 100%; background: linear-gradient(90deg, var(--copper-2), var(--copper)); border-radius: 3px; }

/* =========================================================================
   PORTFOLIO — element cards
   ========================================================================= */
.element {
  position: relative;
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px; padding: 30px 28px;
  display: flex; flex-direction: column;
}
.element--flagship {
  border: 1px solid rgba(217,138,79,.38);
  box-shadow: 0 0 0 1px rgba(217,138,79,.12), 0 18px 40px -24px rgba(217,138,79,.5);
}
.element__head {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 18px;
}
.element__sym {
  font-family: var(--serif); font-weight: 500; font-size: 46px;
  line-height: .9; color: var(--slate);
}
.element--flagship .element__sym { color: var(--copper-2); }
.element__z { font-family: var(--mono); font-size: 12px; color: var(--muted-2); }
.element__name { font-size: 17px; font-weight: 600; color: var(--cream); margin-bottom: 10px; }
.badge {
  align-self: flex-start;
  font-family: var(--mono); font-size: 10px; letter-spacing: .12em;
  text-transform: uppercase; border-radius: 999px;
  padding: 4px 10px; margin-bottom: 14px;
}
.badge--copper { color: var(--copper-2); border: 1px solid #E9A86B55; }
.badge--muted  { color: var(--muted);    border: 1px solid #9FB0C555; }
.element p { font-size: 13.5px; line-height: 1.58; color: var(--muted); margin: 0; }

/* =========================================================================
   MARKET CALLOUT
   ========================================================================= */
.market {
  position: relative;
  background: var(--navy-2);
  color: var(--text);
  padding: 120px 0;
  border-top: 1px solid rgba(217,138,79,.16);
  overflow: hidden;
}
.market__glow {
  position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 460px at 84% 30%, rgba(182,110,65,.16), transparent 62%);
}
.market__inner {
  position: relative;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 72px;
  align-items: center;
}
.market__kicker {
  font-family: var(--mono); font-size: 12px; letter-spacing: .18em;
  text-transform: uppercase; color: var(--muted); margin-bottom: 18px;
}
.bignum {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(72px, 10vw, 128px);
  line-height: .92; color: var(--copper-2); letter-spacing: -.03em;
}
.bignum span {
  display: block; font-size: .28em; color: var(--muted);
  letter-spacing: .02em; margin-top: 8px; font-family: var(--mono);
}
.market__title {
  font-family: var(--serif); font-weight: 500;
  font-size: clamp(26px, 3.2vw, 40px);
  line-height: 1.1; letter-spacing: -.02em; color: var(--cream); margin: 0 0 22px;
}
.market p { font-size: 17px; line-height: 1.66; color: var(--muted); margin: 0; }

/* =========================================================================
   CONTACT
   ========================================================================= */
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.contact__lead { margin: 0 0 36px; max-width: 48ch; }
.contact-list { display: flex; flex-direction: column; gap: 2px; }
.contact-row {
  display: flex; align-items: center; gap: 14px; padding: 18px 0;
  border-top: 1px solid rgba(255,255,255,.1);
  text-decoration: none; color: var(--cream);
}
.contact-row--office {
  align-items: flex-start;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.contact-row__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-2); width: 64px; flex-shrink: 0;
}
.contact-row__value { font-size: 17px; font-weight: 500; }
.contact-row--office .contact-row__value {
  font-size: 14.5px; line-height: 1.55; color: var(--slate); font-weight: 400;
}

/* the form */
.form {
  background: var(--panel);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 4px; padding: 38px;
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.form__row .field { margin-bottom: 0; }
.field__label {
  font-family: var(--mono); font-size: 11px; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
}
.field input, .field select, .field textarea {
  background: var(--navy);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 3px;
  padding: 12px 14px;
  color: var(--cream);
  font-size: 15px;
  font-family: var(--sans);
  outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: rgba(217,138,79,.6);
}
.field textarea { resize: vertical; }
.form__submit {
  width: 100%;
  font-size: 15px; font-weight: 600; color: #0B1322;
  background: linear-gradient(135deg, var(--copper-2), var(--copper));
  border: none; padding: 15px; border-radius: 3px;
  cursor: pointer; letter-spacing: .01em; font-family: var(--sans);
}
.form__fineprint { font-size: 12px; line-height: 1.5; color: #6B7B95; margin: 16px 0 0; text-align: center; }

/* thank-you panel */
.form-success {
  background: var(--panel);
  border: 1px solid rgba(217,138,79,.3);
  border-radius: 4px; padding: 54px 38px; text-align: center;
  min-height: 300px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.form-success__icon {
  width: 54px; height: 54px; border-radius: 50%;
  border: 1.5px solid var(--copper-2);
  display: flex; align-items: center; justify-content: center; margin-bottom: 24px;
}
.form-success__title {
  font-family: var(--serif); font-weight: 500; font-size: 26px;
  color: var(--cream); margin-bottom: 12px;
}
.form-success p { font-size: 15px; line-height: 1.6; color: var(--muted); margin: 0; max-width: 34ch; }
[hidden] { display: none !important; }

/* =========================================================================
   FOOTER
   ========================================================================= */
.footer {
  background: var(--navy-3); color: var(--muted);
  padding: 64px 0 40px;
  border-top: 1px solid rgba(255,255,255,.07);
}
.footer__top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer__brand-link { display: flex; align-items: center; gap: 13px; text-decoration: none; margin-bottom: 18px; }
.footer__brand-link img { width: 30px; height: 30px; }
.footer__brand-name { font-size: 18px; font-weight: 600; letter-spacing: .16em; color: var(--cream); }
.footer__brand-name sup { font-size: .5em; font-weight: 500; }
.footer__about { font-size: 14px; line-height: 1.6; color: var(--muted-2); margin: 0; max-width: 36ch; }
.footer__col-title {
  font-family: var(--mono); font-size: 11px; letter-spacing: .16em;
  text-transform: uppercase; color: #566580; margin-bottom: 18px;
}
.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 14px; color: var(--slate); text-decoration: none; }
.footer__addr { font-size: 14px; line-height: 1.6; color: var(--muted); margin: 0 0 14px; }
.footer__gstin { font-family: var(--mono); font-size: 12.5px; color: var(--muted-2); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px; padding-top: 28px;
}
.footer__copy { font-size: 12.5px; color: #566580; }
.footer__email { font-family: var(--mono); font-size: 11px; letter-spacing: .08em; color: #566580; }

/* =========================================================================
   "FADE IN ON SCROLL" EFFECT
   Hidden state only applies when JavaScript is on (the <html class="js">),
   so if scripts are blocked, everything is simply visible.
   ========================================================================= */
.js .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1);
  transition-delay: var(--d, 0s);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

/* Respect users who prefer less motion */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* =========================================================================
   RESPONSIVE — make it work on tablets and phones
   ========================================================================= */

/* Tablets / small laptops */
@media (max-width: 1024px) {
  .cards-4 { grid-template-columns: repeat(2, 1fr); }
  .market__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* Large phones / small tablets */
@media (max-width: 880px) {
  .nav__links { gap: 18px; }
  .nav__link { display: none; }            /* keep just the logo + "Partner" button */

  .split-head { grid-template-columns: 1fr; gap: 24px; align-items: start; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .cards-3 { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; gap: 40px; }
  .footer__top { grid-template-columns: 1fr; gap: 32px; }

  .hero__disc { display: none; }           /* tidy up the illustration on small screens */

  .statbar__inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-top: 1px solid rgba(255,255,255,.08); padding: 22px 0; }
  .stat:nth-child(even) { padding-left: 22px; }
}

/* Phones */
@media (max-width: 560px) {
  :root { --pad: 22px; }
  .section, .market { padding: 72px 0; }
  .hero__copy { padding-top: 104px; }
  .cards-4 { grid-template-columns: 1fr; }
  .form__row { grid-template-columns: 1fr; gap: 0; }
  .form__row .field { margin-bottom: 18px; }
}
