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

    :root {
      --red: #F47920;
      --redd: #D4650F;
      --redbg: #FFF4EC;
      --dark: #1B2A4A;
      --w: #fff;
      --surf: #F8F7F5;
      --bdr: #E4E2DF;
      --txt: #1B2A4A;
      --mu: #5A6070;
      --hint: #9BA3B0;
      --gr: #16A34A;
      --grbg: #F0FDF4;
      --grb: #BBF7D0;
      --navy: #1B2A4A;
      --navylight: #253660;
      --f: 'Outfit', sans-serif;
    }

    html {
      scroll-behavior: smooth
    }

    body {
      font-family: var(--f);
      background: var(--w);
      color: var(--txt);
      overflow-x: hidden
    }

    /* ── NAV ── */
    nav {
      background: var(--navy);
      height: 56px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0 24px;
      position: sticky;
      top: 0;
      z-index: 999
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      max-width: 1200px
    }

    .nlogo {
      font-weight: 900;
      font-size: 18px;
      color: #fff;
      letter-spacing: -.02em
    }

    .nlogo b {
      color: var(--red)
    }

    .nright {
      display: flex;
      align-items: center;
      gap: 8px
    }

    .nphone {
      display: flex;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, .8);
      font-size: 13px;
      font-weight: 600;
      text-decoration: none;
      padding: 6px 14px;
      border: 1px solid rgba(255, 255, 255, .15);
      border-radius: 100px
    }

    .nphone:hover {
      border-color: rgba(255, 255, 255, .4)
    }

    .nquote {
      background: var(--red);
      color: #fff;
      font-weight: 700;
      font-size: 12px;
      padding: 8px 18px;
      border-radius: 100px;
      text-decoration: none;
      white-space: nowrap
    }

    .nquote:hover {
      background: var(--redd)
    }

    .nwa-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(22, 163, 74, .12);
      border: 1px solid rgba(22, 163, 74, .3);
      color: #4ade80;
      font-weight: 700;
      font-size: 12px;
      padding: 8px 16px;
      border-radius: 100px;
      text-decoration: none;
      white-space: nowrap;
      transition: background .15s, border-color .15s
    }

    .nwa-btn:hover {
      background: rgba(22, 163, 74, .22);
      border-color: rgba(22, 163, 74, .5)
    }

    /* ── HERO ── */
    .hero {
      background: linear-gradient(135deg, #1B2A4A 0%, #0F1B30 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      justify-content: center
    }

    .hbg {
      position: absolute;
      inset: 0;
      background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
      background-size: 52px 52px;
      pointer-events: none
    }

    .hglow {
      position: absolute;
      top: -100px;
      left: -80px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(244, 121, 32, .14) 0%, transparent 65%);
      pointer-events: none
    }

    /* Desktop: flex row */
    .hwrap {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      max-width: 1200px;
      margin: 0 auto;
      width: 100%
    }

    .hleft {
      flex: 1;
      padding: 48px 40px 48px 5vw;
      display: flex;
      flex-direction: column;
      position: relative;
      z-index: 2
    }

    .hright {
      width: 420px;
      flex-shrink: 0;
      background: var(--w);
      position: relative;
      z-index: 2;
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 40px 32px
    }

    .hright::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 4px;
      background: var(--red)
    }

    /* hero text */
    .htag {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      border: 1px solid rgba(244, 121, 32, .4);
      background: rgba(244, 121, 32, .12);
      color: #F99050;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      padding: 5px 13px;
      border-radius: 100px;
      width: fit-content;
      margin-bottom: 20px
    }

    .hdot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--red);
      animation: pulse 1.8s infinite
    }

    @keyframes pulse {

      0%,
      100% {
        box-shadow: 0 0 0 0 rgba(244, 121, 32, .7)
      }

      50% {
        box-shadow: 0 0 0 6px rgba(244, 121, 32, 0)
      }
    }

    .hh1 {
      font-size: clamp(34px, 4.0vw, 50px);
      font-weight: 700;
      line-height: 1.04;
      color: #fff;
      margin-bottom: 14px
    }

    .hh1 .red {
      color: var(--red)
    }

    .hsub {
      font-size: 15px;
      color: rgba(255, 255, 255, .45);
      line-height: 1.7;
      margin-bottom: 24px;
      max-width: 500px
    }

    /* pills */
    .pills {
      flex-wrap: wrap;
      gap: 6px;
      text-align: center;

    }

    .pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      padding: 5px 12px;
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 100px;
      font-size: 12px;
      font-weight: 600;
      cursor: pointer;
      transition: all .15s;
      user-select: none
    }

    .pill:hover,
    .pill.on {
      background: rgba(244, 121, 32, .15);
      border-color: rgba(244, 121, 32, .45);
      color: #F99050
    }

    .pdot {
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: currentColor
    }

    /* checklist */
    .cklist {
      display: flex;
      flex-direction: column;
      gap: 9px;
      margin-bottom: 28px
    }

    .ck {
      display: flex;
      align-items: center;
      gap: 9px;
      font-size: 14px;
      color: rgba(255, 255, 255, .6)
    }

    .ck strong {
      color: rgba(255, 255, 255, .9);
      font-weight: 600
    }

    .ckic {
      width: 19px;
      height: 19px;
      background: rgba(22, 163, 74, .12);
      border: 1px solid rgba(22, 163, 74, .3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    /* stats */
    .hstats {
      display: flex;
      gap: 28px;
      flex-wrap: wrap
    }

    .hn {
      font-size: 26px;
      font-weight: 700;
      color: #fff;
      line-height: 1
    }

    .hn b {
      color: var(--red)
    }

    .hl {
      font-size: 10px;
      color: rgba(255, 255, 255, .3);
      text-transform: uppercase;
      letter-spacing: .07em;
      margin-top: 2px
    }

    /* ── FORM ── */
    .fh {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: -.02em;
      color: var(--txt);
      margin-bottom: 4px
    }

    .fs {
      font-size: 13px;
      color: var(--mu);
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 6px
    }

    .fs::before {
      content: '';
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gr);
      flex-shrink: 0;
      animation: pulse 1.8s infinite
    }

    .fg {
      margin-bottom: 12px
    }

    .fg label {
      display: block;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .07em;
      text-transform: uppercase;
      color: var(--hint);
      margin-bottom: 5px
    }

    .fg input,
    .fg select {
      width: 100%;
      height: 44px;
      border: 1.5px solid var(--bdr);
      border-radius: 8px;
      padding: 0 13px;
      font-family: var(--f);
      font-size: 14px;
      color: var(--txt);
      background: var(--surf);
      outline: none;
      transition: border-color .15s, background .15s;
      appearance: none;
      -webkit-appearance: none
    }

    .fg select {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='11' viewBox='0 0 24 24' fill='none' stroke='%23A8A5A0' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 12px center;
      background-color: var(--surf);
      padding-right: 34px
    }

    .fg input:focus,
    .fg select:focus {
      border-color: var(--red);
      background: var(--w)
    }

    .fg input::placeholder {
      color: #C5C2BC
    }

    .fg input.err {
      border-color: #E24B4A
    }

    .fbtn {
      width: 100%;
      height: 50px;
      background: var(--red);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-family: var(--f);
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background .15s, transform .1s;
      margin-top: 4px
    }

    .fbtn:hover {
      background: var(--redd)
    }

    .fbtn:active {
      transform: scale(.98)
    }

    .fcb {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 5px;
      margin-top: 9px;
      font-size: 12px;
      font-weight: 600;
      color: var(--gr)
    }

    .ford {
      display: flex;
      align-items: center;
      gap: 8px;
      margin: 14px 0;
      color: var(--hint);
      font-size: 11px;
      letter-spacing: .05em;
      text-transform: uppercase
    }

    .ford::before,
    .ford::after {
      content: '';
      flex: 1;
      height: 1px;
      background: var(--bdr)
    }

    .fwa {
      width: 100%;
      height: 44px;
      border: 1.5px solid var(--grb);
      background: var(--grbg);
      color: #166534;
      border-radius: 8px;
      font-family: var(--f);
      font-weight: 700;
      font-size: 13px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 7px;
      text-decoration: none
    }

    .fwa:hover {
      background: #DCFCE7
    }

    .ftrust {
      display: flex;
      justify-content: center;
      gap: 1.25rem;
      margin-top: 12px;
      padding-top: 12px;
      border-top: 1px solid var(--bdr)
    }

    .fti {
      font-size: 11px;
      color: var(--hint);
      display: flex;
      align-items: center;
      gap: 4px
    }

    /* success */
    .fsuccess {
      display: none;
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 12px;
      padding: 8px 0
    }

    .fsicon {
      width: 60px;
      height: 60px;
      background: var(--grbg);
      border: 1.5px solid var(--grb);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      animation: pop .3s ease
    }

    @keyframes pop {
      from {
        transform: scale(.3);
        opacity: 0
      }

      to {
        transform: scale(1);
        opacity: 1
      }
    }

    .fsuccess h3 {
      font-size: 19px;
      font-weight: 800;
      color: var(--txt)
    }

    .fsuccess p {
      font-size: 13px;
      color: var(--mu);
      line-height: 1.6
    }

    /* ── TRUST BAR ── */
    .tbar {
      background: var(--surf);
      border-bottom: 1px solid var(--bdr);
      padding: 16px 24px
    }

    .tbarin {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0;
      flex-wrap: wrap
    }

    .ti {
      display: flex;
      align-items: center;
      gap: 9px;
      padding: 10px 20px;
      white-space: nowrap
    }

    .ti+.ti {
      border-left: 1px solid var(--bdr)
    }

    .tiic {
      width: 32px;
      height: 32px;
      background: var(--w);
      border: 1px solid var(--bdr);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .ti strong {
      color: var(--txt);
      display: block;
      font-size: 13px;
      font-weight: 700
    }

    .ti span {
      font-size: 12px;
      color: var(--mu)
    }

    /* ── SECTIONS ── */
    .sec {
      padding: 56px 5vw
    }

    .sec.bg {
      background: var(--surf)
    }

    .sh {
      text-align: center;
      margin-bottom: 26px
    }

    .stag {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: var(--red);
      margin-bottom: 8px
    }

    .sh2 {
      font-size: clamp(24px, 3vw, 38px);
      font-weight: 700;
      color: var(--txt);
      margin-bottom: 8px;
      line-height: 1.1
    }

    .sp {
      font-size: 15px;
      color: var(--mu);
      line-height: 1.65;
      max-width: 75%;
      margin: 0 auto
    }

    /* ── SEGMENT CARDS ── */
    .sgrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 14px;
      margin-top: 28px;
      max-width: 1200px;
      margin-left: auto;
      margin-right: auto
    }

    .sc {
      border: 1px solid var(--bdr);
      border-radius: 16px;
      padding: 22px;
      background: var(--w);
      transition: border-color .2s, transform .2s, box-shadow .2s;
      position: relative;
      overflow: hidden
    }

    .sc::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--red), var(--navy));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .2s
    }

    .sc:hover {
      border-color: rgba(220, 38, 38, .3);
      transform: translateY(-3px);
      box-shadow: 0 8px 24px rgba(0, 0, 0, .07)
    }

    .sc:hover::before {
      transform: scaleX(1)
    }

    .sic {
      width: 44px;
      height: 44px;
      background: #FFF4EC;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px
    }

    .snm {
      font-size: 15px;
      font-weight: 700;
      color: var(--txt);
      margin-bottom: 5px
    }

    .sds {
      font-size: 12.5px;
      color: var(--mu);
      line-height: 1.6;
      margin-bottom: 10px
    }

    .sfl {
      display: flex;
      flex-direction: column;
      gap: 5px
    }

    .sf {
      font-size: 12px;
      color: var(--mu);
      display: flex;
      align-items: flex-start;
      gap: 6px;
      line-height: 1.4
    }

    .sf::before {
      content: '✓';
      color: var(--gr);
      font-weight: 700;
      font-size: 11px;
      flex-shrink: 0;
      margin-top: 1px
    }

    /* ── COMPARISON ── */
    .vtbl {
      width: 100%;
      border-collapse: collapse;
      font-size: 13px
    }

    .vtbl th {
      padding: 11px 16px;
      text-align: left;
      font-weight: 700;
      font-size: 11px;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: var(--surf);
      border-bottom: 1px solid var(--bdr);
      color: var(--mu)
    }

    .vtbl th:nth-child(2) {
      color: var(--red);
      background: #FEF2F2
    }

    .vtbl td {
      padding: 12px 16px;
      border-bottom: 1px solid var(--bdr);
      vertical-align: middle
    }

    .vtbl tr:last-child td {
      border-bottom: none
    }

    .vtbl td:nth-child(2) {
      background: #FFFBFB
    }

    .win {
      color: var(--gr);
      font-weight: 600
    }

    .lose {
      color: var(--hint)
    }

    .neu {
      color: var(--mu)
    }


    /* ── STEPS ── */
    .steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      margin-top: 28px;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto
    }

    .step .scard {
      background: var(--w);
      border: 1px solid var(--bdr);
      border-radius: 16px;
      padding: 24px 20px;
      text-align: center;
      height: 100%;
      transition: border-color .2s, transform .2s, box-shadow .2s
    }

    .step .scard:hover {
      border-color: rgba(220, 38, 38, .3);
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(0, 0, 0, .07)
    }

    .snum {
      width: 36px;
      height: 36px;
      background: var(--red);
      color: #fff;
      font-size: 16px;
      font-weight: 900;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px
    }

    .sico {
      width: 44px;
      height: 44px;
      background: #FFF4EC;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 10px
    }

    .stit {
      font-size: 14px;
      font-weight: 700;
      color: var(--txt);
      margin-bottom: 6px
    }

    .sdesc {
      font-size: 12px;
      color: var(--mu);
      line-height: 1.6
    }

    /* ── REVIEWS ── */
    .rv-summary {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 24px;
      margin: 0 auto 28px;
      max-width: 960px;
      background: var(--surf);
      border: 1px solid var(--bdr);
      border-radius: 16px;
      padding: 20px 32px;
      flex-wrap: wrap
    }

    .rv-big-score {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding-right: 24px;
      border-right: 1px solid var(--bdr)
    }

    .rv-score-num {
      font-size: 52px;
      font-weight: 900;
      color: var(--txt);
      line-height: 1;
      letter-spacing: -.03em
    }

    .rv-score-stars {
      display: flex;
      gap: 3px
    }

    .rv-score-stars svg {
      width: 18px;
      height: 18px
    }

    .rv-score-count {
      font-size: 12px;
      color: var(--mu);
      margin-top: 2px
    }

    .rv-bars {
      display: flex;
      flex-direction: column;
      gap: 5px;
      flex: 1;
      min-width: 180px
    }

    .rv-bar-row {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: var(--mu)
    }

    .rv-bar-label {
      width: 36px;
      text-align: right;
      flex-shrink: 0;
      font-size: 12px;
      color: var(--mu)
    }

    .rv-bar-track {
      flex: 1;
      height: 8px;
      background: var(--bdr);
      border-radius: 4px;
      overflow: hidden
    }

    .rv-bar-fill {
      height: 100%;
      background: #F59E0B;
      border-radius: 4px
    }

    .rv-google-logo {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 4px;
      padding-left: 24px;
      border-left: 1px solid var(--bdr)
    }

    .rv-google-logo span {
      font-size: 11px;
      color: var(--hint);
      letter-spacing: .02em
    }

    .rgrid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 14px;
      margin-top: 0;
      max-width: 960px;
      margin-left: auto;
      margin-right: auto
    }

    .rv {
      background: var(--w);
      border: 1px solid var(--bdr);
      border-radius: 14px;
      padding: 18px;
      display: flex;
      flex-direction: column;
      gap: 10px;
      transition: box-shadow .2s, border-color .2s
    }

    .rv:hover {
      box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
      border-color: rgba(244, 121, 32, .25)
    }

    .rv-top {
      display: flex;
      align-items: center;
      justify-content: space-between
    }

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

    .rvav {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 700;
      color: #fff;
      flex-shrink: 0
    }

    .rvav.c1 {
      background: #4285F4
    }

    .rvav.c2 {
      background: #EA4335
    }

    .rvav.c3 {
      background: #34A853
    }

    .rvav.c4 {
      background: #F47920
    }

    .rvav.c5 {
      background: #9C27B0
    }

    .rvav.c6 {
      background: #00BCD4
    }

    .rvnm {
      font-size: 13px;
      font-weight: 700;
      color: var(--txt)
    }

    .rv-ago {
      font-size: 11px;
      color: var(--hint)
    }

    .rvs {
      display: flex;
      gap: 2px;
      align-items: center
    }

    .rvs svg {
      width: 14px;
      height: 14px
    }

    .rvt {
      font-size: 13px;
      color: var(--mu);
      line-height: 1.65;
      flex: 1
    }

    .rv-foot {
      display: flex;
      align-items: center;
      gap: 5px;
      font-size: 11px;
      color: var(--hint);
      margin-top: 2px
    }

    .rvlc {
      font-size: 11px;
      color: var(--hint)
    }

    /* ── BOTTOM CTA ── */
    .bcta {
      background: linear-gradient(135deg, #1B2A4A 0%, #0F1B30 100%);
      padding: 64px 5vw;
      text-align: center;
      position: relative;
      overflow: hidden
    }

    .bcta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 600px;
      height: 250px;
      background: radial-gradient(ellipse, rgba(244, 121, 32, .15) 0%, transparent 70%);
      pointer-events: none
    }

    .bh {
      font-size: clamp(28px, 3.5vw, 46px);
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      position: relative
    }

    .bs {
      font-size: 15px;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 28px;
      position: relative
    }

    .bbtns {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 12px;
      flex-wrap: wrap;
      position: relative
    }

    .bcall {
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--red);
      color: #fff;
      font-weight: 700;
      font-size: 15px;
      padding: 14px 28px;
      border-radius: 100px;
      text-decoration: none;
      transition: background .15s
    }

    .bcall:hover {
      background: var(--redd)
    }

    .bghost {
      display: flex;
      align-items: center;
      gap: 7px;
      color: rgba(255, 255, 255, .65);
      font-weight: 600;
      font-size: 14px;
      padding: 13px 24px;
      border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, .12);
      text-decoration: none;
      transition: border-color .15s
    }

    .bghost:hover {
      border-color: rgba(255, 255, 255, .35)
    }

    /* ── FOOTER ── */
    footer {
      background: #0F1B30;
      border-top: 1px solid rgba(255, 255, 255, .06);
      padding: 20px 24px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 8px;
      font-size: 12px;
      color: rgba(255, 255, 255, .28)
    }

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

    /* ── MOB STICKY ── */
    .mobbar {
      display: none;
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 999;
      background: var(--w);
      border-top: 1px solid var(--bdr);
      padding: 8px 16px 10px;
      flex-direction: column;
      gap: 7px
    }

    .mobbar-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px
    }

    .mobbar-trust span {
      font-size: 11px;
      color: var(--hint);
      display: flex;
      align-items: center;
      gap: 4px
    }

    .mobbar-trust span::before {
      content: '✓';
      color: var(--gr);
      font-weight: 700;
      font-size: 11px
    }

    .mobbar-btns {
      display: flex;
      gap: 10px
    }

    .mc {
      flex: 1;
      height: 46px;
      background: var(--red);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-family: var(--f);
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-decoration: none
    }

    .mw {
      flex: 1;
      height: 46px;
      background: var(--grbg);
      border: 1.5px solid var(--grb);
      color: #166534;
      border-radius: 8px;
      font-family: var(--f);
      font-weight: 700;
      font-size: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-decoration: none
    }

    /* ── SCROLL REVEAL ── */
    .rv-wrap {
      opacity: 0;
      transform: translateY(16px);
      transition: opacity .5s ease, transform .5s ease
    }

    .rv-wrap.in {
      opacity: 1;
      transform: none
    }

    /* ══════════════════════════════════════
   RESPONSIVE — ≤860px TABLET
══════════════════════════════════════ */
    @media(max-width:860px) {
      body {
        padding-bottom: 68px
      }

      .nphone {
        display: none
      }

      .nwa-btn {
        display: none
      }

      .mobbar {
        display: flex
      }

      /* hero stacks */
      .hwrap {
        flex-direction: column;
        min-height: auto
      }

      .hleft {
        padding: 36px 20px 28px;
        order: 1
      }

      .hright {
        width: 100%;
        order: 2;
        padding: 28px 20px 32px
      }

      /* trust bar */
      .tbarin {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0
      }

      .ti {
        border-left: none;
        border-top: 1px solid var(--bdr);
        white-space: normal;
        padding: 12px 16px
      }

      .ti:first-child,
      .ti:nth-child(2) {
        border-top: none
      }

      .ti:nth-child(2n+1) {
        border-right: 1px solid var(--bdr)
      }

      /* process: 2x2 */
      .steps {
        grid-template-columns: 1fr 1fr;
        gap: 12px
      }

      /* packages: 2 col */
      .pgrid {
        grid-template-columns: 1fr 1fr
      }

      /* sections */
      .sec {
        padding: 40px 20px
      }
    }

    /* ══════════════════════════════════════
   RESPONSIVE — ≤560px MOBILE
══════════════════════════════════════ */
    @media(max-width:560px) {
      nav {
        padding: 0 16px
      }

      .nlogo {
        height: 36px;
      }

      .hleft {
        padding: 28px 16px 20px
      }

      .hright {
        padding: 24px 16px 28px
      }

      .hh1 {
        font-size: 30px
      }

      .hsub {
        font-size: 14px
      }

      .hstats {
        gap: 16px
      }

      .hn {
        font-size: 22px
      }

      .pills {
        gap: 5px
      }

      .pill {
        font-size: 11px;
        padding: 4px 9px
      }

      /* trust: 2x2 on mobile */
      .tbarin {
        grid-template-columns: 1fr 1fr
      }

      .ti {
        padding: 10px 12px;
        white-space: normal
      }

      .ti:nth-child(2n+1) {
        border-right: 1px solid var(--bdr)
      }

      .tiic {
        width: 28px;
        height: 28px;
        flex-shrink: 0
      }

      .ti strong {
        font-size: 12px
      }

      .ti span {
        font-size: 11px
      }

      /* segments: 1 col */
      .sgrid {
        grid-template-columns: 1fr
      }

      /* steps: 1 col */
      .steps {
        grid-template-columns: 1fr
      }

      /* packages: 1 col */
      .pgrid {
        grid-template-columns: 1fr
      }

      /* reviews: 1 col */
      .rgrid {
        grid-template-columns: 1fr
      }

      /* comparison table: card layout */
      .vtbl thead {
        display: none
      }

      .vtbl,
      .vtbl tbody,
      .vtbl tr,
      .vtbl td {
        display: block;
        width: 100%
      }

      .vtbl tr {
        border: 1px solid var(--bdr);
        border-radius: 12px;
        margin-bottom: 10px;
        overflow: hidden
      }

      .vtbl td {
        border-bottom: 1px solid var(--bdr);
        padding: 10px 14px
      }

      .vtbl td:first-child {
        font-size: 11px;
        font-weight: 700;
        color: var(--hint);
        background: var(--surf);
        text-transform: uppercase;
        letter-spacing: .04em;
        padding: 8px 14px
      }

      .vtbl td:nth-child(2) {
        background: #FFFBFB
      }

      .vtbl td:nth-child(2)::before {
        content: 'Smart Secures';
        font-size: 10px;
        font-weight: 700;
        color: var(--red);
        text-transform: uppercase;
        letter-spacing: .06em;
        display: block;
        margin-bottom: 3px
      }

      .vtbl td:nth-child(3)::before {
        content: 'Others';
        font-size: 10px;
        font-weight: 700;
        color: var(--mu);
        text-transform: uppercase;
        letter-spacing: .06em;
        display: block;
        margin-bottom: 3px
      }

      .vtbl tr:last-child td:last-child {
        border-bottom: none
      }

      /* bottom cta */
      .bbtns {
        flex-direction: column;
        align-items: stretch
      }

      .bcall,
      .bghost {
        justify-content: center
      }

      /* footer */
      footer {
        flex-direction: column;
        gap: 5px;
        padding: 16px
      }
    }

    .cams-seo {
      padding-top: 50px;
    }

    .cams-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 40px;
    }

    .cam-card {
      background: #fff;
      border: 1px solid #E5E7EB;
      border-radius: 18px;
      padding: 28px;
      display: flex;
      gap: 18px;
      transition: .3s ease;
    }

    .cam-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 12px 30px rgba(0, 0, 0, .08);
    }

    .cam-icon {
      min-width: 48px;
      width: 48px;
      height: 48px;
      border-radius: 12px;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 20px;
      font-weight: 700;
    }

    .cam-card h3 {
      margin: 0 0 8px;

      font-size: 15px;
      font-weight: 700;

      color: #0F2D63;
    }

    .cam-card p {
      margin: 0;

      font-size: 12.5px;

      line-height: 1.7;

      color: #6B7280;
    }

    .blue {
      background: #EEF4FF;
    }

    .orange {
      background: #FFF1E8;
    }

    .green {
      background: #ECFDF3;
    }

    .purple {
      background: #F4F0FF;
    }

    .yellow {
      background: #FFF8E6;
    }

    .gray {
      background: #F3F4F6;
    }

    @media(max-width:992px) {

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

    }

    @media(max-width:768px) {

      .cams-grid {
        grid-template-columns: 1fr;
      }

      .cam-card {
        padding: 22px;
      }

      .cam-card h3 {
        font-size: 15px;
      }

    }

    /* ===== CAMERA TYPES SECTION ===== */
    .ctypes {
      background: #fff;
      padding: 72px 0;
    }

    .ctypes-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 24px;
    }

    .ctypes-tag {
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Outfit', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: #F47920;
      margin-bottom: 18px;
      border-left: 3px solid #F47920;
      padding-left: 10px;
    }

    .ctypes-h2 {
      font-family: 'Outfit', sans-serif;
      font-size: clamp(24px, 3.5vw, 38px);
      font-weight: 800;
      color: #1a2340;
      line-height: 1.2;
      margin: 0 0 6px;
    }

    .ctypes-h2 span {
      color: #2563EB;
    }

    .ctypes-underline {
      width: 48px;
      height: 3px;
      background: #F47920;
      border-radius: 2px;
      margin: 14px 0 20px;
    }

    .ctypes-desc {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      color: #6b7280;
      line-height: 1.75;
      max-width: 660px;
      margin: 0 0 44px;
    }

    .ctypes-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .ctype-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: #f9fafc;
      border: 1px solid #e8ecf3;
      border-radius: 12px;
      padding: 22px 20px;
      transition: box-shadow .2s ease, border-color .2s ease, transform .2s ease;
    }

    .ctype-card:hover {
      box-shadow: 0 8px 28px rgba(0, 0, 0, .09);
      border-color: #cbd5e1;
      transform: translateY(-2px);
    }

    .ctype-icon {
      flex-shrink: 0;
      width: 44px;
      height: 44px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .ctype-icon.blue {
      background: #eff6ff;
    }

    .ctype-icon.teal {
      background: #f0fdf4;
    }

    .ctype-icon.indigo {
      background: #eef2ff;
    }

    .ctype-icon.purple {
      background: #f5f3ff;
    }

    .ctype-icon.amber {
      background: #fffbeb;
    }

    .ctype-icon.slate {
      background: #f1f5f9;
    }

    .ctype-name {
      font-family: 'Outfit', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: #1a2340;
      margin: 0 0 6px;
    }

    .ctype-text {
      font-family: 'Outfit', sans-serif;
      font-size: 13.5px;
      color: #6b7280;
      line-height: 1.65;
      margin: 0;
    }

    @media (max-width: 900px) {
      .ctypes-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 560px) {
      .ctypes {
        padding: 48px 0;
      }

      .ctypes-inner {
        padding: 0 16px;
      }

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

      .ctype-card {
        padding: 16px 14px;
        gap: 14px;
      }

      .ctype-icon {
        width: 40px;
        height: 40px;
      }
    }

    /* FAQ */
    .faq-list {
      max-width: 760px;
      margin: 0 auto
    }

    .faq-item {
      border: 1.5px solid #e2e8f0;
      border-radius: 12px;
      margin-bottom: 10px;
      overflow: hidden
    }

    .faq-q {
      width: 100%;
      background: #fff;
      border: none;
      text-align: left;
      padding: 18px 20px;
      font-size: 15px;
      font-weight: 600;
      color: #0f172a;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-family: inherit;
      gap: 12px
    }

    .faq-q:hover {
      background: #f8fafc
    }

    .faq-q svg {
      flex-shrink: 0;
      transition: transform 0.25s;
      color: #f97316
    }

    .faq-item.open .faq-q svg {
      transform: rotate(45deg)
    }

    .faq-a {
      display: none;
      padding: 0 20px 18px;
      font-size: 14px;
      color: #475569;
      line-height: 1.7
    }

    .faq-item.open .faq-a {
      display: block
    }
