﻿    /* ─────────────────────────────────────────────
       DESIGN SYSTEM  (Eluxen-inspired, Gen-Z branded)
    ───────────────────────────────────────────── */
    :root {
      --primary:  #354995;   /* logo violet-blue */
      --accent:   #ffd051;   /* gold/yellow – same as Eluxen */
      --black:    #000000;
      --grey:     #191919;
      --text:     #dadada;
      --text2:    #595959;
      --white:    #ffffff;
    }

    *,*::before,*::after{box-sizing:border-box;}
    html{scroll-behavior:smooth; max-width:100%;}

    body {
      margin: 0;
      font-family: "Urbanist", sans-serif;
      font-size: 16px;
      line-height: 26px;
      font-weight: 500;
      color: var(--text);
      background-color: var(--black);
      overflow-x: hidden;
      max-width: 100%;
    }

    img { max-width: 100%; height: auto; display: block; }
    figure { margin: 0; }
    ul { padding: 0; list-style: none; margin: 0; }
    a { text-decoration: none; color: inherit; }
    p { font-size: 16px; line-height: 26px; font-weight: 500; color: var(--text); margin: 0; }

    h1 { font-size: 68px; line-height: 74px; font-weight: 700; color: var(--white); margin-bottom: 22px; }
    h2 { font-size: 60px; line-height: 70px; font-weight: 700; letter-spacing: .8px; color: var(--white); margin: 0; }
    h4 { font-size: 30px; line-height: 38px; font-weight: 600; color: var(--white); margin: 0; }
    h5 { font-size: 26px; line-height: 30px; font-weight: 700; color: var(--white); margin: 0; }
    h6 { font-size: 20px; line-height: 24px; font-weight: 600; color: var(--white); margin: 0; }

    .special-text {
      color: var(--accent);
      font-size: 16px;
      line-height: 28px;
      letter-spacing: 3px;
      font-weight: 500;
      display: block;
      margin-bottom: 8px;
    }

    .heading-title-con { margin-bottom: 32px; }
    .heading-title-con.mb-0 { margin-bottom: 0; }

    .main-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .padding-top { padding-top: 48px; }
    .padding-bottom { padding-bottom: 48px; }
    .padding-rl { padding-left: 50px; padding-right: 50px; }
    .br-30 { border-radius: 30px; }
    .bg-primary-color { background-color: var(--primary); }
    .text-white { color: var(--white) !important; }
    .text-black { color: var(--black) !important; }
    .w-100 { width: 100%; }
    .float-left { float: left; }

    /* ─── BUTTONS ─── */
    .primary_btn,
    .secondary_btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 12px;
      padding: 0 32px;
      height: 60px;
      font-size: 18px;
      font-weight: 700;
      font-family: "Urbanist", sans-serif;
      border-radius: 10px;
      border: none;
      cursor: pointer;
      transition: all 0.4s ease-in-out;
      position: relative;
      min-width: 160px;
      white-space: nowrap;
    }

    .primary_btn {
      color: var(--white);
      background-color: var(--primary);
    }
    .primary_btn:hover { background-color: var(--accent); color: var(--black); }

    .secondary_btn {
      color: var(--black);
      background-color: var(--accent);
    }
    .secondary_btn:hover { background-color: var(--primary); color: var(--white); }



    /* ─── BACK TO TOP ─── */
    #btn-top {
      position: fixed;
      bottom: 60px; right: 40px;
      z-index: 99;
      width: 56px; height: 56px;
      background: var(--accent);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0; visibility: hidden;
      transition: all 0.4s;
      cursor: pointer;
      animation: pulse 2s infinite;
    }
    #btn-top.show { opacity: 1; visibility: visible; }
    #btn-top:hover { transform: translateY(-4px); }
    #btn-top i { font-size: 20px; color: var(--black); font-weight: 700; }

    /* ─── FLOATING CTA ─── */
    .floating-cta {
      position: fixed;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      z-index: 98;
      width: min(320px, calc(100vw - 32px));
      padding: 18px 16px 16px;
      border-radius: 22px;
      background:
        radial-gradient(circle at top left, rgba(116,153,255,0.24), transparent 38%),
        linear-gradient(180deg, rgba(42,58,112,0.98) 0%, rgba(18,26,54,0.98) 100%);
      border: 1px solid rgba(116,153,255,0.24);
      box-shadow: 0 18px 40px rgba(8,14,34,0.48);
    }

    .floating-cta.fade-up,
    .floating-cta.fade-up.visible {
      opacity: 1;
      transform: translateY(-50%);
    }

    .floating-cta-kicker {
      margin-bottom: 10px;
      color: #9ebcff;
      font-size: 13px;
      line-height: 1.2;
      font-weight: 800;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      text-align: center;
    }

    .floating-cta h3 {
      margin: 0;
      padding-bottom: 16px;
      border-bottom: 1px solid rgba(255,255,255,0.18);
      color: var(--white);
      font-size: 18px;
      line-height: 1.45;
      font-weight: 700;
      text-align: center;
      text-wrap: balance;
    }

    .floating-cta-actions {
      display: flex;
      flex-direction: column;
      gap: 12px;
      padding-top: 14px;
    }

    .floating-cta-call,
    .floating-cta-apply {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 54px;
      padding: 0 18px;
      border-radius: 16px;
      font-size: 18px;
      font-weight: 800;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
    }

    .floating-cta-call {
      color: var(--white);
      background: linear-gradient(180deg, #6f90f3 0%, #4d6fd4 100%);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.35);
    }

    .floating-cta-apply {
      color: var(--white);
      background: rgba(255,255,255,0.04);
      border: 1px solid rgba(158,188,255,0.72);
    }

    .floating-cta-call:hover,
    .floating-cta-apply:hover {
      transform: translateY(-2px);
    }

    .floating-cta-call:hover {
      box-shadow: 0 12px 28px rgba(111,144,243,0.28);
    }

    .floating-cta-apply:hover {
      background: #9ebcff;
      color: #152247;
    }

    .floating-cta-icon {
      width: 22px;
      height: 22px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,0.22);
      font-size: 12px;
    }

    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 rgba(255,208,81,.45); }
      100% { box-shadow: 0 0 0 30px rgba(255,208,81,0); }
    }

    /* ─── HEADER ─── */
    .site-header {
      padding: 30px 0 18px;
      position: relative;
      z-index: 20;
    }

    .navbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 20px;
    }

    .navbar-brand img { width: 220px; height: auto; }

    .navbar-nav {
      display: flex;
      align-items: center;
      gap: 48px;
      background: rgba(255,255,255,0.1);
      border-radius: 10px;
      padding: 10px 28px;
    }

    .nav-link {
      font-size: 16px;
      color: var(--white);
      font-weight: 500;
      transition: color 0.3s;
      position: relative;
    }
    .nav-link:hover, .nav-link.active { color: var(--accent); }

    .header-right { display: flex; align-items: center; gap: 22px; }

    .phone-widget {
      display: flex;
      align-items: center;
      gap: 14px;
      text-decoration: none;
    }

    .phone-link {
      position: relative;
      width: 54px; height: 54px;
      background: rgba(255,255,255,0.1);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s;
      color: var(--white);
    }
    .phone-widget:hover .phone-link { background: var(--accent); color: var(--black); }
    .phone-link i { font-size: 20px; position: relative; z-index: 1; }

    /* ripple rings */
    .phone-link::before,
    .phone-link::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.25);
      animation: ring 2.4s ease-out infinite;
    }
    .phone-link::after { animation-delay: 1.2s; }

    @keyframes ring {
      0%   { transform: scale(1);   opacity: 0.7; }
      100% { transform: scale(1.9); opacity: 0; }
    }

    .phone-text {
      display: flex;
      flex-direction: column;
      gap: 2px;
    }
    .phone-text .ph-label {
      font-size: 11px;
      font-weight: 500;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      line-height: 1;
    }
    .phone-text .ph-num {
      font-size: 16px;
      font-weight: 800;
      color: var(--white);
      line-height: 1;
      transition: color 0.3s;
    }
    .phone-widget:hover .ph-num { color: var(--accent); }
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 6px;
      cursor: pointer;
      padding: 6px 4px;
      background: none;
      border: none;
    }
    .hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: all 0.3s; }
    .hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
    .hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

    /* ─── PAGE BANNER (inner pages) ─── */
    .page-banner {
      position: relative;
      min-height: 480px;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      background: var(--black);
    }

    .page-banner-bg {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
      opacity: 0.42;
    }

    .page-banner-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(160deg, rgba(0,0,0,0.82) 0%, rgba(53,73,149,0.55) 55%, rgba(0,0,0,0.65) 100%);
      z-index: 1;
      pointer-events: none;
    }

    .page-banner-content {
      position: relative;
      z-index: 10;
      flex: 1;
      display: flex;
      align-items: center;
      padding: 60px 0 80px;
    }

    .page-banner h1 {
      font-size: 62px;
      line-height: 68px;
      margin-bottom: 18px;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 15px;
      color: rgba(255,255,255,0.6);
    }
    .breadcrumb a { color: var(--accent); font-weight: 600; transition: color 0.3s; }
    .breadcrumb a:hover { color: var(--white); }
    .breadcrumb i { font-size: 10px; color: rgba(255,255,255,0.4); }

    /* ─── VIDEO HERO ─── */
    .hero-section {
      position: relative;
      width: 100%;
      min-height: 100vh;
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(0,0,0,0.72) 0%,
        rgba(10,6,40,0.62) 50%,
        rgba(0,0,0,0.55) 100%
      );
      z-index: 1;
      pointer-events: none;
    }

    /* header sits on top of video */
    .site-header {
      position: relative;
      z-index: 10;
    }

    .hero-content {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      align-items: center;
      padding: 40px 0 80px;
    }

    .banner-row {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 40px;
      align-items: center;
      width: 100%;
    }

    /* scroll-down chevron */
    .scroll-down {
      position: absolute;
      bottom: 36px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      width: 50px; height: 50px;
      border: 2px solid rgba(255,255,255,0.35);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--white);
      font-size: 16px;
      animation: bounce 2s infinite;
      transition: border-color 0.3s, background 0.3s;
    }
    .scroll-down:hover { border-color: var(--accent); background: rgba(255,208,81,0.15); color: var(--accent); }

    @keyframes bounce {
      0%, 100% { transform: translateX(-50%) translateY(0); }
      50%       { transform: translateX(-50%) translateY(8px); }
    }

    .banner-left h1 { margin-bottom: 22px; }
    .banner-left > p { margin-bottom: 36px; font-size: 18px; line-height: 28px; }

    .cta-row {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-bottom: 0;
    }

    .banner-right {}

    .blue-box {
      background: var(--primary);
      border-radius: 20px;
      padding: 32px;
    }

    .avatar-row {
      display: flex;
      margin-bottom: 16px;
    }

    .avatar {
      width: 52px; height: 52px;
      border-radius: 50%;
      border: 3px solid var(--white);
      background: var(--grey);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      font-weight: 700;
      color: var(--white);
      margin-left: -14px;
      flex-shrink: 0;
      overflow: hidden;
    }
    .avatar:first-child { margin-left: 0; }

    .avatar img { width: 100%; height: 100%; object-fit: cover; }

    .client-count {
      margin-bottom: 14px;
    }
    .client-count .num {
      font-size: 56px;
      line-height: 60px;
      font-weight: 700;
      color: var(--white);
      display: inline;
    }
    .client-count sup {
      font-size: 26px;
      font-weight: 700;
      color: var(--white);
    }
    .client-count .label {
      display: block;
      font-size: 16px;
      font-weight: 500;
      color: rgba(255,255,255,0.85);
    }

    .box-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      border-top: 1px solid rgba(255,255,255,0.2);
      padding-top: 20px;
      margin-top: 6px;
    }
    .box-footer p { font-size: 15px; line-height: 22px; color: rgba(255,255,255,0.8); }

    .circle-btn {
      width: 52px; height: 52px;
      background: rgba(0,0,0,0.25);
      border-radius: 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s;
    }
    .circle-btn:hover { background: rgba(0,0,0,0.5); }
    .circle-btn i { font-size: 18px; color: var(--white); }

    /* hero-img-wrap removed — replaced by video hero */

    /* ─── SERVICES ─── */
    .services-section { padding-top: 48px; }

    .services-header {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      align-items: end;
      margin-bottom: 0;
      padding-bottom: 36px;
    }

    .services-header .right {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .services-car-wrap {
      width: 100%;
      max-width: 540px;
      margin-left: auto;
      overflow: visible;
      perspective: 1200px;
    }

    .services-car-wrap img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
      filter: drop-shadow(0 20px 40px rgba(56,32,232,0.35));
      transform: scale(0.75);
      opacity: 0.6;
      transition: none;
      will-change: transform, opacity;
    }

    .services-car-wrap img.scroll-zoom {
      transform: scale(1);
      opacity: 1;
    }

    /* ─── SERVICE SPLIT-PANEL CARDS ─── */
    .services-panel-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      padding: 0;
      margin-top: 50px;
    }

    .svc-card {
      display: flex;
      background: var(--grey);
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.06);
      transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s;
      cursor: pointer;
    }
    .svc-card:hover {
      transform: translateY(-6px);
      border-color: rgba(255,208,81,0.3);
      box-shadow: 0 28px 64px rgba(0,0,0,0.45);
    }

    .svc-icon-panel {
      width: 116px;
      flex-shrink: 0;
      background: var(--accent);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 14px;
      padding: 32px 0;
      position: relative;
      transition: background 0.4s;
    }
    .svc-card.alt .svc-icon-panel  { background: var(--primary); }
    .svc-card:hover      .svc-icon-panel  { background: var(--primary); }
    .svc-card.alt:hover  .svc-icon-panel  { background: var(--accent);  }

    .svc-icon-panel i {
      font-size: 46px;
      color: var(--black);
      transition: color 0.4s;
    }
    .svc-card.alt .svc-icon-panel i { color: var(--white); }
    .svc-card:hover     .svc-icon-panel i { color: var(--white); }
    .svc-card.alt:hover .svc-icon-panel i { color: var(--black); }

    .svc-num {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: rgba(0,0,0,0.45);
      transition: color 0.4s;
    }
    .svc-card.alt      .svc-num { color: rgba(255,255,255,0.35); }
    .svc-card:hover     .svc-num { color: rgba(255,255,255,0.35); }
    .svc-card.alt:hover .svc-num { color: rgba(0,0,0,0.45); }

    .svc-content-panel {
      flex: 1;
      padding: 32px 28px 28px;
      display: flex;
      flex-direction: column;
    }
    .svc-content-panel h5 {
      font-size: 22px;
      line-height: 28px;
      margin-bottom: 12px;
    }
    .svc-content-panel p {
      font-size: 15px;
      line-height: 24px;
      color: var(--text);
      flex: 1;
      margin-bottom: 22px;
    }
    .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 15px;
      font-weight: 700;
      color: var(--accent);
      transition: gap 0.3s, color 0.3s;
      align-self: flex-start;
    }
    .svc-card.alt .svc-link { color: var(--accent); }
    .svc-link:hover { gap: 14px; color: var(--white); }
    .svc-link i { font-size: 12px; }

    /* stat icon */
    .stat-icon {
      width: 60px; height: 60px;
      background: rgba(255,255,255,0.06);
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
    }
    .stat-icon i { font-size: 26px; color: var(--accent); }

    /* ─── STATS ─── */
    .stats-section { padding: 30px 0; }

    .stats-inner {
      display: flex;
      align-items: center;
      justify-content: space-around;
      border-top: 1px solid rgba(255,255,255,0.12);
      border-bottom: 1px solid rgba(255,255,255,0.12);
      padding: 40px 0;
    }

    .stat-item {
      text-align: center;
      flex: 1;
      border-right: 1px solid rgba(255,255,255,0.12);
    }
    .stat-item:last-child { border-right: none; }

    .stat-item .num {
      font-size: 64px;
      line-height: 70px;
      font-weight: 800;
      color: var(--white);
      display: inline;
    }

    .stat-item sup {
      font-size: 26px;
      font-weight: 700;
      color: var(--accent);
    }

    .stat-item .lbl {
      display: block;
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      margin-top: 8px;
      letter-spacing: 0.5px;
    }

    /* ─── ABOUT (BLUE BG) ─── */
    .about-section {
      position: relative;
    }

    .about-inner {
      background: var(--primary);
      border-radius: 30px;
      position: relative;
      overflow: hidden;
      padding: 0;
    }

    .about-car-bg {
      position: absolute;
      right: 0; top: 50%;
      transform: translateY(-50%);
      opacity: 0.08;
      pointer-events: none;
    }

    .about-car-bg svg { width: 700px; height: auto; }

    .about-grid {
      display: grid;
      grid-template-columns: 1.1fr 0.9fr;
      gap: 0;
    }

    .about-imgs {
      display: flex;
      gap: 16px;
      padding: 40px 0 40px 50px;
    }

    .about-img-main {
      flex: 1.3;
    }
    .about-img-main img, .about-img-main .img-ph {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 20px;
    }

    .about-img-stack {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .about-img-stack img, .about-img-stack .img-ph {
      width: 100%;
      flex: 1;
      object-fit: cover;
      border-radius: 20px;
    }

    .img-ph {
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      position: relative;
    }

    .ca1 { background: linear-gradient(135deg, #1a2040, #2535a0); }
    .ca2 { background: linear-gradient(135deg, #252038, #354995 80%); }
    .ca3 { background: linear-gradient(135deg, #0e1830, #1d2d80); }

    .img-ph-inner {
      font-size: 60px;
      font-weight: 900;
      color: rgba(255,255,255,0.15);
      letter-spacing: -5px;
      font-family: "Urbanist", sans-serif;
    }

    .about-content { padding: 40px 48px 40px 32px; display: flex; flex-direction: column; justify-content: center; }

    .about-content h2 { margin-bottom: 20px; color: var(--white); }

    .about-content p { font-size: 18px; line-height: 28px; color: rgba(255,255,255,0.82); margin-bottom: 28px; }

    .check-list { margin-bottom: 40px; }
    .check-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 14px;
      font-size: 16px;
      color: rgba(255,255,255,0.88);
      font-weight: 500;
    }
    .check-list li i { color: var(--accent); margin-top: 4px; flex-shrink: 0; }

    /* ─── HOW IT WORKS ─── */
    .how-section { padding: 48px 0; text-align: center; }

    .how-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
      position: relative;
    }

    .how-grid::after {
      content: "";
      position: absolute;
      top: 48px; left: 0; right: 0;
      height: 2px;
      background: linear-gradient(90deg, transparent 5%, rgba(255,255,255,0.08) 20%, rgba(255,255,255,0.08) 80%, transparent 95%);
    }

    .how-card { position: relative; z-index: 1; }

    .how-icon-wrap {
      position: relative;
      display: inline-flex;
      margin-bottom: 26px;
    }

    .how-icon {
      width: 96px; height: 96px;
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .how-icon.yellow { background: var(--accent); }
    .how-icon.blue   { background: var(--primary); }
    .how-icon i { font-size: 36px; }
    .how-icon.yellow i { color: var(--black); }
    .how-icon.blue   i { color: var(--white); }

    .how-step-num {
      position: absolute;
      bottom: -8px; right: -8px;
      width: 32px; height: 32px;
      background: var(--black);
      border-radius: 8px;
      font-size: 13px;
      font-weight: 800;
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .how-card h5 { margin-bottom: 14px; }
    .how-card p { color: var(--text); font-size: 15px; line-height: 24px; }

    /* ─── TESTIMONIALS ─── */
    .testi-section { padding: 48px 0; }

    .testi-grid {
      display: grid;
      grid-template-columns: 1fr 2fr;
      gap: 60px;
      align-items: start;
    }

    .testi-carousel {
      position: relative;
      overflow: hidden;
    }

    .testi-track {
      display: flex;
      transition: transform 0.5s ease;
    }

    .testi-card {
      background: var(--grey);
      border-radius: 20px;
      padding: 36px;
      min-width: 100%;
    }

    .testi-stars { margin-bottom: 20px; }
    .testi-stars i { color: var(--accent); font-size: 18px; margin-right: 3px; }

    .testi-text { font-size: 17px; line-height: 28px; color: var(--text); margin-bottom: 28px; }

    .testi-author { display: flex; align-items: center; gap: 16px; }
    .testi-av {
      width: 56px; height: 56px;
      border-radius: 50%;
      background: var(--primary);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      font-weight: 700;
      color: var(--white);
      flex-shrink: 0;
      overflow: hidden;
    }
    .testi-av img { width: 100%; height: 100%; object-fit: cover; }
    .testi-name { font-size: 18px; font-weight: 700; color: var(--white); }
    .testi-role { font-size: 14px; color: var(--text); margin-top: 3px; }

    .testi-nav {
      display: flex;
      gap: 12px;
      margin-top: 28px;
    }

    .testi-btn {
      width: 52px; height: 52px;
      border-radius: 10px;
      background: rgba(255,255,255,0.08);
      border: 1px solid rgba(255,255,255,0.12);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s;
    }
    .testi-btn:hover, .testi-btn.active-nav { background: var(--primary); border-color: var(--primary); }
    .testi-btn i { color: var(--white); font-size: 16px; }

    /* ─── CTA ─── */
    /* ─── SUPREME PROTECTION WHEEL ─── */
    .supreme-outer { padding: 20px 50px 36px; }

    .supreme-section {
      border-radius: 30px;
      padding: 60px 60px 180px;
      position: relative;
      overflow: visible;
      background: linear-gradient(145deg, #0d0d20 0%, #131330 50%, #0a0a18 100%);
      text-align: center;
      
    }

    .supreme-section::before {
      content: "";
      position: absolute; inset: 0;
      background:
        radial-gradient(ellipse at 50% 60%, rgba(56,32,232,0.28) 0%, transparent 55%),
        radial-gradient(ellipse at 15% 20%, rgba(255,208,81,0.1) 0%, transparent 40%),
        radial-gradient(ellipse at 85% 80%, rgba(255,208,81,0.08) 0%, transparent 35%);
      border-radius: 30px;
    }

    .supreme-section > * { position: relative; z-index: 1; }

    .supreme-eyebrow {
      font-size: 13px;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      margin-bottom: 6px;
      display: block;
    }

    .supreme-title {
      font-size: 52px;
      line-height: 58px;
      font-weight: 900;
      color: var(--white);
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-bottom: 6px;
    }

    .supreme-sub {
      font-size: 13px;
      letter-spacing: 5px;
      text-transform: uppercase;
      color: var(--text);
      margin-bottom: 42px;
      display: block;
    }

    /* wheel */
    .wheel-wrap {
      position: relative;
      width: 700px;
      height: 700px;
      margin: 0 auto;
    }

    /* outer dashed orbit ring */
    .wheel-orbit {
      position: absolute;
      inset: 0;
      border-radius: 50%;
      border: 1.5px dashed rgba(255,255,255,0.12);
      animation: spin-slow 40s linear infinite;
    }

    /* dot markers on orbit */
    .wheel-orbit::before,
    .wheel-orbit::after {
      content: "";
      position: absolute;
      width: 10px; height: 10px;
      background: var(--accent);
      border-radius: 50%;
      top: -5px; left: 50%;
      transform: translateX(-50%);
    }
    .wheel-orbit::after {
      top: auto; bottom: -5px;
    }

    @keyframes spin-slow {
      to { transform: rotate(360deg); }
    }

    /* inner solid ring */
    .wheel-inner-ring {
      position: absolute;
      inset: 110px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.07);
    }

    /* center circle */
    .wheel-center {
      position: absolute;
      inset: 190px;
      border-radius: 50%;
      background: linear-gradient(145deg, #1a1640 0%, #0e0c28 100%);
      border: 2px solid rgba(255,208,81,0.3);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      padding: 20px;
      box-shadow:
        0 0 0 8px rgba(56,32,232,0.12),
        0 0 60px rgba(56,32,232,0.25);
    }

    .wheel-center-icon {
      font-size: 48px;
      margin-bottom: 10px;
      animation: breathe 3s ease-in-out infinite;
    }

    @keyframes breathe {
      0%,100% { transform: scale(1);   }
      50%      { transform: scale(1.08); }
    }

    .wheel-center h3 {
      font-size: 16px;
      line-height: 22px;
      font-weight: 800;
      color: var(--white);
      text-transform: uppercase;
      letter-spacing: 2px;
      margin: 0 0 6px;
    }

    .wheel-center p {
      font-size: 10px;
      line-height: 15px;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--accent);
      font-weight: 600;
      margin: 0;
    }

    /* threat node items — positioned by CSS custom props */
    .threat-node {
      position: absolute;
      width: 160px;
      text-align: center;
      transform: translate(-50%, -50%);
      cursor: default;
    }

    .threat-icon-wrap {
      width: 72px; height: 72px;
      border-radius: 50%;
      background: rgba(255,255,255,0.06);
      border: 1.5px solid rgba(255,255,255,0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 12px;
      transition: background 0.35s, border-color 0.35s, transform 0.35s;
    }
    .threat-node:hover .threat-icon-wrap {
      background: var(--accent);
      border-color: var(--accent);
      transform: scale(1.15);
    }
    .threat-icon-wrap i {
      font-size: 28px;
      color: var(--accent);
      transition: color 0.35s;
    }
    .threat-node:hover .threat-icon-wrap i { color: var(--black); }

    .threat-node h6 {
      font-size: 14px;
      line-height: 20px;
      font-weight: 700;
      color: var(--white);
      margin-bottom: 5px;
      text-transform: uppercase;
      letter-spacing: 1px;
    }
    .threat-node p {
      font-size: 12px;
      line-height: 17px;
      color: rgba(255,255,255,0.55);
      margin: 0;
    }

    /* connector dot on orbit */
    .threat-dot {
      position: absolute;
      width: 10px; height: 10px;
      background: var(--accent);
      border-radius: 50%;
      transform: translate(-50%, -50%);
      box-shadow: 0 0 8px rgba(255,208,81,0.6);
    }

    html.page-index,
    html.page-about {
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
    }

    html.page-index body,
    html.page-about body {
      overflow-x: hidden;
      width: 100%;
      max-width: 100%;
      position: relative;
    }

    @media (max-width: 768px) {
      .wheel-wrap { width: 340px; height: 340px; }
      .wheel-center { inset: 90px; }
      .wheel-center-icon { font-size: 28px; }
      .wheel-center h3 { font-size: 11px; }
      .wheel-center p { font-size: 8px; }
      .threat-node { width: 86px; }
      .threat-icon-wrap { width: 44px; height: 44px; }
      .threat-icon-wrap i { font-size: 18px; }
      .threat-node h6 { font-size: 10px; line-height: 13px; }
      .threat-node p { display: none; }
      .wheel-wrap .threat-node { transform: translate(-50%, -50%) !important; }
      .wheel-wrap .threat-node.node-top {
        left: 50% !important;
        top: 6% !important;
        transform: translate(-50%, -58%) !important;
      }
      .wheel-wrap .threat-node.node-top-right {
        left: 84.5% !important;
        top: 26% !important;
        transform: translate(2%, -50%) !important;
      }
      .wheel-wrap .threat-node.node-bottom-right {
        left: 84.5% !important;
        top: 74% !important;
        transform: translate(2%, -50%) !important;
      }
      .wheel-wrap .threat-node.node-bottom {
        left: 50% !important;
        top: 94% !important;
        transform: translate(-50%, -2%) !important;
      }
      .wheel-wrap .threat-node.node-bottom-left {
        left: 18% !important;
        top: 74% !important;
        transform: translate(-94%, -50%) !important;
      }
      .wheel-wrap .threat-node.node-top-left {
        left: 18% !important;
        top: 26% !important;
        transform: translate(-94%, -50%) !important;
      }
      .supreme-title { font-size: 32px; letter-spacing: 3px; }
      .supreme-outer { padding: 0 14px 40px; overflow: visible; }
    }

    /* ─── CONTACT ─── */
    .contact-section { padding: 48px 0; }

    .contact-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: start;
    }

    .contact-info h2 { margin-bottom: 16px; }
    .contact-info > p { font-size: 18px; line-height: 28px; color: var(--text); margin-bottom: 40px; }

    .info-items { display: flex; flex-direction: column; gap: 24px; }
    .info-item { display: flex; align-items: flex-start; gap: 18px; }

    .info-icon {
      width: 56px; height: 56px;
      background: var(--grey);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      transition: background 0.3s;
    }
    .info-icon:hover { background: var(--primary); }
    .info-icon i { color: var(--accent); font-size: 20px; }

    .info-text .lbl { font-size: 13px; letter-spacing: 1.5px; color: var(--accent); text-transform: uppercase; margin-bottom: 4px; }
    .info-text .val { font-size: 17px; font-weight: 600; color: var(--white); }

    .contact-form form { display: flex; flex-direction: column; gap: 18px; }

    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

    .form-control {
      width: 100%;
      height: 63px;
      padding: 0 20px;
      font-family: "Urbanist", sans-serif;
      font-size: 15px;
      font-weight: 500;
      color: var(--black);
      background: var(--white);
      border: 2px solid transparent;
      border-radius: 12px;
      outline: none;
      transition: border-color 0.3s;
    }
    .form-control:focus { border-color: var(--primary); }
    .form-control::placeholder { color: var(--text2); }

    textarea.form-control { height: 155px; padding-top: 18px; resize: none; }

    .submit-btn {
      display: inline-flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 0 14px 0 24px;
      height: 60px;
      font-size: 18px;
      font-weight: 700;
      font-family: "Urbanist", sans-serif;
      background: var(--accent);
      color: var(--black);
      border: none;
      border-radius: 10px;
      cursor: pointer;
      transition: all 0.4s;
      width: 100%;
      justify-content: center;
      gap: 16px;
    }
    .submit-btn:hover { background: var(--primary); color: var(--white); }

    /* ─── FAQ ─── */
    .faq-section { padding: 48px 0; }
    .faq-list { margin-top: 48px; display: flex; flex-direction: column; gap: 16px; }
    .faq-item {
      background: var(--grey);
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
    }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 22px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      cursor: pointer;
      text-align: left;
      font-family: "Urbanist", sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      transition: color 0.3s;
    }
    .faq-question:hover { color: var(--accent); }
    .faq-question .faq-icon {
      width: 32px; height: 32px;
      background: var(--primary);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
      font-size: 14px; color: var(--white);
      transition: transform 0.35s, background 0.3s;
    }
    .faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: var(--black); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.4s ease, padding 0.3s;
      padding: 0 28px;
    }
    .faq-answer p { font-size: 15px; line-height: 1.7; color: var(--text); padding-bottom: 22px; }
    .faq-item.open .faq-answer { max-height: 300px; }

    /* ─── BLOG ─── */
    .blog-section { padding: 48px 0; }
    .blog-grid {
      margin-top: 48px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }
    .blog-card {
      background: var(--grey);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(56,32,232,0.2); }
    .blog-thumb {
      width: 100%; height: 200px; object-fit: cover;
      background: var(--primary);
      display: flex; align-items: center; justify-content: center;
      font-size: 48px; color: rgba(255,255,255,0.15);
    }
    .blog-thumb-placeholder { width: 100%; height: 200px; background: linear-gradient(135deg,#354995 0%,#191919 100%); display:flex; align-items:center; justify-content:center; }
    .blog-thumb-placeholder i { font-size: 48px; color: rgba(255,255,255,0.15); }
    .blog-body { padding: 24px; }
    .blog-tag {
      display: inline-block;
      font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 10px;
    }
    .blog-body h5 { font-size: 18px; font-weight: 800; color: var(--white); margin-bottom: 10px; line-height: 1.4; }
    .blog-body p { font-size: 14px; color: var(--text); line-height: 1.6; margin-bottom: 18px; }
    .blog-meta { font-size: 12px; color: rgba(255,255,255,0.35); display: flex; gap: 14px; }

    /* ─── FRANCHISE / TABS ─── */
    .tab-bar {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }
    .tab-btn {
      padding: 12px 28px;
      border-radius: 10px;
      border: 1.5px solid rgba(255,255,255,0.12);
      background: transparent;
      font-family: "Urbanist", sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--text);
      cursor: pointer;
      transition: all 0.3s;
    }
    .tab-btn:hover { border-color: var(--primary); color: var(--white); }
    .tab-btn.active { background: var(--primary); border-color: var(--primary); color: var(--white); }

    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    .franchise-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    @media (max-width: 1024px) { .franchise-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px)  { .franchise-grid { grid-template-columns: 1fr; } }

    .franchise-card {
      background: var(--grey);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .franchise-card:hover { transform: translateY(-5px); box-shadow: 0 16px 40px rgba(53,73,149,0.22); }

    .franchise-card-header {
      background: var(--primary);
      padding: 22px 24px 18px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    .franchise-card-header h5 { font-size: 18px; color: var(--white); margin: 0; }
    .franchise-badge {
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      background: var(--accent);
      color: var(--black);
      border-radius: 6px;
      padding: 4px 10px;
    }
    .franchise-card-body { padding: 20px 24px 24px; }
    .franchise-detail {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 12px;
      font-size: 14px;
      color: var(--text);
    }
    .franchise-detail:last-child { margin-bottom: 0; }
    .franchise-detail i { color: var(--accent); margin-top: 3px; flex-shrink: 0; width: 14px; }
    .franchise-card-footer {
      padding: 0 24px 20px;
      display: flex;
      gap: 10px;
    }
    .fc-btn {
      flex: 1;
      height: 42px;
      border-radius: 8px;
      border: 1.5px solid var(--primary);
      background: transparent;
      font-family: "Urbanist", sans-serif;
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      cursor: pointer;
      transition: all 0.3s;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }
    .fc-btn.filled { background: var(--primary); }
    .fc-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--black); }

    /* franchise inquiry form section */
    .franchise-form-section {
      background: var(--grey);
      border-radius: 30px;
      padding: 56px 60px;
      margin: 0 0 48px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      position: relative;
      overflow: hidden;
    }
    .franchise-form-section::before {
      content: "";
      position: absolute;
      top: -80px; right: -80px;
      width: 320px; height: 320px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(53,73,149,0.25) 0%, transparent 70%);
      pointer-events: none;
    }
    @media (max-width: 900px) {
      .franchise-form-section { grid-template-columns: 1fr; padding: 36px 28px; gap: 36px; }
    }

    /* ─── BLOG LISTING PAGE ─── */
    .blog-layout {
      display: grid;
      grid-template-columns: 1fr 320px;
      gap: 40px;
      align-items: start;
      padding: 48px 0 64px;
    }

    /* listing cards — larger on full page */
    .blog-list { display: flex; flex-direction: column; gap: 28px; }

    .blog-list-card {
      background: var(--grey);
      border-radius: 16px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.07);
      display: grid;
      grid-template-columns: 280px 1fr;
      transition: transform 0.3s, box-shadow 0.3s;
    }
    .blog-list-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(53,73,149,0.22); }

    .blog-list-thumb {
      width: 100%;
      height: 100%;
      min-height: 200px;
      object-fit: cover;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 56px;
      color: rgba(255,255,255,0.12);
    }
    .blog-list-thumb.c1 { background: linear-gradient(135deg, #354995 0%, #191919 100%); }
    .blog-list-thumb.c2 { background: linear-gradient(135deg, #1a4030 0%, #191919 100%); }
    .blog-list-thumb.c3 { background: linear-gradient(135deg, #4a2010 0%, #191919 100%); }
    .blog-list-thumb.c4 { background: linear-gradient(135deg, #2a0a40 0%, #191919 100%); }
    .blog-list-thumb.c5 { background: linear-gradient(135deg, #0a3040 0%, #191919 100%); }
    .blog-list-thumb.c6 { background: linear-gradient(135deg, #403010 0%, #191919 100%); }

    .blog-list-body {
      padding: 28px 28px 24px;
      display: flex;
      flex-direction: column;
    }
    .blog-list-body .blog-tag { margin-bottom: 10px; }
    .blog-list-body h4 {
      font-size: 20px;
      line-height: 28px;
      font-weight: 800;
      color: var(--white);
      margin-bottom: 12px;
    }
    .blog-list-body p {
      font-size: 14px;
      line-height: 1.7;
      color: var(--text);
      margin-bottom: 20px;
      flex: 1;
    }
    .blog-list-footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
    }
    .blog-meta-row {
      display: flex;
      align-items: center;
      gap: 16px;
      font-size: 12px;
      color: rgba(255,255,255,0.35);
    }
    .blog-meta-row i { color: var(--accent); margin-right: 4px; }
    .blog-read-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      font-weight: 700;
      color: var(--accent);
      transition: gap 0.3s;
      white-space: nowrap;
    }
    .blog-read-link:hover { gap: 10px; color: var(--white); }

    /* ── Sidebar ── */
    .blog-sidebar { display: flex; flex-direction: column; gap: 28px; }

    .sidebar-widget {
      background: var(--grey);
      border-radius: 16px;
      padding: 28px;
      border: 1px solid rgba(255,255,255,0.07);
    }

    .sidebar-widget h6 {
      font-size: 16px;
      font-weight: 800;
      color: var(--white);
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 20px;
      padding-bottom: 14px;
      border-bottom: 2px solid var(--primary);
    }

    /* search */
    .sidebar-search {
      position: relative;
    }
    .sidebar-search input {
      width: 100%;
      height: 50px;
      padding: 0 50px 0 18px;
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 10px;
      font-family: "Urbanist", sans-serif;
      font-size: 14px;
      color: var(--white);
      outline: none;
      transition: border-color 0.3s;
    }
    .sidebar-search input:focus { border-color: var(--primary); }
    .sidebar-search input::placeholder { color: var(--text2); }
    .sidebar-search button {
      position: absolute;
      right: 0; top: 0;
      width: 50px; height: 50px;
      background: var(--primary);
      border: none;
      border-radius: 0 10px 10px 0;
      cursor: pointer;
      display: flex; align-items: center; justify-content: center;
      transition: background 0.3s;
    }
    .sidebar-search button:hover { background: var(--accent); }
    .sidebar-search button i { color: var(--white); font-size: 15px; }
    .sidebar-search button:hover i { color: var(--black); }

    /* categories */
    .cat-list { display: flex; flex-direction: column; gap: 10px; }
    .cat-item {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 10px 16px;
      background: rgba(255,255,255,0.04);
      border-radius: 10px;
      border: 1px solid rgba(255,255,255,0.06);
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      transition: background 0.3s, color 0.3s, border-color 0.3s;
      text-decoration: none;
    }
    .cat-item:hover, .cat-item.active {
      background: var(--primary);
      color: var(--white);
      border-color: var(--primary);
    }
    .cat-count {
      font-size: 11px;
      font-weight: 700;
      background: rgba(255,255,255,0.1);
      border-radius: 20px;
      padding: 2px 9px;
      color: var(--accent);
    }
    .cat-item:hover .cat-count, .cat-item.active .cat-count {
      background: rgba(255,255,255,0.18);
    }

    /* recent posts */
    .recent-list { display: flex; flex-direction: column; gap: 16px; }
    .recent-item { display: flex; gap: 14px; align-items: flex-start; }
    .recent-thumb {
      width: 64px; height: 64px;
      border-radius: 10px;
      flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 22px; color: rgba(255,255,255,0.2);
    }
    .recent-thumb.r1 { background: linear-gradient(135deg, #354995, #191919); }
    .recent-thumb.r2 { background: linear-gradient(135deg, #1a4030, #191919); }
    .recent-thumb.r3 { background: linear-gradient(135deg, #4a2010, #191919); }
    .recent-thumb.r4 { background: linear-gradient(135deg, #2a0a40, #191919); }
    .recent-info a {
      font-size: 13px;
      font-weight: 700;
      color: var(--white);
      line-height: 1.4;
      display: block;
      margin-bottom: 4px;
      transition: color 0.3s;
    }
    .recent-info a:hover { color: var(--accent); }
    .recent-info span { font-size: 11px; color: rgba(255,255,255,0.35); }

    /* tags cloud */
    .tags-cloud { display: flex; flex-wrap: wrap; gap: 8px; }
    .tag-pill {
      display: inline-block;
      padding: 6px 14px;
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 20px;
      font-size: 12px;
      font-weight: 600;
      color: var(--text);
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }
    .tag-pill:hover { background: var(--accent); color: var(--black); border-color: var(--accent); }

    /* pagination */
    .blog-pagination {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-top: 40px;
    }
    .page-btn {
      width: 42px; height: 42px;
      border-radius: 10px;
      background: var(--grey);
      border: 1px solid rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700;
      color: var(--text);
      cursor: pointer;
      transition: all 0.3s;
      text-decoration: none;
    }
    .page-btn:hover, .page-btn.active { background: var(--primary); color: var(--white); border-color: var(--primary); }

    @media (max-width: 1024px) {
      .blog-layout { grid-template-columns: 1fr; }
      .blog-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .blog-list-card { grid-template-columns: 1fr; }
      .blog-list-thumb { min-height: 180px; }
      .blog-sidebar { grid-template-columns: 1fr; }
    }

    /* ─── FOOTER ─── */
    .footer {
      background: var(--grey);
      padding: 34px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.3fr;
      gap: 50px;
      padding-bottom: 40px;
      border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .footer-logo-img { width: 200px; margin-bottom: 22px; }

    .footer-about p { font-size: 15px; line-height: 24px; color: var(--text); margin-bottom: 28px; }

    .social-row { display: flex; gap: 12px; }
    .social-btn {
      width: 44px; height: 44px;
      background: rgba(255,255,255,0.08);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s;
    }
    .social-btn:hover { background: var(--primary); transform: translateY(-4px); }
    .social-btn i { color: var(--white); font-size: 17px; }

    .footer-col h4 {
      font-size: 22px; line-height: 28px;
      color: var(--primary);
      margin-bottom: 26px;
      font-weight: 600;
    }

    .footer-links li { margin-bottom: 14px; }
    .footer-links a {
      font-size: 16px;
      font-weight: 500;
      color: var(--text);
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: color 0.3s;
    }
    .footer-links a i { font-size: 11px; color: var(--primary); }
    .footer-links a:hover { color: var(--accent); }

    .footer-contact li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      margin-bottom: 18px;
      font-size: 15px;
      color: var(--text);
    }
    .footer-contact li i { color: var(--primary); margin-top: 4px; flex-shrink: 0; }

    .footer-newsletter {}

    .newsletter-form {
      position: relative;
      margin-bottom: 16px;
    }

    .newsletter-input {
      width: 100%;
      height: 60px;
      padding: 0 70px 0 20px;
      font-family: "Urbanist", sans-serif;
      font-size: 14px;
      background: rgba(255,255,255,0.08);
      border: 1px solid transparent;
      border-radius: 10px;
      color: var(--text);
      outline: none;
      transition: border-color 0.3s;
    }
    .newsletter-input:focus { border-color: var(--primary); }
    .newsletter-input::placeholder { color: var(--text); }

    .newsletter-submit {
      position: absolute;
      right: 0; top: 0;
      width: 60px; height: 60px;
      background: var(--accent);
      border: none;
      border-radius: 0 10px 10px 0;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.3s;
    }
    .newsletter-submit:hover { background: var(--primary); }
    .newsletter-submit i { font-size: 18px; color: var(--black); }
    .newsletter-submit:hover i { color: var(--white); }

    .newsletter-note { font-size: 12px; color: var(--text); line-height: 18px; }
    .newsletter-note a { color: var(--text); text-decoration: underline; }

    .footer-bottom {
      text-align: center;
      padding: 22px 0;
    }
    .footer-bottom p { font-size: 13px; font-weight: 400; color: var(--text); }
    .footer-bottom a { color: var(--accent); }

    /* ─── SCROLL ANIMATIONS ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(34px);
      transition: opacity 0.7s ease, transform 0.7s ease;
      transition-delay: var(--d, 0ms);
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    .zoom-in {
      opacity: 0;
      transform: scale(0.82);
      transition: opacity 0.8s ease, transform 0.8s ease;
      transition-delay: var(--d, 0ms);
      transform-origin: center center;
    }
    .zoom-in.visible {
      opacity: 1;
      transform: scale(1);
    }

    /* ─── RESPONSIVE ─── */
    @media (max-width: 1100px) {
      h1 { font-size: 52px; line-height: 58px; }
      h2 { font-size: 46px; line-height: 54px; }
      .banner-row { grid-template-columns: 1fr; }
      .hero-section { min-height: 100svh; }
      .services-panel-grid { grid-template-columns: 1fr; }
      .about-grid { grid-template-columns: 1fr; }
      .about-imgs { padding: 28px 28px 0; }
      .about-content { padding: 28px 28px 36px; }
      .how-grid { grid-template-columns: repeat(2, 1fr); }
      .pricing-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
      .testi-grid { grid-template-columns: 1fr; }
      .contact-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 768px) {
      h1 { font-size: 38px; line-height: 44px; }
      h2 { font-size: 36px; line-height: 44px; }
      .hamburger { display: flex; z-index: 1000001; position: relative; }
      .site-header { position: relative; z-index: 1000002; }
      .phone-text { display: none; }

      /* keep mobile drag locked on index/about only */
      body.page-index,
      body.page-about {
        overflow-x: hidden;
      }
      body.page-index .hero-section,
      body.page-about .page-banner,
      body.page-index .services-section,
      body.page-about .about-section {
        overflow-x: hidden;
      }

      /* ── Dropdown nav (fixed below header, WaxKing style) ── */
      .navbar-nav {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        position: fixed;
        top: 88px;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 1000000;
        background: var(--primary);
        gap: 0;
        padding: 8px 20px 20px;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s;
        pointer-events: none;
        overflow-y: auto;
        max-width: 100vw;
      }
      .navbar-nav.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        pointer-events: auto;
      }
      .navbar-nav li {
        width: 100%;
      }
      .navbar-nav li a {
        display: block;
        padding: 13px 16px;
        font-size: 15px;
        font-weight: 600;
        color: var(--white);
        letter-spacing: 0.2px;
        border-bottom: 1px solid rgba(255,255,255,0.12);
        transition: background 0.2s;
      }
      .navbar-nav li:last-child a { border-bottom: none; }
      .navbar-nav li a:hover,
      .navbar-nav li a.active {
        background: rgba(255,255,255,0.08);
        color: var(--accent);
      }
      /* ── end dropdown nav ── */

      .banner-right { display: block; }
      .banner-row { grid-template-columns: 1fr; }
      .header-right .phone-link { display: flex; }
      .page-banner { min-height: 300px; }
      .page-banner h1 { font-size: 40px; line-height: 46px; }
      .page-banner-content { padding: 24px 0 40px; }
      .services-panel-grid { grid-template-columns: 1fr; }
      .services-header { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr 1fr; }
      .pricing-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .blog-grid { grid-template-columns: 1fr; }
      .padding-rl { padding-left: 20px; padding-right: 20px; }
      .pricing-section { padding-left: 20px; padding-right: 20px; }
      .hero-content { padding: 30px 0 80px; }
      .contact-grid { grid-template-columns: 1fr; }
      .form-row { grid-template-columns: 1fr; }
      .stats-inner { flex-direction: column; gap: 36px; }
      .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); padding-bottom: 36px; width: 100%; }
      .stat-item:last-child { border-bottom: none; padding-bottom: 0; }
      .about-imgs { padding: 20px 16px 0; }
      .about-content { padding: 20px 16px 28px; }
      .supreme-section { padding: 40px 14px 135px; }
      .floating-cta {
        left: 16px;
        right: 16px;
        top: auto;
        bottom: 16px;
        transform: none;
        width: auto;
        padding: 16px 14px 14px;
      }
      .floating-cta.fade-up,
      .floating-cta.fade-up.visible {
        transform: none;
      }
      .floating-cta h3 {
        font-size: 16px;
        line-height: 1.4;
      }
      #btn-top {
        right: 16px;
        bottom: 244px;
      }
    }

    @media (max-width: 480px) {
      .how-grid { grid-template-columns: 1fr; }
      .services-panel-grid { grid-template-columns: 1fr; }
      .page-banner h1 { font-size: 32px; line-height: 40px; }
      .navbar-brand img { width: 160px; }
      .main-container { padding: 0 16px; }
      .footer-grid { grid-template-columns: 1fr; }
      .stat-item .num { font-size: 48px; }
      .floating-cta-call,
      .floating-cta-apply {
        min-height: 50px;
        font-size: 16px;
      }
    }
