/* =========================================================
   Spensol — Medical Recruitment Consultancy
   Design system + global styles
   Brand: Black #111111 · Gold #F4B51B · White / Off-white
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  --black: #111111;
  --ink: #1a1a1a;
  --gold: #f4b51b;
  --gold-dark: #d99c07;
  --gold-soft: #fdf3d8;
  --white: #ffffff;
  --offwhite: #f8f7f3;
  --gray-light: #f2f2f2;
  --gray-line: #e7e6e1;
  --gray: #555555;
  --gray-soft: #7a7a7a;

  --maxw: 1200px;
  --radius-sm: 10px;
  --radius: 14px;
  --radius-lg: 20px;

  --shadow-sm: 0 2px 10px rgba(17, 17, 17, .05);
  --shadow: 0 14px 40px rgba(17, 17, 17, .08);
  --shadow-lg: 0 30px 70px rgba(17, 17, 17, .14);

  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-head: "Plus Jakarta Sans", var(--font-body);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset / base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  -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; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--black);
}

h1 { font-size: clamp(2.3rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 2vw, 1.4rem); }

p { color: var(--gray); }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }
.section--tight { padding: clamp(52px, 7vw, 90px) 0; }
.bg-offwhite { background: var(--offwhite); }
.bg-gray { background: var(--gray-light); }
.bg-dark { background: var(--black); }

.eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 18px;
}
.eyebrow--light { color: var(--gold); }

.section-head { max-width: 680px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head p { font-size: 1.06rem; margin-top: 16px; }

.lead { font-size: 1.12rem; color: var(--gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .98rem;
  padding: 15px 28px;
  border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }

.btn-primary {
  background: var(--gold);
  color: var(--black);
  box-shadow: 0 10px 24px rgba(244, 181, 27, .32);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(244, 181, 27, .4);
}

.btn-secondary {
  background: var(--white);
  color: var(--black);
  border: 1.5px solid var(--black);
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}

.btn-outline-gold {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); transform: translateY(-2px); }

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, .35);
}
.btn-ghost-light:hover { border-color: var(--gold); color: var(--gold); transform: translateY(-2px); }

.btn-block { width: 100%; }

.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--black);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 3px;
  transition: gap .25s var(--ease), color .25s var(--ease);
}
.btn-link:hover { gap: 14px; color: var(--gold-dark); }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .3s var(--ease), border-color .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled {
  box-shadow: var(--shadow-sm);
  border-bottom-color: var(--gray-line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 78px;
}
.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand img { height: 44px; width: auto; }

.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-inline: auto;
}
.nav-menu a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: .97rem;
  color: var(--ink);
  padding: 9px 16px;
  border-radius: 999px;
  position: relative;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-menu a:hover { color: var(--gold-dark); }
.nav-menu a.active { color: var(--black); }
.nav-menu a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-actions { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.nav-menu .nav-cta { display: none; }

.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: 12px;
  border: 1px solid var(--gray-line);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: var(--white);
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   Hero (home)
   ========================================================= */
.hero {
  background: var(--offwhite);
  position: relative;
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  padding: clamp(56px, 8vw, 104px) 0;
}
.hero-copy h1 { margin-bottom: 22px; }
.hero-copy .lead { max-width: 520px; margin-bottom: 34px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-stats {
  display: flex;
  gap: 38px;
  margin-top: 46px;
  padding-top: 30px;
  border-top: 1px solid var(--gray-line);
}
.hero-stats .stat .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.9rem;
  color: var(--black);
}
.hero-stats .stat .num span { color: var(--gold); }
.hero-stats .stat .label {
  font-size: .86rem;
  color: var(--gray);
  margin-top: 2px;
}

.hero-media { position: relative; }
.hero-media .photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 4.4;
}
.hero-media .photo img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::before {
  content: "";
  position: absolute;
  inset: auto -30px -30px auto;
  width: 62%; height: 62%;
  background: var(--gold);
  border-radius: var(--radius-lg);
  z-index: 0;
  opacity: .9;
}
.hero-media .photo { position: relative; z-index: 1; }

.hero-badge {
  position: absolute;
  left: -22px; bottom: 34px;
  z-index: 2;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}
.hero-badge .ic {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.hero-badge .ic svg { width: 24px; height: 24px; }
.hero-badge strong { font-family: var(--font-head); display: block; font-size: .98rem; color: var(--black); }
.hero-badge span { font-size: .8rem; color: var(--gray); }

/* =========================================================
   Page hero (inner pages)
   ========================================================= */
.page-hero {
  position: relative;
  color: var(--white);
  padding: clamp(90px, 13vw, 160px) 0 clamp(70px, 10vw, 120px);
  background: var(--black);
  overflow: hidden;
}
.page-hero .bg {
  position: absolute; inset: 0;
  z-index: 0;
}
.page-hero .bg img { width: 100%; height: 100%; object-fit: cover; opacity: .34; }
.page-hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(17,17,17,.92) 0%, rgba(17,17,17,.62) 55%, rgba(17,17,17,.35) 100%);
  z-index: 1;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold); }
.page-hero h1 { color: var(--white); max-width: 820px; }
.page-hero p { color: rgba(255,255,255,.82); font-size: 1.14rem; max-width: 640px; margin-top: 20px; }
.breadcrumb {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 22px;
  font-family: var(--font-head);
}
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: var(--gold); }

/* =========================================================
   Intro / two-column media block
   ========================================================= */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}
.split--media-right { direction: ltr; }
.split-media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 5 / 4.3;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { margin-bottom: 18px; }
.split-copy p + p { margin-top: 16px; }
.split-copy .btn, .split-copy .btn-link { margin-top: 30px; }

.media-accent {
  position: absolute;
  inset: auto auto -26px -26px;
  width: 55%; height: 55%;
  border: 3px solid var(--gold);
  border-radius: var(--radius-lg);
  z-index: -1;
}

/* =========================================================
   Feature cards (Why Spensol)
   ========================================================= */
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }

.feature-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.feature-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: grid; place-items: center;
  margin-bottom: 22px;
  transition: background .3s var(--ease), color .3s var(--ease);
}
.feature-icon svg { width: 28px; height: 28px; }
.feature-card:hover .feature-icon { background: var(--gold); color: var(--black); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: .96rem; }

/* =========================================================
   Service cards
   ========================================================= */
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 34px 30px;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 4px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.service-card:hover::before { transform: scaleX(1); }
.service-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: .9rem;
  color: var(--gold-dark);
  letter-spacing: .05em;
}
.service-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: var(--black);
  color: var(--gold);
  display: grid; place-items: center;
  margin-bottom: 20px;
}
.service-icon svg { width: 27px; height: 27px; }
.service-card h3 { margin: 6px 0 12px; }
.service-card p { font-size: .96rem; }

/* =========================================================
   For Doctors / For Hospitals
   ========================================================= */
.duo { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.duo-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  color: var(--white);
  isolation: isolate;
}
.duo-card img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: transform .6s var(--ease);
}
.duo-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(17,17,17,.15) 0%, rgba(17,17,17,.85) 82%);
  z-index: -1;
}
.duo-card:hover img { transform: scale(1.06); }
.duo-inner { padding: 40px 36px; }
.duo-inner .tag {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}
.duo-inner h3 { color: var(--white); font-size: 1.55rem; margin-bottom: 12px; }
.duo-inner p { color: rgba(255,255,255,.85); margin-bottom: 24px; max-width: 360px; }

/* =========================================================
   CTA band
   ========================================================= */
.cta-band {
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(48px, 7vw, 84px) clamp(28px, 6vw, 80px);
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-band::before {
  content: "";
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(244,181,27,.28), transparent 70%);
}
.cta-band::after {
  content: "";
  position: absolute;
  bottom: -80px; left: -40px;
  width: 260px; height: 260px;
  background: radial-gradient(circle, rgba(244,181,27,.16), transparent 70%);
}
.cta-band .inner { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); max-width: 720px; margin-inline: auto; }
.cta-band p { color: rgba(255,255,255,.78); max-width: 560px; margin: 18px auto 0; }
.cta-band .cta-actions { margin-top: 34px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.cta-fullwidth { padding: clamp(64px, 9vw, 120px) 0; }
.cta-fullwidth h2 { color: var(--white); }

/* =========================================================
   Process steps
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step {
  position: relative;
  padding-top: 28px;
}
.step .num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.04em;
}
.step h3 { margin: 14px 0 8px; font-size: 1.2rem; }
.step p { font-size: .94rem; }
.step::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 46px; height: 4px;
  background: var(--gold);
  border-radius: 3px;
}

/* =========================================================
   Mission / Vision
   ========================================================= */
.mv-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius);
  padding: 40px 36px;
  position: relative;
  overflow: hidden;
}
.mv-card .mv-icon {
  width: 58px; height: 58px;
  border-radius: 14px;
  background: var(--gold);
  color: var(--black);
  display: grid; place-items: center;
  margin-bottom: 22px;
}
.mv-card .mv-icon svg { width: 30px; height: 30px; }
.mv-card h3 { font-size: 1.5rem; margin-bottom: 12px; }
.mv-card.dark { background: var(--black); }
.mv-card.dark h3 { color: var(--white); }
.mv-card.dark p { color: rgba(255,255,255,.8); }
.mv-card.dark .mv-icon { background: var(--gold); color: var(--black); }

/* =========================================================
   Contact
   ========================================================= */
.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(30px, 5vw, 60px); align-items: start; }

.info-list { margin-top: 30px; display: grid; gap: 22px; }
.info-item { display: flex; gap: 16px; align-items: flex-start; }
.info-item .ic {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--gold-soft);
  color: var(--gold-dark);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.info-item .ic svg { width: 22px; height: 22px; }
.info-item h4 { font-family: var(--font-head); font-size: .82rem; text-transform: uppercase; letter-spacing: .12em; color: var(--gray-soft); margin-bottom: 3px; }
.info-item p, .info-item a { color: var(--black); font-weight: 500; }
.info-item a:hover { color: var(--gold-dark); }

.whatsapp-btn {
  margin-top: 30px;
  background: #25d366;
  color: #fff;
  box-shadow: 0 10px 24px rgba(37, 211, 102, .3);
}
.whatsapp-btn:hover { background: #1eb457; transform: translateY(-2px); box-shadow: 0 16px 30px rgba(37,211,102,.4); }

.form-card {
  background: var(--white);
  border: 1px solid var(--gray-line);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-sm);
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: .88rem;
  color: var(--black);
}
.field label .req { color: var(--gold-dark); }
.field input, .field select, .field textarea {
  font-family: var(--font-body);
  font-size: .97rem;
  color: var(--ink);
  padding: 13px 16px;
  border: 1.5px solid var(--gray-line);
  border-radius: var(--radius-sm);
  background: var(--offwhite);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
  width: 100%;
}
.field textarea { resize: vertical; min-height: 120px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(244, 181, 27, .16);
}
.form-note { font-size: .84rem; color: var(--gray-soft); margin-top: 4px; }
.form-success {
  display: none;
  background: var(--gold-soft);
  border: 1px solid var(--gold);
  color: var(--black);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  font-weight: 500;
  font-size: .95rem;
  margin-bottom: 20px;
}
.form-success.show { display: block; }

.map-embed {
  margin-top: 28px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--gray-line);
  height: 320px;
  position: relative;
  background: var(--gray-light);
}
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--black); color: rgba(255,255,255,.72); padding-top: 72px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding-bottom: 52px;
}
.footer-brand img { height: 46px; margin-bottom: 20px; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,.62); font-size: .95rem; max-width: 320px; }
.footer-col h4 {
  font-family: var(--font-head);
  color: var(--white);
  font-size: .82rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { color: rgba(255,255,255,.66); font-size: .95rem; transition: color .2s var(--ease), padding .2s var(--ease); }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; font-size: .95rem; color: rgba(255,255,255,.66); }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }

.socials { display: flex; gap: 12px; margin-top: 22px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.16);
  display: grid; place-items: center;
  color: rgba(255,255,255,.75);
  transition: background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.socials a:hover { background: var(--gold); color: var(--black); border-color: var(--gold); transform: translateY(-3px); }
.socials svg { width: 18px; height: 18px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  font-size: .86rem;
  color: rgba(255,255,255,.5);
}
.footer-bottom .legal { display: flex; gap: 22px; }
.footer-bottom a:hover { color: var(--gold); }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  * { animation: none !important; }
}

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 992px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-media { order: -1; max-width: 460px; margin-inline: auto; }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 34px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 860px) {
  .nav-actions .btn { display: none; }
  .nav-toggle { display: flex; }

  .nav-menu {
    display: flex;
    position: fixed;
    inset: 78px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--white);
    padding: 18px 24px 26px;
    margin: 0;
    border-bottom: 1px solid var(--gray-line);
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: transform .3s var(--ease), opacity .3s var(--ease), visibility .3s var(--ease);
    max-height: calc(100vh - 78px);
    overflow-y: auto;
  }
  .nav-menu.open { transform: none; opacity: 1; visibility: visible; pointer-events: auto; }
  .nav-menu a { padding: 14px 16px; border-radius: 12px; font-size: 1.05rem; }
  .nav-menu a:hover { background: var(--offwhite); }
  .nav-menu a.active::after { display: none; }
  .nav-menu a.active { background: var(--gold-soft); }
  .nav-menu .nav-cta { display: block; }
  .nav-menu .btn {
    display: inline-flex;
    margin-top: 10px;
    justify-content: center;
  }
}

@media (max-width: 720px) {
  .split { grid-template-columns: 1fr; gap: 34px; }
  .split-media { order: -1; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .duo { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .cta-band .cta-actions .btn { width: 100%; }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .grid-4 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .hero-badge { left: 8px; right: 8px; max-width: none; }
  .media-accent { display: none; }
}
