:root {
  --green: #26c91f;
  --green2: #16a332;
  --green3: #0c7f28;
  --deep: #0d7b2a;
  --deep2: #119536;
  --ink: #0f172a;
  --muted: #667085;
  --line: #e5eaf0;
  --soft: #f7faf8;
  --card: #fff;
  --shadow: 0 22px 60px rgba(15, 23, 42, .07);
  --green-shadow: 0 18px 48px rgba(38, 201, 31, .14);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px
}

body {
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: #fff;
  overflow-x: hidden
}

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

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

section[id] {
  scroll-margin-top: -5px
}

.container {
  width: min(1180px, calc(100% - 40px));
  margin: 0 auto
}

.header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line)
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px
}

.brand {
  display: flex;
  align-items: center;
  height: 86px
}

.logo {
  width: 150px;
  height: auto;
  display: block
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 34px;
  font-size: 14px;
  font-weight: 750;
  color: #111827
}

.nav-menu a:hover {
  color: var(--green3)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px
}

.btn.btn-nav-access {
  height: 48px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 18px;
  font-size: 13px;
  font-weight: 850;
  background: #101828;
  color: #fff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .08)
}

.btn.btn-nav-access:hover {
  background: var(--green2);
  color: #fff;
  transform: translateY(-1px)
}

.nav-access-mobile {
  display: none
}

.lang {
  position: relative;
  user-select: none
}

.lang-btn {
  height: 48px;
  min-width: 112px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  font-weight: 850;
  color: #111827;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .045);
  cursor: pointer
}

.lang.open .lang-btn {
  border-color: rgba(38, 201, 31, .35)
}

.lang-menu {
  display: none;
  position: absolute;
  right: 0;
  top: 58px;
  width: 132px;
  padding: 8px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: 0 22px 60px rgba(15, 23, 42, .13)
}

.lang.open .lang-menu {
  display: block
}

.lang-option {
  width: 100%;
  border: 0;
  background: transparent;
  border-radius: 12px;
  padding: 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  font-weight: 800;
  cursor: pointer;
  color: #1f2937
}

.lang-option:hover {
  background: #f5f8f6
}

.chev {
  width: 14px;
  height: 14px;
  color: #667085;
  transition: .22s ease;
  display: inline-flex
}

.chev svg {
  width: 14px;
  height: 14px;
  stroke: currentColor;
  stroke-width: 2.4;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round
}

.lang.open .chev {
  transform: rotate(180deg);
  color: var(--green3)
}

.flag {
  width: 22px;
  height: 15px;
  display: inline-block;
  border-radius: 2px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .1);
  position: relative;
  overflow: hidden;
  flex: 0 0 auto
}

.flag-us {
  background: repeating-linear-gradient(to bottom, #b22234 0 1.15px, #fff 1.15px 2.3px)
}

.flag-us:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 9px;
  height: 8px;
  background: #3c3b6e
}

.flag-br {
  background: #229e45
}

.flag-br:before {
  content: "";
  position: absolute;
  left: 3px;
  top: 2px;
  width: 16px;
  height: 11px;
  background: #f7df3e;
  transform: rotate(35deg)
}

.flag-br:after {
  content: "";
  position: absolute;
  left: 8px;
  top: 4px;
  width: 7px;
  height: 7px;
  background: #002776;
  border-radius: 50%
}

.flag-es {
  background: linear-gradient(to bottom, #aa151b 0 25%, #f1bf00 25% 75%, #aa151b 75% 100%)
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 50px;
  padding: 0 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
  transition: .2s ease
}

.btn-primary {
  background: linear-gradient(135deg, var(--green), var(--green2));
  color: #fff;
  box-shadow: 0 12px 28px rgba(38, 201, 31, .16)
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(38, 201, 31, .22)
}

.icon-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 850;
  color: #0f172a
}

.icon-circle {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(38, 201, 31, .32);
  display: grid;
  place-items: center;
  color: var(--green3);
  background: #fff;
  font-size: 18px;
  line-height: 1
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 84px 0 88px;
  background: linear-gradient(180deg, #fff 0%, #f3fbf1 100%)
}

.hero:before {
  content: "";
  position: absolute;
  right: 7%;
  top: 64px;
  width: 540px;
  height: 540px;
  border: 1px solid rgba(38, 201, 31, .16);
  border-radius: 50%
}

.hero:after {
  content: "";
  position: absolute;
  right: 18%;
  top: 130px;
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(38, 201, 31, .11), transparent 70%);
  border-radius: 50%
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 62px;
  align-items: center
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  background: #eaf9e8;
  color: var(--green3);
  padding: 9px 15px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 26px
}

.badge-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%
}

h1 {
  font-size: clamp(54px, 6vw, 84px);
  line-height: 1.02;
  letter-spacing: -.065em;
  margin-bottom: 26px
}

h1 span {
  color: var(--green2)
}

.lead {
  font-size: 18px;
  line-height: 1.78;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 32px
}

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

.trust-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 3
}

.trust-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid #e8edf2;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 13px;
  color: #1f2937;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .035)
}

.trust-pill svg {
  width: 17px;
  height: 17px;
  color: var(--green2);
  stroke-width: 2.2;
  fill: none;
  stroke: currentColor
}

.laptop {
  position: relative;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
  background: #1c232b;
  border: 1px solid #151b22;
  border-radius: 24px 24px 10px 10px;
  padding: 16px 16px 20px;
  box-shadow: 0 34px 78px rgba(15, 23, 42, .18)
}

.laptop:after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -23px;
  transform: translateX(-50%);
  width: 112%;
  height: 26px;
  border-radius: 4px 4px 22px 22px;
  background: linear-gradient(180deg, #a7b0b7, #2d3338);
  box-shadow: 0 14px 30px rgba(15, 23, 42, .18)
}

.laptop-screen {
  height: 392px;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15)
}

.laptop-screen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #fff
}

.brand-video {
  position: relative;
  width: 100%;
  background: #050b08;
  overflow: hidden
}

.brand-video::before,
.brand-video::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1
}

.brand-video::before {
  background:
    radial-gradient(circle at 50% 36%, rgba(255, 255, 255, .08), transparent 42%),
    rgba(3, 8, 6, .16)
}

.brand-video::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, .075) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .075) 1px, transparent 1px);
  background-size: 7px 7px;
  opacity: .26;
  mix-blend-mode: overlay
}

.brand-video-media {
  display: block;
  width: 100%;
  height: clamp(280px, 38vw, 560px);
  object-fit: cover;
  object-position: center center;
  background: #050b08
}

.section {
  padding: 88px 0
}

.section-white {
  background: #fff
}

.platform-model {
  background: #fff;
  border-bottom: 1px solid #edf2ee
}

.platform-model-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 72px;
  align-items: start
}

.model-copy {
  display: grid;
  gap: 18px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75
}

.model-copy p {
  max-width: 720px
}

.model-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px
}

.model-points span {
  border: 1px solid rgba(38, 201, 31, .24);
  background: #f3fbf1;
  color: #126b26;
  border-radius: 999px;
  padding: 9px 13px;
  font-size: 13px;
  font-weight: 400
}

.section-negative {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #0a7426 0%, #119536 100%);
  color: #fff
}

.section-negative:before {
  content: "";
  position: absolute;
  right: -120px;
  top: -190px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(98, 255, 90, .20), transparent 68%)
}

.section-negative:after {
  content: "";
  position: absolute;
  left: -170px;
  bottom: -260px;
  width: 620px;
  height: 620px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .10), transparent 65%)
}

.section-negative .container {
  position: relative;
  z-index: 2
}

.center {
  text-align: center
}

.kicker {
  font-size: 13px;
  font-weight: 900;
  color: var(--green2);
  letter-spacing: .13em;
  text-transform: uppercase;
  margin-bottom: 13px
}

.section-negative .kicker {
  color: #c8ffc6
}

.section-title {
  font-size: clamp(34px, 4.1vw, 48px);
  line-height: 1.05;
  letter-spacing: -.045em;
  margin-bottom: 16px
}

.section-lead {
  max-width: 760px;
  margin: 0 auto 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7
}

.plan-anchor-links {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 0 auto 8px;
  padding: 6px;
  border: 1px solid rgba(17, 149, 54, .16);
  border-radius: 999px;
  background: #f5fcf4;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .82)
}

.plan-anchor-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: transparent;
  color: #126b26;
  font-size: 14px;
  font-weight: 650;
  text-decoration: none
}

.plan-anchor-links a:hover {
  border-color: rgba(17, 149, 54, .42);
  background: #effbee
}

.plan-anchor-links a.is-active {
  border-color: rgba(17, 149, 54, .34);
  background: var(--green2);
  color: #fff;
  box-shadow: 0 10px 22px rgba(38, 201, 31, .16)
}

.section-negative .section-title {
  color: #fff
}

.features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 54px;
  margin-top: 58px;
  text-align: left
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  background: #effbee;
  border: 1px solid rgba(38, 201, 31, .14);
  display: grid;
  place-items: center;
  color: var(--green2);
  margin-bottom: 22px
}

.section-negative .feature-icon {
  background: rgba(255, 255, 255, .12);
  border-color: rgba(255, 255, 255, .22);
  color: #fff;
  backdrop-filter: blur(10px)
}

.feature-icon svg {
  width: 28px;
  height: 28px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2
}

.feature h3 {
  font-size: 19px;
  margin-bottom: 12px;
  letter-spacing: -.02em
}

.section-negative .feature h3 {
  color: #fff
}

.feature p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted)
}

.section-negative .feature p {
  color: rgba(255, 255, 255, .76)
}

.section-mint {
  background: linear-gradient(180deg, #f4fbf2 0%, #fff 100%);
  border-top: 1px solid #eff4f0;
  border-bottom: 1px solid #eff4f0
}

.pricing {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 34px;
  align-items: stretch
}

.plan-model-header {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: end;
  text-align: left;
  margin: 36px 0 22px;
  padding: 26px 28px;
  border: 1px solid rgba(17, 149, 54, .18);
  border-radius: 20px;
  background: linear-gradient(135deg, #fff 0%, #f8fcf7 100%);
  box-shadow: 0 16px 42px rgba(15, 23, 42, .045)
}

.plan-model-panel[hidden] {
  display: none !important
}

.plan-model-header h3,
.annual-open-head h3 {
  margin-top: 12px;
  font-size: 26px;
  line-height: 1.15;
  letter-spacing: -.035em
}

.plan-model-header p,
.annual-open-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.72
}

.plan-model-pill {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(17, 149, 54, .24);
  border-radius: 999px;
  padding: 7px 11px;
  background: #effbee;
  color: var(--green3);
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0
}

.billing-toggle {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 26px;
  border: 1px solid #d9dee5;
  background: #f5f5f5;
  min-width: 320px
}

.billing-option {
  border: 0;
  background: transparent;
  color: #5d6772;
  min-height: 38px;
  padding: 0 28px;
  font: inherit;
  font-size: 14px;
  font-weight: 550;
  cursor: pointer
}

.billing-option.active {
  background: var(--green2);
  color: #fff;
  font-weight: 650;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, .42)
}

.plan {
  background: #fff;
  border: 1px solid rgba(38, 201, 31, .55);
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 14px 36px rgba(15, 23, 42, .045);
  display: flex;
  flex-direction: column;
  text-align: left
}

.stripe-style-pricing {
  align-items: stretch;
  gap: 24px;
  text-align: left
}

.pricing-plan {
  border: 1px solid rgba(17, 149, 54, .22);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, .05);
  padding: 28px;
  min-height: 410px
}

.pricing-plan.recommended-plan {
  background: linear-gradient(180deg, #fbfefb 0%, #fff 100%);
  border-color: rgba(17, 149, 54, .34);
  box-shadow: 0 22px 54px rgba(38, 201, 31, .08)
}

.recommended-slot {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: flex-start;
  min-height: 30px;
  margin-bottom: 18px
}

.plan-tier-badge {
  align-self: flex-start;
  border: 1px solid rgba(17, 149, 54, .20);
  border-radius: 999px;
  padding: 6px 10px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em
}

.plan-tier-starter {
  color: #126b26;
  background: #effbee;
  border-color: rgba(17, 149, 54, .24)
}

.plan-tier-pro,
.plan-tier-scale {
  color: #126b26;
  background: #effbee;
  border-color: rgba(17, 149, 54, .24)
}

.plan.scale {
  border-color: rgba(38, 201, 31, .65);
  box-shadow: 0 18px 46px rgba(38, 201, 31, .10)
}

.pricing-plan h3 {
  font-size: 24px;
  margin-bottom: 12px;
  letter-spacing: -.035em
}

.pricing-plan .desc {
  color: var(--muted);
  line-height: 1.42;
  min-height: 84px;
  margin-bottom: 22px;
  max-width: 300px
}

.price {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  margin-bottom: 8px;
  color: #202225
}

.price strong {
  display: block;
  font-size: 42px;
  letter-spacing: -.055em;
  line-height: .9;
  white-space: nowrap
}

.price > span {
  margin-bottom: 6px;
  font-size: 14px
}

.price .price-period {
  max-width: 72px;
  line-height: 1.05;
  color: #7c8289
}

.billing-detail {
  min-height: 18px;
  margin: 0 0 18px;
  color: #667085;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.35;
}

.billing-detail[hidden] {
  display: none;
}

.pricing-plan .btn {
  width: 100%;
  margin: 0 0 18px;
  min-height: 44px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(38, 201, 31, .14);
  color: #fff;
  font-weight: 650
}

.pricing-plan .btn.is-disabled {
  background: #98a2ad;
  border-color: #98a2ad;
  cursor: default;
  pointer-events: none;
  opacity: .82
}

.includes {
  font-size: 14px;
  color: #1f2937;
  margin-bottom: 14px
}

.pricing-plan ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 0
}

.pricing-plan li {
  display: flex;
  gap: 10px;
  font-size: 14px;
  color: #1f2937;
  line-height: 1.25
}

.check-dot {
  width: 13px;
  height: 13px;
  flex: 0 0 auto;
  margin-top: 2px;
  border-radius: 999px;
  background: #92979a;
  position: relative
}

.check-dot::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 4px;
  height: 6px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg)
}

.payment-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #7a8491;
  font-size: 13px;
  margin-top: 26px
}

.annual-open-section {
  margin-top: 0
}

.annual-open-head {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 38px;
  align-items: end;
  text-align: left;
  margin: 36px 0 28px;
  padding: 26px 28px;
  border: 1px solid rgba(17, 149, 54, .18);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(15, 23, 42, .045)
}

.annual-pricing {
  margin-top: 0
}

.annual-plan {
  min-height: 410px
}

.annual-plan h3 {
  margin-top: 18px
}

.annual-badge {
  align-self: flex-start;
  border: 1px solid #d7dbe0;
  border-radius: 999px;
  padding: 6px 11px;
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: .04em
}

.annual-flex-starter .annual-badge {
  color: #126b26;
  background: #effbee;
  border-color: rgba(17, 149, 54, .28)
}

.annual-flex-pro .annual-badge {
  color: #0f6f47;
  background: #e9fbf3;
  border-color: rgba(15, 111, 71, .26)
}

.annual-flex-scale .annual-badge {
  color: #075f2c;
  background: #def9e4;
  border-color: rgba(7, 95, 44, .30)
}

.annual-plan .btn.is-disabled {
  background: #98a2ad;
  border-color: #98a2ad;
  cursor: default;
  pointer-events: none;
  opacity: .82
}

.payment-note svg {
  width: 16px;
  height: 16px;
  color: var(--green2);
  stroke: currentColor;
  fill: none
}

.ops-section {
  padding-top: 0;
  background: linear-gradient(180deg, #fff 0%, #f7fbf6 100%)
}

.ops-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 18px;
  align-items: start;
  border: 1px solid rgba(38, 201, 31, .20);
  border-radius: 22px;
  padding: 28px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, .055);
  margin-top: 30px
}

.ops-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: var(--green2);
  background: #effbee;
  border: 1px solid rgba(38, 201, 31, .16)
}

.ops-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round
}

.ops-note h2 {
  font-size: 22px;
  letter-spacing: -.025em;
  margin-bottom: 8px
}

.ops-note p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 15px
}

.term-help {
  position: relative;
  color: var(--green3);
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
  cursor: help
}

.term-help:after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  width: min(290px, 78vw);
  padding: 12px 14px;
  border-radius: 12px;
  background: #101828;
  color: #fff;
  font-size: 12px;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .18);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: .18s ease;
  z-index: 5
}

.term-help:before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 4px);
  border: 6px solid transparent;
  border-top-color: #101828;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition: .18s ease;
  z-index: 6
}

.term-help:hover:after,
.term-help:focus-visible:after,
.term-help:hover:before,
.term-help:focus-visible:before {
  opacity: 1;
  transform: translate(-50%, 0)
}

.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
  text-align: left
}

.faq details {
  background: #fff;
  border: 1px solid #e4eaf0;
  border-radius: 10px;
  padding: 0 18px
}

.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 18px 0;
  font-weight: 750
}

.faq summary::-webkit-details-marker {
  display: none
}

.faq summary:after {
  content: "";
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
  background: currentColor;
  color: #667085;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat;
  transition: .22s ease
}

.faq details[open] summary:after {
  transform: rotate(180deg);
  color: var(--green3)
}

.faq p {
  color: var(--muted);
  line-height: 1.65;
  padding: 0 0 18px;
  font-size: 15px
}

.footer {
  border-top: 2px solid rgba(38, 201, 31, .85);
  padding: 34px 0 22px;
  background: #fff
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 34px;
  margin-bottom: 26px
}

.footer-logo {
    width: 100px;
  }

.footer-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap
  }

.footer p {
  font-size: 9px;
  color: var(--muted);
  line-height: 1.6;
  max-width: 300px
}

.footer h4 {
  font-size: 15px;
  margin-bottom: 14px
}

.footer a {
  display: block;
  font-size: 14px;
  color: #4b5563;
  margin: 9px 0
}

.footer a:hover {
  color: var(--green3)
}

.social {
  display: flex;
  gap: 12px
}

.social a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #f3f6f4;
  border: 1px solid #e3e9e4;
  display: grid;
  place-items: center;
  font-weight: 900;
  margin: 0
}

.social svg {
  width: 19px;
  height: 19px;
  stroke: var(--green3);
  stroke-width: 1.8;
  fill: none
}

.copyright {
  text-align: center;
  color: #8a94a3;
  font-size: 13px
}

.page-hero {
  padding: 74px 0;
  background: linear-gradient(180deg, #fff, #f4fbf2);
  border-bottom: 1px solid var(--line)
}

.page-hero h1 {
  font-size: clamp(42px, 5vw, 66px)
}

.content-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 34px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, .045)
}

.content-card h2 {
  font-size: 30px;
  margin-bottom: 14px
}

.terms-content h2 {
  margin-bottom: 28px
}

.terms-content h3 {
  margin: 30px 0 12px;
  font-size: 20px
}

.terms-content h4 {
  margin: 18px 0 8px;
  font-size: 16px
}

.terms-content p {
  margin-bottom: 12px
}

.content-card p,
.content-card li {
  color: var(--muted);
  line-height: 1.75
}

.content-card ul {
  padding-left: 20px;
  margin-top: 14px
}

.strategy-detail {
  display: grid;
  grid-template-columns: minmax(320px, .88fr) minmax(0, 1.12fr);
  gap: 46px;
  align-items: center
}

.strategy-detail .content-card {
  padding: 42px
}

.strategy-detail .content-card h2:not(:first-child) {
  margin-top: 34px
}

.strategy-detail .content-card h2 + p {
  margin-bottom: 28px
}

.strategy-detail .content-card p:last-child {
  margin-bottom: 0
}

.strategy-visual {
  padding: 22px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 14%, rgba(38, 201, 31, .14), transparent 28%),
    linear-gradient(145deg, #f7fbf6, #ffffff);
  box-shadow: 0 24px 70px rgba(15, 23, 42, .1)
}

.tablet-mockup {
  position: relative;
  padding: 34px 16px 18px;
  border: 1px solid #d8e0dc;
  border-radius: 34px;
  background: #111827;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, .08),
    0 18px 45px rgba(15, 23, 42, .16)
}

.tablet-camera {
  position: absolute;
  top: 15px;
  left: 50%;
  width: 46px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .22);
  transform: translateX(-50%)
}

.tablet-screen {
  overflow: hidden;
  border-radius: 20px;
  background: #fff
}

.tablet-screen img {
  display: block;
  width: 100%;
  height: auto
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start
}

.support-copy h3 {
  margin: 30px 0 12px;
  font-size: 20px
}

.contact-form {
  display: grid;
  gap: 18px
}

.form-row {
  display: grid;
  gap: 8px
}

.form-row label {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink)
}

.form-row input,
.form-row textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-size: 15px;
  padding: 14px 16px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease
}

.form-row textarea {
  resize: vertical;
  min-height: 160px
}

.form-row input:focus,
.form-row textarea:focus {
  border-color: rgba(44, 160, 28, .55);
  box-shadow: 0 0 0 4px rgba(44, 160, 28, .10)
}

.form-status {
  min-height: 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5
}

.form-status.success {
  color: #15803d;
  font-weight: 700
}

.form-status.error {
  color: #c2410c;
  font-weight: 700
}

.contact-form .btn {
  justify-self: start;
  border: 0;
  cursor: pointer
}

.contact-form .btn:disabled {
  cursor: wait;
  opacity: .72
}

@media(max-width:1050px) {

  .hero-grid,
  .platform-model-grid,
  .pricing,
  .footer-grid,
  .strategy-detail {
    grid-template-columns: 1fr
  }

  .features {
    grid-template-columns: repeat(2, 1fr)
  }

  .laptop-screen {
    height: 330px
  }
}

@media(max-width:760px) {
  html {
    scroll-padding-top: 76px
  }

  .container {
    width: min(100% - 28px, 1180px)
  }

  .nav {
    min-height: 70px;
    height: auto;
    padding: 12px 0;
    align-items: center;
    gap: 10px
  }

  .logo {
    width: 118px
  }

  .nav-menu {
    display: none
  }

  .nav-actions {
    gap: 6px
  }

  .btn.btn-nav-access {
    height: 40px;
    min-height: 40px;
    padding: 0 10px;
    min-width: 64px;
    border-radius: 13px;
    font-size: 12px
  }

  .nav-access-desktop {
    display: none
  }

  .nav-access-mobile {
    display: inline
  }

  .lang-btn {
    height: 40px;
    min-width: 76px;
    border-radius: 13px
  }

  .btn {
    min-height: 42px;
    padding: 0 14px;
    font-size: 13px
  }

  .hero {
    padding: 44px 0 56px
  }

  h1 {
    letter-spacing: -.045em
  }

  .hero-grid {
    gap: 34px
  }

  .lead {
    font-size: 16px
  }

  .hero-actions .btn,
  .icon-link {
    width: 100%;
    justify-content: center
  }

  .trust-row {
    display: grid;
    grid-template-columns: 1fr
  }

  .laptop {
    padding: 10px 10px 14px;
    border-radius: 18px
  }

  .laptop-screen {
    height: 250px
  }

  .brand-video-media {
    height: clamp(220px, 48vw, 360px)
  }

  .features,
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 22px
  }

  .section-lead {
    font-size: 15px;
    margin-bottom: 22px
  }

  .features {
    margin-top: 38px
  }

  .section {
    padding: 56px 0
  }

  .platform-model-grid {
    gap: 22px
  }

  .annual-open-head {
    grid-template-columns: 1fr;
    gap: 18px;
    margin: 26px 0 24px;
    padding: 22px
  }

  .plan-model-header {
    grid-template-columns: 1fr;
    gap: 16px;
    margin: 26px 0 18px;
    padding: 22px
  }

  .annual-plan {
    min-height: auto;
    padding: 24px
  }

  .model-copy {
    font-size: 15px
  }

  .model-points {
    display: grid;
    grid-template-columns: 1fr
  }

  .ops-note {
    grid-template-columns: 1fr;
    padding: 22px
  }

  .plan {
    padding: 26px
  }

  .plan-anchor-links {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    border-radius: 22px
  }

  .plan-anchor-links a {
    min-height: 44px;
    padding: 0 14px
  }

  .billing-toggle {
    width: 100%;
    min-width: 0
  }

  .billing-option {
    padding: 0 10px;
    font-size: 13px
  }

  .stripe-style-pricing {
    gap: 18px;
    margin-top: 28px
  }

  .pricing-plan,
  .pricing-plan.recommended-plan {
    border: 1px solid rgba(17, 149, 54, .22);
    border-radius: 18px;
    padding: 28px 22px;
    min-height: auto
  }

  .pricing-plan .desc {
    min-height: 0
  }

  .footer-grid {
    gap: 22px
  }

  .strategy-detail {
    gap: 22px
  }

  .strategy-detail .content-card {
    padding: 28px
  }

  .strategy-visual {
    padding: 12px;
    border-radius: 24px
  }

  .tablet-mockup {
    padding: 28px 10px 12px;
    border-radius: 24px
  }

  .tablet-screen {
    border-radius: 14px
  }

  .footer {
    padding: 28px 0 20px
  }

  .footer-logo {
    width: 118px
  }

  .footer-row {
    justify-content: center;
    text-align: center;
    gap: 12px
  }

  .page-hero {
    padding: 46px 0 42px
  }

  .content-card {
    border-radius: 16px;
    padding: 24px
  }

  .content-card h2 {
    font-size: 24px
  }

  .support-layout {
    grid-template-columns: 1fr
  }

  .contact-form .btn {
    width: 100%;
    justify-content: center
  }
}


/* ===== FAQ NEGATIVE SECTION ===== */

.faq-negative {
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, .08), transparent 32%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, .06), transparent 28%),
    linear-gradient(135deg, #0b6f25 0%, #10892f 100%);
  position: relative;
  overflow: hidden;
}

.faq-negative .container {
  position: relative;
  z-index: 2;
}

.faq-negative .kicker {
  color: #d5ffd4;
}

.faq-negative .section-title {
  color: #ffffff;
}

.faq-negative .faq details {
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .14);
  backdrop-filter: blur(10px);
  box-shadow: none;
}

.faq-negative .faq summary {
  color: #ffffff;
}

.faq-negative .faq summary:after {
  color: #d8ffe0;
}

.faq-negative .faq p {
  color: rgba(255, 255, 255, .78);
}

/* ===== PRICING FINAL ALIGNMENT ===== */
.stripe-style-pricing .pricing-plan {
  padding-top: 30px;
}

.stripe-style-pricing .recommended-slot {
  min-height: 30px;
  margin-bottom: 18px;
}

.stripe-style-pricing .price strong {
  display: inline-block;
  font-size: 42px;
  line-height: .9;
  letter-spacing: -.055em;
}

.stripe-style-pricing .plan-cta,
.billing-toggle .billing-option.active {
  color: #fff;
  font-weight: 650;
}



/* ===== FAQ NEGATIVE FIX V6 ===== */
.faq-negative {
  background:
    radial-gradient(circle at 18% 10%, rgba(255, 255, 255, .10), transparent 28%),
    radial-gradient(circle at 86% 22%, rgba(52, 213, 31, .18), transparent 34%),
    linear-gradient(135deg, #0b6f25 0%, #10892f 100%) !important;
}

.faq-negative .faq details {
  background: rgba(255, 255, 255, .10) !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-radius: 14px !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, .08) !important;
  overflow: hidden;
}

.faq-negative .faq summary {
  color: #ffffff !important;
  min-height: 64px;
  padding: 20px 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.faq-negative .faq summary span,
.faq-negative .faq summary [data-i18n] {
  color: #ffffff !important;
}

.faq-negative .faq summary::after {
  color: #e7ffe9 !important;
  opacity: .95;
}

.faq-negative .faq p {
  color: rgba(255, 255, 255, .78) !important;
  padding: 0 0 22px !important;
}

/* Prevent translated summary text from disappearing in some browsers */
.faq-negative summary {
  -webkit-text-fill-color: #ffffff;
}



/* FAQ FINAL FIX */
.faq-negative .faq-grid {
  margin-top: 48px;
}

.faq-negative .faq details {
  background: rgba(255, 255, 255, .10) !important;
  border: 1px solid rgba(255, 255, 255, .18) !important;
  border-radius: 14px !important;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.faq-negative .faq summary {
  min-height: 72px;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 0 !important;
}

.faq-negative .faq summary span {
  color: #ffffff !important;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.5;
  display: block !important;
  width: 100%;
  padding: 24px 0;
}

.faq-negative .faq p {
  color: rgba(255, 255, 255, .78) !important;
  padding: 0 0 24px !important;
}



/* =========================================================
   FAQ NEGATIVE - DEFINITIVE OVERRIDE
   Important: section has BOTH classes: .faq-negative AND .faq
   So selectors must be .faq-negative details, not .faq-negative .faq details
========================================================= */

section.faq-negative {
  background:
    radial-gradient(circle at 14% 10%, rgba(255, 255, 255, .10), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(80, 255, 80, .16), transparent 34%),
    linear-gradient(135deg, #0b6f25 0%, #10892f 100%) !important;
  color: #fff !important;
}

section.faq-negative .kicker,
section.faq-negative .section-title {
  color: #fff !important;
}

section.faq-negative .faq-grid {
  margin-top: 48px !important;
}

section.faq-negative details {
  background: rgba(255, 255, 255, .10) !important;
  border: 1px solid rgba(255, 255, 255, .22) !important;
  border-radius: 14px !important;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .08) !important;
  backdrop-filter: blur(14px) !important;
  -webkit-backdrop-filter: blur(14px) !important;
  overflow: hidden !important;
}

section.faq-negative summary {
  min-height: 72px !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}

section.faq-negative summary span {
  display: block !important;
  flex: 1 1 auto !important;
  padding: 24px 0 !important;
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  line-height: 1.45 !important;
  opacity: 1 !important;
  visibility: visible !important;
}

section.faq-negative summary::after {
  content: "" !important;
  width: 18px !important;
  height: 18px !important;
  flex: 0 0 18px !important;
  margin-left: 18px !important;
  background: #eaffea !important;
  opacity: .95 !important;
  transform: rotate(0deg) !important;
  transition: .22s ease !important;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat !important;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") center/contain no-repeat !important;
}

section.faq-negative details[open] summary::after {
  transform: rotate(180deg) !important;
}

section.faq-negative details p {
  color: rgba(255, 255, 255, .78) !important;
  -webkit-text-fill-color: rgba(255, 255, 255, .78) !important;
  padding: 0 0 24px !important;
  font-size: 15px !important;
  line-height: 1.7 !important;
}
