/* =========================================================
   منصور الجنيدل العقارية — نظام التصميم
   Mansur Aljunaidel Real Estate — Design System
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&family=IBM+Plex+Sans:wght@400;500;600&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand palette (from official guidelines) */
  --teal:          #497A8A;   /* primary */
  --teal-deep:     #375D69;
  --teal-mark:     #74B7C8;   /* logo mark */
  --teal-light:    #8DC0CF;
  --teal-soft:     #A1CCD8;
  --teal-pale:     #E2EFF3;
  --teal-mist:     #F2F8FA;
  --slate:         #294049;   /* darkest teal */

  --ink:           #1A1D1E;
  --ink-2:         #2E3132;
  --gray:          #6A6A6A;
  --gray-2:        #8B8D8D;
  --line:          #E7E8E8;
  --line-soft:     #F1F2F2;
  --paper:         #FFFFFF;
  --paper-2:       #F8F9F9;

  /* Secondary accents (warning-free) */
  --gold:          #C08A3E;   /* bronze accent */
  --gold-deep:     #A97733;
  --gold-soft:     #EADFC9;
  --sand:          #F3EEE6;   /* warm neutral section */
  --sand-2:        #ECE4D6;
  --navy:          #22303A;   /* deep support tone */

  /* Typography */
  --font-ar: 'IBM Plex Sans Arabic', 'IBM Plex Sans', -apple-system, sans-serif;
  --font-en: 'IBM Plex Sans', 'IBM Plex Sans Arabic', sans-serif;

  /* Layout */
  --wrap: 1200px;
  --radius: 16px;
  --radius-sm: 10px;
  --radius-lg: 26px;
  --shadow-sm: 0 2px 10px rgba(41,64,73,.06);
  --shadow: 0 12px 40px rgba(41,64,73,.10);
  --shadow-lg: 0 26px 70px rgba(41,64,73,.16);
  --gutter: clamp(20px, 5vw, 64px);
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ar);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.75;
  letter-spacing: normal;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--teal-pale); color: var(--slate); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; letter-spacing: normal; color: var(--ink); }
h1 { font-size: clamp(2.1rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p  { letter-spacing: normal; }
.lead { font-size: clamp(1.05rem, 1.7vw, 1.28rem); color: var(--gray); font-weight: 400; }
.num-en { font-family: var(--font-en); font-feature-settings: "tnum"; }

/* ---------- Layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(64px, 9vw, 120px); }
.section--tint { background: var(--paper-2); }
.section--mist { background: var(--teal-mist); }
.section--sand { background: var(--sand); }
.center { text-align: center; }
.mx-auto { margin-inline: auto; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: .82rem; font-weight: 600; color: var(--teal);
  letter-spacing: normal; margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: linear-gradient(90deg, var(--teal-mark), var(--gold)); border-radius: 2px; }
.section-head { max-width: 720px; margin-bottom: clamp(36px, 5vw, 60px); }
.center .section-head { margin-inline: auto; }
.section-head p { margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--font-ar); font-size: 1rem; font-weight: 600;
  padding: 14px 28px; border-radius: 999px; letter-spacing: normal;
  transition: transform .25s var(--ease), background .25s var(--ease), box-shadow .25s var(--ease), color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn--primary { background: var(--teal); color: #fff; box-shadow: 0 10px 24px rgba(73,122,138,.28); }
.btn--primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(73,122,138,.36); }
.btn--ghost { background: transparent; color: var(--slate); box-shadow: inset 0 0 0 1.5px var(--teal-soft); }
.btn--ghost:hover { background: var(--teal-pale); color: var(--teal-deep); transform: translateY(-2px); }
.btn--light { background: #fff; color: var(--teal-deep); box-shadow: var(--shadow-sm); }
.btn--light:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--onDark { background: #fff; color: var(--slate); }
.btn--onDark:hover { background: var(--teal-pale); transform: translateY(-2px); }
.btn--outlineDark { box-shadow: inset 0 0 0 1.5px rgba(255,255,255,.5); color: #fff; }
.btn--outlineDark:hover { background: rgba(255,255,255,.12); transform: translateY(-2px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s, background .3s;
}
.site-header.is-stuck { border-bottom-color: var(--line); box-shadow: 0 6px 24px rgba(41,64,73,.06); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 24px; height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__logo { height: 48px; width: auto; }
.brand__txt { display: flex; flex-direction: column; line-height: 1.15; }
.brand__txt b { font-size: 1.02rem; font-weight: 700; color: var(--slate); letter-spacing: normal; }
.brand__txt span { font-size: .72rem; color: var(--gray-2); font-weight: 500; }
.nav__links { display: flex; align-items: center; gap: 4px; }
.nav__links a {
  font-size: .98rem; font-weight: 500; color: var(--ink-2);
  padding: 9px 16px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--teal-deep); background: var(--teal-mist); }
.nav__links a.active { color: var(--teal-deep); background: var(--teal-pale); font-weight: 600; }
.nav__cta { display: flex; align-items: center; gap: 12px; }
.nav__toggle { display: none; width: 44px; height: 44px; border-radius: 12px; align-items: center; justify-content: center; color: var(--slate); }
.nav__toggle svg { width: 24px; height: 24px; }

/* ---------- Hero ---------- */
.hero { position: relative; overflow: hidden; background: var(--slate); }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(270deg, rgba(26,29,30,.66) 0%, rgba(41,64,73,.38) 46%, rgba(41,64,73,.05) 100%),
    linear-gradient(0deg, rgba(26,29,30,.42), rgba(26,29,30,0) 60%);
}
.hero__inner { position: relative; z-index: 1; padding-block: clamp(90px, 15vh, 160px); max-width: 720px; }
.hero__inner .eyebrow { color: var(--teal-mark); }
.hero__inner .eyebrow::before { background: var(--teal-mark); }
.hero h1 { color: #fff; margin-bottom: 20px; text-shadow: 0 2px 22px rgba(0,0,0,.4); }
.hero p { color: rgba(255,255,255,.92); font-size: clamp(1.05rem, 1.8vw, 1.3rem); max-width: 580px; margin-bottom: 34px; text-shadow: 0 1px 14px rgba(0,0,0,.4); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Value strip ---------- */
.valuestrip { position: relative; z-index: 2; margin-top: -58px; }
.valuestrip__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: var(--line); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); border: 1px solid var(--line);
}
.vcard { background: #fff; padding: 28px 24px; transition: background .25s; }
.vcard:hover { background: var(--teal-mist); }
.vcard__ic { width: 44px; height: 44px; color: var(--teal); margin-bottom: 14px; }
.vcard__ic svg { width: 100%; height: 100%; }
.vcard p { font-size: .98rem; color: var(--ink-2); font-weight: 500; line-height: 1.6; }

/* ---------- Intro split ---------- */
.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(32px, 6vw, 80px); align-items: center; }
.split--rev { grid-template-columns: .95fr 1.05fr; }
.split__media { position: relative; }
.split__media img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow); aspect-ratio: 4/3.2; object-fit: cover; }
.split__media .badge {
  position: absolute; inset-block-end: -22px; inset-inline-start: -22px;
  background: #fff; border-radius: var(--radius-sm); box-shadow: var(--shadow);
  padding: 18px 22px; display: flex; align-items: center; gap: 14px; border: 1px solid var(--line);
}
.split__media .badge b { font-size: 1.9rem; color: var(--teal-deep); font-weight: 700; line-height: 1; }
.split__media .badge span { font-size: .85rem; color: var(--gray); }
.split__media .badge .vcard__ic { margin: 0; width: 38px; height: 38px; }

/* ---------- Services cards ---------- */
.cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.cards--4 { grid-template-columns: repeat(4, 1fr); }
.scard {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px; overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
}
.scard::before {
  content: ""; position: absolute; inset-block-start: 0; inset-inline-end: 0;
  width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--teal-mark), var(--teal));
  transform: scaleX(0); transform-origin: right; transition: transform .35s var(--ease);
}
.scard:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--teal-soft); }
.scard:hover::before { transform: scaleX(1); }
.scard__ic {
  width: 58px; height: 58px; border-radius: 14px; background: var(--teal-pale);
  color: var(--teal-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
  transition: background .3s, color .3s;
}
.scard:hover .scard__ic { background: var(--teal); color: #fff; }
.scard__ic svg { width: 28px; height: 28px; }
.scard h3 { margin-bottom: 10px; }
.scard p { color: var(--gray); font-size: .98rem; }
.scard .index { position: absolute; inset-block-start: 26px; inset-inline-start: 28px; font-family: var(--font-en); font-size: .85rem; color: var(--teal-soft); font-weight: 600; }

/* ---------- CTA band ---------- */
.cta-band { position: relative; overflow: hidden; background: linear-gradient(120deg, var(--slate), var(--teal-deep)); color: #fff; border-radius: var(--radius-lg); padding: clamp(44px, 6vw, 72px); }
.cta-band::after {
  content: ""; position: absolute; inset-block-start: -40%; inset-inline-start: -8%;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle at 60% 40%, rgba(192,138,62,.22), transparent 58%), radial-gradient(circle, rgba(116,183,200,.35), transparent 65%);
}
.cta-band__inner { position: relative; z-index: 1; display: flex; align-items: center; justify-content: space-between; gap: 36px; flex-wrap: wrap; }
.cta-band h2 { color: #fff; max-width: 720px; }
.cta-band p { color: rgba(255,255,255,.85); margin-top: 12px; max-width: 640px; }

/* ---------- Values list (about) ---------- */
.vlist { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.vitem { display: flex; gap: 16px; align-items: flex-start; padding: 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: box-shadow .25s, transform .25s; }
.vitem:hover { box-shadow: var(--shadow-sm); transform: translateY(-3px); }
.vitem__ic { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 12px; background: var(--teal-mist); color: var(--teal); display: flex; align-items: center; justify-content: center; }
.vitem__ic svg { width: 24px; height: 24px; }
.vitem h4 { font-size: 1.05rem; margin-bottom: 4px; }
.vitem p { font-size: .92rem; color: var(--gray); }

/* ---------- Vision / Mission ---------- */
.vm { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.vm__card { padding: 38px 34px; border-radius: var(--radius); position: relative; overflow: hidden; }
.vm__card--vision { background: linear-gradient(150deg, var(--slate), var(--teal-deep)); color: #fff; }
.vm__card--mission { background: var(--teal-pale); color: var(--slate); border: 1px solid var(--teal-soft); }
.vm__card .vcard__ic { width: 52px; height: 52px; }
.vm__card--vision .vcard__ic { color: var(--teal-mark); }
.vm__card--mission .vcard__ic { color: var(--teal-deep); }
.vm__card h3 { margin-bottom: 12px; }
.vm__card--vision h3 { color: #fff; }
.vm__card p { font-size: 1.05rem; line-height: 1.8; }
.vm__card--vision p { color: rgba(255,255,255,.9); }

/* ---------- Methodology steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; counter-reset: step; }
.step { position: relative; padding: 32px 26px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.step__n { font-family: var(--font-en); font-size: 2.4rem; font-weight: 600; color: var(--gold); line-height: 1; margin-bottom: 14px; }
.step__ic { width: 40px; height: 40px; color: var(--teal); margin-bottom: 12px; }
.step__ic svg { width: 100%; height: 100%; }
.step h4 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { font-size: .92rem; color: var(--gray); }
.step:not(:last-child)::after {
  content: ""; position: absolute; inset-block-start: 46px; inset-inline-start: -12px;
  width: 24px; height: 2px; background: var(--teal-soft);
}

/* ---------- Feature list (housing) ---------- */
.feat { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.feat li { display: flex; gap: 14px; align-items: flex-start; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); }
.feat__ic { flex: 0 0 auto; width: 40px; height: 40px; border-radius: 10px; background: var(--teal-pale); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; }
.feat__ic svg { width: 22px; height: 22px; }
.feat b { display: block; font-size: 1.02rem; color: var(--ink); margin-bottom: 2px; }
.feat span { font-size: .9rem; color: var(--gray); }

/* ---------- Audience chips (housing target) ---------- */
.chips { display: flex; flex-wrap: wrap; gap: 12px; }
.chip { display: inline-flex; align-items: center; gap: 10px; padding: 12px 20px; background: #fff; border: 1px solid var(--teal-soft); border-radius: 999px; font-weight: 500; color: var(--slate); }
.chip svg { width: 20px; height: 20px; color: var(--teal); }

/* ---------- Sectors grid ---------- */
.sectors { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.sector { display: flex; gap: 16px; align-items: center; padding: 22px 24px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); transition: border-color .25s, box-shadow .25s; }
.sector:hover { border-color: var(--teal-soft); box-shadow: var(--shadow-sm); }
.sector__ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: var(--teal-mist); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; }
.sector__ic svg { width: 26px; height: 26px; }
.sector b { font-size: 1.05rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: start; }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(26px, 4vw, 40px); box-shadow: var(--shadow-sm); }
.field { margin-bottom: 20px; text-align: right; }
.field label { display: block; font-size: .9rem; font-weight: 600; color: var(--slate); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--font-ar); font-size: 1rem; color: var(--ink);
  background: var(--paper-2); border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 13px 16px; text-align: right; transition: border-color .2s, background .2s, box-shadow .2s;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal); background: #fff; box-shadow: 0 0 0 4px var(--teal-pale);
}
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' stroke='%236A6A6A' stroke-width='2' viewBox='0 0 24 24'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 16px center; padding-left: 42px; }
.form .btn { width: 100%; margin-top: 6px; }
.form__note { font-size: .82rem; color: var(--gray-2); margin-top: 14px; text-align: center; }

.contact-info { display: flex; flex-direction: column; gap: 14px; }
.cinfo { display: flex; gap: 16px; align-items: center; padding: 20px 22px; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); }
.cinfo__ic { flex: 0 0 auto; width: 48px; height: 48px; border-radius: 12px; background: var(--teal-pale); color: var(--teal-deep); display: flex; align-items: center; justify-content: center; }
.cinfo__ic svg { width: 24px; height: 24px; }
.cinfo b { display: block; font-size: .82rem; color: var(--gray); font-weight: 600; margin-bottom: 2px; }
.cinfo a, .cinfo span { font-size: 1.05rem; color: var(--ink); font-weight: 500; }
.channels { display: flex; gap: 12px; margin-top: 6px; }
.channels a { width: 46px; height: 46px; border-radius: 12px; background: var(--slate); color: #fff; display: flex; align-items: center; justify-content: center; transition: background .25s, transform .25s; }
.channels a:hover { background: var(--teal); transform: translateY(-3px); }
.channels a svg { width: 22px; height: 22px; }

/* ---------- Page hero (inner pages) ---------- */
.pagehero { position: relative; background: var(--slate); overflow: hidden; }
.pagehero__bg { position: absolute; inset: 0; z-index: 0; opacity: .58; }
.pagehero__bg img { width: 100%; height: 100%; object-fit: cover; }
.pagehero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(270deg, rgba(41,64,73,.8) 0%, rgba(41,64,73,.5) 55%, rgba(41,64,73,.28) 100%); z-index: 0; }
.pagehero__inner { position: relative; z-index: 1; padding-block: clamp(66px, 10vw, 108px); max-width: 760px; }
.pagehero .eyebrow { color: var(--teal-mark); }
.pagehero .eyebrow::before { background: var(--teal-mark); }
.pagehero h1 { color: #fff; margin-bottom: 14px; text-shadow: 0 2px 20px rgba(0,0,0,.4); }
.pagehero p { color: rgba(255,255,255,.9); font-size: clamp(1rem, 1.6vw, 1.2rem); max-width: 620px; text-shadow: 0 1px 12px rgba(0,0,0,.4); }
.crumbs { display: flex; gap: 8px; align-items: center; font-size: .85rem; color: rgba(255,255,255,.6); margin-bottom: 18px; }
.crumbs a:hover { color: #fff; }

/* ---------- Footer ---------- */
.site-footer { background: var(--ink); color: rgba(255,255,255,.72); padding-block: 60px 28px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; margin-bottom: 44px; }
.footer-brand img { height: 46px; margin-bottom: 18px; }
.footer-brand p { font-size: .92rem; line-height: 1.8; max-width: 320px; }
.footer-col h4 { font-size: 1rem; color: #fff; margin-bottom: 18px; }
.footer-col ul { display: flex; flex-direction: column; gap: 11px; }
.footer-col a, .footer-col li { font-size: .92rem; transition: color .2s; }
.footer-col a:hover { color: var(--teal-mark); }
.footer-col .with-ic { display: flex; gap: 10px; align-items: flex-start; }
.footer-col .with-ic svg { width: 18px; height: 18px; color: var(--teal-mark); flex: 0 0 auto; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 24px; display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; font-size: .85rem; }
.footer-bottom .channels a { width: 40px; height: 40px; background: rgba(255,255,255,.08); }
.footer-bottom .channels a:hover { background: var(--teal); }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
[data-delay="1"]{transition-delay:.08s}[data-delay="2"]{transition-delay:.16s}[data-delay="3"]{transition-delay:.24s}[data-delay="4"]{transition-delay:.32s}

/* ---------- Mobile nav ---------- */
.mobile-menu { position: fixed; inset: 0; z-index: 200; background: rgba(26,29,30,.5); backdrop-filter: blur(4px); opacity: 0; pointer-events: none; transition: opacity .3s; }
.mobile-menu.open { opacity: 1; pointer-events: auto; }
.mobile-menu__panel { position: absolute; inset-block: 0; inset-inline-end: 0; width: min(86vw, 340px); background: #fff; padding: 26px 24px; display: flex; flex-direction: column; gap: 8px; transform: translateX(100%); transition: transform .35s var(--ease); }
.mobile-menu.open .mobile-menu__panel { transform: none; }
.mobile-menu__panel .close { align-self: flex-start; width: 42px; height: 42px; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--slate); margin-bottom: 14px; }
.mobile-menu__panel a { font-size: 1.1rem; font-weight: 500; padding: 13px 16px; border-radius: 12px; color: var(--ink-2); }
.mobile-menu__panel a:hover, .mobile-menu__panel a.active { background: var(--teal-mist); color: var(--teal-deep); }
.mobile-menu__panel .btn { margin-top: 14px; }

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .nav__links, .nav__cta .btn { display: none; }
  .nav__toggle { display: flex; }
  .valuestrip__grid { grid-template-columns: repeat(2, 1fr); }
  .cards--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .step:nth-child(2)::after, .step:not(:last-child)::after { display: none; }
  .vlist { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 720px) {
  .split, .split--rev, .vm, .contact-grid { grid-template-columns: 1fr; }
  .split--rev .split__media { order: -1; }
  .cards, .cards--4, .feat, .sectors, .vlist, .steps { grid-template-columns: 1fr; }
  .valuestrip { margin-top: -30px; }
  .valuestrip__grid { grid-template-columns: 1fr; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .split__media .badge { inset-inline-start: 12px; inset-block-end: -18px; }
  .hero__inner { padding-block: 70px 90px; }
}
