:root {
  --forest:    #1E3D2F;
  --forest-dk: #142B20;
  --forest-lt: #2A5240;
  --moss:      #3A6B50;
  --sage:      #5A8F72;
  --mint:      #8FC4A2;
  --white:     #FFFFFF;
  --off-white: #F7FAF8;
  --cream:     #EEF5F1;
  --cream-2:   #E2EDE7;
  --ink:       #0F2219;
  --text-body: #3D5C4A;
  --text-mute: #7A9E8A;
  --serif:     'Manrope', sans-serif;
  --body:      'Manrope', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

* { font-family: var(--body); }

body {
  font-family: var(--body);
  background: var(--white);
  color: var(--forest-dk);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

/* ── NOISE ────────────────────────────────────────── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ── NAV ──────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(30,61,47,.08);
  transition: box-shadow .3s;
}

nav.scrolled {
  box-shadow: 0 2px 24px rgba(30,61,47,.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo-img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.nav-logo-text {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: .01em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-body);
  text-decoration: none;
  letter-spacing: .02em;
  transition: color .2s;
}
.nav-links a:hover { color: var(--forest); }

.nav-cta {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--white) !important;
  background: var(--forest);
  padding: 10px 24px;
  border-radius: 8px;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--moss) !important; }

/* ── HERO ─────────────────────────────────────────── */
.hero {
  min-height: 100vh;
  background: var(--forest-dk);
  display: flex;
  align-items: center;
  padding: 120px 52px 80px;
  position: relative;
  overflow: hidden;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 70% at 85% 50%, rgba(58,107,80,.35) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 10% 80%, rgba(42,82,64,.3) 0%, transparent 55%),
    var(--forest-dk);
}

/* Grid dots pattern */
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 40px 40px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 0%, transparent 100%);
}

/* Big logo watermark */
.hero-watermark {
  position: absolute;
  right: -28%;
  top: 52%;
  transform: translateY(-50%);
  width: min(82vw, 1100px);
  aspect-ratio: 1 / 1;
  opacity: .2;
  pointer-events: none;
}

.hero-watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(1.45) contrast(0.95) saturate(0.7);
}

@media (max-width: 1200px) {
  .hero-watermark {
    right: -32%;
    width: min(92vw, 980px);
    opacity: .18;
  }
}

.hero-content {
  position: relative;
  max-width: 760px;
  padding-top: 18px;
}

h1 {
  font-family: var(--serif);
  font-size: clamp(48px, 6.1vw, 78px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.016em;
  color: var(--white);
  margin-bottom: 24px;
  max-width: 10.8ch;
  text-wrap: balance;
}

h1 em {
  font-style: normal;
  color: var(--mint);
}

.hero-sub {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255,255,255,.72);
  max-width: 50ch;
  margin-bottom: 42px;
}

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

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  color: var(--forest-dk);
  background: var(--white);
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  transition: background .2s, transform .2s;
  letter-spacing: .01em;
}
.btn-primary:hover {
  background: var(--cream);
  transform: translateY(-1px);
}
.btn-primary svg { width: 15px; height: 15px; }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: color .2s, border-color .2s;
}
.btn-outline:hover {
  color: var(--white);
  border-color: rgba(255,255,255,.5);
}

.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 52px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
}
.hero-scroll-line {
  width: 40px;
  height: 1px;
  background: rgba(255,255,255,.2);
}

/* ── STATS BAR ───────────────────────────────────── */
.stats-bar {
  background: var(--forest);
  padding: 0 52px;
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.stat-item {
  flex: 1;
  padding: 20px 0 18px;
  border-right: 1px solid rgba(255,255,255,.08);
  padding-right: 20px;
  padding-left: 20px;
  text-align: left;
}
.stat-item:last-child { border-right: none; }

.stat-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 0;
}

.stat-icon {
  width: 18px;
  height: 18px;
  border-radius: 6px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  width: 11px;
  height: 11px;
  stroke: var(--mint);
}

.stat-num {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 650;
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 0;
  letter-spacing: -.005em;
  text-wrap: balance;
}

/* ── SECTION BASE ────────────────────────────────── */
section { padding: 88px 52px; }

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4b6f5c;
  margin-bottom: 14px;
}
.section-tag::before {
  content: '';
  width: 18px; height: 1px;
  background: #4b6f5c;
  opacity: .8;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(34px, 3.6vw, 50px);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.018em;
  color: var(--forest-dk);
  text-wrap: balance;
  max-width: 14ch;
}

.section-title.light { color: var(--white); }

.section-body {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.82;
  color: var(--text-body);
  max-width: 56ch;
}

/* ── ABOUT ───────────────────────────────────────── */
.about {
  background: #f2f5f3;
  position: relative;
  border-top: 1px solid #e4ebe7;
  border-bottom: 1px solid #e4ebe7;
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, .96fr);
  gap: 44px;
  align-items: start;
}

.about-content { display: flex; flex-direction: column; gap: 12px; }

.about-content .section-tag {
  margin-bottom: 8px;
  color: #3f6652;
}

.about-content .section-title {
  color: #11281f;
  font-size: clamp(34px, 3.4vw, 50px);
  line-height: 1.12;
  max-width: 12.8ch;
  margin-bottom: 2px;
}

.about-quote {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  color: #183529;
  line-height: 1.18;
  letter-spacing: -.012em;
  max-width: 14ch;
}

.about-highlight {
  font-style: italic;
  color: #234437;
  border-left: 3px solid #4f7d67;
  padding-left: 14px;
  margin: 2px 0 8px;
  font-size: 21px;
  line-height: 1.42;
  max-width: 42ch;
}

.about-narrative {
  font-size: 15px;
  line-height: 1.86;
  color: #3d5e4c;
  max-width: none;
}

.about-cards-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  justify-self: stretch;
  padding-top: 2px;
}

.about-cards-title {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #4b6f5c;
  font-weight: 600;
}

.about-cards-title::before {
  content: '';
  width: 18px;
  height: 1px;
  background: #4b6f5c;
  opacity: .8;
}

.about-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.av-card {
  background: var(--white);
  border: 1px solid #dde7e1;
  border-radius: 14px;
  padding: 20px 20px 18px;
  min-height: 174px;
  transition: box-shadow .3s, transform .3s;
}
.av-card:hover {
  box-shadow: 0 10px 30px rgba(30,61,47,.08);
  transform: translateY(-1px);
}

.av-card.accent {
  background: linear-gradient(140deg, #102b20 0%, #0c3222 60%, #123f2c 100%);
  border-color: #184936;
}

.av-num {
  font-size: 10px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #8ca79a;
  margin-bottom: 8px;
  font-weight: 600;
}

.av-title {
  font-family: var(--body);
  font-size: 18px;
  font-weight: 600;
  color: #183327;
  line-height: 1.2;
  letter-spacing: -.01em;
  margin-bottom: 8px;
}

.av-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.av-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid #d6e3dc;
  background: #f4f8f6;
  color: #214334;
}

.av-icon svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
}

.av-card.accent .av-icon {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.86);
}

.av-title.light { color: var(--white); }

.av-desc {
  font-size: 13px;
  color: #587364;
  line-height: 1.6;
}

.av-desc.light { color: rgba(255,255,255,.55); }

.av-points {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.av-point {
  font-size: 12px;
  color: rgba(255,255,255,.72);
  line-height: 1.45;
}

.av-note {
  display: flex;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #dbe6df;
  font-size: 13px;
  color: #2b4a3a;
  line-height: 1.5;
}

/* ── PROJECTS ─────────────────────────────────────── */
.projects { background: #f4f7f5; }

.product-shell {
  background: #f6faf7;
  border: 1px solid #d9e3dc;
  border-radius: 18px;
  padding: 22px;
}

.product-top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  min-height: 236px;
  margin-bottom: 14px;
}

.product-copy {
  position: relative;
  padding: 26px 28px 24px;
  background: linear-gradient(140deg, #0f2a20 0%, #123c2a 100%);
  border: 1px solid #173f2d;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.product-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(206, 232, 216, .9);
  font-weight: 700;
  position: absolute;
  top: 14px;
  right: 16px;
  margin-bottom: 0;
}
.product-live::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #8fc4a2;
}

.product-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.product-logo {
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.25));
  margin-top: 0;
}

.product-brand-text {
  display: flex;
  flex-direction: column;
}

.product-title {
  font-family: var(--serif);
  font-size: clamp(40px, 3.8vw, 50px);
  line-height: 1;
  letter-spacing: -.02em;
  color: #fff;
  margin-bottom: 2px;
}

.product-subtitle {
  font-style: italic;
  font-size: 16px;
  color: rgba(233, 244, 237, .85);
  margin-bottom: 0;
}

.product-intro {
  font-size: 19px;
  line-height: 1.58;
  color: rgba(255,255,255,.92);
  max-width: none;
}

.product-pain {
  background: #ffffff;
  border: 1px solid #dbe3dd;
  border-radius: 12px;
  padding: 20px 20px 18px;
}

.pain-label {
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #5a7b67;
  margin-bottom: 10px;
}

.pain-title {
  font-size: 22px;
  line-height: 1.36;
  color: #173025;
  margin-bottom: 10px;
  max-width: none;
}

.pain-body {
  font-size: 14px;
  line-height: 1.68;
  color: #446454;
  max-width: none;
}

.product-body {
  padding: 0;
}

.product-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.domain-card {
  border: 1px solid #dbe3dd;
  border-radius: 12px;
  background: #fafcfb;
  overflow: hidden;
}

.domain-head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-bottom: 1px solid #e2e8e3;
  background: #f0f4f1;
}
.domain-card.hc .domain-head { background: #edf3ff; }
.domain-card.gs .domain-head { background: #edf7f0; }

.domain-icon {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #dce8e0;
  color: #1f4a35;
}
.domain-card.hc .domain-icon { background: #dbe8ff; color: #2f69d8; }
.domain-card.gs .domain-icon { background: #d8ecdd; color: #2f6a46; }

.domain-icon svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
}

.domain-title {
  font-size: 18px;
  color: #183025;
  font-weight: 600;
}
.domain-sub {
  font-size: 12.5px;
  color: #5a7a68;
}

.domain-list { padding: 4px 0; }
.domain-item {
  padding: 10px 14px;
  border-bottom: 1px solid #e5ebe7;
}
.domain-item:last-child { border-bottom: none; }

.domain-item-title {
  font-size: 15px;
  color: #163126;
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  font-weight: 600;
}
.domain-item-title::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #4e8a68;
  flex-shrink: 0;
}
.domain-card.hc .domain-item-title::before { background: #3a79ea; }

.domain-item-desc {
  font-size: 13px;
  color: #4a6858;
  line-height: 1.5;
}

.product-integration,
.product-platform,
.product-lifecycle {
  margin-top: 14px;
  border: 1px solid #dbe3dd;
  border-radius: 12px;
  background: #fafcfb;
  padding: 14px;
}

.integration-title,
.platform-title,
.lifecycle-title {
  font-size: 11px;
  letter-spacing: .11em;
  text-transform: uppercase;
  color: #4a6d5a;
  font-weight: 700;
  margin-bottom: 10px;
}

.integration-row {
  font-size: 13.5px;
  color: #335545;
  line-height: 1.55;
  margin-bottom: 7px;
}
.integration-row:last-child { margin-bottom: 0; }

.int-tag {
  font-weight: 600;
  color: #24543d;
}
.int-arrow { color: #799483; }

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

.platform-item {
  border: 1px solid #d7e0d9;
  border-radius: 9px;
  background: #ffffff;
  padding: 10px 8px;
  text-align: center;
  font-size: 12px;
  color: #2f4b3b;
}
.platform-item svg {
  width: 16px;
  height: 16px;
  stroke: #64816f;
  display: block;
  margin: 0 auto 7px;
}

.lifecycle-track {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 8px;
  align-items: start;
}

.lifecycle-track::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 7%;
  right: 7%;
  height: 1px;
  background: #c7d4cb;
}
.life-step { text-align: center; }
.life-dot {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid #bdcbc2;
  background: #eff4f1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.life-dot svg {
  width: 12px;
  height: 12px;
  stroke: #567362;
}
.life-label {
  font-size: 12px;
  color: #355546;
}
.life-step.active .life-dot {
  background: #dce8ff;
  border-color: #7ea7f7;
}
.life-step.active .life-label { color: #2d66d5; }

/* ── PRICING ──────────────────────────────────────── */
.pricing { background: var(--forest-dk); padding-bottom: 120px; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 56px;
}

.price-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 18px;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color .3s, background .3s;
}
.price-card:hover {
  border-color: rgba(90,143,114,.3);
  background: rgba(255,255,255,.06);
}

.price-card.recommended {
  background: var(--forest-lt);
  border-color: rgba(143,196,162,.25);
}
.price-card.recommended:hover {
  border-color: rgba(143,196,162,.4);
}

.price-rec-label {
  position: absolute;
  top: -1px; right: 24px;
  background: var(--mint);
  color: var(--forest-dk);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 0 0 8px 8px;
}

.price-tier {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--mint);
  margin-bottom: 20px;
}

.price-amount {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -.01em;
  line-height: 1.08;
  margin-bottom: 4px;
}
.price-amount span {
  font-family: var(--body);
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,.4);
  letter-spacing: 0;
}

.price-note {
  font-size: 13px;
  color: rgba(255,255,255,.56);
  margin-bottom: 24px;
  line-height: 1.62;
}

.price-sep {
  height: 1px;
  background: rgba(255,255,255,.08);
  margin-bottom: 24px;
}

.price-features {
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
  margin-bottom: 28px;
}

.pf {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  line-height: 1.45;
}
.pf.on { color: rgba(255,255,255,.75); }
.pf.off { color: rgba(255,255,255,.25); }

.pf-ic {
  width: 16px; height: 16px;
  flex-shrink: 0; margin-top: 1px;
}

.price-btn {
  display: block;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  padding: 13px 20px;
  border-radius: 8px;
  text-decoration: none;
  transition: all .2s;
  letter-spacing: .01em;
}

.price-btn.outline {
  color: rgba(255,255,255,.6);
  border: 1px solid rgba(255,255,255,.15);
}
.price-btn.outline:hover {
  background: rgba(255,255,255,.07);
  color: var(--white);
}

.price-btn.solid {
  background: var(--white);
  color: var(--forest-dk);
}
.price-btn.solid:hover {
  background: var(--cream);
}

/* ── CONTACT ──────────────────────────────────────── */
.contact { background: var(--off-white); }

.contact-inner {
  max-width: 920px;
  margin: 0 auto;
}

.contact-methods {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 36px;
}

.cmethod {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 22px;
  background: var(--white);
  border: 1.5px solid var(--cream-2);
  border-radius: 12px;
  text-decoration: none;
  transition: all .2s;
}
.cmethod:hover {
  border-color: var(--moss);
  box-shadow: 0 4px 20px rgba(30,61,47,.08);
  transform: translateX(4px);
}

.cmethod-icon {
  width: 40px; height: 40px;
  background: var(--cream);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cmethod-icon svg { width: 18px; height: 18px; stroke: var(--forest); }

.cmethod-lbl {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-mute);
  margin-bottom: 2px;
}
.cmethod-val {
  font-size: 14px;
  color: var(--forest-dk);
  font-weight: 400;
}

/* ── REGISTRATION ─────────────────────────────────── */
.registration {
  background: var(--white);
}

.registration-inner {
  max-width: 920px;
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.registration-card {
  background: var(--off-white);
  border: 1.5px solid var(--cream-2);
  border-radius: 18px;
  padding: 28px;
}

.reg-form {
  display: grid;
  gap: 24px;
}

.reg-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.reg-fieldset legend {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--forest);
  margin-bottom: 4px;
}

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

.reg-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

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

.reg-field span {
  font-size: 13px;
  color: var(--text-body);
}

.reg-field span em {
  color: var(--moss);
  font-style: normal;
}

.reg-field input,
.reg-field select,
.reg-field textarea {
  border: 1.5px solid var(--cream-2);
  border-radius: 10px;
  padding: 12px 14px;
  font: inherit;
  color: var(--forest-dk);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
}

.reg-field input:focus,
.reg-field select:focus,
.reg-field textarea:focus {
  outline: none;
  border-color: var(--moss);
  box-shadow: 0 0 0 3px rgba(58,107,80,.12);
}

.reg-products {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.reg-check {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border: 1.5px solid var(--cream-2);
  border-radius: 999px;
  font-size: 14px;
  cursor: pointer;
}

.reg-check input {
  accent-color: var(--forest);
}

.reg-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-body);
}

.reg-terms a {
  color: var(--moss);
}

.reg-actions {
  display: flex;
  justify-content: flex-start;
}

.reg-submit.is-loading {
  opacity: .7;
  cursor: wait;
}

.reg-feedback {
  font-size: 14px;
  padding: 12px 14px;
  border-radius: 10px;
}

.reg-feedback.is-error {
  background: #fdecec;
  color: #8b1e1e;
}

.reg-feedback.is-success {
  background: #eaf7ef;
  color: #1f6b3f;
}

.reg-success {
  text-align: center;
  padding: 24px 12px;
}

.reg-success-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--cream);
  color: var(--forest);
  font-size: 24px;
  font-weight: 700;
}

.reg-success h3 {
  font-size: 22px;
  color: var(--forest);
  margin-bottom: 8px;
}

.reg-success p {
  color: var(--text-body);
  margin-bottom: 18px;
}

/* ── FOOTER ───────────────────────────────────────── */
footer {
  background: var(--forest-dk);
  padding: 40px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-logo img {
  width: 28px; height: 28px;
  opacity: .8;
  filter: brightness(10);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 700;
  color: rgba(255,255,255,.6);
}

.footer-copy {
  font-size: 13px;
  color: rgba(255,255,255,.25);
}

/* ── ANIMATIONS ────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (max-width: 960px) {
  nav, .stats-bar, section, footer { padding-left: 24px; padding-right: 24px; }
  .hero { padding: 120px 24px 80px; }
  .hero-content { padding-top: 0; }
  h1 { max-width: 12ch; }
  .hero-watermark {
    right: -45%;
    top: 50%;
    width: min(125vw, 760px);
    opacity: .15;
  }
  .about-inner { grid-template-columns: 1fr; gap: 28px; }
  .about-content { gap: 10px; }
  .about-highlight { font-size: 19px; }
  .about-narrative { font-size: 14px; line-height: 1.75; max-width: 100%; }
  .about-cards { grid-template-columns: 1fr; }
  .product-top { grid-template-columns: 1fr; }
  .product-top { min-height: auto; }
  .product-shell { padding: 16px; }
  .product-top { gap: 10px; margin-bottom: 10px; }
  .product-copy { padding: 24px 20px 22px; justify-content: flex-start; }
  .product-live { top: 14px; right: 16px; font-size: 10px; }
  .product-brand { gap: 10px; margin-bottom: 12px; }
  .product-logo { width: 56px; height: 56px; }
  .product-subtitle { font-size: 15px; }
  .product-pain { padding: 18px; }
  .pain-title { font-size: 19px; }
  .pain-body { font-size: 14px; }
  .product-body { padding: 16px; }
  .product-intro { font-size: 17px; max-width: 100%; }
  .product-logo { width: 58px; height: 58px; margin-top: 0; }
  .reg-grid { grid-template-columns: 1fr; }
  .registration-card { padding: 20px; }
  .product-columns { grid-template-columns: 1fr; }
  .domain-title { font-size: 17px; }
  .domain-item-title { font-size: 14px; }
  .platform-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .lifecycle-track { grid-template-columns: 1fr; gap: 14px; }
  .lifecycle-track::before { display: none; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding-left: 0; text-align: left; }
  .stat-item:last-child { border-bottom: none; }
  footer { flex-direction: column; gap: 12px; text-align: center; }
  .nav-links { display: none; }
}

/* ── INNER PAGES ─────────────────────────────────── */
.inner-hero {
  background: var(--forest-dk);
  padding: 96px 52px 40px;
  position: relative;
  overflow: hidden;
}

.inner-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 90% 20%, rgba(58,107,80,.28) 0%, transparent 55%),
    var(--forest-dk);
  pointer-events: none;
}

.inner-hero-inner {
  position: relative;
  max-width: 920px;
}

.inner-hero h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -.02em;
  color: var(--white);
  margin-bottom: 0;
  max-width: none;
}

.inner-hero .crumb {
  font-size: 12px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: rgba(255,255,255,.42);
  margin-bottom: 14px;
}

.inner-hero .crumb a {
  color: rgba(206, 232, 216, .85);
  text-decoration: none;
}
.inner-hero .crumb a:hover { text-decoration: underline; }

.inner-hero-sub {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255,255,255,.68);
  max-width: 52ch;
  margin-top: 14px;
}

.page-block {
  padding: 72px 52px 88px;
  background: var(--white);
  border-top: 1px solid #e4ebe7;
}

.page-block .section-title {
  margin-bottom: 16px;
}

.page-block-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.page-block-card {
  border: 1px solid #dbe3dd;
  border-radius: 14px;
  padding: 22px 20px;
  background: #fafcfb;
}

.page-block-card h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--forest-dk);
  margin-bottom: 8px;
}

.page-block-card p {
  font-size: 14px;
  line-height: 1.62;
  color: var(--text-body);
}

.legal-prose {
  max-width: 720px;
  margin: 0 auto;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-mute);
  margin-bottom: 20px;
}

.legal-prose p,
.legal-prose li {
  font-size: 15px;
  line-height: 1.75;
  color: var(--text-body);
}

.legal-prose h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  margin: 28px 0 10px;
}

.legal-prose h2:first-of-type {
  margin-top: 0;
}

.legal-prose ul {
  margin: 10px 0 14px 1.2rem;
  display: grid;
  gap: 8px;
}

.legal-prose a {
  color: var(--moss);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-actions {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--cream-2);
}

.product-cta {
  padding: 48px 52px 72px;
  background: #f4f7f5;
  border-top: 1px solid #e4ebe7;
  text-align: center;
}

.product-cta-inner {
  max-width: 560px;
  margin: 0 auto;
}

.product-cta p {
  font-size: 15px;
  color: var(--text-body);
  line-height: 1.7;
  margin-bottom: 22px;
}

@media (max-width: 960px) {
  .inner-hero { padding: 88px 24px 32px; }
  .page-block { padding: 48px 24px 64px; }
  .page-block-grid { grid-template-columns: 1fr; }
  .product-cta { padding: 40px 24px 56px; }
}

/* ── PRICING + CALCULATOR (Ruang HR) — kalkulator kiri, pricing kanan */
.pr-combined {
  background: #f4f7f5;
  border-top: 1px solid #e2e8e3;
  border-bottom: 1px solid #e2e8e3;
  padding: clamp(3rem, 6vw, 5rem) clamp(1rem, 5vw, 4.5rem);
  width: 100%;
  box-sizing: border-box;
}
.pr-combined-inner {
  max-width: none;
  width: 100%;
  margin: 0;
  display: grid;
  grid-template-columns: minmax(260px, min(440px, 38vw)) minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.75rem) clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media (min-width: 901px) {
  .pr-combined-calc {
    position: sticky;
    top: 88px;
    align-self: start;
  }
}
.pr-combined-calc,
.pr-combined-pricing {
  min-width: 0;
}
.pr-calc-panel {
  background: #fff;
  border: 1px solid rgba(30, 61, 47, 0.1);
  border-radius: 16px;
  box-shadow: 0 4px 28px rgba(30, 61, 47, 0.07);
}
.pr-combined-calc .pr-calc-inner {
  max-width: none;
  margin: 0;
  padding: 1.5rem 1.35rem 1.65rem;
}
.pr-combined-calc .pr-calc-layout {
  grid-template-columns: 1fr;
  gap: 1.35rem;
}
.pr-calc-controls {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.pr-combined-calc .pr-ctrl-group {
  margin-bottom: 1rem;
}
.pr-combined-calc .pr-ctrl-group:last-of-type {
  margin-bottom: 0;
}
.pr-combined-calc .pr-section-eyebrow {
  margin-bottom: 0.5rem;
}
.pr-section-heading--calc {
  font-size: clamp(1.45rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}
.pr-section-heading--pricing {
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
}
.pr-pricing-head {
  margin-bottom: 1.5rem;
}
.pr-combined-pricing .pr-section-sub--pricing {
  max-width: 56rem;
  margin-bottom: 0;
}
.pr-combined-pricing .pr-grid {
  padding-top: 4px;
  margin: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.pr-combined-pricing .pr-card {
  padding: 1.35rem 1.2rem 1.4rem;
  border-radius: 14px;
  gap: 1rem;
}
.pr-combined-pricing .pr-card.pr-featured {
  padding-top: 1.65rem;
}
.pr-combined-pricing .pr-name {
  font-size: 1.2rem;
}
.pr-combined-pricing .pr-desc {
  font-size: 12.5px;
  line-height: 1.5;
}
.pr-combined-pricing .pr-price {
  font-size: clamp(1.85rem, 3vw, 2.35rem);
}
.pr-combined-pricing .pr-features li {
  font-size: 12.5px;
}
.pr-combined-pricing .pr-addon {
  margin-top: 1.25rem;
  border-radius: 14px;
}
@media (min-width: 901px) {
  .pr-combined-pricing {
    padding-left: 2.25rem;
    margin-left: 0.25rem;
    border-left: 1px solid rgba(30, 61, 47, 0.12);
  }
}
.pr-section-eyebrow {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #0F6E56;
  margin-bottom: 0.75rem;
  display: block;
}
.pr-section-heading {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 400;
  color: #1A1A18;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.pr-section-heading em {
  font-style: italic;
  color: #0F6E56;
}
.pr-section-sub {
  font-size: 16px;
  color: #5C5C58;
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 3rem;
}
.pr-section-sub--calc {
  max-width: none;
  margin-bottom: 1.25rem;
  font-size: 14px;
  line-height: 1.62;
  color: #6a6a64;
}
.pr-combined-calc .pr-toggle {
  width: 100%;
}
.pr-combined-calc .pr-tog {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  padding: 8px 10px;
}
.pr-combined-calc .pr-result-total-amount {
  font-size: clamp(1.65rem, 3vw, 2rem);
}
.pr-combined-calc .pr-result {
  padding: 1.35rem 1.25rem;
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.pr-card {
  background: #fff;
  border: 0.5px solid rgba(26,26,24,0.10);
  border-radius: 12px;
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pr-card:hover {
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
  transform: translateY(-2px);
}
.pr-card.pr-featured {
  border: 1.5px solid #1D9E75;
  background: #FAFFFE;
  position: relative;
}
.pr-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 500;
  padding: 3px 14px;
  border-radius: 999px;
  background: #0F6E56;
  color: #fff;
  white-space: nowrap;
  font-family: 'DM Sans', sans-serif;
}
.pr-tag {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9A9A94;
  display: block;
  margin-bottom: 4px;
}
.pr-name {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  color: #1A1A18;
  line-height: 1.2;
  margin: 0 0 6px;
}
.pr-desc {
  font-size: 13.5px;
  color: #5C5C58;
  line-height: 1.55;
  margin: 0;
}
.pr-price-area {
  border-top: 0.5px solid rgba(26,26,24,0.10);
  padding-top: 1.1rem;
}
.pr-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 400;
  color: #1A1A18;
  line-height: 1;
}
.pr-price-unit {
  font-size: 13px;
  color: #9A9A94;
  margin-top: 4px;
}
.pr-saving {
  display: inline-block;
  margin-top: 8px;
  font-size: 12px;
  font-weight: 500;
  color: #0F6E56;
  background: #E1F5EE;
  padding: 3px 10px;
  border-radius: 999px;
}
.pr-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 1;
}
.pr-features li {
  font-size: 13.5px;
  color: #5C5C58;
  display: flex;
  align-items: flex-start;
  gap: 9px;
  line-height: 1.45;
}
.pr-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  min-width: 16px;
  border-radius: 50%;
  background: #E1F5EE;
  color: #0F6E56;
  font-size: 10px;
  margin-top: 1px;
}
.pr-cta {
  display: block;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  transition: all 0.15s;
  border: 1px solid rgba(26,26,24,0.18);
  color: #1A1A18;
  background: transparent;
  cursor: pointer;
}
.pr-cta:hover { background: #1A1A18; color: #F7F6F2; border-color: #1A1A18; }
.pr-cta.pr-cta-accent { background: #0F6E56; color: #fff; border-color: #0F6E56; }
.pr-cta.pr-cta-accent:hover { background: #0b5a45; border-color: #0b5a45; }

.pr-addon {
  background: #fff;
  border: 0.5px solid rgba(26,26,24,0.10);
  border-radius: 12px;
  padding: 1.5rem 1.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  transition: box-shadow 0.2s, transform 0.2s;
}
.pr-addon:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.06);
  transform: translateY(-1px);
}
.pr-addon-left { display: flex; align-items: center; gap: 1.25rem; }
.pr-addon-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: 8px;
  background: #E6F1FB;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-addon-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #9A9A94;
  display: block;
  margin-bottom: 2px;
}
.pr-addon-name {
  font-size: 16px;
  font-weight: 500;
  color: #1A1A18;
  margin: 0 0 3px;
}
.pr-addon-desc {
  font-size: 13px;
  color: #5C5C58;
  margin: 0 0 10px;
}
.pr-addon-feats {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.pr-addon-feat {
  font-size: 12.5px;
  color: #5C5C58;
  display: flex;
  align-items: center;
  gap: 5px;
}
.pr-addon-feat::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1D9E75;
  display: inline-block;
}
.pr-addon-right {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-shrink: 0;
}
.pr-addon-price {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2rem;
  font-weight: 400;
  color: #1A1A18;
  text-align: right;
}
.pr-addon-price-unit { font-size: 12px; color: #9A9A94; }
.pr-addon-note {
  font-size: 11px;
  color: #185FA5;
  background: #E6F1FB;
  padding: 3px 10px;
  border-radius: 999px;
  margin-top: 4px;
  display: inline-block;
}
.pr-addon .pr-cta { white-space: nowrap; padding: 10px 20px; }

.pr-calc-inner {
  max-width: 820px;
  margin: 0 auto;
}
.pr-calc-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}
.pr-ctrl-group { display: flex; flex-direction: column; gap: 8px; margin-bottom: 1.25rem; }
.pr-ctrl-label {
  font-size: 13px;
  font-weight: 500;
  color: #1A1A18;
}
.pr-toggle { display: flex; gap: 6px; flex-wrap: wrap; }
.pr-tog {
  font-size: 13px;
  padding: 7px 16px;
  border-radius: 8px;
  border: 0.5px solid rgba(26,26,24,0.18);
  background: transparent;
  color: #5C5C58;
  cursor: pointer;
  transition: all 0.15s;
  font-family: 'DM Sans', sans-serif;
}
.pr-tog:hover { border-color: #1A1A18; color: #1A1A18; }
.pr-tog.pr-tog-active { background: #1A1A18; color: #F7F6F2; border-color: #1A1A18; }
.pr-emp-ctrl {
  display: flex;
  align-items: center;
  gap: 8px;
  max-width: 180px;
}
.pr-emp-btn {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 0.5px solid rgba(26,26,24,0.18);
  background: transparent;
  color: #5C5C58;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'DM Sans', sans-serif;
  transition: all 0.15s;
  line-height: 1;
}
.pr-emp-btn:hover { border-color: #1A1A18; color: #1A1A18; }
.pr-emp-input {
  width: 72px;
  height: 36px;
  border-radius: 8px;
  border: 0.5px solid rgba(26,26,24,0.18);
  background: #F7F6F2;
  color: #1A1A18;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  outline: none;
  -moz-appearance: textfield;
}
.pr-emp-input::-webkit-outer-spin-button,
.pr-emp-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pr-emp-input:focus { border-color: #0F6E56; }
.pr-result {
  background: #F7F6F2;
  border-radius: 12px;
  border: 0.5px solid rgba(26,26,24,0.10);
  padding: 1.5rem 1.75rem;
}
.pr-result-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 0.5px solid rgba(26,26,24,0.10);
}
.pr-result-row:last-of-type { border-bottom: none; }
.pr-result-label { font-size: 13.5px; color: #5C5C58; }
.pr-result-val { font-size: 14px; font-weight: 500; color: #1A1A18; }
.pr-result-val.pr-muted { color: #9A9A94; font-size: 13px; font-weight: 400; }
.pr-result-total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1.5px solid rgba(26,26,24,0.18);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.pr-result-total-label { font-size: 14px; font-weight: 500; color: #1A1A18; }
.pr-result-total-amount {
  font-family: 'DM Serif Display', Georgia, serif;
  font-size: 2.2rem;
  color: #0F6E56;
  line-height: 1;
}
.pr-result-note {
  font-size: 11.5px;
  color: #9A9A94;
  margin-top: 10px;
  line-height: 1.5;
}

@media (max-width: 900px) {
  .pr-combined-calc {
    position: static;
  }
  .pr-combined-inner {
    grid-template-columns: 1fr;
    gap: 2.25rem;
  }
  .pr-combined-pricing {
    padding-left: 0;
    margin-left: 0;
    border-left: none;
    padding-top: 2rem;
    border-top: 1px solid rgba(30, 61, 47, 0.1);
  }
  .pr-combined-pricing .pr-grid {
    grid-template-columns: 1fr;
  }
  .pr-combined-pricing .pr-addon {
    max-width: 100%;
  }
}
@media (max-width: 800px) {
  .pr-grid { grid-template-columns: 1fr; }
  .pr-addon { flex-direction: column; align-items: flex-start; }
  .pr-addon-right { flex-direction: row; align-items: center; }
  .pr-calc-layout { grid-template-columns: 1fr; }
}
@media (max-width: 500px) {
  .pr-combined { padding: 3.5rem 1.25rem 3rem; }
  .pr-addon-right { flex-direction: column; align-items: flex-start; }
}
