    :root {
      --green: #008934;
      --green-dark: #006828;
      --green-light: #E8F5ED;
      --green-mid: #A8DDB8;
      --orange: #EB8000;
      --orange-light: #FFF3E3;
      --ink: #101828;
      --slate: #475467;
      --muted: #98A2B3;
      --border: #E4EAF0;
      --bg: #FFFDFE;
      --font-sans: 'Inter', Arial, sans-serif;
      --fs-title: 30px;
      --fw-title: 800;
      --fs-subtitle: 18px;
      --fw-subtitle: 800;
      --fs-body: 16px;
      --r-md: 8px;
      --r-lg: 12px;
      --r-xl: 16px;
      --r-full: 9999px;
      --app-container-max: 1536px;
      --app-container-px: 100px;
      --app-header-height: 60px;
      --sh-sm: 0 1px 3px rgba(0, 0, 0, .06);
      --sh-md: 0 4px 16px rgba(0, 0, 0, .08);
      --sh-lg: 0 8px 28px rgba(0, 0, 0, .10);
    }

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

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--font-sans);
      background: var(--bg);
      color: var(--ink);
      overflow-x: hidden;
      line-height: 1.6
    }

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

    a {
      text-decoration: none
    }

    .nav {
      position: sticky;
      top: 0;
      left: 0;
      right: 0;
      z-index: 200;
      height: var(--app-header-height);
      background: #fff;
      box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
      border-bottom: 1px solid var(--border);
      overflow: hidden
    }

    .nav-inner {
      height: 100%;
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
      align-items: center
    }

    .nav-logo img {
      height: 30px
    }

    .nav-links {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 28px
    }

    .nav-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--slate)
    }

    .nav-links a:hover {
      color: var(--green)
    }

    .nav-cta {
      display: flex;
      gap: 8px;
      align-items: center;
      justify-self: end
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      border: none;
      font-family: var(--font-sans);
      font-weight: 600;
      border-radius: var(--r-md);
      transition: all .2s;
      white-space: nowrap;
      text-decoration: none
    }

    .btn-sm {
      font-size: 13px;
      padding: 7px 16px
    }

    .btn-lg {
      font-size: 15px;
      padding: 13px 28px;
      border-radius: var(--r-lg);
      font-weight: 700
    }

    .btn-ghost {
      background: #fff;
      color: var(--slate);
      border: 1.5px solid var(--border)
    }

    .btn-ghost:hover {
      border-color: var(--green);
      color: var(--green)
    }

    .btn-primary {
      background: var(--green);
      color: #fff
    }

    .btn-primary:hover {
      background: var(--green-dark);
      transform: translateY(-1px)
    }

    .btn-outline-white {
      background: transparent;
      color: #fff;
      border: 1.5px solid rgba(255, 255, 255, .5)
    }

    .btn-outline-white:hover {
      background: rgba(255, 255, 255, .1)
    }

    .btn-white {
      background: #fff;
      color: var(--green);
      border: 2px solid #fff;
      font-weight: 700
    }

    .btn-white:hover {
      background: var(--green-light)
    }

    .banner {
      background: linear-gradient(90deg, var(--green-dark), var(--green));
      color: #fff;
      text-align: center;
      padding: 8px 16px;
      font-size: 13px;
      font-weight: 600
    }

    .banner em {
      font-style: normal;
      background: rgba(255, 255, 255, .2);
      border-radius: var(--r-full);
      padding: 2px 10px;
      margin-right: 8px;
      display: inline-flex;
      align-items: center;
      gap: 6px
    }

    .nav-top-links {
      display: flex;
      gap: 24px;
      align-items: center
    }

    .nav-top-links a {
      font-size: 13px;
      font-weight: 500;
      color: var(--slate)
    }

    .nav-top-links a:hover {
      color: var(--green)
    }

    .hero {
      padding: 116px 0 28px;
      background: linear-gradient(135deg, #E8F7EE 0%, #FBF8F2 50%, #FFF1DF 100%);
      position: relative;
      overflow: hidden
    }

    .hero::before,
    .hero::after {
      content: '';
      position: absolute;
      border-radius: 50%;
      pointer-events: none
    }

    .hero::before {
      top: -90px;
      left: -110px;
      width: 460px;
      height: 460px;
      background: radial-gradient(circle, rgba(101, 214, 142, .18) 0%, transparent 68%)
    }

    .hero::after {
      right: -120px;
      bottom: -120px;
      width: 420px;
      height: 420px;
      background: radial-gradient(circle, rgba(255, 190, 111, .18) 0%, transparent 68%)
    }

    .hero-inner {
      position: relative;
      z-index: 1
    }

    .hero-main {
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.22fr);
      gap: clamp(24px, 2.8vw, 40px);
      align-items: stretch
    }

    .hero-copy {
      max-width: min(100%, 620px)
    }

    .hero h1 {
      font-size: clamp(40px, 4.3vw, 60px);
      font-weight: 900;
      line-height: 1.02;
      letter-spacing: -.045em;
      margin-bottom: 18px
    }

    .hero h1 em {
      font-style: normal;
      color: var(--green)
    }

    .hero-sub {
      font-size: clamp(20px, 1.7vw, 24px);
      color: #5D6B82;
      line-height: 1.55;
      margin-bottom: 30px;
      max-width: 460px
    }

    .hero-price-line {
      display: flex;
      align-items: flex-end;
      gap: 18px;
      margin-bottom: 28px
    }

    .hero-price-main {
      display: flex;
      flex-direction: column;
      gap: 4px
    }

    .price-label {
      font-size: 13px;
      color: var(--ink);
      font-weight: 500
    }

    .price-row-main {
      display: flex;
      align-items: flex-end;
      gap: 4px
    }

    .price-value {
      font-size: 42px;
      font-weight: 900;
      color: var(--ink);
      letter-spacing: -.04em;
      line-height: .92
    }

    .price-mo {
      font-size: 17px;
      font-weight: 500;
      color: #526074;
      padding-bottom: 4px
    }

    .price-note {
      font-size: 13px;
      color: #5D6B82;
      line-height: 1.35
    }

    .price-note strong {
      display: block;
      color: var(--ink);
      font-weight: 600
    }

    .hero-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 28px
    }

    .hero-benefits {
      display: flex;
      flex-direction: column;
      gap: 12px
    }

    .hb-row {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      font-size: 15px;
      color: #5D6B82
    }

    .hb-row strong {
      color: var(--ink)
    }

    .hb-dot {
      width: 18px;
      height: 18px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 3px
    }

    .hb-dot::after {
      content: '';
      display: block;
      width: 14px;
      height: 14px;
      background: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7.8 13.4 4.9 10.5 3.5 11.9l4.3 4.3L16.5 7.5l-1.4-1.4-7.3 7.3Z' fill='%23008934'/%3E%3C/svg%3E") center/contain no-repeat
    }

    .hero-visual {
      position: relative;
      min-height: 100%;
      display: flex;
      align-items: stretch;
      justify-content: stretch;
      width: 100%;
      margin-right: calc(-1 * var(--app-container-px));
      max-width: calc(100% + var(--app-container-px))
    }

    .hero-screenshot {
      position: relative;
      width: 100%;
      max-width: none;
      height: auto;
      padding: 0
    }

    .hero-shot-primary {
      width: 100%;
      height: auto;
      border-radius: 20px;
      border: none;
      box-shadow: none;
      overflow: hidden
    }

    .hero-shot-primary img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      object-position: right center
    }

    .hero-features {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 34px
    }

    .hero-feat {
      background: rgba(255, 255, 255, .88);
      border: 1px solid rgba(228, 234, 240, .95);
      border-radius: 18px;
      padding: 22px 20px 24px;
      box-shadow: 0 10px 24px rgba(16, 24, 40, .08);
      min-height: 168px
    }

    .hero-feat-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #E7F8EC;
      color: var(--green);
      margin-bottom: 18px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .hero-feat-icon i[data-lucide],
    .hero-feat-icon svg {
      width: 18px;
      height: 18px;
      stroke-width: 1.9
    }

    .hero-feat-title {
      font-size: var(--fs-subtitle);
      font-weight: var(--fw-subtitle);
      color: #1B2233;
      margin-bottom: 8px;
      line-height: 1.2
    }

    .hero-feat-desc {
      font-size: var(--fs-body);
      color: #5D6B82;
      line-height: 1.45;
      max-width: 240px
    }

    .stats-sec {
      background: #079436;
      padding: 34px 0
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      width: 100%;
      max-width: 1120px;
      margin: 0 auto
    }

    .stat-item {
      text-align: center;
      padding: 4px 24px;
      position: relative
    }

    .stat-item:not(:last-child)::after {
      content: '';
      position: absolute;
      right: 0;
      top: 50%;
      width: 1px;
      height: 50px;
      background: rgba(255, 255, 255, .35);
      transform: translateY(-50%)
    }

    .stat-num {
      font-size: clamp(40px, 4.2vw, 46px);
      font-weight: 900;
      color: #fff;
      line-height: 1;
      letter-spacing: -.04em
    }

    .stat-label {
      margin-top: 12px;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: .04em;
      text-transform: uppercase;
      color: #fff;
      line-height: 1.35;
      white-space: nowrap
    }

    .why-top-sec {
      padding: 78px 0;
      background: #EAF6FB
    }

    .why-top-inner {
      display: grid;
      grid-template-columns: minmax(0, 1.03fr) minmax(0, .97fr);
      gap: 38px;
      align-items: start
    }

    .why-top-copy {
      max-width: 520px
    }

    .why-top-label {
      font-size: var(--fs-subtitle);
      font-weight: var(--fw-subtitle);
      color: var(--orange);
      font-style: italic;
      letter-spacing: .01em;
      margin-bottom: 10px
    }

    .why-top-inner h2 {
      font-size: var(--fs-title);
      font-weight: var(--fw-title);
      color: #046C2E;
      letter-spacing: -.03em;
      margin-bottom: 6px;
      line-height: 1.15
    }

    .why-top-img {
      width: fit-content;
      max-width: 100%
    }

    .why-top-img img {
      width: 600px;
      max-width: 100%;
      height: 400px;
      object-fit: cover;
      display: block
    }

    .why-feat-list {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding-top: 8px
    }

    .why-feat-item {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      background: rgba(255, 255, 255, .94);
      border: 1px solid rgba(228, 234, 240, .95);
      border-radius: 16px;
      padding: 22px 20px;
      box-shadow: 0 8px 20px rgba(16, 24, 40, .05)
    }

    .why-feat-icon {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: #E7F8EC;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .why-feat-icon i[data-lucide],
    .why-feat-icon svg {
      width: 18px;
      height: 18px;
      stroke-width: 2;
      color: var(--green)
    }

    .why-feat-content {
      padding-top: 1px
    }

    .why-feat-title {
      font-size: var(--fs-subtitle);
      font-weight: var(--fw-subtitle);
      color: #1B2233;
      margin-bottom: 8px;
      line-height: 1.2
    }

    .why-feat-desc {
      font-size: var(--fs-body);
      color: #5D6B82;
      line-height: 1.5;
      max-width: 380px
    }

    .how-sec {
      padding: 72px 0;
      background: var(--bg)
    }

    .sec-head {
      text-align: center;
      margin-bottom: 40px
    }

    .sec-head h2 {
      font-size: var(--fs-title);
      font-weight: var(--fw-title);
      color: var(--ink);
      letter-spacing: -.02em
    }

    .sec-head h2 em {
      font-style: normal;
      color: var(--green)
    }

    .sec-head p {
      font-size: var(--fs-body);
      color: var(--slate);
      margin-top: 6px
    }

    .how-sec .sec-head {
      margin-bottom: 100px
    }

    .core-rows {
      display: flex;
      flex-direction: column;
      gap: 50px;
      max-width: 960px;
      margin: 0 auto
    }

    .core-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 50px;
      align-items: center;
      padding: 0
    }

    .core-row.rev {
      direction: rtl
    }

    .core-row.rev>* {
      direction: ltr
    }

    .core-visual {
      border-radius: var(--r-xl);
      overflow: hidden;
      box-shadow: var(--sh-md)
    }

    .core-visual img {
      width: 100%;
      height: 260px;
      object-fit: cover;
      display: block
    }

    .core-num {
      font-size: 30px;
      font-weight: var(--fw-subtitle);
      color: var(--ink);
      margin-bottom: 8px;
      display: flex;
      align-items: center;
      gap: 12px;
      line-height: 1.35
    }

    .core-num-icon {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #E7F8EC;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .core-num-icon i[data-lucide],
    .core-num-icon svg {
      width: 20px;
      height: 20px;
      color: var(--green);
      stroke-width: 2
    }

    .core-desc {
      font-size: var(--fs-body);
      color: var(--slate);
      line-height: 1.7
    }

    .pricing-sec {
      padding: 72px 0;
      background: linear-gradient(180deg, #FFE3BF 0%, #FFFFFF 78.27%)
    }

    .pricing-sec .sec-head {
      margin-bottom: 16px
    }

    .steps-row {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 50px;
      width: fit-content;
      margin: 0 auto 16px
    }

    .step-item {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 12px;
      padding: 0;
      border: none;
      text-align: left
    }

    .step-item::before,
    .step-item::after {
      content: none
    }

    .step-circle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      font-weight: 800;
      font-size: 17px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0;
      flex-shrink: 0;
      box-shadow: 0 3px 12px rgba(0, 137, 52, .25), 0 0 0 6px rgba(0, 137, 52, .08)
    }

    .step-item h3 {
      font-size: 14px;
      font-weight: 500;
      color: var(--ink);
      line-height: 1.35;
      white-space: nowrap
    }

    .price-toggle {
      display: flex;
      justify-content: center;
      background: #e8e8e8;
      border-radius: 100px;
      width: fit-content;
      margin: 0 auto 20px;
      padding: 4px;
      gap: 3px
    }

    .ptog {
      padding: 7px 18px;
      border-radius: 100px;
      font-size: 13px;
      font-weight: 500;
      cursor: pointer;
      border: none;
      font-family: var(--font-sans);
      transition: all .18s;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap
    }

    .ptog.active {
      background: #fff;
      color: #111;
      box-shadow: 0 1px 4px rgba(0, 0, 0, .12)
    }

    .ptog:not(.active) {
      background: transparent;
      color: #666
    }

    .pchip {
      font-size: 11px;
      font-weight: 600;
      padding: 2px 7px;
      border-radius: 100px
    }

    .pchip-g {
      background: #d1fae5;
      color: #065f46
    }

    .pchip-o {
      background: #ffedd5;
      color: #9a3412
    }

    .plans-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px;
      max-width: 740px;
      margin: 0 auto
    }

    .plan-card {
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 14px;
      overflow: hidden;
      display: flex;
      flex-direction: column
    }

    .plan-card.featured {
      border: 2px solid #c0392b
    }

    .plan-card.card {
      box-shadow: none
    }

    .plan-bar {
      height: 4px
    }

    .bar-adv {
      background: linear-gradient(90deg, #e6a817, #f5c842)
    }

    .bar-pro {
      background: linear-gradient(90deg, #a02020, #c0392b)
    }

    .plan-body {
      padding: 16px 16px 0
    }

    .plan-name {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: var(--fs-subtitle);
      font-weight: var(--fw-subtitle);
      color: #111;
      margin-bottom: 4px
    }

    .plan-name svg {
      display: block;
      flex-shrink: 0
    }

    .plan-sub {
      font-size: var(--fs-body);
      color: #777;
      margin-bottom: 10px;
      line-height: 1.5
    }

    .price-row {
      display: flex;
      align-items: baseline;
      gap: 1px;
      margin-bottom: 2px
    }

    .price-discount-block {
      margin-bottom: 4px
    }

    .price-row-old {
      display: flex;
      align-items: baseline;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 2px
    }

    .price-old-strike {
      text-decoration: line-through;
      font-size: 15px;
      font-weight: 500;
      color: #111
    }

    .price-dollar-muted {
      font-size: 13px;
      font-weight: 600;
      color: #111
    }

    .price-vs-monthly {
      font-size: 11px;
      font-weight: 400;
      color: #e53935;
      text-decoration: line-through
    }

    .price-row-current {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 2px
    }

    .price-curr-inner {
      display: inline-flex;
      align-items: baseline;
      gap: 1px
    }

    .price-save-voucher {
      font-size: 11px;
      font-weight: 600;
      color: #e53935
    }

    .price-dollar {
      font-size: 16px;
      font-weight: 600;
      color: #111;
      margin-top: 3px
    }

    .price-num {
      font-size: 28px;
      font-weight: 700;
      color: #111;
      line-height: 1
    }

    .price-save {
      font-size: 11px;
      font-weight: 600;
      color: #dc2626;
      margin-bottom: 2px
    }

    .price-per {
      font-size: var(--fs-body);
      color: #888;
      margin-bottom: 12px
    }

    .price-per b {
      color: #555;
      font-weight: 600
    }

    .btn-sub {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      width: 100%;
      padding: 10px 0;
      text-align: center;
      background: #008934;
      color: #fff;
      border-radius: 9px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      border: none;
      margin-bottom: 14px;
      text-decoration: none;
      font-family: var(--font-sans)
    }

    .btn-voucher-badge {
      display: inline-flex;
      align-items: center;
      padding: 2px 8px;
      border-radius: 999px;
      background: #FEF0C7;
      color: #DC6803;
      font-size: 10px;
      font-weight: 600;
      line-height: 1.2;
      white-space: nowrap
    }

    .btn-sub:hover {
      background: #007029
    }

    .plan-divider {
      border: none;
      border-top: 1px solid #f0f0f0;
      margin: 0 16px 10px
    }

    .feat {
      display: flex;
      align-items: flex-start;
      gap: 7px;
      margin: 0 16px 6px
    }

    .ck {
      width: 15px;
      height: 15px;
      min-width: 15px;
      border-radius: 50%;
      background: #16a34a;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 1px;
      flex-shrink: 0
    }

    .feat-txt {
      font-size: var(--fs-body);
      color: #333;
      line-height: 1.45
    }

    .feat-txt b {
      font-weight: 700;
      color: #111
    }

    .feat-txt .red {
      font-weight: 700;
      color: #dc2626
    }

    .feat-txt .muted {
      color: #999;
      font-size: 10.5px
    }

    .plan-pad {
      padding-bottom: 16px
    }

    .hidden {
      display: none !important
    }

    .addon-bar {
      max-width: 740px;
      margin: 16px auto 0;
      background: #FFF8F0;
      border: 1px solid #F2D7B5;
      border-radius: 18px;
      padding: 16px 22px;
      display: flex;
      align-items: center;
      gap: 16px
    }

    .addon-text strong {
      display: block;
      font-size: 16px;
      font-weight: 800;
      color: #1B2233;
      line-height: 1.3;
      margin-bottom: 4px
    }

    .addon-text span {
      font-size: 14px;
      color: #5D6B82;
      line-height: 1.45
    }

    .offer-icon {
      color: #F04E3E;
      flex-shrink: 0
    }

    .offer-icon i[data-lucide] {
      width: 34px;
      height: 34px;
      stroke-width: 2.2
    }

    .consult-sec {
      padding: 82px 0;
      background: #EEF8F2
    }

    .consult-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
      gap: 32px;
      align-items: start
    }

    .consult-left {
      max-width: 560px
    }

    .consult-left h2 {
      font-size: var(--fs-title);
      font-weight: var(--fw-title);
      color: #1B2233;
      letter-spacing: -.03em;
      line-height: 1.15;
      margin-bottom: 14px
    }

    .consult-left p {
      font-size: var(--fs-body);
      color: #5D6B82;
      margin-bottom: 16px;
      line-height: 1.55;
      max-width: 560px
    }

    .consult-left-img {
      border-radius: 18px;
      overflow: hidden;
      box-shadow: 0 14px 28px rgba(16, 24, 40, .10)
    }

    .consult-left-img img {
      width: 100%;
      height: 280px;
      object-fit: cover;
      display: block
    }

    .consult-form-card {
      padding: 0;
      border-radius: 0;
      background: transparent;
      border: none;
      box-shadow: none;
      backdrop-filter: none
    }

    .consult-form-card.is-success .consult-form-title,
    .consult-form-card.is-success #consultation-form {
      display: none
    }

    .consult-form-card h3 {
      font-size: var(--fs-subtitle);
      font-weight: var(--fw-subtitle);
      color: #1B2233;
      margin-bottom: 16px
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-bottom: 12px
    }

    .form-field {
      margin-bottom: 0
    }

    .form-field[data-error] .input,
    .form-field[data-error] .select,
    .form-field[data-error] .textarea {
      box-shadow: 0 0 0 1px #ef4444 inset
    }

    .form-field .input,
    .form-field .select,
    .form-field .textarea {
      width: 100%;
      border-radius: 14px;
      min-height: 44px;
      font-size: var(--fs-body);
      font-family: var(--font-sans);
      color: var(--ink);
      background: #fff;
      box-shadow: none;
      padding-inline: 12px
    }

    .form-field .input::placeholder,
    .form-field .textarea::placeholder {
      color: #98A2B3
    }

    .form-field .select.is-placeholder {
      color: #98A2B3
    }

    .form-field .input:focus,
    .form-field .select:focus,
    .form-field .textarea:focus {
      outline: none;
      box-shadow: 0 0 0 3px rgba(0, 137, 52, .08)
    }

    .form-field .textarea {
      min-height: 96px;
      padding-top: 12px;
      resize: vertical
    }

    .consult-phone-field {
      display: flex;
      align-items: stretch;
      width: 100%;
      border-radius: 14px;
      background: #fff;
      min-height: 44px;
      overflow: hidden
    }

    .consult-phone-field:focus-within {
      box-shadow: 0 0 0 3px rgba(0, 137, 52, .08)
    }

    .form-field[data-error] .consult-phone-field {
      box-shadow: 0 0 0 1px #ef4444 inset
    }

    .consult-phone-field:not(.has-code-prefix) .consult-phone-code {
      display: none
    }

    .consult-phone-code {
      flex-shrink: 0;
      display: flex;
      align-items: center;
      padding-inline: 12px;
      font-size: var(--fs-body);
      font-family: var(--font-sans);
      color: var(--ink);
      background: #fff;
      border-right: 1px solid #E4E7EC;
      font-variant-numeric: tabular-nums
    }

    .consult-phone-input {
      border-radius: 0 !important;
      flex: 1;
      min-width: 0
    }

    .form-error {
      display: none;
      margin-top: 6px;
      font-size: 12px;
      line-height: 1.4;
      color: #dc2626
    }

    .form-field[data-error] .form-error {
      display: block
    }

    .consult-form-status {
      display: none;
      margin-top: 12px;
      padding: 10px 12px;
      border-radius: 12px;
      font-size: 13px;
      line-height: 1.5
    }

    .consult-form-status.is-visible {
      display: block
    }

    .consult-form-status.is-success {
      background: #e8f5ed;
      color: #046c2d
    }

    .consult-form-status.is-error {
      background: #fef2f2;
      color: #b42318
    }

    .consult-submit {
      display: flex;
      justify-content: center;
      margin-top: 12px
    }

    .consult-submit .btn-submit {
      min-width: 178px;
      justify-content: center
    }

    .consult-submit .btn-submit[disabled] {
      opacity: .7;
      cursor: wait
    }

    .consult-success {
      display: none;
      min-height: 100%;
      align-items: flex-start;
      justify-content: center;
      flex-direction: column;
      padding-top: 12px
    }

    .consult-form-card.is-success .consult-success {
      display: flex
    }

    .consult-success-icon {
      position: relative;
      width: 96px;
      height: 96px;
      margin-bottom: 20px;
      border-radius: 50%;
      background: rgba(34, 197, 94, .08);
      display: flex;
      align-items: center;
      justify-content: center
    }

    .consult-success-icon::before,
    .consult-success-icon::after {
      content: '';
      position: absolute;
      border-radius: 50%
    }

    .consult-success-icon::before {
      inset: 18px;
      background: rgba(34, 197, 94, .1)
    }

    .consult-success-icon::after {
      inset: 0
    }

    .consult-success-badge {
      position: relative;
      z-index: 1;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 4px solid #00953b;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #00953b
    }

    .consult-success-badge svg {
      width: 20px;
      height: 20px
    }

    .consult-success h4 {
      font-size: clamp(34px, 4vw, 44px);
      line-height: 1.12;
      font-weight: 500;
      color: #1b2233;
      margin-bottom: 10px
    }

    .consult-success p {
      max-width: 660px;
      font-size: 18px;
      line-height: 1.45;
      color: #384250;
      margin-bottom: 24px
    }

    .consult-success .btn {
      min-width: 0;
      padding-inline: 32px
    }

    .testi-sec {
      padding: 72px 0;
      background: var(--bg)
    }

    .testi-grid {
      width: 100%;
      max-width: none;
      margin: 36px auto 0
    }

    .testi-carousel {
      position: relative
    }

    .testi-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 2;
      width: 42px;
      height: 42px;
      min-height: 42px;
      border: 1px solid rgba(16, 24, 40, .08);
      background: rgba(255, 255, 255, .96);
      color: var(--ink);
      box-shadow: 0 10px 24px rgba(16, 24, 40, .10)
    }

    .testi-nav-btn:hover {
      background: #fff;
      color: var(--green);
      border-color: rgba(0, 137, 52, .2)
    }

    .testi-nav-prev {
      left: -21px
    }

    .testi-nav-next {
      right: -21px
    }

    .testi-viewport {
      overflow: hidden
    }

    .testi-track {
      display: flex;
      align-items: stretch;
      gap: var(--testi-gap, 20px);
      transition: transform .45s ease
    }

    .testi-item {
      flex: 0 0 calc((100% - (var(--testi-visible, 3) - 1) * var(--testi-gap, 20px)) / var(--testi-visible, 3));
      min-width: 0;
      display: flex
    }

    .testi-card {
      background: #fff;
      border: 1px solid var(--border);
      border-radius: var(--r-xl);
      padding: 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      height: 100%;
      width: 100%;
      transition: none
    }

    .testi-q {
      font-size: 26px;
      color: var(--green-mid);
      font-family: Georgia, serif;
      font-weight: 900;
      line-height: 1
    }

    .testi-body {
      font-size: var(--fs-body);
      color: var(--slate);
      line-height: 1.7;
      font-style: italic;
      flex: 1;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 7;
      overflow: hidden;
      text-overflow: ellipsis
    }

    .testi-foot {
      display: flex;
      align-items: center;
      gap: 9px;
      border-top: 1px solid var(--border);
      padding-top: 11px
    }

    .testi-av {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: var(--green);
      color: #fff;
      font-weight: 800;
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .testi-av img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 50%
    }

    .testi-av.o {
      background: var(--orange)
    }

    .testi-av.b {
      background: #0077A8
    }

    .testi-stars {
      color: #F5A623;
      font-size: 16px;
      line-height: 1;
      letter-spacing: 1px;
      margin-bottom: 4px
    }

    .testi-name {
      font-size: var(--fs-subtitle);
      font-weight: var(--fw-subtitle);
      color: var(--ink)
    }

    .testi-name a {
      color: inherit;
      text-decoration: none
    }

    .testi-name a:hover {
      color: var(--green)
    }

    .testi-co {
      font-size: 11px;
      color: var(--muted);
      display: flex;
      align-items: center;
      gap: 3px;
      margin-top: 1px
    }

    .testi-co img {
      height: 11px;
      border-radius: 2px;
      border: 1px solid #D0D5DD;
      object-fit: cover
    }

    .trusted-sec {
      padding: 48px 0;
      background: linear-gradient(180deg, #E8F7EE 0%, #DDF6E7 100%);
      border-top: none
    }

    .trusted-head {
      margin-bottom: 28px;
      text-align: center
    }

    .trusted-head h2 {
      font-size: 30px;
      line-height: 1.15;
      font-weight: 800;
      color: var(--ink);
      letter-spacing: -.03em
    }

    .trusted-cats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      width: 100%
    }

    .trusted-cat {
      text-align: center
    }

    .trusted-cat h4 {
      font-size: 16px;
      font-weight: 600;
      color: var(--ink);
      letter-spacing: 0;
      text-transform: none;
      margin-bottom: 14px
    }

    .trusted-logos {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 8px;
      align-items: stretch
    }

    .trusted-logo-item {
      display: flex;
      align-items: center;
      justify-content: center;
      aspect-ratio: 1.9 / 1;
      min-width: 0;
      padding: 10px 14px;
      background: #fff;
      border-radius: 10px;
      box-shadow: 0 6px 18px rgba(16, 24, 40, .06)
    }

    .trusted-logo-item img {
      width: 100%;
      height: 100%;
      max-width: 132px;
      max-height: 44px;
      object-fit: contain
    }

    .trusted-logo-item span {
      font-size: 11px;
      font-weight: 600;
      color: var(--ink)
    }

    .cta-sec {
      padding: 72px 0;
      background: #008F31;
      color: #fff;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .cta-sec h2 {
      font-size: 30px;
      font-weight: 800;
      line-height: 1.15;
      margin-bottom: 16px;
      letter-spacing: -.03em;
      position: relative
    }

    .cta-sec h2 em {
      font-style: normal;
      color: #A8DDB8;
      display: block
    }

    .cta-sec p {
      font-size: 16px;
      opacity: .9;
      margin-bottom: 28px;
      max-width: 100%;
      margin-left: auto;
      margin-right: auto;
      line-height: 1.6;
      white-space: nowrap;
      position: relative
    }

    .cta-actions {
      display: flex;
      gap: 8px;
      justify-content: center;
      flex-wrap: wrap;
      position: relative
    }

    .cta-actions .btn {
      min-width: 0
    }

    .cta-actions .btn-lg {
      padding: 12px 20px;
      font-size: 14px;
      border-radius: 10px
    }

    .cta-actions .btn-ghost {
      border-color: rgba(255, 255, 255, .35);
      color: #fff
    }

    .cta-actions .btn-ghost:hover {
      background: rgba(255, 255, 255, .08)
    }

    .floating-consult-widget {
      position: fixed;
      right: max(20px, env(safe-area-inset-right));
      bottom: max(20px, env(safe-area-inset-bottom));
      z-index: 30;
      width: 52px;
      height: 52px
    }

    .floating-consult-bubble {
      display: flex;
      align-items: center;
      position: absolute;
      right: 64px;
      bottom: 10px;
      min-height: 56px;
      width: max-content;
      max-width: none;
      padding: 10px 14px;
      border-radius: 18px;
      background: #fff;
      color: #1b2233;
      border: 1px solid #D0D5DD;
      box-shadow: 0 14px 28px rgba(16, 24, 40, .12);
      text-decoration: none;
      opacity: 0;
      visibility: hidden;
      transform: translateX(12px);
      transition: opacity .28s ease, transform .28s ease, visibility .28s ease
    }

    .floating-consult-copy {
      font-size: 14px;
      font-weight: 600;
      line-height: 1.3;
      letter-spacing: -.02em;
      white-space: nowrap
    }

    .floating-consult-widget.is-visible .floating-consult-bubble {
      opacity: 1;
      visibility: visible;
      transform: translateX(0)
    }

    .floating-consult-widget.is-bubble-hidden .floating-consult-bubble {
      opacity: 0;
      visibility: hidden;
      transform: translateX(12px);
      pointer-events: none
    }

    .floating-consult-widget.is-hover-open .floating-consult-bubble {
      opacity: 1;
      visibility: visible;
      transform: translateX(0);
      pointer-events: auto
    }

    .floating-consult-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #008934;
      color: #fff;
      text-decoration: none;
      box-shadow: 0 14px 28px rgba(0, 137, 52, .24)
    }

    .floating-consult-btn:hover {
      background: #007c2f
    }

    .floating-consult-btn svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0
    }

    footer {
      background: #fff;
      border-top: 1px solid var(--border);
      color: #667085;
      padding: 40px 0 20px
    }

    .footer-inner {
      display: grid;
      grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(120px, 1fr));
      gap: 28px;
      margin-bottom: 28px
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 12px;
      max-width: 320px
    }

    .footer-brand-logo {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      height: 40px
    }

    .footer-brand-logo svg {
      display: block;
      height: 40px;
      width: auto
    }

    .footer-contact {
      display: flex;
      flex-direction: column;
      gap: 8px
    }

    .footer-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 8px;
      font-size: 12px;
      line-height: 1.55;
      color: #475467
    }

    .footer-contact-item svg {
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      margin-top: 2px
    }

    .footer-social {
      display: flex;
      gap: 12px;
      align-items: center
    }

    .footer-social a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 24px;
      height: 24px;
      transition: all .2s
    }

    .footer-social a:hover {
      opacity: .8
    }

    .footer-social svg {
      width: 24px;
      height: 24px;
      display: block
    }

    .footer-col h5 {
      font-size: 12px;
      font-weight: 400;
      color: #000;
      margin-bottom: 12px
    }

    .footer-col a {
      display: block;
      width: fit-content;
      font-size: 12px;
      line-height: 1.5;
      color: #667085;
      margin-bottom: 8px
    }

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

    .footer-bottom {
      border-top: 1px solid var(--border);
      padding-top: 16px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
      font-size: 12px;
      color: #667085;
      text-align: center
    }

    .footer-bottom-links {
      display: flex;
      align-items: center;
      gap: 10px;
      flex-wrap: wrap;
      justify-content: flex-end
    }

    .footer-bottom-links a {
      color: #667085
    }

    .footer-bottom-links a:hover {
      color: var(--green)
    }

    .container {
      width: min(100%, var(--app-container-max));
      margin: 0 auto;
      padding-inline: var(--app-container-px)
    }

    .reveal {
      opacity: 0;
      transform: translateY(18px);
      transition: opacity .5s, transform .5s
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0)
    }

    @media(max-width:1536px) {
      :root {
        --app-container-px: 72px
      }
    }

    @media(max-width:1512px) {
      :root {
        --app-container-px: 56px
      }

      .hero-main {
        grid-template-columns: minmax(0, 1.08fr) minmax(0, 1.16fr);
        gap: 20px;
        align-items: center
      }

      .hero-visual {
        margin-right: 0;
        max-width: 100%
      }

      .hero-shot-primary img {
        object-fit: cover;
        object-position: center
      }

      .hero h1 {
        font-size: clamp(36px, 3.6vw, 52px)
      }
    }

    @media(max-width:1280px) {
      :root {
        --app-container-px: 40px
      }

      .hero-main {
        grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.15fr);
        gap: 24px
      }

      .hero-copy {
        max-width: none
      }

      .hero h1 {
        font-size: clamp(36px, 4vw, 50px)
      }

      .hero-sub {
        max-width: 100%
      }
    }

    @media(max-width:900px) {
      :root {
        --app-container-px: 8px
      }

      .nav-links {
        display: none
      }

      .nav-inner {
        grid-template-columns: auto 1fr;
        column-gap: 12px
      }

      .nav-cta {
        justify-self: end
      }

      .hero,
      .how-sec,
      .why-top-sec,
      .pricing-sec,
      .consult-sec,
      .testi-sec,
      .cta-sec,
      .stats-sec,
      .trusted-sec {
        padding: 52px 0
      }

      .hero {
        padding-top: 88px
      }

      .how-sec .sec-head {
        margin-bottom: 50px
      }

      .hero-main,
      .why-top-inner,
      .consult-grid,
      .core-row,
      .trusted-cats,
      .footer-inner {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .trusted-logos {
        gap: 12px;
        column-gap: 12px;
        row-gap: 12px
      }

      .hero-copy {
        max-width: none
      }

      .why-top-img img {
        width: 100%;
        height: auto
      }

      .hero-price-line {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
      }

      .hero-actions {
        flex-wrap: nowrap;
        width: 100%
      }

      .hero-actions .btn {
        flex: 1 1 0;
        justify-content: center
      }

      .btn-lg {
        font-size: 14px;
        padding: 11px 18px
      }

      .hero-sub,
      .sec-head p,
      .core-desc,
      .plan-sub,
      .consult-left p,
      .cta-sec p {
        font-size: 14px;
        line-height: 1.5
      }

      .hero-visual {
        min-height: 0;
        justify-content: center;
        margin-right: 0;
        max-width: none
      }

      .hero-screenshot {
        padding: 0
      }

      .hero-shot-primary img {
        object-position: center
      }

      .hero-features {
        grid-template-columns: 1fr;
        gap: 14px
      }

      .testi-nav-btn {
        display: inline-flex;
        width: 36px;
        height: 36px;
        min-height: 36px
      }

      .testi-nav-prev {
        left: 8px
      }

      .testi-nav-next {
        right: 8px
      }

      .core-row.rev {
        direction: ltr
      }

      .core-row {
        min-height: 0
      }

      .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        row-gap: 24px
      }

      .stat-item {
        padding-inline: 16px
      }

      .stat-item::after {
        display: none
      }

      .stat-label {
        white-space: normal
      }

      .steps-row {
        display: grid;
        grid-template-columns: 1fr;
        gap: 20px
      }

      .step-item {
        min-height: 0
      }

      .step-item h3 {
        white-space: normal
      }

      .pchip {
        display: none
      }

      .plans-grid,
      .form-row {
        grid-template-columns: 1fr
      }

      .plans-grid {
        display: flex;
        gap: 12px;
        max-width: none;
        margin: 0;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding: 0 20px 8px 0;
        scrollbar-width: none
      }

      .plans-grid::-webkit-scrollbar {
        display: none
      }

      .plan-card {
        flex: 0 0 78%;
        scroll-snap-align: start
      }

      .testi-track {
        --testi-gap: 16px
      }

      .addon-bar {
        align-items: flex-start;
        flex-wrap: wrap
      }

      .addon-bar .btn {
        margin-left: 0 !important
      }

      .footer-brand {
        max-width: none
      }

      .floating-consult-widget {
        right: max(14px, env(safe-area-inset-right));
        bottom: max(14px, env(safe-area-inset-bottom));
        width: 48px;
        height: 48px
      }

      .floating-consult-bubble {
        right: 56px;
        bottom: 8px;
        width: max-content;
        max-width: none;
        min-height: 50px;
        padding: 9px 12px;
        border-radius: 16px
      }

      .floating-consult-copy {
        font-size: 10px;
        line-height: 1.3
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start
      }

      .footer-bottom-links {
        justify-content: flex-start
      }
    }
