:root {
  --green: #0b4738;
  --green-2: #145544;
  --green-dark: #072d24;
  --green-soft: #eef6f2;
  --gold: #b88a32;
  --gold-soft: #f2e4b2;
  --cream: #f4edde;
  --ink: #16221e;
  --muted: #61716a;
  --line: #d9e4de;
  --surface: #ffffff;
  --surface-muted: #f5f8f6;
  --shadow: 0 20px 60px rgba(7, 45, 36, .10);
  --radius: 22px;
  --container: 1140px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--surface);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
p, h1, h2, h3, ul { margin-top: 0; }
.container { width: min(calc(100% - 2.4rem), var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -9999px; top: 0; }
.skip-link:focus { left: 1rem; top: 1rem; z-index: 100; padding: .75rem 1rem; background: white; border: 2px solid var(--green); }

h1, h2, h3 { margin-bottom: 0; line-height: 1.06; letter-spacing: -.04em; }
h1 { font-size: clamp(3rem, 5.8vw, 5.25rem); font-weight: 780; }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); font-weight: 760; }
h3 { font-size: 1.18rem; font-weight: 720; letter-spacing: -.02em; }

.eyebrow {
  margin-bottom: .85rem;
  color: var(--green);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .15em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(220,229,224,.85);
  backdrop-filter: blur(14px);
}
.nav-wrap { min-height: 74px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .75rem; text-decoration: none; }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand span { display: grid; line-height: 1.15; }
.brand strong { font-size: 1rem; letter-spacing: -.01em; }
.brand small { margin-top: .28rem; color: var(--muted); font-size: .61rem; font-weight: 750; letter-spacing: .105em; text-transform: uppercase; }
.nav { display: flex; align-items: center; gap: 1.35rem; }
.nav a { color: #2f3d38; font-size: .89rem; font-weight: 680; text-decoration: none; }
.nav > a:not(.button):hover { color: var(--green); }
.menu-button { display: none; padding: .62rem .85rem; background: white; border: 1px solid var(--line); border-radius: 10px; color: var(--green); font: inherit; font-weight: 750; }

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: .78rem 1.15rem;
  border: 1px solid var(--green);
  border-radius: 12px;
  background: var(--green);
  color: white;
  font-size: .92rem;
  font-weight: 760;
  text-decoration: none;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}
.button:hover { transform: translateY(-1px); background: var(--green-dark); border-color: var(--green-dark); }
.button-small { min-height: 42px; padding: .58rem .9rem; }
.button-outline { background: white; color: var(--green); }
.button-outline:hover { color: white; }
.text-link { display: inline-flex; align-items: center; gap: .45rem; color: var(--green); font-weight: 780; text-decoration: none; }
.text-link:hover { color: var(--green-dark); }
.button-row { display: flex; align-items: center; gap: 1rem; margin-top: 2rem; }
.wrap-buttons { flex-wrap: wrap; }

.hero {
  position: relative;
  overflow: hidden;
  padding: 6.6rem 0 5.1rem;
  background:
    radial-gradient(circle at 88% 8%, rgba(184,138,50,.11), transparent 26%),
    linear-gradient(180deg, #fff 0%, #f7faf8 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  right: -170px;
  bottom: -230px;
  border-radius: 50%;
  border: 1px solid rgba(184,138,50,.18);
}
.hero-grid-rich { display: grid; grid-template-columns: minmax(0,1fr) minmax(420px, .92fr); gap: 3.5rem; align-items: center; }
.hero-copy h1 { max-width: 680px; color: var(--green-dark); }
.hero-lead { max-width: 640px; margin: 1.25rem 0 0; color: var(--muted); font-size: clamp(1.03rem, 1.7vw, 1.24rem); }
.hero-trust { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: 1.8rem; }
.hero-trust span { padding: .42rem .68rem; background: white; border: 1px solid var(--line); border-radius: 999px; color: #53615c; font-size: .77rem; font-weight: 700; }

.dashboard-panel {
  padding: 1.45rem;
  border-radius: 28px;
  border: 1px solid rgba(255,255,255,.16);
  background: linear-gradient(180deg, rgba(19,91,73,.92), rgba(10,75,60,.97));
  color: white;
  box-shadow: 0 28px 70px rgba(7,45,36,.22);
}
.dashboard-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 1rem; }
.dashboard-head strong { font-size: 1rem; }
.status-pill { display: inline-flex; align-items: center; gap: .45rem; padding: .44rem .78rem; border-radius: 999px; background: rgba(255,255,255,.12); font-size: .8rem; font-weight: 720; }
.status-dot { width: 9px; height: 9px; border-radius: 50%; background: #7ce0a2; box-shadow: 0 0 0 5px rgba(124,224,162,.12); }
.dashboard-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: .9rem; }
.metric-card { padding: 1rem; border-radius: 18px; background: rgba(255,255,255,.96); color: var(--green-dark); min-height: 126px; }
.metric-card-soft { background: #ecf6f1; }
.metric-card p { margin-bottom: .2rem; color: #61716a; font-size: .84rem; font-weight: 700; }
.metric-card strong { display: block; font-size: 1.8rem; line-height: 1.08; letter-spacing: -.04em; }
.metric-card small { display: block; margin-top: .35rem; color: #5c6c65; font-size: .78rem; line-height: 1.35; }
.dashboard-insight { margin-top: .9rem; padding: 1rem 1.05rem; border-radius: 18px; background: linear-gradient(180deg, #dbac46, #d3a13a); color: #1a251f; }
.insight-label { display: inline-block; margin-bottom: .25rem; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.dashboard-insight p { margin: 0; font-size: .9rem; font-weight: 650; line-height: 1.45; }

.section { padding: 5.25rem 0; }
.section-muted { background: var(--surface-muted); }
.section-heading { margin-bottom: 2.3rem; }
.centered-heading { max-width: 860px; margin-inline: auto; text-align: center; }
.centered-heading > p:last-child { max-width: 650px; margin: 1rem auto 0; color: var(--muted); font-size: 1.02rem; }
.compact-heading { margin-bottom: 2rem; }
.compact-width { max-width: 720px; }
.split-heading { display: grid; grid-template-columns: minmax(0,1.1fr) minmax(300px,.7fr); gap: 3rem; align-items: end; margin-bottom: 2.4rem; }
.split-heading > p { margin-bottom: 0; color: var(--muted); }

.packages-section { background: white; }
.service-grid-four { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1.2rem; }
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 345px;
  padding: 1.55rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 12px 34px rgba(7,45,36,.045);
}
.service-card-green { background: linear-gradient(180deg, #f7fbf8, #eef6f2); }
.service-card-dark { background: var(--green-dark); border-color: var(--green-dark); color: white; }
.popular-badge { position: absolute; top: -14px; left: 20px; padding: .42rem .72rem; border-radius: 999px; background: var(--green); color: white; font-size: .72rem; font-weight: 800; }
.service-card-head { display: flex; justify-content: space-between; align-items: center; gap: .8rem; }
.package-label { color: var(--green); font-size: .78rem; font-weight: 850; letter-spacing: .08em; text-transform: uppercase; }
.package-fit { color: var(--muted); font-size: .74rem; text-align: right; }
.service-card-dark .package-label,
.service-card-dark .package-fit { color: white; }
.service-price { display: flex; align-items: baseline; gap: .5rem; margin-top: 1.1rem; }
.service-price strong { font-size: 2.7rem; line-height: 1; letter-spacing: -.055em; color: var(--green-dark); }
.service-price span { color: var(--muted); font-size: .8rem; font-weight: 700; }
.service-card-dark .service-price strong,
.service-card-dark .service-price span { color: white; }
.service-summary { margin: 1rem 0 0; min-height: 48px; color: var(--muted); font-size: .94rem; }
.service-card-dark .service-summary { color: rgba(255,255,255,.78); }
.mini-list { margin: 1.15rem 0 0; padding: 0; list-style: none; }
.mini-list li { position: relative; padding: .52rem 0 .52rem 1.3rem; border-top: 1px solid #ebf0ed; color: #32443d; font-size: .9rem; }
.mini-list li:first-child { border-top: 0; }
.mini-list li::before { content: "✓"; position: absolute; left: 0; color: var(--gold); font-weight: 900; }
.service-card-dark .mini-list li { color: rgba(255,255,255,.9); border-color: rgba(255,255,255,.14); }
.scope-note { max-width: 940px; margin: 1.3rem auto 0; color: var(--muted); font-size: .79rem; text-align: center; }

.comparison-section { background: linear-gradient(180deg, #f7faf8, #eef4f1); }
.comparison-wrap { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); background: white; box-shadow: 0 10px 30px rgba(7,45,36,.045); }
.comparison-table { width: 100%; border-collapse: collapse; min-width: 860px; }
.comparison-table th,
.comparison-table td { padding: 1rem 1rem; border-bottom: 1px solid #e9efec; text-align: left; vertical-align: top; font-size: .92rem; }
.comparison-table thead th { background: #f6f9f7; color: var(--green-dark); font-size: .8rem; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; }
.comparison-table tbody th { color: var(--green-dark); font-size: .92rem; font-weight: 780; }
.comparison-table tbody tr:last-child th,
.comparison-table tbody tr:last-child td { border-bottom: 0; }

.project-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1rem; }
.project-card { padding: 1.5rem; border: 1px solid var(--line); border-radius: 18px; background: white; }
.project-price { display: inline-flex; margin-bottom: 1rem; color: var(--green); font-size: .76rem; font-weight: 800; }
.project-card p { margin: .65rem 0 0; color: var(--muted); font-size: .92rem; }

.journey-section { background: var(--cream); }
.journey-layout { display: grid; grid-template-columns: minmax(0,.8fr) minmax(0,1.2fr); gap: 2.2rem; align-items: start; }
.journey-layout h2 { max-width: 430px; color: var(--green-dark); }
.journey-steps { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 1rem; }
.journey-step { display: grid; justify-items: center; text-align: center; gap: .7rem; padding: 1.3rem 1rem; border-left: 1px solid rgba(11,71,56,.12); }
.journey-step:first-child { border-left: 0; }
.step-number { display: grid; place-items: center; width: 42px; height: 42px; border-radius: 12px; background: var(--green); color: white; font-size: .96rem; font-weight: 850; margin-inline: auto; }
.journey-step h3 { font-size: 1.05rem; }
.journey-step p { margin: 0; color: var(--muted); font-size: .9rem; max-width: 230px; }

.industries-layout { display: grid; grid-template-columns: minmax(0,1fr) minmax(380px,.9fr); gap: 3rem; align-items: center; }
.industry-chips { display: flex; flex-wrap: wrap; gap: .65rem; }
.industry-chips span { padding: .7rem .85rem; border: 1px solid var(--line); border-radius: 999px; background: var(--surface-muted); color: #42514b; font-size: .84rem; font-weight: 680; }

.founder-section { border-top: 1px solid var(--line); }
.founder-grid { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 2.5rem; align-items: center; max-width: 940px; }
.founder-grid > img { width: 220px; height: 220px; border-radius: 50%; object-fit: cover; box-shadow: 0 18px 44px rgba(8,46,36,.11); }
.founder-grid p:not(.eyebrow):not(.personal-disclosure) { margin: 1rem 0 0; color: var(--muted); }
.credential-row { display: flex; flex-wrap: wrap; gap: .45rem; margin: 1.3rem 0 1rem; }
.credential-row span { padding: .38rem .6rem; border-radius: 999px; background: var(--green-soft); color: var(--green); font-size: .73rem; font-weight: 760; }
.linkedin-profile-button { margin-top: 1.25rem; }
.personal-disclosure { max-width: 720px; margin: .8rem 0 0; color: #7a857f; font-size: .72rem; }


.faq-container { max-width: 860px; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 1.1rem 2.2rem 1.1rem 0; cursor: pointer; font-weight: 730; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: 0; top: 1.02rem; color: var(--green); font-size: 1.25rem; }
details[open] summary::after { content: "−"; }
details p { margin: 0; padding: 0 2rem 1.1rem 0; color: var(--muted); }

.site-footer { padding: 3rem 0 2rem; background: var(--green-dark); color: rgba(255,255,255,.72); }
.footer-grid { display: grid; grid-template-columns: 1.2fr .7fr .7fr; gap: 2.6rem; }
.footer-grid > div:first-child p { max-width: 430px; margin: .9rem 0 0; font-size: .88rem; }
.footer-brand { display: inline-flex; align-items: center; gap: .65rem; color: white; font-weight: 800; text-decoration: none; }
.footer-brand img { width: 44px; height: 44px; object-fit: contain; filter: brightness(0) invert(1); }
.site-footer h3 { color: white; font-size: .83rem; letter-spacing: .09em; text-transform: uppercase; }
.footer-grid > div:not(:first-child) { display: grid; align-content: start; gap: .42rem; }
.footer-grid a { color: rgba(255,255,255,.72); font-size: .86rem; text-decoration: none; }
.footer-grid a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; margin-top: 2.2rem; padding-top: 1.1rem; border-top: 1px solid rgba(255,255,255,.12); font-size: .74rem; }
.footer-bottom a { color: inherit; }

@media (max-width: 1080px) {
  .hero-grid-rich,
  .journey-layout,
  .industries-layout,
  .split-heading { grid-template-columns: 1fr; gap: 1.6rem; }
  .journey-steps { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 980px) {
  .nav { display: none; position: absolute; top: 74px; left: 0; right: 0; padding: 1rem 1.25rem 1.25rem; background: white; border-bottom: 1px solid var(--line); box-shadow: 0 18px 35px rgba(8,46,36,.08); }
  .nav.open { display: grid; gap: .85rem; }
  .nav .button { width: 100%; }
  .menu-button { display: inline-flex; }
  .service-grid-four,
  .project-grid,
  .founder-grid { grid-template-columns: 1fr; }
  .founder-grid { max-width: none; }
  .dashboard-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 720px) {
  .container { width: min(calc(100% - 1.35rem), var(--container)); }
  .nav-wrap { min-height: 66px; }
  .brand img { width: 42px; height: 42px; }
  .brand small { display: none; }
  .hero { padding: 4.8rem 0 4rem; }
  h1 { font-size: clamp(2.65rem, 12.5vw, 4rem); }
  .button-row { display: grid; align-items: stretch; gap: .85rem; }
  .button-row .button { width: 100%; }
  .button-row .text-link { justify-content: center; }
  .hero-grid-rich { gap: 2rem; }
  .dashboard-panel { padding: 1rem; border-radius: 22px; }
  .dashboard-grid { grid-template-columns: 1fr; }
  .metric-card { min-height: 0; }
  .section { padding: 4.4rem 0; }
  .centered-heading { text-align: left; }
  .centered-heading > p:last-child { margin-left: 0; }
  .service-card,
  .contact-card { padding: 1.25rem; }
  .service-summary { min-height: 0; }
  .scope-note { text-align: left; }
  .journey-steps { grid-template-columns: 1fr; }
  .journey-step { border-left: 0; border-top: 1px solid rgba(11,71,56,.12); padding-top: 1.2rem; }
  .journey-step:first-child { border-top: 0; }
  .founder-grid > img { width: 165px; height: 165px; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { display: grid; }
}

.nav .button, .nav .button:hover { color: #fff; }

/* Final professional polish */
.insight-top { display: flex; align-items: baseline; justify-content: space-between; gap: .85rem; margin-bottom: .4rem; }
.insight-value { font-size: .88rem; line-height: 1.25; text-align: right; }
.service-summary { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; min-height: auto; }
.service-card { min-height: 360px; }
.service-card .mini-list { margin-top: auto; padding-top: .8rem; }
.comparison-table { min-width: 820px; }
.comparison-table th:first-child { width: 18%; }
.comparison-table th:nth-child(2) { width: 12%; }
.comparison-table th:nth-child(3) { width: 28%; }
.comparison-table th:nth-child(4) { width: 19%; }
.comparison-table th:nth-child(5) { width: 23%; }
.industry-band { padding: 3.25rem 0; background: linear-gradient(135deg, var(--green-dark), var(--green)); color: white; overflow: hidden; position: relative; }
.industry-band::after { content: ""; position: absolute; width: 360px; height: 360px; border-radius: 50%; border: 1px solid rgba(255,255,255,.09); right: -140px; top: -155px; }
.industry-band-inner { display: grid; grid-template-columns: minmax(0,1.15fr) minmax(360px,.85fr); align-items: center; gap: 3rem; position: relative; z-index: 1; }
.industry-band h2 { color: white; font-size: clamp(1.85rem, 3vw, 2.75rem); max-width: 650px; }
.industry-band-copy > p:last-child { max-width: 680px; margin: .8rem 0 0; color: rgba(255,255,255,.74); }
.eyebrow-light { color: #cfe7dc; }
.industry-chips-dark { justify-content: flex-start; }
.industry-chips-dark span { background: rgba(255,255,255,.09); border-color: rgba(255,255,255,.16); color: white; }
.process-strip { padding: 1.1rem 0; background: var(--cream); border-top: 1px solid #eadfc9; border-bottom: 1px solid #eadfc9; }
.process-strip-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: .65rem 1rem; color: var(--green-dark); font-size: .9rem; }
.process-strip-inner span { display: inline-flex; align-items: center; gap: .7rem; }
.process-strip-inner span::before { content: "→"; color: var(--gold); font-weight: 900; }
#tax-projects { padding-top: 4.7rem; padding-bottom: 4.7rem; }
.founder-section { padding-top: 4.8rem; padding-bottom: 4.8rem; }

@media (max-width: 1080px) {
  .industry-band-inner { grid-template-columns: 1fr; gap: 1.4rem; }
}
@media (max-width: 720px) {
  .service-summary { white-space: normal; overflow: visible; text-overflow: clip; }
  .service-card { min-height: auto; }
  .insight-top { display: grid; }
  .insight-value { text-align: left; }
  .industry-band { padding: 2.6rem 0; }
  .process-strip-inner { justify-content: flex-start; }
  .process-strip-inner span { width: 100%; }
}
.service-summary { font-size: .89rem; letter-spacing: -.008em; }
.service-summary { overflow: visible; text-overflow: clip; }


/* Branded success page */
.success-page {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 2rem;
  background:
    radial-gradient(circle at 85% 15%, rgba(184,138,50,.13), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f2f7f4 100%);
}
.success-card {
  width: min(100%, 680px);
  padding: clamp(2rem, 6vw, 4rem);
  border: 1px solid var(--line);
  border-radius: 26px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}
.success-card img {
  width: 78px;
  height: 78px;
  margin: 0 auto 1.4rem;
  object-fit: contain;
}
.success-card h1 {
  font-size: clamp(2.4rem, 7vw, 4.25rem);
  color: var(--green-dark);
}
.success-card p {
  max-width: 540px;
  margin: 1rem auto 0;
  color: var(--muted);
}
.success-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: 1.7rem;
}


/* Direct contact options */
.contact-options-section {
  background:
    radial-gradient(circle at 12% 18%, rgba(184, 138, 50, .08), transparent 24%),
    linear-gradient(180deg, #f6f9f7 0%, #edf4f0 100%);
}
.contact-method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.1rem;
  align-items: stretch;
}
.contact-method-card {
  display: flex;
  min-height: 360px;
  flex-direction: column;
  align-items: flex-start;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 14px 36px rgba(7, 45, 36, .055);
}
.contact-method-featured {
  border: 2px solid var(--green);
  box-shadow: 0 20px 48px rgba(7, 45, 36, .12);
}
.contact-method-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: var(--green-soft);
  color: var(--green);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .05em;
}
.contact-method-featured .contact-method-number {
  background: var(--green);
  color: #fff;
}
.contact-method-card h3 {
  margin-top: 1.25rem;
  font-size: 1.35rem;
}
.contact-method-card p {
  margin: .8rem 0 0;
  color: var(--muted);
  font-size: .94rem;
}
.contact-method-button {
  width: 100%;
  margin-top: auto;
}
.contact-detail-link,
.contact-detail-text {
  display: inline-flex;
  margin-top: .8rem;
  color: var(--muted);
  font-size: .78rem;
  font-weight: 680;
  text-decoration: none;
}
.contact-detail-link:hover { color: var(--green); }
@media (max-width: 900px) {
  .contact-method-grid { grid-template-columns: 1fr; }
  .contact-method-card { min-height: 0; }
  .contact-method-button { margin-top: 1.5rem; }
}
