.ogc {
  --ogc-green: #0b5015;
  --ogc-green-dark: color-mix(in srgb, var(--ogc-green) 82%, #000);
  --ogc-secondary-accent: #0b5015;
  --ogc-card-radius: 16px;
  --ogc-green-soft: color-mix(in srgb, var(--ogc-green) 10%, #fff);
  --ogc-ink: #17211a;
  --ogc-muted: #69736c;
  --ogc-line: #dfe5df;
  --ogc-surface: #ffffff;
  --ogc-bg: #f7f7f5;
  --ogc-warning: #fff8e8;
  --ogc-shadow: 0 20px 60px rgba(12, 35, 18, 0.09);
  position: relative;
  left: 50%;
  width: 100vw;
  max-width: none;
  margin-left: -50vw;
  color: var(--ogc-ink);
  background: var(--ogc-bg);
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  overflow-x: hidden;
  overflow: clip;
}

.ogc [hidden] {
  display: none !important;
}

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

.ogc button,
.ogc input,
.ogc select,
.ogc textarea {
  font: inherit;
  font-family: "Montserrat", Arial, Helvetica, sans-serif !important;
}

.ogc h1,
.ogc h2,
.ogc h3,
.ogc p,
.ogc span,
.ogc small,
.ogc strong,
.ogc dt,
.ogc dd,
.ogc a {
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
}

.ogc svg {
  display: block;
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ogc-container {
  width: min(1320px, calc(100% - 48px));
  margin-inline: auto;
}

.ogc-hero {
  color: var(--ogc-ink);
  border-bottom: 1px solid var(--ogc-line);
  background: #fff;
}

.ogc-hero__inner {
  padding-block: clamp(42px, 5vw, 66px) clamp(34px, 4vw, 52px);
}

.ogc-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ogc-plugin-logo {
  display: block;
  width: 25px;
  height: 25px;
  flex: 0 0 auto;
  object-fit: contain;
}

.ogc-eyebrow,
.ogc-step-kicker,
.ogc-price-card__eyebrow {
  margin: 0;
  color: var(--ogc-green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.ogc-hero h1 {
  max-width: 860px;
  margin: 11px 0 10px;
  color: var(--ogc-ink);
  font-size: clamp(34px, 4.4vw, 56px);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.ogc-hero__lead {
  margin: 0;
  color: var(--ogc-muted);
  font-size: clamp(16px, 2vw, 19px);
}

.ogc-progress-wrap {
  border-top: 1px solid #eef1ee;
  background: #fff;
}

.ogc-progress {
  position: relative;
  padding: 24px 0 22px;
}

.ogc-progress__track {
  position: absolute;
  top: 36px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: #e4e8e4;
  overflow: hidden;
}

.ogc-progress__fill {
  display: block;
  width: 20%;
  height: 100%;
  background: var(--ogc-green);
  transition: width 320ms ease;
}

.ogc-progress__steps {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(var(--ogc-progress-count, 5), minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ogc-progress__steps li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  color: #9aa29c;
  text-align: center;
  transition: color 200ms ease;
}

.ogc-progress__steps span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 2px solid #d9dfd9;
  border-radius: 50%;
  background: #fff;
  font-size: 9px;
  font-weight: 800;
}

.ogc-progress__steps small {
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.02em;
}

.ogc-progress__steps li.is-active,
.ogc-progress__steps li.is-complete {
  color: var(--ogc-ink);
}

.ogc-progress__steps li.is-active span,
.ogc-progress__steps li.is-complete span {
  border-color: var(--ogc-green);
  color: #fff;
  background: var(--ogc-green);
}

.ogc-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, 390px);
  gap: clamp(28px, 4vw, 56px);
  align-items: start;
  padding-block: clamp(42px, 6vw, 80px) clamp(64px, 8vw, 110px);
}

.ogc-main {
  min-width: 0;
}

.ogc-step-header {
  margin-bottom: 30px;
}

.ogc-step-kicker {
  color: var(--ogc-green);
}

.ogc-step-header h2 {
  margin: 8px 0 8px;
  color: var(--ogc-ink);
  font-size: clamp(31px, 4vw, 48px);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
  outline: none;
}

.ogc-step-header > p:last-child {
  max-width: 720px;
  margin: 0;
  color: var(--ogc-muted);
  font-size: 17px;
}

.ogc-choice-grid {
  display: grid;
  gap: 16px;
  align-items: stretch;
}

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

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

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

.ogc-choice {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 24px;
  gap: 16px;
  align-items: center;
  width: 100%;
  height: auto !important;
  align-self: stretch;
  min-height: 136px;
  padding: 22px;
  border: 1px solid var(--ogc-line);
  border-radius: var(--ogc-card-radius);
  color: var(--ogc-ink);
  background: var(--ogc-surface);
  box-shadow: 0 2px 0 rgba(13, 47, 20, 0.02);
  text-align: left;
  white-space: normal !important;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease, background 180ms ease;
}

.ogc-choice:hover:not(:disabled) {
  border-color: var(--ogc-green) !important;
  color: var(--ogc-ink) !important;
  background: #fff !important;
  box-shadow: 0 0 0 2px rgba(11, 80, 21, 0.08);
  transform: none;
}

.ogc-choice:focus-visible,
.ogc-color:focus-visible,
.ogc-swatch-choice:focus-visible,
.ogc-button:focus-visible,
.ogc-field select:focus-visible {
  outline: 3px solid rgba(42, 125, 54, 0.26);
  outline-offset: 3px;
}

.ogc-choice.is-selected {
  border-color: var(--ogc-green);
  color: var(--ogc-ink) !important;
  background: #f4f8f4 !important;
  box-shadow: 0 0 0 2px rgba(11, 80, 21, 0.09);
}

.ogc-choice.is-disabled {
  color: #858d87;
  background: #f0f2ef;
  cursor: not-allowed;
  opacity: 0.82;
}

.ogc-choice__icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  align-self: center;
  border-radius: 13px;
  color: var(--ogc-green);
  background: var(--ogc-green-soft);
}

.ogc-choice.is-disabled .ogc-choice__icon {
  color: #818981;
  background: #e5e8e4;
}

.ogc-choice__icon svg {
  width: 29px;
  height: 29px;
}

.ogc-choice__content {
  display: flex;
  flex-direction: column;
  align-self: center;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
}

.ogc-choice__content strong {
  display: block;
  max-width: 100%;
  color: inherit;
  font-size: 17px;
  font-weight: 750;
  line-height: 1.25;
  white-space: normal;
  overflow-wrap: anywhere;
}

.ogc-choice__content small {
  display: block;
  max-width: 100%;
  margin-top: 6px;
  color: var(--ogc-muted);
  font-size: 13px;
  line-height: 1.45;
  white-space: normal;
  overflow-wrap: anywhere;
}

.ogc-choice__check,
.ogc-color__check {
  align-self: center;
  color: var(--ogc-green);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ogc-choice.is-selected .ogc-choice__check,
.ogc-color.is-selected .ogc-color__check {
  opacity: 1;
  transform: scale(1);
}

.ogc-badge {
  position: absolute;
  top: 13px;
  right: 13px;
  padding: 5px 8px;
  border-radius: 999px;
  color: #6c746e;
  background: #e2e6e2;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.ogc-section-card,
.ogc-included {
  padding: clamp(22px, 3vw, 32px);
  border: 1px solid var(--ogc-line);
  border-radius: var(--ogc-card-radius);
  background: var(--ogc-surface);
  box-shadow: 0 10px 36px rgba(12, 42, 18, 0.04);
}

.ogc-field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.ogc-field {
  display: flex;
  flex-direction: column;
}

.ogc-field > span {
  font-size: 14px;
  font-weight: 750;
}

.ogc-field > small {
  margin-top: 2px;
  color: var(--ogc-muted);
  font-size: 12px;
}

.ogc-field select {
  width: 100%;
  min-height: 54px;
  margin-top: 10px;
  padding: 0 44px 0 15px;
  border: 1px solid #cfd6cf;
  border-radius: 11px;
  color: var(--ogc-ink);
  background-color: #fff;
  cursor: pointer;
}

.ogc-subsection {
  margin-top: 32px;
}

.ogc-subsection__heading {
  margin-bottom: 16px;
}

.ogc-subsection__heading h3 {
  margin: 0;
  color: var(--ogc-ink);
  font-size: 20px;
  font-weight: 750;
  letter-spacing: -0.015em;
}

.ogc-subsection__heading p {
  margin: 3px 0 0;
  color: var(--ogc-muted);
  font-size: 13px;
}

.ogc-subsection__heading--icon {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ogc-subsection__heading--icon > span {
  display: grid;
  width: 43px;
  height: 43px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 12px;
  color: var(--ogc-green);
  background: var(--ogc-green-soft);
}

.ogc-color-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.ogc-color {
  display: grid;
  grid-template-columns: 30px 1fr 20px;
  gap: 10px;
  align-items: center;
  min-height: 64px;
  padding: 13px 15px;
  border: 1px solid var(--ogc-line);
  border-radius: var(--ogc-card-radius);
  color: var(--ogc-ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.ogc-color:hover,
.ogc-color.is-selected {
  border-color: var(--ogc-green);
  color: var(--ogc-ink) !important;
  background: #fff !important;
  box-shadow: 0 0 0 2px rgba(11, 80, 21, 0.09);
}

.ogc-color.is-selected {
  background: #f4f8f4 !important;
}

.ogc-color__swatch {
  width: 30px;
  height: 30px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  background: var(--ogc-swatch);
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.33);
}

.ogc-color > span:nth-child(2) {
  font-size: 14px;
  font-weight: 700;
}

.ogc-color-picker-section {
  padding-top: 4px;
}

.ogc-color-picker-section + .ogc-color-picker-section {
  margin-top: 38px;
  padding-top: 32px;
  border-top: 1px solid var(--ogc-line);
}

.ogc-subsection__heading--nested {
  margin-top: 26px;
}

.ogc-section-card--compact {
  max-width: 520px;
  padding: 18px;
  box-shadow: none;
}

.ogc-swatch-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 11px;
}

.ogc-swatch-choice {
  position: relative;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 19px;
  gap: 11px;
  align-items: center;
  min-height: 78px;
  padding: 12px;
  border: 1px solid var(--ogc-line);
  border-radius: 13px;
  color: var(--ogc-ink);
  background: #fff;
  text-align: left;
  cursor: pointer;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.ogc-swatch-choice:hover:not(:disabled),
.ogc-swatch-choice.is-selected {
  border-color: var(--ogc-green);
  color: var(--ogc-ink) !important;
  background: #fff !important;
  box-shadow: 0 0 0 2px rgba(11, 80, 21, 0.09);
}

.ogc-swatch-choice.is-selected {
  background: #f4f8f4 !important;
}

.ogc-swatch-choice.is-disabled {
  color: #858d87;
  background: #f0f2ef;
  cursor: not-allowed;
  opacity: 0.72;
}

.ogc-swatch-choice__sample {
  display: block;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(23, 33, 26, 0.16);
  border-radius: 11px;
  background: var(--ogc-option-swatch);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.18);
}

.ogc-swatch-choice__sample.is-pattern {
  background-color: #d9ddd9;
  background-image: linear-gradient(135deg, rgba(255, 255, 255, 0.65) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0.65) 75%, transparent 75%);
  background-size: 12px 12px;
}

.ogc-swatch-choice__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ogc-swatch-choice__content strong {
  overflow-wrap: anywhere;
  font-size: 11px;
  line-height: 1.3;
}

.ogc-swatch-choice__content small {
  margin-top: 3px;
  color: var(--ogc-muted);
  font-size: 9px;
  line-height: 1.3;
}

.ogc-swatch-choice__check {
  display: grid;
  width: 19px;
  height: 19px;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ogc-green);
  opacity: 0;
  transform: scale(0.72);
  transition: opacity 180ms ease, transform 180ms ease;
}

.ogc-swatch-choice__check svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}

.ogc-swatch-choice.is-selected .ogc-swatch-choice__check {
  opacity: 1;
  transform: scale(1);
}

.ogc-color-note {
  color: #59635c;
  background: #f7f9f7;
}

.ogc-roof-groups .ogc-roof-group:first-child {
  margin-top: 0;
}

.ogc-roof-group + .ogc-roof-group {
  padding-top: 28px;
  border-top: 1px solid var(--ogc-line);
}

.ogc-choice-grid--roof .ogc-choice {
  min-height: 122px;
}

.ogc-choice-grid--three .ogc-choice {
  grid-template-columns: 44px minmax(0, 1fr);
  align-items: center;
  min-height: 180px;
}

.ogc-choice-grid--three .ogc-choice__check {
  position: absolute;
  right: 17px;
  bottom: 17px;
}

.ogc-choice-grid--three .ogc-choice__icon {
  width: 44px;
  height: 44px;
}

.ogc-info-box,
.ogc-warning {
  display: flex;
  gap: 14px;
  margin-top: 24px;
  padding: 17px 19px;
  border: 1px solid #d7e5d7;
  border-radius: 13px;
  color: #315337;
  background: #edf5ed;
}

.ogc-info-box > span {
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--ogc-green);
}

.ogc-info-box p,
.ogc-warning p {
  margin: 0;
  font-size: 13px;
}

.ogc-nav {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--ogc-line);
}

.ogc-button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 11px;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  text-decoration: none !important;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.ogc-button svg {
  width: 20px;
  height: 20px;
}

.ogc-button--primary {
  color: #fff !important;
  background: var(--ogc-green);
  box-shadow: 0 9px 24px rgba(11, 80, 21, 0.22);
}

.ogc-button--primary:hover {
  color: #fff !important;
  background: var(--ogc-green-dark);
  box-shadow: 0 13px 30px rgba(11, 80, 21, 0.28);
  transform: translateY(-1px);
}

.ogc-button--secondary {
  border-color: #cfd6cf;
  color: var(--ogc-ink) !important;
  background: #fff;
}

.ogc-button--secondary:hover:not(:disabled) {
  border-color: var(--ogc-secondary-accent);
  color: var(--ogc-secondary-accent) !important;
}

.ogc-button--messenger {
  border-color: #b9dcff;
  color: #0866c6 !important;
  background: #edf6ff;
}

.ogc-button--messenger:hover:not(:disabled) {
  border-color: #168aff;
  color: #0759ac !important;
  background: #dceeff;
  box-shadow: 0 8px 20px rgba(22, 138, 255, 0.14);
}

.ogc-button--secondary.is-success {
  border-color: var(--ogc-secondary-accent);
  color: var(--ogc-secondary-accent) !important;
  background: color-mix(in srgb, var(--ogc-secondary-accent) 9%, #fff);
}

.ogc-button--primary.is-success:disabled {
  color: #fff !important;
  background: var(--ogc-green);
}

.ogc-button--text {
  min-height: auto;
  padding: 8px 0;
  color: var(--ogc-muted) !important;
  background: transparent;
}

.ogc-button--text:hover {
  color: var(--ogc-secondary-accent) !important;
}

.ogc-button:disabled {
  color: #a3aaa4 !important;
  background: #e7eae7;
  box-shadow: none;
  cursor: not-allowed;
}

.ogc-validation {
  margin-top: 24px;
  padding: 12px 15px;
  border: 1px solid #ddbbb6;
  border-radius: 10px;
  color: #7b2e25;
  background: #fff1ef;
  font-size: 13px;
  font-weight: 650;
}

.ogc-sidebar {
  position: sticky;
  top: 24px;
}

.ogc-price-card {
  padding: clamp(26px, 3vw, 36px);
  border: 1px solid rgba(11, 80, 21, 0.16);
  border-radius: 20px;
  background: var(--ogc-surface);
  box-shadow: var(--ogc-shadow);
}

.ogc-price-card__eyebrow {
  color: var(--ogc-green);
}

.ogc-price-card__amount {
  margin: 9px 0 0;
  color: var(--ogc-ink);
  font-size: clamp(35px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.045em;
  line-height: 1.05;
}

.ogc-price-card__vat {
  margin: 6px 0 0;
  color: var(--ogc-muted);
  font-size: 12px;
}

.ogc-price-card__divider {
  height: 1px;
  margin: 25px 0;
  background: var(--ogc-line);
}

.ogc-breakdown {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 0;
}

.ogc-breakdown > div {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 14px;
  align-items: start;
}

.ogc-breakdown dt,
.ogc-breakdown dd {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
}

.ogc-availability::before,
.ogc-project-meta__availability > span {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: #23a342;
  box-shadow: 0 0 0 3px rgba(35, 163, 66, 0.12);
  content: "";
  vertical-align: 1px;
}

.ogc-breakdown dt {
  color: var(--ogc-muted);
}

.ogc-breakdown dd {
  color: var(--ogc-ink);
  font-weight: 700;
  text-align: right;
}

.ogc-price-card__note {
  margin: 25px 0 0;
  padding-top: 20px;
  border-top: 1px solid var(--ogc-line);
  color: #858d87;
  font-size: 10px;
  line-height: 1.55;
}

.ogc-admin-diagnostics {
  margin-top: 14px;
  border: 1px solid #cfd8d0;
  border-radius: 14px;
  background: #f7f9f7;
  color: var(--ogc-ink);
}

.ogc-admin-diagnostics summary {
  padding: 15px 18px;
  color: var(--ogc-green);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.ogc-admin-diagnostics summary span {
  display: inline-block;
  margin-left: 5px;
  color: var(--ogc-muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ogc-admin-diagnostics__intro,
.ogc-admin-diagnostics__empty {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--ogc-muted);
  font-size: 11px;
  line-height: 1.5;
}

.ogc-admin-diagnostics__rows {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0 18px 16px;
}

.ogc-admin-diagnostics__rows > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  padding: 7px 0;
  border-top: 1px solid #e1e6e1;
}

.ogc-admin-diagnostics__rows dt,
.ogc-admin-diagnostics__rows dd {
  margin: 0;
  font-size: 10px;
  line-height: 1.4;
}

.ogc-admin-diagnostics__rows dt {
  color: var(--ogc-muted);
}

.ogc-admin-diagnostics__rows dd {
  color: var(--ogc-ink);
  font-weight: 750;
  text-align: right;
}

.ogc-admin-diagnostics__rows > div:last-child {
  margin-top: 3px;
  border-top-color: var(--ogc-green);
}

.ogc-admin-diagnostics__rows > div:last-child dt,
.ogc-admin-diagnostics__rows > div:last-child dd {
  color: var(--ogc-green);
  font-weight: 850;
}

.ogc-summary-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 18px;
  margin-bottom: 22px;
  padding: 22px 25px;
  border-radius: 16px;
  color: #fff;
  background: var(--ogc-green);
}

.ogc-summary-price > span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ogc-summary-price strong {
  font-size: clamp(29px, 4vw, 41px);
  letter-spacing: -0.035em;
  line-height: 1;
}

.ogc-summary-price small {
  flex-basis: 100%;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
}

.ogc-final-layout {
  display: grid;
  grid-template-columns: minmax(190px, 3fr) minmax(0, 7fr);
  gap: 18px;
  align-items: start;
}

.ogc-final-sidebar {
  min-width: 0;
}

.ogc-final-sidebar .ogc-summary-price {
  display: block;
  margin: 0;
  padding: 24px 21px;
}

.ogc-final-sidebar .ogc-summary-price > span {
  display: block;
  line-height: 1.4;
}

.ogc-final-sidebar .ogc-summary-price strong {
  display: block;
  margin-top: 12px;
  font-size: clamp(26px, 2.8vw, 35px);
  line-height: 1.08;
  overflow-wrap: anywhere;
}

.ogc-final-sidebar .ogc-summary-price small {
  display: block;
  margin-top: 11px;
  line-height: 1.5;
}

.ogc-project-meta {
  margin-top: 18px;
  padding: 20px;
  border: 1px solid var(--ogc-line);
  border-radius: var(--ogc-card-radius);
  background: #fff;
}

.ogc-project-meta__availability {
  margin: 0 0 17px;
  color: #235c2b;
  font-size: 12px;
  font-weight: 800;
}

.ogc-project-meta > div + div {
  margin-top: 14px;
}

.ogc-project-meta small,
.ogc-project-meta strong {
  display: block;
}

.ogc-project-meta small {
  color: var(--ogc-muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ogc-project-meta strong {
  margin-top: 4px;
  color: var(--ogc-ink);
  font-size: 12px;
  line-height: 1.45;
}

.ogc-project-meta__note {
  margin: 17px 0 0;
  padding-top: 14px;
  border-top: 1px solid var(--ogc-line);
  color: var(--ogc-muted);
  font-size: 10px;
  line-height: 1.5;
}

.ogc-final-sidebar .ogc-included {
  margin-top: 18px;
  padding: 22px 20px;
}

.ogc-final-sidebar .ogc-included .ogc-subsection__heading {
  margin-bottom: 17px;
}

.ogc-final-sidebar .ogc-included .ogc-subsection__heading h3 {
  font-size: 17px;
  line-height: 1.3;
}

.ogc-final-sidebar .ogc-included ul {
  grid-template-columns: 1fr;
  gap: 12px;
}

.ogc-form-card {
  min-width: 0;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid var(--ogc-line);
  border-radius: var(--ogc-card-radius);
  background: #fff;
  box-shadow: 0 10px 36px rgba(12, 42, 18, 0.04);
}

.ogc-form-heading {
  margin-bottom: 24px;
}

.ogc-form-heading h3 {
  margin: 7px 0 7px;
  color: var(--ogc-ink);
  font-size: clamp(23px, 3vw, 31px);
  font-weight: 750;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.ogc-form-heading > p:last-child {
  margin: 0;
  color: var(--ogc-muted);
  font-size: 13px;
}

.ogc-quote-form {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.ogc-form-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.ogc-form-field {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 7px;
}

.ogc-form-field > span {
  color: var(--ogc-ink);
  font-size: 12px;
  font-weight: 750;
}

.ogc-form-field input,
.ogc-form-field textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid #cfd6cf !important;
  border-radius: 11px !important;
  color: var(--ogc-ink) !important;
  background: #fff !important;
  box-shadow: none !important;
  outline: none;
}

.ogc-form-field input {
  height: 50px;
  padding: 0 13px !important;
}

.ogc-form-field textarea {
  min-height: 126px;
  padding: 13px !important;
  line-height: 1.5;
  resize: vertical;
}

.ogc-form-field input:focus,
.ogc-form-field textarea:focus {
  border-color: var(--ogc-green) !important;
  box-shadow: 0 0 0 3px var(--ogc-green-soft) !important;
}

.ogc-file-field {
  position: relative;
  display: grid;
  grid-template-columns: 43px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  min-height: 82px;
  padding: 15px 17px;
  border: 1px dashed #bfc9c0;
  border-radius: 12px;
  color: var(--ogc-ink);
  background: #fafbfa;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease;
}

.ogc-file-field:hover {
  border-color: var(--ogc-green);
  background: var(--ogc-green-soft);
}

.ogc-file-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.ogc-file-field__icon {
  display: grid;
  width: 43px;
  height: 43px;
  place-items: center;
  border-radius: 11px;
  color: var(--ogc-green);
  background: var(--ogc-green-soft);
}

.ogc-file-field__icon svg {
  width: 23px;
  height: 23px;
}

.ogc-file-field__content {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ogc-file-field__content strong {
  font-size: 13px;
}

.ogc-file-field__content small {
  margin-top: 2px;
  color: var(--ogc-muted);
  font-size: 11px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.ogc-consent {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  color: #687069;
  font-size: 10px;
  line-height: 1.55;
  cursor: pointer;
}

.ogc-consent input {
  width: 18px;
  height: 18px;
  margin: 1px 0 0;
  accent-color: var(--ogc-green);
}

.ogc-consent a {
  color: var(--ogc-green);
  font-weight: 700;
}

.ogc-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.ogc-form-status {
  padding: 12px 14px;
  border: 1px solid var(--ogc-line);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 650;
}

.ogc-form-status.is-success {
  border-color: #b9d8bd;
  color: #235c2b;
  background: #eff8f0;
}

.ogc-form-status.is-error {
  border-color: #ddbbb6;
  color: #7b2e25;
  background: #fff1ef;
}

.ogc-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.ogc-summary-item {
  display: flex;
  gap: 13px;
  min-height: 98px;
  align-items: flex-start;
  padding: 18px;
  border: 1px solid var(--ogc-line);
  border-radius: var(--ogc-card-radius);
  background: #fff;
}

.ogc-summary-item > span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  color: var(--ogc-green);
  background: var(--ogc-green-soft);
}

.ogc-summary-item > span svg {
  width: 21px;
  height: 21px;
}

.ogc-summary-item div {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.ogc-summary-item small {
  color: var(--ogc-muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.ogc-summary-item strong {
  margin-top: 4px;
  overflow-wrap: anywhere;
  font-size: 13px;
  line-height: 1.35;
}

.ogc-included {
  margin-top: 24px;
}

.ogc-included ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.ogc-included li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: #455047;
  font-size: 12px;
}

.ogc-included li svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
  margin-top: 1px;
  color: var(--ogc-green);
  stroke-width: 2.5;
}

.ogc-warning {
  display: block;
  border-color: #ead8a8;
  color: #685323;
  background: var(--ogc-warning);
}

.ogc-warning strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.ogc-summary-actions {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 13px;
  margin-top: 22px;
}

.ogc-button--wide {
  width: 100%;
  min-height: 56px;
}

.ogc-nav--summary {
  margin-top: 22px;
  padding-top: 18px;
}

@media (max-width: 1050px) {
  .ogc-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
  }

  .ogc-choice-grid--two,
  .ogc-choice-grid--roof,
  .ogc-choice-grid--three {
    grid-template-columns: 1fr;
  }

  .ogc-choice-grid--three .ogc-choice {
    grid-template-columns: 44px minmax(0, 1fr) 24px;
    min-height: 126px;
  }

  .ogc-choice-grid--three .ogc-choice__check {
    position: static;
  }

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

  .ogc-color-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  .ogc-container {
    width: min(100% - 32px, 700px);
  }

  .ogc-layout {
    grid-template-columns: 1fr;
  }

  .ogc-sidebar {
    position: static;
  }

  .ogc-price-card {
    padding: 24px;
  }

  .ogc-price-card__divider,
  .ogc-price-card__note {
    margin-top: 18px;
  }

  .ogc-breakdown {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px 20px;
  }

  .ogc-breakdown > div {
    display: block;
  }

  .ogc-breakdown dd {
    margin-top: 2px;
    text-align: left;
  }
}

@media (max-width: 600px) {
  .ogc-container {
    width: min(100% - 24px, 540px);
  }

  .ogc-hero__inner {
    padding-block: 46px 40px;
  }

  .ogc-progress {
    padding-bottom: 17px;
  }

  .ogc-progress__steps small {
    display: none;
  }

  .ogc-progress__track {
    top: 36px;
  }

  .ogc-layout {
    padding-block: 30px 68px;
  }

  .ogc-breakdown,
  .ogc-field-grid,
  .ogc-summary-grid,
  .ogc-included ul,
  .ogc-summary-actions,
  .ogc-final-layout,
  .ogc-form-fields {
    grid-template-columns: 1fr;
  }

  .ogc-swatch-grid {
    grid-template-columns: 1fr;
  }

  .ogc-final-sidebar .ogc-summary-price strong {
    font-size: 34px;
  }

  .ogc-form-card {
    padding: 22px 19px;
  }

  .ogc-choice {
    grid-template-columns: 42px minmax(0, 1fr) 20px;
    min-height: 122px;
    gap: 12px;
    padding: 18px;
  }

  .ogc-choice__icon {
    width: 42px;
    height: 42px;
  }

  .ogc-choice__icon svg {
    width: 25px;
    height: 25px;
  }

  .ogc-nav {
    align-items: stretch;
  }

  .ogc-nav:not(.ogc-nav--summary) .ogc-button {
    flex: 1;
  }

  .ogc-nav--summary {
    flex-wrap: wrap;
  }

  .ogc-summary-price {
    display: block;
  }

  .ogc-summary-price strong {
    display: block;
    margin-top: 7px;
  }

  .ogc-summary-price small {
    display: block;
    margin-top: 7px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ogc *,
  .ogc *::before,
  .ogc *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

.ogc-contact-hint { margin: 0; font-size: 12px; line-height: 1.6; color: #607069; }

.ogc [data-ogc-price] { font-variant-numeric: tabular-nums; }

.ogc .ogc-help { font-size: 12px; line-height: 1.6; color: #607069; }
