    :root {
      --brand-purple: #b51cab;
      --brand-purple-dark: #97158f;
      --brand-orange: #ff6600;
      --brand-charcoal: #2f2f35;
      --brand-charcoal-2: #3a3a42;
      --brand-text-soft: #5e5e64;
      --brand-border: #e9e3e9;
      --brand-bg: #fcfbfc;
      --white: #ffffff;

      --shadow-soft: 0 10px 28px rgba(25, 25, 30, .08);
      --shadow-medium: 0 18px 40px rgba(25, 25, 30, .10);
      --shadow-purple: 0 18px 36px rgba(181, 28, 171, .22);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      padding: 0;
      margin: 0;
      font-family: 'Manrope', sans-serif;
      background: var(--brand-bg);
      color: var(--brand-charcoal);
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6,
    .navbar-brand,
    .footer-brand-title {
      font-family: 'Manrope', sans-serif;
    }

    a {
      text-decoration: none;
    }

    /* =========================
 NAVBAR
========================== */
    .navbar-premium {
      background: rgba(255, 255, 255, .92);
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      border-bottom: 1px solid rgba(233, 227, 233, .9);
      padding: 10px 0;
      transition: all .32s ease;
      z-index: 1000;
    }

    .navbar-premium.scrolled {
      padding: 8px 0;
      background: rgba(255, 255, 255, .97);
      box-shadow: 0 12px 34px rgba(30, 30, 35, .08);
    }

    .navbar .container {
      max-width: 1320px;
    }

    .navbar-brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      color: var(--brand-charcoal) !important;
      flex-shrink: 0;
    }

    .brand-logo-wrap {
      width: 62px;
      height: 62px;
      border-radius: 14px;
      background: #fff;
      border: 1px solid #efe8ef;
      box-shadow: 0 10px 22px rgba(20, 20, 24, .06);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      overflow: hidden;
      padding: 10px;
    }

    .brand-logo {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .brand-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      line-height: 1.05;
    }

    .brand-name {
      font-size: 1.18rem;
      font-weight: 800;
      color: var(--brand-charcoal);
      letter-spacing: -0.5px;
      white-space: nowrap;
    }

    .brand-sub {
      font-size: 11px;
      font-weight: 700;
      color: var(--brand-purple);
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-top: 6px;
      white-space: nowrap;
    }

    .navbar-nav {
      align-items: center;
    }

    .nav-link {
      position: relative;
      color: var(--brand-charcoal) !important;
      font-size: 15px;
      font-weight: 700;
      padding: 10px 16px !important;
      transition: all .25s ease;
    }

    .nav-link:hover,
    .nav-link.active {
      color: var(--brand-purple) !important;
    }

    .nav-link:focus,
    .dropdown-toggle:focus {
      outline: none !important;
      box-shadow: none !important;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      left: 16px;
      bottom: 4px;
      width: 0;
      height: 2.5px;
      background: linear-gradient(90deg, var(--brand-purple), var(--brand-purple-dark));
      border-radius: 999px;
      transition: width .25s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: calc(100% - 32px);
    }

    .header-divider {
      width: 1px;
      height: 30px;
      background: #ece6ec;
      margin: 0 8px;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 12px 22px;
      border: none;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      letter-spacing: -.1px;
      box-shadow: var(--shadow-purple);
      transition: all .28s ease;
      white-space: nowrap;
    }

    .header-cta:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 22px 42px rgba(181, 28, 171, .28);
    }

    .navbar-toggler {
      border: none;
      box-shadow: none !important;
      background: #f8f4f8;
      width: 46px;
      height: 46px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      transition: all 0.2s ease;
    }

    .navbar-toggler:hover {
      background: #f0e6f0;
    }

    .navbar-toggler-icon {
      width: 1.2rem;
      height: 1.2rem;
      filter: invert(24%) sepia(85%) saturate(2854%) hue-rotate(283deg) brightness(87%) contrast(100%);

    }

    /* TEMP SPACE */
    .page-space {
      min-height: 70vh;
      padding-top: 120px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #8a8a92;
      font-size: 20px;
      font-weight: 600;
      text-align: center;
    }


    /* =========================
   DROPDOWN & MEGA MENU
========================== */


    @media (min-width: 992px) {
      .dropdown-menu {
        display: block;
        border: 1px solid rgba(181, 28, 171, 0.08);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.12);
        padding: 1.5rem;
        margin-top: 0 !important;
        opacity: 0;
        visibility: hidden;
        transform: translateY(15px) scale(0.98);
        transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
          transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
          visibility 0s linear 0.35s;
        pointer-events: none;
      }


      .dropdown:hover>.dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0) scale(1);
        transition: opacity 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
          transform 0.35s cubic-bezier(0.165, 0.84, 0.44, 1),
          visibility 0s linear 0s;
        pointer-events: auto;
      }


      .dropdown-mega {
        position: static;
      }

      .dropdown-mega>.dropdown-toggle {
        padding-bottom: 25px !important;
        margin-bottom: -15px;
      }

      .dropdown-mega .mega-menu {
        position: absolute;
        left: 50%;
        transform: translateX(-50%) translateY(15px) scale(0.98);
        width: min(980px, calc(100vw - 40px));
        padding: 2rem 2.25rem;
        margin-top: 0 !important;
      }

      .dropdown-mega .mega-menu::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
      }


      .dropdown-mega:hover .mega-menu {
        transform: translateX(-50%) translateY(0) scale(1);
      }
    }


    .mega-header {
      border-bottom: 1px solid rgba(181, 28, 171, 0.1);
      padding: 0.5rem 0 1.25rem 0;
      margin-bottom: 1.5rem !important;
    }

    .mega-title {
      font-size: 15px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1.8px;
      background: linear-gradient(90deg, var(--brand-purple), var(--brand-purple-dark));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      margin-bottom: 6px;
    }

    .mega-column-title {
      font-size: 13px;
      font-weight: 800;
      color: var(--brand-charcoal);
      text-transform: uppercase;
      letter-spacing: 1.2px;
      margin-bottom: 18px;
      padding-left: 20px;
      display: block;
      position: relative;
    }

    .mega-column-title::before {
      content: "";
      position: absolute;
      left: 0;
      top: 50%;
      transform: translateY(-50%);
      width: 4px;
      height: 14px;
      background: var(--brand-purple);
      border-radius: 99px;
      opacity: 0.8;
    }

    .mega-subtitle {
      color: var(--brand-text-soft);
      font-weight: 600;
      font-size: 13.5px;
      opacity: 0.85;
    }

    .mega-item {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 10px 14px !important;
      border-radius: 12px;
      font-size: 14.5px;
      font-weight: 700;
      color: var(--brand-charcoal) !important;
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
      background: transparent;
      margin-bottom: 4px;
      white-space: normal;
      line-height: 1.4;
    }

    .mega-item span {
      flex: 1;
      min-width: 0;
    }

    .mega-item i {
      font-size: 16px;
      width: 38px;
      height: 38px;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #fdf8fd;
      border: 1px solid rgba(181, 28, 171, 0.05);
      border-radius: 10px;
      color: var(--brand-purple);
      transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    }

    .mega-item:hover {
      background: #fff8f5 !important;
      color: var(--brand-purple-dark) !important;
      transform: translateX(8px) scale(1.01);
      box-shadow: 0 8px 20px rgba(255, 102, 0, 0.06);
    }

    .mega-item:hover i {
      background: var(--brand-purple);
      border-color: var(--brand-dark-purple);
      color: #fff;
      transform: scale(1.15) rotate(5deg);
    }

    .dropdown-toggle::after {
      display: none !important;
    }

    .dropdown-toggle i {
      transition: transform 0.3s ease;
      display: inline-block;
    }

    .dropdown:hover .dropdown-toggle i {
      transform: rotate(180deg);
      color: var(--brand-purple);
    }

    .dropdown-toggle.show i {
      transform: rotate(180deg);
      color: var(--brand-purple);
    }

    @media (max-width: 991.98px) {

      .dropdown:hover>.dropdown-menu {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: translateY(12px);
      }

      .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        margin-top: 15px;
        padding: 20px;
        background: #ffffff;
        border-radius: 24px;
        border: 1px solid rgba(0, 0, 0, 0.05);
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
      }

      .navbar-nav {
        width: 100%;
      }

      .nav-item {
        width: 100%;
        margin-bottom: 5px;
      }

      .nav-link {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
        padding: 12px 15px !important;
        border-radius: 12px;
      }

      .nav-link:hover {
        background: #f8f4f8;
      }

      .dropdown-menu {
        position: static !important;
        display: none;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        transition: all 0.3s ease !important;
        pointer-events: auto !important;
        box-shadow: none !important;
        padding: 8px 0 15px 15px !important;
        margin-top: 8px !important;
        background: rgba(0, 0, 0, 0.02) !important;
        border: none !important;
        border-radius: 16px !important;
        width: 100% !important;
        max-height: none !important;
        overflow: visible !important;
      }

      .dropdown-menu.show {
        display: block !important;
      }

      .dropdown-mega .mega-menu {
        width: 100% !important;
        left: 0 !important;
        transform: none !important;
        position: static !important;
      }


      .dropdown-mega>.dropdown-toggle {
        padding-bottom: 12px !important;
        margin-bottom: 0;
      }

      .mega-header {
        margin: 10px 0 8px 0;
        padding-bottom: 8px;
        border-bottom: 1px dashed #eee;
      }

      .mega-title {
        font-size: 12px;
        letter-spacing: 1px;
      }

      .mega-subtitle {
        display: none;
      }

      .mega-column-title {
        margin-top: 16px;
        padding-left: 10px;
        font-size: 11px;
      }

      .mega-item {
        padding: 10px 12px !important;
        gap: 12px;
        border-radius: 10px;
        margin-bottom: 4px;
        font-size: 14px;
        transform: none !important;
      }

      .mega-item i {
        width: 30px;
        height: 30px;
        font-size: 13px;
        background: #f8f4f8 !important;
        color: var(--brand-purple) !important;
      }

      .mega-item:hover {
        background: #fff5f0 !important;
        color: var(--brand-orange) !important;
        transform: none !important;
      }

      .mega-item:hover i {
        background: var(--brand-purple) !important;
        color: #fff !important;
      }

      .header-cta {
        width: 100%;
        margin-top: 15px;
        padding: 15px;
        font-size: 16px;
      }
    }

    /* =========================
   FINAL FOOTER
========================== */
    .site-footer {
      position: relative;
      background: linear-gradient(90deg, var(--brand-charcoal) 0%, var(--brand-charcoal-2) 100%);
      color: #f5f5f7;
      padding: 88px 0 28px;
      overflow: hidden;
    }

    .site-footer::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 34%;
      height: 118px;
      background: linear-gradient(180deg, #c826bd 0%, #ab1aa2 100%);
      clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
      opacity: .98;
    }

    .site-footer::after {
      content: "";
      position: absolute;
      top: 0;
      right: 0;
      width: 24%;
      height: 124px;
      background: #a2a2a8;
      clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 38%);
      opacity: .9;
    }

    .footer-inner {
      position: relative;
      z-index: 2;
    }

    .footer-brand-logo-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 100%;
      max-width: 300px;
      height: 100px;
      background: #fff;
      border-radius: 28px;
      box-shadow: 0 16px 34px rgba(0, 0, 0, .20);
      margin-bottom: 22px;
      padding: 16px;
      overflow: hidden;
    }

    .footer-brand-logo {
      width: 72px;
      height: 72px;
      object-fit: contain;
      display: block;
    }

    .footer-brand-title {
      font-size: 1.05rem;
      line-height: 1.55;
      font-weight: 800;
      color: #fff;
      margin-bottom: 16px;
      max-width: 400px;
      letter-spacing: -0.2px;
    }

    .footer-brand-text {
      font-size: 14px;
      line-height: 1.85;
      color: #dddde3;
      max-width: 430px;
      margin: 0;
    }

    .footer-heading {
      font-size: 14px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 1px;
      color: #fff;
      margin-bottom: 22px;
      position: relative;
      display: inline-block;
      padding-bottom: 10px;
    }

    .footer-heading::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 64px;
      height: 4px;
      border-radius: 999px;
      background: var(--brand-purple);
    }

    .footer-links,
    .footer-services,
    .footer-contact {
      list-style: none;
      padding: 0;
      margin: 0;
      display: grid;
      gap: 16px;
    }

    .footer-links a,
    .footer-services li,
    .footer-contact li,
    .footer-contact a {
      color: #f0f0f2;
      font-size: 15px;
      line-height: 1.6;
      transition: all .25s ease;
    }

    .footer-links a:hover,
    .footer-contact a:hover {
      color: #fff;
      padding-left: 4px;
    }

    .footer-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      margin-top: 26px;
    }

    .btn-light-brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 24px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid #ece6ec;
      color: var(--brand-charcoal);
      font-weight: 800;
      font-size: 14px;
      box-shadow: var(--shadow-soft);
      transition: all .28s ease;
      border-color: var(--brand-purple);
    }

    .btn-light-brand:hover {
      color: var(--brand-purple);
      border-color: var(--brand-purple);
      transform: translateY(-2px);
    }

    .btn-brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 13px 24px;
      border: none;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
      color: #fff;
      font-weight: 800;
      font-size: 14px;
      box-shadow: var(--shadow-purple);
      transition: all .28s ease;
    }

    .btn-brand:hover {
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 22px 40px rgba(181, 28, 171, .28);
    }

    .footer-divider {
      border-top: 1px solid rgba(255, 255, 255, .12);
      margin: 42px 0 22px;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      color: #d0d0d6;
      font-size: 13px;
    }

    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: all .8s cubic-bezier(.2, .7, .2, 1);
    }

    .reveal.show {
      opacity: 1;
      transform: translateY(0);
    }

    /* =========================
   RESPONSIVE
========================== */
    @media (max-width: 1199.98px) {
      .brand-name {
        font-size: 1.08rem;
      }

      .footer-brand-logo-wrap {
        max-width: 300px;
        height: 84px;
      }

      .footer-brand-logo {
        max-height: 50px;
      }
    }

    @media (max-width: 991.98px) {
      .site-footer::before {
        width: 46%;
      }

      .site-footer::after {
        width: 28%;
      }

      .footer-brand-logo-wrap {
        max-width: 300px;
        height: 84px;
      }

      .footer-brand-logo {
        max-height: 50px;
      }
    }

    @media (max-width: 767.98px) {
      .navbar-premium {
        padding: 12px 0;
      }

      .brand-logo-wrap {
        width: 56px;
        height: 56px;
        border-radius: 14px;
        padding: 8px;
      }

      .brand-name {
        font-size: 1rem;
        white-space: normal;
      }

      .brand-sub {
        font-size: 10px;
        letter-spacing: 1.2px;
        white-space: normal;
      }

      .header-cta {
        width: 100%;
        margin-top: 10px;
      }

      .page-space {
        min-height: 50vh;
        font-size: 17px;
        padding-top: 100px;
      }

      .footer-brand-logo-wrap {
        max-width: 100%;
        height: 88px;
        border-radius: 22px;
        padding: 12px 16px;
      }

      .footer-brand-logo {
        width: 60px;
        height: 60px;
      }

      .footer-buttons {
        gap: 12px;
      }

      .footer-buttons .btn-brand,
      .footer-buttons .btn-light-brand {
        width: 100%;
      }

      .footer-bottom {
        font-size: 12px;
      }
    }


    /* =========================
HERO SECTION start
========================== */

    .hero-section {
      position: relative;
      padding: 140px 0 80px;
      background: linear-gradient(145deg, #fdfbff 0%, #f7f3ff 40%, #ffffff 100%);
      overflow: hidden;
      font-family: 'Manrope', sans-serif;
    }


    .hero-section::before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(168, 85, 247, 0.18), transparent 70%);
      top: -120px;
      left: -120px;
      z-index: 0;
    }

    .hero-section::after {
      content: "";
      position: absolute;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(236, 72, 153, 0.15), transparent 70%);
      bottom: -120px;
      right: -100px;
      z-index: 0;
    }

    .hero-section .container {
      position: relative;
      z-index: 2;
    }

    .hero-section {
      backdrop-filter: blur(6px);
    }



    .hero-container {
      position: relative;
      z-index: 3;
    }

    .hero-shape-left {
      position: absolute;
      top: 0;
      left: 0;
      width: 36%;
      height: 112px;
      clip-path: polygon(0 0, 100% 0, 78% 100%, 0 100%);
      opacity: .04;
      filter: blur(40px);
      z-index: 1;
    }

    .hero-shape-right {
      position: absolute;
      top: 0;
      right: 0;
      width: 24%;
      height: 116px;
      background: #a2a2a8;
      clip-path: polygon(26% 0, 100% 0, 100% 100%, 0 38%);
      opacity: .03;
      filter: blur(30px);
      z-index: 1;
    }

    .hero-curve {
      position: absolute;
      left: -180px;
      bottom: -36px;
      width: 62%;
      height: 92%;
      background: #f1f3f9;
      border-top-right-radius: 60%;
      border-bottom-right-radius: 28%;
      opacity: .25;
      filter: blur(60px);
      z-index: 0;
    }

    .hero-glow {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
      z-index: 0;
    }

    /* Premium radial glows — purple/pink tones, non-distracting */
    .hero-glow-left {
      width: 520px;
      height: 520px;
      left: -160px;
      top: 50%;
      transform: translateY(-50%);
      background: radial-gradient(circle, rgba(181, 28, 171, .06) 0%, rgba(168, 85, 247, .03) 45%, transparent 72%);
    }

    .hero-glow-right {
      width: 480px;
      height: 480px;
      right: -80px;
      top: 60px;
      background: radial-gradient(circle, rgba(139, 92, 246, .05) 0%, rgba(236, 72, 153, .03) 50%, transparent 72%);
    }

    /* LEFT SIDE */
    .hero-content {
      position: relative;
      z-index: 3;
      padding-right: 14px;
      font-family: 'Manrope', sans-serif;
    }

    /* --- Badge --- */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 20px;
      border-radius: 999px;
      background: rgba(139, 92, 246, .10);
      border: 1px solid rgba(139, 92, 246, .18);
      color: #7c3aed;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.3px;
      margin-bottom: 28px;
      box-shadow: 0 8px 20px rgba(139, 92, 246, .10);
      /* Staggered fade-in: badge first */
      animation: heroFadeUp 0.7s cubic-bezier(.22, .68, 0, 1.2) 0.1s both;
    }

    .hero-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: linear-gradient(135deg, #b51cab, #7c3aed);
      box-shadow: 0 0 0 4px rgba(139, 92, 246, .15);
      /* Pulse animation */
      animation: heroDotPulse 2.4s ease-in-out infinite;
    }

    /* --- Headline --- */
    .hero-title {
      font-family: 'Manrope', sans-serif;
      font-size: clamp(2.35rem, 4.5vw, 3.85rem);
      line-height: 1.20;
      font-weight: 900;
      letter-spacing: -0.03em;
      color: #111827;
      max-width: 720px;
      margin: 0 0 8px;
      text-wrap: balance;
      /* Staggered fade-in: title second */
      animation: heroFadeUp 0.75s cubic-bezier(.22, .68, 0, 1.2) 0.25s both;
    }

    /* Gradient accent on the .gradient-text inside h1 */
    .hero-title .gradient-text {
      display: inline;
      background: linear-gradient(135deg, #b51cab 0%, #ec4899 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      background-size: 200% 200%;
      animation: heroGradientShift 6s ease-in-out infinite alternate;
    }

    /* --- Subtext --- */
    .hero-text {
      font-family: 'Manrope', sans-serif;
      font-size: 17px;
      line-height: 1.85;
      color: #6b7280;
      max-width: 540px;
      margin: 0 0 12px;
      font-weight: 500;
      animation: heroFadeUp 0.75s cubic-bezier(.22, .68, 0, 1.2) 0.4s both;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 28px;
      animation: heroFadeUp 0.75s cubic-bezier(.22, .68, 0, 1.2) 0.55s both;
    }

    .hero-btn-main,
    .hero-btn-alt {
      min-width: 185px;
    }

    .hero-trust-line {
      display: flex;
      flex-wrap: wrap;
      gap: 16px;
      padding-top: 18px;
      border-top: 1px solid rgba(139, 92, 246, .15);
      max-width: 640px;
      animation: heroFadeUp 0.75s cubic-bezier(.22, .68, 0, 1.2) 0.7s both;
    }

    .hero-trust-item {
      position: relative;
      padding-left: 16px;
      font-size: 14px;
      font-weight: 600;
      color: #374151;
      letter-spacing: 0.1px;
    }

    .hero-trust-item::before {
      content: "";
      position: absolute;
      left: 0;
      top: 6px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: linear-gradient(135deg, #b51cab, #7c3aed);
    }

    /* ---- Hero keyframes ---- */
    @keyframes heroFadeUp {
      from {
        opacity: 0;
        transform: translateY(22px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @keyframes heroDotPulse {

      0%,
      100% {
        box-shadow: 0 0 0 4px rgba(139, 92, 246, .15);
      }

      50% {
        box-shadow: 0 0 0 8px rgba(139, 92, 246, .06);
      }
    }

    @keyframes heroGradientShift {
      0% {
        background-position: 0% 50%;
      }

      100% {
        background-position: 100% 50%;
      }
    }

    /* RIGHT SIDE */
    .hero-visual {
      position: relative;
      z-index: 3;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 560px;
      transform: translateX(32px);
    }

    .hero-image-wrap {
      position: relative;
      width: 100%;
      max-width: 720px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .hero-image-wrap::before {
      content: "";
      position: absolute;
      width: 82%;
      height: 82%;
      border-radius: 50%;
      filter: blur(14px);
      z-index: 0;
    }

    .hero-image {
      position: relative;
      z-index: 2;
      width: 100%;
      max-width: 640px;
      height: auto;
      object-fit: contain;
      display: block;
    }


    .hero-image-float {
      animation: heroFloatSoft 6s cubic-bezier(.45, .05, .55, .95) infinite;
      transform-origin: center center;
    }

    @keyframes heroFloatSoft {

      0% {
        transform: translateY(0px) rotate(0deg);
      }

      25% {
        transform: translateY(-10px) rotate(-1deg);
      }

      50% {
        transform: translateY(-16px) rotate(0deg);
      }

      75% {
        transform: translateY(-10px) rotate(1deg);
      }

      100% {
        transform: translateY(0px) rotate(0deg);
      }

    }

    /* REVEAL — used by IntersectionObserver for the right column image */
    .hero-reveal {
      opacity: 0;
      transform: translateY(30px);
      transition: opacity 0.85s cubic-bezier(.2, .7, .2, 1),
        transform 0.85s cubic-bezier(.2, .7, .2, 1);
    }

    .hero-reveal.hero-show {
      opacity: 1;
      transform: translateY(0);
    }

    /* Left content uses CSS animations above (heroFadeUp), so override
       the JS reveal so it doesn't fight with the CSS animations */
    .hero-content.hero-reveal {
      opacity: 1;
      transform: none;
      transition: none;
    }


    @media (max-width: 1399.98px) {
      .hero-title {
        font-size: clamp(2rem, 3.9vw, 3.65rem);
      }

      .hero-image {
        max-width: 600px;
      }

      .hero-visual {
        min-height: 520px;
        transform: translateX(18px);
      }
    }

    @media (max-width: 1199.98px) {
      .hero-section {
        padding: 124px 0 76px;
      }

      .hero-title {
        font-size: clamp(1.95rem, 3.8vw, 3.4rem);
        max-width: 620px;
      }

      .hero-image {
        max-width: 530px;
      }

      .hero-visual {
        min-height: 470px;
        transform: translateX(8px);
      }

      .hero-image-wrap {
        max-width: 620px;
      }
    }

    @media (max-width: 991.98px) {
      .hero-section {
        padding: 112px 0 70px;
      }

      .hero-shape-left {
        width: 48%;
        height: 82px;
      }

      .hero-shape-right {
        width: 28%;
        height: 84px;
      }

      .hero-curve {
        width: 95%;
        height: 58%;
        left: -180px;
        bottom: 0;
        border-top-right-radius: 52%;
        border-bottom-right-radius: 24%;
        opacity: .5;
      }

      .hero-content {
        padding-right: 0;
        /* Centre-align text on tablet/below */
        text-align: center;
      }

      .hero-badge {
        /* Centre the badge pill */
        margin-left: auto;
        margin-right: auto;
      }

      .hero-title,
      .hero-text {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
      }

      .hero-actions {
        justify-content: center;
      }

      .hero-trust-line {
        justify-content: center;
        max-width: 100%;
      }

      .hero-visual {
        min-height: auto;
        margin-top: 10px;
        padding-top: 10px;
        transform: none;
      }

      .hero-image-wrap {
        max-width: 100%;
      }

      .hero-image {
        max-width: 540px;
      }
    }

    @media (max-width: 767.98px) {
      .hero-section {
        padding: 98px 0 54px;
      }

      .hero-shape-left {
        width: 64%;
        height: 58px;
      }

      .hero-shape-right {
        width: 34%;
        height: 62px;
      }

      .hero-curve {
        width: 132%;
        height: 42%;
        left: -220px;
        bottom: 26px;
        opacity: .42;
      }

      /* Mobile: tighter heading, still gradient */
      .hero-title {
        font-size: clamp(2rem, 8.8vw, 2.85rem);
        line-height: 1.25;
        letter-spacing: -0.02em;
      }

      .hero-badge {
        font-size: 12px;
        padding: 9px 16px;
      }

      .hero-text {
        font-size: 15.5px;
        line-height: 1.8;
      }

      .hero-actions {
        flex-direction: column;
        align-items: center;
      }

      .hero-btn-main,
      .hero-btn-alt {
        width: 100%;
        min-width: 100%;
      }

      .hero-trust-line {
        gap: 10px;
        justify-content: center;
      }

      .hero-trust-item {
        font-size: 13px;
      }

      .hero-image-wrap {
        max-width: 100%;
      }

      .hero-image-wrap::before {
        width: 92%;
        height: 92%;
      }

      .hero-image {
        max-width: 100%;
      }

      .hero-image-float {
        animation: none;
      }
    }


    /* ======================== =
   ABOUT SECTION
========================== */
    .about-section {
      position: relative;
      padding: 60px 0 60px;
      background: #ffffff;
      overflow: hidden;
    }

    .about-container {
      position: relative;
      z-index: 2;
    }

    .section-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      border-radius: 999px;
      background: rgba(181, 28, 171, .08);
      color: var(--brand-purple);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 22px;
      box-shadow: 0 10px 24px rgba(181, 28, 171, .08);
    }

    .section-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-purple);
      box-shadow: 0 0 0 5px rgba(181, 28, 171, .12);
    }

    .about-content {
      position: relative;
      padding-right: 18px;
    }

    .about-title {
      font-size: clamp(2rem, 3.6vw, 3.2rem);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -1.1px;
      color: var(--brand-charcoal);
      margin: 0 0 18px;
      max-width: 620px;
    }



    .about-text {
      font-size: 17px;
      line-height: 1.92;
      color: var(--brand-text-soft);
      margin: 0 0 24px;
      max-width: 560px;
    }

    .about-mini-points {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
    }

    .about-mini-point {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 11px 16px;
      border-radius: 999px;
      background: #fff;
      border: 1px solid #ebe5eb;
      color: var(--brand-charcoal);
      font-size: 15px;
      font-weight: 700;
      box-shadow: var(--shadow-soft);
    }

    .about-cards {
      position: relative;
    }

    .about-card {
      height: 100%;
      background: linear-gradient(180deg, #ffffff 0%, #fcfbfc 100%);
      border: 1px solid #ece6ec;
      border-radius: 24px;
      padding: 24px 20px;
      box-shadow: 0 12px 28px rgba(25, 25, 30, .05);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .about-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 36px rgba(25, 25, 30, .08);
      border-color: rgba(181, 28, 171, .22);
    }

    .about-card-icon {
      width: 44px;
      height: 44px;
      border-radius: 14px;
      background: linear-gradient(180deg, rgba(181, 28, 171, .14) 0%, rgba(181, 28, 171, .08) 100%);
      border: 1px solid rgba(181, 28, 171, .14);
      margin-bottom: 16px;
      position: relative;
    }

    .about-card-icon::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 14px;
      height: 14px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: var(--brand-purple);
      box-shadow: 0 0 0 5px rgba(181, 28, 171, .12);
    }

    .about-card-title {
      font-size: 1.05rem;
      line-height: 1.35;
      font-weight: 800;
      color: var(--brand-charcoal);
      margin: 0 0 10px;
      letter-spacing: -0.3px;
    }

    .about-card-text {
      font-size: 16px;
      line-height: 1.8;
      color: var(--brand-text-soft);
      margin: 0;
    }

    /* REVEAL */
    .about-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: all .8s cubic-bezier(.2, .7, .2, 1);
    }

    .about-reveal.about-show {
      opacity: 1;
      transform: translateY(0);
    }


    @media (max-width: 1199.98px) {
      .about-section {
        padding: 80px 0 80px;
      }

      .about-title {
        max-width: 100%;
      }

      .about-text {
        max-width: 100%;
      }
    }

    @media (max-width: 991.98px) {
      .about-section {
        padding: 74px 0 74px;
      }

      .about-content {
        padding-right: 0;
      }
    }

    @media (max-width: 767.98px) {
      .about-section {
        padding: 64px 0 64px;
      }

      .about-title {
        font-size: clamp(1.7rem, 7vw, 2.35rem);
        line-height: 1.12;
      }

      .about-text {
        font-size: 15px;
        line-height: 1.82;
      }

      .about-mini-points {
        gap: 10px;
      }

      .about-mini-point {
        width: 100%;
        justify-content: flex-start;
      }

      .about-card {
        padding: 20px 18px;
        border-radius: 20px;
      }

      .about-card-title {
        font-size: 1rem;
      }

      .about-card-text {
        font-size: 13.5px;
      }
    }



    /* =========================
   PARTNERSHIP SECTION
========================== */
    .partnership-section {
      position: relative;
      padding: 70px 0 90px;
      background: linear-gradient(180deg, #fcfbfc 0%, #f8f5f8 100%);
      overflow: hidden;
    }

    .partnership-container {
      position: relative;
      z-index: 2;
      max-width: 1320px;
    }

    .partnership-left,
    .partnership-right {
      position: relative;
    }

    .partnership-stat-card {
      position: relative;
      background: linear-gradient(180deg, #ffffff 0%, #fcfbfc 100%);
      border: 1px solid #ece6ec;
      border-radius: 34px;
      padding: 34px 30px;
      box-shadow: 0 18px 42px rgba(25, 25, 30, .07);
      overflow: hidden;
      height: 100%;
      min-height: 100%;
    }

    .partnership-stat-card::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -50px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(181, 28, 171, .08), rgba(181, 28, 171, 0) 72%);
    }

    .partnership-stat-top {
      position: relative;
      z-index: 2;
    }

    .partnership-stat-year {
      font-size: clamp(2.2rem, 4vw, 3.2rem);
      line-height: 1;
      font-weight: 800;
      letter-spacing: -1.5px;
      color: var(--brand-purple);
      margin-bottom: 16px;
    }

    .partnership-stat-title {
      font-size: 1.75rem;
      line-height: 1.2;
      font-weight: 800;
      color: var(--brand-charcoal);
      letter-spacing: -0.8px;
      margin: 0 0 12px;
      max-width: 320px;
    }

    .partnership-stat-text {
      font-size: 16px;
      line-height: 1.82;
      color: var(--brand-text-soft);
      margin: 0;
      max-width: 340px;
    }

    .partnership-stat-divider {
      position: relative;
      z-index: 2;
      width: 100%;
      height: 1px;
      background: #ebe4eb;
      margin: 24px 0 20px;
    }

    .partnership-image-wrap {
      position: relative;
      z-index: 2;
      padding: 18px;
      border-radius: 24px;
      background: linear-gradient(180deg, #ffffff 0%, #faf7fa 100%);
      border: 1px solid #eee7ee;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 220px;
    }

    .partnership-image {
      width: 100%;
      max-width: 320px;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .partnership-stat-action {
      position: relative;
      z-index: 2;
      margin-top: 22px;
    }

    .partnership-btn {
      min-width: 190px;
    }

    .partnership-right {
      padding-left: 8px;
    }

    .partnership-title {
      font-size: clamp(2rem, 3.6vw, 3.2rem);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -1.1px;
      color: var(--brand-charcoal);
      margin: 0 0 18px;
      max-width: 620px;
    }

    .partnership-text {
      font-size: 17px;
      line-height: 1.9;
      color: var(--brand-text-soft);
      margin: 0 0 24px;
      max-width: 640px;
    }

    .partnership-highlight-list {
      display: grid;
      gap: 16px;
    }

    .partnership-highlight-item {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 20px 18px;
      background: #fff;
      border: 1px solid #ece6ec;
      border-radius: 22px;
      box-shadow: 0 10px 24px rgba(25, 25, 30, .04);
      min-height: 96px;
      transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
    }

    .partnership-highlight-item:hover {
      transform: translateY(-3px);
      box-shadow: 0 16px 30px rgba(25, 25, 30, .06);
      border-color: rgba(181, 28, 171, .18);
    }

    .partnership-highlight-bar {
      width: 4px;
      min-width: 4px;
      height: 48px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--brand-purple), var(--brand-purple-dark));
      margin-top: 2px;
    }

    .partnership-highlight-content h4 {
      font-size: 1rem;
      line-height: 1.35;
      font-weight: 800;
      color: var(--brand-charcoal);
      margin: 0 0 6px;
      letter-spacing: -0.2px;
    }

    .partnership-highlight-content p {
      font-size: 16px;
      line-height: 1.75;
      color: var(--brand-text-soft);
      margin: 0;
    }

    /* REVEAL */
    .partnership-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: all .8s cubic-bezier(.2, .7, .2, 1);
    }

    .partnership-reveal.partnership-show {
      opacity: 1;
      transform: translateY(0);
    }


    @media (max-width: 1199.98px) {
      .partnership-section {
        padding: 80px 0 82px;
      }

      .partnership-title,
      .partnership-text,
      .partnership-stat-title,
      .partnership-stat-text {
        max-width: 100%;
      }

      .partnership-image {
        max-width: 280px;
      }
    }

    @media (max-width: 991.98px) {
      .partnership-section {
        padding: 74px 0 74px;
      }

      .partnership-right {
        padding-left: 0;
      }

      .partnership-stat-card {
        padding: 28px 24px;
        border-radius: 28px;
      }

      .partnership-image-wrap {
        min-height: 200px;
      }
    }

    @media (max-width: 767.98px) {
      .partnership-section {
        padding: 20px 0;
      }

      .partnership-title {
        font-size: clamp(1.7rem, 7vw, 2.35rem);
        line-height: 1.12;
      }

      .partnership-text {
        font-size: 15px;
        line-height: 1.82;
      }

      .partnership-stat-card {
        padding: 22px 18px;
        border-radius: 24px;
      }

      .partnership-stat-year {
        font-size: 2rem;
      }

      .partnership-stat-title {
        font-size: 1.35rem;
      }

      .partnership-image-wrap {
        padding: 14px;
        min-height: 180px;
        border-radius: 20px;
      }

      .partnership-image {
        max-width: 220px;
      }

      .partnership-btn {
        width: 100%;
        min-width: 100%;
      }

      .partnership-highlight-item {
        padding: 16px 16px;
        border-radius: 18px;
        min-height: auto;
      }

      .partnership-highlight-content h4 {
        font-size: 0.98rem;
      }

      .partnership-highlight-content p {
        font-size: 13.5px;
      }
    }


    /* =========================
   SERVICES SECTION
========================== */
    .services-section {
      position: relative;
      padding: 88px 0 50px;
      background: #ffffff;
      overflow: hidden;
    }

    .services-container {
      position: relative;
      z-index: 2;
      max-width: 1320px;
    }

    .services-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 42px;
    }

    .services-title {
      font-size: clamp(1.95rem, 3.6vw, 3rem);
      line-height: 1.08;
      font-weight: 800;
      letter-spacing: -1.1px;
      color: var(--brand-charcoal);
      margin: 0 0 16px;
    }

    .services-text {
      font-size: 17px;
      line-height: 1.9;
      color: var(--brand-text-soft);
      margin: 0 auto;
      max-width: 640px;
    }

    .services-grid {
      justify-content: center;
    }

    .service-card {
      height: 100%;
      background: linear-gradient(180deg, #ffffff 0%, #fcfbfc 100%);
      border: 1px solid #ece6ec;
      border-radius: 26px;
      padding: 26px 22px;
      box-shadow: 0 14px 30px rgba(25, 25, 30, .05);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .service-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 20px 38px rgba(25, 25, 30, .08);
      border-color: rgba(181, 28, 171, .22);
    }

    .service-icon {
      width: 48px;
      height: 48px;
      border-radius: 15px;
      background: linear-gradient(180deg, rgba(181, 28, 171, .14) 0%, rgba(181, 28, 171, .08) 100%);
      border: 1px solid rgba(181, 28, 171, .16);
      margin-bottom: 16px;
      position: relative;
    }

    .service-icon::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 50%;
      width: 14px;
      height: 14px;
      transform: translate(-50%, -50%);
      border-radius: 50%;
      background: var(--brand-purple);
      box-shadow: 0 0 0 5px rgba(181, 28, 171, .12);
    }

    .service-card-title {
      font-size: 1.08rem;
      line-height: 1.35;
      font-weight: 800;
      color: var(--brand-charcoal);
      letter-spacing: -0.25px;
      margin: 0 0 10px;
    }

    .service-card-text {
      font-size: 16px;
      line-height: 1.82;
      color: var(--brand-text-soft);
      margin: 0;
    }


    .services-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: all .8s cubic-bezier(.2, .7, .2, 1);
    }

    .services-reveal.services-show {
      opacity: 1;
      transform: translateY(0);
    }


    @media (max-width: 1199.98px) {
      .services-section {
        padding: 80px 0 84px;
      }
    }

    @media (max-width: 991.98px) {
      .services-section {
        padding: 74px 0 76px;
      }

      .services-head {
        margin-bottom: 34px;
      }
    }

    @media (max-width: 767.98px) {
      .services-section {
        padding: 64px 0 20px;
      }

      .services-title {
        font-size: clamp(1.7rem, 7vw, 2.35rem);
        line-height: 1.12;
      }

      .services-text {
        font-size: 15px;
        line-height: 1.82;
      }

      .service-card {
        padding: 22px 18px;
        border-radius: 22px;
      }

      .service-card-title {
        font-size: 1rem;
      }

      .service-card-text {
        font-size: 13.5px;
      }
    }


    /* =========================
   WHY CHOOSE SECTION
========================== */


    .why-section {
      position: relative;
      padding: 60px 0;
      background: linear-gradient(180deg, #ffffff 0%, #fcfbfc 55%, #faf7fa 100%);
      overflow: hidden;
    }

    .why-container {
      position: relative;
      z-index: 2;
      max-width: 1320px;
    }

    .why-main-row {
      --bs-gutter-x: 3.4rem;
      --bs-gutter-y: 2rem;
      align-items: center;
    }

    .why-left,
    .why-right {
      position: relative;
    }


    .why-left {
      max-width: 500px;
    }

    .why-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      border-radius: 999px;
      background: rgba(181, 28, 171, 0.08);
      color: var(--brand-purple);
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 24px;
      box-shadow: var(--shadow-soft);
    }

    .why-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-purple);
      box-shadow: 0 0 0 5px rgba(181, 28, 171, 0.12);
    }

    .why-title {
      font-size: clamp(2.5rem, 4.6vw, 4.2rem);
      line-height: 0.95;
      font-weight: 800;
      letter-spacing: -2px;
      color: var(--brand-charcoal);
      max-width: 470px;
      margin: 0 0 22px;
      text-wrap: balance;
    }

    .why-title span {
      display: block;
    }

    .why-text {
      font-size: 17px;
      line-height: 1.85;
      color: var(--brand-text-soft);
      max-width: 420px;
      margin: 0 0 18px;
    }

    .why-image-wrap {
      width: 100%;
      max-width: 360px;
      margin-top: 10px;
    }

    .why-image {
      width: 100%;
      height: auto;
      display: block;
      object-fit: contain;
    }


    .why-right {
      width: 100%;
    }

    .why-card-row {
      --bs-gutter-x: 1.45rem;
      --bs-gutter-y: 1.45rem;
      justify-content: center;
    }

    .why-card {
      min-height: 200px;
      height: 100%;
      background: linear-gradient(180deg, var(--white) 0%, #fcfbfc 100%);
      border: 1px solid var(--brand-border);
      border-radius: 24px;
      padding: 22px 22px 20px;
      box-shadow: 0 12px 26px rgba(25, 25, 30, 0.04);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
      display: flex;
      flex-direction: column;
      justify-content: flex-start;
    }

    .why-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 34px rgba(25, 25, 30, 0.07);
      border-color: rgba(181, 28, 171, 0.22);
    }

    .why-card-top {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 18px;
    }

    .why-card-number {
      width: 46px;
      min-width: 46px;
      height: 46px;
      border-radius: 14px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(181, 28, 171, 0.08);
      border: 1px solid rgba(181, 28, 171, 0.12);
      color: var(--brand-purple);
      font-size: 14px;
      font-weight: 800;
    }

    .why-card-line {
      width: 34px;
      height: 4px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--brand-purple), var(--brand-purple-dark));
    }

    .why-card-title {
      font-size: 1.08rem;
      line-height: 1.32;
      font-weight: 800;
      color: var(--brand-charcoal);
      margin: 0 0 10px;
      letter-spacing: -0.2px;
    }

    .why-card-text {
      font-size: 16px;
      line-height: 1.78;
      color: var(--brand-text-soft);
      margin: 0;
    }

    .why-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: all .8s cubic-bezier(.2, .7, .2, 1);
    }

    .why-reveal.why-show {
      opacity: 1;
      transform: translateY(0);
    }


    @media (max-width: 1199.98px) {
      .why-section {
        padding: 84px 0 86px;
      }

      .why-main-row {
        --bs-gutter-x: 2.2rem;
      }

      .why-title {
        font-size: clamp(2.2rem, 4vw, 3.6rem);
        max-width: 100%;
      }

      .why-text {
        max-width: 100%;
      }

      .why-image-wrap {
        max-width: 320px;
      }

      .why-card {
        min-height: 190px;
      }
    }

    @media (max-width: 991.98px) {
      .why-section {
        padding: 76px 0 78px;
      }

      .why-main-row {
        --bs-gutter-x: 1.5rem;
        --bs-gutter-y: 2.3rem;
      }

      .why-left {
        max-width: 100%;
      }

      .why-title {
        max-width: 100%;
        margin-bottom: 18px;
      }

      .why-text {
        max-width: 100%;
        margin-bottom: 22px;
      }

      .why-image-wrap {
        max-width: 290px;
      }

      .why-right {
        margin-top: 4px;
      }

      .why-card {
        min-height: 180px;
      }
    }

    @media (max-width: 767.98px) {
      .why-section {
        padding: 64px 0 66px;
      }

      .why-badge {
        font-size: 12px;
        padding: 10px 16px;
        margin-bottom: 20px;
      }

      .why-title {
        font-size: clamp(2rem, 8vw, 3rem);
        line-height: 1.02;
        letter-spacing: -1.3px;
        max-width: 320px;
      }

      .why-text {
        font-size: 15px;
        line-height: 1.78;
      }

      .why-image-wrap {
        max-width: 240px;
        margin-top: 18px;
      }

      .why-card-row {
        --bs-gutter-x: 1rem;
        --bs-gutter-y: 1rem;
      }

      .why-card {
        min-height: auto;
        padding: 18px 16px 16px;
        border-radius: 20px;
      }

      .why-card-number {
        width: 42px;
        min-width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 13px;
      }

      .why-card-line {
        width: 28px;
      }

      .why-card-title {
        font-size: 1rem;
        margin-bottom: 8px;
      }

      .why-card-text {
        font-size: 13.5px;
        line-height: 1.72;
      }
    }

    /* =========================
   TESTIMONIAL SECTION
========================== */
    .testimonial-section {
      position: relative;
      padding: 80px 0 50px;
      background: linear-gradient(180deg, #ffffff 0%, #fcfbfc 100%);
      overflow: hidden;
    }

    .testimonial-section::before {
      content: "";
      position: absolute;
      top: 90px;
      left: 50%;
      transform: translateX(-50%);
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(181, 28, 171, 0.08) 0%, rgba(181, 28, 171, 0) 72%);
      filter: blur(10px);
      pointer-events: none;
    }

    .testimonial-container {
      position: relative;
      z-index: 2;
      max-width: 1180px;
    }

    .testimonial-head {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 34px;
    }

    .testimonial-badge {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      border-radius: 999px;
      background: rgba(181, 28, 171, 0.08);
      color: var(--brand-purple);
      font-size: 13px;
      font-weight: 800;
      margin-bottom: 18px;
      box-shadow: var(--shadow-soft);
    }

    .testimonial-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-purple);
      box-shadow: 0 0 0 5px rgba(181, 28, 171, 0.12);
    }

    .testimonial-title {
      font-size: clamp(2.15rem, 4vw, 3.6rem);
      line-height: 1.06;
      font-weight: 800;
      letter-spacing: -1.5px;
      color: var(--brand-charcoal);
      margin: 0 0 14px;
    }

    .testimonial-subtext {
      font-size: 17px;
      line-height: 1.85;
      color: var(--brand-text-soft);
      max-width: 640px;
      margin: 0 auto;
    }

    /* CAROUSEL */
    .testimonial-carousel {
      position: relative;
      max-width: 980px;
      margin: 0 auto;
      padding: 0 86px 34px;
    }

    .testimonial-carousel .carousel-inner {
      overflow: visible;
    }

    .testimonial-carousel .carousel-item {
      padding: 6px 0;
    }

    .testimonial-card {
      position: relative;
      max-width: 760px;
      margin: 0 auto;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fcfbfc 100%);
      border: 1px solid rgba(181, 28, 171, 0.12);
      border-radius: 30px;
      padding: 34px 34px 26px;
      box-shadow:
        0 22px 50px rgba(25, 25, 30, 0.07),
        0 8px 18px rgba(25, 25, 30, 0.03);
      min-height: 260px;
      overflow: hidden;
    }

    .testimonial-card::before {
      content: "";
      position: absolute;
      top: -50px;
      right: -45px;
      width: 180px;
      height: 180px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(181, 28, 171, 0.11), rgba(181, 28, 171, 0) 72%);
      pointer-events: none;
    }

    .testimonial-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 30px;
      padding: 1px;
      background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(181, 28, 171, 0.06));
      -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
      -webkit-mask-composite: xor;
      mask-composite: exclude;
      pointer-events: none;
    }

    .testimonial-quote-mark {
      position: relative;
      z-index: 2;
      font-size: 52px;
      line-height: 1;
      color: var(--brand-purple);
      font-weight: 800;
      margin-bottom: 14px;
    }

    .testimonial-text {
      position: relative;
      z-index: 2;
      font-size: 19px;
      line-height: 1.75;
      font-weight: 600;
      color: var(--brand-charcoal);
      margin: 0 0 24px;
      max-width: 92%;
    }

    .testimonial-bottom {
      position: relative;
      z-index: 2;
      padding-top: 18px;
      border-top: 1px solid rgba(47, 47, 53, 0.10);
    }

    .testimonial-user {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .testimonial-avatar {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(181, 28, 171, 0.08);
      border: 1px solid rgba(181, 28, 171, 0.14);
      color: var(--brand-purple);
      font-size: 16px;
      font-weight: 800;
      flex-shrink: 0;
    }

    .testimonial-user-info h4 {
      margin: 0 0 3px;
      font-size: 15px;
      line-height: 1.2;
      font-weight: 800;
      color: var(--brand-charcoal);
    }

    .testimonial-user-info span {
      display: block;
      font-size: 12.5px;
      color: var(--brand-text-soft);
      line-height: 1.2;
    }

    /* CONTROLS */
    .testimonial-control {
      width: 58px;
      height: 58px;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
    }

    .testimonial-control.carousel-control-prev {
      left: 10px;
    }

    .testimonial-control.carousel-control-next {
      right: 10px;
    }

    .testimonial-arrow {
      width: 58px;
      height: 58px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255, 255, 255, 0.98);
      border: 1px solid rgba(181, 28, 171, 0.12);
      color: var(--brand-purple);
      font-size: 34px;
      line-height: 1;
      box-shadow: 0 14px 28px rgba(25, 25, 30, 0.08);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .testimonial-control:hover .testimonial-arrow {
      transform: translateY(-2px);
      box-shadow: 0 18px 34px rgba(25, 25, 30, 0.12);
      border-color: rgba(181, 28, 171, 0.24);
    }


    .testimonial-indicators {
      position: absolute;
      left: 50%;
      bottom: 0;
      transform: translateX(-50%);
      margin: 0;
      gap: 10px;
      align-items: center;
    }

    .testimonial-indicators [data-bs-target] {
      width: 10px;
      height: 10px;
      margin: 0;
      border: 0;
      border-radius: 50%;
      background: rgba(181, 28, 171, 0.22);
      opacity: 1;
      transition: all .25s ease;
    }

    .testimonial-indicators .active {
      width: 26px;
      border-radius: 999px;
      background: var(--brand-purple);
    }


    .testimonial-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: all .8s cubic-bezier(.2, .7, .2, 1);
    }

    .testimonial-reveal.testimonial-show {
      opacity: 1;
      transform: translateY(0);
    }


    @media (max-width: 1199.98px) {
      .testimonial-carousel {
        max-width: 940px;
        padding: 0 78px 34px;
      }

      .testimonial-card {
        max-width: 720px;
      }
    }

    @media (max-width: 991.98px) {
      .testimonial-section {
        padding: 76px 0 82px;
      }

      .testimonial-head {
        margin-bottom: 28px;
      }

      .testimonial-carousel {
        padding: 0 64px 32px;
      }

      .testimonial-card {
        min-height: 230px;
        border-radius: 24px;
        padding: 28px 26px 22px;
      }

      .testimonial-card::after {
        border-radius: 24px;
      }

      .testimonial-text {
        font-size: 17px;
        line-height: 1.72;
        max-width: 100%;
      }

      .testimonial-control {
        width: 50px;
        height: 50px;
      }

      .testimonial-arrow {
        width: 50px;
        height: 50px;
        font-size: 29px;
      }
    }

    @media (max-width: 767.98px) {
      .testimonial-section {
        padding: 40px 0;
      }

      .testimonial-head {
        margin-bottom: 22px;
      }

      .testimonial-title {
        font-size: clamp(1.85rem, 8vw, 2.55rem);
        letter-spacing: -1px;
      }

      .testimonial-subtext {
        font-size: 15px;
        line-height: 1.75;
      }

      .testimonial-carousel {
        padding: 0 0 28px;
      }

      .testimonial-card {
        min-height: auto;
        border-radius: 20px;
        padding: 24px 18px 18px;
      }

      .testimonial-card::after {
        border-radius: 20px;
      }

      .testimonial-quote-mark {
        font-size: 40px;
        margin-bottom: 10px;
      }

      .testimonial-text {
        font-size: 15.5px;
        line-height: 1.8;
        margin-bottom: 18px;
      }

      .testimonial-avatar {
        width: 42px;
        height: 42px;
        font-size: 14px;
      }

      .testimonial-user-info h4 {
        font-size: 14px;
      }

      .testimonial-user-info span {
        font-size: 12px;
      }

      .testimonial-control {
        display: none;
      }
    }


    /* =========================
   CONTACT CTA SECTION
========================== */

    .final-cta-section {
      position: relative;
      padding: 60px 0 50px;
      background:
        radial-gradient(circle at 50% 0%, rgba(181, 28, 171, 0.08), transparent 26%),
        linear-gradient(180deg, #ffffff 0%, #fcfbfc 100%);
      overflow: hidden;
    }

    .final-cta-section::before {
      content: "";
      position: absolute;
      top: -140px;
      left: -120px;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(181, 28, 171, 0.08), transparent 72%);
      pointer-events: none;
    }

    .final-cta-section::after {
      content: "";
      position: absolute;
      right: -140px;
      bottom: -140px;
      width: 360px;
      height: 360px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(151, 21, 143, 0.08), transparent 72%);
      pointer-events: none;
    }

    .final-cta-container {
      width: 100%;
      max-width: 100%;
      padding-left: clamp(18px, 3vw, 42px);
      padding-right: clamp(18px, 3vw, 42px);
      position: relative;
      z-index: 2;
    }

    .final-cta-card {
      position: relative;
      width: 100%;
      max-width: 100%;
      margin: 0 auto;
      text-align: center;
      padding: 68px 56px 52px;
      border-radius: 36px;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #fcfbfc 100%);
      border: 1px solid rgba(181, 28, 171, 0.10);
      box-shadow:
        0 30px 70px rgba(25, 25, 30, 0.08),
        0 10px 24px rgba(25, 25, 30, 0.04);
      overflow: hidden;
      backdrop-filter: blur(6px);
    }

    .final-cta-card::before {
      content: "";
      position: absolute;
      top: -100px;
      left: -80px;
      width: 260px;
      height: 260px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(181, 28, 171, 0.12), transparent 72%);
      pointer-events: none;
    }

    .final-cta-card::after {
      content: "";
      position: absolute;
      right: -100px;
      bottom: -120px;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(151, 21, 143, 0.10), transparent 72%);
      pointer-events: none;
    }

    .final-cta-badge {
      position: relative;
      z-index: 2;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 11px 18px;
      border-radius: 999px;
      background: rgba(181, 28, 171, 0.08);
      color: var(--brand-purple);
      font-size: 13px;
      font-weight: 800;
      line-height: 1;
      margin-bottom: 22px;
      box-shadow: var(--shadow-soft);
    }

    .final-cta-badge-dot {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-purple);
      box-shadow: 0 0 0 5px rgba(181, 28, 171, 0.12);
    }

    .final-cta-title {
      position: relative;
      z-index: 2;
      font-size: clamp(2.2rem, 4vw, 4rem);
      line-height: 1.04;
      font-weight: 800;
      letter-spacing: -1.8px;
      color: var(--brand-charcoal);
      max-width: 860px;
      margin: 0 auto 18px;
      text-wrap: balance;
    }

    .final-cta-text {
      position: relative;
      z-index: 2;
      font-size: 17px;
      line-height: 1.9;
      color: var(--brand-text-soft);
      max-width: 760px;
      margin: 0 auto 38px;
    }

    .final-cta-contact-wrap {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-bottom: 38px;
    }

    .final-cta-contact-item {
      background: linear-gradient(180deg, #ffffff 0%, #fdfbfd 100%);
      border: 1px solid rgba(181, 28, 171, 0.10);
      border-radius: 22px;
      padding: 22px 20px;
      box-shadow: 0 14px 30px rgba(25, 25, 30, 0.05);
      transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
    }

    .final-cta-contact-item:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 36px rgba(25, 25, 30, 0.08);
      border-color: rgba(181, 28, 171, 0.22);
    }

    .final-cta-contact-label {
      display: block;
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      color: var(--brand-purple);
      margin-bottom: 8px;
    }

    .final-cta-contact-value {
      display: block;
      font-size: 16px;
      line-height: 1.65;
      font-weight: 700;
      color: var(--brand-charcoal);
      text-decoration: none;
      word-break: break-word;
      transition: color .25s ease;
    }

    .final-cta-contact-value:hover {
      color: var(--brand-purple);
    }

    .final-cta-action {
      position: relative;
      z-index: 2;
    }

    .final-cta-btn {
      min-width: 230px;
      padding: 16px 30px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 800;
      box-shadow: var(--shadow-purple);
    }

    .btn-brand.final-cta-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, var(--brand-purple) 0%, var(--brand-purple-dark) 100%);
      color: var(--white);
      text-decoration: none;
      border: 1px solid transparent;
      transition: transform .28s ease, box-shadow .28s ease;
    }

    .btn-brand.final-cta-btn:hover {
      color: var(--white);
      transform: translateY(-2px);
      box-shadow: 0 22px 42px rgba(181, 28, 171, 0.28);
    }

    /* =========================
   RESPONSIVE
========================== */
    @media (max-width: 1199.98px) {
      .final-cta-card {
        padding: 58px 38px 44px;
        border-radius: 32px;
      }

      .final-cta-title {
        max-width: 760px;
      }
    }

    @media (max-width: 991.98px) {
      .final-cta-section {
        padding: 78px 0 86px;
      }

      .final-cta-container {
        padding-left: 18px;
        padding-right: 18px;
      }

      .final-cta-card {
        padding: 48px 26px 36px;
        border-radius: 26px;
      }

      .final-cta-contact-wrap {
        grid-template-columns: 1fr;
        max-width: 620px;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 30px;
      }

      .final-cta-title,
      .final-cta-text {
        max-width: 100%;
      }
    }

    @media (max-width: 767.98px) {
      .final-cta-section {
        padding: 64px 0 72px;
      }

      .final-cta-container {
        padding-left: 14px;
        padding-right: 14px;
      }

      .final-cta-card {
        padding: 34px 18px 26px;
        border-radius: 22px;
      }

      .final-cta-badge {
        font-size: 12px;
        padding: 10px 15px;
        margin-bottom: 18px;
      }

      .final-cta-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
        line-height: 1.08;
        letter-spacing: -1px;
        margin-bottom: 14px;
      }

      .final-cta-text {
        font-size: 14px;
        line-height: 1.8;
        margin-bottom: 24px;
      }

      .final-cta-contact-wrap {
        gap: 12px;
        margin-bottom: 24px;
      }

      .final-cta-contact-item {
        border-radius: 16px;
        padding: 16px 14px;
      }

      .final-cta-contact-value {
        font-size: 14px;
      }

      .final-cta-btn {
        width: 100%;
        min-width: 100%;
        padding: 15px 20px;
        font-size: 14px;
      }
    }


    /* =========================
   SHORT MAP SECTION
========================= */

    .short-map {
      width: 100%;
      height: 380px;
      overflow: hidden;
      position: relative;
    }

    .short-map iframe {
      width: 100%;
      height: 100%;
      border: 0;
      display: block;


      filter: grayscale(8%) contrast(1.02) saturate(.95);
    }


    /* =========================
   INSURANCE POPUP & BUTTON
========================= */

    .btn-insurance-quote {
      margin-top: 20px;
      padding: 12px 28px;
      border-radius: 99px;
      background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
      color: #fff;
      font-size: 14px;
      font-weight: 800;
      border: none;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 25px rgba(181, 28, 171, 0.25);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: relative;
      overflow: hidden;
      letter-spacing: -0.2px;
    }

    .btn-insurance-quote::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }

    .btn-insurance-quote:hover {
      transform: translateY(-4px) scale(1.02);
      box-shadow: 0 15px 35px rgba(181, 28, 171, 0.35);
      color: #fff;
    }

    .btn-insurance-quote:hover::before {
      left: 100%;
    }

    .btn-insurance-quote i {
      transition: transform 0.3s ease;
    }

    .btn-insurance-quote:hover i {
      transform: translateX(5px);
    }

    .modal-premium .modal-content {
      border-radius: 16px;
      border: none;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
      overflow: hidden;
    }

    .modal-premium .modal-header {
      border-bottom: 1px solid #f3f4f6;
      padding: 24px 30px;
      background: #fff;
    }

    .modal-premium .modal-title {
      font-weight: 800;
      color: var(--brand-charcoal);
      font-size: 1.25rem;
      font-family: '' Manrope'', sans-serif;
      border-radius: 28px;
      overflow: hidden;
      background: #ffffff;
      box-shadow: 0 30px 70px rgba(0, 0, 0, 0.18);
    }

    .modal-sidebar {
      background: linear-gradient(165deg, var(--brand-purple), var(--brand-purple-dark));
      position: relative;
      overflow: hidden;
    }

    .modal-sidebar::before {
      content: "";
      position: absolute;
      top: -60px;
      right: -60px;
      width: 240px;
      height: 240px;
      background: rgba(255, 255, 255, 0.06);
      border-radius: 50%;
    }

    .modal-sidebar::after {
      content: "";
      position: absolute;
      bottom: -40px;
      left: -40px;
      width: 160px;
      height: 160px;
      background: rgba(255, 255, 255, 0.04);
      border-radius: 50%;
    }

    .modal-sidebar-logo {
      width: 64px;
      height: 64px;
      object-fit: contain;
      background: #fff;
      padding: 10px;
      border-radius: 16px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

    .sidebar-title {
      font-size: 1.5rem;
      font-weight: 800;
      letter-spacing: -0.5px;
      line-height: 1.2;
    }

    .feature-icon-wrap {
      width: 28px;
      height: 28px;
      background: rgba(255, 255, 255, 0.2);
      border: 1px solid rgba(255, 255, 255, 0.3);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }


    .premium-form {
      padding-top: 10px;
    }

    .form-label-small {
      font-size: 13.5px;
      font-weight: 800;
      color: var(--brand-charcoal);
      margin-bottom: 8px;
      display: block;
      padding-left: 4px;
    }

    .input-group-premium {
      position: relative;
      display: flex;
      align-items: center;
    }

    .input-group-premium .icon {
      position: absolute;
      left: 18px;
      color: #94a3b8;
      font-size: 15px;
      transition: all 0.3s ease;
      z-index: 5;
    }

    .form-control-premium,
    .form-select-premium {
      width: 100%;
      padding: 14px 18px 14px 50px;
      background: #f8fafc;
      border: 1.5px solid #e2e8f0;
      border-radius: 16px;
      font-size: 14.5px;
      font-weight: 600;
      color: var(--brand-charcoal);
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .form-control-premium::placeholder {
      color: #94a3b8;
      font-weight: 500;
    }

    .form-control-premium:focus,
    .form-select-premium:focus {
      background: #fff;
      border-color: var(--brand-purple);
      box-shadow: 0 0 0 4px rgba(181, 28, 171, 0.12);
      outline: none;
    }

    .input-group-premium:focus-within .icon {
      color: var(--brand-purple);
      transform: scale(1.1);
    }


    .form-select-premium {
      cursor: pointer;
      appearance: none;
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right 1rem center;
      background-size: 16px 12px;
    }

    .btn-submit-premium {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, var(--brand-purple), var(--brand-purple-dark));
      color: #fff;
      border: none;
      border-radius: 18px;
      font-weight: 800;
      font-size: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 12px 30px rgba(181, 28, 171, 0.35);
      position: relative;
      overflow: hidden;
    }

    .btn-submit-premium::before {
      content: "";
      position: absolute;
      top: 0;
      left: -100%;
      width: 100%;
      height: 100%;
      background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
      transition: 0.5s;
    }

    .btn-submit-premium:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 40px rgba(181, 28, 171, 0.45);
    }

    .btn-submit-premium:hover::before {
      left: 100%;
    }

    .btn-submit-premium:active {
      transform: translateY(-1px);
    }

    .form-note {
      font-weight: 600;
      letter-spacing: 0.2px;
    }

    .modal.fade .modal-dialog {
      transform: translateY(40px) scale(0.96);
      opacity: 0;
      transition: all 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
    }

    .modal.show .modal-dialog {
      transform: translateY(0) scale(1);
      opacity: 1;
    }


    .modal-premium .btn-close {
      width: 40px;
      height: 40px;
      background-color: #f1f5f9;
      border-radius: 12px;
      opacity: 1;
      padding: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s ease;
      /* margin: 10px; */
    }

    .modal-premium .btn-close:hover {
      background-color: #e2e8f0;
      transform: rotate(90deg);
    }

    @media (max-width: 991.98px) {
      .modal-premium .modal-lg {
        max-width: 550px;
        margin: 1.75rem auto;
      }

      .modal-premium .modal-content {
        border-radius: 24px;
      }

      .modal-header {
        padding: 24px 24px 0;
      }

      .modal-body {
        padding: 24px !important;
      }
    }

    @media (max-width: 575.98px) {
      .modal-premium .modal-dialog {
        margin: 10px;
      }

      .btn-submit-premium {
        padding: 15px;
        font-size: 15px;
      }
    }


    .success-icon-wrap i {
      filter: drop-shadow(0 10px 15px rgba(25, 135, 84, 0.2));
    }

    .animate__fadeIn {
      animation: formFadeIn 0.6s ease-out forwards;
    }

    @keyframes formFadeIn {
      from {
        opacity: 0;
        transform: translateY(15px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }


    .contact-card-premium {
      border-radius: 32px;
      box-shadow: 0 40px 100px rgba(0, 0, 0, 0.1) !important;
      background: #fff;
    }

    .contact-info-sidebar {
      background: linear-gradient(165deg, #b51cab 0%, #97158f 100%) !important;
      background-color: #b51cab !important;
      position: relative;
      overflow: hidden;
      color: #ffffff !important;
      min-height: 400px;
    }

    .contact-info-sidebar::before {
      content: "";
      position: absolute;
      top: -100px;
      right: -100px;
      width: 300px;
      height: 300px;
      background: rgba(255, 255, 255, 0.08);
      border-radius: 50%;
    }

    .icon-box-small {
      width: 44px;
      height: 44px;
      background: rgba(255, 255, 255, 0.15);
      border: 1px solid rgba(255, 255, 255, 0.2);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }


    .modal-backdrop.show {
      opacity: 0.6;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .success-icon-wrap i {
      filter: drop-shadow(0 10px 15px rgba(25, 135, 84, 0.2));
    }

    .animate__fadeIn {
      animation: formFadeIn 0.6s ease-out forwards;
    }

    @keyframes formFadeIn {
      from {
        opacity: 0;
        transform: translateY(15px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .contact-section {
      padding: 30px 0;
    }


    .input-group-premium {
      position: relative;
      margin-bottom: 16px;
    }

    .error-msg {
      position: absolute;
      left: 0;
      bottom: -22px;
      font-size: 13px;
      font-weight: 500;
      color: #ff3b3b;
      display: block;
    }

    .error-msg.d-none {
      display: none !important;
    }