: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;
  }
}
.renewals-page { background: var(--color-white); }

/* ============ HERO ============ */
.renewal-hero {
  position: relative;
  overflow: hidden;
  background: radial-gradient(circle at 68% 24%, rgba(200,132,10,.09), transparent 26%), linear-gradient(120deg, #fff 0%, #fbfaf8 58%, #f2f0eb 100%);
}
.renewal-hero::after { position: absolute; inset: auto 0 0; height: 1px; content: ""; background: var(--color-border); }
.renewal-hero-branch { position:absolute; top:30px; left:-8px; width:68px; height:auto; z-index:0; opacity:0.92; pointer-events:none; }
.renewal-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(480px, 1.12fr);
  align-items: center;
  gap: 44px;
  padding-block: 44px;
}
.renewal-hero-copy { position: relative; z-index: 2; }
.renewal-kicker {  }
.renewal-hero h1 { margin-bottom: 16px; font-size: clamp(2.6rem, 4.2vw, 3.6rem); line-height: 1.04; }
.renewal-hero h1 span { display: block; color: var(--color-gold); }
.renewal-hero-intro { max-width: 470px; margin-bottom: 24px; color: #37473f; font-size: 15.5px; line-height: 1.55; }

.renewal-benefits { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); margin-bottom: 26px; }
.renewal-benefit { min-width: 0; padding: 0 10px; text-align: center; }
.renewal-benefit:first-child { padding-left: 0; }
.renewal-benefit:last-child { padding-right: 0; }
.renewal-benefit img { width: 30px; height: 30px; margin: 0 auto 9px; object-fit: contain; }
.renewal-benefit span { display: block; font-size: 12.5px; font-weight: 700; line-height: 1.3; color: #2a3a32; }
.renewal-hero-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 26px; }
.renewal-tour-link { display: inline-flex; align-items: center; gap: 9px; font-weight: 800; font-size: 15px; }
.renewal-tour-link span { width: 28px; height: 28px; display: grid; place-items: center; border: 1px solid var(--color-evergreen); border-radius: 50%; }
.renewal-tour-link svg { width: 16px; height: 16px; }
.renewal-dashboard { position: relative; margin: 0; }
.renewal-dashboard::before { position: absolute; inset: 14% 3% -6%; z-index: -1; border-radius: 50%; content: ""; background: rgba(4,40,27,.18); filter: blur(30px); }
.renewal-dashboard img { width: 100%; border-radius: 12px; box-shadow: 0 18px 42px rgba(4,40,27,.22); }

/* ============ shared headings ============ */
.renewal-heading-rule { display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 22px; margin-bottom: 34px; }
.renewal-heading-rule h2 { margin: 0; font-size: clamp(1.7rem, 2.4vw, 2rem); }
.renewal-heading-rule span { height: 1px; background: linear-gradient(to right, transparent, var(--color-gold)); }
.renewal-heading-rule span:last-child { background: linear-gradient(to left, transparent, var(--color-gold)); }

/* ============ WORKFLOW: 8 in one row ============ */
.renewal-workflow { padding: 44px 0; border-top: 1px solid #ebe9e5; background: var(--color-white); }
.renewal-workflow-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 0;
}
.renewal-step-card {
  position: relative;
  min-height: 0;
  padding: 0 6px;
  border: 0;
  background: none;
  box-shadow: none;
  text-align: center;
}
.renewal-step-card:not(:last-child)::after {
  position: absolute;
  top: 44px;
  left: calc(50% + 44px);
  width: calc(100% - 88px);
  border-top: 1.5px dashed #8ea79a;
  content: "";
}
.renewal-step-number {
  position: absolute;
  top: -2px;
  left: 50%;
  margin-left: 8px;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: var(--color-evergreen);
  font-size: 12px;
  font-weight: 800;
  z-index: 3;
}
.renewal-step-icon { position: relative; width: 62px; height: 62px; display: grid; place-items: center; margin: 6px auto 14px; border: 1px solid #e2d7c3; border-radius: 50%; background: #fffdfa; z-index: 2; }
.renewal-step-icon img { width: 32px; height: 32px; object-fit: contain; }
.renewal-step-card h3 { margin-bottom: 7px; font-family: var(--font-body); font-size: 14px; font-weight: 800; }
.renewal-step-card p { margin: 0; color: #4d5a53; font-size: 12px; line-height: 1.4; }

/* ============ FEATURE SHOWCASE: 3 flat columns ============ */
.renewal-feature-showcase { padding: 44px 0; border-block: 1px solid #ebe7df; background: var(--color-cream); }
.renewal-showcase-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0; }
.renewal-showcase-block { min-width: 0; padding: 4px 34px; border: 0; border-radius: 0; background: none; box-shadow: none; }
.renewal-showcase-block + .renewal-showcase-block { border-left: 1px solid #ded9d0; }
.renewal-showcase-block header { min-height: 92px; text-align: center; }
.renewal-showcase-block h2, .operations-card h2 { margin-bottom: 8px; font-size: 22px; text-align: center; }
.renewal-showcase-block header p, .operations-card header p { color: #4b5851; font-size: 14px; line-height: 1.45; }
.reminder-mockups { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; align-items: start; }
.reminder-mockups figure { display: flex; flex-direction: column; margin: 0; }
.reminder-mockups img { width: 100%; border: 1px solid var(--color-border); border-radius: 8px; box-shadow: 0 8px 20px rgba(4,40,27,.1); }
.reminder-mockups figcaption { order: -1; margin-bottom: 7px; font-size: 13px; font-weight: 800; text-align: center; }
.renewal-checks { display: grid; gap: 9px; margin: 0 0 18px; padding: 0; list-style: none; font-size: 14px; }
.renewal-checks li { position: relative; padding-left: 28px; }
.renewal-checks li::before { position: absolute; top: 0; left: 0; width: 19px; height: 19px; display: grid; place-items: center; border: 1px solid #ebc47d; border-radius: 4px; color: var(--color-gold); content: "✓"; font-size: 12px; font-weight: 900; }
.storage-photo { width: 100%; aspect-ratio: 1.7; object-fit: cover; border-radius: 8px; }
.rebook-panel { padding: 16px; border: 1px solid var(--color-border); border-radius: 8px; background: #fff; box-shadow: 0 8px 20px rgba(4,40,27,.06); }
.panel-label { margin-bottom: 8px; font-size: 13px; font-weight: 800; }
.rebook-design-preview { min-height: 0; display: block; overflow: hidden; border-radius: 7px; }
.rebook-design-preview img { width: 100%; height: 120px; object-fit: cover; border-radius: 7px; display: block; }
.rebook-notes { padding: 14px 0; font-size: 13px; }
.rebook-notes div { display: grid; grid-template-columns: 100px 1fr; gap: 10px; }
.rebook-notes p { display: flex; justify-content: space-between; margin: 14px 0 0; }
.rebook-panel .button { width: 100%; min-height: 42px; }

/* ============ TOOLS: 5 in one row, icon-left ============ */
.renewal-tools { padding: 44px 0; background: white; }
.renewal-tools-grid { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 0; }
.renewal-tool-card { min-height: 0; display: grid; grid-template-columns: 28px 1fr; align-items: start; column-gap: 10px; row-gap: 4px; padding: 4px 16px; border: 0; border-radius: 0; text-align: left; }
.renewal-tool-card + .renewal-tool-card { border-left: 1px solid #eae7e1; }
.renewal-tool-card img { grid-row: 1 / 3; width: 26px; height: 26px; margin: 2px 0 0; object-fit: contain; }
.renewal-tool-card h3 { grid-column: 2; margin-bottom: 0; font-family: var(--font-body); font-size: 14px; font-weight: 800; line-height: 1.15; }
.renewal-tool-card p { grid-column: 2; margin: 0; color: #4a5851; font-size: 12px; line-height: 1.35; }

/* ============ PERFORMANCE ============ */
.renewal-performance { padding: 40px 0; color: white; background: radial-gradient(circle at 8% 15%, rgba(224,163,33,.2), transparent 24%), linear-gradient(110deg, #064833, #003524 70%, #05432f); }
.performance-layout { display: grid; grid-template-columns: 230px 1fr; align-items: center; gap: 30px; }
.performance-intro h2 { margin-bottom: 10px; color: white; font-size: 26px; text-align: left; }
.performance-intro p { margin-bottom: 16px; color: #dce7e2; font-size: 14px; }
.performance-intro .button { min-height: 42px; }
.performance-stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); }
.performance-stats article { min-width: 0; padding: 4px 16px; border-left: 1px solid rgba(224,163,33,.5); text-align: center; }
.performance-stats strong, .performance-stats span, .performance-stats small { display: block; }
.performance-stats strong { margin-bottom: 5px; font-family: var(--font-heading); font-size: 34px; font-weight: 400; line-height: 1; }
.performance-stats span { min-height: 40px; font-size: 14px; font-weight: 700; }
.performance-stats small { color: #d8e2dd; font-size: 12px; }
.performance-stats small::after { display: block; margin-top: 8px; color: var(--color-gold-light); content: "★★★★★"; font-size: 12px; letter-spacing: 2px; }

/* ============ OPERATIONS ============ */
.renewal-operations { padding: 44px 0; background: #faf9f7; }
.renewal-operations-grid { display: grid; grid-template-columns: .92fr 1.35fr .95fr; gap: 26px; align-items: start; }
.operations-card { min-width: 0; min-height: 0; padding: 8px 20px; border: 0; border-radius: 0; background: none; text-align: center; }
.operations-card + .operations-card { border-left: 1px solid #e3ded5; }
.operations-card header { min-height: 74px; }
.storage-management > img { width: 100%; margin: 12px auto 18px; border: 1px solid var(--color-border); border-radius: 8px; box-shadow: 0 6px 16px rgba(4,40,27,.06); }
.storage-table { width: 100%; margin: 14px 0 16px; border-collapse: collapse; font-size: 13px; text-align: left; }
.storage-table thead th { padding: 8px 10px; border-bottom: 1px solid var(--color-border); background: #f6f4f0; color: #33443b; font-size: 11.5px; font-weight: 700; }
.storage-table thead th:nth-child(n+2) { text-align: center; }
.storage-table tbody td { padding: 9px 10px; border-bottom: 1px solid #eeece7; }
.storage-table tbody td:nth-child(2), .storage-table tbody td:nth-child(3) { text-align: center; }
.storage-table tbody td:last-child { text-align: center; }
.storage-table .status-ok { display: inline-flex; align-items: center; gap: 5px; color: #1f7a45; font-weight: 700; }
.storage-table .status-ok::before { width: 7px; height: 7px; border-radius: 50%; background: #2fa15c; content: ""; }
.storage-management .button { margin-top: 0; min-height: 40px; }

/* Customer Lifecycle: 7 icons horizontal row */
.lifecycle-list { display: flex; align-items: flex-start; justify-content: center; gap: 0; margin-top: 14px; flex-wrap: nowrap; }
.lifecycle-list div { position: relative; min-height: 0; flex: 1 1 0; min-width: 0; display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 0 2px; border: 0; border-radius: 0; text-align: center; }
.lifecycle-list div:not(:last-child)::after { position: absolute; top: 26px; left: calc(50% + 26px); width: calc(100% - 52px); border-top: 1.5px solid #cfd6d0; content: ""; }
.lifecycle-list div:last-child { grid-column: auto; justify-content: flex-start; color: inherit; }
.lifecycle-list div:last-child img { border-color: #ebc47d; }
.lifecycle-list .lifecycle-icon { position: relative; z-index: 2; width: 52px; height: 52px; display: grid; place-items: center; border: 1px solid var(--color-border); border-radius: 50%; background: #fff; }
.lifecycle-list img { width: 26px; height: 26px; object-fit: contain; }
.lifecycle-list span { color: var(--color-evergreen); font-size: 11.5px; font-weight: 700; line-height: 1.25; }

.homeowner-experience > img { width: 100%; margin: 12px auto 0; }

/* ============ TESTIMONIALS ============ */
.renewal-testimonials { padding: 44px 0; border-top: 1px solid var(--color-border); background: white; }
.renewal-testimonials h2 { margin-bottom: 30px; font-size: clamp(1.7rem, 2.4vw, 2rem); }
.testimonial-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px; }
.testimonial-card { min-height: 0; display: grid; grid-template-columns: 66px 1fr; align-items: start; gap: 16px; padding: 0; border: 0; border-radius: 0; background: none; box-shadow: none; }
.testimonial-card + .testimonial-card { border-left: 1px solid var(--color-border); padding-left: 30px; }
.testimonial-portrait, .testimonial-initial { width: 66px; height: 66px; border-radius: 50%; }
.testimonial-portrait { object-fit: cover; }
.testimonial-initial { display: grid; place-items: center; color: white; background: var(--color-evergreen); font-family: var(--font-heading); font-size: 22px; }
.testimonial-quote-mark { width: 28px; height: 24px; margin-bottom: 8px; color: var(--color-gold); fill: currentColor; stroke: none; }
.testimonial-card blockquote { margin-bottom: 10px; font-family: var(--font-heading); font-size: 15px; line-height: 1.4; }
.testimonial-card cite { color: #45534c; font-size: 12px; font-style: normal; }
.testimonial-card ul { display: flex; flex-wrap: wrap; gap: 5px 12px; margin: 14px 0 0; padding: 12px 0 0; border-top: 1px solid var(--color-border); list-style: none; font-size: 11px; font-weight: 700; }

/* ============ FINAL CTA ============ */
.renewal-final-cta { position: relative; overflow: hidden; padding: 30px 0; color: white; background: radial-gradient(circle at 12% 40%, rgba(224,163,33,.18), transparent 22%), linear-gradient(105deg, #004a34, #002f21); }
.renewal-final-cta::after { position: absolute; top: 0; right: 0; bottom: 0; width: 340px; content: ""; background: url("assets/top-right-pine-light-decoration.png") right center / contain no-repeat; opacity: .9; pointer-events: none; }
.renewal-final-inner { position: relative; z-index: 2; display: grid; grid-template-columns: 60px minmax(0, 1fr) auto; align-items: center; gap: 24px; }
.renewal-final-inner > img { width: 50px; }
.renewal-final-inner h2 { margin-bottom: 5px; color: white; font-size: 26px; text-align: left; }
.renewal-final-inner p { margin: 0; color: #dde8e3; font-size: 14px; }
.renewal-final-action { text-align: center; }
.renewal-final-action .button { min-height: 44px; }
.renewal-final-action small { display: block; margin-top: 8px; color: #dae4df; font-size: 12px; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1100px) {
  .renewal-hero-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .renewal-hero h1 { font-size: clamp(2.2rem, 4.2vw, 3rem); }
  .renewal-workflow-grid { grid-template-columns: repeat(4, 1fr); gap: 28px 12px; }
  .renewal-step-card:nth-child(4)::after, .renewal-step-card:last-child::after { display: none; }
  .renewal-step-card::after { display: none; }
  .renewal-showcase-grid { grid-template-columns: 1fr; gap: 0; }
  .renewal-showcase-block { padding: 22px 8px; }
  .renewal-showcase-block + .renewal-showcase-block { border-left: 0; border-top: 1px solid #ded9d0; }
  .renewal-reminders .reminder-mockups { max-width: 520px; margin-inline: auto; }
  .renewal-rebook .rebook-panel { max-width: 560px; margin-inline: auto; }
  .renewal-tools-grid { grid-template-columns: repeat(3, 1fr); gap: 20px 4px; }
  .renewal-tool-card:nth-child(3) { border-left: 0; }
  .performance-layout { grid-template-columns: 1fr; }
  .performance-intro { max-width: 560px; }
  .renewal-operations-grid { grid-template-columns: 1fr; gap: 0; }
  .operations-card { padding: 26px 8px; }
  .operations-card + .operations-card { border-left: 0; border-top: 1px solid #e3ded5; }
  .storage-management > img, .homeowner-experience > img { max-width: 560px; }
  .homeowner-experience > img { margin-inline: auto; }
  .testimonial-grid { grid-template-columns: 1fr; gap: 22px; }
  .testimonial-card + .testimonial-card { border-left: 0; padding-left: 0; border-top: 1px solid var(--color-border); padding-top: 22px; }
}

@media (max-width: 850px) {
  .renewal-hero-grid { grid-template-columns: 1fr; padding-block: 40px; }
  .renewal-dashboard { max-width: 640px; width: 100%; margin-inline: auto; }
  .renewal-workflow-grid { grid-template-columns: repeat(2, 1fr); }
  .renewal-tools-grid { grid-template-columns: repeat(2, 1fr); }
  .renewal-tool-card { border-left: 0 !important; }
  .performance-stats { grid-template-columns: repeat(2, 1fr); gap: 18px 0; }
  .performance-stats article:nth-child(odd) { border-left: 0; }
  .lifecycle-list { flex-wrap: wrap; gap: 18px 0; }
  .lifecycle-list div { flex: 0 0 33.33%; }
  .lifecycle-list div::after { display: none; }
  .renewal-final-inner { grid-template-columns: 52px 1fr; }
  .renewal-final-action { grid-column: 2; justify-self: start; text-align: left; }
  .renewal-final-cta::after { opacity: .35; }
}

@media (max-width: 640px) {
  .renewal-hero-branch { opacity: .3; }
  .renewal-hero h1 { font-size: clamp(2.2rem, 11vw, 3rem); }
  .renewal-benefit { padding-inline: 6px; }
  .renewal-benefit span { font-size: 11.5px; }
  .renewal-hero-actions { align-items: stretch; flex-direction: column; }
  .renewal-tour-link { justify-content: center; }
  .renewal-heading-rule { grid-template-columns: 1fr; gap: 10px; }
  .renewal-heading-rule span { display: none; }
  .renewal-workflow-grid, .renewal-tools-grid { grid-template-columns: 1fr; }
  .reminder-mockups { grid-template-columns: 1fr 1fr; }
  .lifecycle-list div { flex: 0 0 50%; }
  .renewal-final-inner { grid-template-columns: 1fr; text-align: center; }
  .renewal-final-inner > img, .renewal-final-action { grid-column: auto; justify-self: center; }
  .renewal-final-inner h2 { text-align: center; }
  .renewal-final-action { text-align: center; }
  .renewal-final-cta::after { display: none; }
}

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