:root {
  --green: #8fbf3a;
  --green-deep: #6f9628;
  --green-soft: #eef6dc;
  --ink: #171a21;
  --ink-soft: #3d4450;
  --muted: #6b7380;
  --line: #e4e7ec;
  --paper: #f7f8f4;
  --white: #ffffff;
  --shadow-soft: 0 1px 0 rgba(23, 26, 33, 0.04);
  --radius: 14px;
  --shell: min(1120px, calc(100% - 2.5rem));
  --font-sans: "Manrope", system-ui, sans-serif;
  --font-serif: "Source Serif 4", Georgia, serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  background: var(--ink);
  color: var(--white);
  padding: 0.6rem 0.9rem;
  z-index: 100;
  border-radius: 8px;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}

@supports ((-webkit-backdrop-filter: blur(10px)) or (backdrop-filter: blur(10px))) {
  .site-header {
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
  }
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 1.5rem;
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 0.35rem;
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1;
}

.brand-mark {
  color: var(--ink);
}

.brand-accent {
  color: var(--green-deep);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list > li > a {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding: 0.25rem 0;
}

.nav-list > li > a:hover,
.nav-list > li > a.is-active {
  color: var(--ink);
}

.nav-list > li > a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 2px;
  background: var(--green);
}

.has-sub {
  position: relative;
  padding-bottom: 0;
}

.sub-nav {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 200px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.5rem;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.15s var(--ease), transform 0.15s var(--ease), visibility 0.15s;
  z-index: 60;
  /* Invisible hover bridge so the menu does not close while moving the cursor down */
  margin-top: 0;
}

.sub-nav::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -14px;
  height: 14px;
}

.has-sub:hover .sub-nav,
.has-sub:focus-within .sub-nav {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-list > .has-sub > a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.sub-nav a {
  display: block;
  padding: 0.65rem 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.sub-nav a:hover {
  background: var(--paper);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 0.2s var(--ease);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 48px;
  padding: 0.75rem 1.25rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
}

.btn-primary:hover {
  background: #0f1218;
}

.btn-secondary {
  background: var(--white);
  border-color: var(--line);
  color: var(--ink);
}

.btn-secondary:hover {
  border-color: #cfd4dc;
  background: var(--paper);
}

.btn-green {
  background: var(--green);
  color: var(--ink);
}

.btn-green:hover {
  background: #9ccc45;
}

.btn-nav {
  min-height: 42px;
  padding-inline: 1rem;
  font-size: 0.88rem;
}

.btn-block {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: grid;
  align-items: stretch;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 70% 20%, rgba(143, 191, 58, 0.18), transparent 55%),
    linear-gradient(180deg, #fbfcfa 0%, #f3f5ef 100%);
}

.hero-visual {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual svg {
  width: 100%;
  height: 100%;
  opacity: 0.55;
}

.hero-content {
  position: relative;
  z-index: 0;
  width: var(--shell);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.5rem 0 5rem;
  max-width: 760px;
  animation: rise 0.9s var(--ease) both;
}

.hero-brand {
  font-family: var(--font-serif);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 600;
  color: var(--green-deep);
  margin: 0 0 1.25rem;
  letter-spacing: -0.02em;
}

.hero h1 {
  margin: 0;
  font-size: clamp(2.5rem, 6vw, 4.35rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 800;
  color: var(--ink);
}

.hero h1 em {
  font-style: normal;
  color: var(--green-deep);
}

.hero-lead {
  margin: 1.25rem 0 0;
  max-width: 34rem;
  font-size: 1.125rem;
  color: var(--ink-soft);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2rem;
}

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

[data-reveal] {
  opacity: 1;
  transform: none;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Sections */
.section {
  padding: 5rem 0;
}

.section-muted {
  background: var(--paper);
}

.section-head {
  max-width: 40rem;
  margin-bottom: 2.5rem;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 0.75rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--green-deep);
}

.section-head h2,
.section h2 {
  margin: 0;
  font-size: clamp(1.75rem, 3.2vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.section-head p,
.lede {
  margin: 0.85rem 0 0;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.split-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.step {
  padding: 1.35rem 0 0;
  border-top: 2px solid var(--green);
}

.step-num {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.75rem;
}

.step h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.offer-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.offer {
  padding: 1.5rem 1.5rem 1.6rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: border-color 0.2s var(--ease);
}

.offer:hover {
  border-color: #c5d6a0;
}

.offer-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  margin-bottom: 0.6rem;
}

.offer h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.offer p {
  margin: 0;
  color: var(--ink-soft);
}

.position-block {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.position-points {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
  display: grid;
  gap: 0.9rem;
}

.position-points li {
  padding-left: 1.15rem;
  position: relative;
  color: var(--ink-soft);
}

.position-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
}

.position-panel {
  background: var(--ink);
  color: var(--white);
  border-radius: 20px;
  padding: 2rem;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: relative;
  overflow: hidden;
}

.position-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -30% 20%;
  height: 70%;
  background: radial-gradient(circle, rgba(143, 191, 58, 0.35), transparent 65%);
}

.position-panel p {
  position: relative;
  margin: 0;
  font-family: var(--font-serif);
  font-size: 1.55rem;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.cta-band {
  background: linear-gradient(135deg, #1a1f18 0%, #24301a 55%, #2a3a1c 100%);
  color: var(--white);
  border-radius: 24px;
  padding: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2rem);
  letter-spacing: -0.03em;
}

.cta-band p {
  margin: 0.6rem 0 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 32rem;
}

.cta-band .btn-green {
  flex-shrink: 0;
}

/* Pricing */
.page-hero {
  padding: 3.5rem 0 1.5rem;
  background: var(--paper);
}

.page-hero + .section {
  padding-top: 1.5rem;
}

.section-pricing {
  padding-top: 1.5rem;
}

.page-hero h1 {
  margin: 0;
  font-size: clamp(2.1rem, 4.5vw, 3.2rem);
  letter-spacing: -0.035em;
  line-height: 1.1;
}

.page-hero p {
  margin: 1rem 0 0;
  max-width: 38rem;
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.pricing-switch {
  display: inline-flex;
  gap: 0.35rem;
  padding: 0.3rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  margin-top: 1.5rem;
}

.pricing-switch a {
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--ink-soft);
}

.pricing-switch a.is-active {
  background: var(--ink);
  color: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 0.5rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  position: relative;
}

.price-card.is-featured {
  border-color: #cfe6a3;
  background: #fcfdf8;
}

.price-card .tag {
  display: none;
}

.plan-recommend {
  position: absolute;
  top: -0.65rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--green-soft);
  padding: 0.22rem 0.55rem;
  border-radius: 6px;
  white-space: nowrap;
  z-index: 2;
  border: 1px solid #d7e8b0;
}

.pricing-continuum {
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  overflow: visible;
}

.pricing-continuum .pricing-grid {
  margin: 0;
  gap: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
}

.pricing-continuum .price-card {
  border: 0;
  border-radius: 0;
  border-right: 1px solid var(--line);
  min-height: 100%;
  box-shadow: none;
}

.pricing-continuum .price-card:last-child {
  border-right: 0;
}

.pricing-continuum .price-card.is-featured {
  background: #f7fbee;
  border-color: transparent;
  border-right-color: var(--line);
}

.pricing-continuum .plan-matrix {
  margin-top: 0;
}

.pricing-continuum .matrix-scroll {
  border: 0;
  border-radius: 0;
}

.pricing-continuum .matrix-table thead {
  display: table-header-group;
}

.pricing-continuum .matrix-table thead th {
  border-top: 1px solid var(--line);
}

.matrix-deliverable-label {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
}

.plan-matrix-note {
  margin: 0;
  padding: 0.75rem 1.1rem 0.35rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: #fcfcfa;
  border-bottom: 0;
}

.matrix-cta-row th,
.matrix-cta-row td {
  padding: 1.1rem 0.9rem 1.25rem;
  border-bottom: 0;
  background: #fafbf8;
  vertical-align: middle;
}

.matrix-cta-row td.is-featured-col {
  background: #f3f8e6;
}

.matrix-cta-row .btn {
  min-height: 42px;
  padding: 0.65rem 0.75rem;
  font-size: 0.88rem;
  width: 100%;
}


@media (max-width: 980px) {
  .pricing-continuum .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-continuum .price-card:nth-child(2n) {
    border-right: 0;
  }

  .pricing-continuum .price-card:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 760px) {
  .pricing-continuum .pricing-grid {
    display: none;
  }

  .pricing-continuum .matrix-table thead {
    display: table-header-group;
  }
}

.continuum-2 {
  max-width: 900px;
}

.price-card h2 {
  margin: 0.2rem 0 0;
  font-size: 1.25rem;
}

.price {
  margin: 1rem 0 0.35rem;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}

.price span {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.price-card .blurb {
  margin: 0 0 1.25rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.feature-list {
  list-style: none;
  margin: 0 0 1.5rem;
  padding: 0;
  display: grid;
  gap: 0.65rem;
  flex: 1;
}

.feature-list li {
  display: grid;
  grid-template-columns: 1.1rem 1fr;
  gap: 0.55rem;
  font-size: 0.94rem;
  color: var(--ink-soft);
}

.feature-list .yes,
.feature-list .no {
  font-weight: 800;
  line-height: 1.2;
}

.feature-list .yes {
  color: var(--green-deep);
}

.feature-list .no {
  color: #c45b5b;
}

.plan-matrix {
  margin-top: 3rem;
}

.matrix-scroll {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  -webkit-overflow-scrolling: touch;
}

.matrix-table {
  width: 100%;
  min-width: 860px;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.matrix-table-2 {
  min-width: 640px;
}

.matrix-table th,
.matrix-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid #eef0f3;
  text-align: left;
  vertical-align: top;
}

.matrix-table thead th {
  background: #12151b;
  color: #fff;
  font-size: 0.88rem;
  position: sticky;
  top: 0;
  z-index: 1;
}

.matrix-table thead th .matrix-price {
  display: block;
  margin-top: 0.25rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.8rem;
}

.matrix-table tbody th[scope="row"] {
  font-weight: 600;
  color: var(--ink);
  min-width: 220px;
  background: #fafbf8;
}

.matrix-section th {
  background: var(--green-soft) !important;
  color: var(--green-deep) !important;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 800;
}

.matrix-table td,
.matrix-table th.is-featured-col,
.matrix-table td.is-featured-col {
  text-align: center;
}

.matrix-table thead th.is-featured-col {
  background: #1e2a14;
}

.matrix-table tbody td.is-featured-col {
  background: #f7fbee;
}

.cell-yes {
  color: var(--green-deep);
  font-weight: 800;
}

.cell-no {
  color: #c45b5b;
  font-weight: 800;
}

.cell-value {
  color: var(--ink-soft);
  font-weight: 600;
  font-size: 0.86rem;
  line-height: 1.35;
  display: inline-block;
  max-width: 11rem;
}

.notes-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2.5rem;
}

.note {
  border-top: 1px solid var(--line);
  padding-top: 1.25rem;
}

.note h3 {
  margin: 0 0 0.5rem;
  font-size: 1rem;
}

.note p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.mobile-tabs {
  display: none;
}

/* Desktop: hide tab summary cards (the 4 top cards cover this) */
.compare-panel,
.compare-panel.is-active {
  display: none;
}

/* Contact / simple */
.form-card {
  max-width: 560px;
  display: grid;
  gap: 1rem;
}

.form-card label {
  display: grid;
  gap: 0.4rem;
  font-weight: 600;
  font-size: 0.92rem;
}

.form-card input,
.form-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.85rem 0.95rem;
  background: var(--white);
}

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

.service-link {
  display: block;
  color: inherit;
}

.service-link:hover {
  border-color: #c5d6a0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.blog-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: var(--white);
}

.blog-card h2 {
  margin: 0.35rem 0 0.65rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.blog-card h2 a:hover {
  color: var(--green-deep);
}

.blog-card p {
  margin: 0;
  color: var(--ink-soft);
}

.blog-meta {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
  font-weight: 600;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  font-weight: 700;
  color: var(--green-deep);
}

.post-shell {
  max-width: 720px;
}

.post-header h1 {
  margin: 0.5rem 0 0;
  font-size: clamp(1.9rem, 4vw, 2.75rem);
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.post-body {
  margin-top: 2rem;
}

.post-body h2 {
  margin: 2rem 0 0.75rem;
  font-size: 1.35rem;
}

.post-body h3 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.1rem;
}

.post-body ul {
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.legal-doc h2 {
  margin: 2rem 0 0.65rem;
  font-size: 1.15rem;
}

.legal-doc .simple-prose {
  max-width: 48rem;
}

.legal-doc a {
  color: var(--green-deep);
  font-weight: 700;
}

@media (max-width: 760px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }
}

.simple-prose {
  max-width: 42rem;
}

.simple-prose p {
  color: var(--ink-soft);
}

/* Footer */
.site-footer {
  background: #12151b;
  color: rgba(255, 255, 255, 0.82);
  padding: 3.5rem 0 1.5rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.brand-footer .brand-mark {
  color: #fff;
}

.brand-footer .brand-accent {
  color: var(--green);
}

.footer-brand p {
  margin: 1rem 0 0;
  max-width: 28rem;
  color: rgba(255, 255, 255, 0.68);
}

.footer-meta {
  font-size: 0.9rem !important;
  color: rgba(255, 255, 255, 0.45) !important;
}

.footer-heading {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.55rem;
}

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

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  display: flex;
  gap: 1rem;
}

/* Responsive */
@media (max-width: 980px) {
  .split-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .position-block,
  .cta-band,
  .footer-grid,
  .notes-grid {
    grid-template-columns: 1fr;
  }

  .cta-band {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  :root {
    --shell: min(1120px, calc(100% - 1.5rem));
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 1002;
  }

  .site-header {
    z-index: 1000;
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    overflow: visible;
  }

  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    max-width: none;
    background: #fff;
    flex-direction: column;
    align-items: stretch;
    padding: 1.25rem 1.25rem 2rem;
    gap: 1rem;
    transform: translate3d(100%, 0, 0);
    transition: transform 0.28s var(--ease);
    border-top: 1px solid var(--line);
    overflow: auto;
    z-index: 1001;
    -webkit-overflow-scrolling: touch;
  }

  .site-nav.is-open {
    transform: translate3d(0, 0, 0);
  }

  body.nav-open .site-header {
    z-index: 1000;
  }

  body.nav-open main,
  body.nav-open .hero,
  body.nav-open .hero-content,
  body.nav-open .hero-visual {
    z-index: 0 !important;
    pointer-events: none;
  }

  body.nav-open main a,
  body.nav-open main button {
    pointer-events: none;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .nav-list > li > a {
    display: block;
    padding: 0.85rem 0.25rem;
    font-size: 1.05rem;
  }

  .nav-list > li > a.is-active::after {
    display: none;
  }

  .sub-nav {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    border: 0;
    padding: 0 0 0.5rem 0.75rem;
    min-width: 0;
  }

  .sub-nav::before {
    display: none;
  }

  .btn-nav {
    width: 100%;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 3rem 0 3.5rem;
  }

  .offer-grid,
  .pricing-grid,
  .split-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    display: none;
  }

  .mobile-tabs {
    display: flex;
    gap: 0.4rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
    margin-bottom: 1rem;
  }

  .mobile-tabs button {
    flex: 0 0 auto;
    border: 1px solid var(--line);
    background: var(--white);
    border-radius: 999px;
    padding: 0.55rem 0.9rem;
    font-weight: 700;
    color: var(--ink-soft);
    cursor: pointer;
  }

  .mobile-tabs button.is-active {
    background: var(--ink);
    color: var(--white);
    border-color: var(--ink);
  }

  .compare-panel {
    display: none;
  }

  .compare-panel.is-active {
    display: block;
  }

  /* On mobile, top 4-card strip is hidden — tab cards handle summary */
  .pricing-continuum .pricing-grid {
    display: none;
  }

  .footer-bottom {
    flex-direction: column;
  }

  .section {
    padding: 3.5rem 0;
  }
}

/* Industries */
.page-hero-compact {
  padding: 3.5rem 0 2.5rem;
}

.hero-lead-wide {
  max-width: 42rem;
  font-size: 1.08rem;
  color: var(--ink-soft);
  margin-top: 0.75rem;
}

.hero-note {
  margin-top: 1rem;
  font-size: 0.92rem;
  color: var(--muted);
}

.sub-nav-wide {
  min-width: 220px;
  max-height: 70vh;
  overflow-y: auto;
}

.industry-layout {
  padding-bottom: 1rem;
}

.industry-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 2.5rem;
  align-items: start;
}

.industry-content {
  min-width: 0;
}

.content-section {
  margin-bottom: 2.75rem;
  scroll-margin-top: 96px;
}

.content-section h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.content-section p {
  color: var(--ink-soft);
  margin: 0 0 1rem;
  max-width: 48rem;
}

.content-list {
  margin: 0.5rem 0 0;
  padding-left: 1.2rem;
  color: var(--ink-soft);
}

.content-list li {
  margin-bottom: 0.55rem;
}

.content-list a,
.industry-links a {
  color: var(--green-deep);
  font-weight: 700;
}

.keyword-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.keyword-tag {
  display: inline-flex;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green-deep);
  font-size: 0.88rem;
  font-weight: 600;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  padding: 1rem 1.1rem;
  list-style: none;
}

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

.faq-item p {
  padding: 0 1.1rem 1rem;
  margin: 0;
}

.industry-aside {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 1rem;
}

.aside-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem;
  background: var(--paper);
}

.aside-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1rem;
}

.aside-nav {
  display: grid;
  gap: 0.35rem;
}

.aside-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: 0.35rem 0;
}

.aside-nav a:hover {
  color: var(--green-deep);
}

.aside-cta p {
  font-size: 0.92rem;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.aside-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.45rem;
}

.aside-links a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--green-deep);
}

.industry-category {
  margin-bottom: 2.75rem;
  scroll-margin-top: 96px;
}

.category-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 0 0 1rem;
}

.industry-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.industry-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.15rem;
  background: var(--white);
  transition: border-color 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}

.industry-card:hover {
  border-color: #cfd4dc;
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.industry-card-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-deep);
  margin-bottom: 0.5rem;
}

.industry-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

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

@media (max-width: 980px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .industry-aside {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .industry-card-grid {
    grid-template-columns: 1fr;
  }

  .industry-aside {
    grid-template-columns: 1fr;
  }
}
