:root {
      --indigo: #27187e;
      --indigo-dark: #1a105a;
      --indigo-mid: #1e1465;
      --indigo-hover: #32209e;
      --blue: #758bfd;
      --blue-light: #9aaafe;
      --periwinkle: #aeb8fe;
      --periwinkle-bg: #eef0ff;
      --platinum: #f1f2f6;
      --orange: #ff8600;
      --orange-light: #ffa033;
      --orange-pale: #fff4e6;
      --white: #fff;
      --text-dark: #0f0d2e;
      --text-body: #3d3a6b;
      --text-muted: #6e6a9e;
      --text-dim: #9d9abe;
      --border: #dddff0;
      --border-light: #eceef8;
      --green: #10b981;
      --red: #ef4444;
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 22px;
      --radius-xl: 32px;
      --shadow-sm: 0 2px 8px rgba(39, 24, 126, 0.07);
      --shadow-md: 0 6px 24px rgba(39, 24, 126, 0.10);
      --shadow-lg: 0 16px 48px rgba(39, 24, 126, 0.13);
      --shadow-blue: 0 8px 32px rgba(117, 139, 253, 0.25);
      --shadow-ora: 0 8px 32px rgba(255, 134, 0, 0.30);
      --font-display: 'Poppins', sans-serif;
      --font-body: 'Poppins', sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
      overflow-x: hidden;
      max-width: 100vw;
    }

    body {
      font-family: var(--font-body);
      background: var(--white);
      color: var(--text-body);
      line-height: 1.65;
      overflow-x: clip;
      max-width: 100vw;
    }

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

    ul {
      list-style: none;
      padding: 0;
    }

    img {
      max-width: 100%;
      height: auto;
    }

    .s-label {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: .72rem;
      font-weight: 700;
      letter-spacing: .13em;
      text-transform: uppercase;
      color: var(--blue);
      margin-bottom: 14px;
    }

    .s-label::before {
      content: '';
      display: inline-block;
      width: 20px;
      height: 2px;
      background: var(--blue);
      border-radius: 2px;
    }

    .s-title {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3.2vw, 2.4rem);
      font-weight: 500;
      color: var(--text-dark);
      line-height: 1.2;
      margin-bottom: 16px;
    }

    .s-title span {
      color: var(--orange);
    }

    .s-title em {
      font-style: normal;
      color: var(--indigo);
    }

    .s-sub {
      font-size: 1.05rem;
      color: var(--text-muted);

      line-height: 1.75;
    }

    .btn-s {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-family: var(--font-body);
      font-weight: 700;
      font-size: .95rem;
      padding: 13px 26px;
      border-radius: var(--radius-sm);
      border: none;
      cursor: pointer;
      transition: transform .18s, box-shadow .18s, background .18s;
      white-space: nowrap;
      text-decoration: none;
    }

    .btn-s:hover {
      transform: translateY(-2px);
    }

    .btn-primary {
      background: var(--orange);
      color: var(--white);
      box-shadow: var(--shadow-ora);
    }

    .btn-primary:hover {
      background: var(--orange-light);
      color: var(--white);
    }

    .btn-indigo {
      background: var(--indigo);
      color: var(--white);
      box-shadow: 0 6px 24px rgba(39, 24, 126, .3);
    }

    .btn-indigo:hover {
      background: var(--indigo-hover);
      color: var(--white);
    }

    .btn-outline {
      background: transparent;
      color: var(--indigo);
      border: 2px solid var(--border);
    }

    .btn-outline:hover {
      border-color: var(--blue);
      color: var(--blue);
    }

    .btn-wa {
      background: #25D366;
      color: var(--white);
      box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
    }

    .btn-wa:hover {
      background: #1ebe5d;
      color: var(--white);
    }

    .btn-white-s {
      background: var(--white);
      color: var(--indigo);
      box-shadow: var(--shadow-md);
    }

    .btn-white-s:hover {
      box-shadow: var(--shadow-lg);
      color: var(--indigo);
    }

    .btn-lg {
      padding: 16px 34px;
      font-size: 1.02rem;
      border-radius: 10px;
    }

    .btn-full {
      width: 100%;
    }

    .urgency-bar {
      background: var(--indigo);
      color: rgba(255, 255, 255, .9);
      text-align: center;
      padding: 10px 20px;
      font-size: .83rem;
      font-weight: 600;
      letter-spacing: .02em;
    }

    .urgency-bar strong {
      color: var(--orange-light);
    }

    .urgency-bar i {
      color: var(--orange);
      margin-right: 6px;
    }

    .navbar-top {
      position: sticky;
      top: 0;
      z-index: 999;
      background: rgba(255, 255, 255, .97);
      backdrop-filter: blur(14px);
      border-bottom: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      height: 68px;
    }

    .logo {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--indigo);
      letter-spacing: -.01em;
    }

    .logo span {
      color: var(--orange);
    }

    .logo sub {
      font-size: .5rem;
      font-weight: 700;
      letter-spacing: .08em;
      color: var(--blue);
      vertical-align: super;
      margin-left: 4px;
      text-transform: uppercase;
    }

    .nav-phone {
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      font-size: .75rem;
      color: var(--text-muted);
      line-height: 1.3;
      margin-right: 6px;
    }

    .nav-phone strong {
      color: var(--indigo);
      font-size: .95rem;
    }

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

    @media(max-width:640px) {
      .nav-btns {
        display: none !important;
      }
    }

    .hero {
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      right: 0;
      width: 55%;
      height: 100%;
      clip-path: polygon(12% 0, 100% 0, 100% 100%, 0% 100%);
      z-index: 0;
    }

    @media(max-width:991px) {
      .hero::before {
        width: 100%;
        clip-path: none;
        opacity: .5;
      }
    }

    .hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(var(--periwinkle) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: .18;
      z-index: 0;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      padding: 100px 0 70px;
    }

    .hero-left {
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .hero-right {
      position: relative;
      z-index: 2;
      display: flex;
      justify-content: center;
      padding-top: 100px;
    }

    .hero-img-frame {
      position: relative;
      width: 100%;
    }

    .hero-main-img {
      width: 100%;
      height: 500px;
      object-fit: cover;
      border-radius: 20px 20px 0 0;
      display: block;
      box-shadow: -8px 12px 48px rgba(39, 24, 126, .18);
    }

    @media(max-width:991px) {
      .hero-right {
        order: -1;
        padding-top: 50px;
      }

      .hero-main-img {
        height: 300px;
      }

      .hero-content {
        padding: 40px 0 60px;
        text-align: center;
      }

      .hero-ctas,
      .hero-trust,
      .hero-badges {
        justify-content: center !important;
      }
    }

    .hf-card-a {
      position: absolute;
      left: -22px;
      background: var(--white);
      border-radius: 14px;
      padding: 14px 18px;
      box-shadow: 0 8px 32px rgba(39, 24, 126, .14);
      display: flex;
      align-items: center;
      gap: 12px;
      animation: floatY 3s ease-in-out infinite;
      z-index: 5;
      border: 1px solid var(--border-light);
    }

    @media (max-width: 991px) {
      .hf-card-a {
        bottom: 20px;
      }
    }

    .hf-card-b {
      position: absolute;
      top: 100px;
      right: 6px;
      background: var(--orange);
      border-radius: 14px;
      padding: 12px 18px;
      box-shadow: var(--shadow-ora);
      animation: floatY 3.6s ease-in-out infinite reverse;
      z-index: 5;
    }



    @keyframes floatY {

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

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

    .hf-stars {
      color: var(--orange);
      font-size: .82rem;
    }

    .hf-score {
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--indigo);
      line-height: 1;
    }

    .hf-lbl {
      font-size: .7rem;
      color: var(--text-muted);
    }

    .hf-b-val {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 800;
      color: #fff;
      line-height: 1;
    }

    .hf-b-lbl {
      font-size: .68rem;
      font-weight: 700;
      color: rgba(255, 255, 255, .8);
      text-transform: uppercase;
      letter-spacing: .1em;
    }

    .hero-eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: var(--white);
      border: 1.5px solid var(--periwinkle);
      border-radius: 100px;
      padding: 6px 16px 6px 8px;
      margin-bottom: 24px;
      box-shadow: var(--shadow-sm);
    }

    .live-dot {
      width: 8px;
      height: 8px;
      background: #4ade80;
      border-radius: 50%;
      box-shadow: 0 0 0 3px rgba(74, 222, 128, .3);
      animation: blink 2s infinite;
      flex-shrink: 0;
    }

    @keyframes blink {

      0%,
      100% {
        box-shadow: 0 0 0 3px rgba(74, 222, 128, .3)
      }

      50% {
        box-shadow: 0 0 0 7px rgba(74, 222, 128, .08)
      }
    }

    .hero-eyebrow span {
      font-size: .8rem;
      font-weight: 700;
      color: var(--indigo);
    }

    .hero-title {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4.5vw, 2.4rem);
      font-weight: 500;
      line-height: 1.15;
      color: var(--text-dark);
      letter-spacing: -.02em;
      margin-bottom: 20px;
    }

    .hero-title em {
      font-style: normal;
      color: var(--orange);
    }

    .hero-sub {
      font-size: 1.05rem;
      color: var(--text-muted);
      max-width: 540px;
      line-height: 1.75;
      margin-bottom: 32px;
    }

    .hero-ctas {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-bottom: 36px;
    }

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

    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 5px 13px;
      font-size: .78rem;
      font-weight: 700;
      color: var(--text-body);
      box-shadow: var(--shadow-sm);
    }

    .hero-pill i {
      color: var(--orange);
    }

    .hero-badges {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .hero-badge-card {
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 12px;
      padding: 12px 16px;
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      min-width: 130px;
      box-shadow: var(--shadow-sm);
      transition: border-color .2s, transform .2s;
    }

    .hero-badge-card:hover {
      border-color: var(--periwinkle);
      transform: translateY(-2px);
    }

    .hbc-icon {
      width: 38px;
      height: 38px;
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      flex-shrink: 0;
    }

    .hbc-icon.orange {
      background: var(--orange-pale);
      color: var(--orange);
    }

    .hbc-icon.green {
      background: #ecfdf5;
      color: var(--green);
    }

    .hbc-icon.blue {
      background: var(--periwinkle-bg);
      color: var(--indigo);
    }

    .hbc-num {
      font-family: var(--font-display);
      font-size: 1.35rem;
      font-weight: 800;
      color: var(--text-dark);
      line-height: 1;
    }

    .hbc-lbl {
      font-size: .68rem;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .06em;
    }

    .trust-bar {
      background: var(--platinum);
      border-bottom: 1px solid var(--border);
    }

    .trust-inner {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 12px;
      flex: 1;
      min-width: 180px;
      padding: 22px 20px;
      border-right: 1px solid var(--border);
    }

    .trust-item:last-child {
      border-right: none;
    }

    .trust-icon {
      width: 44px;
      height: 44px;
      background: var(--periwinkle-bg);
      border: 1.5px solid var(--periwinkle);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--indigo);
      flex-shrink: 0;
    }

    .trust-text strong {
      display: block;
      font-size: .9rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .trust-text span {
      font-size: .75rem;
      color: var(--text-dim);
    }

    @media(max-width:768px) {
      .trust-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
      }
    }

    .section {
      padding: 50px 0;
    }

    .section-light {
      background: var(--platinum);
    }

    .section-white {
      background: var(--white);
    }

    .about-wrap {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 56px;
      align-items: center;
    }

    @media(max-width:860px) {
      .about-wrap {
        grid-template-columns: 1fr;
        gap: 36px;
      }
    }

    .about-img {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

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

    .about-img-tag {
      position: absolute;
      bottom: 20px;
      left: 20px;
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 14px 20px;
      box-shadow: var(--shadow-md);
    }

    .about-img-tag strong {
      display: block;
      font-family: var(--font-display);
      font-size: 1.8rem;
      font-weight: 800;
      color: var(--indigo);
      line-height: 1;
    }

    .about-img-tag span {
      font-size: .72rem;
      font-weight: 700;
      color: var(--text-muted);
      text-transform: uppercase;
      letter-spacing: .08em;
    }

    .about-item {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: var(--platinum);
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 14px 16px;
    }

    .about-item-icon {
      width: 36px;
      height: 36px;
      background: var(--indigo);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: .85rem;
      flex-shrink: 0;
    }

    .about-item h4 {
      font-weight: 700;
      font-size: .9rem;
      color: var(--text-dark);
      margin-bottom: 2px;
    }

    .about-item p {
      font-size: .82rem;
      color: var(--text-muted);
    }

    .coverage-banner {
      background: linear-gradient(135deg, var(--indigo), var(--indigo-mid));
      border-radius: var(--radius-lg);
      padding: 20px 24px;
      display: flex;
      align-items: flex-start;
      gap: 14px;
      color: var(--white);
    }

    .coverage-banner i {
      font-size: 1.4rem;
      color: var(--orange);
      flex-shrink: 0;
      margin-top: 2px;
    }

    .coverage-banner strong {
      font-size: .95rem;
      font-weight: 700;
    }

    .coverage-banner span {
      font-size: .79rem;
      color: rgb(255, 255, 255);
      line-height: 1.6;
    }

    .svc-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(345px, 100%), 1fr));
      gap: 20px;
    }

    .svc-card {
      background: var(--white);
      border: 2px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: transform .22s, border-color .22s, box-shadow .22s;
      position: relative;
      overflow: hidden;
    }

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

    .svc-card:hover {
      transform: translateY(-5px);
      border-color: var(--periwinkle);
      box-shadow: var(--shadow-blue);
    }

    .svc-card:hover::before {
      transform: scaleX(1);
    }

    .svc-icon {
      width: 54px;
      height: 54px;
      background: var(--periwinkle-bg);
      border: 2px solid var(--periwinkle);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      color: var(--indigo);
      margin-bottom: 18px;
    }

    .svc-card h3 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .svc-card>p {
      font-size: .86rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 16px;
    }

    .svc-features {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .svc-features li {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: .84rem;
      font-weight: 600;
      color: var(--text-body);
    }

    .svc-features li i {
      color: var(--green);
      font-size: .72rem;
      flex-shrink: 0;
    }

    .svc-badge-featured {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--orange);
      color: var(--white);
      font-size: .62rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      padding: 3px 9px;
      border-radius: 5px;
    }

    .type-block {
      background: var(--white);
      border: 2px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 32px;
      margin-bottom: 24px;
    }

    .type-block-cols {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
      margin-top: 16px;
    }

    @media(max-width:680px) {
      .type-block-cols {
        grid-template-columns: 1fr;
      }
    }

    .type-block h2 {
      font-family: var(--font-display);
      font-size: 1.15rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 10px;
    }

    .type-block>p {
      font-size: .9rem;
      color: var(--text-muted);
      line-height: 1.75;
    }

    .type-block h3 {
      font-family: var(--font-display);
      font-size: .82rem;
      font-weight: 700;
      color: var(--indigo);
      text-transform: uppercase;
      letter-spacing: .06em;
      margin-bottom: 10px;
    }

    .maint-img-wrap {
      position: relative;
      border-radius: var(--radius-xl);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

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

    .maint-img-badge {
      position: absolute;
      bottom: 24px;
      left: 24px;
      background: var(--white);
      border-radius: var(--radius-md);
      padding: 14px 18px;
      display: flex;
      align-items: center;
      gap: 12px;
      box-shadow: var(--shadow-md);
      animation: floatY 3s ease-in-out infinite;
    }

    .maint-img-badge-icon {
      width: 40px;
      height: 40px;
      background: var(--periwinkle-bg);
      border: 1.5px solid var(--periwinkle);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--indigo);
      font-size: 1.1rem;
      flex-shrink: 0;
    }

    .maint-img-badge-num {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      line-height: 1.2;
    }

    .maint-img-badge-lbl {
      font-size: .72rem;
      color: var(--text-muted);
    }

    .maint-img-pill {
      position: absolute;
      top: 24px;
      right: 24px;
      background: var(--indigo);
      color: var(--white);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: .78rem;
      font-weight: 600;
      display: flex;
      align-items: center;
      gap: 7px;
      box-shadow: 0 4px 16px rgba(39, 24, 126, .3);
    }

    @media(max-width:575px) {
      .maint-img {
        height: 280px;
      }

      .maint-img-badge {
        bottom: 12px;
        left: 12px;
        padding: 10px 14px;
      }

      .maint-img-pill {
        top: 12px;
        right: 12px;
        font-size: .7rem;
      }
    }

    .why-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(360px, 100%), 1fr));
      gap: 20px;
    }

    .why-card {
      background: var(--white);
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 28px;
      transition: transform .22s, border-color .22s, box-shadow .22s;
    }

    .why-card:hover {
      transform: translateY(-4px);
      border-color: var(--periwinkle);
      box-shadow: var(--shadow-blue);
    }

    .why-icon {
      width: 52px;
      height: 52px;
      background: var(--periwinkle-bg);
      border: 2px solid var(--periwinkle);
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.2rem;
      color: var(--indigo);
      margin-bottom: 16px;
    }

    .why-card span {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .why-card p {
      font-size: .86rem;
      color: var(--text-muted);
      line-height: 1.7;
    }

    .pannes-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
      gap: 16px;
    }

    .panne-card {
      background: var(--white);
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 22px;
      transition: border-color .2s, box-shadow .2s;
    }

    .panne-card:hover {
      border-color: var(--periwinkle);
      box-shadow: var(--shadow-sm);
    }

    .panne-card-head {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 10px;
    }

    .panne-icon {
      width: 40px;
      height: 40px;
      background: #fff1f1;
      border: 1.5px solid #fecaca;
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--red);
      font-size: .9rem;
      flex-shrink: 0;
    }

    .panne-card span {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .panne-card p {
      font-size: .84rem;
      color: var(--text-muted);
      line-height: 1.65;
    }

    .coverage-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
      gap: 16px;
    }

    .cov-card {
      background: var(--white);
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 22px 20px;
      transition: border-color .2s, box-shadow .2s;
    }

    .cov-card:hover {
      border-color: var(--periwinkle);
      box-shadow: var(--shadow-sm);
    }

    .cov-card-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 14px;
    }

    .cov-icon {
      width: 36px;
      height: 36px;
      background: var(--indigo);
      border-radius: 8px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: .85rem;
      flex-shrink: 0;
    }

    .cov-card-head h4 {
      font-family: var(--font-display);
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-dark);
    }

    .cov-cities {
      display: flex;
      flex-wrap: wrap;
      gap: 6px;
    }

    .cov-city {
      font-size: .75rem;
      font-weight: 600;
      background: var(--periwinkle-bg);
      border: 1px solid var(--periwinkle);
      color: var(--indigo);
      padding: 3px 9px;
      border-radius: 5px;
    }

    .reviews-top {
      display: flex;
      align-items: flex-end;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
      margin-bottom: 44px;
    }

    .score-num {
      font-family: var(--font-display);
      font-size: 5rem;
      font-weight: 800;
      color: var(--indigo);
      line-height: 1;
    }

    .score-stars {
      display: flex;
      gap: 3px;
      color: var(--orange);
      font-size: 1.1rem;
      margin-bottom: 5px;
    }

    .score-sub {
      font-size: .82rem;
      color: var(--text-muted);
    }

    .google-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: var(--white);
      border: 1.5px solid var(--border);
      border-radius: 100px;
      padding: 8px 16px;
      font-size: .82rem;
      color: var(--text-body);
      font-weight: 600;
      box-shadow: var(--shadow-sm);
    }

    .g-dot {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: conic-gradient(#4285F4 0 90deg, #34A853 90deg 180deg, #FBBC05 180deg 270deg, #EA4335 270deg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      font-size: .65rem;
      color: white;
    }

    .reviews-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr));
      gap: 16px;
    }

    .r-card {
      background: var(--white);
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 22px;
      transition: border-color .2s, box-shadow .2s;
    }

    .r-card:hover {
      border-color: var(--periwinkle);
      box-shadow: var(--shadow-md);
    }

    .r-card-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
    }

    .r-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 800;
      font-size: .88rem;
      color: var(--white);
      flex-shrink: 0;
    }

    .r-name {
      font-weight: 700;
      font-size: .9rem;
      color: var(--text-dark);
    }

    .r-stars {
      color: var(--orange);
      font-size: .78rem;
      margin: 2px 0;
    }

    .r-date {
      font-size: .72rem;
      color: var(--text-dim);
    }

    .r-text {
      font-size: .86rem;
      color: var(--text-muted);
      line-height: 1.7;
      margin-bottom: 12px;
    }

    .r-verified {
      font-size: .72rem;
      font-weight: 700;
      color: var(--green);
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .cta-band {
      background: linear-gradient(135deg, var(--indigo) 0%, var(--indigo-mid) 60%, #2d1f8a 100%);
      border-radius: var(--radius-xl);
      overflow: hidden;
      position: relative;
    }

    .cta-band::before {
      content: '';
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
      background-size: 22px 22px;
    }

    .cta-band-inner {
      position: relative;
      z-index: 1;
      padding: 70px 60px;
      text-align: center;
    }

    .cta-band-inner h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.5rem);
      font-weight: 700;
      color: var(--white);
      margin-bottom: 18px;
      line-height: 1.2;
    }

    .cta-band-inner h2 span {
      color: var(--orange);
    }

    .cta-band-inner p {
      font-size: 1rem;
      color: rgba(255, 255, 255, .8);
      max-width: 620px;
      margin: 0 auto 32px;
      line-height: 1.75;
    }

    .cta-btns {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      justify-content: center;
      margin-bottom: 22px;
    }

    .urgency-note {
      font-size: .82rem;
      color: rgba(255, 255, 255, .55);
    }

    .urgency-note strong {
      color: rgba(255, 255, 255, .85);
    }

    .process-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    .p-step {
      text-align: center;
      padding: 28px 20px;
      position: relative;
    }

    .p-step::after {
      content: '→';
      position: absolute;
      right: -14px;
      top: 38px;
      font-size: 1.2rem;
      color: var(--periwinkle);
      z-index: 1;
    }

    .p-step:last-child::after {
      display: none;
    }

    .p-step-num {
      font-family: var(--font-display);
      font-size: 2.5rem;
      font-weight: 800;
      color: var(--periwinkle-bg);
      -webkit-text-stroke: 2px var(--periwinkle);
      line-height: 1;
      margin-bottom: 14px;
    }

    .p-step h4 {
      font-family: var(--font-display);
      font-size: .95rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .p-step p {
      font-size: .82rem;
      color: var(--text-muted);
    }

    @media(max-width:650px) {
      .process-steps {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    .c-methods {
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-top: 28px;
    }

    .c-method {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--platinum);
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 16px 20px;
      transition: border-color .2s;
      text-decoration: none;
    }

    .c-method:hover {
      border-color: var(--blue);
    }

    .c-method-ico {
      width: 42px;
      height: 42px;
      background: var(--periwinkle-bg);
      border: 1.5px solid var(--periwinkle);
      border-radius: 9px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1rem;
      color: var(--indigo);
      flex-shrink: 0;
    }

    .c-method strong {
      display: block;
      font-size: .92rem;
      color: var(--text-dark);
    }

    .c-method span {
      font-size: .78rem;
      color: var(--text-dim);
    }

    .c-form {
      background: var(--white);
      border: 2px solid var(--border-light);
      border-radius: var(--radius-xl);
      padding: 38px;
      box-shadow: var(--shadow-lg);
    }

    @media(max-width:576px) {
      .c-form {
        padding: 24px 16px;
      }
    }

    .c-form h3 {
      font-family: var(--font-display);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 26px;
    }

    .f-group {
      display: flex;
      flex-direction: column;
      gap: 5px;
      margin-bottom: 14px;
    }

    .f-group label {
      font-size: .75rem;
      font-weight: 700;
      color: var(--text-muted);
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .f-group input,
    .f-group select,
    .f-group textarea {
      background: var(--platinum);
      border: 1.5px solid var(--border);
      border-radius: var(--radius-sm);
      padding: 11px 14px;
      color: var(--text-dark);
      font-family: var(--font-body);
      font-size: .93rem;
      outline: none;
      transition: border-color .2s, background .2s;
      width: 100%;
    }

    .f-group input:focus,
    .f-group select:focus,
    .f-group textarea:focus {
      border-color: var(--blue);
      background: var(--white);
    }

    .f-group select {
      appearance: none;
      cursor: pointer;
    }

    .f-group textarea {
      resize: vertical;
      min-height: 80px;
    }

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

    @media(max-width:480px) {
      .f-row {
        grid-template-columns: 1fr;
      }
    }

    .f-privacy {
      font-size: .72rem;
      color: var(--text-dim);
      text-align: center;
      margin-top: 12px;
    }

    .f-privacy i {
      color: var(--green);
      margin-right: 4px;
    }

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

    @media(max-width:680px) {
      .faq-grid {
        grid-template-columns: 1fr;
      }
    }

    .faq-item {
      background: var(--white);
      border: 1.5px solid var(--border-light);
      border-radius: var(--radius-md);
      overflow: hidden;
      transition: border-color .2s;
    }

    .faq-item[open] {
      border-color: var(--periwinkle);
    }

    .faq-item summary {
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      cursor: pointer;
      font-weight: 700;
      font-size: .9rem;
      color: var(--text-dark);
      transition: color .2s;
    }

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

    .faq-item summary:hover {
      color: var(--indigo);
    }

    .faq-item summary i {
      color: var(--blue);
      font-size: .75rem;
      transition: transform .25s;
      flex-shrink: 0;
    }

    .faq-item[open] summary i {
      transform: rotate(45deg);
    }

    .faq-body {
      padding: 0 20px 18px;
      font-size: .86rem;
      color: var(--text-muted);
      line-height: 1.72;
    }

    .footer {
      background: var(--indigo-dark);
      color: rgba(255, 255, 255, .65);
      padding: 64px 0 32px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px;
      margin-bottom: 48px;
    }

    @media(max-width:860px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }
    }

    @media(max-width:480px) {
      .footer-grid {
        grid-template-columns: 1fr;
      }
    }

    .footer-logo {
      font-family: var(--font-display);
      font-size: 1.9rem;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 12px;
    }

    .footer-logo span {
      color: var(--orange);
    }

    .footer-brand p {
      font-size: .85rem;
      line-height: 1.7;
      margin-bottom: 20px;
    }

    .f-socials {
      display: flex;
      gap: 10px;
    }

    .f-social-btn {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .15);
      display: flex;
      align-items: center;
      justify-content: center;
      color: rgba(255, 255, 255, .7);
      font-size: .9rem;
      transition: background .2s, color .2s;
    }

    .f-social-btn:hover {
      background: var(--orange);
      color: var(--white);
      border-color: var(--orange);
    }

    .footer h5 {
      font-family: var(--font-display);
      font-size: .8rem;
      font-weight: 700;
      letter-spacing: .12em;
      text-transform: uppercase;
      color: rgba(255, 255, 255, .4);
      margin-bottom: 16px;
    }

    .footer ul li {
      margin-bottom: 9px;
    }

    .footer ul a {
      font-size: .86rem;
      color: rgba(255, 255, 255, .55);
      transition: color .2s;
    }

    .footer ul a:hover {
      color: var(--white);
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, .08);
      padding-top: 24px;
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 12px;
      font-size: .78rem;
      color: rgba(255, 255, 255, .35);
    }

    .wa-float {
      position: fixed;
      bottom: 28px;
      right: 28px;
      z-index: 9999;
    }

    .wa-btn {
      width: 62px;
      height: 62px;
      border-radius: 50%;
      background: #25D366;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 1.8rem;
      text-decoration: none;
      box-shadow: 0 4px 20px rgba(37, 211, 102, .5);
      transition: transform .2s, box-shadow .2s;
      animation: waPulse 2.5s infinite;
    }

    .wa-btn:hover {
      transform: scale(1.12);
      color: #fff;
      box-shadow: 0 8px 30px rgba(37, 211, 102, .65);
    }

    @keyframes waPulse {

      0%,
      100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5)
      }

      50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, .5), 0 0 0 14px rgba(37, 211, 102, .12)
      }
    }

    .wa-tooltip {
      position: absolute;
      right: 74px;
      top: 50%;
      transform: translateY(-50%);
      background: var(--text-dark);
      color: #fff;
      font-size: .78rem;
      font-weight: 700;
      padding: 7px 13px;
      border-radius: 6px;
      white-space: nowrap;
      border: 1px solid rgba(37, 211, 102, .3);
      opacity: 0;
      pointer-events: none;
      transition: opacity .2s;
    }

    .wa-float:hover .wa-tooltip {
      opacity: 1;
    }

    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity .55s ease, transform .55s ease;
    }

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

    @media(max-width:575px) {
      .container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .section {
        padding: 56px 0;
      }

      .hero-badges {
        gap: 8px;
      }

      .hero-badge-card {
        min-width: calc(50% - 4px);
        flex: unset;
      }

      .btn-lg {
        padding: 14px 20px;
        font-size: .95rem;
      }

      .hero-ctas .btn-lg {
        width: 100%;
      }

      .trust-inner {
        flex-direction: column;
      }

      .cta-band-inner {
        padding: 52px 16px;
      }

      .footer-grid {
        gap: 28px;
      }

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

      .wa-float {
        bottom: 20px;
        right: 16px;
      }
    }
  
    /* ── SERVICES MENU (added by integration script) ── */
    .services-nav {
      background: var(--indigo);
      border-bottom: 1px solid rgba(255,255,255,.08);
      position: sticky;
      top: 68px;
      z-index: 998;
    }
    .services-nav-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-wrap: wrap;
      gap: 2px;
      padding: 0;
    }
    .services-nav a {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 13px 18px;
      color: rgba(255,255,255,.85);
      font-size: .86rem;
      font-weight: 600;
      font-family: var(--font-display);
      text-decoration: none;
      transition: all .2s ease;
      border-bottom: 3px solid transparent;
      white-space: nowrap;
    }
    .services-nav a i { font-size: .82rem; opacity: .8; }
    .services-nav a:hover {
      color: #fff;
      background: rgba(255,255,255,.06);
    }
    .services-nav a.active {
      color: var(--orange-light);
      border-bottom-color: var(--orange);
      background: rgba(255,255,255,.04);
    }
    .services-nav a.active i { opacity: 1; color: var(--orange); }
    @media (max-width: 991px) {
      .services-nav { overflow-x: auto; top: 60px; }
      .services-nav-inner { flex-wrap: nowrap; justify-content: flex-start; padding: 0 8px; }
      .services-nav a { padding: 11px 14px; font-size: .8rem; }
    }
    @media (max-width: 640px) {
      .services-nav a span.lbl-long { display: none; }
    }
/* ═══════════════════════════════════════════════════════════════
   SERVICES NAV — MOBILE HAMBURGER MENU
   Desktop (>991px): horizontal nav as before, hamburger hidden
   Mobile (≤991px): hamburger button visible, links collapse into
   a slide-down dropdown panel
   ═══════════════════════════════════════════════════════════════ */

/* Hamburger button — hidden on desktop */
.services-nav-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 12px 16px;
  background: transparent;
  border: 0;
  color: #fff;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 700;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.services-nav-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--orange-light);
}

.services-nav-toggle-label i {
  color: var(--orange);
  font-size: 1rem;
}

.services-nav-toggle-icon {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 20px;
  flex-shrink: 0;
}

.services-nav-toggle-icon span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2.5px;
  background: #fff;
  border-radius: 2px;
  transition: transform .25s ease, opacity .2s ease, top .25s ease, bottom .25s ease;
}

.services-nav-toggle-icon span:nth-child(1) { top: 3px; }
.services-nav-toggle-icon span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.services-nav-toggle-icon span:nth-child(3) { bottom: 3px; }

/* Animated X when open */
.services-nav-toggle.is-open .services-nav-toggle-icon span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.services-nav-toggle.is-open .services-nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}
.services-nav-toggle.is-open .services-nav-toggle-icon span:nth-child(3) {
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}

/* ───── MOBILE (≤991px) ───── */
@media (max-width: 991px) {
  /* Show hamburger */
  .services-nav-toggle {
    display: flex;
  }

  /* Reset the inner container — no more horizontal scroll row */
  .services-nav {
    overflow: visible !important;
  }
  .services-nav-inner {
    display: block !important;
    padding: 0 !important;
    flex-wrap: initial !important;
    justify-content: initial !important;
  }

  /* Collapse the link list */
  .services-nav-list {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 6px 0 10px;
    border-top: 1px solid rgba(255,255,255,.08);
    animation: services-nav-slide .25s ease;
  }

  .services-nav-list.is-open {
    display: flex;
  }

  .services-nav-list a {
    display: flex !important;
    align-items: center;
    gap: 12px;
    width: 100%;
    padding: 13px 18px !important;
    font-size: .92rem !important;
    border-bottom: 0 !important;
    border-left: 3px solid transparent;
    white-space: normal;
  }

  .services-nav-list a i {
    font-size: 1rem !important;
    width: 22px;
    text-align: center;
    opacity: 1;
  }

  .services-nav-list a span.lbl-long {
    display: inline !important;
  }

  .services-nav-list a.active {
    border-bottom: 0 !important;
    border-left-color: var(--orange);
    background: rgba(255,255,255,.06);
  }

  .services-nav-list a:hover,
  .services-nav-list a:focus {
    background: rgba(255,255,255,.08);
  }
}

@keyframes services-nav-slide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ───── DESKTOP (>991px) ───── */
@media (min-width: 992px) {
  /* Make sure list is always visible on desktop, behaves like before */
  .services-nav-list {
    display: flex !important;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2px;
    width: 100%;
  }
}
