:root {
  --og-ink: #14251d;
  --og-muted: #5f7068;
  --og-green: #0d6542;
  --og-green-dark: #08472f;
  --og-green-soft: #e6f3ec;
  --og-lime: #b8dd60;
  --og-paper: #ffffff;
  --og-canvas: #f5f8f5;
  --og-line: #d9e2dc;
  --og-danger: #9c2f2f;
  --og-shadow: 0 18px 48px rgba(25, 54, 40, 0.09);
  --og-radius: 20px;
  --og-radius-sm: 12px;
  --og-wrap: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body.offgrid-site {
  margin: 0;
  background: var(--og-canvas);
  color: var(--og-ink);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

.offgrid-site img,
.offgrid-site svg { max-width: 100%; }

.offgrid-site a { color: var(--og-green); text-underline-offset: 3px; }
.offgrid-site a:hover { color: var(--og-green-dark); }
.offgrid-site button,
.offgrid-site input,
.offgrid-site select,
.offgrid-site textarea { font: inherit; }

.offgrid-site :focus-visible {
  outline: 3px solid #79b7ff;
  outline-offset: 3px;
}

.og-site-shell { min-height: 100vh; overflow: hidden; }
.og-wrap { width: min(calc(100% - 40px), var(--og-wrap)); margin-inline: auto; }

.og-skip-link {
  position: fixed;
  z-index: 9999;
  top: 10px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 15px;
  border-radius: 9px;
  background: var(--og-ink);
  color: #fff !important;
  text-decoration: none;
}
.og-skip-link:focus { transform: none; }

.og-header {
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(20, 37, 29, 0.08);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.og-header-inner {
  width: min(calc(100% - 40px), var(--og-wrap));
  min-height: 76px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.og-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--og-ink) !important;
  text-decoration: none;
}
.og-logo-mark { width: 31px; height: 36px; display: inline-flex; color: var(--og-green); }
.og-brand-name { font-size: 18px; font-weight: 760; letter-spacing: 0.095em; white-space: nowrap; }
.og-brand-name b { color: var(--og-green); font-size: 0.72em; letter-spacing: 0.13em; }

.og-nav { justify-self: center; display: flex; align-items: center; gap: 8px; }
.og-nav a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 7px 13px;
  border-radius: 10px;
  color: var(--og-muted);
  font-size: 15px;
  font-weight: 650;
  text-decoration: none;
}
.og-nav a:hover,
.og-nav a.is-current { background: var(--og-green-soft); color: var(--og-green-dark); }

.og-account-link {
  min-height: 43px;
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border: 1px solid var(--og-line);
  border-radius: 11px;
  color: var(--og-ink) !important;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.og-account-link:hover { border-color: var(--og-green); background: var(--og-green-soft); }
.og-mobile-nav { display: none; }

.og-eyebrow {
  display: inline-block;
  color: var(--og-green);
  font-size: 13px;
  font-weight: 780;
  letter-spacing: 0.1em;
  line-height: 1.3;
  text-transform: uppercase;
}

.og-hero {
  min-height: 610px;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(390px, 0.96fr);
  align-items: center;
  gap: clamp(40px, 7vw, 86px);
  padding-block: 74px 86px;
}

.og-hero h1,
.og-page-hero h1 {
  max-width: 780px;
  margin: 15px 0 20px;
  color: var(--og-ink);
  font-size: clamp(40px, 5.7vw, 66px);
  font-weight: 750;
  letter-spacing: -0.045em;
  line-height: 1.04;
}

.og-hero-copy > p,
.og-page-hero > p {
  max-width: 680px;
  margin: 0;
  color: var(--og-muted);
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
}

.og-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.og-button,
.offgrid-site .woocommerce a.button,
.offgrid-site .woocommerce button.button,
.offgrid-site .woocommerce input.button,
.offgrid-site .wp-block-button__link,
.offgrid-site .wc-block-components-button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border: 1px solid transparent;
  border-radius: 12px;
  box-shadow: none;
  font-size: 15px;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}
.og-button:hover,
.offgrid-site .woocommerce a.button:hover,
.offgrid-site .woocommerce button.button:hover,
.offgrid-site .woocommerce input.button:hover,
.offgrid-site .wp-block-button__link:hover,
.offgrid-site .wc-block-components-button:hover { transform: translateY(-1px); }
.og-button-primary,
.offgrid-site .woocommerce a.button.alt,
.offgrid-site .woocommerce button.button.alt,
.offgrid-site .woocommerce input.button.alt,
.offgrid-site .wp-block-button__link,
.offgrid-site .wc-block-components-button {
  background: var(--og-green) !important;
  color: #fff !important;
}
.og-button-primary:hover,
.offgrid-site .woocommerce a.button.alt:hover,
.offgrid-site .woocommerce button.button.alt:hover,
.offgrid-site .woocommerce input.button.alt:hover,
.offgrid-site .wp-block-button__link:hover,
.offgrid-site .wc-block-components-button:hover { background: var(--og-green-dark) !important; }
.og-button-secondary { border-color: var(--og-line); background: var(--og-paper); color: var(--og-ink) !important; }
.og-button-secondary:hover { border-color: var(--og-green); background: var(--og-green-soft); }
.og-button-wide { width: 100%; }

.og-system-preview {
  position: relative;
  padding: 22px;
  border: 1px solid var(--og-line);
  border-radius: 26px;
  background: var(--og-paper);
  box-shadow: var(--og-shadow);
}
.og-system-preview::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: -18px 40px 30px -24px;
  border-radius: 30px;
  background: linear-gradient(145deg, #dcefe5, #eff6d9);
  transform: rotate(-2.5deg);
}
.og-preview-top,
.og-preview-result { display: flex; justify-content: space-between; align-items: center; gap: 20px; }
.og-preview-top { padding: 3px 2px 19px; border-bottom: 1px solid var(--og-line); color: var(--og-muted); }
.og-preview-top strong { color: var(--og-ink); font-size: 23px; }
.og-flow { display: grid; grid-template-columns: 1fr 34px 1fr 34px 1fr; align-items: center; gap: 7px; padding: 30px 0; }
.og-flow > span { min-width: 0; display: grid; justify-items: center; gap: 8px; color: var(--og-green-dark); font-size: 14px; }
.og-flow .og-icon { width: 34px; height: 34px; }
.og-flow > i { height: 2px; background: var(--og-line); position: relative; }
.og-flow > i::after { content: ""; position: absolute; right: 0; top: -3px; border: 4px solid transparent; border-left-color: var(--og-line); }
.og-preview-result { padding: 17px; border-radius: 14px; background: var(--og-green-dark); color: #d8eee3; }
.og-preview-result span { font-size: 13px; }
.og-preview-result strong { color: #fff; font-size: 15px; text-align: right; }

.og-icon {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.og-section { padding-block: 86px; }
.og-section-heading { max-width: 640px; margin-bottom: 28px; }
.og-section-heading h2,
.og-price-banner h2,
.og-centered-cta h2,
.og-split-callout h2,
.og-schematic-copy h2,
.og-safety-card h2 {
  margin: 10px 0 0;
  font-size: clamp(29px, 4vw, 42px);
  letter-spacing: -0.035em;
  line-height: 1.13;
}

.og-tool-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px; }
.og-tool-card {
  min-height: 300px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: 1fr auto;
  gap: 0 20px;
  padding: 30px;
  border: 1px solid var(--og-line);
  border-radius: var(--og-radius);
  background: var(--og-paper);
}
.og-card-icon {
  width: 52px;
  height: 52px;
  display: inline-grid;
  place-items: center;
  border-radius: 14px;
  background: var(--og-green-soft);
  color: var(--og-green);
}
.og-card-icon .og-icon { width: 28px; }
.og-step-label { color: var(--og-muted); font-size: 14px; font-weight: 650; }
.og-tool-card h3 { margin: 4px 0 8px; font-size: 28px; letter-spacing: -0.025em; }
.og-tool-card p { max-width: 440px; margin: 0; color: var(--og-muted); }
.og-tool-card > a { grid-column: 2; align-self: end; margin-top: 24px; font-weight: 750; text-decoration: none; }

.og-section-soft { background: #eaf2ed; }
.og-three-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 38px; }
.og-three-steps > div { position: relative; padding-left: 54px; }
.og-three-steps span {
  position: absolute;
  left: 0;
  top: 0;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--og-green);
  color: #fff;
  font-weight: 800;
}
.og-three-steps h3 { margin: 0 0 8px; font-size: 20px; }
.og-three-steps p { margin: 0; color: var(--og-muted); }

.og-price-banner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}
.og-price-banner p { margin: 9px 0 0; color: var(--og-muted); font-size: 18px; }

.og-page-hero { padding-block: 88px 55px; }
.og-page-hero h1 { font-size: clamp(40px, 5vw, 58px); }
.og-page-hero-compact { max-width: 820px; padding-bottom: 34px; text-align: center; }
.og-page-hero-compact > p { margin-inline: auto; }

.og-feature-list { display: grid; gap: 14px; padding-top: 20px; }
.og-feature-list article {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
  padding: 27px;
  border: 1px solid var(--og-line);
  border-radius: 17px;
  background: var(--og-paper);
}
.og-feature-list h2 { margin: 0 0 5px; font-size: 22px; }
.og-feature-list p { margin: 0; color: var(--og-muted); }

.og-split-callout { display: grid; grid-template-columns: 1fr minmax(300px, 0.8fr); align-items: center; gap: 70px; }
.og-split-callout p { color: var(--og-muted); font-size: 18px; }
.og-mini-map {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  background: linear-gradient(135deg, #bfcec1, #e7ddbd);
}
.og-mini-map::before,
.og-mini-map::after { content: ""; position: absolute; background: rgba(255,255,255,.75); transform: rotate(-14deg); }
.og-mini-map::before { width: 150%; height: 22px; top: 44%; left: -25%; }
.og-mini-map::after { width: 24px; height: 150%; top: -25%; left: 62%; }
.og-mini-map span { position: absolute; z-index: 2; width: 43%; height: 48%; top: 27%; left: 27%; border: 3px solid var(--og-lime); background: rgba(13,101,66,.28); transform: rotate(8deg); }
.og-mini-map i,
.og-mini-map b,
.og-mini-map em { position: absolute; z-index: 3; width: 22px; height: 22px; border: 3px solid #fff; border-radius: 6px; background: var(--og-lime); }
.og-mini-map i { top: 23%; left: 24%; }.og-mini-map b { right: 26%; top: 31%; }.og-mini-map em { left: 33%; bottom: 22%; }

.og-centered-cta { max-width: 760px; text-align: center; }
.og-centered-cta p { color: var(--og-muted); font-size: 18px; }

.og-component-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px; }
.og-component-grid article { padding: 26px 23px; border: 1px solid var(--og-line); border-radius: 17px; background: var(--og-paper); }
.og-component-grid article > span { color: var(--og-green); }
.og-component-grid h2 { margin: 16px 0 6px; font-size: 21px; }
.og-component-grid p { margin: 0; color: var(--og-muted); font-size: 15px; }

.og-section-dark { background: var(--og-green-dark); color: #fff; }
.og-section-dark .og-eyebrow { color: var(--og-lime); }
.og-schematic-copy { display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.og-schematic-copy h2 { color: #fff; }
.og-schematic-copy p { margin: 0; color: #cae1d5; font-size: 18px; }

.og-safety-card { display: grid; grid-template-columns: auto 1fr; gap: 26px; align-items: start; max-width: 900px; }
.og-safety-card > strong { padding: 7px 13px; border-radius: 999px; background: #fff2d6; color: #765112; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.og-safety-card h2 { margin-top: 0; font-size: 30px; }
.og-safety-card p { margin-bottom: 0; color: var(--og-muted); }

.og-pricing-wrap { max-width: 920px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 20px; align-items: stretch; padding-block: 20px 100px; }
.og-plan-card,
.og-plan-side { border: 1px solid var(--og-line); border-radius: var(--og-radius); background: var(--og-paper); }
.og-plan-card { padding: clamp(25px, 5vw, 42px); box-shadow: var(--og-shadow); }
.og-plan-heading { display: flex; align-items: start; justify-content: space-between; gap: 20px; }
.og-plan-heading > div > span { color: var(--og-muted); font-weight: 700; }
.og-plan-heading h2 { margin: 8px 0 0; font-size: clamp(40px, 6vw, 58px); letter-spacing: -.045em; line-height: 1; }
.og-plan-heading h2 small { margin-left: 7px; color: var(--og-muted); font-size: 16px; font-weight: 600; letter-spacing: 0; }
.og-plan-badge { padding: 6px 10px; border-radius: 999px; background: var(--og-green-soft); color: var(--og-green); font-size: 13px; font-weight: 800; white-space: nowrap; }
.og-plan-card ul { list-style: none; display: grid; gap: 12px; margin: 30px 0; padding: 0; }
.og-plan-card li { position: relative; padding-left: 30px; }
.og-plan-card li::before { content: "✓"; position: absolute; left: 0; width: 21px; height: 21px; display: grid; place-items: center; border-radius: 50%; background: var(--og-green-soft); color: var(--og-green); font-size: 13px; font-weight: 900; }
.og-plan-note { margin: 14px 0 0; color: var(--og-muted); font-size: 14px; text-align: center; }
.og-plan-side { display: flex; flex-direction: column; justify-content: center; padding: 30px; background: #e9f1ec; }
.og-plan-side h2 { margin: 0 0 10px; font-size: 24px; line-height: 1.2; }
.og-plan-side p { margin: 0 0 20px; color: var(--og-muted); }
.og-plan-side a { font-weight: 750; text-decoration: none; }

.og-contact-layout { max-width: 940px; display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(260px, .8fr); gap: 20px; padding-block: 18px 100px; align-items: start; }
.og-contact-form,
.og-contact-side { padding: 30px; border: 1px solid var(--og-line); border-radius: var(--og-radius); background: var(--og-paper); }
.og-contact-form { display: grid; gap: 18px; }
.og-field-row { display: grid; gap: 7px; }
.og-field-row label { font-weight: 700; }
.og-field-row input,
.og-field-row select,
.og-field-row textarea,
.offgrid-site .woocommerce form .form-row input.input-text,
.offgrid-site .woocommerce form .form-row textarea,
.offgrid-site .woocommerce form select,
.offgrid-site .wc-block-components-text-input input,
.offgrid-site .wc-block-components-combobox .wc-block-components-combobox-control input.components-combobox-control__input {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  border: 1px solid #c9d5ce;
  border-radius: 10px;
  background: #fff;
  color: var(--og-ink);
}
.og-field-row textarea { min-height: 150px; resize: vertical; }
.og-field-row input:focus,
.og-field-row select:focus,
.og-field-row textarea:focus,
.offgrid-site .woocommerce form .form-row input.input-text:focus,
.offgrid-site .woocommerce form .form-row textarea:focus { border-color: var(--og-green); outline: 3px solid rgba(13,101,66,.13); }
.og-contact-side h2 { margin: 0 0 6px; font-size: 20px; }
.og-contact-side h2:not(:first-child) { margin-top: 28px; }
.og-contact-side p { margin: 0; color: var(--og-muted); }
.og-trap { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.og-notice { padding: 13px 15px; border-radius: 10px; font-weight: 650; }
.og-notice-success { background: #e5f4eb; color: #175c38; }
.og-notice-error { background: #fbe9e7; color: var(--og-danger); }

.og-legal-main { padding-bottom: 90px; }
.og-legal { max-width: 820px; padding: 38px clamp(24px, 5vw, 55px); border: 1px solid var(--og-line); border-radius: var(--og-radius); background: var(--og-paper); }
.og-legal-lead { margin-top: 0; color: var(--og-ink) !important; font-size: 19px; }
.og-legal h2 { margin: 34px 0 8px; font-size: 22px; letter-spacing: -.015em; }
.og-legal p { margin: 0; color: #46594f; }
.og-legal a { font-weight: 650; }

.og-coming-main { min-height: 680px; display: grid; place-items: center; padding: 60px 20px 90px; }
.og-coming-card { width: min(100%, 650px); padding: clamp(32px, 7vw, 65px); border: 1px solid var(--og-line); border-radius: 26px; background: var(--og-paper); box-shadow: var(--og-shadow); text-align: center; }
.og-coming-card .og-card-icon { margin-bottom: 23px; }
.og-coming-card h1 { margin: 10px 0 12px; font-size: clamp(42px, 7vw, 64px); letter-spacing: -.045em; line-height: 1; }
.og-coming-card > p { max-width: 500px; margin: 0 auto; color: var(--og-muted); font-size: 18px; }
.og-coming-card .og-actions { justify-content: center; }

.og-woo-main { min-height: 650px; padding-bottom: 90px; }
.og-woo-heading { padding-block: 60px 24px; }
.og-woo-heading h1 { margin: 0 0 5px; font-size: clamp(34px, 5vw, 48px); letter-spacing: -.035em; line-height: 1.1; }
.og-woo-heading p { margin: 0; color: var(--og-muted); font-size: 18px; }
.og-woo-content { padding: clamp(20px, 4vw, 36px); border: 1px solid var(--og-line); border-radius: var(--og-radius); background: var(--og-paper); }
.og-woo-content > .og-notice { margin-bottom: 20px; }

.offgrid-site .woocommerce { color: var(--og-ink); }
.offgrid-site .woocommerce form.login,
.offgrid-site .woocommerce form.register,
.offgrid-site .woocommerce form.checkout_coupon {
  margin: 20px 0;
  padding: 24px;
  border: 1px solid var(--og-line);
  border-radius: 14px;
}
.offgrid-site .woocommerce form .form-row { padding: 0; margin: 0 0 16px; }
.offgrid-site .woocommerce form .form-row label { margin-bottom: 6px; color: var(--og-ink); font-weight: 700; }
.offgrid-site .woocommerce .woocommerce-MyAccount-navigation ul { list-style: none; display: grid; gap: 5px; margin: 0; padding: 10px; border-radius: 14px; background: #edf3ef; }
.offgrid-site .woocommerce .woocommerce-MyAccount-navigation li a { display: block; padding: 10px 12px; border-radius: 9px; color: var(--og-muted); font-weight: 650; text-decoration: none; }
.offgrid-site .woocommerce .woocommerce-MyAccount-navigation li.is-active a,
.offgrid-site .woocommerce .woocommerce-MyAccount-navigation li a:hover { background: #fff; color: var(--og-green); }
.offgrid-site .woocommerce .woocommerce-MyAccount-content { padding-left: 28px; }
.offgrid-site .woocommerce table.shop_table { border-color: var(--og-line); border-radius: 12px; border-collapse: separate; overflow: hidden; }
.offgrid-site .woocommerce table.shop_table th,
.offgrid-site .woocommerce table.shop_table td { padding: 13px; border-color: var(--og-line); }
.offgrid-site .woocommerce-error,
.offgrid-site .woocommerce-info,
.offgrid-site .woocommerce-message { border-top: 0; border-radius: 11px; background: #eef4f0; color: var(--og-ink); }
.offgrid-site .woocommerce-info::before,
.offgrid-site .woocommerce-message::before { color: var(--og-green); }
.offgrid-site .woocommerce-checkout #payment { border-radius: 14px; background: #edf3ef; }
.offgrid-site .woocommerce-checkout #payment ul.payment_methods { border-color: var(--og-line); }
.offgrid-site .woocommerce .col2-set,
.offgrid-site .woocommerce-page .col2-set { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 25px; }
.offgrid-site .woocommerce .col2-set .col-1,
.offgrid-site .woocommerce-page .col2-set .col-1,
.offgrid-site .woocommerce .col2-set .col-2,
.offgrid-site .woocommerce-page .col2-set .col-2 { width: auto; float: none; }
.offgrid-site .wc-block-checkout,
.offgrid-site .wc-block-cart { max-width: none; }
.offgrid-site .wc-block-components-sidebar-layout { align-items: start; }
.offgrid-site .wc-block-components-order-summary,
.offgrid-site .wc-block-components-sidebar { border-radius: 14px; }

.og-footer { border-top: 1px solid var(--og-line); background: var(--og-paper); }
.og-footer-inner { width: min(calc(100% - 40px), var(--og-wrap)); display: grid; grid-template-columns: 1.6fr .7fr .7fr; gap: 60px; margin-inline: auto; padding-block: 55px 42px; }
.og-brand-footer .og-logo-mark { width: 26px; height: 30px; }
.og-brand-footer .og-brand-name { font-size: 16px; }
.og-footer-inner > div p { max-width: 320px; margin: 13px 0 0; color: var(--og-muted); }
.og-footer nav { display: grid; align-content: start; gap: 8px; }
.og-footer nav strong { margin-bottom: 3px; font-size: 14px; }
.og-footer nav a { color: var(--og-muted); font-size: 14px; text-decoration: none; }
.og-footer nav a:hover { color: var(--og-green); }
.og-footer-bottom { width: min(calc(100% - 40px), var(--og-wrap)); margin-inline: auto; padding-block: 18px 26px; border-top: 1px solid var(--og-line); color: var(--og-muted); font-size: 13px; }

@media (max-width: 920px) {
  .og-hero { min-height: auto; grid-template-columns: 1fr; padding-block: 65px 80px; }
  .og-hero-copy { max-width: 760px; }
  .og-system-preview { width: min(100%, 620px); }
  .og-component-grid { grid-template-columns: repeat(2, 1fr); }
  .og-split-callout { gap: 40px; }
  .og-pricing-wrap,
  .og-contact-layout { grid-template-columns: 1fr; }
  .og-plan-side { min-height: 230px; }
}

@media (max-width: 760px) {
  .og-wrap { width: min(calc(100% - 28px), var(--og-wrap)); }
  .og-header-inner { width: calc(100% - 28px); min-height: 68px; grid-template-columns: 1fr auto; gap: 14px; }
  .og-nav,
  .og-account-link { display: none; }
  .og-mobile-nav { position: relative; display: block; justify-self: end; }
  .og-mobile-nav summary { width: 44px; height: 44px; display: grid; align-content: center; gap: 5px; padding: 10px; border: 1px solid var(--og-line); border-radius: 11px; background: #fff; cursor: pointer; list-style: none; }
  .og-mobile-nav summary::-webkit-details-marker { display: none; }
  .og-mobile-nav summary span { height: 2px; border-radius: 2px; background: var(--og-ink); }
  .og-mobile-nav nav { position: absolute; right: 0; top: 52px; width: min(280px, calc(100vw - 28px)); display: grid; gap: 4px; padding: 9px; border: 1px solid var(--og-line); border-radius: 13px; background: #fff; box-shadow: var(--og-shadow); }
  .og-mobile-nav nav a { min-height: 45px; display: flex; align-items: center; padding: 8px 11px; border-radius: 8px; color: var(--og-ink); font-weight: 650; text-decoration: none; }
  .og-mobile-nav nav a:hover,
  .og-mobile-nav nav a.is-current { background: var(--og-green-soft); }

  .og-hero h1,
  .og-page-hero h1 { font-size: clamp(37px, 11vw, 52px); }
  .og-hero { gap: 50px; padding-top: 55px; }
  .og-section { padding-block: 66px; }
  .og-tool-grid,
  .og-three-steps,
  .og-split-callout,
  .og-schematic-copy { grid-template-columns: 1fr; }
  .og-tool-card { min-height: 0; }
  .og-three-steps { gap: 30px; }
  .og-split-callout { gap: 30px; }
  .og-mini-map { min-height: 240px; }
  .og-price-banner { align-items: flex-start; flex-direction: column; }
  .og-page-hero { padding-block: 65px 32px; }
  .og-pricing-wrap,
  .og-contact-layout { padding-bottom: 75px; }
  .og-safety-card { grid-template-columns: 1fr; gap: 15px; }
  .og-footer-inner { width: calc(100% - 28px); grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .og-footer-inner > div { grid-column: 1 / -1; }
  .og-footer-bottom { width: calc(100% - 28px); }
  .offgrid-site .woocommerce .col2-set,
  .offgrid-site .woocommerce-page .col2-set { grid-template-columns: 1fr; }
  .offgrid-site .woocommerce .woocommerce-MyAccount-navigation,
  .offgrid-site .woocommerce .woocommerce-MyAccount-content { width: 100%; float: none; }
  .offgrid-site .woocommerce .woocommerce-MyAccount-content { padding: 24px 0 0; }
}

@media (max-width: 520px) {
  .og-brand-name { font-size: 16px; }
  .og-logo-mark { width: 27px; height: 31px; }
  .og-hero { padding-block: 45px 65px; }
  .og-hero-copy > p,
  .og-page-hero > p { font-size: 17px; }
  .og-actions { display: grid; grid-template-columns: 1fr; }
  .og-actions .og-button { width: 100%; }
  .og-system-preview { padding: 16px; border-radius: 20px; }
  .og-preview-top { align-items: flex-start; }
  .og-flow { grid-template-columns: 1fr 18px 1fr 18px 1fr; gap: 3px; padding: 24px 0; }
  .og-flow .og-icon { width: 28px; height: 28px; }
  .og-flow > span { font-size: 12px; }
  .og-preview-result { align-items: flex-start; flex-direction: column; gap: 4px; }
  .og-preview-result strong { text-align: left; }
  .og-tool-card { grid-template-columns: 1fr; gap: 16px; padding: 23px; }
  .og-tool-card > a { grid-column: 1; margin-top: 4px; }
  .og-component-grid { grid-template-columns: 1fr; }
  .og-feature-list article { grid-template-columns: 1fr; padding: 22px; }
  .og-plan-card,
  .og-contact-form,
  .og-contact-side { padding: 22px; }
  .og-plan-heading { align-items: flex-start; flex-direction: column-reverse; }
  .og-plan-side { min-height: 0; }
  .og-legal { width: calc(100% - 28px); padding: 26px 21px; }
  .og-woo-heading { padding-top: 45px; }
  .og-woo-content { width: calc(100% - 20px); padding: 18px 14px; }
  .og-footer-inner { grid-template-columns: 1fr; }
  .og-footer-inner > div { grid-column: auto; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .og-button,
  .offgrid-site .woocommerce a.button,
  .offgrid-site .woocommerce button.button,
  .offgrid-site .woocommerce input.button { transition: none; }
}

