*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
          font-family: 'Noto Sans', sans-serif;
          

          

}

body{
  overflow-x: hidden !important;

}


/* <section class="process-steps-section"> */

  .process-steps-section {
    width: 100%;
    background: #353B6E;
    padding: 85px 4%;
    display: flex;
    flex-direction: column;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  .process-steps-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
      repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(47,107,255,0.025) 10px,
        rgba(47,107,255,0.025) 20px
      ),
      radial-gradient(circle at 30% 70%, rgba(47,107,255,0.08) 0%, transparent 50%);
    pointer-events: none;
  }

  .section-header {
    position: relative;
    z-index: 2;
    text-align: center;
    margin-bottom: 65px;
    max-width: 850px;
    width: 100%;
    padding: 0 15px;
  }

  .section-heading {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 15px;
    letter-spacing: -0.02em;
    opacity: 0;
    transform: translateY(20px);
    line-height: 1.2;
  }

  .section-heading.animate-in {
    animation: fadeInUp 0.8s ease forwards;
  }

  .heading-underline {
    width: 0;
    height: 5px;
    background: linear-gradient(90deg, #ef4444);
    margin: 0 auto 22px;
    border-radius: 10px;
    transition: width 0.8s ease 0.4s;
    box-shadow: 0 2px 12px rgba(47,107,255,0.5);
  }

  .heading-underline.show {
    width: 150px;
  }

  .section-subtitle {
    font-size: clamp(0.95rem, 2vw, 1.12rem);
    color: rgba(255,255,255,0.82);
    line-height: 1.7;
    font-weight: 400;
    margin: 0 auto;
  }

  .steps-container {
    position: relative;
    z-index: 2;
    max-width: 1280px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
  }

  .step-item {
    min-width: 0;
    opacity: 0;
    transform: translateY(80px) scale(0.92);
    transform-origin: center bottom;
  }

  .step-item.animate-in {
    animation: waveCardIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  }

  .step-item:nth-child(1).animate-in {
    animation-delay: 0.15s;
  }

  .step-item:nth-child(2).animate-in {
    animation-delay: 0.3s;
  }

  .step-item:nth-child(3).animate-in {
    animation-delay: 0.45s;
  }

  .step-item:nth-child(4).animate-in {
    animation-delay: 0.6s;
  }

  .step-wave {
    position: relative;
    min-height: 390px;
    height: 100%;
    padding: 34px 22px 30px;
    background: rgba(255,255,255,0.94);
    border-radius: 26px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    box-shadow:
      0 28px 70px rgba(0,0,0,0.18),
      inset 0 1px 0 rgba(255,255,255,0.95);

    border: 1px solid rgba(236,245,255,0.75);
    overflow: hidden;
    transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  }

  .step-wave:hover {
    transform: translateY(-8px);
    box-shadow:
      0 34px 85px rgba(0,0,0,0.22),
      0 0 0 1px rgba(59,130,246,0.28);
    border-color: rgba(59,130,246,0.45);
  }

  .step-wave::before {
    content: '';
    position: absolute;
    top: 0;
    left: -110%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255,255,255,0.55),
      transparent
    );
    transition: left 0.7s ease;
  }

  .step-wave:hover::before {
    left: 110%;
  }

  .step-wave::after {
    content: '';
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 4px;
    background: linear-gradient(90deg, #ef4444);
    border-radius: 20px 20px 0 0;
  }

  .wave-container {
    position: relative;
    width: 112px;
    height: 112px;
    margin-bottom: 22px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .wave-container::before,
  .wave-container::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  .wave-container::before {
    width: 100px;
    height: 100px;
    border: 2px solid;
    opacity: 0.3;
    animation: waveRipple 3s ease-in-out infinite;
  }

  .wave-container::after {
    width: 72px;
    height: 72px;
    border: 2px solid;
    opacity: 0.5;
    animation: waveRipple 3s ease-in-out infinite 1s;
  }

  .wave-number {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1;
    position: relative;
    z-index: 3;
    text-shadow: 0 4px 12px rgba(0,0,0,0.1);
    font-feature-settings: 'tnum' 1;
  }

  .wave-step {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 5px;
    position: relative;
    z-index: 3;
    opacity: 0.95;
    text-align: center;
    max-width: 100px;
    line-height: 1.2;
    word-break: normal;
  }

  .step-title {
    font-size: 1.08rem;
    font-weight: 800;
    line-height: 1.35;
    color: #0e1d34;
    text-align: center;
    z-index: 3;
    margin: 0 0 12px;
    overflow-wrap: anywhere;
  }

  .step-desc {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: rgba(14,29,52,0.76);
    text-align: center;
    margin: 0;
    z-index: 3;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .wave-container.blue-1::before,
  .wave-container.blue-1::after {
    border-color: #3b82f6;
  }

  .blue-1 .wave-number,
  .blue-1 .wave-step {
    color:#353B6E;
  }

  .wave-container.blue-2::before,
  .wave-container.blue-2::after {
    border-color: #353B6E;
  }

  .blue-2 .wave-number,
  .blue-2 .wave-step {
    color: #353B6E;
  }

  .wave-container.blue-3::before,
  .wave-container.blue-3::after {
    border-color: #353B6E;
  }

  .blue-3 .wave-number,
  .blue-3 .wave-step {
    color: #353B6E;
  }

  .wave-container.blue-4::before,
  .wave-container.blue-4::after {
    border-color: #353B6E;
  }

  .blue-4 .wave-number,
  .blue-4 .wave-step {
    color: #353B6E;
  }

  @keyframes fadeInUp {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes waveCardIn {
    0% {
      opacity: 0;
      transform: translateY(90px) scale(0.9);
    }

    65% {
      opacity: 1;
      transform: translateY(-8px) scale(1.02);
    }

    100% {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }

  @keyframes waveRipple {
    0% {
      transform: translate(-50%, -50%) scale(1);
      opacity: 0.35;
    }

    100% {
      transform: translate(-50%, -50%) scale(1.8);
      opacity: 0;
    }
  }

  @media (max-width: 1100px) {
    .steps-container {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      max-width: 760px;
    }

    .step-wave {
      min-height: 360px;
    }
  }

  @media (max-width: 640px) {
    .process-steps-section {
      padding: 60px 16px;
    }

    .section-header {
      margin-bottom: 45px;
      padding: 0;
    }

    .heading-underline.show {
      width: 110px;
      height: 4px;
    }

    .steps-container {
      grid-template-columns: 1fr;
      gap: 22px;
      max-width: 390px;
    }

    .step-wave {
      min-height: auto;
      padding: 30px 22px 32px;
      border-radius: 22px;
    }

    .wave-container {
      width: 104px;
      height: 104px;
      margin-bottom: 20px;
    }

    .wave-container::before {
      width: 92px;
      height: 92px;
    }

    .wave-container::after {
      width: 66px;
      height: 66px;
    }

    .wave-number {
      font-size: 2.65rem;
    }

    .wave-step {
      font-size: 0.62rem;
    }

    .step-title {
      font-size: 1.02rem;
    }

    .step-desc {
      font-size: 0.88rem;
      line-height: 1.6;
    }
  }



/* end */  
/* <div class="sr-only"> */



    .vr-hero {
      position: relative;
      width: 100%;
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      isolation: isolate;
    }

    .vr-bg-slide {
      position: absolute;
      inset: 0;
      background-size: cover;
      background-position: center center;
      background-repeat: no-repeat;
      opacity: 0;
      transition: opacity 1.4s ease, transform 5s ease;
      z-index: 0;
      transform: scale(1.04);
    }

    .vr-bg-slide.active {
      opacity: 1;
      transform: scale(1);
    }

    .vr-bg-slide:nth-child(1) {
      background-image:
        linear-gradient(135deg, rgba(6,20,40,0.74), rgba(13,43,85,0.68), rgba(26,26,46,0.78)),
        url("./images/4.webp");
    }

    .vr-bg-slide:nth-child(2) {
      background-image:
        linear-gradient(135deg, rgba(26,26,46,0.74), rgba(22,33,62,0.68), rgba(13,43,85,0.78)),
        url("./images/6.webp");
    }

    .vr-lazy-bg-img {
      position: absolute;
      width: 1px;
      height: 1px;
      opacity: 0;
      pointer-events: none;
      user-select: none;
    }

    .vr-grid-overlay {
      position: absolute;
      inset: 0;
      z-index: 1;
      background-image:
        linear-gradient(rgba(37,99,235,0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37,99,235,0.06) 1px, transparent 1px);
      background-size: 60px 60px;
    }





    .vr-content {
      position: relative;
      z-index: 5;
      text-align: center;
      padding: 3rem 1.5rem 2rem;
      max-width: 860px;
      width: 100%;
    }

    .vr-badge {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: rgba(37,99,235,0.18);
      border: 1px solid rgba(59,130,246,0.35);
      border-radius: 30px;
      padding: 5px 16px;
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      color: #60a5fa;
      margin-bottom: 1.8rem;
      opacity: 0;
      animation: vr-fadeDown 0.7s ease 0.2s forwards;
    }

    .vr-badge .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #e74c3c;
      animation: vr-pulse 1.4s infinite;
      flex-shrink: 0;
    }

    .vr-logo-line {
      font-size: clamp(3rem, 9vw, 6rem);
      letter-spacing: 0.06em;
      line-height: 0.9;
      color: #fff;
      margin-bottom: 0.2rem;
      display: flex;
      align-items: baseline;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0;
      opacity: 0;
      animation: vr-fadeUp 0.8s ease 0.4s forwards;
      cursor: default;
    }

    .vr-char-wrap {
      display: inline-block;
      position: relative;
    }

    .vr-char {
      display: inline-block;
      transition: transform 0.15s cubic-bezier(.34,1.56,.64,1), color 0.12s;
      cursor: default;
    }

    .vr-char:hover {
      transform: translateY(-8px) scale(1.15);
    }

    .vr-char.red {
      color: #E0292F;
    }

    .vr-char.blue {
      color: #3b82f6;
    }

    .vr-char.white {
      color: #fff;
    }

    .vr-char.space {
      display: inline-block;
      width: 0.35em;
    }

    .vr-sub {
      
      font-size: clamp(0.95rem, 2.5vw, 1.3rem);
      font-weight: 500;
      letter-spacing: 0.06em;
      color: rgba(255,255,255,0.75);
      margin-bottom: 1.4rem;
      opacity: 0;
      animation: vr-fadeUp 0.8s ease 0.65s forwards;
    }

    .vr-tags {
      display: flex;
      gap: 0.5rem;
      justify-content: center;
      flex-wrap: wrap;
      margin-bottom: 1.4rem;
      opacity: 0;
      animation: vr-fadeUp 0.8s ease 0.85s forwards;
    }

    .vr-tag {
      
      font-size: 0.7rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.12);
      border-radius: 3px;
      padding: 4px 12px;
    }

    .vr-divider {
      width: 70px;
      height: 3px;
      margin: 0 auto 1.4rem;
      background: linear-gradient(90deg,#ef4444);
      border-radius: 2px;
      opacity: 0;
      animation: vr-fadeIn 0.6s ease 1s forwards;
    }

    .vr-desc {
      font-size: clamp(0.85rem, 1.8vw, 1rem);
      font-weight: 300;
      color: rgba(255,255,255,0.72);
      line-height: 1.75;
      max-width: 560px;
      margin: 0 auto 2.2rem;
      opacity: 0;
      animation: vr-fadeUp 0.8s ease 1.1s forwards;
    }

    .vr-btns {
      display: flex;
      gap: 1rem;
      justify-content: center;
      flex-wrap: wrap;
      opacity: 0;
      animation: vr-fadeUp 0.8s ease 1.3s forwards;
      margin-bottom: 2.8rem;
    }

    .vr-btn-primary {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: #fff;
      
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 12px 26px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(37,99,235,0.3);
      transition: transform 0.2s, box-shadow 0.2s;
      text-decoration: none;
    }

    .vr-btn-primary:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(37,99,235,0.5);
    }

    .vr-btn-wa {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: linear-gradient(135deg, #25d366, #128c7e);
      color: #fff;
      
      font-size: 0.88rem;
      font-weight: 700;
      letter-spacing: 0.1em;
      text-transform: uppercase;
      padding: 12px 26px;
      border-radius: 4px;
      border: none;
      cursor: pointer;
      box-shadow: 0 4px 20px rgba(37,211,102,0.25);
      transition: transform 0.2s, box-shadow 0.2s;
      animation: vr-shake 3.5s ease-in-out 2.5s infinite;
      text-decoration: none;
    }

    .vr-btn-wa:hover {
      transform: translateY(-3px);
      box-shadow: 0 8px 28px rgba(37,211,102,0.5);
      animation: none;
    }

    .vr-stats {
      display: flex;
      justify-content: center;
      gap: 2.5rem;
      flex-wrap: wrap;
      border-top: 1px solid rgba(255,255,255,0.1);
      padding-top: 2rem;
      opacity: 0;
      animation: vr-fadeUp 0.8s ease 1.6s forwards;
    }

    .vr-stat {
      text-align: center;
    }

    .vr-stat-num {
      font-size: 2.2rem;
      color: #60a5fa;
      line-height: 1;
    }

    .vr-stat-num .r {
      color: #ef4444;
    }

    .vr-stat-label {
      
      font-size: 0.68rem;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: rgba(255,255,255,0.45);
      margin-top: 3px;
    }

    .vr-dots {
      position: absolute;
      bottom: 1.5rem;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 7px;
      z-index: 10;
    }

    .vr-dot {
      width: 30px;
      height: 4px;
      border-radius: 2px;
      background: rgba(255,255,255,0.2);
      border: none;
      cursor: pointer;
      transition: background 0.3s, width 0.3s;
      padding: 0;
    }

    .vr-dot.on {
      background: #3b82f6;
      width: 50px;
    }

    .bubble-pool {
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 20;
      overflow: hidden;
    }

    .bbl {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      animation: vr-bubble-rise 1.8s ease-out forwards;
      opacity: 0;
    }

    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      overflow: hidden;
      clip: rect(0,0,0,0);
      white-space: nowrap;
    }

    @keyframes vr-bubble-rise {
      0% {
        opacity: 0.85;
        transform: translateY(0) scale(0.6);
      }

      30% {
        opacity: 0.9;
        transform: translateY(-30px) scale(1);
      }

      100% {
        opacity: 0;
        transform: translateY(-160px) scale(0.4);
      }
    }

    @keyframes vr-fadeDown {
      from {
        opacity: 0;
        transform: translateY(-16px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes vr-fadeUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes vr-fadeIn {
      from {
        opacity: 0;
      }

      to {
        opacity: 1;
      }
    }

    @keyframes vr-pulse {
      0%, 100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.6);
        opacity: 0.5;
      }
    }

    @keyframes vr-shake {
      0%, 80%, 100% {
        transform: rotate(0deg);
      }

      82% {
        transform: rotate(-9deg);
      }

      84% {
        transform: rotate(9deg);
      }

      86% {
        transform: rotate(-6deg);
      }

      88% {
        transform: rotate(6deg);
      }

      90% {
        transform: rotate(-3deg);
      }

      92% {
        transform: rotate(3deg);
      }

      94% {
        transform: rotate(0deg);
      }
    }

    @media (max-width: 768px) {
      .vr-hero {
        min-height: 100svh;
        padding: 70px 14px 45px;
      }

      .vr-bg-slide {
        background-position: center center;
      }

      .vr-content {
        padding: 2.5rem 1rem 2rem;
      }

      .vr-logo-line {
        font-size: clamp(2.3rem, 12vw, 3.5rem);
        line-height: 1;
      }

      .vr-sub {
        font-size: 0.95rem;
      }

      .vr-desc {
        font-size: 0.86rem;
        line-height: 1.65;
      }

      .vr-btns {
        flex-direction: column;
        align-items: center;
        margin-bottom: 2.2rem;
      }

      .vr-btn-primary,
      .vr-btn-wa {
        width: 100%;
        max-width: 280px;
        justify-content: center;
      }

      .vr-stats {
        gap: 1rem;
      }

      .vr-stat {
        width: calc(50% - 1rem);
      }

      .vr-stat-num {
        font-size: 1.7rem;
      }

      .vr-dots {
        bottom: 1rem;
      }
    }

    @media (max-width: 420px) {
      .vr-badge {
        font-size: 0.62rem;
        letter-spacing: 0.14em;
      }

      .vr-logo-line {
        font-size: clamp(2rem, 12vw, 3rem);
      }

      .vr-tags {
        gap: 0.4rem;
      }

      .vr-tag {
        font-size: 0.62rem;
        padding: 4px 9px;
      }
    }
  /* end */

/* <header class="vr-topbar" id="vrTopbar"> */
 .vr-topbar {
  position: sticky;
  top: 0;
  z-index: 9999;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #e8eef8;
  box-shadow: 0 8px 28px rgba(3, 29, 73, 0.06);
  backdrop-filter: blur(12px);
}

.vr-topbar-inner {
  max-width: 1320px;
  min-height: 76px;
  margin: 0 auto;
  padding: 8px 3%;
  display: grid;
  grid-template-columns: 130px 1fr auto;
  align-items: center;
  gap: 18px;
  position: relative;
}

.vr-brand {
  width: 118px;
  height: 70px;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  text-decoration: none;
}

.vr-brand img {
  width: 100%;
  height: 170%;
  display: block;
  object-fit: contain;
  object-position: left center;
}

.vr-main-nav {
  justify-self: center;
}

.vr-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
}

.vr-nav-list > li {
  position: relative;
}

.vr-nav-list > li > a,
.vr-mega-btn {
  height: 40px;
  padding: 0 12px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #031d49;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.25s ease, color 0.25s ease;
}

.vr-nav-list > li > a:hover,
.vr-mega-btn:hover,
.vr-mega-item:hover > .vr-mega-btn,
.vr-mega-item.open > .vr-mega-btn {
  background: #eef5ff;
  color: #1d4ed8;
}

.vr-mega-btn span {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #eaf2ff;
  color: #1d4ed8;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  line-height: 1;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease;
}

.vr-mega-item:hover .vr-mega-btn span,
.vr-mega-item.open .vr-mega-btn span {
  transform: rotate(45deg);
  background: #ef4444;
  color: #ffffff;
}

/* WEB MEGA MENU - ALWAYS CENTER */
.vr-mega-menu {
  position: fixed;
  top: 54px;
  left: 50%;
  width: min(900px, calc(100vw - 48px));
  transform: translateX(-50%) translateY(14px);
  padding: 24px 22px 22px;
  background: #ffffff;
  border: 1px solid #e3ebf7;
  border-radius: 22px;
  box-shadow: 0 28px 80px rgba(3, 29, 73, 0.16);
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9998;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.vr-mega-menu::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 18px;
  height: 18px;
  transform: translateX(-50%) rotate(45deg);
  background: #ffffff;
  border-left: 1px solid #e3ebf7;
  border-top: 1px solid #e3ebf7;
  z-index: 2;
}

.vr-mega-item:hover .vr-mega-menu,
.vr-mega-item.open .vr-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  /* transform: translateX(-50%) translateY(0); */
}

.vr-mega-head {
  position: relative;
  z-index: 2;
  padding: 22px;
  border-radius: 18px;
  background:
    linear-gradient(rgba(3, 29, 73, 0.78), rgba(3, 29, 73, 0.78)),
    url("./images/2026-02-26.jpg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.vr-mega-head::after {
  content: "";
  position: absolute;
  right: -35px;
  bottom: -35px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.26);
}

.vr-mega-head strong {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 8px;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 900;
}

.vr-mega-head p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.82rem;
  line-height: 1.55;
}

.vr-mega-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.vr-mega-grid a {
  position: relative;
  min-height: 42px;
  padding: 0 12px 0 34px;
  border-radius: 12px;
  background: #f7faff;
  color: #334155;
  text-decoration: none;
  display: flex;
  align-items: center;
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.25;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.vr-mega-grid a::before {
  content: "";
  position: absolute;
  left: 14px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #1d4ed8;
}

.vr-mega-grid a:nth-child(even)::before {
  background: #ef4444;
}

.vr-mega-grid a:hover {
  background: #eaf2ff;
  color: #031d49;
  transform: translateX(4px);
}

.vr-topbar-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.vr-topbar-brochure,
.vr-topbar-cta {
  height: 40px;
  padding: 0 17px;
  border-radius: 12px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Arial, sans-serif;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  line-height: 1;
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.vr-topbar-brochure {
  background: #ffffff;
  color: #031d49;
  border: 2px solid #031d49;
  gap: 7px;
}

.vr-topbar-brochure::after {
  content: "↗";
  font-size: 0.76rem;
  line-height: 1;
  transition: transform 0.25s ease;
}

.vr-topbar-brochure:hover {
  background: #ef4444;
  color: #ffffff;
  border-color: #ef4444;
  box-shadow: 0 10px 24px rgba(239, 68, 68, 0.2);
}

.vr-topbar-brochure:hover::after {
  transform: translate(2px, -2px);
}

.vr-topbar-cta {
  background: #031d49;
  color: #ffffff;
  border: 2px solid #031d49;
}

.vr-topbar-cta:hover {
  background: #ef4444;
  border-color: #ef4444;
}

.vr-menu-btn {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 13px;
  background: #eef5ff;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.vr-menu-btn span {
  width: 21px;
  height: 2px;
  border-radius: 20px;
  background: #031d49;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.vr-topbar.menu-open .vr-menu-btn span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.vr-topbar.menu-open .vr-menu-btn span:nth-child(2) {
  opacity: 0;
}

.vr-topbar.menu-open .vr-menu-btn span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.vr-mobile-brochure-item,
.vr-mobile-quote-item {
  display: none;
}

/* LAPTOP */
@media (max-width: 1180px) {
  .vr-topbar-inner {
    grid-template-columns: 112px 1fr auto;
    gap: 10px;
    padding: 8px 2%;
  }

  .vr-brand {
    width: 108px;
  }

  .vr-nav-list > li > a,
  .vr-mega-btn {
    padding: 0 7px;
    font-size: 0.7rem;
  }

  .vr-topbar-brochure,
  .vr-topbar-cta {
    padding: 0 11px;
    font-size: 0.68rem;
  }

  .vr-mega-menu {
    width: min(820px, calc(100vw - 36px));
  }

  .vr-mega-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TABLET + MOBILE */
@media (max-width: 880px) {
  .vr-topbar-inner {
    grid-template-columns: auto auto;
    justify-content: space-between;
    min-height: 70px;
    padding: 8px 16px;
  }

  .vr-brand {
    width: 108px;
    height: 54px;
  }

  .vr-menu-btn {
    display: inline-flex;
  }

  .vr-topbar-actions {
    display: none;
  }

  .vr-main-nav {
    position: absolute;
    top: 100%;
    left: 16px;
    right: 16px;
    background: #ffffff;
    border: 1px solid #e3ebf7;
    border-radius: 20px;
    box-shadow: 0 24px 65px rgba(3, 29, 73, 0.16);
    padding: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(14px);
    transition:
      max-height 0.35s ease,
      opacity 0.25s ease,
      visibility 0.25s ease,
      transform 0.25s ease;
  }

  .vr-topbar.menu-open .vr-main-nav {
    max-height: calc(100vh - 90px);
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .vr-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .vr-nav-list > li {
    width: 100%;
  }

  .vr-nav-list > li > a,
  .vr-mega-btn {
    width: 100%;
    height: 46px;
    justify-content: center;
    background: #f7faff;
    color: #031d49;
    font-size: 0.82rem;
    border-radius: 12px;
  }

  .vr-mega-item:hover .vr-mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  .vr-mega-menu {
    position: static;
    width: 100%;
    display: block;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
    border-radius: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    transition: max-height 0.35s ease, margin-top 0.3s ease;
  }

  .vr-mega-menu::before {
    display: none;
  }

  .vr-mega-item.open .vr-mega-menu {
    max-height: 900px;
    margin-top: 8px;
  }

  .vr-mega-head {
    display: none;
  }

  .vr-mega-grid {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .vr-mega-grid a {
    min-height: 42px;
    background: #ffffff;
    border: 1px solid #e7edf8;
    font-size: 0.8rem;
    border-radius: 10px;
  }

  .vr-mobile-brochure-item,
  .vr-mobile-quote-item {
    display: block;
  }

  .vr-mobile-brochure-btn,
  .vr-mobile-quote-btn {
    width: 100%;
    height: 46px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition:
      background 0.25s ease,
      border-color 0.25s ease,
      color 0.25s ease;
  }

  .vr-mobile-brochure-btn {
    background: #ffffff !important;
    color: #031d49 !important;
    border: 2px solid #031d49;
  }

  .vr-mobile-brochure-btn::after {
    content: " ↗";
    margin-left: 6px;
  }

  .vr-mobile-quote-btn {
    background: #031d49 !important;
    color: #ffffff !important;
    border: 2px solid #031d49;
  }

  .vr-mobile-brochure-btn:hover,
  .vr-mobile-quote-btn:hover {
    background: #ef4444 !important;
    border-color: #ef4444;
    color: #ffffff !important;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .vr-topbar-inner {
    padding-left: 14px;
    padding-right: 14px;
  }

  .vr-brand {
    width: 102px;
    height: 52px;
  }

  .vr-menu-btn {
    width: 42px;
    height: 42px;
  }

  .vr-main-nav {
    left: 12px;
    right: 12px;
    padding: 12px;
    border-radius: 18px;
  }

  .vr-nav-list > li > a,
  .vr-mega-btn,
  .vr-mobile-brochure-btn,
  .vr-mobile-quote-btn {
    height: 44px;
    font-size: 0.78rem;
  }
}
/* end */

  /* <div class="sr-only"> */
  .about-simple-section {
    width: 100%;
    background: #ffffff;
    padding: 80px 5%;
  }

  .about-simple-container {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 45px;
    align-items: stretch;
  }

  .about-simple-image-box,
  .about-simple-content {
    min-height: 430px;
  }

  .about-simple-image-box {
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    background: #f3f6fb;
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
  }

  .about-simple-image {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1024 / 578;
    object-fit: cover;
    object-position: center;
  }

  .about-simple-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 0;
  }

  .about-simple-label {
    display: inline-block;
    width: fit-content;
    margin-bottom: 12px;
    padding: 7px 16px;
    background: #eaf2ff;
    color: #353B6E;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
    
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .about-simple-heading {
    margin: 0 0 18px;
    color: #031d49;
    
    font-size: clamp(2.4rem, 4vw, 4.2rem);
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .about-simple-content p {
    margin: 0 0 15px;
    color: #3f4b5f;
    font-size: 1rem;
    line-height: 1.8;
    font-weight: 400;
  }

  .about-simple-content p:last-child {
    margin-bottom: 0;
  }

  @media (max-width: 992px) {
    .about-simple-section {
      padding: 65px 4%;
    }

    .about-simple-container {
      grid-template-columns: 1fr;
      gap: 32px;
      max-width: 760px;
    }

    .about-simple-image-box,
    .about-simple-content {
      min-height: auto;
    }

    .about-simple-image {
      height: auto;
    }

    .about-simple-content {
      padding: 0;
    }
  }

  @media (max-width: 600px) {
    .about-simple-section {
      padding: 55px 16px;
    }

    .about-simple-container {
      gap: 26px;
    }

    .about-simple-image-box {
      border-radius: 14px;
    }

    .about-simple-label {
      font-size: 0.75rem;
      letter-spacing: 0.1em;
    }

    .about-simple-heading {
      font-size: 2.35rem;
    }

    .about-simple-content p {
      font-size: 0.94rem;
      line-height: 1.7;
    }
  }
  /* =========================================
   MEGA DROPDOWN HOVER HOLD FIX - DESKTOP
   Paste this at END of your CSS
========================================= */

@media (min-width: 881px) {
  .vr-mega-menu {
    position: fixed;
    top: 76px;
    left: 50%;
    width: min(900px, calc(100vw - 48px));
    transform: translateX(-50%) translateY(10px);
    padding: 24px 22px 22px;
    background: #ffffff;
    border: 1px solid #e3ebf7;
    border-radius: 22px;
    box-shadow: 0 28px 80px rgba(3, 29, 73, 0.16);
    display: grid;
    grid-template-columns: 230px 1fr;
    gap: 22px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    z-index: 10001;
    transition:
      opacity 0.22s ease,
      transform 0.22s ease,
      visibility 0.22s ease;
  }

  .vr-mega-menu::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    width: 18px;
    height: 18px;
    transform: translateX(-50%) rotate(45deg);
    background: #ffffff;
    border-left: 1px solid #e3ebf7;
    border-top: 1px solid #e3ebf7;
    z-index: 2;
  }

  /*
    IMPORTANT:
    This keeps dropdown open when cursor is inside the dropdown itself.
  */
  .vr-mega-item:hover .vr-mega-menu,
  .vr-mega-item:focus-within .vr-mega-menu,
  .vr-mega-menu:hover {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
  }

  /*
    Invisible hover bridge between navbar and dropdown.
    This prevents instant close while moving cursor downward.
  */
  .vr-mega-menu::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: -18px;
    height: 22px;
    background: transparent;
    pointer-events: auto;
  }

  .vr-mega-head,
  .vr-mega-grid {
    position: relative;
    z-index: 3;
  }
}
/* end */


/* <section class="vr-mv-pillar" id="mission-vision" aria-labelledby="vrMvPillarHeading"> */
  .vr-mv-pillar {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 720px;
    padding: 50px 5%;
    background:
      radial-gradient(circle at center, rgba(37, 99, 235, 0.12), transparent 34%),
      linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .vr-mv-pillar::before {
    content: "";
    position: absolute;
    left: -140px;
    top: -120px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
  }

  .vr-mv-pillar::after {
    content: "";
    position: absolute;
    right: -130px;
    bottom: -140px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.12);
  }

  .vr-mv-pillar-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
  }

  .vr-mv-pillar-head {
    max-width: 760px;
    margin: 0 auto 44px;
    text-align: center;
  }

  .vr-mv-pillar-head span {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 8px 18px;
    background: #ffffff;
    color: #353B6E;
    border-left: 4px solid #ef4444;
    border-radius: 999px;
    box-shadow: 0 10px 24px rgba(3, 29, 73, 0.07);
    
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .vr-mv-pillar-head h2 {
    margin: 0;
    color: #031d49;
    
    font-size: clamp(2.5rem, 4.6vw, 4.5rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .vr-mv-pillar-layout {
    display: grid;
    grid-template-columns: 1fr 190px 1fr;
    gap: 24px;
    align-items: stretch;
  }

  .vr-mv-pillar-card {
    position: relative;
    min-height: 430px;
    padding: 34px 32px;
    background: #ffffff;
    border: 1px solid #e3ebf7;
    border-radius: 34px;
    box-shadow: 0 24px 58px rgba(3, 29, 73, 0.11);
    overflow: hidden;
  }

  .vr-mv-pillar-card::before {
    content: "";
    position: absolute;
    right: -45px;
    top: -45px;
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
  }

  .vr-mv-pillar-card.red::before {
    background: rgba(239, 68, 68, 0.1);
  }

  .vr-mv-pillar-icon {
    width: 72px;
    height: 72px;
    margin-bottom: 24px;
    border-radius: 22px;
    background: #031d49;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    
    font-size: 2.7rem;
    line-height: 1;
    font-weight: 900;
    box-shadow: 0 16px 34px rgba(3, 29, 73, 0.18);
  }

  .vr-mv-pillar-card.red .vr-mv-pillar-icon {
    background: #ef4444;
    box-shadow: 0 16px 34px rgba(239, 68, 68, 0.2);
  }

  .vr-mv-pillar-card span {
    display: block;
    margin-bottom: 8px;
    color: #2563eb;
    
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .vr-mv-pillar-card.red span {
    color: #ef4444;
  }

  .vr-mv-pillar-card h3 {
    margin: 0 0 16px;
    color: #031d49;
    
    font-size: 1.75rem;
    line-height: 1.12;
    font-weight: 900;
  }

  .vr-mv-pillar-card p {
    margin: 0 0 12px;
    color: #3f4b5f;
    font-size: 16px;
    line-height: 1.64;
    font-weight: 500;
  }

  .vr-mv-pillar-card p:last-child {
    margin-bottom: 0;
  }

  .vr-mv-pillar-center {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .vr-mv-pillar-line {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    border-radius: 999px;
    background: linear-gradient(180deg, #2563eb, #ef4444);
  }

  .vr-mv-pillar-circle {
    position: relative;
    z-index: 2;
    width: 168px;
    height: 168px;
    border-radius: 50%;
    background: #031d49;
    border: 10px solid #ffffff;
    box-shadow: 0 25px 65px rgba(3, 29, 73, 0.22);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }

  .vr-mv-pillar-circle::before {
    content: "";
    position: absolute;
    inset: -22px;
    border-radius: 50%;
    border: 2px dashed rgba(239, 68, 68, 0.45);
  }

  .vr-mv-pillar-circle strong {
    color: #ffffff;
    
    font-size: 4rem;
    line-height: 0.9;
    letter-spacing: 0.04em;
  }

  .vr-mv-pillar-circle small {
    margin-top: 6px;
    color: rgba(255,255,255,0.78);
    
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.14em;
  }

  @media (max-width: 1100px) {
    .vr-mv-pillar {
      height: auto;
      min-height: 90vh;
      padding: 70px 4%;
    }

    .vr-mv-pillar-layout {
      grid-template-columns: 1fr;
      max-width: 760px;
      margin: 0 auto;
    }

    .vr-mv-pillar-center {
      min-height: 120px;
      order: -1;
    }

    .vr-mv-pillar-line {
      left: 50%;
      height: 100%;
    }
  }

  @media (max-width: 640px) {
    .vr-mv-pillar {
      padding: 58px 16px;
      min-height: 90vh;
    }

    .vr-mv-pillar-head {
      margin-bottom: 34px;
    }

    .vr-mv-pillar-head h2 {
      font-size: 2.35rem;
    }

    .vr-mv-pillar-card {
      min-height: auto;
      padding: 26px 22px;
      border-radius: 24px;
    }

    .vr-mv-pillar-icon {
      width: 62px;
      height: 62px;
      border-radius: 18px;
      font-size: 2.2rem;
      margin-bottom: 18px;
    }

    .vr-mv-pillar-card h3 {
      font-size: 1.4rem;
    }

    .vr-mv-pillar-card p {
      font-size: 16pxrem;
      line-height: 1.56;
    }

    .vr-mv-pillar-circle {
      width: 132px;
      height: 132px;
      border-width: 8px;
    }

    .vr-mv-pillar-circle strong {
      font-size: 3.1rem;
    }
  }
/* end */

/* <section class="vr-about-premium" id="about" aria-labelledby="vrAboutPremiumHeading"> */
  .vr-about-premium {
    width: 100%;
    padding: 20px 5%;
    background:
      radial-gradient(circle at 12% 18%, rgba(37, 99, 235, 0.12), transparent 34%),
      radial-gradient(circle at 88% 82%, rgba(239, 68, 68, 0.11), transparent 32%),
      linear-gradient(180deg, #ffffff 0%, #f6f9ff 100%);
   
    overflow: hidden;
  }

  .vr-about-premium-wrap {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 58px;
    align-items: center;
  }

  .vr-about-visual {
    position: relative;
    min-height: 560px;
  }

  .vr-about-image-card {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 520px;
    border-radius: 32px;
    overflow: hidden;
    background: #eaf2ff;
    box-shadow: 0 28px 70px rgba(3, 29, 73, 0.18);
  }

  .vr-about-image-card::before {
    content: "";
    position: absolute;
    inset: 18px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 24px;
    z-index: 3;
    pointer-events: none;
  }

  .vr-about-image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
  }

  .vr-about-floating-card {
    position: absolute;
    z-index: 4;
    right: -26px;
    bottom: 54px;
    width: 190px;
    min-height: 150px;
    padding: 24px 20px;
    border-radius: 26px;
    background: #031d49;
    border: 6px solid #ffffff;
    box-shadow: 0 22px 48px rgba(3, 29, 73, 0.22);
    text-align: center;
  }

  .vr-about-floating-card strong {
    display: block;
    color: #ffffff;
    
    font-size: 4rem;
    line-height: 0.9;
    letter-spacing: 0.04em;
  }

  .vr-about-floating-card span {
    display: block;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.82);
    
    font-size: 0.9rem;
    line-height: 1.35;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .vr-about-shape {
    position: absolute;
    border-radius: 999px;
    z-index: 1;
  }

  .vr-about-shape-one {
    width: 210px;
    height: 210px;
    left: -70px;
    top: -48px;
    background: rgba(239, 68, 68, 0.14);
  }

  .vr-about-shape-two {
    width: 160px;
    height: 160px;
    right: 36px;
    bottom: -12px;
    background: rgba(37, 99, 235, 0.14);
  }

  .vr-about-content {
    position: relative;
    z-index: 3;
  }

  .vr-about-label {
    display: inline-flex;
    align-items: center;
    margin-bottom: 16px;
    padding: 8px 18px;
    background: #ffffff;
    color: #353B6E;
    border-left: 4px solid #ef4444;
    border-radius: 999px;
    box-shadow: 0 10px 28px rgba(3, 29, 73, 0.08);
    
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .vr-about-content h2 {
    margin: 0 0 22px;
    color: #031d49;
    
    font-size: clamp(2.7rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 700;
    letter-spacing: 0.04em;
  }

  .vr-about-content h2 span {
    color: #ef4444;
  }

  .vr-about-content p {
    margin: 0 0 18px;
    color: #3f4b5f;
    font-size: 1rem;
    line-height: 1.85;
    font-weight: 500;
  }

  .vr-about-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin: 28px 0;
  }

  .vr-about-feature {
    position: relative;
    min-height: 92px;
    padding: 18px 18px 18px 72px;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e3ebf7;
    box-shadow: 0 12px 28px rgba(3, 29, 73, 0.07);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  }

  .vr-about-feature:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.35);
    box-shadow: 0 18px 38px rgba(3, 29, 73, 0.12);
  }

  .vr-about-feature::after {
    content: "";
    position: absolute;
    right: -34px;
    bottom: -34px;
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
  }

  .vr-about-feature:nth-child(even)::after {
    background: rgba(239, 68, 68, 0.08);
  }

  .vr-about-feature span {
    position: absolute;
    left: 18px;
    top: 18px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: #031d49;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    font-size: 0.85rem;
    font-weight: 900;
  }

  .vr-about-feature:nth-child(even) span {
    background: #ef4444;
  }

  .vr-about-feature h3 {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #031d49;
    
    font-size: 1rem;
    line-height: 1.35;
    font-weight: 900;
  }

  .vr-about-actions {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
    flex-wrap: wrap;
  }

  .vr-about-btn-primary,
  .vr-about-btn-secondary {
    min-height: 48px;
    padding: 0 24px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    font-size: 0.86rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  }

  .vr-about-btn-primary {
    background: #031d49;
    color: #ffffff;
    border: 2px solid #031d49;
  }

  .vr-about-btn-primary:hover {
    background: #ef4444;
    border-color: #ef4444;
    transform: translateY(-3px);
  }

  .vr-about-btn-secondary {
    background: #ffffff;
    color: #031d49;
    border: 2px solid #dbe6f5;
  }

  .vr-about-btn-secondary:hover {
    color: #ef4444;
    border-color: #ef4444;
    transform: translateY(-3px);
  }

  @media (max-width: 1024px) {
    .vr-about-premium-wrap {
      grid-template-columns: 1fr;
      gap: 42px;
      max-width: 780px;
    }

    .vr-about-visual {
      min-height: auto;
    }

    .vr-about-image-card {
      height: 460px;
    }

    .vr-about-floating-card {
      right: 24px;
      bottom: 24px;
    }
  }

  @media (max-width: 640px) {
    .vr-about-premium {
      padding: 65px 16px;
    }

    .vr-about-image-card {
      height: 330px;
      border-radius: 22px;
    }

    .vr-about-image-card::before {
      inset: 12px;
      border-radius: 16px;
    }

    .vr-about-floating-card {
      position: relative;
      right: auto;
      bottom: auto;
      width: 100%;
      min-height: auto;
      margin-top: 16px;
      border-width: 0;
      border-radius: 20px;
      padding: 20px;
    }

    .vr-about-floating-card strong {
      font-size: 3rem;
    }

    .vr-about-shape {
      display: none;
    }

    .vr-about-content h2 {
      font-size: 2.55rem;
    }

    .vr-about-content p {
      font-size: 0.94rem;
      line-height: 1.72;
    }

    .vr-about-feature-grid {
      grid-template-columns: 1fr;
      gap: 12px;
      margin: 24px 0;
    }

    .vr-about-feature {
      min-height: 82px;
    }

    .vr-about-actions {
      align-items: stretch;
    }

    .vr-about-btn-primary,
    .vr-about-btn-secondary {
      width: 100%;
    }
  }
/* end */

/* <section class="vr-entrust-stair" id="project-trust" aria-labelledby="vrEntrustStairHeading"> */

  .vr-entrust-stair {
    width: 100%;
    height: auto;
    min-height: 720px;
    padding: 50px 5%;
    background:
      linear-gradient(135deg, #031d49 0%, #031d49 44%, #f6f9ff 44%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .vr-entrust-stair::before {
    content: "";
    position: absolute;
    left: -120px;
    top: -120px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.24);
  }

  .vr-entrust-stair::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
  }

  .vr-entrust-stair-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.68fr 1.32fr;
    gap: 48px;
    align-items: center;
  }

  .vr-entrust-stair-head {
    max-width: 430px;
  }

  .vr-entrust-stair-head span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-left: 4px solid #ef4444;
    border-radius: 999px;
    
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .vr-entrust-stair-head h2 {
    margin: 0;
    color: #ffffff;
    
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .vr-entrust-stair-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: start;
  }

  .vr-stair-card {
    position: relative;
    min-height: 215px;
    padding: 26px 18px 22px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e3ebf7;
    box-shadow: 0 22px 52px rgba(3, 29, 73, 0.13);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .vr-stair-card:nth-child(2),
  .vr-stair-card:nth-child(6) {
    margin-top: 42px;
  }

  .vr-stair-card:nth-child(3),
  .vr-stair-card:nth-child(7) {
    margin-top: 84px;
  }

  .vr-stair-card:nth-child(4),
  .vr-stair-card:nth-child(8) {
    margin-top: 126px;
  }

  .vr-stair-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(3, 29, 73, 0.18);
  }

  .vr-stair-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background: #2563eb;
  }

  .vr-stair-card.red::before {
    background: #ef4444;
  }

  .vr-stair-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
  }

  .vr-stair-card.red::after {
    background: rgba(239, 68, 68, 0.09);
  }

  .vr-stair-card span {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #031d49;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    font-size: 0.9rem;
    font-weight: 900;
  }

  .vr-stair-card.red span {
    background: #ef4444;
  }

  .vr-stair-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #3f4b5f;
    font-size: 16px;
    line-height: 1.55;
    font-weight: 700;
  }

  @media (max-width: 1150px) {
    .vr-entrust-stair {
      height: auto;
      min-height: 90vh;
      padding: 70px 4%;
      background:
        linear-gradient(180deg, #031d49 0%, #031d49 36%, #f6f9ff 36%, #ffffff 100%);
    }

    .vr-entrust-stair-container {
      grid-template-columns: 1fr;
      max-width: 860px;
      gap: 38px;
    }

    .vr-entrust-stair-head {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .vr-entrust-stair-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .vr-stair-card:nth-child(2),
    .vr-stair-card:nth-child(3),
    .vr-stair-card:nth-child(4),
    .vr-stair-card:nth-child(6),
    .vr-stair-card:nth-child(7),
    .vr-stair-card:nth-child(8) {
      margin-top: 0;
    }
  }

  @media (max-width: 640px) {
    .vr-entrust-stair {
      min-height: 90vh;
      padding: 58px 16px;
      align-items: flex-start;
    }

    .vr-entrust-stair-head h2 {
      font-size: 2.42rem;
    }

    .vr-entrust-stair-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .vr-stair-card {
      min-height: auto;
      padding: 22px 18px;
      border-radius: 22px;
    }

    .vr-stair-card span {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      margin-bottom: 14px;
    }

    .vr-stair-card p {
      font-size: 0.86rem;
      line-height: 1.5;
    }
  }
/* end */

.vr-footer-final {
  width: 100%;
  background: #021126;
  overflow: hidden;
}

.vr-footer-final-container {
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 5%;
  padding-right: 5%;
}

.vr-footer-final-cta {
  position: relative;
  background:
    radial-gradient(circle at 12% 22%, rgba(239, 68, 68, 0.24), transparent 30%),
    linear-gradient(135deg, #031d49 0%, #061f4d 55%, #021126 100%);
  padding: 58px 0;
  color: #ffffff;
}

.vr-footer-final-cta::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 34px;
  pointer-events: none;
}

.vr-footer-final-cta::after {
  content: "VRDECOR";
  position: absolute;
  right: 4%;
  bottom: 8px;
  color: rgba(255, 255, 255, 0.045);
  font-size: clamp(4rem, 11vw, 10rem);
  line-height: 0.75;
  font-weight: 900;
  letter-spacing: 0.08em;
  pointer-events: none;
}

.vr-footer-final-cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.vr-footer-final-cta span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 16px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-left: 4px solid #ef4444;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.vr-footer-final-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.3rem, 4.6vw, 4.6rem);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.vr-footer-final-main {
  position: relative;
  padding: 66px 0 52px;
  background:
    radial-gradient(circle at 88% 22%, rgba(37, 99, 235, 0.15), transparent 30%),
    linear-gradient(180deg, #021126 0%, #031d49 100%);
  color: #ffffff;
}

.vr-footer-final-main::before {
  content: "";
  position: absolute;
  left: -140px;
  bottom: -160px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.14);
}

.vr-footer-final-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr 0.72fr 0.9fr 1.02fr;
  gap: 38px;
  align-items: start;
}

.vr-footer-final-brand {
  max-width: 380px;
}

.vr-footer-final-logo {
  width: 132px;
  height: 84px;
  margin-bottom: 22px;
  padding: 10px;
  border-radius: 18px;
  background: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.vr-footer-final-logo img {
  width: 100%;
  height: 125%;
  object-fit: contain;
  display: block;
}

.vr-footer-final-brand p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.94rem;
  line-height: 1.75;
  font-weight: 500;
}

.vr-footer-social {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 22px;
  flex-wrap: wrap;
}

.vr-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition:
    background 0.25s ease,
    border-color 0.25s ease,
    color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.vr-footer-social a svg {
  width: 19px;
  height: 19px;
  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.8;
}

.vr-footer-social a:hover {
  background: #ef4444;
  border-color: #ef4444;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 14px 32px rgba(239, 68, 68, 0.22);
}

.vr-footer-final-col h3,
.vr-footer-final-contact h3 {
  margin: 0 0 22px;
  color: #ffffff;
  font-size: 1.22rem;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vr-footer-final-col h3::after,
.vr-footer-final-contact h3::after {
  content: "";
  width: 46px;
  height: 4px;
  margin-top: 10px;
  display: block;
  border-radius: 999px;
  background: #ef4444;
}

.vr-footer-final-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.vr-footer-final-col li {
  margin-bottom: 12px;
}

.vr-footer-final-col a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.94rem;
  line-height: 1.35;
  font-weight: 800;
  display: inline-flex;
  transition: color 0.25s ease, transform 0.25s ease;
}

.vr-footer-final-col a:hover {
  color: #ef4444;
  transform: translateX(5px);
}

.vr-footer-final-contact-item {
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.vr-footer-final-contact-item span {
  display: block;
  margin-bottom: 5px;
  color: #ef4444;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.vr-footer-final-contact-item a,
.vr-footer-final-contact-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  font-size: 0.92rem;
  line-height: 1.5;
  font-weight: 650;
}

.vr-footer-final-contact-item a:hover {
  color: #ef4444;
}

.vr-footer-final-bottom {
  padding: 20px 0;
  background: #020b1a;
}

.vr-footer-final-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.vr-footer-final-bottom p,
.vr-footer-final-bottom a {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  text-decoration: none;
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 600;
}

.vr-footer-final-bottom a:hover {
  color: #ef4444;
}

@media (max-width: 1050px) {
  .vr-footer-final-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .vr-footer-final-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 36px 30px;
  }

  .vr-footer-final-brand {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .vr-footer-final-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .vr-footer-final-cta {
    padding: 50px 0;
  }

  .vr-footer-final-cta::before {
    inset: 10px;
    border-radius: 22px;
  }

  .vr-footer-final-cta::after {
    display: none;
  }

  .vr-footer-final-cta h2 {
    font-size: 2.35rem;
  }

  .vr-footer-final-main {
    padding: 52px 0 42px;
  }

  .vr-footer-final-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .vr-footer-final-logo {
    width: 118px;
    height: 76px;
    border-radius: 16px;
  }

  .vr-footer-final-brand p {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .vr-footer-social {
    margin-top: 18px;
  }

  .vr-footer-social a {
    width: 38px;
    height: 38px;
  }

  .vr-footer-social a svg {
    width: 17px;
    height: 17px;
  }

  .vr-footer-final-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
/* end */

/* <section class="vr-entrust-stair" id="project-trust" aria-labelledby="vrEntrustStairHeading"> */

  .vr-entrust-stair {
    width: 100%;
    height: auto;
    min-height: 720px;
    padding: 50px 5%;
    background:
      linear-gradient(135deg, #031d49 0%, #031d49 44%, #f6f9ff 48%, #ffffff 100%);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
  }

  .vr-entrust-stair::before {
    content: "";
    position: absolute;
    left: -120px;
    top: -120px;
    width: 330px;
    height: 330px;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.24);
  }

  .vr-entrust-stair::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -130px;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.12);
  }

  .vr-entrust-stair-container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 0.68fr 1.32fr;
    gap: 48px;
    align-items: center;
  }

  .vr-entrust-stair-head {
    max-width: 430px;
  }

  .vr-entrust-stair-head span {
    display: inline-flex;
    margin-bottom: 18px;
    padding: 8px 18px;
    background: rgba(255,255,255,0.12);
    color: #ffffff;
    border-left: 4px solid #ef4444;
    border-radius: 999px;
    
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .vr-entrust-stair-head h2 {
    margin: 0;
    color: #ffffff;
    
    font-size: clamp(2.6rem, 5vw, 5rem);
    line-height: 0.95;
    font-weight: 900;
    letter-spacing: 0.04em;
  }

  .vr-entrust-stair-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    align-items: start;
  }

  .vr-stair-card {
    position: relative;
    min-height: 215px;
    padding: 26px 18px 22px;
    border-radius: 28px;
    background: #ffffff;
    border: 1px solid #e3ebf7;
    box-shadow: 0 22px 52px rgba(3, 29, 73, 0.13);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .vr-stair-card:nth-child(2),
  .vr-stair-card:nth-child(6) {
    margin-top: 42px;
  }

  .vr-stair-card:nth-child(3),
  .vr-stair-card:nth-child(7) {
    margin-top: 84px;
  }

  .vr-stair-card:nth-child(4),
  .vr-stair-card:nth-child(8) {
    margin-top: 126px;
  }

  .vr-stair-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 70px rgba(3, 29, 73, 0.18);
  }

  .vr-stair-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 8px;
    background: #2563eb;
  }

  .vr-stair-card.red::before {
    background: #ef4444;
  }

  .vr-stair-card::after {
    content: "";
    position: absolute;
    right: -42px;
    bottom: -42px;
    width: 112px;
    height: 112px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.08);
  }

  .vr-stair-card.red::after {
    background: rgba(239, 68, 68, 0.09);
  }

  .vr-stair-card span {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    border-radius: 16px;
    background: #031d49;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    font-size: 0.9rem;
    font-weight: 900;
  }

  .vr-stair-card.red span {
    background: #ef4444;
  }

  .vr-stair-card p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: #3f4b5f;
    font-size: 0.88rem;
    line-height: 1.55;
    font-weight: 700;
  }

  @media (max-width: 1150px) {
    .vr-entrust-stair {
      height: auto;
      min-height: 90vh;
      padding: 70px 4%;
      background:
        linear-gradient(180deg, #031d49 0%, #031d49 36%, #f6f9ff 36%, #ffffff 100%);
    }

    .vr-entrust-stair-container {
      grid-template-columns: 1fr;
      max-width: 860px;
      gap: 38px;
    }

    .vr-entrust-stair-head {
      max-width: 760px;
      margin: 0 auto;
      text-align: center;
    }

    .vr-entrust-stair-grid {
      grid-template-columns: repeat(2, 1fr);
    }

    .vr-stair-card:nth-child(2),
    .vr-stair-card:nth-child(3),
    .vr-stair-card:nth-child(4),
    .vr-stair-card:nth-child(6),
    .vr-stair-card:nth-child(7),
    .vr-stair-card:nth-child(8) {
      margin-top: 0;
    }
  }

  @media (max-width: 640px) {
    .vr-entrust-stair {
      min-height: 90vh;
      padding: 58px 16px;
      align-items: flex-start;
    }

    .vr-entrust-stair-head h2 {
      font-size: 2.42rem;
    }

    .vr-entrust-stair-grid {
      grid-template-columns: 1fr;
      gap: 14px;
    }

    .vr-stair-card {
      min-height: auto;
      padding: 22px 18px;
      border-radius: 22px;
    }

    .vr-stair-card span {
      width: 42px;
      height: 42px;
      border-radius: 13px;
      margin-bottom: 14px;
    }

    .vr-stair-card p {
      font-size: 0.86rem;
      line-height: 1.5;
    }
  }
/* end */

/* <section class="vr-unitized-simple" id="unitized-benefits" aria-labelledby="vrUnitizedSimpleHeading"> */
.vr-unitized-simple {
    width: 100%;
    padding: 78px 5%;
    background: #ffffff;
    overflow: hidden;
  }

  .vr-unitized-simple-container {
    max-width: 1180px;
    margin: 0 auto;
  }

  .vr-unitized-simple-head {
    max-width: 900px;
    margin: 0 auto 46px;
    text-align: center;
  }

  .vr-unitized-simple-head span {
    display: inline-block;
    margin-bottom: 14px;
    padding: 7px 15px;
    background: #eef5ff;
    color: #353B6E;
    border-left: 4px solid #ef4444;
    border-radius: 999px;
    
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .vr-unitized-simple-head h2 {
    margin: 0 0 18px;
    color: #031d49;
    
    font-size: clamp(1.9rem, 3.3vw, 3rem);
    line-height: 1.08;
    font-weight: 700;
  }

  .vr-unitized-simple-head p {
    margin: 0 auto 13px;
    color: #3f4b5f;
    font-size: 0.92rem;
    line-height: 1.7;
    font-weight: 400;
  }

  .vr-unitized-simple-head p:last-child {
    margin-bottom: 0;
  }

  .vr-unitized-simple-benefits {
    border-radius: 28px;
    background:
      linear-gradient(135deg, #f7faff 0%, #ffffff 100%);
    border: 1px solid #e3ebf7;
    box-shadow: 0 18px 45px rgba(3, 29, 73, 0.07);
    overflow: hidden;
  }

  .vr-unitized-simple-title {
    padding: 26px 30px;
    background: #031d49;
    border-left: 7px solid #ef4444;
  }

  .vr-unitized-simple-title h3 {
    margin: 0;
    color: #ffffff;
    
    font-size: clamp(1.35rem, 2.4vw, 2rem);
    line-height: 1.15;
    font-weight: 700;
  }

  .vr-unitized-simple-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }

  .vr-unitized-simple-list article {
    position: relative;
    padding: 26px 28px 26px 82px;
    border-bottom: 1px solid #e3ebf7;
    background: #ffffff;
  }

  .vr-unitized-simple-list article:nth-child(odd) {
    border-right: 1px solid #e3ebf7;
  }

  .vr-unitized-simple-list article::before {
    content: "";
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 3px;
    border-radius: 999px;
    background: #2563eb;
  }

  .vr-unitized-simple-list article:nth-child(even)::before {
    background: #ef4444;
  }

  .vr-unitized-simple-list span {
    position: absolute;
    left: 42px;
    top: 24px;
    color: #031d49;
    
    font-size: 0.82rem;
    font-weight: 700;
  }

  .vr-unitized-simple-list article:nth-child(even) span {
    color: #ef4444;
  }

  .vr-unitized-simple-list h4 {
    margin: 0 0 8px;
    color: #031d49;
    
    font-size: 1.05rem;
    line-height: 1.25;
    font-weight: 700;
  }

  .vr-unitized-simple-list p {
    margin: 0;
    color: #3f4b5f;
    font-size: 0.86rem;
    line-height: 1.56;
    font-weight: 400;
  }

  .vr-unitized-simple-note {
    padding: 24px 30px;
    background: #f7faff;
  }

  .vr-unitized-simple-note p {
    margin: 0;
    color: #3f4b5f;
    font-size: 0.9rem;
    line-height: 1.62;
    font-weight: 400;
  }

  @media (max-width: 820px) {
    .vr-unitized-simple {
      padding: 60px 16px;
    }

    .vr-unitized-simple-head {
      margin-bottom: 34px;
      text-align: left;
    }

    .vr-unitized-simple-head h2 {
      font-size: 2rem;
    }

    .vr-unitized-simple-list {
      grid-template-columns: 1fr;
    }

    .vr-unitized-simple-list article:nth-child(odd) {
      border-right: 0;
    }

    .vr-unitized-simple-list article {
      padding: 24px 20px 24px 72px;
    }

    .vr-unitized-simple-list article::before {
      left: 22px;
    }

    .vr-unitized-simple-list span {
      left: 35px;
    }

    .vr-unitized-simple-title,
    .vr-unitized-simple-note {
      padding: 22px 20px;
    }

  }
  .vr-unitized-simple-list article {
  position: relative;
  padding: 26px 28px 26px 82px;
  border-bottom: 1px solid #e3ebf7;
  background:
    radial-gradient(circle at 92% 18%, rgba(37, 99, 235, 0.08), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    border-color 0.28s ease;
}

.vr-unitized-simple-list article:nth-child(odd) {
  border-right: 1px solid #e3ebf7;
}

.vr-unitized-simple-list article:nth-child(even) {
  background:
    radial-gradient(circle at 92% 18%, rgba(239, 68, 68, 0.08), transparent 26%),
    linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
}

.vr-unitized-simple-list article::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 105px;
  height: 105px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.07);
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.vr-unitized-simple-list article:nth-child(even)::after {
  background: rgba(239, 68, 68, 0.08);
}

.vr-unitized-simple-list article:hover {
  transform: translateY(-8px);
  z-index: 5;
  border-color: rgba(37, 99, 235, 0.28);
  box-shadow: 0 18px 42px rgba(3, 29, 73, 0.12);
}

.vr-unitized-simple-list article:hover::after {
  transform: scale(1.18);
  opacity: 0.9;
}

.vr-unitized-simple-list article:hover h4 {
  color: #ef4444;
}@media (max-width: 820px) {
  .vr-unitized-simple-list article:hover {
    transform: translateY(-5px);
  }
}
/* end */

/* <section class="vr-unitized-normal" id="unitized-glazing" aria-labelledby="vrUnitizedNormalHeading"> */

.vr-unitized-normal {
    width: 100%;
    padding: 20px 5%;
    background: #f7f7f7;
  }

  .vr-unitized-normal-container {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
  }

  .vr-unitized-normal-image {
    width: 100%;
    height: 430px;
    overflow: hidden;
    border-radius: 18px;
  }

  .vr-unitized-normal-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: fill;
    object-position: center;
  }

  .vr-unitized-normal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .vr-unitized-normal-label {
    width: fit-content;
    margin-bottom: 14px;
    padding: 7px 15px;
    background: #eef5ff;
    color: #353B6E;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .vr-unitized-normal-content h2 {
    margin: 0 0 18px;
    color: #031d49;
    font-size: clamp(2rem, 2.6vw, 3.2rem);
    line-height: 1.08;
    font-weight: 700;
  }

  .vr-unitized-normal-content p {
    margin: 0 0 15px;
    color: #3f4b5f;
    font-size: 0.95rem;
    line-height: 1.75;
    font-weight: 400;
    text-align: justify;
  }

  .vr-unitized-normal-line {
    display: flex;
    gap: 36px;
    margin-top: 22px;
    padding-top: 22px;
    border-top: 1px solid #e3ebf7;
  }

  .vr-unitized-normal-line div {
    position: relative;
    padding-left: 16px;
  }

  .vr-unitized-normal-line div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 4px;
    bottom: 4px;
    width: 4px;
    border-radius: 999px;
    background: #2563eb;
  }

  .vr-unitized-normal-line div:nth-child(2)::before {
    background: #ef4444;
  }

  .vr-unitized-normal-line strong {
    display: block;
    margin-bottom: 5px;
    color: #031d49;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
  }

  .vr-unitized-normal-line span {
    display: block;
    color: #3f4b5f;
    font-size: 0.8rem;
    line-height: 1.3;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  @media (max-width: 992px) {
    .vr-unitized-normal {
      padding: 64px 4%;
    }

    .vr-unitized-normal-container {
      grid-template-columns: 1fr;
      gap: 32px;
      max-width: 760px;
    }

    .vr-unitized-normal-image {
      height: 420px;
    }
  }

  @media (max-width: 600px) {
    .vr-unitized-normal {
      padding: 54px 16px;
    }

    .vr-unitized-normal-image {
      height: 300px;
      border-radius: 14px;
    }

    .vr-unitized-normal-content h2 {
      font-size: 2rem;
    }

    .vr-unitized-normal-content p {
      font-size: 0.88rem;
      line-height: 1.62;
      text-align: left;
    }

    .vr-unitized-normal-line {
      gap: 20px;
      flex-wrap: wrap;
    }
  }
  /* end */

  /* <section class="vr-product-clean" id="products" aria-labelledby="vrProductCleanHeading"> */
  .vr-product-clean {
  width: 100%;
  padding: 80px 5%;
  background: aliceblue;
}

.vr-product-clean-container {
  max-width: 1180px;
  margin: 0 auto;
}

.vr-product-clean-head {
  max-width: 760px;
  margin: 0 auto 42px;
  text-align: center;
}

.vr-product-clean-head span {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 15px;
  background: #d3d3d3;
  color: #353B6E;
  border-left: 4px solid #ef4444;
  border-radius: 6px;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vr-product-clean-head h2 {
  margin: 0;
  color: #031d49;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
  font-weight: 800;
}

.vr-product-clean-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
}

.vr-product-clean-card {
  position: relative;
  width: calc(25% - 14px);
  min-height: 210px;
  padding: 24px 18px;
  background: #ffffff;
  border: 1px solid #e3ebf7;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    box-shadow 0.25s ease;
}

.vr-product-clean-card::before {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 0;
  height: 4px;
  background: #031d49;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease, background 0.25s ease;
}

.vr-product-clean-card:nth-child(even)::before {
  background: #ef4444;
}

.vr-product-clean-card:hover {
  transform: translateY(-7px);
  border-color: #cfdced;
  box-shadow: 0 18px 38px rgba(3, 29, 73, 0.1);
}

.vr-product-clean-card:hover::before {
  transform: scaleX(1);
}

.vr-product-clean-img {
  height: 118px;
  width: 100%;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vr-product-clean-img img {
  max-width: 150px;
  max-height: 115px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
  transition: transform 0.25s ease;
}

.vr-product-clean-card:hover img {
  transform: scale(1.07);
}

.vr-product-clean-card h3 {
  margin: 0;
  color: #1f2933;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 800;
  text-align: center;
}

.vr-product-clean-card:hover h3 {
  color: #031d49;
}

@media (max-width: 1024px) {
  .vr-product-clean-card {
    width: calc(33.333% - 12px);
  }
}

@media (max-width: 760px) {
  .vr-product-clean {
    padding: 62px 16px;
  }

  .vr-product-clean-grid {
    gap: 14px;
  }

  .vr-product-clean-card {
    width: calc(50% - 7px);
    min-height: 190px;
    padding: 22px 14px;
  }

  .vr-product-clean-img {
    height: 105px;
    margin-bottom: 14px;
  }

  .vr-product-clean-img img {
    max-width: 125px;
    max-height: 100px;
  }

  .vr-product-clean-card h3 {
    font-size: 0.92rem;
  }
}

@media (max-width: 460px) {
  .vr-product-clean-card {
    width: 100%;
  }
}
/* end */

/* Floating Contact Buttons Start */
/* <div class="vr-floating-contact" aria-label="Quick contact buttons"> */

.vr-floating-contact {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 99999;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.vr-floating-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(3, 29, 73, 0.22);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    background 0.25s ease;
}

.vr-floating-btn svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
}

.vr-floating-call {
  background: #031d49;
}

.vr-floating-whatsapp {
  background: #25d366;
}

.vr-floating-btn:hover {
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 20px 44px rgba(3, 29, 73, 0.28);
}

.vr-floating-call:hover {
  background: #ef4444;
}

.vr-floating-whatsapp:hover {
  background: #1ebe5d;
}

@media (max-width: 640px) {
  .vr-floating-contact {
    right: 14px;
    bottom: 16px;
    gap: 10px;
  }

  .vr-floating-btn {
    width: 48px;
    height: 48px;
  }

  .vr-floating-btn svg {
    width: 21px;
    height: 21px;
  }
}
/* end */

    /* <section class="vr-clients-section" aria-labelledby="vrClientsHeading"> */

.vr-clients-section {
    width: 100%;
    background: #ffffef;
    padding: 75px 5%;
    overflow: hidden;
  }

  .vr-clients-header {
    max-width: 760px;
    margin: 0 auto 45px;
    text-align: center;
  }

  .vr-clients-label {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 16px;
    background: #eaf2ff;
    color: #353B6E;
    border-left: 4px solid #ef4444;
    border-radius: 4px;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .vr-clients-header h2 {
    margin: 0 0 14px;
    color: #031d49;
    font-size: clamp(2.4rem, 4vw, 4.1rem);
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .vr-clients-header p {
    margin: 0 auto;
    color: #4b5563;
    font-size: 1rem;
    line-height: 1.7;
    max-width: 650px;
  }

  .vr-clients-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    align-items: center;
  }

  .vr-client-logo-card {
    height: 135px;
    padding: 22px;
    background: #ffffff;
    border: 1px solid #e5eaf3;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 12px 30px rgba(3, 29, 73, 0.08);
    position: relative;
    overflow: hidden;

    opacity: 0;
    transform: translateY(70px) scale(0.92);
    transition:
      opacity 0.75s ease,
      transform 0.75s cubic-bezier(0.18, 0.89, 0.32, 1.22),
      border-color 0.3s ease,
      box-shadow 0.3s ease;
  }

  .vr-client-logo-card.show {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  .vr-client-logo-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(239,68,68,0.08));
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .vr-client-logo-card:hover {
    border-color: rgba(37,99,235,0.35);
    box-shadow: 0 18px 42px rgba(3, 29, 73, 0.14);
    transform: translateY(-6px) scale(1.02);
  }

  .vr-client-logo-card:hover::before {
    opacity: 1;
  }

  .vr-client-logo-card img {
    position: relative;
    z-index: 2;
    max-width: 100%;
    max-height: 82px;
    object-fit: contain;
    opacity: 0.78;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
  }

  .vr-client-logo-card:hover img {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.05);
  }

  @media (max-width: 992px) {
    .vr-clients-grid {
      grid-template-columns: repeat(3, 1fr);
      max-width: 780px;
    }
  }

  @media (max-width: 640px) {
    .vr-clients-section {
      padding: 60px 16px;
    }

    .vr-clients-header {
      margin-bottom: 34px;
    }

    .vr-clients-label {
      font-size: 0.72rem;
      letter-spacing: 0.1em;
    }

    .vr-clients-header p {
      font-size: 0.94rem;
      line-height: 1.65;
    }

    .vr-clients-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
    }

    .vr-client-logo-card {
      height: 112px;
      padding: 16px;
      border-radius: 13px;
    }

    .vr-client-logo-card img {
      max-height: 68px;
    }
  }

  @media (max-width: 380px) {
    .vr-clients-grid {
      grid-template-columns: 1fr;
    }

    .vr-client-logo-card {
      height: 115px;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .vr-client-logo-card {
      transition: none;
      transform: none;
    }

    .vr-client-logo-card.show {
      transform: none;
    }
  }
/* end */

/* <section class="vr-page-banner" aria-labelledby="vrPageBannerHeading"> */

.vr-page-banner {
  position: relative;
  width: 100%;
  height: 25vh;
  padding: 55px 5%;
  background:radial-gradient(circle at 12% 22%, rgba(239, 68, 68, 0.24), transparent 30%), linear-gradient(135deg, #031d49 0%, #061f4d 55%, #021126 100%),
    url("./images/06.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.vr-page-banner::before {
  content: "";
  position: absolute;
  left: -80px;
  top: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(239, 68, 68, 0.22);
  pointer-events: none;
}

.vr-page-banner::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(37, 99, 235, 0.18);
  pointer-events: none;
}

.vr-page-banner-overlay {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  pointer-events: none;
}

.vr-page-banner-container {
  position: relative;
  z-index: 2;
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
}

.vr-page-banner-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 15px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  border-left: 4px solid #ef4444;
  border-radius: 999px;
  font-size: 0.74rem;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.vr-page-banner h1 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 3vw, 4.2rem);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.vr-page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 15px;
  flex-wrap: wrap;
}

.vr-page-breadcrumb a,
.vr-page-breadcrumb p,
.vr-page-breadcrumb span {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 700;
  text-decoration: none;
}

.vr-page-breadcrumb a:hover {
  color: #ef4444;
}

.vr-page-breadcrumb p {
  color: #ffffff;
}

@media (max-width: 768px) {
  .vr-page-banner {
    min-height: 30vh;
    padding: 42px 16px;
    background-position: center;
  }

  .vr-page-banner-overlay {
    inset: 10px;
    border-radius: 20px;
  }

  .vr-page-banner h1 {
    font-size: 2.25rem;
  }

  .vr-page-banner-label {
    font-size: 0.68rem;
    padding: 7px 13px;
  }

  .vr-page-breadcrumb a,
  .vr-page-breadcrumb p,
  .vr-page-breadcrumb span {
    font-size: 0.84rem;
  }
}

@media (max-width: 420px) {
  .vr-page-banner {
    min-height: 30vh;
    padding: 38px 14px;
  }

  .vr-page-banner h1 {
    font-size: 2rem;
  }
}

/* end */