/* ==========================================================================
   Accounting & IT Consultants Limited — shared stylesheet
   NZ natural palette, Fraunces + Inter, tasteful Māori-inspired geometric
   decoration. Mobile-first, WCAG AA contrast targets throughout.
   ========================================================================== */

:root {
  /* Brand palette */
  --green: #1E5C4A;
  --green-dark: #123B30;
  --green-light: #2E7A63;
  --ocean: #2A7F9E;
  --ocean-dark: #1F6379;
  --sand: #F7F4EE;
  --sand-alt: #F1ECE1;
  --border: #EAE4D8;
  --ink: #22302B;
  --muted: #5C6B64;
  --gold: #C98A2B;
  --gold-dark: #A86F1E;
  --white: #FFFFFF;

  /* Radii / shadow / layout */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;
  --shadow-sm: 0 2px 10px rgba(18, 59, 48, 0.08);
  --shadow-md: 0 10px 28px rgba(18, 59, 48, 0.12);
  --shadow-lg: 0 26px 56px rgba(18, 59, 48, 0.18);
  --container: 1180px;

  /* Type */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Decorative geometric koru/chevron band (abstract, non-iwi-specific) */
  --pattern-koru: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='28' viewBox='0 0 96 28'%3E%3Cg fill='none' stroke='%231E5C4A' stroke-width='1.6' opacity='0.5' stroke-linecap='round'%3E%3Cpath d='M4 24c0-9 6.5-15.5 15.5-15.5S35 15 35 24'/%3E%3Ccircle cx='19.5' cy='7.2' r='2.1'/%3E%3Cpath d='M52 24c0-9 6.5-15.5 15.5-15.5S83 15 83 24'/%3E%3Ccircle cx='67.5' cy='7.2' r='2.1'/%3E%3C/g%3E%3C/svg%3E");
  --pattern-koru-light: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='96' height='28' viewBox='0 0 96 28'%3E%3Cg fill='none' stroke='%23F7F4EE' stroke-width='1.6' opacity='0.4' stroke-linecap='round'%3E%3Cpath d='M4 24c0-9 6.5-15.5 15.5-15.5S35 15 35 24'/%3E%3Ccircle cx='19.5' cy='7.2' r='2.1'/%3E%3Cpath d='M52 24c0-9 6.5-15.5 15.5-15.5S83 15 83 24'/%3E%3Ccircle cx='67.5' cy='7.2' r='2.1'/%3E%3C/g%3E%3C/svg%3E");
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
svg {
  max-width: 100%;
  display: block;
}

a {
  color: var(--ocean-dark);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, p {
  margin: 0 0 0.75em 0;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--green-dark);
  line-height: 1.18;
  font-weight: 600;
}

button {
  font-family: inherit;
}

/* Visible focus for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--ocean);
  outline-offset: 2px;
  border-radius: 4px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  background: var(--green-dark);
  color: #fff;
  padding: 0.75em 1.25em;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  left: 0;
  top: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 64px 0;
}

.section-head {
  max-width: 680px;
  margin: 0 auto 40px auto;
  text-align: center;
}

.section-head h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.section-head.align-left {
  margin-left: 0;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ocean-dark);
  background: rgba(42, 127, 158, 0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}

/* ---------- Decorative pattern bands ---------- */
.pattern-band {
  height: 26px;
  background-image: var(--pattern-koru);
  background-repeat: repeat-x;
  background-position: center;
  background-color: var(--sand-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.pattern-band.on-dark {
  background-image: var(--pattern-koru-light);
  background-color: var(--green-dark);
  border-color: rgba(255, 255, 255, 0.12);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none;
  line-height: 1.2;
}

.btn:hover {
  text-decoration: none;
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--green);
  color: #fff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background: var(--green-dark);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-dark);
}

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

.btn-gold {
  background: var(--gold);
  color: var(--green-dark);
  box-shadow: var(--shadow-sm);
}

.btn-gold:hover {
  background: #b87c22;
  box-shadow: var(--shadow-md);
}

.btn-on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

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

.btn-block {
  width: 100%;
}

.btn-sm {
  padding: 9px 18px;
  font-size: 0.88rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(247, 244, 238, 0.94);
  backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 1.02rem;
  font-family: var(--font-display);
  letter-spacing: -0.01em;
}

.brand:hover {
  text-decoration: none;
}

.brand-mark {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

/* Company logo mark — recreated from assets/images/Accounting & IT Consultants logoupated.jpg */
.brand-mark .logo-swirl-main {
  fill: #232F80;
}

.brand-mark .logo-swirl-accent {
  fill: #9CCDE9;
}

.site-footer .brand-mark .logo-swirl-main {
  fill: #fff;
}

.brand-text-accent {
  color: var(--ocean-dark);
}

.brand small {
  display: block;
  font-family: var(--font-sans);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 2px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 2px;
}

.main-nav a {
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
  padding: 9px 13px;
  border-radius: var(--radius-sm);
  transition: background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}

.main-nav a:hover {
  background: rgba(30, 92, 74, 0.08);
  color: var(--green-dark);
  text-decoration: none;
}

.main-nav a[aria-current="page"] {
  color: var(--green-dark);
  background: rgba(30, 92, 74, 0.1);
}

.nav-cta {
  margin-left: 6px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  background: #fff;
  cursor: pointer;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--green-dark);
  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);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 15% 15%, rgba(42, 127, 158, 0.22), transparent 45%),
    linear-gradient(160deg, var(--green-dark) 0%, var(--green) 62%, var(--green-light) 100%);
  color: #fff;
  padding: 76px 0 88px 0;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 22px;
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  margin-bottom: 20px;
}

.hero p.lead {
  font-family: var(--font-sans);
  font-size: 1.14rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 48ch;
  margin-bottom: 30px;
}

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

.hero-art {
  justify-self: center;
}

.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.hero-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: #fff;
}

.hero-stat span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.72);
}

/* ---------- Value prop strip ---------- */
.value-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.value-chip {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.value-chip .card-icon {
  margin: 0 auto 12px auto;
}

.value-chip h3 {
  font-size: 0.95rem;
  margin-bottom: 4px;
}

.value-chip p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- Cards / Pillars ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: rgba(30, 92, 74, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.card-icon svg {
  width: 30px;
  height: 30px;
  color: var(--green);
}

.card h3 {
  font-size: 1.28rem;
  margin-bottom: 10px;
}

.card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.card ul {
  list-style: none;
  margin-bottom: 20px;
  flex-grow: 1;
}

.card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 10px;
  color: var(--ink);
  font-size: 0.95rem;
}

.card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 16px;
  height: 16px;
  background: var(--green);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.card-link {
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: auto;
  color: var(--green-dark);
}

/* ---------- Feature grid ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 26px;
  text-align: left;
  box-shadow: var(--shadow-sm);
}

.feature .card-icon {
  margin-bottom: 16px;
}

.feature h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.feature p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------- Steps ---------- */
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  counter-reset: step;
}

.step {
  position: relative;
  padding: 30px 24px 24px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--green-dark);
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 0.98rem;
  margin-bottom: 16px;
}

.step h3 {
  font-size: 1.05rem;
}

.step p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
}

/* ---------- Two disciplines / hybrid section ---------- */
.hybrid-panel {
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green) 100%);
  border-radius: var(--radius-lg);
  color: #fff;
  padding: 48px;
  box-shadow: var(--shadow-lg);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hybrid-panel h2,
.hybrid-panel h3 {
  color: #fff;
}

.hybrid-panel .lead-line {
  font-family: var(--font-display);
  font-size: 1.3rem;
  line-height: 1.4;
  color: #fff;
  margin-bottom: 0;
}

.hybrid-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.hybrid-col {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-md);
  padding: 20px;
}

.hybrid-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 6px;
}

.hybrid-col p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ---------- Audience grid ---------- */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.audience-card .card-icon {
  margin: 0 auto 14px auto;
}

.audience-card h3 {
  font-size: 1rem;
  margin-bottom: 4px;
}

.audience-card p {
  font-size: 0.86rem;
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- Testimonials ---------- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.testimonial-card blockquote {
  margin: 0 0 16px 0;
  font-family: var(--font-display);
  font-size: 1.08rem;
  color: var(--green-dark);
  line-height: 1.45;
}

.testimonial-card cite {
  font-style: normal;
  font-size: 0.86rem;
  color: var(--muted);
  font-weight: 600;
}

/* ---------- Trust badges ---------- */
.badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(30, 92, 74, 0.1);
  color: var(--green-dark);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(30, 92, 74, 0.16);
}

.pill.gold {
  background: rgba(201, 138, 43, 0.14);
  color: var(--gold-dark);
  border-color: rgba(201, 138, 43, 0.24);
}

/* ---------- FAQ teaser / CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--green-dark) 0%, var(--ocean-dark) 100%);
  border-radius: var(--radius-lg);
  padding: 52px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
  color: #fff;
  font-size: 1.7rem;
  margin-bottom: 8px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 0;
  max-width: 50ch;
}

.cta-banner .btn-primary {
  background: #fff;
  color: var(--green-dark);
}

.cta-banner .btn-primary:hover {
  background: rgba(255, 255, 255, 0.88);
}

.cta-banner-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* ---------- Generic content sections ---------- */
.bg-surface {
  background: var(--white);
}

.bg-tint {
  background: linear-gradient(180deg, var(--sand-alt) 0%, var(--sand) 100%);
}

.bg-deep {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.86);
}

.bg-deep h2 {
  color: #fff;
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.service-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.service-detail {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.service-detail h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.1rem;
  margin-bottom: 6px;
}

.service-detail .card-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 0;
}

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

.service-detail p {
  color: var(--muted);
  font-size: 0.94rem;
  margin: 8px 0 14px 0;
  flex-grow: 1;
}

.service-price {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  color: var(--green-dark);
  font-size: 0.95rem;
  background: rgba(30, 92, 74, 0.08);
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  align-self: flex-start;
}

.service-group-head {
  margin: 56px 0 24px 0;
}

.service-group-head:first-of-type {
  margin-top: 0;
}

.service-group-head h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ocean-dark);
  border-bottom: 2px solid var(--border);
  padding-bottom: 12px;
}

/* ---------- Cross-sell strip ---------- */
.cross-sell {
  background: var(--sand-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cross-sell h3 {
  margin-bottom: 4px;
}

.cross-sell p {
  color: var(--muted);
  margin-bottom: 0;
}

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--green);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--green-dark);
  font-weight: 700;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-sm);
  white-space: nowrap;
}

.pricing-card h3 {
  font-size: 1.3rem;
  margin-bottom: 6px;
}

.pricing-card .pricing-sub {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 20px;
}

.pricing-price {
  font-family: var(--font-display);
  font-size: 2.1rem;
  color: var(--green-dark);
  margin-bottom: 4px;
}

.pricing-price span {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--muted);
}

.pricing-note {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 22px;
}

.pricing-card ul {
  list-style: none;
  margin-bottom: 26px;
  flex-grow: 1;
}

.pricing-card ul li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 12px;
  font-size: 0.93rem;
}

.pricing-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 16px;
  height: 16px;
  background: var(--ocean);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") no-repeat center / contain;
}

.price-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.price-table caption {
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--green-dark);
  padding: 20px 24px 4px 24px;
  caption-side: top;
}

.price-table th,
.price-table td {
  text-align: left;
  padding: 12px 24px;
  border-bottom: 1px solid var(--border);
  font-size: 0.94rem;
}

.price-table th {
  color: var(--muted);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.76rem;
  letter-spacing: 0.05em;
}

.price-table td.price-cell {
  font-weight: 700;
  color: var(--green-dark);
  white-space: nowrap;
}

.price-table tr:last-child td {
  border-bottom: none;
}

.price-tables-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: start;
}

/* ---------- FAQ accordion ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

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

.faq-item summary::after {
  content: "+";
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--ocean);
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

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

.faq-item .faq-answer {
  padding: 0 22px 20px 22px;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Values / About ---------- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.founders-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.founder-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  text-align: center;
}

.founder-avatar {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  margin: 0 auto 18px auto;
}

.founder-avatar svg {
  width: 84px;
  height: 84px;
}

.founder-card h3 {
  font-size: 1.15rem;
  margin-bottom: 2px;
}

.founder-role {
  color: var(--ocean-dark);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 12px;
}

.founder-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-bottom: 0;
  text-align: left;
}

.founder-card ul {
  list-style: none;
  text-align: left;
  margin-top: 14px;
}

.founder-card ul li {
  font-size: 0.86rem;
  color: var(--ink);
  padding-left: 20px;
  position: relative;
  margin-bottom: 8px;
}

.founder-card ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 12px;
  height: 12px;
  background: var(--ocean);
  border-radius: 50%;
}

.cpa-badge-block {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}

.cpa-badge-block img {
  width: 84px;
  height: auto;
  flex-shrink: 0;
}

.cpa-badge-block h3 {
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.cpa-badge-block p {
  color: var(--muted);
  margin-bottom: 0;
  font-size: 0.93rem;
}

/* ---------- Resources / Guides ---------- */
.guide-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}

.guide-card h3 {
  font-size: 1.1rem;
}

.guide-card p {
  color: var(--muted);
  font-size: 0.92rem;
  flex-grow: 1;
}

.guide-card .btn {
  margin-top: 12px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.blog-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.blog-card p {
  color: var(--muted);
  font-size: 0.88rem;
  margin-bottom: 0;
}

/* ---------- Blog post article body ---------- */
.post-body {
  max-width: 70ch;
}

.post-body h2 {
  font-size: 1.4rem;
  margin-top: 1.6em;
}

.post-body h3 {
  font-size: 1.15rem;
  margin-top: 1.4em;
}

.post-body p {
  color: var(--ink);
  margin-bottom: 1.1em;
}

.post-body ul,
.post-body ol {
  color: var(--ink);
  margin: 0 0 1.1em 0;
  padding-left: 26px;
}

.post-body li {
  margin-bottom: 8px;
}

.post-body blockquote {
  margin: 0 0 1.1em 0;
  padding: 12px 20px;
  border-left: 4px solid var(--green);
  background: var(--sand-alt);
  color: var(--muted);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.post-body blockquote p:last-child {
  margin-bottom: 0;
}

.post-body code {
  background: var(--sand-alt);
  border-radius: 4px;
  padding: 2px 6px;
  font-size: 0.9em;
}

.post-body pre {
  background: var(--sand-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 16px 18px;
  overflow-x: auto;
  margin-bottom: 1.1em;
}

.post-body pre code {
  background: none;
  padding: 0;
}

.post-body a {
  color: var(--ocean-dark);
  font-weight: 600;
}

.post-body img {
  max-width: 100%;
  border-radius: var(--radius-md);
  margin: 1em 0;
}

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
}

.form-row {
  margin-bottom: 20px;
}

.form-row label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--green-dark);
}

.form-row .hint {
  font-weight: 400;
  color: var(--muted);
  font-size: 0.85rem;
}

.form-row input,
.form-row textarea,
.form-row select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--sand);
  color: var(--ink);
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
  border-color: var(--ocean);
}

.form-row textarea {
  resize: vertical;
  min-height: 140px;
}

/* Honeypot field - hidden from real users, catches bots */
.hp-field {
  position: absolute;
  left: -9999px;
  top: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.contact-info-card {
  background: var(--green-dark);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
}

.contact-info-card h3 {
  color: #fff;
  font-size: 1.15rem;
}

.contact-info-list {
  list-style: none;
  margin-top: 18px;
}

.contact-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 0.98rem;
}

.contact-info-list li:last-child {
  margin-bottom: 0;
}

.contact-info-list svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info-list a {
  color: #fff;
  font-weight: 600;
}

.map-note,
.embed-placeholder {
  background: var(--white);
  border: 1px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  font-size: 0.92rem;
  color: var(--muted);
}

.embed-placeholder {
  min-height: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 10px;
}

.embed-placeholder svg {
  width: 36px;
  height: 36px;
  color: var(--ocean);
}

.booking-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

/* ---------- Legal / long-form content pages ---------- */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  margin-top: 2em;
  font-size: 1.35rem;
}

.legal-content h2:first-child {
  margin-top: 0;
}

.legal-content p,
.legal-content li {
  color: var(--ink);
}

.legal-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 1em;
}

.legal-content li {
  margin-bottom: 6px;
}

.legal-updated {
  color: var(--muted);
  font-size: 0.88rem;
}

/* ---------- Confirmation / simple page ---------- */
.confirm-page {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.confirm-page .confirm-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px auto;
  color: var(--green);
}

.confirm-page p {
  color: var(--muted);
  max-width: 46ch;
  margin: 16px auto 28px auto;
}

.confirm-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--green-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 28px 0;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 14px;
}

.footer-brand .brand-mark {
  width: 34px;
  height: 34px;
}

.footer-col h4 {
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.footer-col p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

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

.footer-badges {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.footer-cpa {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-cpa img {
  width: 44px;
  height: auto;
  background: #fff;
  border-radius: 6px;
  padding: 4px;
}

.footer-cpa span {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
}

.footer-xero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--green-dark);
  background: #fff;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
}

.footer-privacy-note {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 60ch;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.footer-bottom-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.68);
}

/* ---------- 404 page ---------- */
.error-page {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.error-page .error-code {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 700;
  color: var(--ocean);
  margin-bottom: 0;
  line-height: 1;
}

.error-page p {
  color: var(--muted);
  max-width: 46ch;
  margin: 16px auto 28px auto;
}

/* ---------- Scroll reveal ---------- */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (max-width: 1180px) and (min-width: 1025px) {
  .main-nav a {
    padding: 9px 9px;
    font-size: 0.86rem;
  }
}

@media (max-width: 980px) {
  .pillars,
  .service-detail-grid,
  .hybrid-panel,
  .hybrid-cols,
  .price-tables-grid {
    grid-template-columns: 1fr;
  }

  .features-grid,
  .value-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps,
  .audience-grid,
  .testimonial-grid,
  .guide-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .founders-panel {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-art {
    order: -1;
    max-width: 320px;
  }

  .two-col,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .pricing-card.featured {
    transform: none;
  }
}

@media (max-width: 1024px) {
  .main-nav {
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    background: var(--sand);
    flex-direction: column;
    align-items: stretch;
    padding: 12px 20px 24px 20px;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    max-height: calc(100vh - 65px);
    overflow-y: auto;
  }

  .main-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .main-nav a {
    padding: 12px 10px;
    border-radius: var(--radius-sm);
    font-size: 0.98rem;
  }

  .nav-cta {
    margin-left: 0;
    margin-top: 8px;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 760px) {
  .features-grid,
  .steps,
  .value-strip,
  .audience-grid,
  .testimonial-grid,
  .guide-grid,
  .blog-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    flex-direction: column;
    text-align: center;
    padding: 36px 24px;
  }

  section {
    padding: 48px 0;
  }

  .founders-panel,
  .contact-form,
  .service-detail,
  .hybrid-panel {
    padding: 24px;
  }

  .price-tables-grid {
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .header-inner {
    padding: 10px 16px;
  }

  .brand {
    font-size: 0.86rem;
  }

  .container {
    padding: 0 16px;
  }
}
