.inner-page {
  min-height: 70vh;
  background: var(--cream);
}

.inner-hero {
  position: relative;
  overflow: hidden;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  padding: 150px var(--page-gutter) 86px;
  background: var(--green-deep);
  color: white;
}

.inner-hero::before {
  content: '';
  position: absolute;
  left: var(--page-gutter);
  bottom: 0;
  width: min(280px, 34vw);
  height: 5px;
  background: var(--green-accent);
}

.inner-hero::after {
  content: '';
  position: absolute;
  top: -180px;
  right: -120px;
  width: 440px;
  height: 440px;
  border: 1px solid rgba(58,184,106,0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(58,184,106,0.04), 0 0 0 140px rgba(58,184,106,0.03);
}

.inner-hero-content,
.inner-shell {
  width: min(var(--content-default), 100%);
  margin-inline: auto;
}

.inner-hero-content {
  position: relative;
  z-index: 1;
}

.page-eyebrow {
  margin-bottom: 18px;
  color: var(--green-accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.inner-hero h1 {
  max-width: 980px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  line-height: 1.05;
}

.inner-hero-lead {
  max-width: 720px;
  margin-top: 28px;
  color: rgba(255,255,255,0.72);
  font-size: clamp(1rem, 2vw, 1.16rem);
  font-weight: 300;
  line-height: 1.75;
}

.inner-section {
  padding: 96px var(--page-gutter);
}

.inner-section--white { background: white; }
.inner-section--dark { background: var(--green-deep); color: white; }

.inner-title {
  max-width: 760px;
  margin-bottom: 20px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--green-deep);
}

.inner-section--dark .inner-title { color: white; }

.inner-lead {
  max-width: 720px;
  color: var(--steel);
  font-size: 1.02rem;
  line-height: 1.75;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 46px;
  background: var(--border);
  border: 1px solid var(--border);
}

.info-card {
  position: relative;
  padding: clamp(28px, 4vw, 42px);
  background: white;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 76px;
  height: 3px;
  background: var(--green-accent);
}

.info-card-number {
  margin-bottom: 18px;
  color: var(--green-accent);
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 700;
}

.info-card h2,
.info-card h3 {
  margin-bottom: 12px;
  color: var(--green-deep);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
}

.info-card p,
.info-card li {
  color: var(--steel);
  line-height: 1.7;
}

.info-card ul { padding-left: 20px; }
.info-card li + li { margin-top: 8px; }

.source-note,
.form-note,
.example-disclaimer {
  margin-top: 34px;
  padding: 20px 22px;
  border-left: 4px solid var(--green-accent);
  background: white;
  color: var(--steel);
  line-height: 1.7;
}

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

.inner-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 56px;
  background: var(--green-deep);
  box-shadow: var(--shadow-soft);
}

.inner-cta h2 {
  max-width: 680px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.7rem, 3.5vw, 2.7rem);
  line-height: 1.2;
}

.inner-button {
  display: inline-flex;
  justify-content: center;
  padding: 16px 28px;
  border: 0;
  border-radius: 2px;
  background: var(--green-accent);
  color: white;
  cursor: pointer;
  font: 700 0.86rem 'Inter', sans-serif;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 0.2s ease;
}

.inner-button:hover,
.inner-button:focus-visible { background: #2fa05a; }
.inner-button:disabled { cursor: not-allowed; opacity: 0.52; }

.selector-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(36px, 7vw, 84px);
  align-items: start;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.contact-hero {
  min-height: 480px;
  padding-top: 120px;
  padding-bottom: 55px;
  padding-bottom: 64px;
  background:
    radial-gradient(circle at 92% 18%, rgba(58,184,106,0.08) 0 150px, transparent 151px),
    linear-gradient(120deg, #153725 0%, var(--green-deep) 58%, #103321 100%);
}

.contact-hero::before {
  width: 0;
}

.contact-hero::after {
  top: -270px;
  right: -70px;
  width: 540px;
  height: 540px;
  border-width: 60px;
  border-color: rgba(58,184,106,0.06);
  box-shadow: none;
}

.contact-hero .inner-hero-content {
  width: min(var(--content-wide), 100%);
}

.contact-hero h1 {
  max-width: 760px;
  font-size: clamp(2.7rem, 4.3vw, 4rem);
}

.contact-section {
  background:
    radial-gradient(circle at 18% 10%, rgba(58,184,106,0.04), transparent 28%),
    var(--cream);
}

.contact-section .inner-shell {
  width: min(var(--content-wide), 100%);
}

.contact-layout {
  grid-template-columns: minmax(0, 1.65fr) minmax(330px, 0.95fr);
  gap: clamp(36px, 4vw, 56px);
}

.selector-form,
.contact-form-page {
  padding: clamp(28px, 4vw, 42px);
  background: white;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.contact-form-page {
  padding: clamp(30px, 4vw, 48px);
}

.form-section-heading {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 28px;
}

.form-section-heading h2,
.form-subheading {
  color: var(--green-accent);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-step {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--green-accent);
  color: white;
  font-size: 0.82rem;
  font-weight: 700;
}

.form-divider {
  height: 1px;
  margin: 30px 0;
  background: var(--border);
}

.form-subheading {
  margin-bottom: 24px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-page > .form-field {
  margin: 0 0 30px;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}

.form-field--full { grid-column: 1 / -1; }

.form-field label,
.form-legend {
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #f6f5f2;
  color: var(--charcoal);
  font: 0.92rem 'Inter', sans-serif;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #7c827d;
  opacity: 1;
}

.form-field textarea {
  min-height: 150px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-accent);
  outline: 3px solid rgba(58,184,106,0.16);
  background: white;
}

.field-help {
  color: var(--steel);
  font-size: 0.78rem;
  line-height: 1.55;
}

.required-mark { color: #9b2c2c; }

.field-help--flash {
  color: #c53030;
  font-weight: 700;
  animation: pulse 0.6s ease-in-out 3;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.35; }
}

.choice-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.choice-option {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.5;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--cream);
  cursor: pointer;
}

.choice-option:has(input:checked) {
  border-color: var(--green-accent);
  background: rgba(58,184,106,0.05);
  color: var(--green-deep);
}

.choice-option input {
  width: 18px;
  height: 18px;
  accent-color: var(--green-deep);
}

.textarea-wrap {
  position: relative;
}

.textarea-wrap textarea {
  padding-bottom: 36px;
}

.message-counter {
  position: absolute;
  right: 14px;
  bottom: 12px;
  color: var(--light-steel);
  font-size: 0.72rem;
}

.form-privacy-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin: 34px 0 22px;
  padding: 18px 18px 18px 14px;
  border-left: 4px solid var(--green-accent);
  background: rgba(58,184,106,0.04);
  color: var(--steel);
  font-size: 0.82rem;
  line-height: 1.65;
}

.form-privacy-note a {
  color: var(--green-deep);
  font-weight: 700;
}

.privacy-icon,
.aside-kicker-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: rgba(58,184,106,0.14);
  color: var(--green-accent);
  font-weight: 700;
}

.privacy-icon {
  width: 34px;
  height: 34px;
}

.example-result {
  min-height: 100%;
  padding: clamp(30px, 5vw, 52px);
  background: var(--green-deep);
  color: white;
  box-shadow: var(--shadow-soft);
}

.result-kicker {
  margin-bottom: 14px;
  color: var(--green-accent);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.example-result h2 {
  margin-bottom: 18px;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  line-height: 1.15;
}

.result-summary {
  color: rgba(255,255,255,0.72);
  line-height: 1.75;
}

.result-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0;
  background: rgba(255,255,255,0.12);
}

.result-stat {
  position: relative;
  padding: 36px 28px;
  background: rgba(255,255,255,0.04);
}

.result-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--green-accent);
}

.result-stat strong {
  display: block;
  margin-bottom: 7px;
  color: white;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
}

.result-stat span {
  color: rgba(255,255,255,0.72);
  font-size: 0.8rem;
  line-height: 1.5;
}

.result-details {
  padding-left: 20px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.result-details li + li { margin-top: 8px; }

.example-result .inner-button {
  margin-top: 34px;
}

.contact-aside {
  position: sticky;
  top: 98px;
}

.contact-aside-card {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(145deg, var(--green-deep), #0f4a2f);
  color: white;
  box-shadow: var(--shadow-soft);
}

@media (min-width: 1101px) {
  .contact-aside-card {
    min-height: 820px;
  }
}

.contact-aside-card::after {
  content: '';
  position: absolute;
  right: 22px;
  bottom: 22px;
  width: 100px;
  height: 70px;
  opacity: 0.18;
  background-image: radial-gradient(circle, var(--green-accent) 1.5px, transparent 1.5px);
  background-size: 12px 12px;
}

.aside-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.aside-kicker .page-eyebrow {
  margin-bottom: 0;
}

.aside-kicker-icon {
  width: 42px;
  height: 42px;
  font-size: 1rem;
}

.contact-aside-card h2 {
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
}

.contact-aside-card p,
.contact-aside-card li {
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

.contact-aside-card ul {
  margin-top: 28px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(58,184,106,0.42);
  list-style: none;
}

.contact-aside-card li {
  position: relative;
  min-height: 42px;
  padding-left: 58px;
}

.contact-aside-card li::before {
  content: '✓';
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: white;
}

.contact-aside-card li + li { margin-top: 24px; }

.contact-form-page .inner-button:disabled {
  background: var(--green-accent);
  opacity: 0.58;
}

.contact-form-page .inner-button {
  margin-top: 28px;
}

.form-status {
  margin-top: 18px;
  color: var(--steel);
  font-size: 0.84rem;
  line-height: 1.6;
}

@media (max-width: 1100px) {
  .selector-panel,
  .contact-layout { grid-template-columns: 1fr; }
  .contact-aside { position: static; }
}

@media (max-width: 900px) {
  .info-grid { grid-template-columns: 1fr; }
  .inner-cta { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 600px) {
  .inner-hero {
    min-height: 450px;
    padding-top: 118px;
    padding-bottom: 62px;
  }

  .inner-hero h1 {
    font-size: clamp(2.15rem, 11vw, 3rem);
    line-height: 1.06;
  }

  .inner-hero-lead {
    margin-top: 22px;
    font-size: 0.96rem;
    line-height: 1.65;
  }

  .inner-section { padding-block: 64px; }
  .form-grid,
  .result-stats { grid-template-columns: 1fr; }
  .inner-cta { padding: 36px 26px; }
  .inner-button { width: 100%; }

  .selector-form,
  .contact-form-page,
  .example-result,
  .contact-aside-card {
    padding: 28px 22px;
  }

  .choice-group {
    display: grid;
    grid-template-columns: 1fr;
  }

  .choice-option {
    width: 100%;
    justify-content: flex-start;
  }

  .contact-hero {
    min-height: 430px;
  }

  .contact-hero h1 br {
    display: none;
  }

}

/* ROI BLOCK */
.roi-block { margin-top: 64px; }

.roi-eyebrow {
  max-width: 760px;
  margin-bottom: 60px;
}

.roi-eyebrow strong {
  color: var(--green-deep);
  font-weight: 600;
}

.roi-layout {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 0;
  background: white;
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
}

.roi-col { padding: 44px 40px 40px; }
.roi-before { border-right: 1px solid var(--border); }
.roi-after { border-left: 1px solid var(--border); }

.roi-col-header { margin-bottom: 32px; }

.roi-badge {
  display: block;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.roi-badge--red { color: #c53030; }
.roi-badge--green { color: var(--green-accent); }

.roi-lines { display: flex; flex-direction: column; }

.roi-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  gap: 16px;
}

.roi-line:last-child { border-bottom: none; }

.roi-line--total {
  padding-top: 20px;
  margin-top: 6px;
}

.roi-line-label {
  font-size: 0.87rem;
  color: var(--steel);
  font-weight: 300;
  line-height: 1.4;
}

.roi-line-value {
  font-size: 0.92rem;
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

.roi-line--total .roi-line-label { font-weight: 600; color: var(--charcoal); }
.roi-line--total .roi-line-value { font-size: 1.05rem; font-weight: 700; }

.roi-line-value.neg { color: #c53030; }
.roi-line-value.pos { color: #276749; }

.roi-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-deep);
}

.roi-arrow-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: white;
  text-align: center;
}

.roi-arrow-inner svg { width: 28px; height: 28px; fill: var(--green-accent); }

.roi-arrow-inner span {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  line-height: 1.4;
}

.roi-result {
  background: var(--green-deep);
  padding: 40px 48px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
  border-radius: 0 0 2px 2px;
}

.roi-result-left,
.roi-result-center,
.roi-result-right {
  flex: 1;
  padding: 0 40px;
}

.roi-result-left { padding-left: 0; }

.roi-result-label {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: 8px;
}

.roi-result-amount {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green-accent);
  line-height: 1;
  margin-bottom: 6px;
}

.roi-result-sub {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

.roi-divider {
  width: 1px;
  height: 70px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

.roi-cta {
  display: inline-block;
  background: var(--green-accent);
  color: white;
  padding: 16px 28px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  border-radius: 2px;
  transition: background 0.2s;
  white-space: nowrap;
  margin-left: auto;
  flex-shrink: 0;
}

.roi-cta:hover { background: #2fa05a; }

.roi-disclaimer {
  font-size: 0.82rem;
  color: var(--steel);
  margin-top: 20px;
  padding: 18px 20px;
  border-left: 4px solid var(--green-accent);
  background: white;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .roi-layout { grid-template-columns: 1fr; }
  .roi-before { border-right: 0; }
  .roi-after { border-top: 1px solid var(--border); border-left: 0; }
  .roi-col { padding: 36px clamp(22px, 6vw, 36px); }
  .roi-line {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
  }
  .roi-line-value { text-align: right; }
  .roi-arrow { min-height: 72px; padding: 14px 20px; }
  .roi-arrow-inner { flex-direction: row; gap: 14px; }
  .roi-arrow-inner svg { transform: rotate(90deg); }
  .roi-result { display: grid; grid-template-columns: 1fr; padding: 0; }
  .roi-result-left,
  .roi-result-center,
  .roi-result-right { padding: 28px clamp(24px, 7vw, 36px); }
  .roi-result-left { padding-left: clamp(24px, 7vw, 36px); }
  .roi-divider { width: 100%; height: 1px; }
  .roi-result-label { color: rgba(255,255,255,0.62); }
  .roi-result-sub { color: rgba(255,255,255,0.55); line-height: 1.55; }
  .roi-cta {
    width: auto;
    margin: 4px clamp(24px, 7vw, 36px) 30px;
    text-align: center;
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .roi-eyebrow { margin-bottom: 42px; }
  .roi-col { padding: 34px 24px 30px; }
  .roi-line {
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
  }
  .roi-line-value { white-space: normal; }
  .roi-result-amount { font-size: 1.9rem; }
  .roi-cta { white-space: normal; }
}
