:root {
  --bg: #f4f8f5;
  --surface: rgba(240, 247, 242, 0.72);
  --surface-strong: rgba(255, 255, 255, 0.82);
  --text: #1f2d35;
  --muted: #66767c;
  --line: rgba(255, 255, 255, 0.45);
  --teal: #157b8c;
  --teal-dark: #0f6271;
  --green: #7cc242;
  --green-dark: #4da430;
  --shadow: 0 10px 30px rgba(21, 123, 140, 0.08);
  --radius: 24px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top right, rgba(124, 194, 66, 0.035), transparent 24%),
    radial-gradient(circle at top left, rgba(21, 123, 140, 0.035), transparent 22%),
    var(--bg);
}

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

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

.site-shell {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 22px 40px;
}

/* HEADER */
.topbar {
  position: sticky;
  top: 12px;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin: 18px auto 24px;
  padding: 20px 34px;
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 4px;
  min-width: 0;
  flex: 1 1 auto;
  text-decoration: none;
}

.brand-logo,
.brand-logo img {
  display: none !important;
}

.brand strong {
  display: block;
  margin: 0;
  font-size: 1rem;
  line-height: 1.1;
  font-weight: 800;
  color: var(--text);
  white-space: nowrap;
}

.brand small {
  display: block;
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.2;
  color: var(--muted);
  white-space: nowrap;
}

.brand-row {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
}

.logo-inline {
  width: 72px;
  height: 72px;
  border-radius: 18px;
  object-fit: cover;
  box-shadow: var(--shadow);
  max-width: 70px !important;
  max-height: 60px !important;
  height: auto !important;
  display: block !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  object-fit: contain !important;
}

.brand-row strong {
  font-size: 17px !important;
  line-height: 1.1 !important;
}

.brand-row small {
  display: block !important;
  font-size: 11px !important;
  color: #6b7c85 !important;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  font-size: 0 !important;
  line-height: 0 !important;
  color: transparent !important;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

.menu-toggle::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  box-shadow: 0 -7px 0 var(--text), 0 7px 0 var(--text);
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 34px;
  flex: 0 0 auto;
}

.nav a {
  color: var(--muted);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--text);
}

.nav-cta,
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.2s ease;
}

.nav-cta,
.button {
  background: linear-gradient(135deg, var(--teal), var(--green-dark));
  color: #fff !important;
  box-shadow: 0 10px 24px rgba(77, 164, 48, 0.16);
}

.button:hover,
.nav-cta:hover {
  transform: translateY(-1px);
}

.button-secondary {
  border: 1px solid rgba(31, 45, 53, 0.1);
  color: var(--text);
  background: rgba(255, 255, 255, 0.75);
}

/* HERO */
.page-hero {
  padding: 64px 0 28px;
}

.home-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.hero-card,
.logo-slot {
  display: none !important;
}

/* TYPOGRAPHY */
.eyebrow,
.section-label {
  margin: 0 0 14px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--teal);
}

h1,
h2,
h3 {
  margin: 0 0 14px;
  letter-spacing: -0.03em;
}

h1 {
  font-size: clamp(2.5rem, 6vw, 4.8rem);
  line-height: 0.98;
  max-width: 12ch;
}

h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  max-width: 14ch;
}

h3 {
  font-size: 1.24rem;
  line-height: 1.2;
}

p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.72;
}

.lead {
  font-size: 1.08rem;
  max-width: 62ch;
}

.narrow {
  max-width: 58ch;
}

/* SECTIONS */
.section {
  padding: 30px 0 16px;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 22px;
  margin-bottom: 24px;
}

/* BADGES */
.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.badge {
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(31, 45, 53, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 600;
}

/* CARDS */
.grid-2,
.card-grid,
.statement-band,
.timeline,
.process-grid,
.alt-stack {
  display: grid;
  gap: 16px;
}

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

.three-up {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card,
.process-card,
.feature-panel,
.statement,
.alt-card,
.timeline article {
  background: var(--surface-strong);
  border: 1px solid rgba(31, 45, 53, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-card,
.statement {
  padding: 24px;
}

.card-kicker {
  display: inline-block;
  margin-bottom: 14px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--green-dark);
}

.statement-band {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.statement strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.timeline article,
.process-card {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 22px 24px;
}

.timeline span,
.process-card span {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--teal-dark);
  background: linear-gradient(135deg, rgba(21, 123, 140, 0.12), rgba(124, 194, 66, 0.16));
}

.alt-card {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 28px;
  padding: 28px;
}

.alt-card-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  color: var(--teal);
}

.cta-band {
  margin-top: 22px;
  padding: 28px;
  border-radius: 28px;
  border: 1px solid rgba(31, 45, 53, 0.07);
  background: linear-gradient(135deg, rgba(21, 123, 140, 0.96), rgba(78, 156, 46, 0.92));
  color: #fff;
  box-shadow: var(--shadow);
}

.cta-band p,
.cta-band .eyebrow {
  color: rgba(255, 255, 255, 0.9);
}

.cta-band h2 {
  color: #fff;
  max-width: 12ch;
}

/* FOOTER */
.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border-top: 1px solid rgba(31, 45, 53, 0.08);
  margin-top: 42px;
  padding: 24px 0 8px;
}

.footer nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: var(--muted);
}

.footer strong {
  display: block;
}

/* MOBILE */
@media (max-width: 900px) {
  .topbar {
    flex-wrap: wrap;
    padding: 18px 20px;
    gap: 16px;
  }

  .brand {
    flex: 1 1 auto;
  }

  .brand strong {
    font-size: 0.95rem;
    white-space: normal;
  }

  .brand small {
    font-size: 0.8rem;
    white-space: normal;
  }

  .menu-toggle {
    display: block;
    margin-left: auto;
  }

  .nav {
    display: none;
    flex-direction: column;
    width: 100%;
    align-items: stretch;
    gap: 0;
    padding-top: 6px;
  }

  .nav.active {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-top: 1px solid rgba(31, 45, 53, 0.08);
  }

  .nav .nav-cta {
    margin-top: 12px;
    justify-content: center;
    text-align: center;
  }

  .split-section,
  .grid-2,
  .three-up,
  .statement-band,
  .alt-card {
    grid-template-columns: 1fr;
  }

  .section-head,
  .footer {
    align-items: flex-start;
  }

  h1,
  h2 {
    max-width: none;
  }

  .home-hero-layout,
  .trust-strip,
  .grid-4,
  .form-grid,
  .hero-home-grid,
  .property-hero-layout,
  .farm-hero-wrap,
  .audience-panels,
  .no-card-showcase,
  .split-showcase,
  .band-panel,
  .story-strip,
  .property-feature-columns,
  .farm-topline,
  .farm-layout,
  .farm-utility-grid,
  .farm-systems-row,
  .farm-scan-grid,
  .property-soft-shell,
  .property-risk-layout,
  .property-service-grid,
  .how-flow-shell,
  .how-step-rail,
  .connectivity-compare,
  .access-band-lite,
  .pricing-overview-shell,
  .pricing-tiers-alt,
  .pricing-factor-grid,
  .pricing-bottom-row {
    grid-template-columns: 1fr;
  }

  .tier-column.featured {
    transform: none;
  }

  .brand-row {
    align-items: center;
  }

  .logo-inline {
    width: 58px;
    height: 58px;
  }

  .login-link {
    display: none;
  }

  .farm-topline {
    flex-direction: column;
    align-items: flex-start;
  }

  .farm-layout {
    gap: 22px;
  }

  .farm-layout h1 {
    max-width: none;
  }

  .farm-note-panel,
  .farm-utility-band {
    padding: 22px;
  }

  .farm-utility-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .farm-systems-row {
    gap: 12px;
    padding: 18px 0;
  }
}

/* EXTENSIONS FOR REBUILD */
.home-hero-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  align-items: stretch;
}

.hero-panel,
.hero-stat,
.info-card,
.process-card,
.alt-card,
.statement,
.timeline article,
.form-panel {
  background: var(--surface-strong);
  border: 1px solid rgba(31, 45, 53, 0.07);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero-panel {
  padding: 34px;
}

.hero-side {
  display: grid;
  gap: 16px;
}

.hero-stat {
  padding: 22px 24px;
}

.hero-stat strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 1.04rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
}

.trust-item {
  padding: 20px 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(31, 45, 53, 0.06);
  box-shadow: var(--shadow);
}

.trust-item strong {
  display: block;
  margin-bottom: 8px;
}

.list-clean,
.list-check {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.list-check li + li,
.list-clean li + li {
  margin-top: 8px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.mini-card {
  padding: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 45, 53, 0.07);
  box-shadow: var(--shadow);
}

.mini-card h3 {
  margin-bottom: 10px;
}

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

.pricing-tier {
  padding: 26px;
}

.pricing-tier h3 {
  margin-bottom: 12px;
}

.pricing-tier .card-kicker {
  color: var(--teal);
}

.blog-list article + article {
  margin-top: 16px;
}

.blog-post {
  max-width: 860px;
}

.blog-post h2 {
  max-width: none;
  margin-top: 28px;
}

.blog-post h3 {
  margin-top: 22px;
}

.blog-post ul,
.blog-post ol {
  color: var(--muted);
  line-height: 1.75;
  padding-left: 22px;
}

.blog-post blockquote {
  margin: 20px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  background: rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.form-panel {
  padding: 28px;
}

label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

input,
textarea,
select {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid rgba(31, 45, 53, 0.12);
  background: rgba(255, 255, 255, 0.86);
  color: var(--text);
  font: inherit;
  margin-bottom: 14px;
}

textarea {
  min-height: 160px;
  resize: vertical;
}

.contact-list {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.blog-cta {
  margin-top: 24px;
}

/* HEADER FIX / CLEAN OVERRIDES */
.topbar {
  padding: 8px 20px !important;
  align-items: center;
  background: transparent !important;
  box-shadow: none !important;
}

.site-shell {
  background: transparent !important;
  box-shadow: none !important;
}

.brand {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
}

.topbar,
.site-shell,
.brand {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
}

/* FINAL REVIEW POLISH */
.login-link {
  font-size: 0.88rem;
  color: var(--muted);
  white-space: nowrap;
}

.login-link:hover {
  color: var(--text);
}

.hero-home-grid,
.property-hero-layout,
.farm-hero-wrap {
  display: grid;
  gap: 24px;
  align-items: start;
}

.hero-home-grid {
  grid-template-columns: 1.2fr 0.8fr;
}

.property-hero-layout,
.farm-hero-wrap {
  grid-template-columns: 1fr 0.82fr;
}

.hero-copy h1 {
  max-width: 11ch;
}

.hero-location {
  font-size: 0.96rem;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 20px;
}

.audience-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.audience-panel {
  padding: 24px;
  border-radius: 24px;
  border: 1px solid rgba(31, 45, 53, 0.08);
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.audience-panel-farm {
  background: rgba(255, 255, 255, 0.88);
}

.audience-panel-home {
  background: rgba(242, 248, 244, 0.95);
}

.audience-panel:hover {
  transform: translateY(-2px);
  border-color: rgba(21, 123, 140, 0.22);
}

.audience-panel h3 {
  margin-bottom: 10px;
}

.panel-link {
  font-weight: 700;
  color: var(--teal-dark);
}

.hero-side-stack {
  display: grid;
  gap: 18px;
}

.hero-side-card {
  padding: 26px;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(21, 123, 140, 0.1), rgba(124, 194, 66, 0.14));
  border: 1px solid rgba(31, 45, 53, 0.08);
}

.trust-inline {
  display: grid;
  gap: 16px;
}

.trust-inline > div,
.farm-hero-note,
.property-hero-points > div {
  padding: 20px 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.service-chip-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-chip {
  display: inline-flex;
  align-items: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(31, 45, 53, 0.08);
  font-weight: 700;
  color: var(--text);
}

.compact-head h2 {
  max-width: 16ch;
}

.no-card-showcase,
.split-showcase {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 42px;
  align-items: start;
}

.scenario-list {
  display: grid;
  gap: 14px;
}

.scenario-list article {
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(31, 45, 53, 0.08);
}

.scenario-list article:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.scenario-list strong {
  display: block;
  margin-bottom: 6px;
  color: var(--text);
}

.alt-tone-section {
  padding: 34px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.process-steps {
  display: grid;
  gap: 16px;
}

.process-steps article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}

.process-steps span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(21, 123, 140, 0.12), rgba(124, 194, 66, 0.18));
  color: var(--teal-dark);
  font-weight: 800;
}

.plain-list-section .service-rows,
.service-rows {
  display: grid;
  gap: 0;
}

.service-rows article {
  padding: 18px 0;
  border-bottom: 1px solid rgba(31, 45, 53, 0.08);
}

.service-rows article:last-child {
  border-bottom: none;
}

.band-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(21, 123, 140, 0.92), rgba(77, 164, 48, 0.9));
  color: #fff;
}

.band-panel p,
.band-panel .section-label,
.band-panel li,
.band-panel h2 {
  color: #fff;
}

.large-checks {
  padding-left: 18px;
  font-size: 1.02rem;
}

.story-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.story-strip article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.property-feature-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}

.property-feature-columns > div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.hero-simple-page {
  padding-bottom: 8px;
}

.hero-simple-page h1 {
  max-width: 13ch;
}

.quote-side-panel {
  background: rgba(255, 255, 255, 0.76);
}

.footer nav a:last-child {
  font-weight: 700;
}

/* page differentiation pass */
.compact-farm-hero {
  padding-top: 36px;
  padding-bottom: 16px;
}

.farm-intro-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.farm-intro-bar .eyebrow {
  margin-bottom: 0;
}

.farm-ops-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.farm-ops-copy h1 {
  font-size: clamp(2.25rem, 4.6vw, 3.7rem);
  line-height: 1.02;
  max-width: 11ch;
  margin-bottom: 16px;
}

.inline-services {
  list-style: none;
  padding: 0;
  margin: 22px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inline-services li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 45, 53, 0.08);
  font-weight: 700;
  color: var(--text);
}

.farm-ops-aside {
  padding: 24px;
  border-left: 3px solid rgba(21, 123, 140, 0.18);
  background: rgba(255, 255, 255, 0.62);
}

.farm-ops-aside strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.farm-systems-section {
  padding-top: 18px;
}

.farm-system-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 26px;
}

.farm-system-grid article {
  padding: 0 0 16px;
  border-bottom: 1px solid rgba(31, 45, 53, 0.08);
}

.farm-outcomes-strip {
  padding-top: 10px;
}

.farm-outcomes-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  padding: 26px 0;
  border-top: 1px solid rgba(31, 45, 53, 0.08);
  border-bottom: 1px solid rgba(31, 45, 53, 0.08);
}

.farm-outcome-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding-left: 18px;
}

.farm-outcome-list li {
  margin-top: 0;
}

.farm-scenarios-alt {
  padding-top: 20px;
}

.property-page-intro h1 {
  font-size: clamp(2.4rem, 4.2vw, 4rem);
  line-height: 1.04;
  max-width: 11ch;
}

.property-page .property-hero-points > div {
  background: rgba(246, 249, 247, 0.95);
}

/* final page differentiation */
.compact-farm-hero {
  padding: 34px 0 12px;
}

.farm-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-bottom: 18px;
}

.farm-topline .eyebrow {
  margin-bottom: 0;
}

.farm-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.farm-layout h1 {
  font-size: clamp(2.1rem, 4vw, 3.2rem);
  line-height: 1.05;
  max-width: 12ch;
  margin-bottom: 14px;
}

.farm-service-pills {
  list-style: none;
  margin: 22px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.farm-service-pills li {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 45, 53, 0.08);
  font-weight: 700;
}

.farm-note-panel {
  padding: 24px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(244, 248, 245, 0.96));
  border: 1px solid rgba(31, 45, 53, 0.08);
  box-shadow: 0 10px 30px rgba(31, 45, 53, 0.04);
}

.farm-note-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.farm-utility-band {
  margin-top: 12px;
  padding: 26px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(244, 248, 245, 0.98));
  border: 1px solid rgba(31, 45, 53, 0.06);
  box-shadow: 0 14px 34px rgba(31, 45, 53, 0.05);
  color: var(--text);
}

.farm-utility-band h2,
.farm-utility-band p,
.farm-utility-band li,
.farm-utility-band .section-label {
  color: inherit;
}

.farm-utility-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.farm-utility-grid div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(124, 194, 66, 0.12);
  border: 1px solid rgba(77, 164, 48, 0.16);
  font-weight: 700;
  text-align: center;
}

.farm-systems-table {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(31, 45, 53, 0.08);
}

.farm-systems-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(31, 45, 53, 0.08);
}

.farm-systems-row h3 {
  margin-bottom: 6px;
}

.farm-scan-section {
  padding-top: 14px;
}

.farm-scan-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 28px;
}

.farm-scan-grid article {
  padding: 20px 0 0;
  border-top: 1px solid rgba(31, 45, 53, 0.08);
}

.farm-scan-grid strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.property-soft-hero {
  padding: 38px 0 18px;
}

.property-soft-shell {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  gap: 28px;
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 245, 0.92));
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.property-soft-shell h1 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.06;
  max-width: 12ch;
}

/* PROPERTY BULLETS - match How It Works page */
.property-checklist {
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  list-style: disc;
  display: block;
}

.property-checklist li {
  display: list-item;
  position: static;
  padding-left: 0;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.8;
}

.property-checklist li::before,
.property-checklist li::after {
  content: none !important;
  display: none !important;
}

.property-side-stack {
  display: grid;
  gap: 14px;
}

.property-side-stack article {
  padding: 18px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.property-side-stack strong {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
}

.property-risk-band {
  padding: 6px 0 0;
}

.property-risk-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 30px;
}

.property-risk-list {
  display: grid;
  gap: 14px;
}

.property-risk-list article {
  padding: 18px 20px;
  border-left: 4px solid rgba(124, 194, 66, 0.65);
  background: rgba(255, 255, 255, 0.62);
}

.property-services-band {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.property-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 18px;
  margin-top: 18px;
}

.property-service-grid div {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(244, 248, 245, 0.96);
  border: 1px solid rgba(31, 45, 53, 0.06);
  font-weight: 700;
}

@media (max-width: 640px) {
  .farm-page .site-shell {
    padding: 0 16px 32px;
  }

  .farm-page .topbar {
    margin: 14px auto 18px;
    padding: 16px 18px;
  }

  .compact-farm-hero {
    padding-top: 20px;
  }

  .farm-topline {
    gap: 14px;
    margin-bottom: 16px;
  }

  .farm-page .farm-topline .button,
  .farm-page .cta-band .button-secondary {
    width: 100%;
  }

  .farm-layout h1 {
    font-size: clamp(2rem, 10vw, 2.6rem);
    line-height: 1.06;
  }

  .farm-service-pills {
    gap: 8px;
  }

  .farm-service-pills li,
  .farm-utility-grid div {
    width: 100%;
    text-align: center;
  }

  .farm-utility-grid,
  .farm-scan-grid {
    grid-template-columns: 1fr;
  }

  .farm-systems-row {
    gap: 8px;
  }

  .farm-scan-grid article {
    padding-top: 16px;
  }

  .farm-page .cta-band {
    padding: 24px 20px;
  }
}

/* consistency + page-specific refresh */
.hero-home-alt .hero-copy h1,
.hero-simple-page h1,
.compact-farm-hero h1,
.property-soft-shell h1,
.how-flow-hero h1,
.pricing-overview-hero h1 {
  font-size: clamp(2.6rem, 4.6vw, 4rem);
  line-height: 1.03;
}

.hero-home-alt .lead,
.audience-panel p,
.hero-side-card p,
.trust-inline p {
  font-size: 1.04rem;
}

.audience-panel p,
.hero-side-card p,
.trust-inline p,
.home-quick-points li {
  line-height: 1.7;
}

/* HOME BULLETS - match How It Works page */
.home-quick-points {
  margin: 20px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
  list-style: disc;
  display: block;
}

.home-quick-points li {
  display: list-item;
  position: static;
  padding-left: 0;
  margin: 0 0 8px;
  color: var(--muted);
  line-height: 1.8;
}

.home-quick-points li::before,
.home-quick-points li::after {
  content: none !important;
  display: none !important;
}

/* how it works redesign */
.how-flow-hero {
  padding: 44px 0 18px;
}

.how-flow-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.how-flow-intro {
  padding: 4px 0 0;
}

.how-flow-note {
  padding: 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(244, 248, 245, 0.92));
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.how-flow-note strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.quick-facts {
  list-style: none;
  margin: 16px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.quick-facts li {
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.how-step-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.how-step-card {
  padding: 22px 22px 20px;
  border-top: 4px solid rgba(21, 123, 140, 0.2);
  background: rgba(255, 255, 255, 0.74);
  border-radius: 22px;
}

.how-step-number {
  display: inline-flex;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--teal-dark);
  background: linear-gradient(135deg, rgba(21, 123, 140, 0.12), rgba(124, 194, 66, 0.18));
  margin-bottom: 14px;
}

.connectivity-compare {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.connectivity-card {
  padding: 26px;
  border-radius: 26px;
  border: 1px solid rgba(31, 45, 53, 0.06);
  background: rgba(255, 255, 255, 0.8);
}

.connectivity-card h3 {
  margin-bottom: 10px;
}

.connectivity-card ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.access-band-lite {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  padding: 30px;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(21, 123, 140, 0.9), rgba(77, 164, 48, 0.86));
  color: #fff;
}

.access-band-lite h2,
.access-band-lite p,
.access-band-lite li,
.access-band-lite .section-label {
  color: #fff;
}

.access-band-lite ul {
  margin: 0;
  padding-left: 18px;
  line-height: 1.9;
}

/* pricing redesign */
.pricing-overview-hero {
  padding: 42px 0 20px;
}

.pricing-overview-shell {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 28px;
  align-items: start;
}

.pricing-callout {
  padding: 28px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(31, 45, 53, 0.06);
}

.pricing-callout strong {
  display: block;
  margin-bottom: 10px;
  color: var(--text);
}

.pricing-tiers-alt {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.tier-column {
  padding: 26px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(31, 45, 53, 0.06);
  position: relative;
}

.tier-column.featured {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(244, 248, 245, 0.96));
  transform: translateY(-8px);
}

.tier-topline {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--teal);
  margin-bottom: 10px;
}

.tier-column ul {
  margin: 16px 0 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}

.pricing-factor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pricing-factor-grid article {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border-left: 4px solid rgba(124, 194, 66, 0.6);
}

.pricing-bottom-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.pricing-bottom-row > div {
  padding: 24px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(31, 45, 53, 0.06);
}

/* =========================
   MOBILE FIX (REAL CLEAN)
========================= */

@media (max-width: 768px) {

  /* FORCE ALL GRIDS TO 1 COLUMN */
  .hero-home-grid,
  .property-soft-shell,
  .farm-layout,
  .split-section,
  .split-showcase,
  .no-card-showcase,
  .audience-panels,
  .property-risk-layout,
  .property-feature-columns,
  .pricing-overview-shell,
  .connectivity-compare,
  .how-flow-shell {
    grid-template-columns: 1fr !important;
  }

  /* REMOVE SIDE STACK CRUNCH */
  .hero-side-stack,
  .property-side-stack {
    grid-template-columns: 1fr !important;
  }

  /* FIX PADDING (BIGGEST ISSUE) */
  .hero-side-card,
  .audience-panel,
  .property-soft-shell,
  .property-services-band,
  .alt-tone-section,
  .farm-note-panel,
  .cta-band {
    padding: 18px !important;
    border-radius: 18px !important;
  }

  /* TEXT SHOULD BREATHE */
  h1 {
    font-size: clamp(1.8rem, 7vw, 2.4rem) !important;
    max-width: 100% !important;
  }

  h2 {
    font-size: clamp(1.5rem, 6vw, 2rem) !important;
    max-width: 100% !important;
  }

  p,
  .lead {
    font-size: 1rem !important;
  }

  /* FIX BUTTONS */
  .button,
  .button-secondary,
  .nav-cta {
    width: 100%;
    justify-content: center;
  }

  /* FIX CHIPS / TAGS */
  .service-chip-grid {
    gap: 8px;
  }

  .service-chip {
    width: 100%;
    justify-content: center;
  }

  /* FIX LIST SPACING */
  .home-quick-points,
  .property-checklist {
    padding-left: 18px !important;
  }

  /* PREVENT SIDE OVERFLOW */
  body {
    overflow-x: hidden;
  }

  .site-shell {
    padding: 0 16px 32px !important;
  }
}