    :root {
      /* --navy-950: #0b3d2e;
      --navy-900: #14532d;
      --navy-800:  #166534;
      --navy-700: #15803d;
      --blue-500:  #10b981;
      --blue-300:  #6ee7b7;
      --cyan-glow: #2dd4bf;
      --off-white:  #f8fffc;
      --ink:  #123524;
      --muted: #6b7f75;
      --gradient-brand: linear-gradient(
        135deg,
        var(--mint-300) 0%,
        var(--emerald-500) 55%,
        #0f766e 100%
      ); */
      
      
      --navy-950: #0A235C;
      --navy-900: #163A7A;
      --navy-800: #1E4F9C;
      --navy-700: #2B69BF;
    
      --blue-500: #2E8FEF;
      --blue-300: #67C8F6;
    
      --cyan-glow: #4ED9E6;
    
      --off-white: #F8FBFF;
    
      --ink: #16335F;
      --muted: #7283A2;
    
      --gradient-brand: linear-gradient(
        135deg,
        #67C8F6 0%,
        #2E8FEF 55%,
        #163A7A 100%
      );
      
      
      /*  --navy-950: #060f2b;*/
      /*--navy-900: #0a1c4d;*/
      /*--navy-800: #122a63;*/
      /*--navy-700: #1a3878;*/
      /*--blue-500: #2e8ff0;*/
      /*--blue-300: #6fc3ff;*/
      /*--cyan-glow: #3de0d8;*/
      /*--off-white: #f4f8fc;*/
      /*--ink: #0a1330;*/
      /*--muted: #6b7a99;*/
      /*--gradient-brand: linear-gradient(135deg, var(--blue-300) 0%, var(--blue-500) 55%, #1657b8 100%); */
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: var(--ink);
      background: var(--off-white);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    .font-display {
      font-family: 'Sora', sans-serif;
    }

    .eyebrow {
      text-transform: uppercase;
      letter-spacing: .18em;
      font-size: .72rem;
      font-weight: 700;
      color: var(--blue-500);
    }

    .eyebrow.on-dark {
      color: var(--blue-300);
    }

    .text-grad {
      background: var(--gradient-brand);
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .btn-brand {
      background: var(--gradient-brand);
      border: none;
      color: #fff;
      font-weight: 700;
      padding: .75rem 1.6rem;
      border-radius: 50px;
      box-shadow: 0 8px 24px rgba(46, 143, 240, .35);
      transition: transform .25s ease, box-shadow .25s ease;
    }

    .btn-brand:hover {
      transform: translateY(-2px);
      box-shadow: 0 12px 30px rgba(46, 143, 240, .45);
      color: #fff;
    }

    .btn-outline-brand {
      border: 2px solid rgba(255, 255, 255, .55);
      color: #fff;
      background: transparent;
      font-weight: 700;
      padding: .7rem 1.5rem;
      border-radius: 50px;
      transition: all .25s ease;
    }

    .btn-outline-brand:hover {
      background: rgba(255, 255, 255, .12);
      color: #fff;
      border-color: #fff;
    }

    section {
      position: relative;
    }

    .bg-navy {
      background: var(--navy-900);
      color: #fff;
    }

    .bg-navy-deep {
      background: var(--navy-950);
      color: #fff;
    }

    /* ---------- NAVBAR ---------- */
    .navbar-custom {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      padding: .9rem 0;
      transition: all .35s ease;
      background: rgba(6, 15, 43, 0);
      background-color: #15213b;
    }

    .navbar-custom.scrolled {
      background: rgba(6, 15, 43, .92);
      backdrop-filter: blur(10px);
      box-shadow: 0 8px 30px rgba(0, 0, 0, .25);
      padding: .55rem 0;
    }

    .nav-logo-img {
      height: 42px;
      width: auto;
      border-radius: 8px;
    }

    .navbar-custom .nav-link {
      color: #d9e4f5 !important;
      font-weight: 600;
      font-size: .92rem;
      margin: 0 .55rem;
      position: relative;
    }

    .navbar-custom .nav-link:hover {
      color: #fff !important;
    }

    .navbar-custom .nav-link::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -4px;
      width: 0;
      height: 2px;
      background: var(--blue-300);
      transition: width .25s ease;
    }

    .navbar-custom .nav-link:hover::after {
      width: 100%;
    }

    .navbar-toggler {
      border: none;
      color: #fff;
    }

    .navbar-toggler:focus {
      box-shadow: none;
    }

    /* My Account Dropdown */
      #accountDropdown + .dropdown-menu {
          min-width: 190px;
          padding: 7px;
          border: 1px solid #e8edf4;
          border-radius: 10px;
          box-shadow: 0 8px 22px rgba(22, 51, 95, 0.10);
      }

      /* Items */
      #accountDropdown + .dropdown-menu .dropdown-item {
          padding: 9px 12px;
          border-radius: 7px;
          color: #16335F;
          font-size: 13px;
          transition: .2s ease;
      }

      /* Hover */
      #accountDropdown + .dropdown-menu .dropdown-item:hover {
          background: #F0F7FF;
          color: #163A7A;
      }

      /* Divider */
      #accountDropdown + .dropdown-menu .dropdown-divider {
          margin: 5px 4px;
          border-color: #edf0f5;
      }

      .account-menu-icon {  
        color: #2E8FEF;  
        font-size: 16px;     
        width: 20px;     
        margin-right: 8px;  
      }
      #accountDropdown + .dropdown-menu .dropdown-item {  
        display: flex;     
        align-items: center;     
        font-size: 13px;     
        font-weight: 700;     
        margin-bottom: 2px;  
      }
    /* =========================================================
   SERVICES DROPDOWN
    ========================================================= */

    .services-dropdown {
        width: 340px;
        padding: 10px;
        border: 1px solid #e4ebf4;
        border-radius: 16px;
        box-shadow: 0 15px 40px rgba(10, 35, 92, .12);
        margin-top: 3px;
    }


    /* Dropdown item */

    .services-dropdown .dropdown-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 11px 10px;
        border-radius: 10px;
        color: #16335F;
        white-space: normal;
        transition: .2s ease;
    }


    .services-dropdown .dropdown-item:hover {
        background: #F0F7FF;
        color: #163A7A;
    }


    /* Icon */

    .service-menu-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;

        display: flex;
        align-items: center;
        justify-content: center;

        border-radius: 10px;

        background: #EEF6FF;
        color: #2E8FEF;

        font-size: 18px;
    }


    /* Service name */

    .services-dropdown strong {
        display: block;

        font-size: 13px;
        font-weight: 700;

        margin-bottom: 2px;
    }


    /* Description */

    .services-dropdown small {
        display: block;

        color: #7A8AA3;

        font-size: 11px;
        line-height: 1.3;
    }


    /* Desktop hover */

    @media (min-width: 992px) {

        .navbar .dropdown:hover .dropdown-menu {
            display: block;
        }

        .navbar .dropdown-menu {
            animation: dropdownFade .18s ease;
        }

    }


    @keyframes dropdownFade {

        from {
            opacity: 0;
            transform: translateY(6px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }

    }


    /* Mobile */

    @media (max-width: 991px) {

        .services-dropdown {
            width: 100%;
            border: 0;
            box-shadow: none;
            background: #F8FBFF;
            margin-top: 5px;
        }

        .services-dropdown .dropdown-item {
            padding: 10px;
        }

    }

    /* ---------- HERO ---------- */
   /* =========================================================
   PREMIUM HERO
========================================================= */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    radial-gradient(
      circle at 78% 25%,
      rgba(46, 143, 239, .25),
      transparent 32%
    ),
    radial-gradient(
      circle at 15% 80%,
      rgba(103, 200, 246, .10),
      transparent 30%
    ),
    linear-gradient(
      135deg,
      #071d4d 0%,
      #0a235c 48%,
      #102f6d 100%
    );

  padding: 9rem 0 8rem;
}


/* ---------------------------------------------------------
   BACKGROUND
--------------------------------------------------------- */

.hero-grid {
  position: absolute;
  inset: 0;

  background-image:
    linear-gradient(
      rgba(255,255,255,.025) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255,255,255,.025) 1px,
      transparent 1px
    );

  background-size: 55px 55px;

  mask-image: linear-gradient(
    to bottom,
    black,
    transparent 85%
  );

  pointer-events: none;
}


.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 420px;
  height: 420px;
  right: -150px;
  top: -150px;
  background: rgba(46,143,239,.13);
}

.hero-orb-2 {
  width: 260px;
  height: 260px;
  left: -130px;
  bottom: 10%;
  background: rgba(103,200,246,.08);
}


/* ---------------------------------------------------------
   CONTENT
--------------------------------------------------------- */

.hero-content {
  z-index: 3;
}


/* ---------------------------------------------------------
   KICKER
--------------------------------------------------------- */

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: #dcecff;

  font-size: .78rem;
  font-weight: 800;

  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-kicker-dot {
  width: 9px;
  height: 9px;

  border-radius: 50%;

  background: #58d6a3;

  box-shadow:
    0 0 0 5px rgba(88,214,163,.12),
    0 0 18px rgba(88,214,163,.5);
}

.hero-kicker-location {
  color: #72c9f5;
}


/* ---------------------------------------------------------
   TITLE
--------------------------------------------------------- */

.hero-title {
  max-width: 680px;

  color: #ffffff;

  font-size: clamp(
    2.7rem,
    5vw,
    4.7rem
  );

  font-weight: 850;

  line-height: 1.02;

  letter-spacing: -.045em;
}


.hero-highlight {
  display: block;

  background:
    linear-gradient(
      100deg,
      #ffffff 0%,
      #7ed8ff 48%,
      #48b9ff 100%
    );

  -webkit-background-clip: text;
  background-clip: text;

  -webkit-text-fill-color: transparent;
}


/* ---------------------------------------------------------
   DESCRIPTION
--------------------------------------------------------- */

.hero-description {
  max-width: 550px;

  color: #bdcce5;

  font-size: 1.08rem;
  line-height: 1.75;
}


/* ---------------------------------------------------------
   TRUST
--------------------------------------------------------- */

.hero-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-trust-list span {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 8px 12px;

  border-radius: 50px;

  color: #e7f3ff;

  font-size: .78rem;
  font-weight: 600;

  background: rgba(255,255,255,.065);

  border: 1px solid rgba(255,255,255,.11);

  backdrop-filter: blur(8px);
}

.hero-trust-list i {
  color: #66d5ff;
}


/* ---------------------------------------------------------
   ACTIONS
--------------------------------------------------------- */

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}


/* Primary button */

.hero-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  padding: 15px 22px;

  border-radius: 12px;

  background: #ffffff;
  color: var(--navy-900);

  font-size: .95rem;
  font-weight: 800;

  text-decoration: none;

  box-shadow:
    0 12px 35px rgba(0,0,0,.20);

  transition: .25s ease;
}

.hero-primary-btn i {
  transition: transform .25s ease;
}

.hero-primary-btn:hover {
  color: var(--navy-900);
  transform: translateY(-3px);

  box-shadow:
    0 17px 40px rgba(0,0,0,.28);
}

.hero-primary-btn:hover i {
  transform: translateX(4px);
}


/* Phone */

.hero-phone-btn {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #ffffff;
  text-decoration: none;

  padding: 7px 12px 7px 7px;

  border-radius: 13px;

  transition: .2s ease;
}

.hero-phone-btn:hover {
  color: #ffffff;
  background: rgba(255,255,255,.07);
}

.hero-phone-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 10px;

  background: rgba(255,255,255,.1);

  color: #72d5ff;
}

.hero-phone-btn small {
  display: block;

  color: #9fb3d5;

  font-size: .68rem;
}

.hero-phone-btn strong {
  display: block;

  font-size: .88rem;
}


/* Note */

.hero-note {
  display: flex;
  align-items: center;
  gap: 7px;

  color: #91a8ca;

  font-size: .76rem;
}

.hero-note i {
  color: #58d6a3;
}


/* =========================================================
   HERO VISUAL
========================================================= */

.hero-visual {
  position: relative;

  width: min(100%, 560px);

  margin: 0 auto;

  padding: 22px;
}


/* Decorative frame */

.hero-visual::before {
  content: "";

  position: absolute;

  width: 80%;
  height: 80%;

  right: -5%;
  top: 5%;

  border: 1px solid rgba(116,205,255,.22);

  border-radius: 40px;

  transform: rotate(4deg);
}


/* Image */

.hero-image-wrap {
  position: relative;

  z-index: 2;

  overflow: hidden;

  border-radius: 30px;

  box-shadow:
    0 35px 80px rgba(0,0,0,.35);

  border: 7px solid rgba(255,255,255,.10);
}


.hero-main-image {
  width: 100%;
  height: 570px;

  object-fit: cover;

  display: block;

  transition: transform .6s ease;
}

.hero-image-wrap:hover .hero-main-image {
  transform: scale(1.035);
}


/* Image overlay */

.hero-image-overlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      180deg,
      transparent 50%,
      rgba(5,20,50,.32)
    );
}


/* =========================================================
   FLOATING CARDS
========================================================= */

.hero-rating-card {
  position: absolute;

  z-index: 5;

  left: -5px;
  bottom: 60px;

  display: flex;
  flex-direction: column;

  min-width: 175px;

  padding: 17px 19px;

  border-radius: 16px;

  background: rgba(255,255,255,.96);

  box-shadow:
    0 20px 45px rgba(0,0,0,.20);
}

.hero-stars {
  color: #f5a623;

  letter-spacing: 2px;

  font-size: .85rem;

  margin-bottom: 4px;
}

.hero-rating-card strong {
  color: var(--navy-900);

  font-size: .9rem;
}

.hero-rating-card span {
  color: #75839a;

  font-size: .7rem;
}


/* Booking */

.hero-booking-card {
  position: absolute;

  z-index: 5;

  right: -12px;
  top: 55px;

  min-width: 190px;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 13px 15px;

  border-radius: 15px;

  background: rgba(255,255,255,.96);

  box-shadow:
    0 20px 45px rgba(0,0,0,.18);
}

.hero-booking-icon {
  width: 40px;
  height: 40px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 11px;

  background: #eaf6ff;

  color: var(--blue-500);
}

.hero-booking-card small {
  display: block;

  color: #7b8798;

  font-size: .65rem;
}

.hero-booking-card strong {
  display: block;

  color: var(--navy-900);

  font-size: .82rem;
}

.hero-booking-card > i {
  color: var(--blue-500);
}


/* Clean badge */

.hero-clean-badge {
  position: absolute;

  z-index: 6;

  right: 25px;
  bottom: 25px;

  display: flex;
  align-items: center;
  gap: 10px;

  padding: 10px 14px;

  border-radius: 14px;

  background: rgba(9,31,75,.90);

  color: #ffffff;

  box-shadow:
    0 15px 35px rgba(0,0,0,.25);

  backdrop-filter: blur(10px);
}

.hero-clean-check {
  width: 32px;
  height: 32px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;

  background: #55d69e;

  color: #083c2b;
}

.hero-clean-badge strong {
  display: block;

  font-size: .76rem;
}

.hero-clean-badge span {
  display: block;

  color: #a9bddb;

  font-size: .64rem;
}


/* Decorative circle */

.hero-circle {
  position: absolute;

  z-index: 1;

  width: 130px;
  height: 130px;

  right: -35px;
  bottom: -35px;

  border-radius: 50%;

  border: 1px solid rgba(103,200,246,.25);
}


/* =========================================================
   WAVE
========================================================= */

.hero-wave {
  position: absolute;

  left: 0;
  right: 0;
  bottom: -1px;

  line-height: 0;

  z-index: 4;
}

.hero-wave svg {
  display: block;

  width: 100%;
  height: 95px;
}

.hero-wave path {
  fill: #ffffff;
}


/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 991px) {

  .hero {
    min-height: auto;
    padding: 8rem 0 7rem;
  }

  .hero-title {
    font-size: clamp(2.6rem, 8vw, 4rem);
  }

  .hero-visual {
    margin-top: 20px;
  }

  .hero-main-image {
    height: 500px;
  }

}


@media (max-width: 575px) {

  .hero {
    padding-top: 7rem;
    padding-bottom: 6rem;
  }

  .hero-title {
    font-size: 2.65rem;
  }

  .hero-description {
    font-size: .98rem;
  }

  .hero-trust-list span {
    font-size: .7rem;
  }

  .hero-primary-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-phone-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-visual {
    padding: 10px;
  }

  .hero-main-image {
    height: 420px;
  }

  .hero-rating-card {
    left: -5px;
    bottom: 30px;
  }

  .hero-booking-card {
    right: -5px;
    top: 30px;
    min-width: 165px;
  }

  .hero-clean-badge {
    right: 15px;
    bottom: 15px;
  }

  .hero-wave svg {
    height: 60px;
  }

}

    /* ---------- ABOUT ---------- */
    .about-card {
      background: #fff;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 20px 45px rgba(10, 28, 77, .08);
      border: 1px solid #e7edf7;
    }

    .mission-quote {
      border-left: 4px solid var(--blue-500);
      padding-left: 1.1rem;
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      font-size: 1.15rem;
      color: var(--navy-900);
    }

    /* ---------- ICON BADGES ---------- */
    .icon-badge {
      width: 52px;
      height: 52px;
      min-width: 52px;
      border-radius: 14px;
      background: var(--gradient-brand);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
    }

    .icon-badge svg {
      width: 26px;
      height: 26px;
    }

    .icon-badge.soft {
      background: rgba(46, 143, 240, .12);
      color: var(--blue-500);
    }

    .icon-badge.on-dark.soft {
      background: rgba(111, 195, 255, .14);
      color: var(--blue-300);
    }

    /* why choose us */
    .feature-row {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      padding: 1.1rem 0;
      border-bottom: 1px solid rgba(255, 255, 255, .08);
    }

    .feature-row:last-child {
      border-bottom: none;
    }

    .feature-row h6 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      margin-bottom: .15rem;
    }

    .feature-row p {
      color: #aebde0;
      font-size: .9rem;
      margin: 0;
    }

    /* ---------- SERVICES ---------- */
    .service-card {
      background: #fff;
      border-radius: 18px;
      padding: 1.8rem;
      height: 100%;
      border: 1px solid #e7edf7;
      transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    }

    .service-card:hover {
      transform: translateY(-8px);
      box-shadow: 0 24px 50px rgba(10, 28, 77, .12);
      border-color: transparent;
    }

    .service-card ul {
      padding-left: 1.1rem;
      margin-bottom: 1rem;
      color: var(--muted);
      font-size: .9rem;
    }

    .service-card ul li {
      margin-bottom: .15rem;
    }

    .service-card h5 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
    }

    .service-link {
      font-weight: 700;
      font-size: .85rem;
      color: var(--blue-500);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: .35rem;
    }

    .service-link svg {
      width: 14px;
      height: 14px;
      transition: transform .25s ease;
    }

    .service-link:hover svg {
      transform: translateX(4px);
    }

    .service-link:hover {
      color: var(--blue-500);
    }

    /* ---------- PROCESS ---------- */
    .process-track {
      display: flex;
      overflow-x: auto;
      gap: 1.4rem;
      padding-bottom: 1rem;
      scroll-snap-type: x proximity;
    }

    .process-track::-webkit-scrollbar {
      height: 6px;
    }

    .process-track::-webkit-scrollbar-thumb {
      background: rgba(255, 255, 255, .2);
      border-radius: 10px;
    }

    .process-step {
      scroll-snap-align: start;
      min-width: 230px;
      max-width: 230px;
      background: rgba(255, 255, 255, .05);
      border: 1px solid rgba(255, 255, 255, .1);
      border-radius: 18px;
      padding: 1.5rem;
    }

    .process-num {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 2rem;
      color: transparent;
      -webkit-text-stroke: 1.5px var(--blue-300);
      opacity: .7;
    }

    .process-step h6 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      margin: .5rem 0;
    }

    .process-step p {
      color: #aebde0;
      font-size: .87rem;
      margin: 0;
    }

    /* ---------- BENEFITS ---------- */
    .benefit-item {
      display: flex;
      gap: .7rem;
      align-items: center;
      background: #fff;
      border: 1px solid #e7edf7;
      border-radius: 14px;
      padding: .9rem 1.1rem;
      height: 100%;
      font-weight: 600;
      font-size: .92rem;
      color: var(--navy-900);
    }

    .benefit-item .icon-badge {
      width: 38px;
      height: 38px;
      min-width: 38px;
      border-radius: 10px;
    }

    .benefit-item .icon-badge svg {
      width: 18px;
      height: 18px;
    }

    /* ---------- AREAS ---------- */
    .area-pill {
      background: rgb(0 59 122); 
      border: 1px solid rgba(111, 195, 255, .25);
      color: #e7f1ff;
      padding: .5rem 1.1rem;
      border-radius: 50px;
      font-size: .86rem;
      font-weight: 600;
      display: inline-block;
      margin: .25rem;
      transition: all .25s ease;
    }

    .area-pill:hover {
      background: var(--gradient-brand);
      border-color: transparent;
      transform: translateY(-2px);
    }

    /* ---------- BEFORE / AFTER SLIDER ---------- */
    .ba-wrap {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 30px 60px rgba(10, 28, 77, .18);
      aspect-ratio: 16/9;
      user-select: none;
      border: 1px solid #e7edf7;
    }

    .ba-panel {
      position: absolute;
      inset: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-direction: column;
      color: #fff;
      text-align: center;
    }

    .ba-before {
 
      background-image: url("/assets/images/sofa-img.png");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      /*     background:
        linear-gradient(rgba(20, 25, 35, .72), rgba(20, 25, 35, .72)),
        repeating-linear-gradient(45deg, #3b3f47 0 10px, #33363d 10px 20px); */
    }
 
    .ba-after { 
      /* background: var(--gradient-brand); */ 
      background-image: url("/assets/images/afterimage.webp");
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
    }  

    .ba-after-inner {
      position: absolute;
      inset: 0;
      overflow: hidden;
    }

    .ba-label {
      position: absolute;
      top: 14px;
      padding: .3rem .9rem;
      border-radius: 50px;
      font-weight: 700;
      font-size: .75rem;
      letter-spacing: .06em;
      text-transform: uppercase;
      background: rgba(0, 0, 0, .35);
    }

    .ba-before .ba-label {
      left: 14px;
    }

    .ba-after-inner .ba-label {
      right: 14px;
      background: rgba(255, 255, 255, .25);
    }

    .ba-icon {
      width: 64px;
      height: 64px;
      margin-bottom: .6rem;
      opacity: .9;
    }

    .ba-handle {
      position: absolute;
      top: 0;
      bottom: 0;
      width: 4px;
      background: #fff;
      left: 50%;
      transform: translateX(-50%);
      box-shadow: 0 0 0 4px rgba(255, 255, 255, .25);
      cursor: ew-resize;
      z-index: 5;
    }

    .ba-handle-btn {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 52px;
      height: 52px;
      border-radius: 50%;
      background: #fff;
      color: var(--blue-500);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 8px 22px rgba(0, 0, 0, .35);
    }

    .ba-handle-btn svg {
      width: 22px;
      height: 22px;
    }

    .ba-caption {
      font-size: .85rem;
      color: var(--muted);
      margin-top: 1rem;
      text-align: center;
    }

    /* ---------- REVIEWS ---------- */
    .review-card {
      background: #fff;
      border: 1px solid #e7edf7;
      border-radius: 18px;
      padding: 1.9rem;
      height: 100%;
    }

    .stars {
      color: #ffb100;
      letter-spacing: 2px;
      font-size: 1rem;
      margin-bottom: .7rem;
    }

    .review-quote {
      font-size: 1rem;
      color: var(--navy-900);
      font-weight: 500;
    }

    .review-avatar {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      background: var(--gradient-brand);
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-family: 'Sora', sans-serif;
      font-size: .85rem;
    }

    #reviewTrack {
      transition: transform .5s ease;
    }

    .review-dots {
      display: flex;
      gap: .5rem;
      justify-content: center;
      margin-top: 1.4rem;
    }

    .review-dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #d7e0f0;
      cursor: pointer;
      transition: all .25s ease;
    }

    .review-dot.active {
      background: var(--blue-500);
      width: 24px;
      border-radius: 6px;
    }

    /* ---------- FAQ ---------- */
    .faq-item {
      border-bottom: 1px solid #e7edf7;
      padding: 1.2rem 0;
    }

    .faq-q {
      display: flex;
      justify-content: space-between;
      align-items: center;
      cursor: pointer;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
      color: var(--navy-900);
    }

    .faq-q svg {
      width: 20px;
      height: 20px;
      flex-shrink: 0;
      transition: transform .3s ease;
      color: var(--blue-500);
    }

    .faq-item.open .faq-q svg {
      transform: rotate(45deg);
    }

    .faq-a {
      max-height: 0;
      overflow: hidden;
      transition: max-height .35s ease;
      color: var(--muted);
      font-size: .93rem;
    }

    .faq-a-inner {
      padding-top: .7rem;
    }

    /* ---------- CONTACT ---------- */
    .contact-card {
      background: rgba(255, 255, 255, .06);
      border: 1px solid rgba(111, 195, 255, .25);
      border-radius: 18px;
      padding: 1.5rem;
      height: 100%;
    }

    .contact-card h6 {
      font-family: 'Sora', sans-serif;
      font-weight: 700;
    }

    .contact-card a {
      color: #fff;
    }

    .map-frame {
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(111, 195, 255, .25);
    }

    /* ---------- CTA BANNER ---------- */
    .cta-banner {
      background: var(--gradient-brand);
      border-radius: 26px;
      padding: 3rem 2rem;
      text-align: center;
      color: #fff;
      margin: 0 1rem;
      box-shadow: 0 30px 60px rgba(23, 90, 190, .3);
    }

    /* ---------- FOOTER ---------- */
    footer {
      background: var(--navy-950);
      color: #9fb0d1;
      padding: 3.2rem 0 1.5rem;
    }

    footer a {
      color: #c9d7f0;
      text-decoration: none;
    }

    footer a:hover {
      color: #fff;
    }

    footer h6 {
      color: #fff;
      font-family: 'Sora', sans-serif;
      font-weight: 700;
    }

    .social-circle {
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: rgba(255, 255, 255, .08);
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      transition: background .25s ease;
    }

    .social-circle:hover {
      background: var(--gradient-brand);
    }

    /* ---------- FLOATING BUTTONS ---------- */
    .floating-wa {
      position: fixed;
      bottom: 22px;
      right: 22px;
      z-index: 999;
      width: 58px;
      height: 58px;
      border-radius: 50%;
      background: #25D366;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 10px 26px rgba(0, 0, 0, .3);
      animation: pulse-wa 2.4s infinite;
    }

    @keyframes pulse-wa {
      0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, .55), 0 10px 26px rgba(0, 0, 0, .3);
      }

      70% {
        box-shadow: 0 0 0 14px rgba(37, 211, 102, 0), 0 10px 26px rgba(0, 0, 0, .3);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0 10px 26px rgba(0, 0, 0, .3);
      }
    }

    .back-to-top {
      position: fixed;
      bottom: 22px;
      left: 22px;
      z-index: 999;
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: var(--navy-900);
      color: #fff;
      border: 1px solid rgba(111, 195, 255, .35);
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all .3s ease;
    }

    .back-to-top.show {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }

  

    @media (prefers-reduced-motion: reduce) {

      .floaty,
      .hero .sparkle,
      .floating-wa {
        animation: none;
      }

      .reveal {
        transition: none;
        opacity: 1;
        transform: none;
      }
    }

    section.py-section {
      padding: 5.5rem 0;
    }

    @media (max-width:767px) {
      section.py-section {
        padding: 3.6rem 0;
      }

      .cta-banner {
        padding: 2.2rem 1.2rem;
      }
    }



  .reels-section {
    background: var(--navy-950);
    padding: 5.5rem 0 5rem;
    overflow: hidden;
  }

  .reels-section .divider-top svg {
    display: block;
    width: 100%;
  }

  .reels-head {
    max-width: 620px;
    margin: 0 auto 3rem;
    text-align: center;
  }

  .reels-head h2 {
    font-size: clamp(1.7rem, 3.2vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    margin: .6rem 0 .9rem;
    letter-spacing: -.01em;
  }

  .reels-head p {
    color: #b9c8e6;
    font-size: 1rem;
    margin: 0 auto;
  }

  .reels-track {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  @media (max-width: 992px) {
    .reels-track {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 640px) {
    .reels-track {
      grid-template-columns: repeat(2, 1fr);
      gap: 1rem;
    }
  }

  .reel-card {
    position: relative;
    border-radius: 22px;
    padding: 10px;
    background: linear-gradient(160deg, rgba(111,195,255,.28), rgba(255,255,255,.04) 40%, rgba(0,0,0,.25));
    border: 1px solid rgba(111,195,255,.22);
    box-shadow: 0 18px 40px rgba(4,10,30,.55);
    transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  }

  .reel-card:hover {
    transform: translateY(-6px);
    border-color: rgba(111,195,255,.55);
    box-shadow: 0 24px 55px rgba(46,143,240,.28);
  }

  .reel-frame {
    position: relative;
    aspect-ratio: 9 / 16;
    border-radius: 16px;
    overflow: hidden;
    background: var(--navy-800);
  }

  .reel-frame video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* subtle top notch so it reads as a phone screen, not a raw clipped reel */
  .reel-frame::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 46px;
    height: 5px;
    border-radius: 4px;
    background: rgba(255,255,255,.35);
    z-index: 3;
  }

  .reel-frame::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(6,15,43,0) 60%, rgba(6,15,43,.75) 100%);
    pointer-events: none;
  }

  .reel-caption {
    position: absolute;
    left: 12px;
    right: 44px;
    bottom: 10px;
    z-index: 2;
    color: #fff;
  }

  .reel-caption .job {
    font-weight: 700;
    font-size: .82rem;
    line-height: 1.2;
    margin: 0;
  }

  .reel-caption .loc {
    font-size: .7rem;
    color: #cfe0fb;
    margin: 0;
  }

  .reel-sound-btn {
    position: absolute;
    right: 10px;
    bottom: 10px;
    z-index: 3;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.5);
    background: rgba(6,15,43,.55);
    backdrop-filter: blur(4px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease;
  }

  .reel-sound-btn:hover { background: rgba(6,15,43,.8); }

  .reel-sound-btn svg { width: 15px; height: 15px; }

  .reels-cta {
    text-align: center;
    margin-top: 3rem;
  }
























  .pricing-section {
  background: linear-gradient(180deg, #f7f9fc 0%, #ffffff 100%);
}

/* Card */
.pricing-section .price-card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e8edf5;
  border-radius: 20px;
  padding: 30px 25px;
  box-shadow: 0 10px 35px rgba(25, 45, 80, .06);
  transition: all .25s ease;
  display: flex;
  flex-direction: column;
}

.pricing-section .price-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 18px 45px rgba(25, 45, 80, .12);
  border-color: rgba(38,54,114,.18);
}


/* Icon */
.pricing-section .price-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  background: #eef3ff;
  color: var(--navy-900);
  font-size: 22px;
}


/* Popular card */
.pricing-section .price-card.featured {
  border: 2px solid var(--navy-900);
  box-shadow: 0 18px 45px rgba(38,54,114,.14);
  transform: translateY(-8px);
}

.pricing-section .price-card.featured:hover {
  transform: translateY(-13px);
}


/* Popular label */
.pricing-section .popular-label {
  position: absolute;
  top: -13px;
  right: 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--navy-900);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .5px;
}


/* Price */
.pricing-section .price {
  color: var(--navy-900);
  font-size: 38px;
  line-height: 1;
  font-weight: 800;
  margin-top: 8px;
}

.pricing-section .price span {
  font-size: 20px;
  vertical-align: top;
  margin-left: 2px;
}


/* List */
.pricing-section .price-list {
  list-style: none;
  padding: 0;
  margin: 0 0 25px;
}

.pricing-section .price-list li {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 13px;
  font-size: 14px;
  color: #4e596b;
}

.pricing-section .price-list li i {
  color: #2c8a58;
  font-size: 14px;
}


/* Button */
.pricing-section .btn-brand {
  display: block;
  padding: 12px 18px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: all .2s ease;
}

.pricing-section .btn-brand:hover {
  transform: translateY(-2px);
}


/* Mobile */
@media (max-width: 991px) {

  .pricing-section .price-card.featured {
    transform: none;
  }

  .pricing-section .price-card.featured:hover {
    transform: translateY(-7px);
  }

}