.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 72px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(8,29,65,0.9) 0%, rgba(0,0,0,0.68) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px 24px;
  width: 100%;
}
.page-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.page-breadcrumb a { color: rgba(255,255,255,0.55); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--green-light); }
.page-breadcrumb .material-symbols-outlined { font-size: 0.9rem; }
.page-hero-heading {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.2rem, 5.5vw, 3.8rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 20px;
  max-width: 700px;
}
.page-hero-sub {
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.75);
  max-width: 580px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 40px;
}
.page-hero-price { margin-top: 8px; }

.price-rule {
  width: 48px;
  height: 3px;
  background: var(--amber);
  border-radius: 2px;
  margin-bottom: 20px;
}
.price-display {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.price-main {
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-from {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.price-value {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: clamp(2.8rem, 6vw, 4rem);
  color: var(--white);
  line-height: 1;
}
.price-gst {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
}
.price-divider {
  width: 1px;
  height: 48px;
  background: rgba(255,255,255,0.2);
  flex-shrink: 0;
}
.price-perks {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.price-perk {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
}
.price-perk-tick {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--green-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 0.58rem;
  font-weight: 800;
  flex-shrink: 0;
}

.page-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.hero-badge .material-symbols-outlined { font-size: 0.95rem; color: var(--green-light); }

.page-section { padding: var(--section-pad); }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-navy { background: var(--navy); }

.two-col {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: start;
}

.checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.checklist li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.check-icon {
  color: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon .material-symbols-outlined { font-size: 1.2rem; }
.checklist strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 2px;
}
.checklist span {
  font-size: 0.87rem;
  color: var(--gray-mid);
  line-height: 1.55;
}

.pricing-header {
  text-align: center;
  margin-bottom: 52px;
}
.pricing-header .section-sub { margin: 0 auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}
.pricing-card {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 16px;
  padding: 36px 28px;
  position: relative;
}
.pricing-card--featured {
  border-color: var(--green);
  box-shadow: 0 8px 32px rgba(91,149,65,0.15);
}
.pricing-card-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 99px;
  white-space: nowrap;
}
.pricing-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.pricing-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(91,149,65,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  flex-shrink: 0;
}
.pricing-icon .material-symbols-outlined { font-size: 1.1rem; }
.pricing-tier {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
}
.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 14px;
}
.pricing-from {
  font-size: 0.78rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.pricing-amount {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 2.4rem;
  color: var(--navy);
  line-height: 1;
}
.pricing-amount--sm { font-size: 1.6rem; }
.pricing-tax {
  font-size: 0.82rem;
  font-family: var(--font-heading);
  font-weight: 600;
  color: var(--gray-mid);
}
.pricing-desc {
  font-size: 0.88rem;
  color: var(--gray-mid);
  line-height: 1.6;
  margin-bottom: 24px;
}
.pricing-cta { width: 100%; justify-content: center; }
.pricing-footnote {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray-mid);
  margin-top: 28px;
}

.why-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 72px;
  align-items: start;
}
.why-points {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.why-point {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  flex-shrink: 0;
}
.why-icon .material-symbols-outlined { font-size: 1.1rem; }
.why-point strong {
  display: block;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
  margin-bottom: 4px;
}
.why-point p {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}

.certs-header {
  text-align: center;
  margin-bottom: 52px;
}
.certs-header .section-sub { margin: 0 auto; }
.certs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.cert-card {
  background: var(--white);
  border-radius: var(--radius-card);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
}
.cert-icon {
  width: 56px; height: 56px;
  border-radius: 14px;
  background: rgba(91,149,65,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  margin: 0 auto 18px;
}
.cert-icon .material-symbols-outlined { font-size: 1.5rem; }
.cert-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 10px;
}
.cert-desc {
  font-size: 0.84rem;
  color: var(--gray-mid);
  line-height: 1.6;
}

.page-cta-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.cta-duo {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.quote-form-box {
  background: var(--white);
  border: 1.5px solid var(--gray-light);
  border-radius: 16px;
  padding: 40px 36px;
  box-shadow: var(--shadow-card);
}
.quote-form-box .form-group label {
  color: var(--navy);
}
.input-light {
  background: var(--cream) !important;
  border-color: var(--gray-light) !important;
  color: var(--dark) !important;
}
.input-light::placeholder { color: rgba(30,32,29,0.35) !important; }
.input-light:focus {
  border-color: var(--green) !important;
  background: var(--white) !important;
}
.input-light option { background: var(--white); color: var(--dark); }

.benefits-header {
  text-align: center;
  margin-bottom: 56px;
}
.benefits-header .section-sub { margin: 0 auto; }
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.benefit-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--radius-card);
  padding: 36px 28px;
  transition: background 0.25s;
}
.benefit-card:hover { background: rgba(255,255,255,0.09); }
.benefit-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(155,207,83,0.12);
  border: 1px solid rgba(155,207,83,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-light);
  margin-bottom: 20px;
}
.benefit-icon .material-symbols-outlined { font-size: 1.3rem; }
.benefit-title {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 10px;
}
.benefit-desc {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.58);
  line-height: 1.65;
}

.custom-select--light .custom-select-trigger {
  background: var(--cream);
  border-color: var(--gray-light);
  color: rgba(30,32,29,0.38);
}
.custom-select--light .custom-select-trigger.has-value { color: var(--dark); }
.custom-select--light .custom-select-trigger:focus,
.custom-select--light.open .custom-select-trigger {
  border-color: var(--green);
  background: var(--white);
  outline: none;
}
.custom-select--light .custom-select-arrow { color: var(--gray-mid); }
.custom-select--light .custom-select-options {
  background: var(--white);
  border-color: var(--gray-light);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}
.custom-select--light .custom-select-option {
  color: var(--dark);
  border-bottom-color: var(--gray-light);
}
.custom-select--light .custom-select-option::before { background: var(--gray-light); }
.custom-select--light .custom-select-option:hover {
  background: var(--cream);
  color: var(--navy);
}
.custom-select--light .custom-select-option:hover::before { background: var(--amber); }
.custom-select--light .custom-select-option.selected {
  background: rgba(91,149,65,0.08);
  color: var(--green-dark);
}
.custom-select--light .custom-select-option.selected::before { background: var(--green); }

.spec-table {
  display: flex;
  flex-direction: column;
  border-radius: 12px;
  overflow: hidden;
  border: 1.5px solid var(--gray-light);
}
.spec-row {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  border-bottom: 1px solid var(--gray-light);
  background: var(--white);
}
.spec-row:last-child { border-bottom: none; }
.spec-row:nth-child(even) { background: var(--cream); }
.spec-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--gray-mid);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  width: 130px;
  flex-shrink: 0;
}
.spec-value {
  font-size: 0.9rem;
  color: var(--navy);
  font-weight: 500;
}

.cross-link-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 56px;
  padding-top: 40px;
}
.cross-link-eyebrow {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--white);
  margin-bottom: 8px;
}
.cross-link-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 560px;
}

@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .why-layout { grid-template-columns: 1fr; gap: 40px; }
  .certs-grid { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .page-hero { min-height: 80vh; }
  .page-hero-heading { font-size: 2rem; }
  .certs-grid { grid-template-columns: 1fr; }
  .quote-form-box { padding: 28px 20px; }
  .page-hero-price { flex-direction: column; align-items: flex-start; gap: 10px; }
  .cross-link-inline { flex-direction: column; align-items: flex-start; }
}
