
:root {
  --ink: #102019;
  --deep: #050505;
  --muted: #536159;
  --soft: #66736d;
  --line: #dfe7e2;
  --paper: #fff;
  --mist: #f5f8f6;
  --green: #84dc4d;
  --green-dark: #225d31;
  --gold: #d2ad55;
  --radius: 28px;
  --shadow: 0 28px 80px rgba(20, 56, 35, 0.12);
  --shadow-soft: 0 16px 46px rgba(20, 56, 35, 0.08);
  --max: 1500px;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
.narrow {
  width: min(840px, 100%);
}
.center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.nav-wrap {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  border-bottom: 1px solid transparent;
  transition: 0.25s;
  background: var(--deep) !important;
  backdrop-filter: blur(18px);
}
.nav-wrap.scrolled {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.94);
}
.nav {
  height: 76px;
  display: flex;
  align-items: center;
  gap: 24px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  font-size: 21px;
  letter-spacing: -0.7px;
  white-space: nowrap;
  line-height: 1;
  flex: 0 0 auto;
}
.brand-logo-img {
  display: block;
  width: auto;
  height: 28px;
  max-width: 150px;
  object-fit: contain;
  filter: none;
}
.screen-brand-logo {
  height: 18px;
  width: auto;
  display: block;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 23px;
  margin-left: auto;
}
.nav-links a {
  font-size: 19px;
  color: white;
  font-weight: 700;
  white-space: nowrap;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--green-dark);
}
.menu-btn {
  display: none;
  margin-left: auto;
  border: 1px solid var(--line);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  cursor: pointer;
}
.nav-cta {
  margin-left: 4px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 23px;
  border-radius: 999px;
  font-weight: 850;
  font-size: 15px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s;
}
.btn:hover {
  transform: translateY(-2px);
}
.btn-primary {
  background: var(--ink);
  color: #fff;
  box-shadow: 0 12px 30px rgba(16, 32, 25, 0.18);
}
.btn-primary:hover {
  background: var(--deep);
}
.btn-green {
  background: var(--green);
  color: #102019;
  box-shadow: 0 12px 28px rgba(91, 178, 50, 0.22);
}
.btn-ghost {
  border-color: var(--line);
  background: #fff;
  color: var(--ink);
}
.btn-sm {
  min-height: 44px;
  padding: 0 18px;
  font-size: 14px;
}
.arrow {
  font-size: 17px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 1.7px;
  font-size: 12px;
  font-weight: 700;
  color: #1FDBA6;
  margin-bottom: 22px;
  text-transform: none;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1 {
  font-size: 94px!important;
  line-height: 0.94!important;;
  font-weight: 700!important;
  letter-spacing: -3%!important;;
  margin-bottom: 26px!important;;
  max-width: 850px!important;;
}
h2 {
  font-size: clamp(40px, 5vw, 68px)!important;
  line-height: 1.01!important;
  letter-spacing: -0.055em!important;
  margin-bottom: 23px!important;;
}
h3 {
  font-size: 23px!important;;
  line-height: 1.15!important;
  letter-spacing: -0.8px!important;
  margin-bottom: 12px!important;
}
.lead {
  font-size: 32px!important;
  line-height: 120%!important;
  color: #050505!important;
  max-width: 760px!important;
}
.body {
  font-size: 17px;
  line-height: 1.68;
  color: #536159;
}
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 30px 0 23px;
}
.hero {
  min-height: 850px;
  padding: 150px 0 92px;
  position: relative;
  overflow: hidden;
  background: radial-gradient(
      circle at 75% 18%,
      rgba(132, 220, 77, 0.2),
      transparent 30%
    ),
    radial-gradient(circle at 84% 72%, rgba(210, 173, 85, 0.1), transparent 22%),
    linear-gradient(#fff, #f9fbfa);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 70px;
  align-items: center;
}
.accent {
  color: var(--green-dark);
}
.block-accent {
  display: block;
}
.microcopy {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  font-weight: 800;
  color: #536159;
}
.microcopy span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.microcopy span:before {
  content: "✓";
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #e7f8dd;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}
.device-scene {
  position: relative;
  min-height: 580px;
  display: grid;
  place-items: center;
}
.device {
  width: min(510px, 100%);
  background: #12231b;
  border: 9px solid #1f3329;
  border-radius: 42px;
  padding: 11px;
  box-shadow: 0 48px 100px rgba(21, 49, 32, 0.24);
  transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
}
.screen {
  background: #f8fbf9;
  border-radius: 27px;
  overflow: hidden;
  min-height: 520px;
}
.screen-top {
  height: 68px;
  padding: 0 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #e5ebe7;
  background: #fff;
}
.status-pill {
  font-size: 11px;
  font-weight: 850;
  padding: 8px 11px;
  border-radius: 999px;
  background: #e7f8dd;
  color: #246230;
  display: flex;
  align-items: center;
  gap: 7px;
}
.pulse {
  width: 7px;
  height: 7px;
  background: var(--green);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(132, 220, 77, 0.18);
}
.screen-body {
  padding: 22px;
}
.dashboard-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
}
.asset-name {
  font-size: 22px;
  font-weight: 850;
  letter-spacing: -0.8px;
}
.asset-sub {
  font-size: 12px;
  color: var(--soft);
  margin-top: 4px;
}
.connection {
  font-size: 11px;
  padding: 8px 10px;
  border: 1px solid #dbe8df;
  border-radius: 10px;
  background: #fff;
  font-weight: 800;
}
.chart {
  height: 186px;
  margin: 20px 0 18px;
  border-radius: 18px;
  background: linear-gradient(#fff, #f0f7f2);
  position: relative;
  overflow: hidden;
  border: 1px solid #e4ebe7;
}
.chart-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
      to right,
      rgba(24, 58, 38, 0.06) 1px,
      transparent 1px
    ),
    linear-gradient(to bottom, rgba(24, 58, 38, 0.06) 1px, transparent 1px);
  background-size: 58px 46px;
}
.chart svg {
  position: absolute;
  inset: 23px 12px 13px;
  width: calc(100% - 24px);
  height: calc(100% - 36px);
}
.scan-label {
  position: absolute;
  right: 13px;
  top: 13px;
  padding: 7px 9px;
  border-radius: 9px;
  background: #102019;
  color: white;
  font-size: 10px;
  font-weight: 850;
}
.metrics {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.metric {
  padding: 15px;
  border-radius: 15px;
  background: #fff;
  border: 1px solid #e1e9e4;
}
.metric-label {
  font-size: 11px;
  color: var(--soft);
  margin-bottom: 7px;
}
.metric-value {
  font-size: 14px;
  font-weight: 850;
}
.risk-progress {
  height: 6px;
  border-radius: 20px;
  background: #e7ece9;
  overflow: hidden;
  margin-top: 9px;
}
.risk-progress span {
  display: block;
  width: 48%;
  height: 100%;
  background: var(--green);
}
.floating {
  position: absolute;
  width: 205px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(223, 231, 226, 0.9);
  box-shadow: var(--shadow-soft);
  border-radius: 18px;
  padding: 16px;
  backdrop-filter: blur(15px);
}
.floating strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}
.floating small {
  display: block;
  line-height: 1.45;
  color: var(--soft);
}
.float-1 {
  top: 42px;
  left: -25px;
}
.float-2 {
  right: -28px;
  bottom: 65px;
}
.float-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: #eaf9e0;
  color: var(--green-dark);
  font-weight: 900;
  margin-bottom: 12px;
}
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  padding: 25px 22px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item strong {
  font-size: 14px;
  display: block;
  margin-bottom: 4px;
}
.trust-item span {
  font-size: 12px;
  color: var(--soft);
}
.section,
.page-section {
  padding: 100px 0;
}
.section-mist,
.page-section.mist {
  background: var(--mist);
}
.section-dark {
  background: var(--deep)!important;
  color: #fff;
}
.section-dark .lead,
.section-dark .body {
  color: #c9d6ce!important;
}
.split,
.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.card,
.page-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: 0 10px 25px rgba(20, 56, 35, 0.035);
}
.card p,
.page-card p {
  color: var(--soft);
  line-height: 1.65;
  margin-bottom: 0;
}
.card-icon {
  width: 47px;
  height: 47px;
  border-radius: 14px;
  background: #eaf9e0;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
  margin-bottom: 25px;
  font-size: 17px;
}
.card-dark,
.page-card.dark {
  background: #173525;
  border-color: #2c4c39;
  color: #fff;
}
.card-dark p,
.page-card.dark p,
.page-card.dark li {
  color: #c7d5cc;
}
.problem-stage {
  padding: 35px;
  border-radius: var(--radius);
  background: var(--ink);
  color: white;
  box-shadow: var(--shadow);
}
.problem-stage .small {
  color: #bff29f;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 1.3px;
  font-size: 11px;
  margin-bottom: 35px;
}
.problem-stage .large {
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -2.4px;
  font-weight: 850;
}
.staccato {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.staccato span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 11px 15px;
  font-size: 13px;
  font-weight: 850;
}
.step {
  position: relative;
  padding-top: 70px;
}
.step-number {
  position: absolute;
  top: 26px;
  left: 30px;
  font-size: 13px;
  font-weight: 900;
  color: var(--green-dark);
  background: #e9f8df;
  border-radius: 999px;
  padding: 7px 10px;
}
.step-meta {
  font-size: 12px;
  font-weight: 850;
  color: var(--green-dark);
  margin-top: 18px;
}
.flow-arrow {
  position: absolute;
  right: -17px;
  top: 50%;
  z-index: 2;
  color: #9cad9f;
  font-size: 25px;
}
.controls {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.control {
  border-radius: 20px;
  border: 1px solid var(--line);
  padding: 22px;
  background: #fff;
}
.control-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.control-head strong {
  font-size: 15px;
}
.toggle {
  width: 42px;
  height: 24px;
  border-radius: 999px;
  background: var(--green);
  position: relative;
}
.toggle:after {
  content: "";
  position: absolute;
  width: 18px;
  height: 18px;
  background: #fff;
  border-radius: 50%;
  right: 3px;
  top: 3px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
}
.control p {
  font-size: 13px;
  color: var(--soft);
  line-height: 1.5;
  margin: 0;
}
.control-wide {
  grid-column: span 2;
}
.threshold {
  height: 8px;
  border-radius: 999px;
  background: #e8eeea;
  margin-top: 16px;
  overflow: hidden;
}
.threshold span {
  display: block;
  height: 100%;
  width: 38%;
  background: linear-gradient(90deg, var(--green), var(--gold));
}
.pricing-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.96fr;
  gap: 18px;
  margin-top: 50px;
  align-items: stretch;
}
.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 10px 25px rgba(20, 56, 35, 0.035);
}
.pricing-card-featured {
  border-color: rgba(132, 220, 77, 0.55);
  box-shadow: 0 22px 60px rgba(48, 110, 48, 0.1);
  position: relative;
  overflow: hidden;
}
.pricing-card-featured:before {
  content: "";
  position: absolute;
  inset: -80px -80px auto auto;
  width: 210px;
  height: 210px;
  border-radius: 50%;
  background: rgba(132, 220, 77, 0.16);
}
.pricing-topline {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: max-content;
  max-width: 100%;
  padding: 8px 11px;
  border-radius: 999px;
  background: #eaf9e0;
  color: var(--green-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.7px;
  text-transform: uppercase;
}
.pricing-xm-badge {
  align-items: center;
  gap: 9px;
  padding: 9px 15px;
  min-height: 42px;
}
.pricing-xm-badge img {
  height: 22px;
  width: auto;
  max-width: 78px;
  object-fit: contain;
}
.pricing-price {
  position: relative;
  z-index: 1;
  font-size: clamp(44px, 5vw, 64px);
  line-height: 0.9;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: var(--ink);
}
.pricing-price span {
  font-size: 16px;
  color: var(--soft);
  font-weight: 750;
  margin-left: 5px;
}
.pricing-card p {
  position: relative;
  z-index: 1;
  color: var(--soft);
  line-height: 1.55;
  margin: 0;
}
.pricing-card ul {
  position: relative;
  z-index: 1;
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 4px 0 8px;
}
.pricing-card li {
  color: #435149;
  font-size: 14px;
  line-height: 1.35;
  display: flex;
  gap: 9px;
}
.pricing-card li:before {
  content: "✓";
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  background: #e7f8dd;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-size: 11px;
  font-weight: 900;
}
.pricing-card .btn {
  margin-top: auto;
  width: 100%;
}
.pricing-note {
  max-width: 820px;
  margin: 24px auto 0;
  color: var(--soft);
  font-size: 12px;
  line-height: 1.55;
}
.proof-panel {
  border-radius: 36px;
  border: 1px solid var(--line);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow-soft);
  margin-top: 50px;
}
.proof-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 26px;
  border-bottom: 1px solid var(--line);
}
.illustrative {
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: #895e13;
  background: #fff4d8;
  border-radius: 999px;
  padding: 8px 10px;
}
.proof-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
}
.proof-chart {
  padding: 30px;
  border-right: 1px solid var(--line);
}
.proof-chart-box {
  height: 265px;
  position: relative;
  border-radius: 20px;
  background: #f6f9f7;
  overflow: hidden;
}
.proof-chart-box svg {
  position: absolute;
  inset: 20px;
  width: calc(100% - 40px);
  height: calc(100% - 40px);
}
.proof-stats {
  padding: 30px;
  display: grid;
  gap: 12px;
}
.proof-stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 13px 0;
  font-size: 13px;
}
.proof-stat span {
  color: var(--soft);
}
.proof-caption {
  padding: 18px 26px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  color: var(--soft);
  line-height: 1.6;
}
.video-card {
  border-radius: 24px;
  border: 1px solid rgba(16, 21, 19, 0.08);
  background: #fff;
  padding: 16px;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.05);
}
.video-card-label {
  margin-bottom: 12px;
  font-size: 14px;
  font-weight: 800;
  color: #223028;
}
.video-card video {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  background: #000;
}
.video-card-large {
  border-radius: 28px;
  padding: 18px;
}
.faq {
  max-width: 900px;
  margin: 50px auto 0;
  border-top: 1px solid var(--line);
}
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  width: 100%;
  padding: 25px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font-size: 18px;
  font-weight: 850;
  color: var(--ink);
}
.faq-plus {
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: var(--mist);
  display: grid;
  place-items: center;
  transition: 0.25s;
  flex: 0 0 auto;
}
.faq-item.open .faq-plus {
  transform: rotate(45deg);
  background: var(--green);
}
.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s;
}
.faq-answer > div {
  overflow: hidden;
}
.faq-answer p {
  padding: 0 60px 0 4px;
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
}
.faq-item.open .faq-answer {
  grid-template-rows: 1fr;
}
.faq-item.open .faq-answer p {
  padding-bottom: 25px;
}
.cta-section {
  padding: 110px 0;
  background: linear-gradient(135deg, #102f20, #173d28);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 65px;
  align-items: center;
}
.cta-section .lead {
  color: #c6d7cc;
}
.signup {
  background: #fff;
  color: var(--ink);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 35px 80px rgba(0, 0, 0, 0.2);
}
.field {
  margin-bottom: 14px;
}
.field label {
  font-size: 12px;
  font-weight: 850;
  display: block;
  margin-bottom: 7px;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  height: 50px;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 0 14px;
  background: #fbfcfb;
  color: var(--ink);
  outline: none;
}
.field textarea {
  height: auto;
  min-height: 120px;
  padding-top: 12px;
  resize: vertical;
}
.form-note {
  font-size: 11px;
  line-height: 1.55;
  color: var(--soft);
  margin-top: 12px;
}
.success {
  display: none;
  padding: 17px;
  border-radius: 14px;
  background: #ebf9e4;
  color: #245b2d;
  font-weight: 750;
  line-height: 1.5;
}
.success.show {
  display: block;
}
.inner-hero {
  padding: 150px 0 80px;
  border-bottom: 1px solid var(--line);
}
.inner-hero-grid {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 64px;
  align-items: start;
}
.breadcrumbs {
  font-size: 13px;
  color: var(--soft);
  margin-bottom: 26px;
}
.breadcrumbs a {
  font-weight: 850;
  color: var(--green-dark);
  text-decoration: none;
}
.page-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.page-kicker span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  background: #fff;
  font-size: 13px;
  font-weight: 850;
  color: #435149;
}
.page-list {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}
.page-list-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: start;
}
.page-list-icon {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: #eaf9e0;
  color: var(--green-dark);
  display: grid;
  place-items: center;
  font-weight: 900;
}
.page-list-item p {
  margin-bottom: 0;
  color: var(--soft);
  line-height: 1.6;
}
.article-card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #fff;
  padding: 24px;
  transition: 0.2s;
}
.article-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.article-card p {
  color: var(--soft);
  line-height: 1.6;
  margin-bottom: 0;
}
.legal-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 54px;
}
.legal-sidebar {
  position: sticky;
  top: 110px;
  align-self: start;
  display: grid;
  gap: 8px;
}
.legal-sidebar a {
  padding: 11px 13px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 850;
}
.legal-sidebar a:hover {
  background: var(--mist);
}
.legal-body {
  max-width: 900px;
}
.legal-body h2 {
  font-size: 38px;
  letter-spacing: -0.04em;
  margin-top: 44px;
}
.legal-body p,
.legal-body li {
  color: #536159;
  line-height: 1.75;
}
.cookie-banner {
  position: fixed;
  z-index: 5000;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 980px;
  margin: auto;
  background: #102019;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
  display: none;
  gap: 18px;
  align-items: center;
}
.cookie-banner.show {
  display: flex;
}
.cookie-banner p {
  margin: 0;
  color: #d6e1da;
  font-size: 13px;
  line-height: 1.5;
}
.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-left: auto;
}
.cookie-actions button,
.cookie-actions a {
  border: 0;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.11);
  color: #fff;
}
.cookie-actions .accept {
  background: var(--green);
  color: var(--ink);
}
footer {
  padding: 50px 0 28px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 60px;
}
.footer-risk {
  font-size: 11px;
  line-height: 1.65;
  color: var(--soft);
  max-width: 760px;
  margin: 22px 0 0;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  font-size: 13px;
  font-weight: 750;
}
.footer-links a:hover {
  color: var(--green-dark);
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 40px;
  font-size: 12px;
  color: var(--soft);
}
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
.editor-bar {
  position: fixed;
  z-index: 3000;
  right: 18px;
  bottom: 18px;
  display: flex;
  gap: 7px;
  padding: 8px;
  background: rgba(16, 32, 25, 0.94);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}
.editor-bar button {
  border: 0;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  padding: 10px 12px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 850;
  cursor: pointer;
}
.editor-bar .edit-active {
  background: var(--green);
  color: var(--ink);
}
body.copy-editing [data-copy] {
  outline: 2px dashed rgba(67, 160, 56, 0.65);
  outline-offset: 4px;
  cursor: text;
  border-radius: 4px;
}
.editor-toast {
  position: fixed;
  z-index: 3001;
  right: 20px;
  bottom: 85px;
  padding: 11px 15px;
  border-radius: 12px;
  background: #102019;
  color: white;
  font-size: 12px;
  font-weight: 750;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: 0.2s;
}
.editor-toast.show {
  opacity: 1;
  transform: none;
}
@media (max-width: 1120px) {
  .nav-links {
    display: none;
  }
  .menu-btn {
    display: block;
  }
  .nav-cta {
    display: none;
  }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 79px;
    background: var(--deep) !important;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    z-index: 10;
  }
  .hero-grid,
  .split,
  .grid-2,
  .cta-grid,
  .inner-hero-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }
  .grid-4,
  .pricing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }
}
@media (max-width: 820px) {
  .nav {
    height: 68px;
  }
  .hero {
    min-height: auto;
    padding: 115px 0 70px;
  }
  h1 {
    font-size: 50px!important;
  }
  h2 {
    font-size: 40px!important;
  }
  .lead {
    font-size: 17px!important;
  }
  .device-scene {
    min-height: 500px;
    margin-top: 20px;
  }
  .device {
    transform: none !important;
    border-width: 6px;
    border-radius: 30px;
  }
  .screen {
    min-height: 440px;
  }
  .floating {
    display: none;
  }
  .grid-3,
  .grid-4,
  .pricing-grid,
  .proof-grid,
  .controls,
  .footer-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item {
    border-right: 0 !important;
    border-bottom: 1px solid var(--line) !important;
  }
  .trust-item:last-child {
    border-bottom: 0 !important;
  }
  .section,
  .page-section {
    padding: 80px 0;
  }
  .flow-arrow {
    display: none;
  }
  .control-wide {
    grid-column: auto;
  }
  .proof-chart {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .faq-answer p {
    padding-right: 4px;
  }
  .cookie-banner.show {
    display: grid;
  }
  .footer-bottom {
    flex-direction: column;
  }
  .editor-bar {
    left: 10px;
    right: 10px;
    overflow-x: auto;
    justify-content: flex-start;
  }
}


/* FULL inner-page content rebuild — homepage-safe styles */
body.inner-page .nav .brand-logo-img, body.inner-page footer .brand-logo-img{height:28px!important;width:auto!important;max-width:150px!important;object-fit:contain!important;filter:none!important}
body.inner-page .breadcrumbs{font-size:13px;color:var(--soft);margin-bottom:26px}
body.inner-page .breadcrumbs a{font-weight:850;color:var(--green-dark)}
body.inner-page .hero-card{background: linear-gradient(254.88deg, rgba(31, 219, 166, 0.2) 8.47%, rgba(0, 0, 0, 0.2) 91.53%); color:#fff;border:1px solid #274c38;border-radius:var(--radius);padding:30px;box-shadow:var(--shadow-soft)}
body.inner-page .hero-card p,body.inner-page .hero-card li{color:#c7d6ce;line-height:1.55}
body.inner-page .hero-stat-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:12px;margin-top:22px; margin-bottom: 22px;}
body.inner-page .hero-stat{background:rgba(255,255,255,.075);border:1px solid rgba(255,255,255,.13);border-radius:18px;padding:17px}
body.inner-page .hero-stat strong{display:block;color:#fff;font-size:64px;line-height:120%;letter-spacing:-5%; font-weight: 400!important;}
body.inner-page .hero-stat span{display:block;color:#c7d7ce;font-size:12px;line-height:1.45;margin-top:8px}
body.inner-page .page-section{padding:98px 0}
body.inner-page .page-section.mist{background:var(--mist)}
body.inner-page .page-section.dark{background:var(--deep);color:#fff}
body.inner-page .page-section.dark .lead,body.inner-page .page-section.dark .body{color:#c7d6ce}
body.inner-page .kicker-row{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
body.inner-page .kicker-row span{border:1px solid #1FDBA6;border-radius:999px;padding:6px 19px;font-size:12px;color:#FFFFFF}
body.inner-page .intro-block{max-width:840px;margin:0 auto 48px;text-align:center}
body.inner-page .intro-block.left{text-align:left;margin-left:0}
body.inner-page .two-col{display:grid;grid-template-columns:1fr 1fr;gap:42px;align-items:start}
body.inner-page .two-col.wide{grid-template-columns:1.08fr .92fr}
body.inner-page .three-col{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}
body.inner-page .four-col{display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:18px}
body.inner-page .rich-list{display:grid;gap:14px}
body.inner-page .rich-item{grid-template-columns:48px 1fr;gap:14px;align-items:start;padding:18px;border: 1px solid #EDEFEC;border-radius:16px;background:#fff;box-shadow:0 10px 25px rgba(20,56,35,.035)}
body.inner-page .rich-item .num{width:48px;height:48px;border-radius:15px;display:grid;place-items:center;font-weight:900; margin-bottom: 12px;}
body.inner-page .rich-item .num img{width: 100%!important;height: 100%!important;object-fit: contain!important;display: block!important;}
body.inner-page .rich-item h3{margin-bottom:6px;font-size:20px; line-height: 120%; font-weight: 700; color: #1FDBA6;}
body.inner-page .rich-item p{margin:0;color:#050505;line-height:25.6px; font-size: 16px; font-weight: 400;}
body.inner-page .copy-card{border:1px solid var(--line);background:#fff;border-radius:var(--radius);padding:20px;box-shadow:0 10px 25px rgba(20,56,35,.035)}
body.inner-page .copy-card h3{font-size:20px!important; font-weight: 700!important;}
body.inner-page .copy-card p,body.inner-page .copy-card li{color:var(--soft);line-height:1.65; font-size:14px}
body.inner-page .copy-card ul{margin:16px 0 0;padding-left:20px}
body.inner-page .copy-card.dark{background: #FFFFFF1A;color:#fff; border:1px solid rgba(255,255,255,.16)!important;}
body.inner-page .copy-card.dark p,body.inner-page .copy-card.dark li{color:#c7d6ce}
body.inner-page .badge{display:inline-flex;background:#1FDBA6;color:#050505;padding:8px 10px;border-radius:999px;font-size:12px;font-weight:700;letter-spacing:2%;text-transform:uppercase;margin-bottom:16px}
body.inner-page .timeline{display:grid;gap:16px;counter-reset:step}
body.inner-page .timeline-item{position:relative;border:1px solid var(--line);background:#fff;border-radius:24px;padding:24px 24px 24px 86px;box-shadow:0 10px 24px rgba(20,56,35,.035)}
body.inner-page .timeline-item:before{counter-increment:step;content:counter(step,decimal-leading-zero);position:absolute;left:24px;top:24px;width:44px;height:44px;border-radius:15px;background:#eaf9e0;color:var(--green-dark);display:grid;place-items:center;font-weight:900}
body.inner-page .timeline-item h3{font-size:23px;margin-bottom:8px}
body.inner-page .timeline-item p{margin:0;color:var(--soft);line-height:1.65}
body.inner-page .pricing-grid{display:grid;grid-template-columns:1.08fr .96fr .96fr;gap:18px;margin-top:50px;align-items:stretch}
body.inner-page .comparison-table{overflow:hidden;border:1px solid var(--line);border-radius:24px;background:#fff;box-shadow:0 10px 25px rgba(20,56,35,.035)}
body.inner-page .comparison-table table{width:100%;border-collapse:collapse}
body.inner-page .comparison-table th,body.inner-page .comparison-table td{padding:18px;border-bottom:1px solid var(--line);text-align:left;vertical-align:top}
body.inner-page .comparison-table th{font-size:13px;text-transform:uppercase;letter-spacing:.8px;color:var(--green-dark);background:#f7fbf6}
body.inner-page .comparison-table tr:last-child td{border-bottom:0}
body.inner-page .device-tabs{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:16px}
body.inner-page .device-tab{border:1px solid var(--line);border-radius:24px;background:#fff;padding:24px;box-shadow:0 10px 25px rgba(20,56,35,.035)}
body.inner-page .notification-stack{display:grid;gap:14px}
body.inner-page .notification-card{border:1px solid var(--line);background:#fff;border-radius:22px;padding:18px;box-shadow:0 10px 25px rgba(20,56,35,.035)}
body.inner-page .notification-card strong{display:block;margin-bottom:6px}
body.inner-page .notification-card p{margin:0;color:var(--soft);line-height:1.5}
body.inner-page .article-list{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:14px}
body.inner-page .article-link{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:18px 20px;border:1px solid var(--line);border-radius:18px;background:#fff;font-weight:850;transition:.2s}
body.inner-page .article-link span{color:var(--soft);font-weight:650}
body.inner-page .article-link:hover{transform:translateY(-2px);box-shadow:var(--shadow-soft)}
body.inner-page .article-page{max-width:920px;margin:auto}
body.inner-page .article-page h2{font-size:40px;margin-top:54px}
body.inner-page .article-page p,body.inner-page .article-page li{color:#536159;line-height:1.75;font-size:17px}
body.inner-page .article-page ol,body.inner-page .article-page ul{padding-left:24px}
body.inner-page .placeholder-shot{border:1px dashed #b8c8be;background:#f8fbf9;border-radius:18px;padding:18px;color:#60706a;font-size:13px;margin:14px 0 24px}
body.inner-page .story-quote{border-left:4px solid var(--green);padding:18px 0 18px 24px;color:#314038;font-size:22px;line-height:1.45;font-weight:750;margin:24px 0}
/* Form Panel Wrapper (Figma spec) */
body.inner-page div.form-panel-inner {
  max-width: 622px !important;
  width: 100% !important;
  min-height: 751px !important; /* Start at 751px, expand if content grows */
  background: #050505 !important;
  border-radius: 16px !important;
  padding: 40px 33px !important;
  border: none !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}
@media (max-width: 1050px) {
  body.inner-page div.form-panel-inner {
    min-height: 0 !important;
    height: auto !important;
  }
}

/* Override nested form class if applied twice */
body.inner-page form.form-panel-inner {
  background: transparent !important;
  padding: 0 !important;
  border: none !important;
  box-shadow: none !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

/* Spacing between fields */
body.inner-page .form-panel-inner .gfield {
  margin-bottom: 20px !important;
}


/* Fields Title / Labels (Figma spec) */
body.inner-page .form-panel-inner .gfield_label {
  font-family: 'Manrope', sans-serif !important;
  font-weight: 400 !important;
  font-size: 18px !important;
  line-height: 30px !important;
  color: #FFFFFF !important;
  display: block !important;
  margin-bottom: 7px !important; /* restored comfortable gap */
  letter-spacing: 0% !important;
}

/* Inputs, Selects styling (Figma spec) */
body.inner-page .form-panel-inner input[type="text"],
body.inner-page .form-panel-inner input[type="email"],
body.inner-page .form-panel-inner input[type="tel"],
body.inner-page .form-panel-inner input[type="url"],
body.inner-page .form-panel-inner select {
  width: 100% !important;
  max-width: 556px !important;
  height: 33px !important;
  background: #000000 !important;
  color: #FFFFFF !important;
  border: none !important;
  border-bottom: 1px solid #7B7B7B !important;
  border-radius: 0 !important;
  padding: 0 5px !important;
  outline: none !important;
  box-shadow: none !important;
}

/* Textarea styling - full border (Figma spec) */
body.inner-page .form-panel-inner textarea {
  width: 100% !important;
  max-width: 556px !important;
  height: auto !important;
  min-height: 130px !important;
  background: #000000 !important;
  color: #FFFFFF !important;
  border: 1px solid #7B7B7B !important; /* border all around */
  border-radius: 0 !important;
  padding: 8px 10px !important;
  outline: none !important;
  box-shadow: none !important;
  resize: vertical !important;
}

/* Placeholder text color (Figma spec) */
body.inner-page .form-panel-inner ::placeholder {
  color: #757575 !important;
  opacity: 1 !important;
}
body.inner-page .form-panel-inner input::placeholder,
body.inner-page .form-panel-inner textarea::placeholder {
  color: #757575 !important;
  opacity: 1 !important;
}

/* Focus styles for inputs & textarea */
body.inner-page .form-panel-inner input:focus,
body.inner-page .form-panel-inner select:focus {
  border-bottom-color: #1FDBA6 !important;
}
body.inner-page .form-panel-inner textarea:focus {
  border-color: #1FDBA6 !important;
}
/* Gravity Forms Submit Button styling (Figma spec) */
body.inner-page .form-panel-inner .gform_button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 208px !important;
  height: 67px !important;
  border-radius: 16px !important;
  background: #1FDBA6 !important;
  color: #050505 !important;
  font-family: 'Manrope', sans-serif !important;
  font-weight: 850 !important;
  font-size: 15px !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: none !important;
  padding: 18px 40px 19px 40px !important;
  gap: 10px !important;
  transition: transform .2s, background .2s !important;
}
body.inner-page .form-panel-inner .gform_button:hover {
  transform: translateY(-2px) !important;
  background: #17c493 !important;
}
/* Center Gravity Forms footer (submit button) and push to bottom */
body.inner-page .form-panel-inner .gform_footer {
  display: flex !important;
  justify-content: center !important;
  width: 100% !important;
  margin: 0 !important;
  margin-top: auto !important; /* Pushes the button to the bottom of the container */
  padding: 0 !important;
}

/* Gravity Forms List Field layout to match Figma spec */
body.inner-page .form-panel-inner .gfield_list_group {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 10px !important;
  width: 100% !important;
}

body.inner-page .form-panel-inner .gfield_list_icons {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  width: 100% !important;
  margin-top: 10px !important;
}

/* List field input styling (matches other fields) */
body.inner-page .form-panel-inner .gfield_list_cell input {
  width: 100% !important;
  max-width: 556px !important;
  height: 33px !important;
  background: #000000 !important;
  color: #FFFFFF !important;
  border: none !important;
  border-bottom: 1px solid #7B7B7B !important;
  border-radius: 0 !important;
  padding: 0 5px !important;
  outline: none !important;
  box-shadow: none !important;
}

body.inner-page .form-panel-inner .gfield_list_cell input:focus {
  border-bottom-color: #1FDBA6 !important;
}

/* Position the List field container relatively and make room at the bottom */
body.inner-page .form-panel-inner .gfield:has(.ginput_container_list) {
  position: relative !important;
  padding-bottom: 58px !important; /* Holds 58px space at the bottom for the absolute button */
  margin-bottom: 10px !important; /* Restores 20px overall gap from button to Notes label */
}

/* Add More button (centered, full-width, Figma style with absolute position) */
body.inner-page .form-panel-inner .add_list_item {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  margin: 0 auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 556px !important;
  height: 48px !important;
  background: transparent !important;
  color: #FFFFFF !important;
  border: 1px solid #7B7B7B !important;
  border-radius: 0px !important;
  cursor: pointer !important;
  font-family: 'Manrope', sans-serif !important;
  font-size: 0 !important; /* Hide default "Add" text node */
  font-weight: 500 !important;
  padding: 0 !important;
  transition: all 0.2s !important;
  z-index: 10 !important;
}

body.inner-page .form-panel-inner .add_list_item {
  font-size: 0 !important; /* collapses native "Add" text node */
}

body.inner-page .form-panel-inner .add_list_item::before {
  content: "+ Add more" !important;
  font-size: 16px !important; /* restore visible size for your label */
  color: #FFFFFF !important;
  font-size: 16px !important; /* Show pseudo text at correct size */
  font-family: 'Manrope', sans-serif !important;
}
body.inner-page .form-panel-inner {
  --gf-icon-font-family: 'Manrope', sans-serif;
}

body.inner-page .form-panel-inner .add_list_item svg {
  display: none !important;
}

/* Hide default icons/text inside GF add button */
body.inner-page .form-panel-inner .add_list_item svg,
body.inner-page .form-panel-inner .add_list_item span {
  display: none !important;
}

/* Delete/Remove button styling (when multiple rows exist) */
body.inner-page .form-panel-inner .delete_list_item {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: none !important;
  color: #FF4A4A !important;
  cursor: pointer !important;
  margin-top: 5px !important;
  font-size: 0 !important; /* Hide default "Delete" text node */
  font-weight: 600 !important;
  text-decoration: underline !important;
}
/*Remove Required from fields in form*/
body.inner-page .form-panel-inner .gfield_required {
  display: none !important;
}

body.inner-page .form-panel-inner .delete_list_item::before {
  content: "Remove" !important;
  font-size: 13px !important; /* Show pseudo text at correct size */
  text-decoration: underline !important;
}
body.inner-page .form-panel-inner .delete_list_item {
  font-size: 0 !important;
}

body.inner-page .form-panel-inner .delete_list_item::before {
  content: "Remove" !important;
  font-size: 13px !important;
  color: #FF4A4A !important;
  font-family: 'Manrope', sans-serif !important;
}

body.inner-page .form-panel-inner .delete_list_item svg {
  display: none !important;
}

/* Style field-level error messages (under each input) */
body.inner-page .form-panel-inner .gfield_validation_message {
  color: #FF4A4A !important;
  font-size: 12px !important;
  margin-top: 0px !important; /* sticks error message directly under input */
}


body.inner-page .form-panel-inner .gform_confirmation_message{
  color:#FFFFFF !important;
  font-weight: 400 !important;
  font-size: 18px !important;
}
body.inner-page .form-panel-inner .gform_submission_error{
  font-size: 1rem!important;
}
body.inner-page .form-panel-inner .add_list_item,
body.inner-page .form-panel-inner .delete_list_item {
  --gf-icon-font-family: 'Manrope', sans-serif !important;
}
body.inner-page .support-channel{display:grid;grid-template-columns:52px 1fr;gap:16px;padding:22px;border:1px solid var(--line);border-radius:22px;background:#fff;box-shadow:0 10px 25px rgba(20,56,35,.035)}
body.inner-page .support-channel .icon{width:52px;height:52px;border-radius:16px;background:#eaf9e0;color:var(--green-dark);display:grid;place-items:center;font-weight:900}
body.inner-page .support-channel p{margin:0;color:var(--soft);line-height:1.6}
body.inner-page .legal-doc-list{display:grid;gap:14px}
body.inner-page .legal-doc{display:flex;align-items:center;justify-content:space-between;gap:18px;padding:20px;border:1px solid var(--line);border-radius:18px;background:#fff;box-shadow:0 10px 25px rgba(20,56,35,.035)}
body.inner-page .legal-doc strong{display:block}
body.inner-page .legal-doc span{color:var(--soft);font-size:13px}
body.inner-page .referral-calc{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:14px;margin-top:32px}
body.inner-page .calc-card{background:#fff;border:1px solid var(--line);border-radius:22px;padding:24px;text-align:center}
body.inner-page .calc-card strong{display:block;font-size:42px;letter-spacing:-.05em;color:var(--green-dark)}
body.inner-page .calc-card span{display:block;color:var(--soft);margin-top:6px}
body.inner-page .legal-body .placeholder{background:#fff4d8;border-radius:8px;padding:2px 5px;color:#7a530c}
body.inner-page .legal-layout{display:grid;grid-template-columns:260px 1fr;gap:54px}
body.inner-page .legal-sidebar{position:sticky;top:110px;align-self:start;display:grid;gap:8px}
body.inner-page .legal-sidebar a{padding:11px 13px;border-radius:10px;font-size:13px;font-weight:850}
body.inner-page .legal-sidebar a:hover{background:var(--mist)}
body.inner-page .legal-body{max-width:920px}
body.inner-page .legal-body h2{font-size:38px;letter-spacing:-.04em;margin-top:44px}
body.inner-page .legal-body p,body.inner-page .legal-body li{color:#536159;line-height:1.75}
@media(max-width:1120px){body.inner-page .inner-hero-grid,body.inner-page .two-col,body.inner-page .two-col.wide,body.inner-page .legal-layout{grid-template-columns:1fr}body.inner-page .pricing-grid{grid-template-columns:1fr}body.inner-page .four-col{grid-template-columns:repeat(2,1fr)}body.inner-page .three-col{grid-template-columns:1fr}}
@media(max-width:820px){body.inner-page .page-section{padding:76px 0}body.inner-page .four-col,body.inner-page .article-list,body.inner-page .device-tabs,body.inner-page .referral-calc,body.inner-page .hero-stat-grid{grid-template-columns:1fr}body.inner-page .comparison-table{overflow-x:auto}body.inner-page .comparison-table table{min-width:760px}body.inner-page .timeline-item{padding-left:24px;padding-top:82px}}


/* Restored copy editor controls */
.editor-bar{position:fixed;z-index:9999;right:18px;bottom:18px;display:flex;gap:7px;padding:8px;background:rgba(16,32,25,.94);border-radius:16px;box-shadow:0 18px 50px rgba(0,0,0,.25);backdrop-filter:blur(15px)}
.editor-bar button{border:0;background:rgba(255,255,255,.1);color:#fff;padding:10px 12px;border-radius:10px;font-size:12px;font-weight:850;cursor:pointer}
.editor-bar .edit-active{background:var(--green);color:var(--ink)}
body.copy-editing [data-copy],body.copy-editing [data-copy-id]{outline:2px dashed rgba(67,160,56,.65);outline-offset:4px;cursor:text;border-radius:4px}
.editor-toast{position:fixed;z-index:10000;right:20px;bottom:85px;padding:11px 15px;border-radius:12px;background:#102019;color:white;font-size:12px;font-weight:750;opacity:0;transform:translateY(8px);pointer-events:none;transition:.2s}
.editor-toast.show{opacity:1;transform:none}
@media(max-width:820px){.editor-bar{left:10px;right:10px;overflow-x:auto;justify-content:flex-start}}


/* CTA label safety fix */
.nav-cta{
  white-space:nowrap !important;
}
.nav-cta .arrow{
  display:none !important;
}

body.inner-page .wp-block-query-is-layout-constrained > * {
    max-width: none!important;
}

body.inner-page h1, body.inner-page h2, body.inner-page h3, body.inner-page h4, body.inner-page h5, body.inner-page h6 {
    font-weight: 700;
}


.gform-dark .gfield_list_group {
  border: none;
}

.gform-dark table.gfield_list {
  border: none;
  width: 100%;
  border-collapse: collapse;
}

.gform-dark table.gfield_list td input[type="text"] {
  background: #000;
  border: 1px solid #333;
  border-radius: 6px;
  color: #fff;
  padding: 10px;
  width: 100%;
}

/* Hide default icons, replace with your own button-style Add row */
.gform-dark table.gfield_list .gfield_list_icons img {
  display: none;
}

.gform-dark table.gfield_list .add_list_item {
  background: transparent;
  border: 1px solid #444;
  border-radius: 8px;
  color: #fff;
  padding: 12px;
  width: 100%;
  text-align: center;
  cursor: pointer;
  display: block;
}

.gform-dark table.gfield_list .add_list_item::before {
  content: "+ Add more";
}

.gform-dark table.gfield_list .delete_list_item {
  color: #888;
  font-size: 12px;
  cursor: pointer;
}

.container{
  padding-right: 0px !important;
  padding-left: 0px !important;
  max-width: 100%!important;
}

header .btn.btn-primary.btn-sm.nav-cta{
  line-height: 30px;
  font-size: 19px;
  color: var(--wp--preset--color--ink);
  padding: 18px 35px;
  margin: 0;
  text-align: center;
  background: var(--wp--preset--color--green);
  box-shadow: 0 12px 30px rgba(16,32,25,.18);
}

body.inner-page .hero-card .hero-stat strong small{
  font-size: 30px;
  line-height: 120%;
}