/* ============================================================
   Iris Property Group - styles.css
   Brand: navy (primary) with teal accent, from the company logo.
   Single light theme, trust-first, modern. No em-dashes anywhere.
   ============================================================ */

:root {
  /* Brand - navy */
  --navy-900: #1c2a36;
  --navy-800: #243643;
  --navy-700: #2c3e50;   /* primary brand */
  --navy-600: #3a4f63;
  --navy-300: #9fb0bd;
  --navy-100: #dde6ec;
  --navy-50:  #eef3f6;

  /* Brand - teal accent */
  --teal-700: #137687;
  --teal-600: #1894a4;   /* accent */
  --teal-500: #23a9bb;
  --teal-100: #d4eef2;
  --teal-50:  #eaf7f9;

  /* Neutrals */
  --ink:    #1c2a36;
  --ink-2:  #2c3e50;
  --muted:  #5a6b78;
  --muted-2:#8595a0;
  --line:   #e2e9ee;
  --bg:     #ffffff;
  --bg-soft:#f6f9fb;

  --radius: 16px;
  --radius-sm: 10px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 2px rgba(28, 42, 54, 0.06), 0 4px 14px rgba(28, 42, 54, 0.07);
  --shadow-md: 0 8px 30px rgba(28, 42, 54, 0.11);
  --shadow-lg: 0 24px 60px rgba(28, 42, 54, 0.16);

  --maxw: 1180px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: "Outfit", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }

a { color: var(--teal-700); text-decoration: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.1;
  margin: 0 0 .5em;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }

.eyebrow {
  font-family: var(--font-body);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 12px;
  font-weight: 700;
  color: var(--teal-700);
  margin: 0 0 14px;
}
.eyebrow-teal { color: var(--teal-700); }

.grad {
  background: linear-gradient(100deg, var(--navy-700) 10%, var(--teal-600));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  border: 1.5px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .18s var(--ease), box-shadow .18s var(--ease),
              background .18s var(--ease), border-color .18s var(--ease), color .18s var(--ease);
}
.btn:active { transform: translateY(1px) scale(0.99); }
.btn-sm { padding: 11px 18px; font-size: 14px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }
.btn-block { width: 100%; }

.btn-primary {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-800));
  color: #fff;
  box-shadow: 0 8px 22px rgba(28, 42, 54, 0.26);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(28, 42, 54, 0.32);
  background: linear-gradient(135deg, var(--navy-700), var(--teal-700));
}

.btn-outline {
  background: #fff;
  color: var(--navy-700);
  border-color: var(--navy-300);
}
.btn-outline:hover { border-color: var(--teal-600); color: var(--teal-700); background: var(--teal-50); }

.btn-ghost {
  background: rgba(255,255,255,0.7);
  color: var(--navy-800);
  border-color: var(--line);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover { background: #fff; border-color: var(--teal-500); color: var(--teal-700); transform: translateY(-2px); }

/* hero buttons over photo */
.btn-light { background: #fff; color: var(--navy-700); box-shadow: 0 10px 30px rgba(0,0,0,.18); }
.btn-light:hover { background: var(--teal-50); color: var(--teal-700); transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,.24); }
.btn-ghost-light {
  background: rgba(255,255,255,0.10);
  color: #fff;
  border-color: rgba(255,255,255,0.55);
  backdrop-filter: blur(6px);
}
.btn-ghost-light:hover { background: rgba(255,255,255,0.20); border-color: #fff; transform: translateY(-2px); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease);
}
.site-header.scrolled { border-bottom-color: var(--line); box-shadow: var(--shadow-sm); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 18px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-mark { height: 30px; width: auto; display: block; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.01em;
  color: var(--navy-700);
  line-height: 1;
}
.brand-name--footer { color: #fff; font-weight: 700; font-size: 20px; }

.nav-links { display: flex; gap: 28px; }
.nav-links a {
  font-size: 15px; font-weight: 500; color: var(--ink-2);
  position: relative; padding: 4px 0;
}
.nav-links a:hover { color: var(--teal-700); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--teal-500); transition: width .2s var(--ease);
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: 0; cursor: pointer; padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy-700); border-radius: 2px; transition: .25s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav[hidden] { display: none; }
.mobile-nav {
  display: flex; flex-direction: column; gap: 4px;
  padding: 10px 24px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.mobile-nav a {
  font-size: 17px; font-weight: 600; color: var(--ink-2);
  padding: 12px 0; border-bottom: 1px solid var(--line);
}
.mobile-nav a:last-child { border: 0; margin-top: 10px; color: #fff; }

/* ---------- Hero (photo) ---------- */
.hero {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 86dvh;
  max-height: 840px;
  padding: 120px 0 88px;
  color: #fff;
}
.hero-media { position: absolute; inset: 0; z-index: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(100deg, rgba(20,30,40,.92) 0%, rgba(20,30,40,.66) 42%, rgba(20,30,40,.32) 100%),
    linear-gradient(to top, rgba(20,30,40,.55), transparent 38%);
}
.hero-inner { position: relative; z-index: 1; max-width: 760px; }
.eyebrow-light { color: #7fe0ef; }
.hero-title {
  font-size: clamp(40px, 6vw, 66px);
  font-weight: 800;
  margin: 0 0 22px;
  color: #fff;
  text-shadow: 0 2px 30px rgba(0,0,0,.25);
}
.grad-light {
  background: linear-gradient(100deg, #6ad9ea, #aef0f6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: rgba(255,255,255,.92);
  max-width: 56ch;
  margin: 0 0 32px;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Trust strip ---------- */
.trust { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg-soft); }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; padding: 30px 24px;
}
.trust-item { display: flex; flex-direction: column; gap: 4px; }
.trust-num { font-family: var(--font-display); font-weight: 800; font-size: 24px; color: var(--navy-700); }
.trust-label { font-size: 14px; color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section--soft { background: var(--bg-soft); }
.section--tint-teal { background: var(--teal-50); }
.section--tint-navy { background: var(--navy-50); }
.section--dark { background: var(--navy-800); color: #fff; }
.section--dark .on-dark { color: #fff; }
.section--dark .eyebrow-on-dark { color: #7fe0ef; }
.section--dark .lead-on-dark { color: rgba(255,255,255,.78); }

/* ---------- How we work (trust band) ---------- */
.pledge-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; margin-top: 8px; }
.pledge { text-align: left; }
.pledge-icon {
  display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px;
  margin-bottom: 16px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 18px no-repeat,
    linear-gradient(135deg, var(--teal-600), var(--teal-500));
}
.pledge h4 { font-size: 18px; margin: 0 0 8px; color: #fff; }
.pledge p { margin: 0; color: rgba(255,255,255,.72); font-size: 14.5px; }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head h2 { font-size: clamp(30px, 4vw, 44px); }
.section-lead { font-size: 18px; color: var(--muted); margin: 14px 0 0; }

/* ---------- Two services ---------- */
.path-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.path-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 36px; box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column; align-items: flex-start;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.path-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--teal-100); }
.path-card--promo { background: linear-gradient(180deg, #fff, var(--teal-50)); }
.path-card--sale { background: linear-gradient(180deg, #fff, var(--navy-50)); }
.path-card h3 { font-size: 23px; margin: 16px 0 10px; }
.path-card p { color: var(--muted); margin: 0 0 18px; }

.tag {
  display: inline-flex; align-items: center; font-size: 12px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 6px 12px; border-radius: var(--radius-pill);
}
.tag-teal { background: var(--teal-100); color: var(--teal-700); }
.tag-navy { background: var(--navy-100); color: var(--navy-700); }

.check-list { list-style: none; padding: 0; margin: 0 0 26px; display: grid; gap: 12px; }
.check-list li { position: relative; padding-left: 30px; color: var(--ink-2); font-size: 15.5px; }
.check-list li::before {
  content: ""; position: absolute; left: 0; top: 3px; width: 18px; height: 18px;
  border-radius: 50%;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 12px no-repeat,
    var(--teal-600);
}
.path-card .btn { margin-top: auto; }

.outcomes-note {
  margin: 30px auto 0; text-align: center; max-width: 60ch;
  font-size: 15.5px; color: var(--muted);
}

/* ---------- Technologies ---------- */
.tech-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.tech-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.tech-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tech-img { aspect-ratio: 3 / 2; overflow: hidden; }
.tech-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.tech-card:hover .tech-img img { transform: scale(1.05); }
.tech-body { padding: 22px 24px 26px; }
.tech-body h3 { font-size: 20px; margin: 0 0 8px; }
.tech-body p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Process flow (unified) ---------- */
.flow {
  list-style: none; padding: 0; margin: 0;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  counter-reset: flow;
}
.flow-step {
  position: relative;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 24px; box-shadow: var(--shadow-sm);
}
.flow-step h4 { font-size: 17px; margin: 16px 0 6px; }
.flow-step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* ---------- Split sections ---------- */
.split-inner { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.split--reverse .split-media { order: 2; }
.split-body h2 { font-size: clamp(28px, 3.5vw, 40px); margin-bottom: 18px; }
.split-body > p { color: var(--muted); font-size: 17px; max-width: 56ch; }

.feature-rows { display: grid; gap: 20px; margin: 28px 0 32px; }
.feature-row { border-left: 2px solid var(--teal-100); padding-left: 18px; }
.feature-row h4 { font-size: 17px; margin: 0 0 4px; }
.feature-row p { margin: 0; color: var(--muted); font-size: 15.5px; }

.split-media { position: relative; }
.split-media img {
  width: 100%; height: auto; border-radius: var(--radius);
  box-shadow: var(--shadow-lg); object-fit: cover; aspect-ratio: 9 / 7;
}
.media-badge {
  position: absolute; left: 22px; bottom: -18px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 14px 18px; box-shadow: var(--shadow-md);
  display: flex; flex-direction: column; gap: 2px;
}
.media-badge strong { font-family: var(--font-display); font-size: 17px; color: var(--teal-700); }
.media-badge span { font-size: 13px; color: var(--muted); }

/* ---------- Process ---------- */
.process-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.process-col { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: var(--shadow-sm); }
.steps { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 22px; }
.steps li { display: flex; gap: 16px; align-items: flex-start; }
.step-no {
  flex: 0 0 auto; width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center; font-family: var(--font-display);
  font-weight: 700; font-size: 15px; color: #fff;
  background: linear-gradient(135deg, var(--navy-700), var(--teal-600));
}
.steps h4 { font-size: 16.5px; margin: 4px 0 4px; }
.steps p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- Why grid ---------- */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.why-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: transform .2s var(--ease), box-shadow .2s var(--ease); }
.why-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-card h4 { font-size: 18px; margin-bottom: 8px; }
.why-card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ---------- FAQ ---------- */
.faq { display: grid; gap: 14px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 4px 22px; box-shadow: var(--shadow-sm); }
.faq-item summary {
  list-style: none; cursor: pointer; padding: 18px 0; font-family: var(--font-display);
  font-weight: 600; font-size: 17px; color: var(--ink);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+"; font-size: 24px; font-weight: 400; color: var(--teal-600);
  transition: transform .25s var(--ease); line-height: 1;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: var(--muted); font-size: 15.5px; }

/* ---------- Enquiry ---------- */
.section--enquire { background: linear-gradient(180deg, var(--bg-soft), #fff); }
.enquire-card {
  max-width: 860px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); overflow: hidden;
}
.enquiry-form { padding: 34px; }

.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label { font-size: 14px; font-weight: 600; color: var(--ink-2); }
.optional { font-weight: 400; color: var(--muted-2); }
.field input, .field select, .field textarea {
  font-family: var(--font-body); font-size: 15px; color: var(--ink);
  padding: 13px 14px; border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  background: #fff; transition: border-color .18s var(--ease), box-shadow .18s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--teal-500); box-shadow: 0 0 0 4px var(--teal-100);
}
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }

.consent { display: flex; gap: 12px; align-items: flex-start; margin: 6px 0 22px; font-size: 14px; color: var(--muted); }
.consent input { margin-top: 3px; width: 17px; height: 17px; accent-color: var(--teal-600); flex: 0 0 auto; }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; opacity: 0; }

/* button states */
.btn-spinner {
  width: 18px; height: 18px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.45); border-top-color: #fff;
  display: none; animation: spin .7s linear infinite;
}
.btn.is-loading .btn-spinner { display: inline-block; }
.btn.is-loading .btn-label { opacity: .8; }
.btn[disabled] { opacity: .75; cursor: not-allowed; transform: none; }
@keyframes spin { to { transform: rotate(360deg); } }

.form-status { margin: 16px 0 0; font-size: 15px; font-weight: 600; text-align: center; min-height: 1px; }
.form-status.is-success { color: var(--teal-700); }
.form-status.is-error { color: #b3261e; }

.enquire-alt { text-align: center; margin: 24px 0 0; color: var(--muted); font-size: 15px; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-900); color: rgba(255,255,255,.78); padding: 64px 0 28px; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 36px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.12); }
.footer-brand p { margin: 16px 0 0; font-size: 14.5px; max-width: 36ch; color: rgba(255,255,255,.62); }
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h5 { color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .12em; margin: 0 0 4px; }
.footer-col a { color: rgba(255,255,255,.74); font-size: 15px; }
.footer-col a:hover { color: var(--teal-500); }
.footer-muted { color: rgba(255,255,255,.5); font-size: 14px; }
.footer-base { padding-top: 24px; font-size: 13.5px; color: rgba(255,255,255,.55); }

/* ---------- Inner pages (about / legal) ---------- */
.page-hero {
  padding: 132px 0 52px;
  background: var(--bg-soft);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { font-size: clamp(32px, 5vw, 50px); margin: 0 0 14px; }
.page-hero p { font-size: 18px; color: var(--muted); max-width: 62ch; margin: 0; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-size: 23px; margin: 40px 0 12px; }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 18px; margin: 28px 0 10px; }
.prose p, .prose li { color: var(--ink-2); font-size: 16px; line-height: 1.72; }
.prose p { margin: 0 0 16px; }
.prose ul { padding-left: 22px; margin: 0 0 16px; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--teal-700); text-decoration: underline; text-underline-offset: 2px; }
.prose a:hover { color: var(--teal-600); }
.legal-meta { color: var(--muted); font-size: 14px; margin: 0 0 28px; }

.detail-card {
  margin: 36px 0 8px;
  background: var(--navy-50);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 30px;
}
.detail-card h3 { margin: 0 0 18px; font-size: 19px; }
.detail-list { margin: 0; display: grid; gap: 14px; }
.detail-list > div { display: grid; grid-template-columns: 190px 1fr; gap: 16px; align-items: baseline; }
.detail-list dt { color: var(--muted); font-size: 14.5px; }
.detail-list dd { margin: 0; color: var(--ink); font-size: 15.5px; font-weight: 600; }
.prose-cta { margin-top: 40px; }

/* ---------- Footer legal block ---------- */
.footer-legal { font-size: 13px; line-height: 1.6; color: rgba(255,255,255,.5); margin: 0 0 18px; max-width: 90ch; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .path-card, .why-card { transition: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .path-grid { grid-template-columns: 1fr; }
  .tech-grid { grid-template-columns: 1fr; }
  .flow { grid-template-columns: repeat(2, 1fr); }
  .pledge-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 24px; }
  .split-inner { grid-template-columns: 1fr; gap: 40px; }
  .split--reverse .split-media { order: 0; }
  .process-grid { grid-template-columns: 1fr; gap: 22px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 900px) {
  .nav-links, .nav-actions { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 760px) {
  .hero { min-height: 92dvh; padding-top: 104px; }
  .flow { grid-template-columns: 1fr; }
  .pledge-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .field-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .detail-list > div { grid-template-columns: 1fr; gap: 2px; }
  .detail-list dt { font-size: 13.5px; }
  .media-badge { left: 16px; }
  .enquiry-form { padding: 22px; }
}
