html { scroll-behavior: smooth; }
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --gold: #c9a96e;
      --dark: #1a1612;
      --card-bg: #ffffff;
      --accent-blue: #1a6de0;
    }

    html, body {
      font-family: 'Inter', sans-serif;
      overflow-x: hidden;
      max-width: 100%;
    }

    /* ── NAVBAR ── */
    .aha-nav {
      position: fixed;
      top: 0; left: 0; right: 0;
      z-index: 1000;
      background: rgba(15,12,10,0.95);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      padding: 14px 32px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-left: 15%;
      padding-right: 15%;
    }

    .aha-logo {
      display: flex;
      flex-direction: column;
      line-height: 1;
      text-decoration: none;
    }
    .aha-logo .logo-main {
      font-size: 20px;
      font-weight: 800;
      letter-spacing: 5px;
      color: #fff;
    }
    .aha-logo .logo-sub {
      font-size: 7.5px;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.55);
      text-transform: uppercase;
      margin-top: 2px;
    }

    .aha-logo .logo-img {
      width: 120px;
      height: auto;
    }

    .btn-expert {
      background: var(--accent-blue);
      color: #fff;
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.3px;
      padding: 9px 20px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      text-decoration: none;
    }
    .btn-expert:hover { background: #1559c4; color: #fff; }
    .btn-expert .arrow {
      width: 18px; height: 18px;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px;
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 100vh;
      display: flex;
      align-items: center;
      overflow: hidden;
      padding-top: 56px;
    }

    .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://d2ibglgkljrdv5.cloudfront.net/mumbai/commonImages/bg-hero-desktop.webp');
      background-size: cover;
      background-position: center;
    }

    @media (max-width: 575.98px) {
      .hero-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://d2ibglgkljrdv5.cloudfront.net/mumbai/commonImages/bg-hero-mobile.webp');
      background-size: cover;
      background-position: center;
    }

    }

    /* .hero-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        100deg,
        rgba(15,12,8,0.72) 0%,
        rgba(15,12,8,0.45) 55%,
        rgba(15,12,8,0.18) 100%
      );
    } */

    .hero-content {
      position: relative;
      z-index: 2;
      width: 100%;
    }

    /* Left copy */
    .hero-heading {
      font-size: 46px;     
      line-height: 49px;
      font-weight: 500;
      color: #fff;
      letter-spacing: -0.8px;
      margin-bottom: 18px;
    }

    .hero-sub {
      font-size: 17px;
      line-height: 24px;
      font-weight: 400;
      color: rgba(255,255,255,1);
      max-width: 460px;
      margin-bottom: 36px;
    }

    /* Stats */
    .stats-row {
      display: flex;
      gap: 10px;
    }
    .stat-card {
      background: rgba(255,255,255,0.10);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(255,255,255,0.18);
      border-radius: 6px;
      padding: 15px 15px;
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: flex-start;
    }
    .stat-card + .stat-card {
      border-left: 1px solid rgba(255,255,255,0.18);
    }
    .stat-card:first-child { border-radius: 6px; }
    .stat-card:last-child  { border-radius: 6px; }

    .stat-num {
      font-size: 50px;
      line-height: 55px;
      font-weight: 300;
      color: #fff;
      
      display: flex;
      align-items: center;
      gap: 2px;
    }
    .stat-num .star { color: var(--white); font-size: 0.72em; }
    .stat-label {
      font-size: 12px;
      line-height: 30px;
      font-weight: 500;
      letter-spacing: 2px;
      color: rgba(255,255,255,1);
      text-transform: uppercase;
      margin-top: 7px;
    }

    /* ── MOBILE STATS — no boxes, plain centered text, only 2 stats ── */
    @media (max-width: 575.98px) {
      .stats-row {
        gap: 0;
        justify-content: center;
      }
      /* Hide the middle stat (Architect Partners) on mobile */
      .stat-card--hide-mobile {
        display: none;
      }
      .stat-card {
        background: none;
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        border: none;
        border-radius: 0 !important;
        padding: 0 24px;
        flex: 0 0 auto;
        text-align: center;
      }
      /* Vertical divider between the two remaining stats */
      .stat-card + .stat-card {
        border-left: 1px solid rgba(255,255,255,0.2);
      }
      .stat-num {
        font-size: 44px;
        line-height: 55px;
        justify-content: center;
      }
      .stat-label {
        font-size: 13px;
        line-height: 36px;
        letter-spacing: 1.5px;
      }
    }

    /* ── FORM CARD ── */
    .form-card {
      background: #fff;
      border-radius: 12px;
      padding: 36px 36px 32px;
      box-shadow: 0 24px 64px rgba(0,0,0,0.28);
    }

    .form-card-title {
      font-size: 22px;
      font-weight: 700;
      color: #111;
      text-align: center;
      margin-bottom: 6px;
    }
    .form-card-sub {
      font-size: 14px;
      color: #888;
      text-align: center;
      margin-bottom: 26px;
    }

    .form-label-custom {
      font-size: 13px;
      font-weight: 500;
      color: #222;
      margin-bottom: 6px;
      display: block;
    }
    .form-label-custom sup { color: #e53; }

    .form-control-custom {
      width: 100%;
      border: 1px solid #ddd;
      border-radius: 6px;
      padding: 11px 14px;
      font-size: 14px;
      color: #333;
      outline: none;
      transition: border-color 0.2s;
      background: #fff;
      appearance: none;
      -webkit-appearance: none;
    }
    .form-control-custom::placeholder { color: #aaa; }
    .form-control-custom:focus { border-color: #222; }

    .select-wrapper {
      position: relative;
    }
    .select-wrapper::after {
      content: '▾';
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: #888;
      font-size: 12px;
    }
    .select-wrapper select { cursor: pointer; }

    .btn-submit {
      width: 100%;
      background: var(--accent-blue);
      color: #fff;
      border: none;
      border-radius: 8px;
      padding: 15px;
      font-size: 15px;
      font-weight: 500;
      letter-spacing: 0.5px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 8px;
      transition: background 0.2s;
    }
    .btn-submit:hover { background: #1559c4; color: #fff; }
    .btn-submit .arrow-circle {
      width: 22px; height: 22px;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
    }

    .arrow-circle {
      width: 22px; height: 22px;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 11px;
    }    

    .form-group-gap { margin-bottom: 0px; }

    /* ── RESPONSIVE ── */
    @media (max-width: 991.98px) {
      .hero { min-height: auto; padding: 100px 0 60px; }
      .stat-card { padding: 14px 20px; }
      .form-card { margin-top: 40px; padding: 28px 24px 24px; }
    }

    @media (max-width: 575.98px) {
      .aha-nav { padding: 12px 16px; }
      .hero-heading { font-size: 29px; line-height: 36px; font-weight: 400; text-align: center; }
      .hero-sub { font-size: 16px; line-height: 24px; font-weight: 400; text-align: center; max-width: 100%; }
      .form-card { margin-top: 0px; border-radius: 8px; }
    }

    /* ── WHY CHOOSE SECTION ── */
    .why-section {
      background: #111214;
      padding: 80px 0 90px;
    }

    .why-title {
      font-size: 42px;
      line-height: 55px;
      font-weight: 600;
      color: #fff;
      text-align: center;
      margin-bottom: 10px;
      letter-spacing: -1px;
    }

    .why-sub {
      font-size: 23px;
      line-height: 27px;
      font-weight: 400;
      color: rgba(255,255,255,0.55);
      text-align: center;
      margin-bottom: 52px;
    }

    .feature-card {
      background: #1c1e22;
      border-radius: 10px;
      padding: 32px 28px 32px;
      height: 100%;
      border: 1px solid rgba(255,255,255,0.05);
      transition: border-color 0.25s;
    }
    .feature-card:hover {
      border-color: rgba(58,115,230,0.35);
    }

    .feature-icon {
      width: 60px;
      height: 60px;
      margin-bottom: 24px;
    }

    .feature-title {
      font-size: 22px;
      line-height: 26px;
      font-weight: 700;
      color: #fff;      
      margin-bottom: 14px;
    }

    .feature-desc {
      font-size: 17px;
      line-height: 20px;
      font-weight: 400;
      color: rgba(255,255,255,0.52);
      margin: 0;
    }

    @media (max-width: 575.98px) {
      .why-title { font-size: 34px; line-height: 42px; }
      .why-sub { font-size: 18px; font-weight: 500; }
      .feature-title {font-size: 20px; line-height: 19px; font-weight: 600;}
      .feature-desc {font-size: 15px; line-height: 16px;}
    }

    /* ── COMPATIBILITY SECTION ── */
    .compat-section {
      background: #111214;
      padding: 72px 0 80px;
    }
    .compat-title {
      font-size: 42px;
      line-height: 55px;
      font-weight: 600;
      color: #fff;
      text-align: center;
      margin-bottom: 40px;
      letter-spacing: -0.8px;
    }

    /* Desktop: static flex rows */
    .compat-logos {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 12px;
      margin-bottom: 12px;
    }
    .compat-badge {
      background: #fff;
      border-radius: 10px;
      padding: 12px 20px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      min-height: 58px;
      white-space: nowrap;
    }
    .compat-badge .badge-works { font-size: 9px; color: #777; display: block; }
    .compat-badge .badge-name { font-size: 15px; font-weight: 700; color: #111; letter-spacing: -0.2px; display: block; }
    .compat-badge .badge-name.lg { font-size: 19px; letter-spacing: 2px; }
    .compat-badge .badge-sub { font-size: 8px; color: #999; letter-spacing: 1px; display: block; }


    .compat-image {
      width: 200px;
      height: 57px;
    }

    /* Mobile Swiper */
    .compat-swiper-wrap {
      display: none;
      position: relative;
      overflow: hidden;
      padding: 8px 0 16px;
    }
    .compat-swiper-wrap::before,
    .compat-swiper-wrap::after {
      content: '';
      position: absolute;
      top: 0; bottom: 0;
      width: 48px;
      z-index: 2;
      pointer-events: none;
    }
    .compat-swiper-wrap::before {
      left: 0;
      background: linear-gradient(to right, #0d0d0f, transparent);
    }
    .compat-swiper-wrap::after {
      right: 0;
      background: linear-gradient(to left, #0d0d0f, transparent);
    }
    .compat-swiper .swiper-slide {
      width: auto !important;
    }

    @media (max-width: 767.98px) {
      .compat-logos { display: none; }
      .compat-swiper-wrap { display: block; }
      .compat-section { padding: 52px 0 60px; }
    }

    @media (max-width: 575.98px) {
      .compat-title {font-size: 34px; line-height: 42px;}
    }

    .btn-expert-blue {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      background: #1a6de0;
      color: #fff;
      font-size: 15px;
      font-weight: 500;
      padding: 14px 40px;
      border-radius: 6px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s;
      margin-top: 32px;
    }
    .btn-expert-blue:hover { background: #1559c4; color: #fff; }
    .btn-expert-blue .arr {
      width: 22px; height: 22px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
    }

    @media (max-width: 767.98px) {
      .why-section { padding: 60px 0 70px; }
      .why-sub { margin-bottom: 36px; }
      .feature-card { padding: 18px 14px; }
      .feature-icon { width: 48px; height: 48px; margin-bottom: 16px; }
      .feature-desc { font-size: 12.5px; }
    }

    /* ── VIDEO BANNER SECTION ── */
    .video-banner {
      position: relative;
      height: 640px;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .video-banner-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://d2ibglgkljrdv5.cloudfront.net/mumbai/commonImages/bg-aha-video-desktop.webp');
      background-size: cover;
      background-position: center 40%;
    }
    /*
    .video-banner-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(60, 35, 15, 0.52);
    }
    */

    .video-banner-content {
      position: relative;
      z-index: 2;
      text-align: center;
    }

    .video-banner-title {
      font-size: 74px;
      line-height: 75px;
      font-weight: 300;
      color: #fff;
      letter-spacing: 10px;
      text-transform: uppercase;
      margin-bottom: 16px;
      text-shadow: 0 2px 24px rgba(0,0,0,0.3);
    }

    .video-banner-sub {
      font-size: 23px;
      line-height: 27px;
      font-weight: 400;
      color: rgba(255,255,255,0.88);
      letter-spacing: 1.5px;
      margin-bottom: 36px;
    }

    .btn-watch {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      background: rgba(255,255,255,0.18);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
      border: 1.5px solid rgba(255,255,255,0.55);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 14px 32px;
      border-radius: 4px;
      cursor: pointer;
      transition: background 0.25s, border-color 0.25s;
      text-decoration: none;
    }
    .btn-watch:hover {
      background: rgba(255,255,255,0.28);
      border-color: rgba(255,255,255,0.9);
      color: #fff;
    }
    .btn-watch .play-icon {
      width: 20px; height: 20px;
      background: #fff;
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .btn-watch .play-icon::after {
      content: '';
      display: block;
      width: 0; height: 0;
      border-style: solid;
      border-width: 5px 0 5px 9px;
      border-color: transparent transparent transparent #222;
      margin-left: 2px;
    }

    /* ── VIDEO MODAL ── */
    .video-modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 9999;
      background: rgba(0,0,0,0.88);
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .video-modal-overlay.active {
      display: flex;
    }

    /* Wrapper holds both the X and the box, sized to the box */
    .video-modal-wrap {
      position: relative;
      width: 90vw;
      max-width: 960px;
      /* push content down to make room for the X button above */
      margin-top: 24px;
    }

    .video-modal-close {
      position: absolute;
      top: -40px;
      right: 0;
      z-index: 10;
      width: 32px;
      height: 32px;
      background: rgba(255,255,255,0.15);
      border: 1.5px solid rgba(255,255,255,0.35);
      border-radius: 50%;
      color: #fff;
      font-size: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s, border-color 0.2s;
      line-height: 1;
    }
    .video-modal-close:hover {
      background: rgba(255,255,255,0.28);
      border-color: rgba(255,255,255,0.7);
    }

    .video-modal-box {
      width: 100%;
      background: #000;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 32px 80px rgba(0,0,0,0.6);
      animation: modalIn 0.25s ease;
    }

    @keyframes modalIn {
      from { opacity: 0; transform: scale(0.95); }
      to   { opacity: 1; transform: scale(1); }
    }

    .video-responsive {
      position: relative;
      padding-bottom: 56.25%;
      height: 0;
    }
    .video-responsive iframe {
      position: absolute;
      top: 0; left: 0;
      width: 100%; height: 100%;
      border: none;
    }

    @media (max-width: 575.98px) {
      .video-banner { height: 428px; }
      .video-banner-title { letter-spacing: 6px; font-size: 44px; line-height: 45px; font-weight: 400; text-transform: capitalize;}
    }



        /* ═══════════════════════════════════════════
      ROADMAP SECTION STYLES
      Add this CSS to your styles.css file
      ═══════════════════════════════════════════ */

    .roadmap-section {
      padding: 80px 20px;
      background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
      position: relative;
    }

    /* Header */
    .roadmap-header {
      text-align: center;
      margin-bottom: 60px;
      max-width: 800px;
      margin-left: auto;
      margin-right: auto;
    }

    .roadmap-title {
      font-size: 42px;
      line-height: 55px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 12px;
      line-height: 1.3;
    }

    .roadmap-subtitle {
      font-size: 23px;
      line-height: 27px;
      font-weight: 400;
      color: #b0b0b0;
    }

    /* Steps Container */
    .roadmap-steps {
      display: grid;
      gap: 24px;
      max-width: 1000px;
      margin: 0 auto;
    }

    /* Individual Step */
    .roadmap-step {
      display: flex;
      gap: 20px;
      align-items: flex-start;
      background: rgba(255, 255, 255, 0.05);
      padding: 28px;
      border-radius: 12px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.3);
      transition: all 0.3s ease;
      border: 1px solid rgba(255, 255, 255, 0.1);
      backdrop-filter: blur(10px);
    }

    .roadmap-step:hover {
      background: rgba(255, 255, 255, 0.08);
      box-shadow: 0 4px 16px rgba(0,0,0,0.5);
      transform: translateY(-2px);
      border-color: rgba(255, 255, 255, 0.15);
    }

    /* Step Number Circle */
    .step-number {
      flex-shrink: 0;
      width: 48px;
      height: 48px;
      /*background: linear-gradient(135deg, var(--gold) 0%, #b8935e 100%);*/
      background: var(--accent-blue);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      font-weight: 700;
      /*box-shadow: 0 4px 12px rgba(201, 169, 110, 0.4);*/
    }

    /* Step Content */
    .step-content {
      flex: 1;
    }

    .step-title {
      font-size: 20px;
      font-weight: 600;
      color: #ffffff;
      margin-bottom: 8px;
      line-height: 1.4;
    }

    .step-description {
      font-size: 15px;
      color: #cccccc;
      line-height: 1.6;
      margin: 0;
    }

    /* CTA Button */
    .roadmap-cta {
      text-align: center;
      margin-top: 50px;
    }

    /* Mobile Responsive */
    @media (max-width: 767px) {
      .roadmap-section {
        padding: 60px 16px;
      }

      .roadmap-header {
        margin-bottom: 40px;
      }

      .roadmap-title {
        font-size: 26px;
      }

      .roadmap-subtitle {
        font-size: 14px;
      }

      .roadmap-steps {
        gap: 16px;
      }

      .roadmap-step {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        align-items: center;
        text-align: center;
      }

      .step-number {
        width: 40px;
        height: 40px;
        font-size: 18px;
      }

      .step-content {
        width: 100%;
      }

      .step-title {
        font-size: 18px;
      }

      .step-description {
        font-size: 14px;
      }

      .roadmap-cta {
        margin-top: 40px;
      }
    }

    /* Tablet Responsive */
    @media (min-width: 768px) and (max-width: 1023px) {
      .roadmap-title {
        font-size: 28px;
      }
      
      .step-title {
        font-size: 19px;
      }
    }

    @media (max-width: 575.98px) {
      .roadmap-title {font-size: 34px; line-height: 42px;}
      .roadmap-subtitle { font-size: 18px; font-weight: 500; }      
    }

    

    /* ── PROJECTS SLIDER SECTION ── */
    .projects-section {
      background: #e8e8e8;
      padding: 70px 0 80px;
    }

    .projects-title {
      font-size: 42px;
      line-height: 55px;
      font-weight: 600;
      color: #111;
      text-align: center;
      margin-bottom: 10px;
      letter-spacing: -1px;
    }

    .projects-sub {
      font-size: 23px;
      line-height: 27px;
      font-weight: 400;
      color: #555;
      text-align: center;
      margin-bottom: 44px;
    }

    @media (max-width: 575.98px) {
      .projects-title { font-size: 34px; line-height: 42px; }
      .projects-sub { font-size: 18px; font-weight: 500; }
    }

    /* Swiper container with peek on both sides */
    .projects-swiper-outer {
      position: relative;
      overflow: hidden;
    }

    .projects-swiper {
      overflow: visible !important;
    }

    .projects-swiper .swiper-wrapper {
      align-items: stretch;
    }

    .projects-swiper .swiper-slide {
      height: auto;
      border-radius: 6px;
      overflow: hidden;
    }

    .project-card {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .project-card img {
      width: 100%;
      height: 299px;
      object-fit: cover;
      display: block;
    }

    .project-card-label {
      background: #111;
      padding: 18px 20px 16px;
      text-align: center;
      flex: 1;
    }

    .project-card-label .proj-name {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 3px;
    }

    .project-card-label .proj-loc {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      font-weight: 400;
    }

    /* ── SLIDER FRAME & CONTROLS ── */
    .slider-frame {
      position: relative;
    }

    /* Pagination row — centered dots only */
    .slider-controls {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-top: 28px;
    }

    /* Shared button base */
    .proj-nav-btn,
    .rev-nav-btn,
    .sol-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      z-index: 10;
      width: 40px;
      height: 40px;
      border: none;
      border-radius: 50%;
      font-size: 15px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: background 0.2s;
      box-shadow: 0 2px 12px rgba(0,0,0,0.22);
    }

    .slider-btn-prev { left: -52px; }
    .slider-btn-next { right: -52px; }

    /* Per-section colours */
    .proj-nav-btn { background: #222; color: #fff; }
    .proj-nav-btn:hover { background: #444; }

    /* Reviews nav — white bg */
    .rev-nav-btn { background: #fff; color: #111; }
    .rev-nav-btn:hover { background: #e0e0e0; }

    /* Solutions nav — light grey bg */
    .sol-nav-btn { background: #222; color: #fff; }
    .sol-nav-btn:hover { background: #444; }
    .projects-pagination {
      text-align: center;
      margin-top: 32px;
      padding-top: 8px;
    }
    .projects-pagination .swiper-pagination-bullet {
      width: 8px;
      height: 8px;
      background: #aaa;
      opacity: 1;
      margin: 0 4px;
    }
    .projects-pagination .swiper-pagination-bullet-active {
      background: #111;
    }

    @media (max-width: 767.98px) {
      .project-card img { height: auto; }
      .projects-section { padding: 50px 0 60px; }
    }
  
    /* ── REVIEWS SECTION ── */
    .reviews-section {
      background: #111214;
      padding: 70px 0 80px;
    }

    .reviews-header {
      position: relative;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      gap: 20px;
      margin-bottom: 44px;
      flex-wrap: wrap;
    }

    .google-badge {
      position: absolute;
      left: 0;
      top: 0;
      display: flex;
      flex-direction: column;
      gap: 4px;
      flex-shrink: 0;
    }
    .google-badge .g-word {
      font-size: 36px;
      font-weight: 700;
      line-height: 1;
      letter-spacing: -1px;
    }
    .google-badge .g-word span:nth-child(1) { color: #4285F4; }
    .google-badge .g-word span:nth-child(2) { color: #EA4335; }
    .google-badge .g-word span:nth-child(3) { color: #FBBC05; }
    .google-badge .g-word span:nth-child(4) { color: #4285F4; }
    .google-badge .g-word span:nth-child(5) { color: #34A853; }
    .google-badge .g-word span:nth-child(6) { color: #EA4335; }
    .google-badge .g-reviews {
      font-size: 13px;
      color: rgba(255,255,255,0.7);
      display: flex;
      align-items: center;
      gap: 6px;
    }
    .google-badge .g-stars { color: #FBBC05; font-size: 14px; letter-spacing: 1px; }

    .og-stars { color: #FBBC05; font-size: 14px; letter-spacing: 1px; }

    .reviews-heading-block {
      text-align: center;
    }
    .reviews-title {
      font-size: 42px;
      line-height: 55px;
      font-weight: 600;
      color: #fff;
      letter-spacing: -1px;
      margin-bottom: 8px;
    }
    .reviews-sub {
      font-size: 23px;
      line-height: 27px;
      font-weight: 400;
      color: rgba(255,255,255,0.5);
    }

    /* Swiper */
    .reviews-swiper-outer {
      position: relative;
      overflow: hidden;
    }

    .reviews-swiper {
      overflow: visible !important;
    }

    .reviews-swiper .swiper-slide {
      height: auto;
    }

    .review-card {
      background: #1c1e22;
      border: 1px solid rgba(255,255,255,0.07);
      border-radius: 6px;
      padding: 28px 24px 24px;
      height: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      gap: 20px;
      box-sizing: border-box;
    }

    .review-card-name {
      font-size: 18px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 14px;
    }

    .review-card-text {
      font-size: 14px;
      color: rgba(255,255,255,0.62);
      line-height: 1.7;
      font-weight: 300;
      flex: 1;
    }

    .review-card-rating {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: #2a2d32;
      border-radius: 20px;
      padding: 6px 14px;
      margin-top: 20px;
    }
    .review-card-rating .r-score {
      font-size: 13px;
      font-weight: 700;
      color: #fff;
    }
    .review-card-rating .r-stars {
      color: #FBBC05;
      font-size: 12px;
      letter-spacing: 1px;
    }
    .review-card-rating .r-g {
      font-size: 14px;
      font-weight: 900;
      background: linear-gradient(135deg, #4285F4, #EA4335, #FBBC05, #34A853);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* Pagination */
    .reviews-pagination {
      text-align: center;
      margin-top: 32px;
      padding-top: 8px;
    }
    .reviews-pagination .swiper-pagination-bullet {
      width: 8px; height: 8px;
      background: #555;
      opacity: 1;
      margin: 0 4px;
    }
    .reviews-pagination .swiper-pagination-bullet-active {
      background: #fff;
    }

    @media (max-width: 767.98px) {
      .reviews-header { 
        flex-direction: column; 
        align-items: center; 
        text-align: center;
      }
      .google-badge { 
        position: static; 
        align-items: center; 
        margin-bottom: 20px;
      }
      .reviews-heading-block { text-align: center; }
      .reviews-section { padding: 50px 0 60px; }
    }

    @media (max-width: 575.98px) {
      .reviews-title { font-size: 34px; line-height: 42px; }
      .reviews-sub { font-size: 18px; font-weight: 500; }
    }


    /* ── SOLUTIONS SECTION ── */
    .solutions-section {
      background: #e8e8e8;
      padding: 70px 0 80px;
    }

    .solutions-title {
      font-size: 42px;
      line-height: 55px;
      font-weight: 600;
      color: #111;
      text-align: center;
      margin-bottom: 10px;
      letter-spacing: -1px;
    }

    .solutions-sub {
      font-size: 23px;
      line-height: 27px;
      font-weight: 400;
      color: #555;
      text-align: center;
      margin-bottom: 44px;
    }

    .solutions-swiper-outer {
      position: relative;
      overflow: hidden;
    }

    .solutions-swiper {
      overflow: visible !important;
    }
    .solutions-swiper-outer {
      overflow: hidden;
    }

    .solutions-swiper .swiper-slide {
      height: auto;
      border-radius: 8px;
      overflow: hidden;
    }

    .solution-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      border-radius: 8px;
      overflow: hidden;
    }

    .solution-card-img {
      position: relative;
      flex-shrink: 0;
    }

    .solution-card-img img {
      width: 100%;
      height: auto;
      aspect-ratio: 358 / 350;
      object-fit: contain;
      display: block;
      background: #1a1c20;
    }

    .solution-card-icon {
      position: absolute;
      bottom: 14px;
      left: 16px;
      width: 36px;
      height: 36px;
      opacity: 0.85;
    }

    .solution-card-body {
      background: #1a1c20;
      padding: 20px 20px 22px;
      flex: 1;
    }

    .solution-card-body .sol-name {
      font-size: 17px;
      font-weight: 400;
      color: #fff;
      margin-bottom: 10px;
    }
    .solution-card-body .sol-name strong {
      font-weight: 700;
    }

    .solution-card-body .sol-desc {
      font-size: 13px;
      color: rgba(255,255,255,0.58);
      line-height: 1.65;
      font-weight: 300;
    }

    /* Pagination */
    .solutions-pagination {
      text-align: center;
      margin-top: 32px;
      padding-top: 8px;
    }
    .solutions-pagination .swiper-pagination-bullet {
      width: 8px; height: 8px;
      background: #aaa;
      opacity: 1;
      margin: 0 4px;
    }
    .solutions-pagination .swiper-pagination-bullet-active {
      background: #111;
    }

    @media (max-width: 767.98px) {
      .solutions-section { padding: 50px 0 60px; }
    }

    @media (max-width: 575.98px) {
      .solutions-title { font-size: 34px; line-height: 42px; }
      .solutions-sub { font-size: 18px; font-weight: 500; }
    }


    /* ── CONTACT SECTION ── */
    .contact-section {
      position: relative;
      padding: 80px 0 90px;
      overflow: hidden;
    }

    .contact-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://d2ibglgkljrdv5.cloudfront.net/mumbai/commonImages/bg-contact-section.webp');
      background-size: cover;
      background-position: center;
    }
    /* .contact-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10, 10, 14, 0.78);
    } */

    .contact-content {
      position: relative;
      z-index: 2;
    }

    .contact-heading {
      font-size: 42px;
      line-height: 55px;
      font-weight: 600;
      color: #fff;
      text-align: center;
      margin-bottom: 10px;
      letter-spacing: -2px;
    }

    .contact-sub {
      font-size: 23px;
      line-height: 27px;
      font-weight: 400;
      color: rgba(255,255,255,0.6);
      text-align: center;
      margin-bottom: 52px;
    }

    /* Left: Visit Us */
    .visit-block {
      color: #fff;
      padding-right: 32px;
    }

    .visit-title {
      font-size: 42px;
      line-height: 55px;
      font-weight: 600;
      margin-bottom: 8px;
      text-align: center;
    }

    .visit-sub {
      font-size: 23px;
      line-height: 27px;
      font-weight: 400;
      color: rgba(255,255,255,0.6);
      margin-bottom: 28px;
      text-align: center;
    }

    .location-card {
      background: rgba(255,255,255,0.07);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 8px;
      padding: 20px 18px 18px;
      margin-bottom: 14px;
      position: relative;
    }

    .location-card-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 8px;
    }

    .location-card .loc-name {
      font-size: 17px;
      font-weight: 700;
      color: #fff;
    }

    .location-card .loc-addr {
      font-size: 13px;
      color: rgba(255,255,255,0.6);
      line-height: 1.55;
      margin-bottom: 12px;
    }

    .location-card .loc-hours-label {
      font-size: 12px;
      color: #4ade80;
      font-weight: 600;
      margin-bottom: 2px;
    }

    .location-card .loc-hours {
      font-size: 13px;
      color: #3b82f6;
      font-weight: 600;
    }

    .loc-map-icon {
      width: 34px;
      height: 34px;
      background: #f5c518;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      cursor: pointer;
    }
    .loc-map-icon svg { color: #111; }

    /* Right: Form */
    .contact-form-wrap {
      background: transparent;
      min-height: 400px; /* Fixed height prevents form from expanding */
    }

    .contact-form-label {
      font-size: 13px;
      font-weight: 500;
      color: #fff;
      margin-bottom: 6px;
      display: block;
    }
    .contact-form-label sup { color: #ef4444; }

    .contact-form-input {
      width: 100%;
      background: rgba(230,230,235,0.92);
      border: none;
      border-radius: 6px;
      padding: 13px 16px;
      font-size: 14px;
      color: #111;
      outline: none;
      appearance: none;
      -webkit-appearance: none;
      transition: background 0.2s;
    }
    .contact-form-input::placeholder { color: #888; }
    .contact-form-input:focus { background: #fff; }

    .contact-select-wrap {
      position: relative;
    }
    .contact-select-wrap::after {
      content: '▾';
      position: absolute;
      right: 14px;
      top: 50%;
      transform: translateY(-50%);
      pointer-events: none;
      color: #555;
      font-size: 13px;
    }

    .contact-form-group { 
      margin-bottom: 0px;
    }

    .btn-contact-submit {
      width: 100%;
      background: #1a6de0;
      color: #fff;
      border: none;
      border-radius: 6px;
      padding: 15px;
      font-size: 15px;
      font-weight: 600;
      letter-spacing: 0.5px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      margin-top: 6px;
      transition: background 0.2s;
    }
    .btn-contact-submit:hover { background: #1559c4; }
    .btn-contact-submit .arr-c {
      width: 22px; height: 22px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
    }

    .arr-c {
      width: 22px; height: 22px;
      background: rgba(255,255,255,0.2);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px;
    }

    @media (max-width: 991.98px) {
      .visit-block { padding-right: 0; margin-top: 48px; }
      .contact-section { padding: 60px 0 70px; }
    }


    /* ── FOOTER ── */
    .aha-footer {
      background: #0a0a0a;
      padding: 36px 0 0;
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding-bottom: 28px;
      gap: 20px;
      flex-wrap: wrap;
    }

    .footer-logo {
      text-decoration: none;
      display: inline-block;
    }
    .footer-logo .logo-main {
      font-size: 22px;
      font-weight: 800;
      letter-spacing: 6px;
      color: #fff;
      display: block;
      line-height: 1;
    }
    .footer-logo .logo-sub {
      font-size: 7.5px;
      letter-spacing: 4px;
      color: rgba(255,255,255,0.4);
      text-transform: uppercase;
      margin-top: 3px;
      display: block;
    }

    .footer-logo .logo-img {
      width: 120px;
      height: auto;
    }
    .footer-socials {
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .social-btn {
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1.5px solid rgba(255,255,255,0.25);
      background: transparent;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
      color: rgba(255,255,255,0.7);
      text-decoration: none;
    }
    .social-btn:hover {
      border-color: rgba(255,255,255,0.7);
      background: rgba(255,255,255,0.06);
      color: #fff;
    }
    .social-btn svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    .footer-divider {
      border: none;
      border-top: 1px solid rgba(255,255,255,0.1);
      margin: 0;
    }

    .footer-bottom {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 0 20px;
      gap: 16px;
      flex-wrap: wrap;
    }

    .footer-copy {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
    }

    .footer-links {
      display: flex;
      gap: 28px;
    }

    .footer-links a {
      font-size: 13px;
      color: rgba(255,255,255,0.45);
      text-decoration: none;
      transition: color 0.2s;
    }
    .footer-links a:hover { color: #fff; }

    /* Mobile footer */
    @media (max-width: 575.98px) {
      .footer-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding-bottom: 28px;
        gap: 24px;
      }
      .footer-logo { display: flex; flex-direction: column; align-items: center; }
      .footer-socials { gap: 16px; justify-content: center; }
      .social-btn { width: 52px; height: 52px; }
      .social-btn svg { width: 20px; height: 20px; }
      .footer-divider { margin: 0; }
      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
        padding: 20px 0 22px;
      }
      .footer-links { gap: 40px; justify-content: center; }
      .footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); }
      .footer-copy { font-size: 12px; color: rgba(255,255,255,0.4); }
    }


    /* ── FORM VALIDATION ERRORS ── */
    .form-control-custom.field-error {
      border-color: #e53 !important;
      background: #fff5f5;
    }
    .contact-form-input.field-error {
      outline: 2px solid #ef4444 !important;
      outline-offset: -2px;
      background: #fff5f5;
    }
    /* Always in the DOM — reserves space so nothing shifts */
    .field-error-msg {
      display: block;
      font-size: 11px;
      color: #e53;
      margin-top: 3px;
      min-height: 16px;
      line-height: 16px;
      opacity: 0;
      transition: opacity 0.15s ease;
    }
    .field-error-msg.visible {
      opacity: 1;
    }

    /* Hide slider arrows on mobile */
    @media (max-width: 767.98px) {
      .proj-nav-btn,
      .rev-nav-btn,
      .sol-nav-btn { display: none !important; }
    }


    /* Pagination outside swiper — override Swiper's absolute positioning */
    .projects-pagination.swiper-pagination,
    .reviews-pagination.swiper-pagination,
    .solutions-pagination.swiper-pagination {
      position: static !important;
      display: block;
      width: 100%;
    }


    /* ══════════════════════════════════════════════════════════════════ */
    /* ── THANK YOU PAGE SPECIFIC STYLES ── */
    /* ══════════════════════════════════════════════════════════════════ */

    /* Thank You Page Variables */
    :root {
      --wa-green: #25d366;
    }

    /* ── HERO BG ── */
    .ty-page {
      min-height: 100vh;
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .ty-bg {
      position: absolute;
      inset: 0;
      background-image: url('https://d2ibglgkljrdv5.cloudfront.net/mumbai/commonImages/bg-thankyou-page.webp');
      background-size: cover;
      background-position: center;
      background-attachment: scroll;
      z-index: 0;
    }
    /* .ty-bg::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(
        160deg,
        rgba(10,8,6,0.88) 0%,
        rgba(10,8,6,0.72) 50%,
        rgba(10,8,6,0.85) 100%
      );
    } */

    /* ── MAIN CONTENT ── */
    .ty-content {
      position: relative;
      z-index: 2;
      flex: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 120px 24px 80px;
    }

    .ty-card {
      text-align: center;
      max-width: 680px;
      width: 100%;
      animation: fadeUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) both;
    }

    /* Tick icon */
    .ty-tick-wrap {
      width: 80px; height: 80px;
      border-radius: 50%;
      background: rgba(201,169,110,0.12);
      border: 1.5px solid rgba(201,169,110,0.35);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 32px;
      animation: scaleIn 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
    }
    .ty-tick-wrap svg {
      width: 36px; height: 36px;
    }

    /* Eyebrow */
    .ty-eyebrow {
      font-size: 11px;
      font-weight: 600;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      animation: fadeUp 0.7s ease 0.3s both;
    }

    /* Heading */
    .ty-heading {
      font-size: clamp(42px, 7vw, 72px);
      font-weight: 800;
      color: #fff;
      line-height: 1.05;
      letter-spacing: -1.5px;
      margin-bottom: 16px;
      animation: fadeUp 0.7s ease 0.4s both;
    }

    /* Sub */
    .ty-sub {
      font-size: 18px;
      font-weight: 300;
      color: rgba(255,255,255,1);
      line-height: 1.65;
      max-width: 460px;
      margin: 0 auto 52px;
      animation: fadeUp 0.7s ease 0.5s both;
    }

    /* Divider line */
    .ty-divider {
      width: 300px;
      height: 1px;
      /* background: rgba(201,169,110,0.4); */
      background: rgba(255,255,255,1);
      margin: 0 auto 30px;
      animation: fadeUp 0.7s ease 0.55s both;
    }

    /* Alternative connect block */
    .ty-alt-label {
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,1);
      margin-bottom: 20px;
      animation: fadeUp 0.7s ease 0.6s both;
    }

    .ty-btns {
      display: flex;
      gap: 14px;
      justify-content: center;
      flex-wrap: wrap;
      animation: fadeUp 0.7s ease 0.65s both;
    }

    /* WhatsApp button */
    .ty-btn-wa {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--wa-green);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 13px 26px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      letter-spacing: 0.2px;
    }
    .ty-btn-wa:hover { background: #1db954; color: #fff; transform: translateY(-1px); }
    .ty-btn-wa svg { width: 20px; height: 20px; flex-shrink: 0; }

    /* Call button */
    .ty-btn-call {
      display: flex;
      align-items: center;
      gap: 10px;
      background: var(--accent-blue);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      padding: 13px 26px;
      border-radius: 8px;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s;
      letter-spacing: 0.2px;
    }
    .ty-btn-call:hover { background: #1559c4; color: #fff; transform: translateY(-1px); }
    .ty-btn-call svg { width: 18px; height: 18px; flex-shrink: 0; }

    /* Back link */
    .ty-back {
      margin-top: 44px;
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,1);
      text-decoration: none;
      border-bottom: 1px solid rgba(255,255,255,1);
      padding-bottom: 2px;
      transition: color 0.2s, border-color 0.2s;
      display: inline-block;
      animation: fadeUp 0.7s ease 0.75s both;
    }
    .ty-back:hover { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.4); }

    /* Thank You Page Footer overrides */
    .ty-page .aha-footer {
      position: relative;
      z-index: 2;
      background: rgba(10,10,10,0.92);
      backdrop-filter: blur(8px);
      border-top: 1px solid rgba(255,255,255,0.06);
    }

    /* ── ANIMATIONS ── */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(22px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    @keyframes scaleIn {
      from { opacity: 0; transform: scale(0.5); }
      to   { opacity: 1; transform: scale(1); }
    }

    /* ── MOBILE RESPONSIVE ── */
    @media (max-width: 575.98px) {
      .ty-content { padding: 100px 20px 60px; }
      .ty-heading { letter-spacing: -1px; }
      .ty-sub { font-size: 16px; margin-bottom: 40px; }
      .ty-btns { flex-direction: column; align-items: center; }
      .ty-btn-wa, .ty-btn-call { width: 100%; max-width: 280px; justify-content: center; }
    }


    /* ═══════════════════════════════════════════════════════
       CRO — STICKY FLOATING BUTTONS
       ═══════════════════════════════════════════════════════ */

    .cro-sticky-btns {
      position: fixed;
      right: 20px;
      bottom: 36px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      z-index: 1200;
    }

    .cro-sticky-btn {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 55px;
      height: 55px;
      border-radius: 50%;
      text-decoration: none;
      color: #fff;
      box-shadow: 0 4px 18px rgba(0,0,0,0.22);
      transition: transform 0.18s ease, box-shadow 0.18s ease;
    }

    .cro-sticky-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 28px rgba(0,0,0,0.28);
      color: #fff;
    }

    .cro-sticky-btn svg {
      width: 25px;
      height: 25px;
      flex-shrink: 0;
    }

    .cro-sticky-wa   { background: #25d366; }
    .cro-sticky-wa:hover { background: #1db954; }

    .cro-sticky-call { background: #1559c4; }
    .cro-sticky-call:hover { background: #0f44a0; }

    .cro-sticky-label { display: none; }

    @media (max-width: 575.98px) {
      .cro-sticky-btns { right: 14px; bottom: 24px; gap: 10px; }
      .cro-sticky-btn  { width: 55px; height: 55px; }
      .cro-sticky-btn svg { width: 25px; height: 25px; }
    }


    /* ═══════════════════════════════════════════════════════
       CRO — POPUP SHARED STYLES
       ═══════════════════════════════════════════════════════ */

    .cro-popup-overlay {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.60);
      backdrop-filter: blur(3px);
      -webkit-backdrop-filter: blur(3px);
      display: flex;
      align-items: center;
      justify-content: center;
      z-index: 1400;
      padding: 20px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.28s ease, visibility 0.28s ease;
    }

    .cro-popup-overlay.cro-popup-active {
      opacity: 1;
      visibility: visible;
    }

    .cro-popup-card {
      position: relative;
      background: #fff;
      border-radius: 16px;
      padding: 40px 36px 36px;
      max-width: 460px;
      width: 100%;
      box-shadow: 0 24px 64px rgba(0,0,0,0.22);
      transform: translateY(16px) scale(0.98);
      transition: transform 0.28s ease;
    }

    .cro-popup-overlay.cro-popup-active .cro-popup-card {
      transform: translateY(0) scale(1);
    }

    .cro-popup-close {
      position: absolute;
      top: 14px;
      right: 16px;
      background: none;
      border: none;
      font-size: 18px;
      color: #888;
      cursor: pointer;
      padding: 4px 8px;
      line-height: 1;
      transition: color 0.15s;
    }
    .cro-popup-close:hover { color: #111; }

    .cro-popup-badge {
      display: inline-block;
      background: #e8f4ff;
      color: #1559c4;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      padding: 4px 12px;
      border-radius: 50px;
      margin-bottom: 14px;
    }

    .cro-popup-badge--gold {
      background: rgba(201,169,110,0.14);
      color: #a07840;
    }

    .cro-popup-heading {
      font-size: 26px;
      font-weight: 700;
      color: #111;
      line-height: 1.25;
      margin-bottom: 10px;
      letter-spacing: -0.5px;
    }

    .cro-popup-sub {
      font-size: 14px;
      color: #666;
      line-height: 1.6;
      margin-bottom: 22px;
    }

    .cro-popup-form {
      display: flex;
      flex-direction: column;
    }

    .cro-popup-submit {
      margin-top: 16px;
      padding: 14px 20px;
      background: var(--accent-blue);
      color: #fff;
      border: none;
      border-radius: 8px;
      font-size: 15px;
      font-weight: 700;
      font-family: 'Inter', sans-serif;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      transition: background 0.18s, transform 0.15s;
      letter-spacing: 0.01em;
    }

    .cro-popup-submit .arrow {
      width: 18px; height: 18px;
      background: rgba(255,255,255,0.25);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px;
    }

    .cro-popup-submit:hover {
      background: #1559c4;
      transform: translateY(-1px);
    }

    .cro-popup-submit:disabled {
      opacity: 0.65;
      cursor: not-allowed;
      transform: none;
    }

    .cro-popup-submit--gold {
      background: var(--gold);
      color: #111;
    }
    .cro-popup-submit--gold:hover { background: #b8924f; }

    .cro-popup-dismiss {
      text-align: center;
      margin-top: 14px;
      font-size: 12px;
      color: #aaa;
      cursor: pointer;
      margin-bottom: 0;
      transition: color 0.15s;
    }
    
    .cro-popup-dismiss:hover { color: #555; }

    .no-spam-text {
      text-align: center;
      margin-top: 14px;
      font-size: 12px;
      color: #aaa;
      cursor: default;
      margin-bottom: 0;
      transition: color 0.15s;
    }

    @media (max-width: 575.98px) {
      .cro-popup-card {
        padding: 32px 22px 28px;
        border-radius: 14px;
      }
      .cro-popup-heading { font-size: 15px; }
    }
