/* ============================================
   PLAN DRAFT — DESIGN SYSTEM
   Palette B: Blueprint
   ============================================ */

:root {
  --navy:       #1B3A5C;
  --navy-deep:  #122840;
  --navy-mid:   #234873;
  --white:      #FFFFFF;
  --sand:       #C8A96E;
  --sand-lt:    #E8D9BC;
  --sand-dk:    #9E7E46;
  --tint:       #E8F0F8;
  --tint-mid:   #D0E2F0;
  --steel:      #4A6A84;
  --steel-lt:   #7A9AB4;
  --steel-ltlt: #B8CFDF;
  --off-white:  #F8FAFB;
  --rule:       rgba(27,58,92,0.1);
  --rule-lt:    rgba(27,58,92,0.06);
  --serif: 'DM Serif Display', Georgia, serif;
  --sans:  'DM Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; height: 100%; }

body {
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--navy);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

footer { margin-top: auto; }

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--sans); }

/* ============================================
   TYPOGRAPHY
   ============================================ */

.t-eyebrow {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
}

.t-display {
  font-family: var(--serif);
  font-size: clamp(40px, 5vw, 64px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--white);
}

.t-h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.t-h2 {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.12;
  letter-spacing: -0.01em;
}

.t-h3 {
  font-family: var(--serif);
  font-size: clamp(20px, 2.5vw, 26px);
  line-height: 1.2;
}

.t-h4 {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.01em;
}

.t-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
}

.t-body-navy {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(27,58,92,0.75);
}

.t-small {
  font-size: 13px;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.6;
}

.t-caption {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-lt);
}

/* ============================================
   LAYOUT
   ============================================ */

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.container-sm {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 40px;
}

.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-lg { padding: 120px 0; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
  height: 96px;
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.nav.scrolled {
  background: var(--navy-deep);
  box-shadow: 0 1px 24px rgba(18,40,64,0.25);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.nav-logo-mark {
  width: 55px;
  height: 55px;
  flex-shrink: 0;
}

.nav-logo-img {
  height: 90px;
  width: auto;
  display: block;
}

.nav-wordmark {
  font-family: var(--sans);
  font-size: 27px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.nav-wordmark strong {
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 13px;
  font-weight: 400;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover { color: var(--white); }

.nav-cta {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--navy);
  border: none;
  padding: 10px 22px;
  transition: background 0.2s;
}

.nav-cta:hover { background: var(--sand-lt); }

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  padding: 4px;
  color: var(--white);
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
  padding: 14px 28px;
  border: none;
  transition: all 0.2s;
  cursor: pointer;
}

.btn-primary {
  background: var(--sand);
  color: var(--navy);
}
.btn-primary:hover { background: var(--sand-lt); }

.btn-outline-white {
  background: none;
  color: var(--white);
  border: 0.5px solid rgba(255,255,255,0.4);
}
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.06); }

.btn-outline-navy {
  background: none;
  color: var(--navy);
  border: 0.5px solid var(--navy);
}
.btn-outline-navy:hover { background: var(--tint); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-mid); }

/* ============================================
   HERO
   ============================================ */

.hero {
  background: var(--navy);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid-bg {
  position: absolute;
  inset: 0;
  opacity: 0.035;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-accent-line {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--sand);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  margin-bottom: 24px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-body {
  font-size: 17px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 0.5px solid rgba(255,255,255,0.1);
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.02em;
}

.hero-trust-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sand);
  flex-shrink: 0;
}

/* Hero right panel */
.hero-panel {
  background: rgba(255,255,255,0.04);
  border: 0.5px solid rgba(255,255,255,0.1);
  padding: 36px 32px;
}

.hero-panel-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 0.5px solid rgba(255,255,255,0.08);
}

.price-line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.06);
}

.price-line:last-of-type { border-bottom: none; }

.price-line-service {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.75);
}

.price-line-amount {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--white);
}

.price-line-tag {
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 7px;
  background: var(--sand);
  color: var(--navy);
  margin-left: 6px;
  vertical-align: middle;
}

.hero-panel-cta {
  margin-top: 24px;
  padding-top: 20px;
  border-top: 0.5px solid rgba(255,255,255,0.08);
}

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
  margin-bottom: 56px;
}

.section-header-centered {
  text-align: center;
  margin-bottom: 56px;
}

.section-header-centered .t-eyebrow { display: block; margin-bottom: 14px; }

/* ============================================
   SERVICE CARDS
   ============================================ */

.services-section {
  background: var(--off-white);
}

.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }

.service-card {
  background: var(--white);
  padding: 40px 36px;
  border: 0.5px solid var(--rule);
  border-top: 3px solid var(--sand);
  transition: border-color 0.2s;
  display: flex;
  flex-direction: column;
}

.service-card:hover { border-color: var(--steel-lt); }

.service-card-icon {
  margin-bottom: 28px;
}

.service-card-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-lt);
  margin-bottom: 10px;
}

.service-card-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 14px;
  line-height: 1.2;
}

.service-card-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 28px;
  flex: 1;
  min-height: 80px;
}

.service-card-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 24px;
  padding-top: 20px;
  border-top: 0.5px solid var(--rule);
}

.service-card-price-amount {
  font-family: var(--serif);
  font-size: 34px;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.service-card-price-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--steel-lt);
}

.service-card-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.service-card-link:hover { gap: 12px; color: var(--sand-dk); }

.service-card-link svg { flex-shrink: 0; }

/* ============================================
   WHY PLAN DRAFT
   ============================================ */

.why-section { background: var(--navy); }

.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.why-left .t-eyebrow { margin-bottom: 20px; display: block; }
.why-left .t-h2 { color: var(--white); margin-bottom: 24px; }
.why-left p { color: rgba(255,255,255,0.6); font-weight: 300; font-size: 15px; line-height: 1.75; margin-bottom: 36px; }

.why-items { display: flex; flex-direction: column; gap: 0; }

.why-item {
  display: flex;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

.why-item:first-child { padding-top: 0; }

.why-item-num {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--sand);
  width: 24px;
  flex-shrink: 0;
  margin-top: 3px;
  font-family: monospace;
}

.why-item-content {}

.why-item-title {
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 5px;
}

.why-item-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: rgba(255,255,255,0.5);
}

/* ============================================
   SUITABILITY
   ============================================ */

.suitability-section { background: var(--tint); }

.suitability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.suitability-col {
  padding: 40px 36px;
}

.suitability-col.yes { background: var(--white); }
.suitability-col.maybe { background: var(--navy); }

.suitability-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.suitability-col.yes .suitability-col-title { color: var(--navy); border-bottom: 0.5px solid var(--rule); }
.suitability-col.maybe .suitability-col-title { color: rgba(255,255,255,0.4); border-bottom: 0.5px solid rgba(255,255,255,0.08); }

.suit-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}
.suit-indicator.green { background: #4CAF82; }
.suit-indicator.amber { background: var(--sand); }

.suitability-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.suitability-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 0.5px solid;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
}

.suitability-item:last-child { border-bottom: none; }
.suitability-col.yes .suitability-item { border-color: var(--rule-lt); color: var(--navy); }
.suitability-col.maybe .suitability-item { border-color: rgba(255,255,255,0.06); color: rgba(255,255,255,0.65); }

.suit-check {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   PROCESS
   ============================================ */

.process-section { background: var(--white); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-top: 56px;
}

.process-step {
  padding: 32px 40px 32px 40px;
  border-right: 0.5px solid var(--rule);
}

.process-step:first-child { padding-left: 0; }
.process-step:last-child { border-right: none; padding-right: 0; }

.process-step-num {
  font-family: monospace;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-dk);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.process-step-num::after {
  content: '';
  height: 0.5px;
  background: var(--sand-lt);
  width: 24px;
}

.process-step-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.process-step-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--steel);
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section { background: var(--off-white); }

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.pricing-card {
  background: var(--white);
  border: 0.5px solid var(--rule);
  border-top: 3px solid var(--sand);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
}

.pricing-card.featured {
  background: var(--white);
  border-color: var(--rule);
  border-top-color: var(--sand);
}

.pricing-card-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.pricing-card .pricing-card-eyebrow,
.pricing-card.featured .pricing-card-eyebrow { color: var(--steel-lt); }

.pricing-card-service {
  font-family: var(--serif);
  font-size: 22px;
  margin-bottom: 20px;
  line-height: 1.2;
}

.pricing-card .pricing-card-service,
.pricing-card.featured .pricing-card-service { color: var(--navy); }

.pricing-card-amount {
  font-family: var(--serif);
  font-size: 50px;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-card .pricing-card-amount,
.pricing-card.featured .pricing-card-amount { color: var(--navy); }

.pricing-card-qualifier {
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 24px;
}

.pricing-card .pricing-card-qualifier,
.pricing-card.featured .pricing-card-qualifier { color: var(--steel-lt); }

.pricing-divider {
  height: 0.5px;
  margin: 0 0 20px;
}

.pricing-card .pricing-divider,
.pricing-card.featured .pricing-divider { background: var(--rule); }

.pricing-includes {
  list-style: none;
  flex: 1;
  margin-bottom: 28px;
}

.pricing-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  font-weight: 300;
  line-height: 1.55;
  padding: 8px 0;
  border-bottom: 0.5px solid;
}

.pricing-card .pricing-includes li,
.pricing-card.featured .pricing-includes li { border-color: var(--rule-lt); color: var(--steel); }

.pricing-includes li:last-child { border-bottom: none; }

.pricing-includes li svg { flex-shrink: 0; margin-top: 2px; }

.pricing-extras {
  font-size: 12px;
  font-weight: 300;
  font-style: italic;
  margin-bottom: 20px;
  min-height: 36px;
}

.pricing-card .pricing-extras,
.pricing-card.featured .pricing-extras { color: var(--steel-lt); }

/* ============================================
   FAQs
   ============================================ */

.faq-section { background: var(--white); }

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 64px;
  margin-top: 48px;
}

.faq-item {
  border-bottom: 0.5px solid var(--rule);
  padding: 20px 0;
  cursor: pointer;
}

.faq-item:first-child,
.faq-grid .faq-item:nth-child(2) { border-top: 0.5px solid var(--rule); }

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.faq-q-text {
  font-size: 15px;
  font-weight: 500;
  color: var(--navy);
  line-height: 1.45;
}

.faq-toggle {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--steel-lt);
  transition: transform 0.2s;
}

.faq-item.open .faq-toggle { transform: rotate(45deg); color: var(--navy); }

.faq-answer {
  display: none;
  padding-top: 14px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
}

.faq-item.open .faq-answer { display: block; }

/* ============================================
   FINAL CTA
   ============================================ */

.cta-section {
  background: var(--navy);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.025;
}

.cta-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.cta-inner .t-eyebrow { margin-bottom: 20px; display: block; }
.cta-inner .t-h2 { color: var(--white); margin-bottom: 20px; }
.cta-inner p { color: rgba(255,255,255,0.55); font-weight: 300; font-size: 15px; max-width: 520px; margin: 0 auto 40px; line-height: 1.7; }
.cta-inner .btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================
   ABOUT PAGE
   ============================================ */

.page-hero {
  background: var(--navy);
  padding: 148px 0 80px;
  position: relative;
  overflow: hidden;
}

.page-hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 48px 48px;
}

.page-hero-accent { position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--sand); }

.page-hero-inner { position: relative; z-index: 1; }

.page-hero-eyebrow { margin-bottom: 20px; }

.page-hero-title { color: var(--white); margin-bottom: 20px; }

.page-hero-body {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  max-width: 560px;
  line-height: 1.7;
}

/* ============================================
   ENQUIRY FORM
   ============================================ */

.enquiry-section { background: var(--off-white); }

.enquiry-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 80px;
  align-items: start;
}

.enquiry-left .t-h2 { margin-bottom: 20px; }
.enquiry-left p { color: var(--steel); font-weight: 300; font-size: 15px; line-height: 1.7; margin-bottom: 32px; }

.enquiry-trust {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.enquiry-trust-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 13px;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.55;
}

.enquiry-trust-item svg { flex-shrink: 0; margin-top: 2px; color: var(--sand-dk); }

.enquiry-form {
  background: var(--white);
  border: 0.5px solid var(--rule);
  padding: 40px 36px;
}

.form-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 13px;
  font-weight: 300;
  color: var(--steel);
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 0.5px solid var(--rule);
}

.form-group {
  margin-bottom: 18px;
}

.form-label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 7px;
}

.form-label span {
  color: var(--sand-dk);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  background: var(--off-white);
  border: 0.5px solid var(--rule);
  padding: 12px 14px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--steel-lt);
  background: var(--white);
}

.form-textarea { resize: vertical; min-height: 100px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.form-section-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--steel-lt);
  padding: 14px 0 8px;
  border-top: 0.5px solid var(--rule);
  margin-top: 6px;
  margin-bottom: 14px;
}

.form-submit {
  width: 100%;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  background: var(--sand);
  color: var(--navy);
  border: none;
  padding: 16px;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover { background: var(--sand-lt); }

.form-privacy {
  font-size: 11px;
  font-weight: 300;
  color: var(--steel-lt);
  text-align: center;
  margin-top: 10px;
  line-height: 1.5;
}

.file-upload-area {
  border: 0.5px dashed var(--steel-lt);
  background: var(--off-white);
  padding: 28px 20px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
}

.file-upload-area:hover {
  border-color: var(--navy);
  background: var(--tint);
}

.file-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 12px;
  background: var(--tint);
  border: 0.5px solid var(--rule);
  margin-bottom: 6px;
  font-size: 12px;
  font-weight: 300;
  color: var(--navy);
}

.file-item-name {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow: hidden;
}

.file-item-name span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.file-remove {
  background: none;
  border: none;
  color: var(--steel-lt);
  cursor: pointer;
  font-size: 16px;
  line-height: 1;
  padding: 0 0 0 8px;
  flex-shrink: 0;
}

.file-remove:hover { color: var(--navy); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  background: var(--navy-deep);
  padding: 64px 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 240px 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand {}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.footer-logo-img {
  height: 40px;
  width: auto;
  max-width: 100%;
  display: block;
}

.footer-wordmark {
  font-family: var(--sans);
  font-size: 19px;
  font-weight: 300;
  letter-spacing: 0.08em;
  color: var(--white);
  line-height: 1;
}

.footer-wordmark strong { font-weight: 500; }

.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer-contact {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
}

.footer-col-title {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links li a {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}

.footer-links li a:hover { color: var(--white); }

.footer-bottom {
  padding-top: 28px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom-left {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
}

.footer-bottom-right {
  display: flex;
  gap: 24px;
}

.footer-bottom-right a {
  font-size: 12px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}

.footer-bottom-right a:hover { color: rgba(255,255,255,0.6); }

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border: 0.5px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.45);
  transition: border-color 0.2s, color 0.2s;
}

.footer-social a:hover {
  border-color: var(--sand);
  color: var(--sand);
}

/* ============================================
   PAGE ROUTING
   ============================================ */

.page { display: none; }
.page.active { display: block; }

/* ============================================
   SERVICE DETAIL PAGES
   ============================================ */

.service-detail-includes {
  background: var(--tint);
}

.includes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 40px;
}

.includes-col {
  padding: 36px 32px;
}

.includes-col.yes { background: var(--white); }
.includes-col.no { background: var(--off-white); }

.includes-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 14px;
}

.includes-col.yes .includes-col-title { color: var(--navy); border-bottom: 0.5px solid var(--rule); }
.includes-col.no .includes-col-title { color: var(--steel-lt); border-bottom: 0.5px solid var(--rule); }

.includes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.includes-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 0.5px solid var(--rule-lt);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.55;
  color: var(--navy);
}

.includes-list li:last-child { border-bottom: none; }
.includes-list li svg { flex-shrink: 0; margin-top: 2px; }

.service-faq-section { background: var(--white); }

.service-cta-section {
  background: var(--tint);
  padding: 72px 0;
}

/* ============================================
   PRICING PAGE
   ============================================ */

.pricing-page-section { background: var(--white); }

.pricing-page-note {
  background: var(--tint);
  border-left: 2px solid var(--navy);
  padding: 20px 24px;
  margin-top: 40px;
}

.pricing-page-note p {
  font-size: 14px;
  font-weight: 300;
  color: var(--navy);
  line-height: 1.65;
}

.pricing-page-note strong { font-weight: 500; }

.extras-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}

.extras-col {
  padding: 32px 28px;
  background: var(--off-white);
}

.extras-col-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 0.5px solid var(--rule);
}

.extras-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

.extras-list li {
  padding: 10px 0;
  border-bottom: 0.5px solid var(--rule-lt);
  font-size: 13px;
  font-weight: 300;
  color: var(--steel);
  line-height: 1.55;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.extras-list li:last-child { border-bottom: none; }

/* ============================================
   ABOUT PAGE
   ============================================ */

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 48px;
}

.value-card {
  background: var(--off-white);
  padding: 32px 28px;
}

.value-num {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sand-dk);
  margin-bottom: 16px;
}

.value-title {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.25;
}

.value-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.65;
  color: var(--steel);
}

/* ============================================
   PROCESS PAGE
   ============================================ */

.process-detail {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 48px;
}

.process-detail-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 32px;
  padding: 40px 0;
  border-bottom: 0.5px solid var(--rule);
  align-items: start;
}

.process-detail-item:last-child { border-bottom: none; }

.process-detail-num {
  font-family: var(--serif);
  font-size: 48px;
  color: var(--sand-lt);
  line-height: 1;
  margin-top: -8px;
}

.process-detail-title {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--navy);
  margin-bottom: 10px;
}

.process-detail-body {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--steel);
  margin-bottom: 12px;
}

.process-detail-time {
  display: inline-block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-dk);
  background: var(--sand-lt);
  padding: 4px 10px;
}

/* ============================================
   MOBILE NAV
   ============================================ */

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--navy-deep);
  z-index: 99;
  padding: 24px 32px 32px;
  border-top: 0.5px solid rgba(255,255,255,0.07);
}

.mobile-nav.open { display: block; }

.mobile-nav-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 24px;
}

.mobile-nav-links li a {
  display: block;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 300;
  color: rgba(255,255,255,0.75);
  border-bottom: 0.5px solid rgba(255,255,255,0.07);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .container { padding: 0 24px; }
  .container-sm { padding: 0 24px; }
  .section { padding: 72px 0; }

  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-panel { max-width: 480px; }

  .service-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .suitability-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .process-step { border-right: none; border-bottom: 0.5px solid var(--rule); padding-right: 0; padding-bottom: 28px; }
  .process-step:nth-child(odd) { border-right: 0.5px solid var(--rule); padding-right: 24px; }
  .service-cards { grid-template-columns: 1fr; }
  .pricing-cards { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .faq-grid { grid-template-columns: 1fr; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
  .includes-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .extras-grid { grid-template-columns: 1fr; }

  .nav-links { display: none; }
  .nav-mobile-toggle { display: block; }
  .nav { height: 72px; }
  .nav-logo-img { height: 52px !important; }
}

@media (max-width: 600px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none !important; padding-right: 0 !important; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .pricing-page-note { padding: 16px 18px; }
  .cta-inner .btns { flex-direction: column; align-items: center; }
}

/* ============================================
   UTILITIES
   ============================================ */

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); }
.text-center { text-align: center; }
.mt-4 { margin-top: 4px; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
/* Mobile sticky CTA bar */
.mobile-cta-bar { display: none; }
@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 90;
    background: var(--navy);
    padding: 12px 20px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    transform: translateY(100%);
    transition: transform 0.25s ease;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  }
  .mobile-cta-bar.visible { transform: translateY(0); }
  .mobile-cta-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 13px;
    font-weight: 300;
  }
  .mobile-cta-btn {
    background: var(--sand);
    color: var(--navy);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 10px 18px;
    text-decoration: none;
    flex-shrink: 0;
    white-space: nowrap;
  }
}

/* Collapse inline-styled grids on small screens.
   Inline styles can only be overridden with !important attribute selectors. */
@media (max-width: 900px) {
  [style*="grid-template-columns:1fr 400px"],
  [style*="grid-template-columns:1fr 320px"],
  [style*="grid-template-columns:1.4fr 1fr"],
  [style*="grid-template-columns:1fr 1fr;"] {
    grid-template-columns: 1fr !important;
    gap: 48px !important;
  }
  [style*="grid-template-columns:repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:1fr 1fr 1fr"] {
    grid-template-columns: 1fr 1fr !important;
  }
  [style*="position:sticky"] { position: static !important; }
}

@media (max-width: 600px) {
  [style*="grid-template-columns:repeat(2, 1fr)"],
  [style*="grid-template-columns:repeat(2,1fr)"],
  [style*="grid-template-columns:repeat(3, 1fr)"],
  [style*="grid-template-columns:repeat(3,1fr)"],
  [style*="grid-template-columns:1fr 1fr 1fr"],
  [style*="grid-template-columns:200px 1fr 160px"] {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Mobile polish: stop Android font boosting and tighten vertical rhythm */
html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media (max-width: 900px) {
  .hero { padding: 124px 0 72px; }
  .page-hero { padding: 116px 0 60px; }
}

@media (max-width: 600px) {
  .hero { padding: 108px 0 56px; }
  .page-hero { padding: 100px 0 48px; }
  .section { padding: 56px 0; }
  .t-display { font-size: clamp(32px, 9vw, 40px); }
  .t-h1 { font-size: clamp(28px, 8vw, 36px); }
  .hero-body, .page-hero-body { font-size: 16px; }
  .footer { padding: 48px 0 28px; }
  .footer-grid { gap: 36px; margin-bottom: 36px; }
}

/* Process steps: consistent alignment when the 4-col grid stacks */
@media (max-width: 900px) {
  .process-step { padding-left: 0; padding-right: 0; }
  .process-step:nth-child(odd) { padding-right: 24px; }
  .process-step:nth-child(even) { padding-left: 24px; }
}
@media (max-width: 600px) {
  .process-step { padding-left: 0 !important; padding-right: 0 !important; }
}

/* Reserve space above the sticky CTA bar so the footer stays readable */
@media (max-width: 768px) {
  body:has(#mobileCtaBar) { padding-bottom: 64px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
