:root {
  --paper: #FAF8F3;
  --paper-alt: #F2EEE5;
  --ink: #1C221E;
  --ink-soft: #4A544D;
  --green: #1E4D3B;
  --green-deep: #143528;
  --green-tint: #E4EBE2;
  --gold: #B98A2F;
  --line: #E2DDD0;
  --radius: 10px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 28px;
}

h1, h2, h3 { font-family: var(--font-display); font-weight: 500; line-height: 1.15; letter-spacing: -0.01em; }
h4 { font-weight: 600; font-size: 1.02rem; }

a { color: inherit; }

/* ---------- Top offer bar ---------- */
.topbar {
  background: var(--green-deep);
  color: #DEE9E2;
  font-size: 0.85rem;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding-top: 9px;
  padding-bottom: 9px;
}

.topbar p { margin: 0; display: flex; align-items: center; gap: 9px; }
.topbar s { color: #8FAE9D; }
.topbar strong { color: var(--gold); font-weight: 700; }

.topbar a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.topbar a:hover { color: var(--gold); }

.topbar-dot, .pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(185, 138, 47, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(185, 138, 47, 0); }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250, 248, 243, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 36px;
  height: 68px;
}

.brand {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-decoration: none;
  letter-spacing: -0.02em;
}

.brand-dot { color: var(--gold); }

.site-nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
}

.site-nav a {
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color 0.15s;
}

.site-nav a:hover { color: var(--ink); }

.site-nav a.is-active { color: var(--green); font-weight: 600; }

.nav-toggle { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.btn-primary { background: var(--green); color: #fff; }
.btn-primary:hover { background: var(--green-deep); }

.btn-ghost { border-color: var(--ink); color: var(--ink); background: transparent; }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }

.btn-gold { background: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: #a8791f; }

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-block { width: 100%; text-align: center; }

/* ---------- Services grid (homepage) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 30px 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.18s, transform 0.18s;
}

.service-card:hover {
  box-shadow: 0 20px 44px -28px rgba(28, 34, 30, 0.32);
  transform: translateY(-2px);
}

.service-card-tag {
  align-self: flex-start;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-tint);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.service-card h4 { font-size: 1.25rem; margin-bottom: 10px; color: var(--green-deep); }
.service-card p { font-size: 0.95rem; color: var(--ink-soft); margin-bottom: 20px; }

.service-card-link {
  margin-top: auto;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green);
  text-decoration: none;
}

.service-card-link:hover { color: var(--green-deep); }

.service-card-offer { position: relative; border-color: var(--gold); box-shadow: 0 0 0 1px var(--gold); }

.offer-ribbon {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--gold);
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
  padding: 5px 13px;
  border-radius: 999px;
  box-shadow: 0 6px 14px -6px rgba(120, 86, 20, 0.5);
}

.service-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--green-tint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.service-card-icon svg { width: 28px; height: 28px; }

.service-price-line {
  font-size: 0.95rem;
  margin: -8px 0 18px;
}

.service-price-line s { color: #A8B0AA; margin-right: 4px; }
.service-price-line strong { font-size: 1.25rem; color: var(--green-deep); }
.service-price-line span { display: block; font-size: 0.78rem; color: var(--ink-soft); margin-top: 2px; }

.why-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--green-tint);
  color: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.why-icon svg { width: 24px; height: 24px; }

/* ---------- Pathway cards (NDIS) ---------- */
.pathway-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 34px;
}

.pathway-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 26px 24px;
}

.pathway-card-accent {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: #fff;
}

.pathway-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-tint);
  padding: 5px 11px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.pathway-card-accent .pathway-tag { color: var(--green-deep); background: var(--gold); }

.pathway-card h4 { font-size: 1.2rem; margin-bottom: 10px; color: var(--green-deep); }
.pathway-card-accent h4 { color: #fff; }
.pathway-card p { font-size: 0.93rem; color: var(--ink-soft); }
.pathway-card-accent p { color: #C9DAD0; }

.price-quote {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 16px;
}

/* ---------- Timely notice band ---------- */
.notice-band {
  background: var(--green-tint);
  border-top: 1px solid #d3e0cf;
  border-bottom: 1px solid #d3e0cf;
  padding: 22px 0;
}

.notice-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.notice-flag {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 6px 12px;
  border-radius: 999px;
}

.notice-inner p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--green-deep);
  max-width: 90ch;
}

/* ---------- CTA band ---------- */
.cta-band { background: var(--green-deep); color: #fff; padding: 64px 0; }

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

.cta-inner h2 { font-size: clamp(1.6rem, 2.6vw, 2.1rem); margin-bottom: 10px; }
.cta-inner > div:first-child p { color: #C9DAD0; max-width: 48ch; }

.cta-actions { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }

.cta-email { color: #A9C4B4; text-decoration: none; font-size: 0.9rem; }
.cta-email:hover { color: #fff; }

.offer-band-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--gold);
  padding: 5px 13px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.band-strike { color: #7C9B8B; text-decoration-color: var(--gold); text-decoration-thickness: 3px; font-size: 0.75em; }
.band-now { color: var(--gold); }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1), transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0s);
}

.reveal.in { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .hero-anim, .reveal { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  .hero-illus .van, .hero-illus .cloud, .hero-illus .sun-halo, .offer-float, .topbar-dot, .pulse-dot { animation: none !important; }
  .ticker-track { animation: none !important; }
  .hero-strike::after { animation: none !important; transform: scaleX(1); }
}

/* ---------- Hero ---------- */
.hero { padding: 88px 0 72px; }
.hero-offer { padding: 64px 0 76px; overflow: hidden; }

/* staggered entrance */
.hero-anim { opacity: 0; transform: translateY(18px); animation: rise 0.7s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.hero-anim.a1 { animation-delay: 0.05s; }
.hero-anim.a2 { animation-delay: 0.15s; }
.hero-anim.a3 { animation-delay: 0.28s; }
.hero-anim.a4 { animation-delay: 0.42s; }
.hero-anim.a5 { animation-delay: 0.55s; }

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.eyebrow { display: flex; align-items: center; gap: 9px; }

.price-hit { white-space: nowrap; }

.hero-strike {
  color: #A8B0AA;
  font-size: 0.55em;
  vertical-align: 14%;
  text-decoration: none;
  position: relative;
  margin-right: 2px;
}

.hero-strike::after {
  content: "";
  position: absolute;
  left: -3%;
  top: 54%;
  width: 106%;
  height: 3px;
  border-radius: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left center;
  animation: strike 0.5s ease-out 0.9s forwards;
}

@keyframes strike {
  to { transform: scaleX(1); }
}

.price-now { color: var(--green); }

.trust-chips {
  list-style: none;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.trust-chips li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.trust-chips svg { width: 16px; height: 16px; fill: var(--green); flex-shrink: 0; }

.btn-lg { padding: 16px 32px; font-size: 1rem; }

/* Hero illustration */
.hero-visual { position: relative; }

.hero-illus-wrap { position: relative; }

.hero-illus {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 18px;
  box-shadow: 0 30px 70px -35px rgba(28, 34, 30, 0.35);
}

.hero-illus .van { animation: van-bob 3.4s ease-in-out infinite; }
.hero-illus .cloud.c1 { animation: drift 14s ease-in-out infinite alternate; }
.hero-illus .cloud.c2 { animation: drift 18s ease-in-out infinite alternate-reverse; }
.hero-illus .sun-halo { animation: halo 4s ease-in-out infinite; transform-origin: 430px 78px; }

@keyframes van-bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

@keyframes drift {
  from { transform: translateX(0); }
  to { transform: translateX(26px); }
}

@keyframes halo {
  0%, 100% { transform: scale(1); opacity: 0.25; }
  50% { transform: scale(1.12); opacity: 0.38; }
}

.offer-float {
  position: absolute;
  top: -18px;
  right: -14px;
  background: var(--gold);
  color: var(--green-deep);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 16px 34px -16px rgba(120, 86, 20, 0.55);
  transform: rotate(4deg);
  animation: float-badge 3s ease-in-out infinite;
}

@keyframes float-badge {
  0%, 100% { transform: rotate(4deg) translateY(0); }
  50% { transform: rotate(4deg) translateY(-6px); }
}

.offer-float-label {
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 2px;
}

.offer-float-amount {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  margin: 0;
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  overflow: hidden;
  padding: 13px 0;
}

.ticker-track {
  display: flex;
  align-items: center;
  gap: 28px;
  width: max-content;
  animation: ticker-scroll 30s linear infinite;
}

.ticker-track span {
  color: #C4C9C5;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ticker-track .tick-dot { color: var(--gold); }

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 64px;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--green);
  margin-bottom: 20px;
}

.eyebrow-light { color: #A9C4B4; }

.hero h1 {
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  margin-bottom: 24px;
}

.lead {
  font-size: 1.13rem;
  color: var(--ink-soft);
  margin-bottom: 32px;
  max-width: 56ch;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 20px; }

.hero-note { font-size: 0.83rem; color: var(--ink-soft); }

.hero-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 32px 0;
  box-shadow: 0 24px 60px -30px rgba(28, 34, 30, 0.25);
}

.hero-card-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-tint);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}

.hero-card h3 { font-size: 1.35rem; margin-bottom: 18px; }

.check-list { list-style: none; }

.check-list li {
  padding: 10px 0 10px 30px;
  border-top: 1px solid var(--line);
  font-size: 0.93rem;
  position: relative;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.6 5.9-4.2 4.6a.75.75 0 0 1-1.1.02L4.4 8.6a.75.75 0 1 1 1.08-1.04l1.35 1.4 3.66-4.03A.75.75 0 0 1 11.6 5.9z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.6 5.9-4.2 4.6a.75.75 0 0 1-1.1.02L4.4 8.6a.75.75 0 1 1 1.08-1.04l1.35 1.4 3.66-4.03A.75.75 0 0 1 11.6 5.9z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.hero-card-foot {
  margin: 8px -32px 0;
  padding: 16px 32px 20px;
  background: var(--green-tint);
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: 0.9rem;
  color: var(--green-deep);
}

/* ---------- Strip ---------- */
.strip {
  background: var(--green-deep);
  color: #fff;
  padding: 34px 0;
}

.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px;
}

.strip-item strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 4px;
}

.strip-item > span { font-size: 0.83rem; color: #B7CDC0; line-height: 1.45; display: block; }
.strip-item strong span { display: inline; }

/* ---------- Sections ---------- */
.section { padding: 96px 0; }
.section-alt { background: var(--paper-alt); }

.section-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: start;
}

.section-label { position: sticky; top: 100px; }

.section-num {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 8px;
}

.section-label h2 { font-size: 1.35rem; }

.section-body h3 {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  margin-bottom: 26px;
  max-width: 24ch;
}

.section-body > p {
  color: var(--ink-soft);
  margin-bottom: 18px;
  max-width: 68ch;
}

/* Requirements */
.req-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.req-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 22px;
}

.req-card h4 { margin-bottom: 8px; color: var(--green-deep); }
.req-card p { font-size: 0.92rem; color: var(--ink-soft); }

.req-note {
  margin-top: 26px;
  padding: 16px 20px;
  border-left: 3px solid var(--gold);
  background: #fff;
  border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 0.92rem;
  color: var(--ink-soft);
}

/* Service */
.service-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 44px;
  margin-top: 36px;
  align-items: start;
}

.service-item {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.service-item:last-child { border-bottom: 1px solid var(--line); }

.service-step {
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  padding-top: 4px;
}

.service-item h4 { margin-bottom: 6px; }
.service-item p { font-size: 0.93rem; color: var(--ink-soft); }

.price-card {
  background: var(--green-deep);
  color: #fff;
  border-radius: var(--radius);
  padding: 34px 30px;
  position: sticky;
  top: 100px;
}

.price-label {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #A9C4B4;
  margin-bottom: 14px;
}

.price-was {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.price-was s {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: #8FAE9D;
  text-decoration-color: rgba(185, 138, 47, 0.9);
  text-decoration-thickness: 2px;
}

.price-save-tag {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--green-deep);
  background: var(--gold);
  padding: 4px 10px;
  border-radius: 999px;
}

.hero-was {
  color: var(--ink-soft);
  opacity: 0.75;
  text-decoration-thickness: 1.5px;
}

.price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 16px;
}

.price-currency { font-size: 1rem; vertical-align: super; color: #A9C4B4; margin-right: 4px; }

.price-sub { font-size: 0.9rem; color: #C9DAD0; margin-bottom: 24px; }

.price-fine { font-size: 0.76rem; color: #8FAE9D; margin-top: 16px; }

/* Timeline */
.timeline {
  list-style: none;
  counter-reset: step;
  margin-top: 34px;
}

.timeline li {
  counter-increment: step;
  position: relative;
  padding: 0 0 36px 64px;
}

.timeline li::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: -2px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--green);
  width: 42px;
  height: 42px;
  border: 1px solid var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--paper-alt);
}

.timeline li::after {
  content: "";
  position: absolute;
  left: 21px;
  top: 44px;
  bottom: 4px;
  width: 1px;
  background: var(--line);
}

.timeline li:last-child { padding-bottom: 0; }
.timeline li:last-child::after { display: none; }

.timeline h4 { margin-bottom: 6px; }
.timeline p { font-size: 0.94rem; color: var(--ink-soft); max-width: 60ch; }

/* Why */
.why-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.why-point {
  border-top: 2px solid var(--green);
  padding-top: 16px;
}

.why-point h4 { margin-bottom: 8px; }
.why-point p { font-size: 0.9rem; color: var(--ink-soft); }

/* FAQ */
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 4px 0;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 20px 40px 20px 0;
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--green);
  transition: transform 0.2s;
}

.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }

.faq-item p {
  padding: 0 0 22px;
  color: var(--ink-soft);
  font-size: 0.95rem;
  max-width: 70ch;
}

/* ---------- Contact ---------- */
.section-contact {
  background: var(--green-deep);
  color: #fff;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 72px;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(1.9rem, 3.2vw, 2.6rem);
  margin-bottom: 20px;
}

.contact-copy > p { color: #C9DAD0; max-width: 48ch; margin-bottom: 28px; }

.contact-points { list-style: none; }

.contact-points li {
  padding: 12px 0 12px 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
  color: #DEE9E2;
  position: relative;
}

.contact-email {
  margin-top: 24px;
  font-size: 0.95rem;
  color: #C9DAD0;
}

.contact-email a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  padding-bottom: 1px;
}

.contact-email a:hover { border-bottom-color: #fff; }

.footer-email { margin-top: 8px; font-size: 0.85rem; }

.footer-email a { color: #DEE9E2; text-decoration: none; }

.footer-email a:hover { color: #fff; }

.contact-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 19px;
  width: 14px;
  height: 14px;
  background: var(--gold);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.6 5.9-4.2 4.6a.75.75 0 0 1-1.1.02L4.4 8.6a.75.75 0 1 1 1.08-1.04l1.35 1.4 3.66-4.03A.75.75 0 0 1 11.6 5.9z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='%23000' d='M8 0a8 8 0 1 0 0 16A8 8 0 0 0 8 0zm3.6 5.9-4.2 4.6a.75.75 0 0 1-1.1.02L4.4 8.6a.75.75 0 1 1 1.08-1.04l1.35 1.4 3.66-4.03A.75.75 0 0 1 11.6 5.9z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.contact-form {
  background: #fff;
  color: var(--ink);
  border-radius: var(--radius);
  padding: 38px 36px;
}

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

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

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 7px;
  color: var(--ink-soft);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 7px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--paper);
  color: var(--ink);
  transition: border-color 0.15s;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--green);
}

.form-status { font-size: 0.9rem; margin-top: 14px; min-height: 1.2em; }
.form-status.ok { color: var(--green); font-weight: 600; }
.form-status.err { color: #A33A2C; font-weight: 600; }

.form-fine { font-size: 0.75rem; color: var(--ink-soft); margin-top: 12px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: #C4C9C5;
  padding: 56px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px 60px;
}

.brand-footer { color: #fff; font-size: 1.3rem; }

.footer-tag { font-size: 0.85rem; margin-top: 6px; }

.footer-links { display: flex; gap: 24px; align-items: start; padding-top: 8px; }

.footer-links a {
  text-decoration: none;
  font-size: 0.85rem;
  color: #C4C9C5;
}

.footer-links a:hover { color: #fff; }

.footer-disclaimer {
  grid-column: 1 / -1;
  font-size: 0.76rem;
  color: #8A918C;
  max-width: 90ch;
  border-top: 1px solid #333B36;
  padding-top: 24px;
}

.footer-copy { grid-column: 1 / -1; font-size: 0.76rem; color: #8A918C; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .section-grid { grid-template-columns: 1fr; gap: 28px; }
  .section-label { position: static; display: flex; gap: 14px; align-items: baseline; }
  .service-layout { grid-template-columns: 1fr; }
  .price-card { position: static; }
  .why-points { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 720px) {
  body { font-size: 16px; }
  .section { padding: 64px 0; }
  .hero { padding: 56px 0 48px; }
  .topbar-inner { flex-direction: column; gap: 2px; text-align: center; padding-top: 10px; padding-bottom: 10px; }
  .offer-float { right: 4px; top: -12px; padding: 10px 15px; }
  .offer-float-amount { font-size: 1.35rem; }
  .trust-chips { flex-direction: column; gap: 10px; }

  .site-nav {
    display: none;
    position: absolute;
    top: 68px;
    left: 0;
    right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    gap: 0;
    padding: 8px 28px 16px;
  }

  .site-nav.open { display: flex; }
  .site-nav a { padding: 12px 0; border-top: 1px solid var(--line); }

  .header-inner .btn { margin-left: auto; padding: 8px 14px; font-size: 0.8rem; white-space: nowrap; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 8px 0 8px 8px;
    cursor: pointer;
  }

  .nav-toggle span { width: 22px; height: 2px; background: var(--ink); display: block; }

  .req-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .pathway-grid { grid-template-columns: 1fr; }
  .cta-inner { flex-direction: column; align-items: flex-start; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .service-item { grid-template-columns: 1fr; gap: 6px; }
  .contact-form { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
}
