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

/* =========================================================
   RMPL — OUR APPROACH (LIGHT THEME)
   Uses the same design tokens as the approved homepage
========================================================= */

:root {
  --bg: #ffffff;
  --bg-alt: #f2f7fb;

  --navy: #0b2a45;
  --text: #55657a;
  --muted: #8592a3;

  --green: #16a673;
  --green-2: #12c47a;

  --blue: #1e7fe0;
  --cyan: #31a6ff;

  --border: #e1e9f0;
  --border-soft: #eef3f8;

  --card: #ffffff;
  --max: 1440px;

  --shadow: 0 12px 34px rgba(11, 42, 69, .06);
}

*, *::before, *::after {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--navy);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
button { font-family: inherit; }
h1, h2, h3, p { margin-top: 0; }
img { display: block; max-width: 100%; }

.approach-page {
  min-height: 100vh;
  background:
    radial-gradient(ellipse 900px 500px at 12% 0%, rgba(30,127,224,.045), transparent 68%),
    radial-gradient(ellipse 850px 500px at 90% 35%, rgba(22,166,115,.035), transparent 68%),
    var(--bg);
}

/* =========================================================
   NAVBAR — identical system to homepage
========================================================= */

.site-header {
  height: 116px;
  position: relative;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--border);
}

.nav-shell {
  width: min(calc(100% - 76px), var(--max));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  flex: 0 0 180px;
  display: flex;
  align-items: center;
}

.brand-logo {
  width: 170px;
  height: 72px;
  object-fit: contain;
  object-position: left center;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 2vw, 32px);
  white-space: nowrap;
}

.main-nav > a,
.nav-dropdown-trigger {
  position: relative;
  padding: 10px 0;
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: 0;
  cursor: pointer;
}

.main-nav > a:hover,
.main-nav > a.active,
.nav-dropdown-trigger:hover,
.nav-dropdown-trigger.page-active {
  color: var(--blue);
}

.main-nav > a.active::after,
.nav-dropdown-trigger.page-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  height: 2px;
  background: var(--blue);
}

.nav-dropdown { position: relative; }

.dropdown-arrow {
  display: inline-block;
  margin-left: 5px;
  transition: transform .3s ease;
}

.nav-dropdown:hover .dropdown-arrow,
.nav-dropdown:focus-within .dropdown-arrow,
.nav-dropdown.is-open .dropdown-arrow {
  transform: rotate(180deg);
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 2px);
  left: 50%;
  width: 280px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(11,42,69,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity .25s ease, visibility .25s ease, transform .3s ease;
}

.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown:focus-within > .dropdown-menu,
.nav-dropdown.is-open > .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.dropdown-item,
.submenu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 48px;
  padding: 0 16px;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 7px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: left;
  cursor: pointer;
  transition: color .25s ease, background .25s ease, padding-left .25s ease;
}

.dropdown-item:hover,
.submenu-item:hover {
  color: var(--green);
  background: rgba(22,166,115,.07);
  padding-left: 21px;
}

.dropdown-submenu { position: relative; }
.submenu-trigger { width: 100%; }

.submenu-arrow {
  font-size: 20px;
  color: var(--muted);
  transition: transform .25s ease, color .25s ease;
}

.dropdown-submenu:hover .submenu-arrow,
.dropdown-submenu:focus-within .submenu-arrow,
.dropdown-submenu.is-open .submenu-arrow {
  color: var(--green);
  transform: translateX(3px);
}

.submenu-menu {
  position: absolute;
  top: -8px;
  left: calc(100% + 8px);
  width: 310px;
  padding: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 20px 50px rgba(11,42,69,.14);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity .25s ease, visibility .25s ease, transform .3s ease;
}

.dropdown-submenu:hover > .submenu-menu,
.dropdown-submenu:focus-within > .submenu-menu,
.dropdown-submenu.is-open > .submenu-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(0);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px !important;
  background: var(--blue) !important;
  color: #fff !important;
  border: 1px solid var(--blue) !important;
  border-radius: 9px;
  font-weight: 700 !important;
  transition: background .3s ease, border-color .3s ease, transform .3s ease;
}

.nav-cta:hover {
  background: var(--navy) !important;
  border-color: var(--navy) !important;
  transform: translateY(-1px);
}

.mobile-menu {
  display: none;
  border: 0;
  background: none;
  color: var(--navy);
  font-size: 24px;
  cursor: pointer;
}

/* =========================================================
   SHARED SECTION CARD
========================================================= */

.section-card {
  width: min(calc(100% - 36px), var(--max));
  margin: 10px auto 0;
  border: 1px solid var(--border);
  border-radius: 15px;
  background: #fff;
  box-shadow: var(--shadow);
}

.section-kicker {
  margin-bottom: 12px;
  color: var(--blue);
  font-size: 10px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.heading-rule {
  width: 52px;
  height: 2px;
  margin: 21px 0 24px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

/* =========================================================
   PAGE HERO
========================================================= */

.page-hero {
  width: min(calc(100% - 36px), var(--max));
  margin: 18px auto 14px;
  padding: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--bg-alt);
  box-shadow: var(--shadow);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  align-items: stretch;
  min-height: 400px;
}

.page-hero-copy {
  padding: 56px 20px 48px 46px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.page-eyebrow {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 11px;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
}

.page-hero h1 {
  max-width: 620px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.3rem, 3.6vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.04em;
  font-weight: 700;
}

.page-hero h1 span {
  display: block;
  color: var(--green);
}

.page-hero-rule {
  width: 52px;
  height: 2px;
  margin: 24px 0 20px;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.page-hero-copy > p {
  max-width: 520px;
  margin: 0;
  color: var(--navy);
  font-size: 15px;
  line-height: 1.75;
}

.page-hero-copy > p strong {
  color: var(--navy);
}

.page-hero-visual {
  position: relative;
  min-height: 340px;
  overflow: hidden;
}

.page-hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-side-caption {
  position: absolute;
  top: 28px;
  left: 26px;
  text-align: left;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  line-height: 1.7;
  text-shadow: 0 2px 10px rgba(11,42,69,.45);
}

.hero-side-caption span { display: block; }

.hero-side-caption::after {
  content: "";
  display: inline-block;
  margin-top: 8px;
  width: 30px;
  height: 2px;
  background: #fff;
}

/* =========================================================
   PHILOSOPHY
========================================================= */

.philosophy-section {
  padding: clamp(28px, 4vw, 44px) clamp(24px, 5vw, 48px);
}

.philosophy-inner {
  display: flex;
  align-items: center;
  gap: clamp(24px, 4vw, 48px);
}

.philosophy-copy {
  flex: 0 0 auto;
  max-width: 360px;
}

.philosophy-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 700;
}

.philosophy-copy h2 .green { color: var(--green); display: block; }

.philosophy-divider {
  flex: 0 0 1px;
  align-self: stretch;
  background: var(--border);
}

.philosophy-steps {
  flex: 1;
  min-width: 0;
}

.philosophy-steps-label {
  margin-bottom: 18px;
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
}

.philosophy-sequence {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  flex-wrap: wrap;
}

.seq-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 74px;
  text-align: center;
}

.seq-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: #fff;
  transition: transform .3s ease, box-shadow .3s ease, background .3s ease;
}

.seq-step.is-accent .seq-icon {
  border-color: var(--green);
  color: var(--green);
}

.seq-step:hover .seq-icon {
  transform: translateY(-3px) scale(1.06);
  background: rgba(30,127,224,.07);
  box-shadow: 0 0 18px rgba(30,127,224,.16);
}

.seq-step.is-accent:hover .seq-icon {
  background: rgba(22,166,115,.07);
  box-shadow: 0 0 18px rgba(22,166,115,.16);
}

.seq-icon svg { width: 21px; height: 21px; stroke-width: 1.6; }

.seq-number {
  margin-top: 8px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
}

.seq-step.is-accent .seq-number { color: var(--green); }

.seq-label {
  margin-top: 2px;
  color: var(--navy);
  font-size: 11px;
  font-weight: 600;
}

.seq-arrow {
  align-self: center;
  margin: 0 2px;
  color: var(--border);
  font-size: 16px;
  font-weight: 600;
}

/* =========================================================
   STEPS SECTION
========================================================= */

.steps-section {
  padding: clamp(30px, 5vw, 44px) clamp(24px, 5vw, 48px);
  background: linear-gradient(180deg, #f8fcfb 0%, #f5fbff 100%);
  border-radius: 0 0 15px 15px;
}

.steps-heading {
  max-width: 760px;
  margin: 0 auto 30px;
  text-align: center;
}

.steps-heading .section-kicker { color: var(--green); }

.steps-heading .heading-rule { margin: 16px auto 18px; }

.steps-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.8vw, 2.3rem);
  line-height: 1.16;
  letter-spacing: -.03em;
  font-weight: 700;
}

.steps-heading h2 .blue { color: var(--blue); }

.steps-heading p {
  margin: 14px auto 0;
  max-width: 620px;
  color: var(--text);
  font-size: 14px;
  line-height: 1.6;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.step-card {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  padding: 24px 22px;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: #fff;
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}

.step-card:hover {
  transform: translateY(-4px);
  border-color: rgba(30,127,224,.35);
  box-shadow: 0 14px 30px rgba(11,42,69,.08);
}

.step-number {
  color: var(--blue);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.step-card.is-accent .step-number { color: var(--green); }

.step-icon {
  width: 38px;
  height: 38px;
  margin-bottom: 10px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: rgba(30,127,224,.05);
}

.step-card.is-accent .step-icon {
  border-color: var(--green);
  color: var(--green);
  background: rgba(22,166,115,.06);
}

.step-icon svg { width: 19px; height: 19px; stroke-width: 1.6; }

.step-content h3 {
  margin: 0 0 8px;
  color: var(--navy);
  font-size: 16px;
  line-height: 1.25;
  letter-spacing: -.01em;
  font-weight: 700;
}

.step-content p {
  margin: 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.75;
}

.step-content strong { color: var(--navy); }

.step-card-wide {
  grid-column: 1 / -1;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px 30px;
  background: linear-gradient(90deg, #fff 55%, #f2f9f6 100%);
}

.step-card-wide .step-side {
  padding-left: 24px;
  border-left: 1px solid var(--border);
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  line-height: 1.9;
  text-transform: uppercase;
  text-align: right;
}

/* =========================================================
   CTA BANNER
========================================================= */

.cta-banner {
  margin: 14px auto 0;
  padding: 26px clamp(20px, 4vw, 40px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: linear-gradient(180deg, #f6fbff 0%, #eef7ff 100%);
}

.cta-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.cta-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  border: 1.5px solid var(--blue);
  color: var(--blue);
  background: #fff;
}

.cta-icon svg { width: 23px; height: 23px; stroke-width: 1.6; }

.cta-left h2 {
  margin: 0 0 3px;
  color: var(--navy);
  font-size: 18px;
  font-weight: 700;
}

.cta-left p {
  margin: 0;
  color: var(--text);
  font-size: 13px;
}

.cta-button {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: 9px;
  background: var(--blue);
  border: 1px solid var(--blue);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: background .3s ease, transform .3s ease;
}

.cta-button:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
}

/* =========================================================
   COMMITMENT + CONTACT
========================================================= */

.commitment-contact-grid {
   width: min(calc(100% - 36px), var(--max));
  margin: 14px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  padding: 0 0 24px;
}

.commitment-contact-grid > .section-card {
  width: auto;
  margin: 0;
}

/* COMMITMENT */

.commitment-card {
  --accent: var(--green);
  padding: 30px clamp(20px, 3vw, 34px) 32px;
  background: linear-gradient(180deg, #f7fcf9 0%, #fff 100%);
  border-radius: 15px;
}

.commitment-card h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.18;
  letter-spacing: -.03em;
  font-weight: 700;
}

.commitment-card h2 .green { color: var(--green); }

.commitment-lines {
  display: grid;
  gap: 10px;
  margin-top: 22px;
}

.commitment-line {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #fff;
}

.commitment-line-icon {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  border: 1.5px solid var(--green);
  color: var(--green);
  background: rgba(22,166,115,.06);
}

.commitment-line-icon svg { width: 17px; height: 17px; stroke-width: 1.6; }

.commitment-label {
  display: block;
  margin-bottom: 4px;
  color: var(--green);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
}

.commitment-line p {
  margin: 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.55;
  font-weight: 600;
}

.commitment-body {
  margin: 22px 0 0;
  color: var(--text);
  font-size: 13.5px;
  line-height: 1.75;
}

.commitment-body strong { color: var(--navy); }

.commitment-signature {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.commitment-signature strong {
  color: var(--green);
  font-size: 14px;
  letter-spacing: .02em;
}

.commitment-signature span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 600;
}

/* CONTACT */

.contact-card {
  position: relative;
  padding: 30px clamp(20px, 3vw, 34px) 32px;
  background: linear-gradient(180deg, #f6fbff 0%, #fff 100%);
  border-radius: 15px;
  overflow: hidden;
}

.contact-card h2 {
  max-width: 420px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  line-height: 1.2;
  letter-spacing: -.03em;
  font-weight: 700;
}

.contact-card h2 .blue { color: var(--blue); }

.contact-person {
  margin: 20px 0 0;
  color: var(--navy);
  font-size: 13px;
  line-height: 1.6;
}

.contact-person strong { color: var(--navy); font-weight: 700; }

.contact-division {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.contact-details {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}

.contact-details p {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 10px;
  margin: 0;
  color: var(--text);
  font-size: 12.5px;
  line-height: 1.6;
}

.contact-details p > span {
  color: var(--blue);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-details a { color: var(--navy); transition: color .25s ease; }
.contact-details a:hover { color: var(--blue); }

.contact-visual {
  position: relative;
  margin-top: 22px;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-visual .hero-side-caption {
  top: 14px;
  right: 16px;
  font-size: 9px;
  letter-spacing: .14em;
}

.final-line {
  width: min(calc(100% - 36px), var(--max));
  margin: 6px auto 24px;
  padding: 0 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .03em;
}

/* =========================================================
   FOOTER — identical system to homepage
========================================================= */

.site-footer {
  margin-top: 10px;
  padding: 35px max(30px, calc((100% - var(--max)) / 2));
  background: var(--navy);
  color: #dbe7f0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-brand strong {
  color: #fff;
  font-size: 20px;
}

.footer-brand p {
  margin: 7px 0 0;
  color: #b9c8d6;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 22px;
  font-size: 12px;
  font-weight: 600;
  color: #c4d4e0;
}

.footer-links a:hover { color: var(--green-2); }

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.12);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9fb2c2;
  font-size: 10px;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1180px) {
  .nav-shell { width: calc(100% - 40px); }
  .main-nav { gap: 18px; }
  .main-nav > a, .nav-dropdown-trigger { font-size: 12px; }

  .page-hero-grid { grid-template-columns: 1fr; }
  .page-hero-visual { min-height: 260px; }
  .page-hero-copy { padding: 40px 24px 32px; }

  .philosophy-inner { flex-direction: column; align-items: flex-start; }
  .philosophy-divider { display: none; }
  .philosophy-copy { max-width: 100%; }

  .steps-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .step-card-wide { grid-template-columns: 46px 1fr; }
  .step-card-wide .step-side { display: none; }

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

@media (max-width: 980px) {
  .site-header { height: 96px; }
  .brand-logo { width: 155px; height: 68px; }
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {
  .site-header { height: 82px; }
  .nav-shell { width: calc(100% - 30px); }
  .brand { flex-basis: 150px; }
  .brand-logo { width: 145px; height: 62px; }

  .main-nav {
    display: none;
    position: absolute;
    top: 82px;
    left: 0;
    right: 0;
    padding: 10px 18px 20px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #fff;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 12px 25px rgba(11,42,69,.08);
  }

  .main-nav.open { display: flex; }

  .main-nav > a, .nav-dropdown-trigger {
    padding: 13px 6px;
    border-bottom: 1px solid var(--border);
    text-align: left;
  }

  .main-nav .nav-cta { margin-top: 10px; text-align: center; justify-content: center; }
  .mobile-menu { display: block; }

  .dropdown-menu, .submenu-menu {
    position: static;
    width: 100%;
    margin-top: 5px;
    transform: none;
    box-shadow: none;
  }

  .section-card { width: min(calc(100% - 20px), var(--max)); border-radius: 12px; }
  .page-hero { width: min(calc(100% - 20px), var(--max)); }

  .steps-grid { grid-template-columns: 1fr; }
  .step-card-wide { padding: 22px 20px; }

  .philosophy-sequence { justify-content: center; }
  .seq-arrow { display: none; }
  .seq-step { width: 30%; }

  .cta-banner { flex-direction: column; align-items: flex-start; text-align: left; }

  .footer-inner, .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-links { justify-content: flex-start; }
}
/* =========================================================
   ENQUIRY FORM
   Added for Let's Connect enquiry form
========================================================= */

.enquiry-card {
  padding: 40px clamp(24px, 5vw, 56px) 48px;
  text-align: center;
}

.enquiry-card h2 {
  max-width: 620px;
  margin: 10px auto 0;
  color: var(--navy);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 700;
  letter-spacing: -.02em;
}

.enquiry-subtitle {
  margin: 10px 0 28px;
  color: var(--text);
  font-size: 14px;
}

.contact-form {
  max-width: 780px;
  margin: 0 auto;
  text-align: left;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-field-full {
  grid-column: 1 / -1;
}

.contact-field > span {
  color: var(--navy);
  font-size: 13px;
  font-weight: 600;
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #fff;
  color: var(--navy);
  font-family: inherit;
  font-size: 14px;
  transition: border-color .25s ease, box-shadow .25s ease;
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30,127,224,.12);
}

.contact-field textarea {
  resize: vertical;
  min-height: 100px;
}

.contact-submit {
  margin-top: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  width: 100%;
  justify-content: center;
  border: 1px solid var(--blue);
  border-radius: 9px;
  background: var(--blue);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: background .3s ease, transform .3s ease, box-shadow .3s ease;
}

.contact-submit:hover {
  background: var(--navy);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(11,42,69,.12);
}

.contact-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none;
}

.contact-submit span {
  font-size: 18px;
  line-height: .7;
}

.form-status {
  margin: 14px 0 0;
  min-height: 18px;
  color: var(--green);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 760px) {
  .enquiry-card { padding: 30px 20px 36px; }
  .contact-form-grid { grid-template-columns: 1fr; }
}