:root {
  --color-paper: #fbfbfb;
  --color-white: #fdfdfd;
  --color-cream: #f4f3f2;
  --color-evergreen: #04281b;
  --color-green: #1c3d2b;
  --color-muted: #b0b0a3;
  --color-gold: #c8840a;
  --color-gold-light: #e0a321;
  --color-border: #dfddd8;
  --font-heading: "DM Serif Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
  --shadow-soft: 0 14px 34px rgba(4, 40, 27, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  margin: 0;
  overflow-x: hidden;
  color: var(--color-evergreen);
  background: var(--color-paper);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

main {
  flex: 1;
}

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

svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--color-gold-light);
  outline-offset: 4px;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.12;
}

h2 {
  margin-bottom: 36px;
  font-size: clamp(2rem, 3.1vw, 2.5rem);
  text-align: center;
}

h3 {
  font-size: 1.2rem;
}

.container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 24px;
  border: 1px solid var(--color-evergreen);
  border-radius: 7px;
  color: var(--color-white);
  background: var(--color-evergreen);
  box-shadow: 0 7px 15px rgba(4, 40, 27, 0.18);
  font-size: 15px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--color-green);
  box-shadow: 0 10px 22px rgba(4, 40, 27, 0.22);
}

.button svg {
  width: 19px;
  height: 19px;
}

.button-small {
  min-height: 44px;
  padding: 10px 20px;
}

.button-gold {
  border-color: var(--color-gold);
  background: var(--color-gold);
}

.button-gold:hover {
  background: #a96d04;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid #e8e6e2;
  background: rgba(253, 253, 253, 0.98);
}

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

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 255px;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(18px, 2.4vw, 32px);
  font-size: 15px;
  font-weight: 600;
}

.primary-nav > a:not(.button) {
  position: relative;
  padding-block: 28px;
  white-space: nowrap;
}

.primary-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.primary-nav > a:not(.button):hover::after,
.primary-nav > a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 40%, rgba(200, 132, 10, 0.08), transparent 18%),
    linear-gradient(115deg, #ffffff 0%, #fbfbfa 60%, #f4f3f2 100%);
}

.hero-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.25fr);
  align-items: center;
  gap: 48px;
  padding-block: 42px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.eyebrow {
  width: fit-content;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 14px;
  padding: 5px 12px;
  border: 1px solid #8a9b91;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.eyebrow svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  margin-bottom: 20px;
  color: var(--color-evergreen);
  font-size: clamp(2.75rem, 4.7vw, 4rem);
}

.hero h1 span,
.connected h2 span {
  color: var(--color-gold);
}

.hero-intro {
  max-width: 640px;
  margin-bottom: 28px;
  color: #26372f;
  font-size: 17px;
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 26px;
}

.tour-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.play-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-green);
  border-radius: 50%;
}

.play-icon svg {
  width: 17px;
  height: 17px;
}

.hero-product {
  position: relative;
}

.hero-product::before {
  position: absolute;
  inset: 8% -5% -8% 8%;
  z-index: -1;
  border-radius: 50%;
  content: "";
  background: rgba(28, 61, 43, 0.08);
  filter: blur(30px);
}

.hero-product img {
  width: 100%;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.workflow {
  padding: 72px 0 66px;
  border-top: 1px solid #ebe9e5;
  background: var(--color-white);
}

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

.workflow-item {
  position: relative;
  text-align: center;
}

.workflow-item:not(:last-child)::after {
  position: absolute;
  top: 50px;
  left: calc(50% + 42px);
  width: calc(100% - 60px);
  border-top: 1px dashed #547064;
  content: "";
}

.step {
  position: relative;
  z-index: 2;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  margin: 0 auto -8px;
  border-radius: 50%;
  color: white;
  background: var(--color-evergreen);
  font-size: 13px;
  font-weight: 700;
}

.workflow-icon {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  margin: 0 auto 16px;
  border: 1px solid #ded8cd;
  border-radius: 50%;
  background: white;
}

.workflow-icon img {
  width: 42px;
  max-height: 42px;
  object-fit: contain;
}

.workflow-item h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.workflow-item p {
  margin-bottom: 0;
  color: #435249;
  font-size: 14px;
  line-height: 1.45;
}

.modules {
  padding: 26px 0 78px;
  background: var(--color-white);
}

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

.module-card {
  min-height: 205px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 28px 18px 22px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.module-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-soft);
}

.module-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  margin-bottom: 15px;
  color: var(--color-evergreen);
}

.module-icon img,
.module-icon svg {
  max-width: 44px;
  max-height: 44px;
}

.module-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
}

.module-card p {
  margin-bottom: 0;
  color: #4c5952;
  font-size: 14px;
}

.results {
  position: relative;
  overflow: hidden;
  padding: 62px 0;
  color: white;
  background:
    radial-gradient(circle at 5% 18%, rgba(224, 163, 33, 0.65) 0 2px, transparent 3px),
    radial-gradient(circle at 91% 23%, rgba(224, 163, 33, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 85%, rgba(224, 163, 33, 0.7) 0 1px, transparent 3px),
    linear-gradient(110deg, #063f2c, #003524 70%, #064331);
  background-size: 180px 160px, 220px 190px, 250px 220px, auto;
}

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

.result-card {
  min-width: 0;
  padding: 0 34px;
  text-align: center;
}

.result-card + .result-card {
  border-left: 1px solid rgba(224, 163, 33, 0.65);
}

.result-number {
  margin-bottom: 4px;
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  line-height: 1;
}

.result-label {
  max-width: 190px;
  min-height: 48px;
  margin: 0 auto 10px;
  font-size: 15px;
  line-height: 1.35;
}

.rating {
  width: 82px;
  margin: 0 auto 14px;
}

.result-card blockquote {
  margin-bottom: 7px;
  font-size: 14px;
  line-height: 1.45;
}

.result-card cite {
  color: #e4e7e5;
  font-size: 13px;
  font-style: normal;
}

.connected {
  padding: 76px 0 70px;
  background: var(--color-white);
}

.connected-grid {
  display: grid;
  grid-template-columns: 0.82fr 1.35fr;
  align-items: center;
  gap: 60px;
}

.connected h2 {
  margin-bottom: 14px;
  text-align: left;
}

.connected-copy > p {
  margin-bottom: 22px;
  color: #46554d;
}

.check-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 15px;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
}

.check-list svg {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;
  margin-top: 2px;
}

.network {
  display: grid;
  grid-template-columns: 145px 1fr 142px 1fr 160px;
  align-items: center;
  gap: 8px;
}

.network-column {
  display: grid;
  gap: 12px;
}

.network-column span {
  padding: 8px 12px;
  border: 1px solid #d8d8d2;
  border-radius: 999px;
  background: white;
  box-shadow: 0 3px 8px rgba(4, 40, 27, 0.05);
  font-size: 13px;
  text-align: center;
}

.network-lines {
  height: 145px;
  background: repeating-linear-gradient(to bottom, transparent 0 17px, #7f958b 18px 19px, transparent 20px 36px);
  clip-path: polygon(0 0, 100% 27%, 100% 73%, 0 100%);
  opacity: 0.8;
}

.network-lines.reverse {
  transform: scaleX(-1);
}

.network-badge {
  width: 142px;
  filter: drop-shadow(0 10px 12px rgba(4, 40, 27, 0.2));
}

.platform-action {
  padding: 0 0 72px;
  background: var(--color-white);
}

.platform-action h2 {
  margin-bottom: 24px;
}

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

.action-grid figure {
  margin-bottom: 0;
}

.action-grid img {
  width: 100%;
  aspect-ratio: 2.55 / 1;
  object-fit: cover;
  border: 1px solid #d7dbd8;
  border-radius: 7px;
  box-shadow: 0 6px 12px rgba(4, 40, 27, 0.14);
}

.action-grid figcaption {
  padding-top: 10px;
  font-size: 14px;
  font-weight: 600;
  text-align: center;
}

.case-study {
  padding: 46px 0;
  border-top: 1px solid #e6e3de;
  background: linear-gradient(110deg, #fbfaf8, #fff);
}

.case-study-inner {
  display: grid;
  grid-template-columns: 150px minmax(0, 1fr) 170px;
  align-items: center;
  gap: 34px;
}

.portrait {
  width: 150px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}

.customer-quote {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.quote-mark {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  color: var(--color-gold);
  fill: currentColor;
  stroke: none;
}

.customer-quote blockquote {
  margin-bottom: 7px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.45;
}

.customer-quote cite {
  font-size: 13px;
  font-style: normal;
}

.customer-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 30px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.customer-logo {
  width: 160px;
  justify-self: end;
}

.closing-cta {
  padding: 28px 0;
  color: white;
  background: linear-gradient(105deg, #00452f, #003423);
}

.cta-inner {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
}

.cta-inner > img {
  width: 56px;
}

.cta-copy h2 {
  margin-bottom: 4px;
  color: white;
  font-size: 28px;
  text-align: left;
}

.cta-copy p,
.cta-action p {
  margin-bottom: 0;
}

.cta-copy p {
  max-width: 600px;
  color: #e0e9e4;
  font-size: 14px;
}

.cta-action {
  text-align: center;
}

.cta-action p {
  margin-top: 7px;
  color: #dfe7e3;
  font-size: 13px;
}

.site-footer {
  color: #dbe3df;
  background: #022b1e;
}

.footer-inner {
  min-height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 10px;
  font-size: 13px;
}

.footer-inner a {
  color: white;
  font-family: var(--font-heading);
  font-size: 17px;
}

.footer-inner p {
  margin-bottom: 0;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 1100px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 14px;
  }

  .primary-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 22px;
  }

  .primary-nav > a:not(.button) {
    padding-block: 8px;
  }

  .primary-nav > a:not(.button)::after {
    bottom: 2px;
  }

  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }

  .workflow-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 24px;
  }

  .workflow-item::after {
    visibility: hidden;
  }

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

  .connected-grid {
    grid-template-columns: 1fr;
  }

  .network {
    max-width: 760px;
    width: 100%;
    margin-inline: auto;
  }
}

@media (max-width: 850px) {
  .hero-grid {
    grid-template-columns: 1fr;
    padding-block: 64px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-product {
    width: 100%;
  }

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

  .result-card {
    padding: 28px;
  }

  .result-card + .result-card {
    border-left: 0;
  }

  .result-card:nth-child(even) {
    border-left: 1px solid rgba(224, 163, 33, 0.65);
  }

  .result-card:nth-child(n + 3) {
    border-top: 1px solid rgba(224, 163, 33, 0.65);
  }

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

  .case-study-inner {
    grid-template-columns: 120px 1fr;
  }

  .portrait {
    width: 120px;
  }

  .customer-logo {
    grid-column: 2;
    justify-self: start;
  }

  .cta-inner {
    grid-template-columns: 56px 1fr;
  }

  .cta-action {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 28px, 1200px);
  }

  h2 {
    margin-bottom: 28px;
    font-size: 2rem;
  }

  .brand img {
    width: 220px;
  }

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

  .primary-nav .button {
    grid-column: 1 / -1;
  }

  .hero-grid {
    min-height: auto;
    padding-block: 52px;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .tour-link {
    justify-content: center;
  }

  .workflow {
    padding-block: 58px;
  }

  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .workflow-item p {
    max-width: 330px;
    margin-inline: auto;
  }

  .modules {
    padding-bottom: 58px;
  }

  .module-grid,
  .results-grid,
  .action-grid {
    grid-template-columns: 1fr;
  }

  .module-card {
    min-height: 0;
  }

  .result-card:nth-child(even) {
    border-left: 0;
  }

  .result-card + .result-card {
    border-top: 1px solid rgba(224, 163, 33, 0.65);
  }

  .connected {
    padding-block: 58px;
  }

  .network {
    grid-template-columns: 1fr 108px 1fr;
    gap: 12px;
  }

  .network-lines {
    display: none;
  }

  .network-badge {
    width: 108px;
  }

  .network-column span {
    padding: 7px 6px;
    font-size: 11px;
  }

  .platform-action {
    padding-bottom: 58px;
  }

  .case-study-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .portrait,
  .customer-logo {
    justify-self: center;
  }

  .customer-logo {
    grid-column: auto;
  }

  .customer-quote {
    flex-direction: column;
    align-items: center;
  }

  .customer-stats {
    justify-content: center;
  }

  .cta-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta-inner > img,
  .cta-action {
    grid-column: auto;
    justify-self: center;
  }

  .cta-copy h2 {
    text-align: center;
  }

  .cta-action {
    text-align: center;
  }

  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
.proposal-page {
  background: var(--color-white);
}

.proposal-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 6% 46%, rgba(200, 132, 10, 0.08), transparent 21%),
    linear-gradient(115deg, #fff 0%, #fbfbfa 58%, #f1f2f0 100%);
}

.proposal-hero::after {
  position: absolute;
  right: 3%;
  bottom: 3%;
  width: 48%;
  height: 18%;
  border-radius: 50%;
  content: "";
  background: rgba(4, 40, 27, 0.12);
  filter: blur(38px);
}

.proposal-hero-branch { position:absolute; top:30px; left:-8px; width:68px; height:auto; z-index:0; opacity:0.92; pointer-events:none; }

.proposal-hero-grid {
  min-height: 540px;
  display: grid;
  grid-template-columns: minmax(420px, 0.9fr) minmax(560px, 1.2fr);
  align-items: center;
  gap: 40px;
  padding-block: 44px 40px;
}

.proposal-hero-copy,
.proposal-device {
  position: relative;
  z-index: 3;
}

.proposal-kicker {
  margin-bottom: 14px;
  color: var(--color-gold);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proposal-hero h1 {
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 3.6vw, 3.35rem);
  letter-spacing: -0.02em;
}

.proposal-hero h1 span {
  color: var(--color-gold);
}

.proposal-hero-intro {
  max-width: 470px;
  margin-bottom: 26px;
  color: #35463d;
  font-size: 16px;
  line-height: 1.6;
}

.proposal-capabilities {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px 10px;
  max-width: 460px;
  margin-bottom: 28px;
}

.proposal-capability {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 9px;
  color: #263b31;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}

.proposal-capability img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.proposal-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 28px;
}

.proposal-tour-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
}

.proposal-tour-link span {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border: 1px solid var(--color-evergreen);
  border-radius: 50%;
}

.proposal-tour-link svg {
  width: 15px;
  height: 15px;
}

.proposal-device {
  margin: 0 -35px 0 0;
}

.proposal-device img {
  width: 100%;
  filter: drop-shadow(0 22px 22px rgba(4, 40, 27, 0.18));
}

.proposal-feature-section {
  padding: 66px 0 62px;
  border-top: 1px solid #e9e6e1;
  background: #fff;
}

.proposal-feature-section h2 {
  margin-bottom: 40px;
  font-size: clamp(1.7rem, 2.2vw, 2rem);
}

.proposal-feature-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
}

.proposal-feature-card {
  min-width: 0;
  padding: 16px 16px 24px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 8px 24px rgba(4, 40, 27, 0.035);
}

.proposal-feature-visual {
  height: 150px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: 6px;
  background: linear-gradient(145deg, #f8f8f6, #fff);
}

.proposal-feature-visual img {
  max-width: 96%;
  max-height: 132px;
  object-fit: contain;
  box-shadow: 0 6px 16px rgba(4, 40, 27, 0.08);
}

.proposal-feature-card h3,
.proposal-utility-card h3 {
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.proposal-feature-card p,
.proposal-utility-card p {
  margin-bottom: 0;
  color: #4b5952;
  font-size: 13.5px;
  line-height: 1.5;
}

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

.proposal-utility-card {
  min-height: 120px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 22px 20px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: #fff;
}

.proposal-utility-card > img {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  object-fit: contain;
}

.proposal-experience-section {
  padding: 64px 0 66px;
  border-top: 1px solid #ebe8e3;
  background: linear-gradient(120deg, #fbfaf8, #fff 58%, #f8f8f6);
}

.proposal-experience-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 64px;
}

.proposal-experience-grid h2 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.1vw, 1.9rem);
  text-align: left;
}

.proposal-section-intro {
  max-width: 620px;
  margin-bottom: 26px;
  color: #46554d;
  font-size: 15px;
}

.proposal-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  justify-items: stretch;
  gap: 14px;
}

.proposal-example-grid figure {
  margin: 0;
  width: 100%;
}

.proposal-example-grid img {
  width: 100%;
  height: 210px;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
  box-shadow: 0 12px 24px rgba(4, 40, 27, 0.16);
}

.proposal-example-grid figcaption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.proposal-outline-link {
  width: fit-content;
  min-height: 46px;
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 30px auto 0;
  padding: 10px 24px;
  border: 1px solid #819087;
  border-radius: 6px;
  background: white;
  font-size: 15px;
  font-weight: 700;
}

.proposal-outline-link svg {
  width: 18px;
  height: 18px;
}

.proposal-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 24px;
  margin: 0;
  padding: 0 0 54px;
  border-bottom: 1px solid var(--color-border);
  list-style: none;
}

.proposal-steps li {
  position: relative;
  text-align: center;
}

.proposal-steps li:not(:last-child)::after {
  position: absolute;
  top: 24px;
  right: -16px;
  content: "→";
  color: #8a9890;
  font-size: 22px;
}

.proposal-step-icon {
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border: 1px solid #e4dccb;
  border-radius: 50%;
  color: #2a3b32;
  background: #faf7f0;
}

.proposal-step-icon svg {
  width: 34px;
  height: 34px;
  stroke-width: 1.7;
}

.proposal-step-icon .proposal-step-accent {
  stroke: var(--color-gold);
  stroke-width: 2;
}

.proposal-steps > li > span:last-child {
  display: block;
  color: #2b3c33;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.35;
}

.proposal-integrations {
  padding-top: 50px;
}

.proposal-integration-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 20px;
}

.proposal-integration-grid article {
  min-width: 0;
}

.proposal-integration-grid img,
.proposal-integration-grid article > svg {
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  object-fit: contain;
}

.proposal-integration-grid h3 {
  margin-bottom: 7px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
}

.proposal-integration-grid p {
  margin-bottom: 0;
  color: #4c5952;
  font-size: 13px;
  line-height: 1.5;
}

.proposal-zapier > svg {
  color: #f26d21;
  stroke-width: 3;
}

.proposal-testimonial {
  position: relative;
  overflow: hidden;
  padding: 70px 0;
  color: white;
  background:
    radial-gradient(circle at 7% 18%, rgba(224,163,33,.8) 0 2px, transparent 3px),
    radial-gradient(circle at 88% 30%, rgba(224,163,33,.75) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 87%, rgba(224,163,33,.7) 0 1px, transparent 3px),
    linear-gradient(110deg, #00452f, #003322 70%, #064431);
  background-size: 180px 150px, 230px 180px, 250px 220px, auto;
}

.proposal-testimonial-grid {
  display: grid;
  grid-template-columns: 180px minmax(330px, 1.25fr) minmax(440px, 1fr);
  align-items: center;
  gap: 34px;
}

.proposal-testimonial-portrait {
  width: 180px;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 4px solid rgba(224, 163, 33, 0.6);
}

.proposal-testimonial-quote {
  position: relative;
  padding-left: 58px;
}

.proposal-quote-mark {
  position: absolute;
  top: 0;
  left: 0;
  width: 42px;
  height: 42px;
  color: var(--color-gold-light);
  fill: currentColor;
  stroke: none;
}

.proposal-testimonial blockquote {
  margin-bottom: 12px;
  font-family: var(--font-heading);
  font-size: 20px;
  line-height: 1.5;
}

.proposal-testimonial cite {
  color: #dce6e1;
  font-size: 14px;
  font-style: normal;
}

.proposal-customer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
  margin: 20px 0 0;
  padding: 0;
  color: #e6ede9;
  font-size: 13px;
  list-style: none;
}

.proposal-customer-details li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.proposal-customer-details svg {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  color: #eef3f0;
  stroke-width: 1.7;
}

.proposal-results {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-left: 1px solid rgba(224, 163, 33, 0.65);
}

.proposal-results article {
  padding: 8px 18px;
  text-align: center;
}

.proposal-results strong {
  display: block;
  margin-bottom: 7px;
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 400;
  line-height: 1;
}

.proposal-results span {
  min-height: 57px;
  display: block;
  font-size: 14px;
  line-height: 1.35;
}

.proposal-results div {
  margin-top: 12px;
  color: var(--color-gold-light);
  font-size: 15px;
  letter-spacing: 0.12em;
}

.proposal-final-cta {
  position: relative;
  overflow: hidden;
  padding: 64px 0 68px;
  background: linear-gradient(105deg, #f7f3ed, #fff 48%, #f4f1eb);
}

.proposal-cta-branch {
  position: absolute;
  bottom: 0;
  width: clamp(100px, 13vw, 190px);
  max-height: 100%;
  object-fit: contain;
  pointer-events: none;
}

.proposal-cta-branch-left { left: 0; object-position: left bottom; }
.proposal-cta-branch-right { right: 0; object-position: right bottom; }

.proposal-cta-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding-inline: clamp(70px, 9vw, 130px);
}

.proposal-calendar {
  width: 78px;
}

.proposal-cta-grid h2 {
  margin-bottom: 8px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  text-align: left;
}

.proposal-cta-grid > div > p {
  margin-bottom: 0;
  color: #45544c;
  font-size: 17px;
}

.proposal-cta-action {
  text-align: center;
}

.proposal-cta-action p {
  margin-top: 10px;
  font-size: 13px !important;
}

@media (max-width: 1100px) {
  .proposal-hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .proposal-experience-grid {
    grid-template-columns: 1fr;
  }

  .proposal-testimonial-grid {
    grid-template-columns: 150px 1fr;
  }

  .proposal-testimonial-portrait {
    width: 150px;
  }

  .proposal-results {
    grid-column: 1 / -1;
    border-top: 1px solid rgba(224, 163, 33, 0.65);
    border-left: 0;
    padding-top: 28px;
  }

  .proposal-cta-grid {
    padding-inline: 80px;
  }
}

@media (max-width: 850px) {
  .proposal-hero-grid {
    grid-template-columns: 1fr;
    padding-block: 72px;
  }

  .proposal-device {
    margin-right: 0;
  }

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

  .proposal-cta-grid {
    grid-template-columns: 70px 1fr;
    padding-inline: 60px;
  }

  .proposal-cta-action {
    grid-column: 2;
    justify-self: start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  .proposal-hero-branch {
    opacity: 0.45;
  }

  .proposal-hero-grid {
    min-height: auto;
    padding-block: 60px;
  }

  .proposal-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.45rem);
  }

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

  .proposal-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .proposal-tour-link {
    justify-content: center;
  }

  .proposal-feature-section,
  .proposal-experience-section {
    padding-block: 72px;
  }

  .proposal-feature-grid,
  .proposal-utility-grid,
  .proposal-example-grid {
    grid-template-columns: 1fr;
  }

  .proposal-feature-visual {
    height: 210px;
  }

  .proposal-feature-visual img {
    max-height: 190px;
  }

  .proposal-example-grid img {
    max-height: 560px;
  }

  .proposal-steps {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .proposal-steps li:not(:last-child)::after {
    display: none;
  }

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

  .proposal-testimonial-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .proposal-testimonial-portrait {
    justify-self: center;
  }

  .proposal-testimonial-quote {
    padding: 54px 0 0;
  }

  .proposal-quote-mark {
    right: 0;
    margin-inline: auto;
  }

  .proposal-customer-details {
    justify-content: center;
  }

  .proposal-results {
    grid-template-columns: 1fr;
  }

  .proposal-results article + article {
    margin-top: 24px;
    padding-top: 28px;
    border-top: 1px solid rgba(224, 163, 33, 0.45);
  }

  .proposal-results span {
    min-height: 0;
  }

  .proposal-final-cta {
    padding-block: 72px;
  }

  .proposal-cta-grid {
    grid-template-columns: 1fr;
    padding-inline: 32px;
    text-align: center;
  }

  .proposal-calendar,
  .proposal-cta-action {
    grid-column: auto;
    justify-self: center;
  }

  .proposal-cta-grid h2,
  .proposal-cta-action {
    text-align: center;
  }

  .proposal-cta-branch {
    opacity: 0.55;
  }
}
/* === hero consistency: match mockups (H1 ~43px + pine) === */
[class*="hero"] h1 { font-size: clamp(2.25rem, 3vw, 2.75rem) !important; line-height: 1.12 !important; }
