﻿:root {
  --bg: #e6f4ef;       /* Primary-100 */
  --panel: #a7d7c5;    /* Primary-200 */
  --glass: #a7d7c5;
  --border: #a7d7c5;   /* Primary-200 */
  --text: #185a36;     /* Primary-700 */
  --muted: #2e8b57;    /* Primary-500 */
  --accent: #217346;   /* Primary-600 */
  --accent-2: #2e8b57; /* Primary-500 */
  --accent-3: #185a36; /* Primary-700 */
  --brand: #217346;    /* Primary-600 */
  --surface: #f7fbf8;
  --surface-soft: rgba(255, 255, 255, 0.62);
  --deep: #185a36;
  --deep-muted: rgba(230, 244, 239, 0.72);
  --shadow: 0 20px 60px rgba(24, 90, 54, 0.12);
  --radius: 16px;
  --container: 1180px;
  --page-top: 24px;
  --nav-content-gap: 88px;
}

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

body {
  margin: 0;
  font-family: 'Space Grotesk', 'Segoe UI', sans-serif;
  background: radial-gradient(circle at 20% 12%, rgba(167, 215, 197, 0.28), transparent 30%),
              radial-gradient(circle at 82% 3%, rgba(46, 139, 87, 0.14), transparent 26%),
              var(--bg);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

a {
  color: var(--text);
  text-decoration: none;
}

.page-shell {
  padding: var(--page-top) 32px 80px;
}

.page-shell:has(main .cta-band:last-child) {
  padding-bottom: 0;
}

.page-shell > main {
  padding-top: var(--nav-content-gap);
}

.hero-band,
.product-proof,
.feature-band,
.workflow-band,
.solutions-band,
.whyus-band,
.cta-band {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

[hidden] {
  display: none !important;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 12px;

}

.nav {
  position: sticky;
  top: 12px;
  z-index: 100;
  max-width: var(--container);
  margin: 0 auto;
  padding: 12px 18px;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
  overflow: visible;
}

.brand {
  display: flex;
  align-items: center;
  min-width: 120px;
}

.brand img {
  height: 34px;
  width: auto;
  filter: drop-shadow(0 0 4px rgba(230, 244, 239, 0.28));
}

.nav-links {
  display: flex;
  gap: 20px;
  flex: 1;
  align-items: center;
}

.nav-links a {
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 12px;
  transition: color 0.2s ease, background 0.2s ease, transform 0.12s ease;
}

.nav-links a:hover {
  color: var(--text);
  background: var(--bg);
  transform: translateY(-1px);
}

.nav-links a.active {
  color: var(--text);
  background: var(--panel);
}

.nav-features,
.nav-dropdown {
  position: relative;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: inherit;
  font-family: inherit;
  line-height: 1.2;
  border: none;
  border-radius: 12px;
  background: transparent;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-dropdown__trigger::after {
  content: "";
  width: 0;
  height: 0;
  margin-top: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.65;
  transition: transform 0.2s ease;
}

.nav-dropdown__trigger.active {
  color: var(--text);
  background: var(--bg);
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 0;
  min-width: 168px;
  padding: 6px;
  margin: 0;
  background: #f4fbf7;
  border: 1px solid rgba(24, 90, 54, 0.16);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(24, 90, 54, 0.18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.12s ease, transform 0.12s ease, visibility 0.12s ease;
  z-index: 200;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -18px;
  height: 18px;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--text);
  background: var(--bg);
}

.nav-dropdown:hover .nav-dropdown__trigger::after,
.nav-dropdown:focus-within .nav-dropdown__trigger::after {
  transform: rotate(180deg);
}

/* Click-to-pin only on touch / coarse pointer */
@media (hover: none), (pointer: coarse) {
  .nav-dropdown:hover .nav-dropdown__menu {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .nav-dropdown.is-open .nav-dropdown__menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-dropdown.is-open .nav-dropdown__trigger::after {
    transform: rotate(180deg);
  }
}

.nav-dropdown__menu a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a.active {
  color: var(--text);
  background: var(--bg);
  transform: none;
}

.mobile-features {
  display: grid;
  gap: 6px;
  padding-bottom: 8px;
  margin-bottom: 4px;
  border-bottom: 1px solid var(--border);
}

.mobile-features__title {
  font-weight: 700;
  color: var(--text);
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg);
}

.mobile-features a:not(.mobile-features__title) {
  padding: 8px 12px 8px 20px;
  color: var(--muted);
  font-weight: 600;
  border-radius: 10px;
}

.mobile-features a:not(.mobile-features__title).active,
.mobile-features a:not(.mobile-features__title):hover {
  color: var(--text);
  background: var(--bg);
}

.nav-actions {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-left: auto;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 1px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.lang-switch__btn {
  min-width: 0;
  padding: 4px 5px;
  border: none;
  border-radius: 4px;
  background: transparent;
  color: rgba(24, 90, 54, 0.42);
  font-family: inherit;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: color 0.15s ease;
}

.lang-switch__btn:hover {
  color: var(--muted);
  background: transparent;
}

.lang-switch__btn.is-active {
  background: transparent;
  color: var(--text);
  font-weight: 700;
}

.lang-switch__sep {
  color: rgba(24, 90, 54, 0.18);
  font-size: 10px;
  line-height: 1;
  user-select: none;
}

.mobile-actions .lang-switch {
  width: 100%;
  justify-content: center;
}

.nav-actions .btn {
  border-radius: 12px;
  padding: 10px 16px;
  min-height: 42px;
  font-size: 14px;
  line-height: 1.2;
}

.menu-toggle {
  display: none;
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--bg);
  padding: 10px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 3px;
  background: var(--text);
  border-radius: 4px;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--panel);
  box-shadow: 0 18px 45px rgba(24, 90, 54, 0.12);
  gap: 12px;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 200;
}

.mobile-actions {
  display: flex;
  gap: 8px;
  width: 100%;
}

.mobile-actions .btn {
  flex: 1;
}

.mobile-links {
  display: grid;
  gap: 10px;
  padding-top: 6px;
}

.mobile-links a {
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--bg);
  color: var(--text);
  border: 1px solid var(--border);
}

.mobile-links a.active {
  background: rgba(33, 115, 70, 0.12);
  border-color: rgba(33, 115, 70, 0.4);
  color: var(--text);
  font-weight: 700;
}

.btn {
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text);
  border-radius: 12px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
  border-color: var(--border);
}

.btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: var(--bg);
  border: none;
  box-shadow: 0 10px 28px rgba(33, 115, 70, 0.25), 0 6px 18px rgba(24, 90, 54, 0.22);
}

.btn.secondary {
  background: var(--bg);
}

.btn.ghost {
  color: var(--muted);
  border-color: var(--border);
  background: transparent;
}

.hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 34px;
  align-items: center;
  margin-top: 0;
}

.hero-band {
  padding: 0 0 118px;
  background: radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.5), transparent 34%),
              radial-gradient(circle at 84% 16%, rgba(46, 139, 87, 0.12), transparent 28%),
              var(--bg);
}

.hero-band__inner {
  min-height: min(620px, calc(100vh - 170px));
}

.hero-copy h1 {
  font-size: clamp(42px, 7.5vw, 68px);
  margin: 0 0 18px;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.hero-copy .lede {
  color: var(--muted);
  max-width: 680px;
  font-size: clamp(18px, 2.4vw, 22px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 48px 0 0;
  align-items: center;
}

.hero-actions .btn {
  border-radius: 16px;
  padding: 16px 28px;
  font-size: 17px;
  min-height: 54px;
  letter-spacing: 0.01em;
}

.hero-actions .btn.primary {
  background: var(--accent-3);
  box-shadow: var(--shadow);
}

.hero-actions .btn.primary:only-child {
  padding: 16px 36px;
  min-width: 200px;
}

.hero-actions .btn.primary:hover {
  background: var(--accent);
  box-shadow: 0 14px 36px rgba(24, 90, 54, 0.16);
}

.hero-actions .btn.secondary {
  background: rgba(255, 255, 255, 0.55);
  border-color: rgba(24, 90, 54, 0.16);
  color: var(--accent-3);
  box-shadow: none;
}

.hero-actions .btn.secondary:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: rgba(24, 90, 54, 0.24);
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.metrics div {
  background: var(--panel);
  border: 1px solid var(--border);
  padding: 12px 14px;
  border-radius: 12px;
  color: var(--muted);
}

.metrics span {
  display: inline-block;
  color: var(--text);
  font-weight: 700;
  margin-right: 6px;
}

.hero-visual {
  position: relative;
  min-height: 0;
  padding: 20px 0 10px;
  display: grid;
  place-items: center;
}

.hero-video {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
}

.hero-video video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(24, 90, 54, 0.35);
  background: rgba(255, 255, 255, 0.4);
}

.hero-video--vert {
  max-width: min(300px, 78vw);
}

.hero-stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
  max-width: 520px;
  justify-items: stretch;
}

.hero-stats .hero-stat:last-child {
  grid-column: 1 / span 2;
  justify-self: center;
  width: calc((100% - 16px) / 2);
  max-width: none;
}

@media (max-width: 720px) {
  .hero-stats {
    grid-template-columns: 1fr;
  }
  .hero-stats .hero-stat:last-child {
    grid-column: auto;
    justify-self: stretch;
    width: 100%;
  }
}

.hero-stat {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 16px 14px;
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  display: block;
  font-weight: 800;
  font-size: clamp(36px, 6vw, 54px);
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.stat-label {
  margin: 0;
  color: var(--text);
  line-height: 1.3;
  font-weight: 600;
}

.hero-screenshot {
  width: 360px;
  max-width: 90%;
  border-radius: 18px;
  box-shadow: 0 20px 60px rgba(24, 90, 54, 0.5);
  opacity: 0.92;
  border: 1px solid var(--border);
}

.halo {
  position: absolute;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 115, 70, 0.2), rgba(24, 90, 54, 0.4));
  filter: blur(10px);
}

.glass {
  background: linear-gradient(145deg, rgba(230, 244, 239, 0.08), rgba(230, 244, 239, 0.04));
  border: 1px solid var(--border);
  backdrop-filter: blur(12px);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.glass.stack {
  width: 320px;
  padding: 16px;
  position: absolute;
  left: -10px;
  top: 32px;
  transform: rotate(-4deg);
}

.glass.stack header {
  font-weight: 700;
  margin-bottom: 10px;
}

.snippet {
  background: rgba(230, 244, 239, 0.04);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 10px;
}

.snippet.secondary {
  border-color: rgba(46, 139, 87, 0.4);
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(33, 115, 70, 0.16);
  color: var(--accent);
  font-weight: 600;
  font-size: 13px;
}

.badge.alt {
  background: rgba(46, 139, 87, 0.16);
  color: var(--accent-2);
}

.badge.ghost {
  background: rgba(230, 244, 239, 0.06);
  color: var(--text);
}

.glass.board {
  width: 340px;
  padding: 18px;
  position: absolute;
  right: -6px;
  bottom: 60px;
  transform: rotate(3deg);
}

.board-title {
  font-weight: 700;
  margin-bottom: 12px;
}

.board-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(60px, 1fr));
  gap: 8px;
}

.chip {
  padding: 8px;
  text-align: center;
  border-radius: 10px;
  background: rgba(230, 244, 239, 0.06);
  color: var(--muted);
  border: 1px solid var(--border);
}

.chip.active {
  background: rgba(33, 115, 70, 0.16);
  color: var(--accent);
  border-color: rgba(33, 115, 70, 0.5);
}

.board-lines {
  margin: 16px 0 10px;
  display: grid;
  gap: 6px;
}

.board-lines .line {
  height: 8px;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(33, 115, 70, 0.8), rgba(24, 90, 54, 0.6));
  opacity: 0.9;
}

.product-preview {
  margin: 36px auto 18px;
  display: grid;
  gap: 16px;
  justify-items: left;
}

.product-proof {
  margin: 0 calc(50% - 50vw);
  padding: 104px 0;
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.8));
}

.product-proof__inner {
  display: block;
}

.product-preview-stack {
  display: flex;
  flex-direction: column;
  gap: 34px;
}

.product-stats-band {
  max-width: 860px;
  margin: 0 auto;
  padding: 4px 24px 0;
  background: none;
  border: none;
  box-shadow: none;
}

.product-stats-band__eyebrow {
  margin: 0 0 6px;
  text-align: center;
}

.product-stats-band__title {
  max-width: 620px;
  margin: 0 auto 20px;
  text-align: center;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.35;
  letter-spacing: -0.02em;
  color: var(--text);
}

.product-stats-visual {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 174px;
  padding: 10px 0 2px;
}

.product-stats-visual .halo {
  width: min(560px, 86vw);
  height: 220px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.34;
  filter: blur(24px);
}

.product-stats-visual .hero-stats {
  margin: 0 auto;
  max-width: 760px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.product-stats-visual .hero-stats .hero-stat:last-child {
  grid-column: auto;
  justify-self: stretch;
  width: auto;
}

.product-stats-visual .hero-stat {
  padding: 18px 16px;
  border-radius: 22px;
  border-color: rgba(24, 90, 54, 0.12);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 42px rgba(24, 90, 54, 0.1);
  backdrop-filter: blur(10px);
}

.product-stats-visual .stat-number {
  font-size: clamp(32px, 4vw, 46px);
  letter-spacing: -0.04em;
  margin-bottom: 5px;
}

.product-stats-visual .stat-label {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.product-preview--split {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  margin-top: 0;
}

.product-preview-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.42fr) minmax(0, 1fr);
  gap: 32px;
  align-items: center;
  border: 1px solid rgba(24, 90, 54, 0.12);
  background: linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.72));
  border-radius: 28px;
  padding: 34px;
  box-shadow: 0 24px 70px rgba(24, 90, 54, 0.11);
  overflow: hidden;
}

.product-preview--split .product-captions {
  display: flex;
  flex-direction: column;
  gap: 0;
  width: 100%;
  text-align: left;
  min-width: 0;
  padding: 0 28px 0 0;
  border-bottom: none;
  border-right: 1px solid rgba(24, 90, 54, 0.14);
  margin: 0;
}

.product-preview--split .product-captions .eyebrow {
  margin: 0 0 8px;
}

.product-preview--split .product-captions__title {
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.3;
  margin: 0 0 24px;
  letter-spacing: -0.02em;
}

.product-preview--split .product-points {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.product-preview--split .product-points li {
  position: relative;
  padding-left: 18px;
}

.product-preview--split .product-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(33, 115, 70, 0.15);
}

.product-preview--split .product-points strong {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--text);
  margin-bottom: 4px;
}

.product-preview--split .product-points p {
  margin: 0;
  font-size: 14px;
  line-height: 1.45;
  color: var(--muted);
  max-width: 36ch;
}

.product-preview--split .product-shot {
  width: 100%;
  justify-content: center;
  margin: 0;
}

.product-preview--split .product-shot.small img,
.product-preview--split .product-shot img {
  display: block;
  width: 100%;
  max-width: 100%;
  max-height: none;
  height: auto;
  margin: 0;
  border-radius: 18px;
  border: 1px solid rgba(24, 90, 54, 0.1);
  box-shadow: 0 18px 48px rgba(24, 90, 54, 0.14);
}

@media (max-width: 1024px) {
  .product-proof,
  .feature-band,
  .workflow-band,
  .solutions-band,
  .whyus-band,
  .cta-band {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .product-preview-card {
    grid-template-columns: 1fr;
    padding: 22px 20px 20px;
    gap: 20px;
  }

  .product-preview--split .product-captions {
    padding: 0 0 20px;
    border-right: none;
    border-bottom: 1px solid rgba(24, 90, 54, 0.12);
  }

  .product-stats-band {
    max-width: none;
    padding-inline: 0;
  }

  .product-stats-visual .hero-stats {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .product-stats-visual .halo {
    width: min(420px, 88vw);
    height: 300px;
  }

  .product-preview--split .product-captions p {
    max-width: none;
  }

  .workflow-band__inner,
  .cta-card {
    padding: 28px;
  }

  .solutions-home__head {
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

@media (max-width: 720px) {
  .solutions-home__grid {
    grid-template-columns: 1fr;
  }

  .solutions-home__card {
    min-height: 0;
    padding: 20px;
  }

  .solutions-home__card span {
    margin-bottom: 18px;
  }
}

.product-shot {
  width: 100%;
  display: flex;
  justify-content: center;
}

.product-shot img {
  display: block;
  width: 90vw;
  max-width: 1100px;
  max-height: 88vh;
  height: auto;
  margin: 0 auto;
  object-fit: contain;
  border-radius: 18px;
  border: 1px solid var(--border);
  box-shadow: 0 25px 70px rgba(24, 90, 54, 0.55);
}

.product-shot.small img {
  width: 90vw;
  max-width: 1100px;
  max-height: 88vh;
  height: auto;
}


.product-captions {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  text-align: left;
  justify-items: start;
}

.product-captions h3 {
  margin: 0 0 6px;
}

.product-captions p {
  margin: 0;
  color: var(--muted);
}

.trust {
  margin: 60px auto 20px;
  text-align: center;
}

.trust-grid {
  margin-top: 14px;
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  color: var(--muted);
  opacity: 0.8;
}

.feature-switcher {
  margin: 0;
}

.feature-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background: radial-gradient(circle at 82% 14%, rgba(167, 215, 197, 0.26), transparent 31%),
              linear-gradient(135deg, var(--deep), #217346);
  border: none;
  border-radius: 0;
  color: var(--bg);
  padding: 104px 0;
  box-shadow: none;
}

.feature-band__inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.feature-switcher .feature-band__inner {
  gap: 0;
}

.feature-switcher .switcher-header h2 {
  margin-bottom: 6px;
}

.switcher-main {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-switcher .switcher-tabs {
  margin: 0;
}

.feature-switcher .switcher-list {
  margin-top: 8px;
}

.switcher-body {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 28px;
  align-items: center;
}

@media (max-width: 900px) {
  .switcher-body {
    grid-template-columns: 1fr;
  }
}

.switcher-header h2 {
  font-size: clamp(24px, 3.2vw, 36px);
  margin: 8px 0 12px;
  white-space: nowrap;
}

.feature-band .eyebrow,
.feature-band .switcher-header h2 {
  color: var(--bg);
}

@media (max-width: 720px) {
  .switcher-header h2 {
    white-space: normal;
  }
}

.switcher-header .lede {
  color: var(--muted);
  margin: 0;
}

.feature-band__link {
  color: var(--bg);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(230, 244, 239, 0.45);
  text-underline-offset: 3px;
}

.feature-switcher .feature-band__link {
  margin-top: 10px;
}

.feature-band__link:hover {
  text-decoration-color: var(--bg);
}

.feature-band .switcher-header .lede,
.feature-band .switcher-visual .caption {
  color: var(--deep-muted);
}

.switcher-tabs {
  display: flex;
  gap: 10px;
  margin: 0 0 14px;
}

.pill {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(230, 244, 239, 0.06);
  border: 1px solid var(--border);
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
}

.feature-band .pill {
  color: var(--deep-muted);
  border-color: rgba(230, 244, 239, 0.18);
  background: rgba(230, 244, 239, 0.08);
}

.pill.active {
  color: var(--bg);
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border-color: transparent;
  box-shadow: 0 15px 35px rgba(33, 115, 70, 0.3);
}

.feature-band .pill.active {
  color: var(--deep);
  background: var(--bg);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.switcher-list {
  padding-left: 0;
  list-style: none;
  margin: 10px 0 0;
  display: grid;
  gap: 10px;
}

.switcher-list .panel h3 {
  margin: 0 0 4px;
  font-size: 1rem;
  line-height: 1.3;
}

.feature-band .switcher-list .panel {
  padding: 10px 14px;
  border-radius: 12px;
  background: rgba(247, 251, 248, 0.94);
  border-color: rgba(247, 251, 248, 0.82);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.1);
}

.feature-band .switcher-list .panel p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--deep);
}

.switcher-list .panel p {
  font-size: 14px;
  line-height: 1.4;
}

.switcher-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  height: 100%;
}

.orbit {
  width: 260px;
  height: 260px;
  position: relative;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 40%, rgba(230, 244, 239, 0.32), rgba(167, 215, 197, 0.2));
  border: 1px solid rgba(230, 244, 239, 0.26);
  overflow: hidden;
  box-shadow: 0 25px 55px rgba(24, 90, 54, 0.45);
}

.planet {
  width: 90px;
  height: 90px;
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 0 35px rgba(33, 115, 70, 0.4);
}

.ring {
  position: absolute;
  border: 1px dashed rgba(230, 244, 239, 0.24);
  border-radius: 50%;
}

.ring-a { width: 200px; height: 200px; top: 30px; left: 30px; animation: orbit 11s linear infinite; }
.ring-b { width: 240px; height: 240px; top: 10px; left: 10px; animation: orbit 16s linear reverse infinite; opacity: 0.7;}
.ring-c { width: 170px; height: 170px; top: 45px; left: 45px; animation: orbit 8s linear infinite; opacity: 0.4;}

.signal {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--accent-2);
  border-radius: 50%;
  top: 10%;
  left: 50%;
  animation: beacon 1.6s ease-in-out infinite;
  box-shadow: 0 0 18px rgba(46, 139, 87, 0.7);
}

.switcher-visual .caption {
  margin-top: 0;
  color: var(--muted);
  text-align: center;
  max-width: 320px;
}

.nav-links a:focus-visible,
.btn:focus-visible,
.pill:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.nav::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 20% 30%, rgba(33, 115, 70, 0.12), transparent 45%),
              radial-gradient(circle at 80% 20%, rgba(24, 90, 54, 0.12), transparent 40%);
  pointer-events: none;
  z-index: -1;
}


.workflow {
  margin: 0;
}

.workflow-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.76), var(--surface));
}

.workflow-band__inner {
  padding: 34px;
  border-radius: 28px;
  border: 1px solid rgba(24, 90, 54, 0.1);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 20px 58px rgba(24, 90, 54, 0.08);
}

.workflow-head h2 {
  margin: 8px 0 20px;
}

.workflow-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.step {
  background: var(--surface);
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 18px;
  padding: 20px;
  position: relative;
  overflow: hidden;
}

.step-number {
  position: absolute;
  top: 12px;
  right: 12px;
  font-weight: 700;
  color: rgba(24, 90, 54, 0.16);
  font-size: 24px;
}

.step h3 {
  margin: 0 0 8px;
}

.step p {
  color: var(--muted);
}

.workflow-band__action {
  display: flex;
  justify-content: flex-start;
  margin: 20px 0 0;
}

.workflow-band__link {
  color: var(--accent-3);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(24, 90, 54, 0.28);
  text-underline-offset: 3px;
}

.workflow-band__link:hover {
  text-decoration-color: var(--accent-3);
}

.solutions-band {
  padding: 96px 0;
  background: radial-gradient(circle at 18% 8%, rgba(167, 215, 197, 0.22), transparent 30%),
              linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.82));
}

.solutions-band__inner {
  display: grid;
  gap: 28px;
}

.solutions-home__head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(260px, 0.58fr);
  gap: 28px;
  align-items: end;
}

.solutions-home__head h2 {
  margin: 8px 0 0;
  max-width: 760px;
}

.solutions-home__head .lede {
  margin: 0;
  color: var(--muted);
}

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

.solutions-home__card {
  position: relative;
  overflow: hidden;
  min-height: 190px;
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(24, 90, 54, 0.09);
}

.solutions-home__card::before {
  content: "";
  position: absolute;
  inset: auto -40px -64px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 115, 70, 0.14), transparent 68%);
  pointer-events: none;
}

.solutions-home__card span {
  display: inline-flex;
  margin-bottom: 26px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(33, 115, 70, 0.09);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solutions-home__card h3 {
  margin: 0 0 8px;
}

.solutions-home__card p {
  margin: 0;
  color: var(--muted);
}

.solutions-home__action {
  display: flex;
  justify-content: flex-start;
  margin: 4px 0 0;
}

.solutions-home__link {
  color: var(--accent-3);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-color: rgba(24, 90, 54, 0.28);
  text-underline-offset: 3px;
}

.solutions-home__link:hover {
  text-decoration-color: var(--accent-3);
}

.solution-switcher .switcher-header h2 {
  margin: 8px 0 10px;
  max-width: 760px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
}

.solution-switcher .switcher-header .lede {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.solution-switcher .solutions-band__inner {
  gap: 28px;
}

.solution-switcher-card {
  max-width: 920px;
  margin: 0 auto;
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 100% 0%, rgba(167, 215, 197, 0.22), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(247, 251, 248, 0.88));
  box-shadow: 0 24px 60px rgba(24, 90, 54, 0.1);
  padding: 28px;
}

.solution-switcher-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 160px));
  gap: 8px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 24px;
  padding: 6px;
  border-radius: 16px;
  background: rgba(33, 115, 70, 0.07);
  border: 1px solid rgba(24, 90, 54, 0.08);
}

.solution-switcher .pill {
  width: 100%;
  min-height: 46px;
  padding: 12px 16px;
  border-radius: 12px;
  color: var(--muted);
  border-color: transparent;
  background: transparent;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.solution-switcher .pill.active {
  color: var(--deep);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(24, 90, 54, 0.08);
  box-shadow: 0 10px 24px rgba(24, 90, 54, 0.1);
}

.solution-switcher-intro {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(24, 90, 54, 0.1);
}

.solution-switcher__title {
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
}

.solution-switcher__caption {
  margin: 0;
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(16px, 2vw, 18px);
  line-height: 1.55;
}

.solution-switcher-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.solution-switcher .solution-panel {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 100%;
  padding: 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(24, 90, 54, 0.1);
  box-shadow: 0 12px 28px rgba(24, 90, 54, 0.06);
}

.solution-panel__index {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(33, 115, 70, 0.1);
  color: var(--accent);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.solution-panel__body h3 {
  margin: 0 0 8px;
  font-size: 17px;
  line-height: 1.25;
  color: var(--text);
}

.solution-panel__body p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .solution-switcher-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .solution-switcher-card {
    padding: 20px 18px;
  }

  .solution-switcher-tabs {
    grid-template-columns: 1fr;
    width: min(100%, 280px);
  }
}

.panels {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
  margin: 50px auto;
}

.panel {
  border: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(230, 244, 239, 0.06), rgba(230, 244, 239, 0.03));
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow);
}

.panel h3 { margin: 10px 0 8px; }
.panel p { color: var(--muted); margin: 0; }

.cta {
  margin: 0;
}

.cta-band {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 96px 0 104px;
  background: linear-gradient(135deg, var(--deep), #217346);
}

.cta-band--light {
  padding-top: 48px;
  background: radial-gradient(circle at 18% 8%, rgba(167, 215, 197, 0.22), transparent 30%),
              linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.82));
}

.cta-band--light .cta-card {
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(24, 90, 54, 0.09);
  color: var(--text);
}

.cta-band--light .cta-card .eyebrow {
  color: var(--accent);
}

.cta-band--light .cta-card h2 {
  color: var(--text);
}

.cta-band--light .cta-card .lede {
  color: var(--muted);
}

.cta-band--light .cta-card .btn.primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-3));
  color: var(--bg);
  box-shadow: 0 10px 28px rgba(33, 115, 70, 0.25), 0 6px 18px rgba(24, 90, 54, 0.22);
}

.cta-card {
  border: 1px solid rgba(230, 244, 239, 0.16);
  background: radial-gradient(circle at 84% 18%, rgba(167, 215, 197, 0.24), transparent 28%),
              linear-gradient(135deg, var(--deep), #217346);
  color: var(--bg);
  padding: 34px;
  border-radius: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 28px 80px rgba(24, 90, 54, 0.24);
  flex-wrap: wrap;
}

.cta .lede {
  color: var(--deep-muted);
  margin: 6px 0 0;
}

.cta-card .eyebrow,
.cta-card h2 {
  color: var(--bg);
}

.cta-card .btn.primary {
  background: var(--bg);
  color: var(--deep);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.12);
}

.cta-card .btn.ghost {
  color: var(--bg);
  border-color: rgba(230, 244, 239, 0.42);
  background: rgba(230, 244, 239, 0.08);
}

.cta-actions {
  display: flex;
  gap: 10px;
}

.feature-grid {
  margin: 32px auto;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

.feature-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
  padding: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 360px;
}

.feature-card h3 {
  margin: 0;
}

.feature-card p {
  margin: 0;
  color: var(--muted);
}

.solutions-grid {
  margin: 24px auto 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: flex-start;
}

.solution-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
  padding: 0;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  min-width: 240px;
  max-width: 360px;
}

.solution-toggle {
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px;
  cursor: pointer;
  font: inherit;
  color: inherit;
}
.solution-toggle h3 { margin: 0; font-size: 17px; }
.solution-toggle .chevron {
  font-size: 18px;
  line-height: 1;
  color: var(--muted);
  transition: transform 0.2s ease;
}
.solution-toggle[aria-expanded="true"] .chevron {
  transform: rotate(45deg);
}

.solution-body {
  padding: 0 14px 14px 14px;
  display: grid;
  gap: 6px;
  flex: 1 1 auto;
}
.solution-card h3 { margin: 0; }
.solution-card p { margin: 0; color: var(--muted); }
.solution-card ul {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  display: grid;
  gap: 4px;
}

.pillars {
  margin: 28px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.pillar-card {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 14px;
  padding: 14px;
  box-shadow: var(--shadow);
}

.pillar-card h3 { margin: 0 0 8px; }
.pillar-card p { margin: 0; color: var(--muted); }

.form-wrapper {
  margin: 20px auto 16px;
  width: 50%;
  max-width: 420px;
}

.demo-page {
  margin-top: 12px;
  margin-bottom: 32px;
}

.demo-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}

.demo-content {
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  position: relative;
  min-width: 0;
  padding: 0 16px 0 0;
}

.demo-copy {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  max-width: none;
  padding: 32px 28px 28px 32px;
  border-radius: 16px;
  border: 1px solid rgba(24, 90, 54, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(167, 215, 197, 0.42));
  overflow: hidden;
}

.demo-copy::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.demo-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.demo-lede {
  margin: 0 0 16px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-bullets {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 16px;
  font-size: 15px;
  line-height: 1.5;
  flex: 1;
  align-content: start;
}

.demo-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 12px;
}

.demo-bullets li::before {
  content: "";
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.42em;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px rgba(33, 115, 70, 0.14);
}

.demo-cta-line {
  margin-top: auto;
  width: 100%;
  padding: 12px 14px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 12px;
}

.demo-grid:has(.demo-contact:not([hidden])) {
  align-items: start;
}

.demo-content:has(.demo-contact:not([hidden])) {
  align-items: center;
  align-self: stretch;
  padding: 0 16px 0 0;
}

.demo-contact {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 0;
}

.demo-contact-head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 18px;
}

.demo-contact h1 {
  margin: 0;
  font-size: clamp(1.85rem, 3vw, 2.5rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.demo-contact-lede {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-company-details {
  display: grid;
  gap: 0;
  width: 100%;
  margin: 0;
  border-top: 1px solid rgba(24, 90, 54, 0.12);
}

.demo-company-details__row {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(24, 90, 54, 0.12);
}

.demo-company-details dt {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.demo-company-details dd {
  margin: 0;
  color: var(--text);
  font-size: 15px;
  line-height: 1.55;
}

.demo-company-details a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.demo-company-details a:hover {
  text-decoration: underline;
}

.demo-form-card {
  width: 100%;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.demo-form-card form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.demo-form-card .form-note {
  margin-top: auto;
}

.demo-booking {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  height: 100%;
  padding: 32px 28px 28px 32px;
  border-radius: 16px;
  border: 1px solid rgba(24, 90, 54, 0.14);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.72), rgba(167, 215, 197, 0.42));
  overflow: hidden;
}

.demo-booking::before {
  content: "";
  position: absolute;
  left: 0;
  top: 24px;
  bottom: 24px;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: linear-gradient(180deg, var(--accent), var(--accent-2));
}

.demo-booking__head {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.demo-booking__lede {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.demo-booking__title {
  margin: 0 0 8px;
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.demo-booking__hint {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.demo-booking__frame {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(24, 90, 54, 0.1);
  overflow: hidden;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.demo-booking__frame .calendly-inline-widget {
  flex: 1;
  width: 100%;
  min-width: 0;
  min-height: 420px;
}

.form-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  box-shadow: var(--shadow);
}

.form-card form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

.form-field label {
  font-weight: 600;
  color: var(--text);
  font-size: 14px;
}

.required-mark {
  color: #b42318;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 8px 10px;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  font: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: rgba(33, 115, 70, 0.7);
  box-shadow: 0 0 0 3px rgba(33, 115, 70, 0.2);
  background: #ffffff;
}

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

.demo-form-card .btn.primary {
  padding: 10px 14px;
  font-size: 14px;
}

.option-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip-option {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #ffffff;
  cursor: pointer;
  user-select: none;
  transition: border-color 0.15s ease, background 0.15s ease;
  min-width: 200px;
  white-space: nowrap;
}

.chip-option input {
  accent-color: var(--accent);
  margin: 0;
}

.form-actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  margin-top: 0;
}

.form-note {
  margin: 0;
  line-height: 1.4;
  color: var(--muted);
  font-size: 12px;
}

.small {
  font-size: 13px;
}

.savings {
  margin: 30px auto;
}

.savings-card {
  border: 1px solid var(--border);
  background: linear-gradient(135deg, rgba(33, 115, 70, 0.12), rgba(24, 90, 54, 0.12));
  border-radius: 16px;
  padding: 20px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

/* Features page */
.features-hero {
  padding-top: 56px;
}

.features-hero__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 320px;
}

.features-hero h1 {
  margin: 0;
  max-width: 900px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.features-hero .lede {
  max-width: 640px;
  color: var(--muted);
}

/* Why us page */
.whyus-hero {
  padding-top: 56px;
  padding-bottom: 24px;
}

.whyus-hero__inner {
  display: grid;
  justify-items: center;
  text-align: center;
  gap: 16px;
  max-width: 820px;
  margin: 0 auto;
  min-height: 280px;
  align-content: center;
}

.whyus-hero h1 {
  margin: 0;
  font-size: clamp(36px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.whyus-hero .lede {
  margin: 0;
  max-width: 640px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.whyus-band {
  padding: 72px 0;
}

.whyus-band--soft {
  background: radial-gradient(circle at 18% 8%, rgba(167, 215, 197, 0.22), transparent 30%),
              linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.82));
}

.whyus-band__inner {
  display: grid;
  gap: 28px;
}

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

.whyus-card {
  grid-column: span 2;
  position: relative;
  overflow: hidden;
  min-height: 168px;
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 22px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(24, 90, 54, 0.09);
}

.whyus-card::before {
  content: "";
  position: absolute;
  inset: auto -40px -64px auto;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(33, 115, 70, 0.14), transparent 68%);
  pointer-events: none;
}

.whyus-card span {
  display: inline-flex;
  margin-bottom: 22px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(33, 115, 70, 0.09);
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.whyus-card h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.whyus-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.whyus-pillars-grid .whyus-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.whyus-pillars-grid .whyus-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.whyus-roi__head {
  max-width: 760px;
}

.whyus-roi__head h2 {
  margin: 0 0 12px;
}

.whyus-roi__head .lede {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.whyus-roi__head .lede strong {
  color: var(--text);
  font-weight: 600;
}

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

.whyus-stat {
  padding: 22px 18px;
  border-radius: 22px;
  border: 1px solid rgba(24, 90, 54, 0.12);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 16px 42px rgba(24, 90, 54, 0.1);
  text-align: center;
  backdrop-filter: blur(10px);
}

.whyus-stat__number {
  display: block;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 8px;
  color: var(--accent);
}

.whyus-stat__label {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

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

.whyus-trust-card {
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 50px rgba(24, 90, 54, 0.08);
}

.whyus-trust-card .eyebrow {
  margin: 0 0 10px;
}

.whyus-trust-card h3 {
  margin: 0 0 10px;
  font-size: 20px;
}

.whyus-trust-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

/* Pricing page */
.pricing-band__inner {
  display: grid;
  gap: 28px;
}

.pricing-hero-stack {
  max-width: 920px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 32px;
}

.pricing-hero .switcher-header h2,
.pricing-faq .switcher-header h2 {
  margin: 8px 0 10px;
  max-width: 760px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: normal;
}

.pricing-hero .switcher-header .lede,
.pricing-faq .switcher-header .lede {
  margin: 0;
  color: var(--muted);
  max-width: 620px;
}

.pricing-plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
}

.pricing-plan {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 18px;
  min-height: 100%;
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 22px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(24, 90, 54, 0.09);
}

.pricing-plan--featured {
  border: 2px solid rgba(33, 115, 70, 0.38);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.94), rgba(230, 244, 239, 0.62));
  box-shadow: 0 26px 68px rgba(24, 90, 54, 0.16);
}

@media (min-width: 721px) {
  .pricing-plan--featured {
    transform: translateY(-4px);
  }
}

.pricing-plan__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.pricing-plan__titles h3 {
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 30px);
  letter-spacing: -0.03em;
}

.pricing-plan__subtitle {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
}

.pricing-plan__price-note {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-3);
  line-height: 1.4;
}

.pricing-plan__badge {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(33, 115, 70, 0.14);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.pricing-plan__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
  align-content: start;
}

.pricing-plan__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(24, 90, 54, 0.9);
  line-height: 1.45;
  font-size: 15px;
}

.pricing-plan__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(33, 115, 70, 0.55);
}

.pricing-plan--featured .pricing-plan__list li:first-child {
  font-weight: 600;
  color: var(--text);
}

.pricing-plan__cta {
  width: 100%;
  justify-content: center;
  align-self: end;
  border-radius: 12px;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 15px;
}

.pricing-faq-list {
  display: grid;
  gap: 14px;
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
}

.pricing-faq-stack {
  max-width: 820px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  gap: 24px;
}

.pricing-faq-item {
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 22px;
  padding: 22px 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: 0 18px 50px rgba(24, 90, 54, 0.08);
}

.pricing-faq-item h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.pricing-faq-item p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.ribbon-card {
  border: 1px solid rgba(33, 115, 70, 0.22);
  border-radius: 26px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.84), rgba(167, 215, 197, 0.28));
  box-shadow: var(--shadow);
  padding: 22px;
}

.ribbon-card__tab {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 18px;
  border-radius: 16px 16px 8px 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.ribbon-card__groups {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.ribbon-card__groups span {
  min-height: 72px;
  border: 1px solid rgba(33, 115, 70, 0.18);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.7);
  display: grid;
  place-items: center;
  color: var(--text);
  font-weight: 700;
  text-align: center;
  box-shadow: 0 12px 28px rgba(24, 90, 54, 0.08);
}

.ribbon-showcase.solutions-band.feature-band {
  padding: 96px 0;
  background: radial-gradient(circle at 18% 8%, rgba(167, 215, 197, 0.22), transparent 30%),
              linear-gradient(180deg, var(--surface), rgba(255, 255, 255, 0.82));
  color: var(--text);
  box-shadow: none;
  border: none;
}

.ribbon-showcase__inner {
  display: grid;
  gap: 28px;
}

.ribbon-showcase.solutions-band.feature-band .switcher-header h2 {
  margin: 8px 0 10px;
  max-width: 760px;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.02em;
  color: var(--text);
  white-space: normal;
}

.ribbon-showcase.solutions-band.feature-band .switcher-header .lede {
  margin: 0;
  color: var(--muted);
  max-width: 520px;
}

.ribbon-showcase.solutions-band.feature-band .eyebrow {
  color: var(--accent);
}

.ribbon-button-groups {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}

.ribbon-button-groups--stack {
  grid-template-columns: 1fr;
}

.ribbon-feature-row {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 22px;
  align-items: stretch;
}

.ribbon-feature-row:nth-child(even) {
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
}

.ribbon-feature-row:nth-child(even) .ribbon-button-group {
  order: 2;
}

.ribbon-feature-row:nth-child(even) .ribbon-feature-row__media {
  order: 1;
}

.ribbon-feature-row__media {
  margin: 0;
  min-height: 200px;
  border-radius: 26px;
  border: 1px solid rgba(24, 90, 54, 0.1);
  background: rgba(255, 255, 255, 0.55);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ribbon-feature-row__media:has(img),
.ribbon-feature-row__media:has(video) {
  padding: 6px;
}

.ribbon-feature-row__media:not(:has(img)) {
  background: rgba(247, 251, 248, 0.6);
}

.ribbon-feature-row__media img,
.ribbon-feature-row__media video {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: contain;
  object-position: center;
  transform: scale(1.18);
  transform-origin: center;
}

.ribbon-button-group {
  display: grid;
  gap: 18px;
  align-content: start;
  border: 1px solid rgba(24, 90, 54, 0.12);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 18px 46px rgba(24, 90, 54, 0.08);
  padding: 22px;
}

.ribbon-button-group__head {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.ribbon-button-group__head > span {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  background: rgba(33, 115, 70, 0.1);
  color: var(--accent);
  font-weight: 700;
}

.ribbon-button-group__head h3 {
  margin: 0 0 4px;
  font-size: clamp(23px, 2.4vw, 32px);
  line-height: 1;
  letter-spacing: -0.03em;
}

.ribbon-button-group__head p {
  margin: 0;
  color: var(--muted);
}

.ribbon-button-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 12px;
}

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

.ribbon-button-card {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  border: 1px solid rgba(24, 90, 54, 0.1);
  border-radius: 18px;
  background: rgba(247, 251, 248, 0.82);
  padding: 14px;
}

.ribbon-button-card img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.ribbon-button-card h4 {
  margin: 0 0 4px;
  font-size: 16px;
  line-height: 1.15;
}

.ribbon-button-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.ribbon-button-card--text {
  grid-template-columns: minmax(0, 1fr);
}

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

.ribbon-feature-card {
  position: relative;
  display: grid;
  gap: 12px;
  align-content: start;
  min-height: 100%;
  border: 1px solid rgba(24, 90, 54, 0.12);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(247, 251, 248, 0.78));
  box-shadow: 0 18px 46px rgba(24, 90, 54, 0.09);
  padding: 22px;
}

.ribbon-feature-card__number {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(33, 115, 70, 0.1);
  color: var(--accent);
  font-weight: 700;
}

.ribbon-feature-card__kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ribbon-feature-card h3 {
  margin: 0;
  font-size: clamp(21px, 2.2vw, 28px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.ribbon-feature-card p {
  margin: 0;
  color: var(--muted);
}

.ribbon-feature-card ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 4px 0 0;
  padding: 0;
}

.ribbon-feature-card li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
}

.ribbon-feature-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
}

.site-footer {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 24px 0 32px;
  border-top: 1px solid var(--border);
  background: radial-gradient(circle at 10% 0%, rgba(33, 115, 70, 0.08), transparent 25%), var(--bg);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  column-gap: 24px;
  row-gap: 16px;
}

.footer-brand p {
  margin: 6px 0 0;
  color: var(--muted);
}

.footer-brand {
  justify-self: start;
  display: flex;
  align-items: center;
  min-height: 34px;
}

.brand-inline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}

.brand-inline img {
  height: 28px;
  width: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 18px;
  justify-self: center;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 2px;
  color: var(--muted);
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.footer-links a:hover {
  color: var(--text);
}

.footer-social {
  display: flex;
  gap: 8px;
  justify-content: flex-end;
  align-items: center;
  justify-self: end;
}

.social-icon {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: transparent;
  border: 1px solid rgba(24, 90, 54, 0.16);
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.social-icon:hover {
  border-color: rgba(33, 115, 70, 0.7);
  background: rgba(33, 115, 70, 0.08);
  transform: translateY(-1px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
  fill: var(--text);
}

.social-icon:hover svg {
  fill: var(--text);
}
/* Pricing page */
.pricing-hero h1 {
  margin: 10px 0 12px;
  font-size: clamp(32px, 5vw, 46px);
}

.price-grid {
  margin: 40px auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 22px;
}

.price-card {
  border: 1px solid var(--border);
  background: linear-gradient(160deg, rgba(230,244,239,0.12), rgba(230,244,239,0.05));
  border-radius: 18px;
  padding: 22px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-content: start;
  min-height: 560px;
}

.price-card.featured {
  border-color: rgba(33, 115, 70, 0.4);
  box-shadow: 0 22px 60px rgba(33, 115, 70, 0.22);
  background: linear-gradient(150deg, rgba(33,115,70,0.08), rgba(230,244,239,0.08));
}

.price-tag {
  font-size: 28px;
  margin: 0;
}
.price-tag span { font-size: 14px; color: var(--muted); margin-left: 6px; }

.price-card h3 {
  margin: 0 0 6px;
  font-size: 28px;
  letter-spacing: -0.01em;
}

.price-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 8px;
  color: var(--muted);
}

.price-card .btn {
  width: 100%;
  justify-content: center;
  padding: 16px 18px;
  font-weight: 700;
  font-size: 15px;
  height: 52px;
  align-items: center;
  display: inline-flex;
  margin-top: auto;
}

.comparison {
  margin: 50px auto;
}
.comparison-head h2 { margin: 8px 0 18px; }
.comparison-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}
.comparison-grid div {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  padding: 14px;
}
.comparison-grid h4 { margin: 0 0 6px; }
.comparison-grid p { margin: 0; color: var(--muted); }

.faq {
  margin: 40px auto 20px;
}
.faq-list {
  display: grid;
  gap: 12px;
}
.faq-item {
  border: 1px solid var(--border);
  background: var(--panel);
  border-radius: 12px;
  padding: 14px;
}
.faq-item h4 { margin: 0 0 6px; }
.faq-item p { margin: 0; color: var(--muted); }

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  font-weight: 700;
  font-size: 12px;
  margin: 0;
}

.lede {
  margin: 0;
}

@keyframes orbit {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

@keyframes beacon {
  0% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
  50% { transform: translate(-50%, -50%) scale(1.4); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(0.8); opacity: 0.6; }
}

@media (max-width: 960px) {
  .nav {
    position: sticky;
    top: 0;
    flex-wrap: nowrap;
    gap: 8px;
    padding: 10px 14px;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
    background: var(--panel);
    border: 1px solid var(--border);
    box-shadow: 0 12px 30px rgba(24, 90, 54, 0.16);
    overflow: visible;
  }
  .brand { width: auto; }
  .nav-links { display: none; }
  .nav-actions { display: none; }
  .menu-toggle { display: inline-flex; }
  .mobile-menu { display: grid; }
  .nav.open .mobile-menu { opacity: 1; transform: translateY(0); }
  .nav.open .menu-toggle { border-color: rgba(33, 115, 70, 0.6); }
  .hero { grid-template-columns: 1fr; }
  .hero-copy { order: 1; }
  .hero-visual { order: 2; }
  .features-hero__inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  .demo-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .demo-content {
    padding: 0;
  }

  .demo-copy {
    height: auto;
  }

  .demo-content:has(.demo-contact:not([hidden])) {
    align-items: flex-start;
  }

  .demo-company-details__row {
    grid-template-columns: 96px minmax(0, 1fr);
    gap: 16px;
    padding: 12px 0;
  }

  .demo-bullets {
    flex: none;
  }

  .demo-cta-line {
    margin-top: 0;
  }

  .demo-booking__frame .calendly-inline-widget {
    min-height: 380px;
  }

  .demo-form-card .form-note {
    margin-top: 0;
  }
}

@media (max-width: 768px) {
  .form-wrapper {
    width: 100%;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .page-shell { padding: 18px 16px 60px; }
  .page-shell:has(main .cta-band:last-child) { padding-bottom: 0; }
  .page-shell > main { padding-top: 48px; }
  .nav { padding: 12px; }
  .hero-band { padding-bottom: 72px; }
  .product-proof,
  .feature-band,
  .workflow-band,
  .cta-band { padding-top: 56px; padding-bottom: 56px; }
  .product-preview-card,
  .workflow-band__inner,
  .cta-card { border-radius: 22px; padding: 20px; }
  .hero-actions, .nav-actions, .cta-actions { flex-wrap: wrap; }
  .glass.stack, .glass.board { position: relative; transform: none; left: auto; right: auto; top: auto; bottom: auto; margin-top: 12px; }
  .hero-visual { min-height: 0; padding: 0; }
  .features-hero { padding-top: 32px; }
  .features-hero h1 { font-size: clamp(36px, 12vw, 54px); }
  .whyus-hero { padding-top: 32px; padding-bottom: 12px; }
  .whyus-hero h1 { font-size: clamp(32px, 10vw, 48px); }
  .whyus-pillars-grid,
  .whyus-stats,
  .whyus-trust-grid {
    grid-template-columns: 1fr;
  }
  .whyus-pillars-grid .whyus-card,
  .whyus-pillars-grid .whyus-card:nth-child(4),
  .whyus-pillars-grid .whyus-card:nth-child(5) {
    grid-column: auto;
  }
  .pricing-plans {
    grid-template-columns: 1fr;
  }

  .pricing-plan--featured {
    transform: none;
  }

  .pricing-includes-grid {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-social {
    justify-self: center;
  }

  .footer-social {
    justify-content: center;
  }

  .whyus-band { padding-top: 56px; padding-bottom: 56px; }
  .feature-area.feature-band { padding: 56px 0; }
  .ribbon-feature-row { grid-template-columns: 1fr; }
  .ribbon-feature-row .ribbon-button-group { order: 1; }
  .ribbon-feature-row .ribbon-feature-row__media { order: 2; min-height: 160px; }
  .ribbon-button-groups { grid-template-columns: 1fr; }
  .ribbon-button-grid--2col { grid-template-columns: 1fr; }
  .ribbon-button-group { border-radius: 20px; padding: 18px; }
  .ribbon-button-card { grid-template-columns: 40px minmax(0, 1fr); padding: 12px; }
  .ribbon-button-card img { width: 34px; height: 34px; }
}




