:root {
      --blue: #0D0B61;
      --blue-dark: #070640;
      --teal: #14B8A6;
      --teal-light: #5EEAD4;
      --green: #14B8A6;
      --green-dark: #0D9488;
      --navy: #06052E;
      --navy2: #090840;
      --dark: #0B1120;
      --text: #1E293B;
      --gray: #64748B;
      --light: #F8FAFC;
      --border: #E2E8F0;
      --white: #ffffff;
      --shadow: 0 4px 24px rgba(13, 11, 97, .12);
      --shadow-lg: 0 12px 48px rgba(13, 11, 97, .18);
      --shadow-glow: 0 8px 30px rgba(20, 184, 166, .25);
      --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden
    }

    body {
      font-family: 'Plus Jakarta Sans', sans-serif;
      color: var(--text);
      background: #fff;
      overflow-x: hidden;
      width: 100%
    }

    main {
      padding-top: 108px;
    }
    @media (max-width: 768px) {
      main {
        padding-top: 78px;
      }
    }

    img,
    video,
    iframe,
    canvas {
      max-width: 100%;
      height: auto;
    }

    * {
      word-wrap: break-word;
      overflow-wrap: break-word;
    }

    /* ─── LOADER ─── */
    #loader {
      position: fixed;
      inset: 0;
      background: #fff;
      z-index: 99999;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: opacity .5s ease, visibility .5s ease
    }

    #loader.hidden {
      opacity: 0;
      visibility: hidden
    }

    .loader-ring {
      width: 56px;
      height: 56px;
      border: 3px solid var(--border);
      border-top-color: var(--blue);
      border-radius: 50%;
      animation: spin .8s linear infinite
    }

    @keyframes spin {
      to {
        transform: rotate(360deg)
      }
    }

    /* ─── PINNED FIXED HEADER ─── */
    header#mainHeader {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      width: 100%;
      z-index: 10000;
      box-shadow: 0 4px 25px rgba(26, 95, 168, .12);
      background: #fff
    }

    .hero {
      padding-top: 40px !important
    }

    /* ─── TOPBAR ─── */
    .topbar {
      background: linear-gradient(90deg, var(--navy), var(--blue), var(--teal));
      padding: 9px 0;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1)
    }

    .topbar-inner {
      max-width: 1240px;
      margin: auto;
      padding: 0 24px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap
    }

    .topbar-left,
    .topbar-right {
      display: flex;
      align-items: center;
      gap: 24px;
      flex-wrap: wrap
    }

    .topbar a {
      color: #fff;
      text-decoration: none;
      font-size: 12.5px;
      font-weight: 500;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      transition: all .25s ease
    }

    .topbar a:hover {
      color: var(--teal-light);
      transform: translateY(-1px)
    }

    .topbar svg,
    .topbar i {
      width: 14px;
      height: 14px;
      font-size: 13px;
      color: var(--teal-light);
      transition: color .25s ease
    }

    .topbar a:hover i,
    .topbar a:hover svg {
      color: #fff
    }

    .topbar-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.12);
      padding: 3px 10px;
      border-radius: 50px;
      font-size: 11.5px;
      color: #fff;
      border: 1px solid rgba(255, 255, 255, 0.2)
    }

    /* ─── NAV ─── */
    nav {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      border-bottom: 1px solid var(--border);
      transition: all .35s ease
    }

    nav.scrolled {
      border-bottom-color: var(--border);
      box-shadow: 0 4px 25px rgba(26, 95, 168, .09);
      background: rgba(255, 255, 255, 0.98)
    }

    .nav-wrap {
      max-width: 1240px;
      margin: auto;
      padding: 0 24px;
      display: flex;
      align-items: center;
      height: 72px;
      gap: 0
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 11px;
      text-decoration: none;
      margin-right: 36px;
      flex-shrink: 0;
      transition: transform .25s ease
    }

    .logo:hover {
      transform: scale(1.02)
    }

    .logo img {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      object-fit: cover;
      box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1)
    }

    .logo-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1
    }

    .logo-main {
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: var(--text)
    }

    .logo-main em {
      font-style: normal;
      color: var(--blue);
      transition: color .25s ease
    }

    .logo:hover .logo-main em {
      color: var(--teal)
    }

    .logo-sub {
      font-size: 9.5px;
      font-weight: 600;
      color: var(--teal);
      letter-spacing: .14em;
      text-transform: uppercase
    }

    .nav-links {
      display: flex;
      gap: 4px
    }

    .nav-links a {
      text-decoration: none;
      color: #444;
      font-size: 13.5px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 6px;
      transition: all .25s ease;
      position: relative;
      white-space: nowrap
    }

    .nav-links a:hover {
      color: var(--blue);
      background: linear-gradient(135deg, #e8f4ff, #e0f7fb);
      transform: translateY(-1px)
    }

    .nav-links a.active {
      color: var(--blue);
      background: #f0f7ff
    }

    .nav-links a.active::after {
      content: '';
      position: absolute;
      bottom: 4px;
      left: 14px;
      right: 14px;
      height: 2.5px;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      border-radius: 2px
    }

    /* Color-shifting Expert Button */
    .btn-expert {
      margin-left: auto;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: #fff;
      border: none;
      padding: 10px 22px;
      border-radius: 8px;
      font-size: 13.5px;
      font-weight: 700;
      cursor: pointer;
      text-decoration: none;
      transition: all .3s var(--ease-out);
      flex-shrink: 0;
      font-family: inherit;
      box-shadow: 0 4px 14px rgba(74, 124, 69, .25)
    }

    .btn-expert:hover {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(29, 159, 200, .35);
      color: #fff
    }

    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;
      margin-left: auto;
      padding: 6px;
      background: none;
      border: none
    }

    .hamburger span {
      width: 22px;
      height: 2px;
      background: #333;
      border-radius: 2px;
      transition: all .3s;
      display: block
    }

    .hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px)
    }

    .hamburger.open span:nth-child(2) {
      opacity: 0
    }

    .hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(5px, -5px)
    }

    .mobile-menu {
      display: none;
      flex-direction: column;
      background: #fff;
      padding: 8px 0 16px;
      border-top: 1px solid var(--border)
    }

    .mobile-menu.open {
      display: flex
    }

    .mobile-menu a {
      text-decoration: none;
      color: #333;
      font-size: 14.5px;
      padding: 13px 24px;
      border-bottom: 1px solid #f5f5f5;
      font-weight: 500;
      transition: all .25s ease
    }

    .mobile-menu a:hover {
      background: linear-gradient(90deg, #f0f7ff, #e0f7fb);
      color: var(--blue);
      padding-left: 28px
    }

    .mob-cta {
      background: linear-gradient(135deg, var(--blue), var(--teal)) !important;
      color: #fff !important;
      text-align: center;
      margin: 10px 20px;
      border-radius: 8px;
      border-bottom: none !important;
      box-shadow: 0 4px 15px rgba(26, 95, 168, .25)
    }

    /* ─── HERO ─── */
    .hero {
      background: linear-gradient(135deg, #f0f7ff 0%, #e8f4ff 40%, #f8fbff 100%);
      padding: 80px 24px 20px;
      overflow: hidden;
      position: relative
    }

    .hero::before {
      content: '';
      position: absolute;
      top: -100px;
      right: -100px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(29, 159, 200, .1) 0%, transparent 65%);
      pointer-events: none
    }

    .hero::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: -60px;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(26, 95, 168, .08) 0%, transparent 70%);
      pointer-events: none
    }

    .hero-wrap {
      max-width: 1240px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 60px;
      align-items: center
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid var(--border);
      border-radius: 50px;
      padding: 6px 16px 6px 6px;
      font-size: 12px;
      font-weight: 600;
      color: var(--blue);
      margin-bottom: 22px;
      box-shadow: 0 4px 15px rgba(26, 95, 168, .08);
      transition: all .3s ease
    }

    .hero-badge:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-glow);
      border-color: var(--teal-light)
    }

    .hero-badge span {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      color: #fff;
      border-radius: 50px;
      padding: 3px 10px;
      font-size: 11px;
      font-weight: 700
    }

    .hero h1 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(30px, 4vw, 50px);
      font-weight: 800;
      line-height: 1.17;
      color: var(--text);
      margin-bottom: 22px
    }

    .hero h1 em {
      font-style: normal;
      background: linear-gradient(90deg, var(--blue), var(--teal));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      display: block
    }

    .hero-desc {
      font-size: 15.5px;
      color: var(--gray);
      line-height: 1.82;
      margin-bottom: 34px;
      max-width: 520px
    }

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

    .hero-fields {
      display: flex;
      gap: 10px;
      flex-wrap: wrap
    }

    .hero-fields input {
      flex: 1;
      min-width: 110px;
      border: 1.5px solid var(--border);
      border-radius: 8px;
      padding: 12px 15px;
      font-size: 14px;
      font-family: inherit;
      outline: none;
      color: var(--text);
      background: #fff;
      transition: all .25s ease
    }

    .hero-fields input:focus {
      border-color: var(--teal);
      box-shadow: 0 0 0 4px rgba(29, 159, 200, .15);
      transform: translateY(-1px)
    }

    .hero-fields input::placeholder {
      color: #aaa
    }

    /* Color-shifting Book Button */
    .btn-book {
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: #fff;
      border: none;
      padding: 13px 28px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      letter-spacing: .03em;
      transition: all .3s var(--ease-out);
      align-self: flex-start;
      display: flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 6px 20px rgba(74, 124, 69, .25)
    }

    .btn-book:hover {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 28px rgba(29, 159, 200, .4);
      color: #fff
    }

    .btn-book i {
      font-size: 13px;
      transition: transform .3s ease
    }

    .btn-book:hover i {
      transform: rotate(12deg) scale(1.1)
    }

    .hero-trust {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-top: 22px
    }

    .trust-avatars {
      display: flex
    }

    .trust-av {
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      border: 2px solid #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 700;
      font-size: 11px;
      margin-left: -8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
      transition: transform .25s ease
    }

    .trust-av:hover {
      transform: scale(1.15);
      z-index: 5
    }

    .trust-av:first-child {
      margin-left: 0
    }

    .trust-text {
      font-size: 12.5px;
      color: #666;
      font-weight: 500
    }

    .trust-text strong {
      color: var(--text);
      font-weight: 700
    }

    /* Hero Right – Circle Visual */
    .hero-right {
      position: relative;
      display: flex;
      justify-content: center;
      align-items: center;
      height: 520px;
      padding-right: 40px
    }

    .hero-circle-wrapper {
      position: relative;
      width: 420px;
      height: 420px;
      flex-shrink: 0
    }

    .hero-circle {
      width: 420px;
      height: 420px;
      border-radius: 50%;
      background: linear-gradient(145deg, var(--blue) 0%, var(--teal) 100%);
      position: relative;
      overflow: hidden;
      display: flex;
      align-items: flex-end;
      justify-content: center;
      box-shadow: 0 20px 50px rgba(26, 95, 168, .25)
    }

    .hero-circle img {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center;
      transition: transform .5s ease
    }

    .hero-circle:hover img {
      transform: translateX(-50%) scale(1.04)
    }

    .hero-circle-ring {
      position: absolute;
      width: 420px;
      height: 420px;
      top: 0;
      left: 0;
      animation: rotatering 18s linear infinite;
      pointer-events: none;
      z-index: 2
    }

    @keyframes rotatering {
      from {
        transform: rotate(0)
      }

      to {
        transform: rotate(360deg)
      }
    }

    .hero-circle-ring text {
      fill: #fff;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 3px;
      font-family: 'Plus Jakarta Sans', sans-serif
    }

    .hero-float {
      position: absolute;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(8px);
      border: 1px solid rgba(255, 255, 255, 0.8);
      border-radius: 12px;
      padding: 12px 16px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: float 3.5s ease-in-out infinite;
      z-index: 3;
      transition: all .3s ease
    }

    .hero-float:hover {
      transform: scale(1.08) translateY(-4px) !important;
      background: #fff;
      box-shadow: var(--shadow-glow)
    }

    .hero-float:nth-child(2) {
      top: 20px;
      right: -30px;
      animation-delay: 0s
    }

    .hero-float:nth-child(3) {
      top: 165px;
      right: -45px;
      animation-delay: .7s
    }

    .hero-float:nth-child(4) {
      bottom: 60px;
      right: -35px;
      animation-delay: 1.4s
    }

    @keyframes float {

      0%,
      100% {
        transform: translateY(0)
      }

      50% {
        transform: translateY(-8px)
      }
    }

    .hero-float .fi {
      width: 36px;
      height: 36px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      transition: all .3s ease
    }

    .hero-float:hover .fi {
      transform: rotate(10deg)
    }

    .hero-float .fi.blue {
      background: #e8f4ff;
      color: var(--blue)
    }

    .hero-float .fi.green {
      background: #e8f5e9;
      color: var(--green)
    }

    .hero-float .fi.teal {
      background: #e0f7fb;
      color: var(--teal)
    }

    .hero-float .ftext strong {
      display: block;
      font-size: 14px;
      font-weight: 800;
      color: var(--text);
      line-height: 1
    }

    .hero-float .ftext span {
      font-size: 10.5px;
      color: #888;
      font-weight: 500
    }

    /* ─── STATS BAR ─── */
    .stats-bar {
      background: linear-gradient(90deg, var(--navy2), var(--blue), var(--teal));
      padding: 32px 24px;
      box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.15)
    }

    .stats-inner {
      max-width: 1100px;
      margin: auto;
      display: flex;
      justify-content: space-around;
      flex-wrap: wrap;
      gap: 20px
    }

    .stat-item {
      display: flex;
      align-items: center;
      gap: 14px;
      color: #fff;
      transition: transform .3s ease
    }

    .stat-item:hover {
      transform: translateY(-3px)
    }

    .stat-icon {
      width: 48px;
      height: 48px;
      background: rgba(255, 255, 255, .15);
      border: 1px solid rgba(255, 255, 255, .2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      flex-shrink: 0;
      transition: all .3s ease
    }

    .stat-item:hover .stat-icon {
      background: rgba(255, 255, 255, 0.3);
      color: var(--teal-light);
      transform: scale(1.1) rotate(5deg)
    }

    .stat-text strong {
      display: block;
      font-size: 20px;
      font-weight: 800;
      line-height: 1.1
    }

    .stat-text span {
      font-size: 12px;
      opacity: .85;
      font-weight: 500
    }

    /* ─── SECTIONS ─── */
    .section {
      padding: 88px 24px
    }

    .container {
      max-width: 1240px;
      margin: auto
    }

    .section-center {
      text-align: center;
      margin-bottom: 56px
    }

    .section-tag {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--teal);
      background: #e0f7fb;
      padding: 5px 14px;
      border-radius: 50px;
      margin-bottom: 14px;
      border: 1px solid rgba(29, 159, 200, 0.2);
      transition: all .3s ease
    }

    .section-tag:hover {
      background: var(--teal);
      color: #fff;
      transform: translateY(-1px)
    }

    .section-h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(26px, 3.5vw, 42px);
      font-weight: 800;
      color: var(--text);
      line-height: 1.2;
      margin-bottom: 18px
    }

    .section-h2 em {
      font-style: normal;
      color: var(--blue)
    }

    .section-p {
      font-size: 15.5px;
      color: var(--gray);
      line-height: 1.82;
      max-width: 820px;
      margin: 0 auto
    }

    /* ─── SERVICES GRID ─── */
    .service-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      border: 1px solid #e4edf8;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 4px 25px rgba(26, 95, 168, .06)
    }

    .service-card {
      padding: 38px 26px;
      border-right: 1px solid #e4edf8;
      text-align: center;
      transition: all .4s var(--ease-out);
      cursor: pointer;
      position: relative;
      overflow: hidden;
      background: #fff
    }

    .service-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, var(--navy2) 0%, var(--blue) 50%, var(--teal) 100%);
      opacity: 0;
      transition: opacity .4s ease
    }

    .service-card:last-child {
      border-right: none
    }

    /* Color-shifting Service Card Hover */
    .service-card:hover,
    .service-card.active {
      transform: translateY(-6px);
      box-shadow: 0 16px 40px rgba(26, 95, 168, .25);
      z-index: 2
    }

    .service-card:hover::before,
    .service-card.active::before {
      opacity: 1
    }

    .service-card:hover .sc-icon,
    .service-card.active .sc-icon {
      background: rgba(255, 255, 255, .2);
      color: #fff;
      transform: scale(1.1) rotate(5deg);
      border-color: rgba(255, 255, 255, 0.4)
    }

    .service-card:hover .sc-title,
    .service-card.active .sc-title,
    .service-card:hover .sc-desc,
    .service-card.active .sc-desc {
      color: #fff
    }

    .sc-icon {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: #f0f7ff;
      border: 1px solid #d4e5f7;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 18px;
      font-size: 26px;
      color: var(--blue);
      transition: all .35s ease;
      position: relative;
      z-index: 1
    }

    .sc-title {
      font-size: 15.5px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 12px;
      transition: color .35s;
      position: relative;
      z-index: 1
    }

    .sc-desc {
      font-size: 13px;
      color: #666;
      line-height: 1.72;
      transition: color .35s;
      position: relative;
      z-index: 1
    }

    /* ─── DEDICATED SECTION ─── */
    .dedicated-section {
      background: var(--light);
      padding: 88px 24px
    }

    .dedicated-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px;
      align-items: center;
      max-width: 1240px;
      margin: auto
    }

    .dedicated-img {
      position: relative;
      display: flex;
      justify-content: center
    }

    .dedicated-img img {
      width: 100%;
      max-width: 420px;
      border-radius: 50%;
      object-fit: cover;
      aspect-ratio: 1;
      box-shadow: 0 15px 40px rgba(26, 95, 168, 0.2);
      transition: transform .4s ease
    }

    .dedicated-img:hover img {
      transform: scale(1.03)
    }

    .dedicated-img::before {
      content: '';
      position: absolute;
      inset: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      z-index: -1;
      transform: scale(1.05);
      transition: transform .4s ease
    }

    .dedicated-img:hover::before {
      transform: scale(1.08)
    }

    .ded-text h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(24px, 3vw, 36px);
      font-weight: 800;
      color: var(--text);
      line-height: 1.25;
      margin-bottom: 18px
    }

    .ded-text h2 em {
      font-style: normal;
      color: var(--blue)
    }

    .ded-text p {
      font-size: 15px;
      color: var(--gray);
      line-height: 1.8;
      margin-bottom: 24px
    }

    .compare-box {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 32px
    }

    .comp-row {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      transition: all .3s ease
    }

    .comp-row:hover {
      transform: translateX(5px)
    }

    .comp-row.bad {
      background: #fff3f3;
      color: #c0392b;
      border: 1px solid #ffdad6
    }

    .comp-row.bad:hover {
      background: #ffe8e8;
      border-color: #ffb8b0
    }

    .comp-row.good {
      background: #e8f5e9;
      color: #2e7d32;
      border: 1px solid #c8e6c9
    }

    .comp-row.good:hover {
      background: #dceddd;
      border-color: #a5d6a7
    }

    .comp-row i {
      margin-top: 2px;
      flex-shrink: 0;
      font-size: 16px
    }

    /* Demo Button Hover Color Shift */
    .btn-demo {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: #fff;
      padding: 13px 26px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      transition: all .3s var(--ease-out);
      box-shadow: 0 4px 15px rgba(74, 124, 69, 0.25)
    }

    .btn-demo:hover {
      background: linear-gradient(135deg, var(--blue), var(--navy2));
      color: #fff;
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 8px 24px rgba(26, 95, 168, .35)
    }

    /* ─── CLAIMS SECTION ─── */
    .claims-section {
      background: linear-gradient(145deg, var(--blue) 0%, #1283b8 50%, var(--teal) 100%);
      padding: 80px 24px
    }

    .claims-inner {
      max-width: 1240px;
      margin: auto
    }

    .claims-heading {
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-size: clamp(24px, 3.5vw, 40px);
      font-weight: 800;
      margin-bottom: 52px;
      line-height: 1.22
    }

    .claims-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center
    }

    .claims-img-box {
      background: rgba(255, 255, 255, .1);
      border-radius: 20px;
      border: 1px solid rgba(255, 255, 255, .2);
      padding: 28px;
      min-height: 320px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15)
    }

    .claims-img-box img {
      width: 100%;
      border-radius: 12px;
      object-fit: cover;
      transition: transform .4s ease
    }

    .claims-img-box:hover img {
      transform: scale(1.04)
    }

    .claims-desc {
      color: rgba(255, 255, 255, .92);
      font-size: 14.5px;
      line-height: 1.8;
      margin-top: 18px
    }

    .claim-features {
      display: flex;
      flex-direction: column;
      gap: 18px;
      margin-bottom: 30px
    }

    .claim-feat {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 16px;
      background: rgba(255, 255, 255, .08);
      border-radius: 12px;
      border: 1px solid rgba(255, 255, 255, .15);
      transition: all .3s ease
    }

    .claim-feat:hover {
      background: rgba(255, 255, 255, .18);
      transform: translateX(6px);
      border-color: rgba(255, 255, 255, 0.35)
    }

    .cf-icon {
      width: 38px;
      height: 38px;
      background: rgba(255, 255, 255, .18);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      flex-shrink: 0;
      color: #fff;
      transition: transform .3s ease
    }

    .claim-feat:hover .cf-icon {
      transform: scale(1.15) rotate(5deg);
      background: rgba(255, 255, 255, 0.3)
    }

    .cf-body .cf-title {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .1em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .75);
      margin-bottom: 3px
    }

    .cf-body .cf-desc {
      font-size: 14px;
      color: #fff;
      font-weight: 500
    }

    /* White Button Hover Color Shift */
    .btn-white {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--blue);
      padding: 13px 28px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 14px;
      font-weight: 700;
      letter-spacing: .03em;
      transition: all .3s var(--ease-out);
      box-shadow: 0 4px 16px rgba(0, 0, 0, .15)
    }

    .btn-white:hover {
      background: linear-gradient(135deg, #e0f7fb, #ffffff);
      color: var(--navy2);
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 10px 25px rgba(255, 255, 255, .3)
    }

    /* ─── CHALLENGES ─── */
    .challenges-section {
      background: linear-gradient(135deg, #e8f4ff, #f0f9fb);
      padding: 88px 24px
    }

    .challenges-inner {
      max-width: 800px;
      margin: auto
    }

    .challenge-box {
      background: linear-gradient(135deg, var(--navy2), var(--blue), var(--teal));
      border-radius: 20px;
      padding: 44px;
      color: #fff;
      box-shadow: 0 15px 45px rgba(26, 95, 168, 0.25)
    }

    .challenge-box h3 {
      font-family: 'Sora', sans-serif;
      font-size: 22px;
      font-weight: 800;
      margin-bottom: 26px
    }

    .challenge-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 28px
    }

    .challenge-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 12px 16px;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 8px;
      cursor: pointer;
      transition: all .25s ease;
      user-select: none
    }

    .challenge-item:hover {
      background: rgba(255, 255, 255, .2);
      transform: translateX(4px);
      border-color: rgba(255, 255, 255, 0.35)
    }

    .challenge-item input[type=checkbox] {
      width: 18px;
      height: 18px;
      accent-color: var(--teal-light);
      cursor: pointer;
      flex-shrink: 0
    }

    .challenge-item label {
      font-size: 14px;
      font-weight: 500;
      cursor: pointer
    }

    .challenge-form {
      display: grid;
      grid-template-columns: 1fr 1fr 1fr;
      gap: 10px;
      margin-top: 16px
    }

    .challenge-form input {
      background: rgba(255, 255, 255, .95);
      border: 1.5px solid transparent;
      border-radius: 8px;
      padding: 12px 14px;
      font-size: 14px;
      font-family: inherit;
      outline: none;
      color: var(--text);
      transition: all .25s ease
    }

    .challenge-form input:focus {
      background: #fff;
      border-color: var(--teal-light);
      box-shadow: 0 0 0 3px rgba(41, 187, 216, 0.3)
    }

    .challenge-form input::placeholder {
      color: #999
    }

    /* Challenge Send Button Color Shift */
    .btn-send-challenge {
      grid-column: 1/-1;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-size: 14px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: all .3s var(--ease-out);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(74, 124, 69, 0.3)
    }

    .btn-send-challenge:hover {
      background: linear-gradient(135deg, var(--teal), var(--blue));
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(29, 159, 200, 0.4);
      color: #fff
    }

    /* ─── TRUST STATS ─── */
    .trust-section {
      background: #fff;
      padding: 88px 24px
    }

    .stat-cards {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px
    }

    .stat-card {
      background: linear-gradient(145deg, #1e1870, #2c27a0);
      border-radius: 18px;
      padding: 36px 28px;
      color: #fff;
      position: relative;
      overflow: hidden;
      transition: all .4s var(--ease-out);
      border: 1px solid rgba(255, 255, 255, 0.1)
    }

    .stat-card:hover {
      transform: translateY(-8px) scale(1.02);
      box-shadow: 0 20px 50px rgba(30, 24, 112, .35);
      background: linear-gradient(145deg, #162e6a 0%, #1a5fa8 60%, #1d9fc8 100%)
    }

    .stat-card::before {
      content: '';
      position: absolute;
      top: -40px;
      right: -40px;
      width: 160px;
      height: 160px;
      background: radial-gradient(circle, rgba(29, 159, 200, .25) 0%, transparent 70%);
      pointer-events: none
    }

    .stat-card .pct {
      font-family: 'Sora', sans-serif;
      font-size: 36px;
      font-weight: 900;
      color: #4dd9f0;
      margin-bottom: 6px;
      line-height: 1;
      transition: transform .3s ease
    }

    .stat-card:hover .pct {
      transform: scale(1.08)
    }

    .stat-card .stitle {
      font-size: 13.5px;
      opacity: .85;
      margin-bottom: 22px
    }

    .stat-graphic {
      height: 68px;
      display: flex;
      align-items: flex-end
    }

    .check-graphic {
      width: 68px;
      height: 68px;
      border-radius: 50%;
      border: 2px solid rgba(255, 255, 255, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      transition: transform .3s ease
    }

    .stat-card:hover .check-graphic {
      transform: rotate(15deg) scale(1.05)
    }

    .check-inner {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      background: rgba(29, 159, 200, .25);
      border: 1.5px solid rgba(29, 159, 200, .6);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px
    }

    .bars {
      display: flex;
      align-items: flex-end;
      gap: 5px;
      height: 68px
    }

    .bar {
      border-radius: 4px 4px 0 0;
      width: 12px;
      animation: grow .8s ease forwards
    }

    @keyframes grow {
      from {
        transform: scaleY(0);
        transform-origin: bottom
      }

      to {
        transform: scaleY(1);
        transform-origin: bottom
      }
    }

    .bar1 {
      background: #8b6914;
      height: 28%
    }

    .bar2 {
      background: #b88a1e;
      height: 48%
    }

    .bar3 {
      background: #e8b430;
      height: 68%
    }

    .bar4 {
      background: #f0c840;
      height: 88%
    }

    /* ─── TECH SECTION ─── */
    .tech-section {
      background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 50%, #0b2855 100%);
      padding: 88px 24px
    }

    .tech-inner {
      max-width: 1240px;
      margin: auto
    }

    .tech-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 72px;
      align-items: center
    }

    .tech-left h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(24px, 3.2vw, 38px);
      font-weight: 800;
      color: #fff;
      line-height: 1.24;
      margin-bottom: 16px
    }

    .tech-left h2 em {
      font-style: normal;
      color: var(--teal-light)
    }

    .tech-left p {
      font-size: 14.5px;
      color: rgba(255, 255, 255, .78);
      line-height: 1.8;
      margin-bottom: 26px
    }

    .checklist-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px 20px;
      margin-bottom: 34px
    }

    .cl-item {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      color: rgba(255, 255, 255, .9);
      font-weight: 500;
      transition: transform .25s ease
    }

    .cl-item:hover {
      transform: translateX(4px);
      color: #fff
    }

    .cl-check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--teal);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: 900;
      flex-shrink: 0;
      box-shadow: 0 2px 8px rgba(29, 159, 200, 0.4)
    }

    .score-row {
      display: flex;
      gap: 18px
    }

    .score-box {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 16px;
      padding: 24px 28px;
      text-align: center;
      flex: 1;
      transition: all .3s ease
    }

    .score-box:hover {
      background: rgba(255, 255, 255, 0.12);
      transform: translateY(-3px);
      border-color: rgba(255, 255, 255, 0.25)
    }

    .score-label {
      font-size: 11px;
      color: rgba(255, 255, 255, .65);
      text-transform: uppercase;
      letter-spacing: .08em;
      font-weight: 600;
      margin-bottom: 4px
    }

    .score-num {
      font-family: 'Sora', sans-serif;
      font-size: 42px;
      font-weight: 900;
      color: var(--teal-light);
      line-height: 1;
      margin-bottom: 6px
    }

    .score-sub {
      font-size: 10.5px;
      color: rgba(255, 255, 255, .6);
      line-height: 1.5
    }

    .tech-right {
      position: relative
    }

    .tech-right img {
      width: 100%;
      border-radius: 20px;
      object-fit: cover;
      box-shadow: 0 20px 60px rgba(0, 0, 0, .4);
      transition: transform .4s ease
    }

    .tech-right:hover img {
      transform: scale(1.02)
    }

    .tech-badge {
      position: absolute;
      bottom: 24px;
      left: -16px;
      background: #fff;
      border-radius: 12px;
      padding: 14px 18px;
      box-shadow: var(--shadow-lg);
      display: flex;
      align-items: center;
      gap: 10px;
      animation: float 3s ease-in-out infinite;
      transition: all .3s ease
    }

    .tech-badge:hover {
      transform: scale(1.06) !important;
      box-shadow: var(--shadow-glow)
    }

    .tech-badge .tb-icon {
      width: 40px;
      height: 40px;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 18px
    }

    .tech-badge strong {
      display: block;
      font-size: 14px;
      font-weight: 800;
      color: var(--text)
    }

    .tech-badge span {
      font-size: 11px;
      color: #888
    }

    /* ─── CTA BANNER ─── */
    .cta-banner {
      background: linear-gradient(90deg, var(--teal), var(--blue), var(--navy2));
      padding: 64px 24px;
      text-align: center
    }

    .cta-banner h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(22px, 3vw, 36px);
      font-weight: 800;
      color: #fff;
      margin-bottom: 10px
    }

    .cta-banner p {
      font-size: 15.5px;
      color: rgba(255, 255, 255, .92);
      margin-bottom: 28px
    }

    .cta-pills {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px;
      margin-bottom: 30px
    }

    .cta-pill {
      background: rgba(255, 255, 255, .14);
      border: 1px solid rgba(255, 255, 255, .25);
      color: #fff;
      font-size: 13px;
      padding: 8px 18px;
      border-radius: 50px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: all .3s ease
    }

    .cta-pill:hover {
      background: rgba(255, 255, 255, .25);
      transform: translateY(-2px)
    }

    .cta-pill::before {
      content: '✓';
      width: 18px;
      height: 18px;
      background: var(--green);
      border-radius: 50%;
      font-size: 10px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    /* CTA Button Hover Color Shift */
    .btn-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: #fff;
      color: var(--blue);
      padding: 14px 36px;
      border-radius: 8px;
      text-decoration: none;
      font-size: 15px;
      font-weight: 700;
      letter-spacing: .03em;
      transition: all .3s var(--ease-out);
      box-shadow: 0 6px 20px rgba(0, 0, 0, .15)
    }

    .btn-cta:hover {
      background: linear-gradient(135deg, #ffffff, #e0f7fb);
      color: var(--navy2);
      transform: translateY(-3px) scale(1.03);
      box-shadow: 0 12px 30px rgba(0, 0, 0, .25)
    }

    /* ─── NATIONWIDE ─── */
    .nationwide {
      background: #fff;
      padding: 88px 24px
    }

    .map-box {
      background: linear-gradient(135deg, var(--navy2), var(--blue), var(--teal));
      border-radius: 20px;
      padding: 44px;
      margin: 36px 0;
      position: relative;
      overflow: hidden;
      box-shadow: 0 15px 45px rgba(26, 95, 168, 0.2)
    }

    .map-box::before {
      content: '';
      position: absolute;
      top: -60px;
      right: -60px;
      width: 200px;
      height: 200px;
      background: rgba(255, 255, 255, .08);
      border-radius: 50%
    }

    .usa-map {
      width: 100%;
      max-width: 700px;
      display: block;
      margin: auto
    }

    .city-tabs {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 10px
    }

    /* City Tabs Hover Color Shift */
    .city-tab {
      background: #fff;
      color: var(--blue);
      border: 1.5px solid #c4d9f0;
      font-size: 13px;
      font-weight: 600;
      padding: 8px 22px;
      border-radius: 50px;
      cursor: pointer;
      transition: all .3s var(--ease-out);
      font-family: inherit
    }

    .city-tab:hover,
    .city-tab.active {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      color: #fff;
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 6px 18px rgba(26, 95, 168, .35)
    }

    /* ─── PRICING ─── */
    .pricing-section {
      background: var(--light);
      padding: 88px 24px
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start
    }

    .pricing-card {
      background: #1a1a2e;
      border-radius: 22px;
      padding: 46px 42px;
      color: #fff;
      position: relative;
      overflow: hidden;
      box-shadow: 0 15px 45px rgba(0, 0, 0, 0.2);
      transition: transform .35s ease
    }

    .pricing-card:hover {
      transform: translateY(-4px)
    }

    .pricing-card::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(29, 159, 200, .22) 0%, transparent 70%);
      pointer-events: none
    }

    .price-rate {
      font-family: 'Sora', sans-serif;
      font-size: 64px;
      font-weight: 900;
      color: var(--teal-light);
      line-height: 1;
      margin-bottom: 4px
    }

    .price-sub {
      color: rgba(255, 255, 255, .6);
      font-size: 13.5px;
      margin-bottom: 32px
    }

    .pf-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px
    }

    .pf-list li {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 14px;
      color: rgba(255, 255, 255, .9);
      transition: transform .2s ease
    }

    .pf-list li:hover {
      transform: translateX(4px);
      color: #fff
    }

    .pf-check {
      width: 20px;
      height: 20px;
      border-radius: 50%;
      background: var(--teal);
      color: #fff;
      font-size: 9px;
      font-weight: 900;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0
    }

    .pricing-right {
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .savings-table {
      background: #fff;
      border-radius: 14px;
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow)
    }

    .savings-table table {
      width: 100%;
      border-collapse: collapse
    }

    .savings-table thead tr {
      background: var(--navy);
      color: #fff
    }

    .savings-table th {
      padding: 14px 20px;
      font-size: 13px;
      font-weight: 700;
      text-align: left;
      letter-spacing: .04em;
      text-transform: uppercase
    }

    .savings-table td {
      padding: 12px 20px;
      font-size: 14px;
      border-bottom: 1px solid var(--border)
    }

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

    .savings-table .highlight {
      background: linear-gradient(135deg, #e8f4ff, #e0f7fb)
    }

    .savings-table .highlight td {
      font-weight: 700;
      color: var(--blue)
    }

    .savings-total {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      color: #fff
    }

    .savings-total td {
      color: #fff !important;
      font-weight: 800 !important;
      font-size: 16px !important;
      padding: 16px 20px !important;
      border-bottom: none !important
    }

    .perks-box {
      background: #fff;
      border-radius: 14px;
      padding: 24px;
      border: 1px solid var(--border)
    }

    .perks-box h4 {
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 14px;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .perks-box ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px
    }

    .perks-box li {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 13.5px;
      color: var(--gray);
      transition: transform .2s ease
    }

    .perks-box li:hover {
      transform: translateX(4px);
      color: var(--text)
    }

    .perks-box li i {
      color: var(--blue);
      font-size: 13px
    }

    /* ─── TESTIMONIALS ─── */
    .testi-section {
      background: #fff;
      padding: 88px 24px
    }

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

    .testi-card {
      background: var(--light);
      border-radius: 16px;
      padding: 30px 26px;
      border: 1px solid #e2edf8;
      transition: all .35s var(--ease-out);
      cursor: pointer;
      position: relative
    }

    .testi-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
      border-color: var(--teal-light);
      background: #fff
    }

    .stars {
      color: #f59e0b;
      font-size: 13px;
      margin-bottom: 10px;
      letter-spacing: 2px
    }

    .quote-mark {
      font-size: 52px;
      color: #c0d8f0;
      font-family: Georgia, serif;
      line-height: .7;
      margin-bottom: 8px;
      transition: color .3s ease
    }

    .testi-card:hover .quote-mark {
      color: var(--teal)
    }

    .testi-card p {
      font-size: 14px;
      color: #555;
      line-height: 1.8;
      margin-bottom: 20px;
      font-style: italic
    }

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

    .testi-av {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      flex-shrink: 0;
      transition: transform .3s ease
    }

    .testi-card:hover .testi-av {
      transform: scale(1.1)
    }

    .testi-name {
      font-weight: 700;
      font-size: 14px;
      color: var(--text)
    }

    .testi-role {
      font-size: 12px;
      color: #888
    }

    /* ─── FAQ ─── */
    .faq-section {
      background: var(--light);
      padding: 88px 24px
    }

    .faq-container {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: start;
      max-width: 1240px;
      margin: auto
    }

    .faq-list {
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .faq-item {
      border: 1.5px solid var(--border);
      border-radius: 12px;
      overflow: hidden;
      background: #fff;
      transition: all .3s ease
    }

    .faq-item:hover,
    .faq-item.open {
      border-color: var(--teal);
      box-shadow: 0 6px 22px rgba(26, 95, 168, .12)
    }

    .faq-q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 18px 22px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      font-family: inherit;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 12px;
      transition: color .25s ease
    }

    .faq-q:hover {
      color: var(--blue)
    }

    .faq-toggle {
      min-width: 28px;
      height: 28px;
      border-radius: 50%;
      border: 2px solid var(--blue);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--blue);
      font-size: 16px;
      font-weight: 300;
      transition: transform .3s ease, background .3s ease, color .3s ease;
      flex-shrink: 0
    }

    .faq-item:hover .faq-toggle {
      border-color: var(--teal);
      color: var(--teal)
    }

    .faq-item.open .faq-toggle {
      transform: rotate(45deg);
      background: linear-gradient(135deg, var(--blue), var(--teal));
      border-color: transparent;
      color: #fff
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s ease, padding .3s;
      padding: 0 22px
    }

    .faq-item.open .faq-a {
      max-height: 300px;
      padding: 0 22px 18px
    }

    .faq-a p {
      font-size: 13.5px;
      color: #666;
      line-height: 1.85
    }

    .faq-img {
      border-radius: 20px;
      overflow: hidden;
      box-shadow: var(--shadow-lg);
      transition: transform .4s ease
    }

    .faq-img:hover {
      transform: scale(1.02)
    }

    .faq-img img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block
    }

    /* ─── CONTACT ─── */
    .contact-section {
      background: linear-gradient(145deg, var(--navy) 0%, var(--navy2) 60%, #0b2855 100%);
      padding: 88px 24px
    }

    .contact-grid {
      max-width: 1240px;
      margin: auto;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 64px
    }

    .contact-section h2,
    .contact-left h2 {
      font-family: 'Sora', sans-serif;
      font-size: clamp(24px, 3.2vw, 38px);
      font-weight: 800;
      color: #ffffff !important;
      margin-bottom: 14px;
      text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3)
    }

    .contact-section p,
    .contact-left>p {
      font-size: 15px;
      color: rgba(255, 255, 255, 0.92) !important;
      line-height: 1.8;
      margin-bottom: 30px
    }

    .contact-items {
      display: flex;
      flex-direction: column;
      gap: 18px
    }

    .ci {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 8px 0;
      transition: transform .25s ease
    }

    .ci:hover {
      transform: translateX(5px)
    }

    .ci-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      background: rgba(29, 159, 200, .15);
      border: 1px solid rgba(29, 159, 200, .3);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
      color: var(--teal-light);
      transition: all .3s ease
    }

    .ci:hover .ci-icon {
      background: var(--teal);
      color: #fff;
      transform: scale(1.1) rotate(5deg)
    }

    .ci-text strong {
      color: #fff;
      display: block;
      font-size: 11.5px;
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 2px;
      opacity: .7
    }

    .ci-text span,
    .ci-text a {
      color: rgba(255, 255, 255, .9);
      font-size: 14px;
      text-decoration: none;
      transition: color .25s ease
    }

    .ci-text a:hover {
      color: var(--teal-light)
    }

    /* Get Directions Button */
    .get-directions-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      margin-top: 6px;
      padding: 5px 14px;
      background: rgba(29, 159, 200, 0.18);
      color: var(--teal-light) !important;
      border: 1px solid rgba(29, 159, 200, 0.4);
      border-radius: 50px;
      font-size: 11.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      transition: all .3s var(--ease-out)
    }

    .get-directions-btn:hover {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      color: #fff !important;
      border-color: transparent;
      transform: translateY(-2px);
      box-shadow: 0 6px 16px rgba(29, 159, 200, 0.35)
    }

    /* Platform-Specific Social Button Hover Color Shifts */
    .social-row {
      display: flex;
      gap: 12px;
      margin-top: 24px
    }

    .soc-btn {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .85);
      font-size: 15px;
      text-decoration: none;
      transition: all .3s var(--ease-out);
      font-weight: 700
    }

    .soc-btn.facebook:hover {
      background: #1877f2;
      border-color: #1877f2;
      color: #fff;
      box-shadow: 0 6px 18px rgba(24, 119, 242, 0.45);
      transform: translateY(-3px) scale(1.08)
    }

    .soc-btn.instagram:hover {
      background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
      border-color: transparent;
      color: #fff;
      box-shadow: 0 6px 18px rgba(220, 39, 67, 0.45);
      transform: translateY(-3px) scale(1.08)
    }

    .soc-btn.x-twitter:hover {
      background: #000;
      border-color: var(--teal-light);
      color: #fff;
      box-shadow: 0 6px 18px rgba(29, 159, 200, 0.45);
      transform: translateY(-3px) scale(1.08)
    }

    .soc-btn.linkedin:hover {
      background: #0a66c2;
      border-color: #0a66c2;
      color: #fff;
      box-shadow: 0 6px 18px rgba(10, 102, 194, 0.45);
      transform: translateY(-3px) scale(1.08)
    }

    .contact-form-box {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(255, 255, 255, .12);
      border-radius: 22px;
      padding: 38px 34px;
      backdrop-filter: blur(14px);
      box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2)
    }

    .contact-form-box h3 {
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-size: 20px;
      font-weight: 700;
      margin-bottom: 22px
    }

    .cf-group {
      margin-bottom: 13px
    }

    .cf-group label {
      display: block;
      color: rgba(255, 255, 255, .7);
      font-size: 11.5px;
      font-weight: 700;
      letter-spacing: .05em;
      text-transform: uppercase;
      margin-bottom: 6px
    }

    .cf-group input,
    .cf-group textarea,
    .cf-group select {
      width: 100%;
      background: rgba(255, 255, 255, .08);
      border: 1.5px solid rgba(255, 255, 255, .15);
      color: #fff;
      padding: 11px 14px;
      border-radius: 8px;
      font-size: 14px;
      font-family: inherit;
      outline: none;
      transition: all .25s ease;
      resize: none;
      -webkit-appearance: none;
      appearance: none
    }

    .cf-group input::placeholder,
    .cf-group textarea::placeholder {
      color: rgba(255, 255, 255, .4)
    }

    .cf-group input:focus,
    .cf-group textarea:focus,
    .cf-group select:focus {
      border-color: var(--teal-light);
      background: rgba(255, 255, 255, .14);
      box-shadow: 0 0 0 3px rgba(41, 187, 216, 0.25)
    }

    .cf-group select option {
      background: #1a2a5a;
      color: #fff
    }

    .cf-group textarea {
      height: 90px
    }

    .cf-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px
    }

    /* Contact Send Form Color Shift */
    .btn-send-form {
      width: 100%;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: #fff;
      border: none;
      padding: 13px;
      border-radius: 8px;
      font-size: 14.5px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: all .3s var(--ease-out);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 4px 15px rgba(74, 124, 69, 0.3)
    }

    .btn-send-form:hover {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      transform: translateY(-2px);
      box-shadow: 0 8px 25px rgba(29, 159, 200, 0.4);
      color: #fff
    }

    .btn-send-form:disabled {
      opacity: .6;
      cursor: not-allowed;
      transform: none
    }

    /* ─── FOOTER ─── */
    footer {
      background: var(--dark);
      padding: 60px 24px 22px
    }

    .footer-inner {
      max-width: 1240px;
      margin: auto;
      display: grid;
      grid-template-columns: 2fr 1fr 1.5fr 1.5fr;
      gap: 44px;
      padding-bottom: 44px;
      border-bottom: 1px solid rgba(255, 255, 255, .08)
    }

    .ft-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      margin-bottom: 14px;
      transition: transform .25s ease
    }

    .ft-logo:hover {
      transform: scale(1.02)
    }

    .ft-logo img {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      object-fit: cover
    }

    .ft-brand-name {
      font-family: 'Sora', sans-serif;
      font-size: 18px;
      font-weight: 800;
      color: #fff
    }

    .ft-brand-name em {
      font-style: normal;
      color: var(--teal-light)
    }

    .ft-desc {
      font-size: 13px;
      color: rgba(255, 255, 255, .55);
      line-height: 1.75;
      margin-bottom: 18px
    }

    .ft-email-box {
      display: flex;
      gap: 8px
    }

    .ft-email-box input {
      flex: 1;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
      color: #fff;
      padding: 10px 14px;
      border-radius: 7px;
      font-size: 13px;
      font-family: inherit;
      outline: none;
      transition: border-color .25s ease
    }

    .ft-email-box input:focus {
      border-color: var(--teal-light)
    }

    .ft-email-box input::placeholder {
      color: rgba(255, 255, 255, .4)
    }

    .ft-email-box button {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      color: #fff;
      border: none;
      padding: 10px 16px;
      border-radius: 7px;
      font-size: 13px;
      font-weight: 600;
      cursor: pointer;
      font-family: inherit;
      transition: all .25s ease
    }

    .ft-email-box button:hover {
      background: linear-gradient(135deg, var(--teal), var(--green));
      transform: translateY(-1px);
      box-shadow: 0 4px 12px rgba(29, 159, 200, 0.3)
    }

    footer h4 {
      color: #fff;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      margin-bottom: 18px
    }

    .ft-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 9px
    }

    .ft-links a {
      color: rgba(255, 255, 255, .55);
      text-decoration: none;
      font-size: 13px;
      transition: all .25s ease;
      display: flex;
      align-items: center;
      gap: 6px
    }

    .ft-links a::before {
      content: '›';
      color: var(--teal);
      font-weight: 700;
      transition: transform .25s ease
    }

    .ft-links a:hover {
      color: var(--teal-light);
      transform: translateX(4px)
    }

    .ft-links a:hover::before {
      transform: translateX(2px)
    }

    .ft-contact-item {
      display: flex;
      align-items: flex-start;
      gap: 10px;
      margin-bottom: 12px;
      font-size: 13px;
      color: rgba(255, 255, 255, .6);
      transition: transform .25s ease
    }

    .ft-contact-item:hover {
      transform: translateX(4px)
    }

    .ft-contact-item i {
      color: var(--teal-light);
      margin-top: 2px;
      width: 14px;
      flex-shrink: 0
    }

    .ft-contact-item a {
      color: rgba(255, 255, 255, .6);
      text-decoration: none;
      transition: color .2s
    }

    .ft-contact-item a:hover {
      color: var(--teal-light)
    }

    .footer-bottom {
      max-width: 1240px;
      margin: 20px auto 0;
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 12px;
      color: rgba(255, 255, 255, .4);
      flex-wrap: wrap;
      gap: 10px
    }

    .footer-bottom a {
      color: rgba(255, 255, 255, .5);
      text-decoration: none;
      transition: color .2s
    }

    .footer-bottom a:hover {
      color: var(--teal-light)
    }

    /* ─── BACK TO TOP ─── */
    #btt {
      position: fixed;
      bottom: 26px;
      right: 26px;
      width: 46px;
      height: 46px;
      background: linear-gradient(135deg, var(--blue), var(--teal));
      color: #fff;
      border: none;
      border-radius: 12px;
      font-size: 18px;
      cursor: pointer;
      opacity: 0;
      transform: translateY(12px);
      transition: all .35s var(--ease-out);
      z-index: 9999;
      box-shadow: 0 6px 20px rgba(26, 95, 168, .4)
    }

    #btt.show {
      opacity: 1;
      transform: translateY(0)
    }

    #btt:hover {
      background: linear-gradient(135deg, var(--teal), var(--green));
      transform: translateY(-4px) !important;
      box-shadow: 0 10px 25px rgba(29, 159, 200, .5)
    }

    /* ─── TOAST ─── */
    .toast {
      position: fixed;
      bottom: 32px;
      left: 50%;
      transform: translateX(-50%) translateY(20px);
      background: var(--navy);
      color: #fff;
      padding: 14px 28px;
      border-radius: 10px;
      font-size: 14px;
      font-weight: 500;
      opacity: 0;
      transition: all .4s;
      z-index: 99999;
      box-shadow: 0 8px 24px rgba(0, 0, 0, .25);
      pointer-events: none;
      display: flex;
      align-items: center;
      gap: 10px;
      white-space: nowrap
    }

    .toast.show {
      opacity: 1;
      transform: translateX(-50%) translateY(0)
    }

    .toast.success {
      background: #1b5e20
    }

    .toast.error {
      background: #b71c1c
    }

    /* ─── REVEAL ANIMATIONS ─── */
    .reveal {
      opacity: 0;
      transform: translateY(30px) scale(0.97);
      transition: opacity .8s var(--ease-out), transform .8s var(--ease-out)
    }

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

    .reveal-left {
      opacity: 0;
      transform: translateX(-36px);
      transition: opacity .8s var(--ease-out), transform .8s var(--ease-out)
    }

    .reveal-left.visible {
      opacity: 1;
      transform: translateX(0)
    }

    .reveal-right {
      opacity: 0;
      transform: translateX(36px);
      transition: opacity .8s var(--ease-out), transform .8s var(--ease-out)
    }

    .reveal-right.visible {
      opacity: 1;
      transform: translateX(0)
    }

    .delay-1 {
      transition-delay: .12s
    }

    .delay-2 {
      transition-delay: .24s
    }

    .delay-3 {
      transition-delay: .36s
    }

    .delay-4 {
      transition-delay: .48s
    }

    /* ─── RESPONSIVE ─── */
    @media(max-width:1100px) {
      .hero-wrap {
        grid-template-columns: 1fr 400px;
        gap: 40px
      }

      .hero-circle-wrapper,
      .hero-circle {
        width: 360px;
        height: 360px
      }

      .hero-circle-ring {
        width: 360px;
        height: 360px
      }
    }

    @media(max-width:1024px) {
      .hero-wrap {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .hero-right {
        display: flex;
        justify-content: center;
        padding-top: 20px;
      }

      .claims-grid,
      .tech-grid,
      .pricing-grid,
      .contact-grid,
      .dedicated-grid {
        grid-template-columns: 1fr;
        gap: 36px
      }

      .service-grid {
        grid-template-columns: 1fr 1fr
      }

      .stat-cards {
        grid-template-columns: 1fr
      }

      .testi-grid {
        grid-template-columns: 1fr
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr
      }

      .faq-container {
        grid-template-columns: 1fr
      }

      .nav-links,
      .btn-expert {
        display: none
      }

      .hamburger {
        display: flex
      }

      .score-row {
        gap: 12px
      }

      .faq-img {
        display: none
      }
    }

    @media(max-width:768px) {
      .topbar {
        padding: 5px 0
      }

      .topbar-inner {
        padding: 0 14px;
        justify-content: space-between;
        align-items: center
      }

      .topbar-left {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        gap: 8px;
        font-size: 11.5px
      }

      .topbar-badge,
      .topbar-right,
      .topbar a[href^="mailto"] {
        display: none !important
      }

      .hero {
        padding-top: 30px !important
      }

      .nav-wrap {
        height: 54px;
        padding: 0 14px
      }

      .service-grid {
        grid-template-columns: 1fr 1fr
      }

      .testi-grid {
        grid-template-columns: 1fr
      }

      .stat-cards {
        grid-template-columns: 1fr 1fr
      }

      .pricing-grid {
        grid-template-columns: 1fr
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr;
        display: grid
      }

      .hero h1 {
        font-size: clamp(22px, 5.5vw, 32px)
      }

      .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px
      }

      .contact-form-box {
        padding: 24px 18px
      }

      .cf-row {
        grid-template-columns: 1fr
      }

      .footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px
      }

      .city-tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch
      }

      .city-tab {
        white-space: nowrap;
        flex-shrink: 0
      }

      .usa-map {
        width: 100%;
        height: auto
      }

      .map-box {
        padding: 20px 12px
      }

      .map-stat-pill {
        position: static;
        width: 100%;
        margin-bottom: 8px;
        justify-content: center
      }
    }

    @media(max-width:640px) {
      .hero {
        padding-top: 25px !important
      }

      .hero-circle-wrapper,
      .hero-circle,
      .hero-circle-ring {
        width: 300px;
        height: 300px;
      }

      .hero-float {
        display: none;
      }

      .service-grid {
        grid-template-columns: 1fr
      }

      .stat-cards {
        grid-template-columns: 1fr
      }

      .footer-inner {
        grid-template-columns: 1fr;
        gap: 20px
      }

      .checklist-grid {
        grid-template-columns: 1fr
      }

      .score-row {
        flex-direction: column
      }

      .section,
      .dedicated-section,
      .challenges-section,
      .trust-section,
      .nationwide,
      .pricing-section,
      .testi-section,
      .faq-section {
        padding: 40px 14px
      }

      .tech-section,
      .contact-section,
      .claims-section {
        padding: 40px 14px
      }

      .hero-fields {
        flex-direction: column
      }

      .stats-inner {
        grid-template-columns: 1fr 1fr;
        gap: 12px
      }

      .stat-item {
        flex-direction: column;
        text-align: center;
        gap: 6px
      }

      .challenge-form {
        grid-template-columns: 1fr
      }

      .cf-row {
        grid-template-columns: 1fr
      }

      .savings-table {
        overflow-x: auto;
        display: block
      }

      .pricing-card {
        padding: 24px 18px
      }

      .price-rate {
        font-size: 40px
      }

      .challenge-box {
        padding: 20px 16px
      }

      .cta-banner {
        padding: 36px 14px
      }

      .pop-modal {
        padding: 24px 16px;
        max-width: 95vw;
        max-height: 88vh;
        overflow-y: auto
      }

      .pop-grid {
        grid-template-columns: 1fr
      }
    }

    @media(max-width:480px) {

      .hero-circle-wrapper,
      .hero-circle,
      .hero-circle-ring {
        width: 250px;
        height: 250px;
      }

      .topbar {
        padding: 4px 0
      }

      .topbar-left {
        flex-direction: row;
        justify-content: space-between;
        width: 100%;
        font-size: 11px
      }

      .hero {
        padding-top: 20px !important
      }

      .hero h1 {
        font-size: 22px;
        line-height: 1.25
      }

      .hero-desc {
        font-size: 13px
      }

      .hero-actions {
        flex-direction: column !important;
        align-items: center !important;
        gap: 12px !important;
      }
      .hero-actions a,
      .hero-actions button {
        width: 100% !important;
        max-width: 320px !important;
        text-align: center !important;
        margin: 0 !important;
      }

      .cta-pills {
        flex-direction: column;
        align-items: center
      }

      .hero-trust {
        flex-wrap: wrap;
        gap: 6px
      }

      .stats-inner {
        grid-template-columns: 1fr
      }

      .testi-grid {
        grid-template-columns: 1fr
      }

      .section-h2 {
        font-size: 20px
      }

      .contact-items {
        gap: 10px
      }

      .nav-wrap {
        padding: 0 12px;
        height: 52px
      }

      .logo-main {
        font-size: 15px
      }

      .logo img {
        width: 36px;
        height: 36px
      }

      .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 6px
      }

      .score-row {
        flex-direction: column
      }

      .tech-badge {
        left: 6px;
        padding: 8px 10px
      }

      .calc-box {
        padding: 16px 12px
      }

      .calc-val {
        font-size: 17px
      }

      .btn-book,
      .btn-expert,
      .btn-cta,
      .btn-send-challenge,
      .btn-send-form,
      .btn-pop-book {
        width: 100%;
        font-size: 13px;
        padding: 11px 14px
      }
    }

    @media(max-width:360px) {
      .hero h1 {
        font-size: 20px
      }

      .section-h2 {
        font-size: 18px
      }

      .logo-main {
        font-size: 14px
      }

      .pop-modal {
        padding: 20px 12px
      }
    }

    /* ─── SCROLL PROGRESS BAR ─── */
    #scrollProgress {
      position: fixed;
      top: 0;
      left: 0;
      height: 3.5px;
      background: linear-gradient(90deg, var(--blue), var(--teal), var(--green));
      z-index: 10001;
      width: 0%;
      transition: width .1s linear;
      box-shadow: 0 0 10px rgba(29, 159, 200, .8)
    }

    /* ─── HERO CANVAS MESH ─── */
    #heroCanvas {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 1;
      opacity: .65
    }

    /* ─── SPOTLIGHT BEAM ─── */
    .spotlight-box {
      position: relative;
      overflow: hidden
    }

    .spotlight-beam {
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(400px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(29, 159, 200, .14), transparent 80%);
      opacity: 0;
      transition: opacity .3s ease
    }

    .spotlight-box:hover .spotlight-beam {
      opacity: 1
    }

    /* ─── TILT GLARE SHEEN & TRAVELLING CARD LIGHT ─── */
    .tilt-card {
      transform-style: preserve-3d;
      perspective: 1000px;
      will-change: transform;
      transition: transform .2s var(--ease-out);
      position: relative;
      overflow: hidden
    }

    .tilt-glare {
      position: absolute;
      inset: 0;
      pointer-events: none;
      border-radius: inherit;
      background: linear-gradient(135deg, rgba(255, 255, 255, .28) 0%, transparent 55%);
      opacity: 0;
      transition: opacity .3s ease;
      z-index: 5
    }

    .service-card::after,
    .pricing-card::after,
    .stat-card::after,
    .testi-card::after {
      content: '';
      position: absolute;
      inset: -1px;
      border-radius: inherit;
      padding: 1.5px;
      background: linear-gradient(135deg, transparent, rgba(41, 187, 216, .6), transparent);
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      opacity: 0;
      transition: opacity .35s ease;
      pointer-events: none
    }

    .service-card:hover::after,
    .pricing-card:hover::after,
    .stat-card:hover::after,
    .testi-card:hover::after {
      opacity: 1
    }

    /* ─── RIPPLE EFFECT ─── */
    .ripple-host {
      position: relative;
      overflow: hidden
    }

    .ripple-wave {
      position: absolute;
      border-radius: 50%;
      background: rgba(255, 255, 255, .4);
      transform: scale(0);
      animation: ripple .6s linear;
      pointer-events: none
    }

    @keyframes ripple {
      to {
        transform: scale(4);
        opacity: 0
      }
    }

    /* ─── REVENUE CALCULATOR SLIDER GLOW TRACK ─── */
    .calc-box {
      background: #fff;
      border-radius: 20px;
      padding: 26px;
      border: 1px solid rgba(29, 159, 200, .2);
      margin-bottom: 20px;
      box-shadow: 0 10px 30px rgba(26, 95, 168, .08)
    }

    .calc-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px
    }

    .calc-title {
      font-size: 14.5px;
      font-weight: 700;
      color: var(--text);
      display: flex;
      align-items: center;
      gap: 8px
    }

    .calc-val {
      font-family: 'Sora', sans-serif;
      font-size: 23px;
      font-weight: 800;
      color: var(--blue);
      text-shadow: 0 2px 10px rgba(29, 159, 200, .15)
    }

    .calc-slider {
      width: 100%;
      accent-color: var(--teal);
      height: 10px;
      cursor: pointer;
      border-radius: 5px;
      background: #e2f2fb;
      outline: none;
      transition: all .2s ease
    }

    .calc-slider::-webkit-slider-thumb {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: var(--teal-light);
      border: 3px solid #fff;
      box-shadow: 0 4px 12px rgba(41, 187, 216, .6);
      cursor: pointer;
      transition: transform .2s ease
    }

    .calc-slider::-webkit-slider-thumb:hover {
      transform: scale(1.2)
    }

    /* ─── FULL-WIDTH HIGH-DEF USA STATE MAP STYLING ─── */
    .map-box {
      background: linear-gradient(145deg, #040a1c 0%, #0a183d 50%, #061230 100%);
      border-radius: 28px;
      padding: 40px 24px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, .45), inset 0 0 2px rgba(255, 255, 255, .2);
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(41, 187, 216, .4);
      margin-top: 28px;
      display: flex;
      flex-direction: column;
      align-items: center
    }

    .map-stat-pill {
      position: absolute;
      background: linear-gradient(135deg, #29bbd8, #1d9fc8);
      color: #060e22;
      font-family: 'Sora', sans-serif;
      font-size: 14px;
      font-weight: 800;
      padding: 10px 22px;
      border-radius: 12px;
      box-shadow: 0 8px 25px rgba(41, 187, 216, .5);
      z-index: 10;
      display: flex;
      align-items: center;
      gap: 8px
    }

    .map-stat-pill.top-right {
      top: 24px;
      right: 28px
    }

    .map-stat-pill.bottom-right {
      bottom: 24px;
      right: 28px;
      background: rgba(13, 27, 75, .92);
      color: #fff;
      border: 1.5px solid rgba(41, 187, 216, .5);
      box-shadow: 0 8px 25px rgba(0, 0, 0, .45)
    }

    .map-stat-pill.top-left {
      top: 24px;
      left: 28px;
      background: rgba(13, 27, 75, .92);
      color: #fff;
      border: 1.5px solid rgba(41, 187, 216, .5)
    }

    .state-shape {
      fill: #0b1e4c;
      stroke: rgba(255, 255, 255, .28);
      stroke-width: 1.2;
      transition: all .3s var(--ease-out);
      cursor: pointer
    }

    .state-shape:hover,
    .state-shape.active {
      fill: url(#stateHighlight);
      stroke: #29bbd8;
      stroke-width: 2;
      filter: drop-shadow(0 0 10px rgba(41, 187, 216, .7))
    }

    .map-arc {
      animation: arcDash 3s linear infinite
    }

    @keyframes arcDash {
      to {
        stroke-dashoffset: -28
      }
    }

    .map-node {
      fill: #29bbd8;
      filter: drop-shadow(0 0 6px #29bbd8);
      transition: transform .3s ease
    }

    .map-node:hover {
      transform: scale(1.4)
    }

    @media(max-width:768px) {

      .map-stat-pill.top-right,
      .map-stat-pill.bottom-right,
      .map-stat-pill.top-left {
        position: static;
        margin-bottom: 12px
      }

      .map-box {
        padding: 24px 12px
      }
    }

    /* ─── POPUP BOOKING MODAL (SPRING CURVE PHYSICS) ─── */
    .pop-overlay {
      position: fixed;
      inset: 0;
      background: rgba(4, 10, 28, .78);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      z-index: 99990;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity .45s var(--ease-out), visibility .45s var(--ease-out)
    }

    .pop-overlay.show {
      opacity: 1;
      visibility: visible
    }

    .pop-modal {
      background: linear-gradient(145deg, #0b1842 0%, #13285c 60%, #092047 100%);
      border: 1.5px solid rgba(41, 187, 216, .45);
      border-radius: 24px;
      padding: 42px 38px;
      max-width: 580px;
      width: 100%;
      color: #fff;
      position: relative;
      box-shadow: 0 30px 70px rgba(0, 0, 0, .5), 0 0 50px rgba(41, 187, 216, .25);
      transform: scale(.92) translateY(24px);
      transition: transform .45s cubic-bezier(0.16, 1, 0.3, 1)
    }

    .pop-overlay.show .pop-modal {
      transform: scale(1) translateY(0)
    }

    .pop-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .2);
      color: #fff;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .25s ease
    }

    .pop-close:hover {
      background: #e74c3c;
      border-color: #e74c3c;
      transform: rotate(90deg) scale(1.1)
    }

    .pop-header {
      text-align: center;
      margin-bottom: 24px
    }

    .pop-title {
      font-family: 'Sora', sans-serif;
      font-size: clamp(20px, 3vw, 26px);
      font-weight: 800;
      line-height: 1.25;
      color: #fff;
      margin-bottom: 10px
    }

    .pop-subtitle {
      font-size: 13.5px;
      color: rgba(255, 255, 255, .82);
      line-height: 1.6
    }

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

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

    .pop-field label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .05em;
      color: rgba(255, 255, 255, .75)
    }

    .pop-field input,
    .pop-field select {
      width: 100%;
      background: rgba(255, 255, 255, .09);
      border: 1.5px solid rgba(255, 255, 255, .18);
      border-radius: 8px;
      padding: 11px 14px;
      font-size: 14px;
      color: #fff;
      font-family: inherit;
      outline: none;
      transition: all .25s ease
    }

    .pop-field select option {
      background: var(--navy);
      color: #fff
    }

    .pop-field input::placeholder {
      color: rgba(255, 255, 255, .4)
    }

    .pop-field input:focus,
    .pop-field select:focus {
      border-color: var(--teal-light);
      background: rgba(255, 255, 255, .16);
      box-shadow: 0 0 0 3px rgba(41, 187, 216, .3)
    }

    .btn-pop-book {
      width: 100%;
      background: linear-gradient(135deg, var(--green), var(--green-dark));
      color: #fff;
      border: none;
      padding: 14px;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      font-family: inherit;
      transition: all .3s var(--ease-out);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      box-shadow: 0 6px 20px rgba(74, 124, 69, .35)
    }

    .btn-pop-book:hover {
      background: linear-gradient(135deg, var(--blue), var(--teal));
      transform: translateY(-2px) scale(1.02);
      box-shadow: 0 10px 28px rgba(29, 159, 200, .45);
      color: #fff
    }

    @media(max-width:580px) {
      .pop-grid {
        grid-template-columns: 1fr
      }

      .pop-modal {
        padding: 30px 20px
      }
    }

/* ─── HERO SECTION ─── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--light);
}

.hero-wrap {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 40px 20px;
  margin: 0 auto;
}

.hero-wrap > div:first-child {
  flex: 1;
  max-width: 600px;
}

.hero-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(26, 95, 168, 0.1);
  color: var(--blue);
  border-radius: 30px;
  font-weight: 600;
  margin-bottom: 20px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.hero-badge span {
  color: var(--teal);
}

.hero h1 {
  font-size: 3.5rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: var(--navy);
  text-shadow: 0 2px 10px rgba(255, 255, 255, 0.8);
}

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

.hero-desc {
  font-size: 1.2rem;
  color: var(--gray);
  margin-bottom: 30px;
  line-height: 1.6;
}

.hero-form {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(26, 95, 168, 0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}

.hero-fields {
  display: flex;
  gap: 10px;
}

.hero-fields input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid rgba(26, 95, 168, 0.2);
  border-radius: 10px;
  font-family: inherit;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: all 0.3s;
}

.hero-fields input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(26, 95, 168, 0.1);
}

.btn-book {
  padding: 15px;
  background: var(--blue);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: var(--shadow);
}

.btn-book:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(10px);
  padding: 10px 20px;
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  width: fit-content;
}

.trust-avatars {
  display: flex;
}

.trust-av {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: 2px solid white;
  margin-left: -15px;
}
.trust-av:first-child { margin-left: 0; }
.trust-av:nth-child(2) { background: var(--teal); }
.trust-av:nth-child(3) { background: var(--green); }
.trust-av:nth-child(4) { background: var(--navy); }

.trust-text {
  font-size: 0.95rem;
  color: var(--navy);
}

.hero-right {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  position: relative;
}

.hero-circle-wrapper {
  position: relative;
  width: 450px;
  height: 450px;
}

.hero-circle {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 10px solid rgba(255,255,255,0.4);
  box-shadow: 0 20px 50px rgba(26, 95, 168, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

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

.hero-circle-ring {
  position: absolute;
  width: 110%;
  height: 110%;
  top: -5%;
  left: -5%;
  animation: spin 20s linear infinite;
  pointer-events: none;
}
.hero-circle-ring text {
  font-size: 14px;
  font-weight: bold;
  fill: var(--blue);
  letter-spacing: 2px;
}

.hero-float {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(10px);
  padding: 12px 20px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  border: 1px solid rgba(255,255,255,0.5);
  animation: float 6s ease-in-out infinite;
}

.hero-float:nth-child(2) { top: 10%; left: -10%; animation-delay: 0s; }
.hero-float:nth-child(3) { bottom: 20%; left: -20%; animation-delay: 2s; }
.hero-float:nth-child(4) { bottom: 10%; right: -5%; animation-delay: 4s; }

.fi {
  width: 45px;
  height: 45px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: white;
}
.fi.blue { background: var(--blue); }
.fi.green { background: var(--green); }
.fi.teal { background: var(--teal); }

.ftext {
  display: flex;
  flex-direction: column;
}
.ftext strong { font-size: 1.1rem; color: var(--navy); }
.ftext span { font-size: 0.85rem; color: var(--gray); }

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

@media (max-width: 992px) {
  .hero-wrap {
    flex-direction: column;
    text-align: center;
    padding-top: 100px;
  }
  .hero-right {
    margin-top: 50px;
    justify-content: center;
  }
  .hero-fields {
    flex-direction: column;
  }
  .hero-trust {
    margin: 0 auto;
  }
}

/* ─── NEW SPLIT HERO SECTION ─── */
.split-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  padding: 40px 5% 80px;
  overflow: hidden;
  background: transparent;
}
.split-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content-left {
  flex: 1;
  max-width: 600px;
}
.hero-content-left h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 24px;
}
.hero-content-left h1 em {
  color: var(--blue);
  font-style: normal;
  position: relative;
}
.hero-actions {
  display: flex;
  gap: 20px;
  margin-top: 40px;
}
.btn-outline {
  padding: 16px 32px;
  border: 2px solid var(--blue);
  color: var(--blue);
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: all .3s;
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
}

/* Hero Image Right */
.hero-image-right {
  flex: 1;
  position: relative;
}
.modern-image-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: visible;
}
.modern-image-wrapper img {
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: block;
  width: 100%;
}
.glass-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  padding: 16px 24px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(26, 95, 168, 0.15);
  border: 1px solid rgba(255,255,255,0.5);
  animation: float 6s ease-in-out infinite;
}
.gc-1 { top: 10%; left: -15%; animation-delay: 0s; }
.gc-2 { bottom: 20%; left: -10%; animation-delay: 1s; }
.gc-3 { bottom: -10%; right: 10%; animation-delay: 2s; }
.gc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: white;
}
.gc-icon.blue { background: var(--blue); }
.gc-icon.teal { background: var(--teal); }
.gc-icon.green { background: var(--green); }
.gc-text strong { display: block; color: var(--navy); font-size: 1.1rem; }
.gc-text span { color: var(--gray); font-size: 0.9rem; }

/* ─── BOOKING MODAL ─── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  z-index: 999999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}
.modal-content {
  background: white;
  padding: 40px;
  border-radius: 24px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: all 0.3s;
  box-shadow: var(--shadow-lg);
}
.modal-overlay.active .modal-content {
  transform: translateY(0);
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--gray);
  cursor: pointer;
}
.modal-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}
.modal-form input {
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 16px;
}
.modal-form .btn-book {
  background: var(--blue);
  color: white;
  padding: 16px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
}
/* ─── TRUST & COMPLIANCE BAR ─── */
.trust-bar {
  background: white;
  box-shadow: var(--shadow);
  margin-top: -30px;
  position: relative;
  z-index: 10;
  border-radius: 12px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.trust-bar .stats-inner {
  display: flex;
  justify-content: space-between;
  padding: 30px;
  flex-wrap: wrap;
  gap: 20px;
}
.trust-bar .stat-item {
  display: flex;
  align-items: center;
  gap: 15px;
}
.trust-bar .stat-icon {
  background: rgba(26, 95, 168, 0.1);
  color: var(--blue);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.trust-bar .stat-text {
  display: flex;
  flex-direction: column;
}
.trust-bar .stat-text strong {
  font-size: 16px;
  color: var(--dark);
}
.trust-bar .stat-text span {
  font-size: 14px;
  color: var(--gray);
}

/* ─── SPECIALTIES SECTION ─── */
.specialties-section {
  background: var(--light);
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  margin-top: 50px;
}
.spec-card {
  background: white;
  padding: 30px;
  border-radius: 16px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  border: 1px solid transparent;
}
.spec-card:hover {
  transform: translateY(-5px);
  border-color: rgba(26, 95, 168, 0.2);
  box-shadow: var(--shadow-lg);
}
.spec-icon {
  background: var(--blue);
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
}
.spec-card h3 {
  font-size: 20px;
  color: var(--dark);
  margin-bottom: 15px;
}
.spec-card p {
  color: var(--gray);
  line-height: 1.6;
}

/* ─── BENEFITS SECTION ─── */
.benefits-section {
  background: white;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-top: 50px;
}
.benefit-row {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: var(--light);
  padding: 30px;
  border-radius: 16px;
  transition: all 0.3s;
}
.benefit-row:hover {
  background: rgba(26, 95, 168, 0.05);
}
.benefit-icon {
  background: white;
  color: var(--blue);
  width: 70px;
  height: 70px;
  min-width: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: var(--shadow);
}
.benefit-text h3 {
  font-size: 20px;
  margin-bottom: 10px;
  color: var(--dark);
}
.benefit-text p {
  color: var(--gray);
  line-height: 1.6;
}

/* ─── AUDIT CTA BANNER ─── */
.audit-cta {
  background: linear-gradient(135deg, var(--blue), #0d3b6b);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.audit-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://www.transparenttextures.com/patterns/cubes.png');
  opacity: 0.1;
}
.audit-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}
.audit-content h2 {
  color: white;
  font-size: 36px;
  margin-bottom: 20px;
}
.audit-content p {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 30px;
  line-height: 1.6;
}
.audit-content .btn-book {
  background: white;
  color: var(--blue);
  font-size: 18px;
  padding: 18px 40px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-weight: 700;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
  transition: all 0.3s;
}
.audit-content .btn-book:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
/* ─── BENTO GRID SERVICES ─── */
.bento-section {
  background-color: var(--light);
  padding: 80px 0;
}
.bento-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 20px;
  margin-top: 40px;
}
.bento-card {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
}
.bento-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(26, 95, 168, 0.3);
}
.bento-large {
  grid-column: span 2;
  grid-row: span 2;
  background: linear-gradient(135deg, #1a5fa8, #104175);
  color: white;
}
.bento-large .bc-title, .bento-large .bc-desc {
  color: white;
}
.bento-large .bc-icon {
  background: rgba(255,255,255,0.2);
  color: white;
}
.bento-wide {
  grid-column: span 1;
  grid-row: span 1;
}
.bc-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: rgba(26, 95, 168, 0.1);
  color: var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.bento-card:hover .bc-icon {
  transform: scale(1.1);
}
.bc-title {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--dark);
}
.bc-desc {
  color: var(--gray);
  line-height: 1.6;
  font-size: 15px;
}

@media (max-width: 992px) {
  .bento-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .bento-large {
    grid-column: span 1;
    grid-row: span 1;
  }
}

/* ─── HERO BACKGROUND MASK ─── */
.split-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 55%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,1) 80%, rgba(255,255,255,0));
  z-index: 0;
  pointer-events: none;
}
.hero-content-left {
  position: relative;
  z-index: 1;
}

@media (max-width: 992px) {
  .split-hero {
    padding: 60px 24px 60px;
    min-height: auto;
  }
  .split-hero::before {
    width: 100%;
    background: linear-gradient(to bottom, rgba(255,255,255,1) 70%, rgba(255,255,255,0));
  }
  .split-wrap {
    flex-direction: column;
    gap: 40px;
  }
  .hero-content-left {
    max-width: 100%;
    text-align: center;
  }
  .hero-content-left h1 {
    font-size: clamp(28px, 6vw, 42px);
    line-height: 1.2;
    margin-bottom: 20px;
  }
  .hero-content-left .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 15px;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-image-right {
    width: 100%;
    display: flex;
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .glass-card {
    display: none !important;
  }
  .footer-inner {
    grid-template-columns: 1fr !important;
  }
}
/* ─── ADVANTAGE SECTION ─── */
.advantage-section {
  padding: 100px 0;
  background-color: var(--light);
}
.advantage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.adv-text {
  order: 2; /* Forces text to the right side */
}
.adv-img {
  order: 1; /* Forces image to the left side */
  position: relative;
}
.adv-img-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.adv-img img {
  width: 100%;
  height: auto;
  display: block;
}
.experience-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: white;
  padding: 20px 30px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 15px;
  border-left: 5px solid var(--blue);
  z-index: 2;
}
.exp-num {
  font-size: 36px;
  font-weight: 800;
  color: var(--blue);
}
.exp-text {
  font-size: 14px;
  color: var(--dark);
  font-weight: 600;
  line-height: 1.3;
}
.adv-text h2 {
  font-size: 36px;
  color: var(--dark);
  margin: 15px 0 20px;
  line-height: 1.2;
}
.adv-text h2 em {
  color: var(--blue);
  font-style: normal;
}
.adv-text p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 30px;
}
.adv-list {
  list-style: none;
  padding: 0;
  margin: 0 0 40px;
}
.adv-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 20px;
}
.adv-icon {
  background: rgba(26, 95, 168, 0.1);
  color: var(--blue);
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 5px;
}
.adv-content strong {
  display: block;
  font-size: 18px;
  color: var(--dark);
  margin-bottom: 5px;
}
.adv-content span {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.5;
}
.adv-text .btn-demo {
  background: var(--blue);
  color: white;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.adv-text .btn-demo:hover {
  background: #13467c;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

@media (max-width: 992px) {
  .advantage-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .adv-text {
    order: 1; /* Reset order on mobile */
  }
  .adv-img {
    order: 2;
  }
  .experience-badge {
    right: 20px;
    bottom: 20px;
  }
}
/* --- ENHANCED HOVER EFFECTS & ANIMATIONS --- */

.bento-card {
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 20px 40px rgba(13, 11, 97, 0.15);
  border-color: var(--teal);
}
.bento-card .bc-icon {
  transition: all 0.4s ease;
}
.bento-card:hover .bc-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--teal);
  color: #fff;
  box-shadow: 0 0 15px rgba(20, 184, 166, 0.5);
}

.spec-card {
  transition: all 0.4s ease;
}
.spec-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(13, 11, 97, 0.12);
}
.spec-card .spec-icon {
  transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
.spec-card:hover .spec-icon {
  transform: scale(1.15) translateY(-5px);
  color: var(--teal);
}

.benefit-row {
  transition: all 0.3s ease;
}
.benefit-row:hover {
  transform: translateX(10px);
  background: rgba(248, 250, 252, 0.8);
  border-radius: 12px;
}
.benefit-row:hover .benefit-icon {
  transform: scale(1.1);
  color: var(--teal);
}

/* Button enhancements */
.btn-book, .btn-expert, .btn-demo {
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-book::after, .btn-expert::after, .btn-demo::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: all 0.5s ease;
  z-index: -1;
}
.btn-book:hover::after, .btn-expert:hover::after, .btn-demo:hover::after {
  left: 100%;
}
.btn-book:hover, .btn-expert:hover, .btn-demo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(13, 11, 97, 0.25);
}
/* --- PREMIUM SPLIT MODAL --- */
.premium-modal {
  padding: 0 !important;
  max-width: 900px !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: hidden;
  border-radius: 20px;
}
.modal-split {
  display: flex;
  background: white;
  min-height: 500px;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(13, 11, 97, 0.25);
}
.modal-left {
  flex: 1;
  background: linear-gradient(135deg, rgba(13, 11, 97, 0.9), rgba(20, 184, 166, 0.8)), url('assets/about.png') center/cover;
  padding: 50px;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-left-content h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: white;
  line-height: 1.2;
}
.modal-left-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 30px;
}
.modal-features {
  list-style: none;
  padding: 0;
  margin: 0;
}
.modal-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 16px;
  font-weight: 500;
}
.modal-features li i {
  color: #5EEAD4;
  font-size: 20px;
}
.modal-right {
  flex: 1.2;
  padding: 50px;
  background: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.modal-right h3 {
  font-size: 28px;
  color: var(--navy);
  margin-bottom: 10px;
}
.modal-right p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 15px;
}
.modal-form .input-group {
  margin-bottom: 20px;
  text-align: left;
}
.modal-form .input-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}
.modal-form .input-group label i {
  color: var(--teal);
  margin-right: 5px;
}
.modal-form input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  background: var(--light);
  transition: all 0.3s ease;
  color: var(--text);
}
.modal-form input:focus {
  outline: none;
  border-color: var(--teal);
  background: white;
  box-shadow: 0 0 0 4px rgba(20, 184, 166, 0.1);
}
.modal-right .btn-book {
  width: 100%;
  padding: 16px;
  font-size: 16px;
  margin-top: 10px;
  border-radius: 8px;
}
.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 10;
  background: white;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  transition: all 0.3s ease;
}
.modal-close:hover {
  background: var(--teal);
  color: white;
  transform: rotate(90deg);
}

@media (max-width: 768px) {
  .modal-overlay {
    align-items: flex-start !important;
    padding: 20px 10px !important;
    overflow-y: auto !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }
  .modal-content {
    margin: 20px auto !important;
    width: 100% !important;
    max-width: 550px !important;
  }
  .modal-overlay.active .modal-content {
    transform: none !important;
  }
  .modal-split {
    flex-direction: column;
  }
  .modal-close {
    position: fixed !important;
    top: 15px !important;
    right: 15px !important;
    background: white !important;
    color: var(--navy) !important;
    z-index: 9999 !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2) !important;
  }
  .hero-actions {
    flex-direction: column !important;
    align-items: center !important;
    gap: 12px !important;
  }
  .hero-actions a,
  .hero-actions button {
    width: 100% !important;
    max-width: 320px !important;
    text-align: center !important;
    margin: 0 !important;
  }
}