/* SIZAN SYSTEMS — Group Funeral Scheme */
:root {
  --green: #0B6B3A;
  --green-deep: #08532c;
  --navy: #0B1F3A;
  --call: #1E5BFF;
  --wa: #25D366;
  --mint: #E8F5EE;
  --off: #F7FAF8;
  --white: #FFFFFF;
  --ink: #10231A;
  --slate: #5B6B63;
  --gold: #F5B301;
  --line: rgba(11, 107, 58, 0.14);
  --header: 4.5rem;
  --radius: 1.15rem;
  --shadow: 0 16px 40px rgba(11, 31, 58, 0.08);
  --font-display: "Plus Jakarta Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --font-body: "DM Sans", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  --max: 1160px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 0.75rem);
}

html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--off);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.18;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 0.6rem;
}

h1 { font-size: clamp(1.85rem, 5.6vw, 3.35rem); font-weight: 800; color: var(--white); }
h2 { font-size: clamp(1.55rem, 3.4vw, 2.35rem); font-weight: 800; }
h3 { font-size: 1.12rem; font-weight: 700; letter-spacing: -0.02em; }

p { margin: 0 0 0.85rem; }
a { color: var(--green); }
a:hover { color: var(--green-deep); }

ul, ol { margin: 0 0 0.8rem; padding-left: 1.15rem; }
li + li { margin-top: 0.35rem; }

.container {
  width: min(var(--max), calc(100% - 2rem));
  margin-inline: auto;
}

.container.narrow { width: min(820px, calc(100% - 2rem)); }

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--white);
  color: var(--navy);
  padding: 0.5rem 0.9rem;
  z-index: 200;
  border-radius: 0.4rem;
}
.skip-link:focus { top: 0.75rem; }

/* Buttons — call blue and WhatsApp green used only here */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(11, 31, 58, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, filter 0.18s ease;
}
.btn .icon { width: 1.15rem; height: 1.15rem; flex-shrink: 0; }
.btn-lg { min-height: 50px; padding: 0.75rem 1.35rem; }
.btn-block { width: 100%; }
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(11, 31, 58, 0.18);
  color: var(--white);
  filter: brightness(1.05);
}
.btn:active { transform: translateY(0) scale(0.98); }
.btn-call { background: var(--call); }
.btn-wa { background: var(--wa); }
.btn-brand { background: var(--green); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-ghost {
  background: var(--white);
  color: var(--navy);
}
.btn-ghost:hover { color: var(--navy); }

:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}
.btn-call:focus-visible { outline-color: var(--call); }
.btn-wa:focus-visible { outline-color: var(--wa); }

/* Wordmark fallback */
.wordmark {
  display: flex;
  flex-direction: column;
  line-height: 1;
  color: inherit;
  text-decoration: none;
}
.wordmark span {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.18em;
  font-size: 1.25rem;
}
.wordmark small {
  margin-top: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  font-weight: 600;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: linear-gradient(90deg, #08284a 0%, var(--navy) 42%, #0a3a24 100%);
  min-height: var(--header);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: var(--header);
}
.logo { display: flex; align-items: center; flex-shrink: 0; color: var(--white); }
.logo-img { height: 42px; width: auto; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25)); }
.nav {
  display: none;
  align-items: center;
  gap: 0.15rem 1.05rem;
  margin-left: auto;
}
.nav > a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.nav > a:hover,
.nav > a.is-active { color: var(--white); }
.nav-cta { display: none; }
.header-actions {
  display: flex;
  gap: 0.45rem;
  margin-left: auto;
}
.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  background: transparent;
  border: 0;
  padding: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 479px) {
  .header-actions .btn-label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .header-actions .btn { padding-inline: 0.7rem; }
}

@media (min-width: 1080px) {
  .nav { display: flex; }
  .nav-toggle { display: none; }
  .header-actions { margin-left: 1rem; }
}

@media (max-width: 1079px) {
  .nav {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: absolute;
    top: var(--header);
    left: 0;
    right: 0;
    background: var(--navy);
    padding: 0.75rem 1.25rem 1.25rem;
    gap: 0;
    margin: 0;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  }
  .nav.is-open {
    opacity: 1;
    transform: none;
    pointer-events: auto;
    visibility: visible;
    min-height: calc(100dvh - var(--header));
    z-index: 30;
  }
  body.nav-open { overflow: hidden; }
  .nav > a {
    padding: 0.7rem 0.2rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .nav-cta {
    display: flex;
    gap: 0.5rem;
    padding-top: 0.9rem;
  }
  .nav-cta .btn { flex: 1; }
}

/* Hero */
.hero {
  position: relative;
  background: linear-gradient(165deg, #0B1F3A 0%, #0c3d28 52%, #0B1F3A 100%);
  color: var(--white);
  padding: 2.4rem 0 4.5rem;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-canopy { width: 100%; height: 100%; opacity: 0.3; }
@media (min-width: 768px) {
  .hero-canopy { opacity: 0.9; }
}
.hero-grid {
  position: relative;
  display: grid;
  gap: 2rem;
}
.hero-logo {
  height: 58px;
  width: auto;
  margin-bottom: 1.1rem;
  animation: logoIn 0.9s ease both;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.28));
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 0.7rem;
}
.hero .eyebrow { color: #b7e0c8; }
.hero-copy > * { animation: fadeUp 0.7s ease both; }
.hero-copy > :nth-child(1) { animation-delay: 0.05s; }
.hero-copy > :nth-child(2) { animation-delay: 0.12s; }
.hero-copy > :nth-child(3) { animation-delay: 0.2s; }
.hero-copy > :nth-child(4) { animation-delay: 0.28s; }
.hero-copy > :nth-child(5) { animation-delay: 0.34s; }
.hero-copy > :nth-child(6) { animation-delay: 0.4s; }
.hero-lead {
  font-size: 1.08rem;
  color: rgba(255, 255, 255, 0.86);
  max-width: 38rem;
}
.hero-note {
  font-size: 0.92rem;
  color: #cfe8d8;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.6rem; }

.hero-form-card {
  display: none;
  background: var(--mint);
  color: var(--ink);
  border-radius: calc(var(--radius) + 0.2rem);
  padding: 1.4rem 1.3rem 1.3rem;
  box-shadow: var(--shadow);
  animation: fadeUp 0.8s ease 0.25s both;
}
.hero-form-card h2 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.hero-form-card p { color: var(--slate); font-size: 0.95rem; }

@media (min-width: 980px) {
  .hero { padding: 3.2rem 0 5.5rem; }
  .hero-grid { grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 3rem; }
  .hero-form-card { display: block; }
  .hero-logo { height: 70px; }
}

/* Stats */
.stats-band {
  margin-top: -2.4rem;
  position: relative;
  z-index: 2;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
  text-align: center;
}
.stat-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--green);
  letter-spacing: -0.04em;
  margin: 0;
  line-height: 1.1;
}
.stat-label {
  margin: 0.3rem 0 0;
  color: var(--slate);
  font-size: 0.9rem;
}

@media (min-width: 700px) {
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Trust */
.trust { padding: 2.2rem 0 1.2rem; }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.trust-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem 1.2rem;
  text-align: center;
  animation: slideIn 0.7s ease both;
}
.trust-item:nth-child(2) { animation-delay: 0.1s; }
.trust-item:nth-child(3) { animation-delay: 0.2s; }
.trust-logo {
  height: 42px;
  width: auto;
  margin: 0 auto 0.45rem;
}
.trust-name {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.08em;
  margin: 0;
  font-size: 0.82rem;
  color: var(--navy);
}
.trust-wordmark {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.16em;
  font-size: 1.35rem;
  color: var(--navy);
  margin: 0.4rem 0 0.35rem;
}
.trust-role {
  margin: 0.15rem 0 0;
  color: var(--slate);
  font-size: 0.88rem;
}
.legal-line {
  margin: 1.15rem 0 0;
  font-size: 0.86rem;
  color: var(--slate);
  text-align: center;
}

@media (min-width: 700px) {
  .trust-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Sections */
.section { padding: 4rem 0; }
.section-mint { background: var(--mint); }
.section-navy {
  background: linear-gradient(165deg, var(--navy) 0%, #0c3a26 100%);
  color: var(--white);
}
.section-head { margin-bottom: 2rem; max-width: 40rem; }
.section-head.on-dark h2,
.section-navy h2 { color: var(--white); }
.section-lead { color: var(--slate); font-size: 1.05rem; }
.on-dark .section-lead { color: rgba(255, 255, 255, 0.78); }
.eyebrow.light { color: #b7e0c8; }

.card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.35rem 1.3rem 1.25rem;
  box-shadow: 0 8px 24px rgba(11, 31, 58, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.card-icon {
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 0.8rem;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  margin-bottom: 0.85rem;
}
.card-icon svg { width: 1.35rem; height: 1.35rem; }
.card p { color: var(--slate); margin: 0; }

@media (min-width: 640px) {
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .benefits-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (min-width: 1100px) {
  .benefits-grid { grid-template-columns: repeat(6, 1fr); }
  .benefits-grid .card:nth-child(-n+3) { grid-column: span 2; }
  .benefits-grid .card:nth-child(n+4) { grid-column: span 3; }
}

/* Steps */
.steps-wrap { position: relative; }
.steps-track {
  display: none;
  position: absolute;
  top: 1.35rem;
  left: 8%;
  right: 8%;
  height: 3px;
  background: rgba(11, 107, 58, 0.15);
  border-radius: 99px;
  overflow: hidden;
  z-index: 0;
}
.steps-track-fill {
  display: block;
  height: 100%;
  width: 0;
  background: var(--green);
  transform-origin: left;
  transition: width 1.1s ease 0.15s;
}
.steps-wrap.in-view .steps-track-fill { width: 100%; }

.steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 1.1rem;
  position: relative;
  z-index: 1;
}
.steps li {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.2rem 1.15rem 1.15rem;
  border: 1px solid var(--line);
}
.step-num {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 0.7rem;
  position: relative;
  z-index: 2;
}
.steps-wrap.in-view .step-num { animation: pulseNum 1.1s ease both; }
.steps-wrap.in-view li:nth-child(2) .step-num { animation-delay: 0.18s; }
.steps-wrap.in-view li:nth-child(3) .step-num { animation-delay: 0.32s; }
.steps-wrap.in-view li:nth-child(4) .step-num { animation-delay: 0.46s; }
.steps-wrap.in-view li:nth-child(5) .step-num { animation-delay: 0.6s; }
.steps h3 { margin-bottom: 0.3rem; }
.steps p { margin: 0; color: var(--slate); }

@media (min-width: 900px) {
  .steps-track { display: block; }
  .steps-4 { grid-template-columns: repeat(4, 1fr); }
  .steps-5 { grid-template-columns: repeat(5, 1fr); }
  .steps li { text-align: center; background: transparent; border: 0; padding: 0 0.4rem; }
  .step-num { margin-inline: auto; }
}

.callout {
  margin: 1.4rem 0 0;
  padding: 0.95rem 1.1rem;
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 0 0.8rem 0.8rem 0;
  color: var(--ink);
}

.benefit-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.9rem;
}
.benefit-tile {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem;
  border: 1px solid var(--line);
}
.benefit-kicker {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--green);
  margin: 0 0 0.25rem;
  font-family: var(--font-display);
}
.benefit-value {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.7rem;
  letter-spacing: -0.03em;
  color: var(--navy);
  margin: 0 0 0.4rem;
}
.benefit-tile p:last-child { margin: 0; color: var(--slate); }

@media (min-width: 700px) {
  .benefit-row { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .benefit-row { grid-template-columns: repeat(5, 1fr); }
}

/* Plans */
.plans-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  align-items: stretch;
}
.plan-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 1.4rem 1.25rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  height: 100%;
}
.plan-card h3 { color: var(--white); }
.plan-index {
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #b7e0c8;
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.plan-card ul { color: rgba(255, 255, 255, 0.82); padding-left: 1.1rem; }
.plan-foot {
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.92rem;
}
.plan-card-featured {
  background: var(--white);
  color: var(--ink);
  border-color: transparent;
}
.plan-card-featured h3 { color: var(--navy); }
.plan-card-featured .plan-index { color: var(--green); }
.plan-card-featured ul { color: var(--slate); }
.plan-card-featured .plan-foot {
  color: var(--green);
  border-top-color: var(--line);
}
.plans-note {
  margin-top: 1.3rem;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

@media (min-width: 800px) {
  .plans-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .plans-grid { grid-template-columns: repeat(4, 1fr); }
}

.notice-row {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.6rem;
}
.notice-row p {
  margin: 0;
  background: var(--mint);
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
}
.service-promise {
  margin-top: 1.1rem;
  font-weight: 600;
}
.claims-contact a { font-weight: 700; }

/* Checklist */
.checklist-card {
  background: var(--white);
  border: 2px solid var(--navy);
  border-radius: 1.2rem;
  padding: 1.5rem 1.25rem 1.3rem;
  box-shadow: var(--shadow);
}
.checklist-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.2rem;
}
.checklist-head p { max-width: 36rem; color: var(--slate); }
.checklist-title {
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin: 1.1rem 0 0.6rem;
}
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
}
.checklist li {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  padding: 0.85rem 0.7rem;
  border-bottom: 1px solid var(--line);
  margin: 0;
}
.checklist li:last-child { border-bottom: 0; }
.check-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 0.45rem;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 800;
  display: grid;
  place-items: center;
}
.checklist strong { display: block; color: var(--navy); }
.checklist span { color: var(--slate); font-size: 0.95rem; }
.checklist-extra li { background: var(--mint); border-radius: 0.7rem; border-bottom: 0; }
.checklist-foot {
  margin: 1rem 0 0;
  font-size: 0.9rem;
  color: var(--slate);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.35rem 1.25rem;
  border: 1px solid var(--line);
}
.tick-list {
  list-style: none;
  padding: 0;
}
.tick-list li {
  position: relative;
  padding-left: 1.55rem;
  color: var(--slate);
}
.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 0.7rem;
  height: 0.4rem;
  border-left: 2.5px solid var(--green);
  border-bottom: 2.5px solid var(--green);
  transform: rotate(-45deg);
}

@media (min-width: 860px) {
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Testimonials */
.quotes-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
.quote-card {
  margin: 0;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.3rem 1.2rem 1.15rem;
  border: 1px solid var(--line);
}
.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
  font-size: 1.05rem;
  margin-bottom: 0.55rem;
  line-height: 1;
}
.stars-half { background: linear-gradient(90deg, var(--gold) 86%, #c5cdc8 86%); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.quote-card p { color: var(--ink); }
.quote-card footer {
  display: flex;
  gap: 0.7rem;
  align-items: center;
  margin-top: 0.9rem;
}
.quote-card footer span span { display: block; color: var(--slate); font-size: 0.88rem; font-weight: 400; }
.avatar {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--mint);
  color: var(--green);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.78rem;
}

@media (min-width: 760px) {
  .quotes-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .quotes-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Accordion */
.accordion { display: grid; gap: 0.55rem; }
.acc-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.9rem;
  overflow: hidden;
}
.acc-item h3 { margin: 0; }
.acc-btn {
  width: 100%;
  text-align: left;
  background: transparent;
  border: 0;
  padding: 1rem 2.8rem 1rem 1.1rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--navy);
  cursor: pointer;
  position: relative;
}
.acc-btn::after {
  content: "";
  position: absolute;
  right: 1.15rem;
  top: 50%;
  width: 0.55rem;
  height: 0.55rem;
  border-right: 2px solid var(--green);
  border-bottom: 2px solid var(--green);
  transform: translateY(-70%) rotate(45deg);
  transition: transform 0.2s ease;
}
.acc-item.open .acc-btn::after { transform: translateY(-30%) rotate(225deg); }
.acc-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.32s ease;
}
.acc-inner { padding: 0 1.1rem 1.05rem; color: var(--slate); }
.acc-inner p:last-child { margin-bottom: 0; }

/* Vision */
.vision {
  background: linear-gradient(160deg, var(--navy), #0a3a24);
  color: var(--white);
  text-align: center;
}
.vision-quote {
  margin: 0 0 1.4rem;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.6vw, 1.7rem);
  font-weight: 600;
  line-height: 1.45;
  letter-spacing: -0.02em;
  color: var(--white);
}
.promise {
  font-size: 1.08rem;
  color: #d5eadc;
  margin-bottom: 2rem;
}
.pillars {
  list-style: none;
  padding: 0;
  display: grid;
  gap: 0.8rem;
  text-align: left;
}
.pillars li {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 0.9rem;
  padding: 1rem 1.1rem;
}
.pillars strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 0.2rem;
}
.pillars span { color: rgba(255, 255, 255, 0.78); }

@media (min-width: 760px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

/* Contact */
.contact-grid {
  display: grid;
  gap: 2rem;
}
.contact-list {
  list-style: none;
  padding: 0;
}
.contact-list li { margin: 0 0 0.9rem; }
.contact-list span {
  display: block;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 700;
}
.contact-list a {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 1.05rem;
}
.contact-list a:hover { color: var(--green); }
.contact-cta { margin: 1.2rem 0 1.4rem; }
.partner-line {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
}

.form-panel {
  background: var(--mint);
  border-radius: calc(var(--radius) + 0.15rem);
  padding: 1.5rem 1.25rem;
}

.enquiry-form {
  display: grid;
  gap: 0.85rem;
}
.enquiry-form label,
.enquiry-form fieldset {
  display: grid;
  gap: 0.35rem;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--navy);
  border: 0;
  padding: 0;
  margin: 0;
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  font: inherit;
  padding: 0.7rem 0.8rem;
  border-radius: 0.7rem;
  border: 1px solid rgba(11, 31, 58, 0.16);
  background: var(--white);
  color: var(--ink);
  width: 100%;
}
.enquiry-form.is-tried input:invalid,
.enquiry-form.is-tried select:invalid,
.enquiry-form.is-tried textarea:invalid {
  border-color: #b42318;
}
.hint { font-weight: 400; color: var(--slate); font-size: 0.82rem; }
.optional { font-weight: 400; color: var(--slate); }
.choice {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  background: var(--white);
  border-radius: 0.7rem;
  padding: 0.7rem 0.8rem;
  font-weight: 600;
  cursor: pointer;
}
.choice input { width: auto; accent-color: var(--green); }
.field-error {
  color: #8a1f16;
  font-size: 0.82rem;
  font-weight: 600;
  margin: 0;
}
.form-success {
  margin: 0.4rem 0 0;
  padding: 0.85rem 0.95rem;
  background: var(--white);
  border-radius: 0.7rem;
  color: var(--green-deep);
  font-weight: 700;
}
.enquiry-form.is-sent .form-success { display: block; }
.enquiry-form.is-sent label,
.enquiry-form.is-sent fieldset,
.enquiry-form.is-sent button,
.enquiry-form.is-sent .hint { display: none; }

@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1fr; align-items: start; }
}

/* Footer */
.site-footer {
  background: linear-gradient(165deg, #071627 0%, var(--navy) 40%, #0a3320 100%);
  color: rgba(255, 255, 255, 0.82);
  padding: 3rem 0 calc(2rem + env(safe-area-inset-bottom));
}
.footer-grid {
  display: grid;
  gap: 1.6rem;
  margin-bottom: 1.8rem;
}
.footer-logo { height: 52px; width: auto; margin-bottom: 0.7rem; filter: drop-shadow(0 1px 2px rgba(0,0,0,0.25)); }
.footer-title {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--white);
  margin: 0 0 0.2rem;
}
.footer-label {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #b7e0c8;
  font-weight: 700;
}
.site-footer a { color: var(--white); text-decoration: none; }
.site-footer a:hover { color: #b7e0c8; }
.footer-partners { font-size: 0.92rem; }
.popia {
  font-size: 0.86rem;
  color: rgba(255, 255, 255, 0.68);
  max-width: 52rem;
}
.copyright { font-size: 0.86rem; color: rgba(255, 255, 255, 0.6); }

@media (min-width: 800px) {
  .footer-grid { grid-template-columns: 1.3fr 1fr 1fr; }
}

/* Mobile sticky bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: flex;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: var(--navy);
  transform: translateY(110%);
  transition: transform 0.35s ease;
}
.mobile-bar .btn { flex: 1; }
.mobile-bar.is-visible { transform: translateY(0); }

@media (max-width: 767px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 5.4rem; }
  .site-footer { padding-bottom: 1.5rem; }
}
@media (min-width: 768px) {
  .mobile-bar { display: none !important; }
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.card-grid .reveal:nth-child(2) { transition-delay: 0.07s; }
.card-grid .reveal:nth-child(3) { transition-delay: 0.14s; }
.card-grid .reveal:nth-child(4) { transition-delay: 0.21s; }
.card-grid .reveal:nth-child(5) { transition-delay: 0.28s; }
.quotes-grid .reveal:nth-child(2) { transition-delay: 0.08s; }
.quotes-grid .reveal:nth-child(3) { transition-delay: 0.16s; }
.quotes-grid .reveal:nth-child(4) { transition-delay: 0.08s; }
.quotes-grid .reveal:nth-child(5) { transition-delay: 0.16s; }
.quotes-grid .reveal:nth-child(6) { transition-delay: 0.24s; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes logoIn {
  from { opacity: 0; transform: scale(0.92); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideIn {
  from { opacity: 0; transform: translateX(-18px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulseNum {
  0% { box-shadow: 0 0 0 0 rgba(11, 107, 58, 0.45); }
  70% { box-shadow: 0 0 0 10px rgba(11, 107, 58, 0); }
  100% { box-shadow: 0 0 0 0 rgba(11, 107, 58, 0); }
}

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

@media print {
  .site-header,
  .hero,
  .stats-band,
  .trust,
  .mobile-bar,
  .hero-cta,
  .nav-toggle,
  .btn { display: none !important; }
  body { background: white; color: black; padding: 0; }
  .checklist-card {
    border: 2px solid #000;
    box-shadow: none;
    page-break-inside: avoid;
  }
}

@media (max-width: 767px) {
  .hero-people { display: none; }
}

@media (max-width: 360px) {
  .container { width: calc(100% - 1.4rem); }
  h1 { font-size: 1.7rem; }
  .hero-cta .btn { flex: 1 1 100%; }
}
