  body {
      font-family: "Inter", sans-serif;
      background: #f7f9fc;
      width: 100%;
      overflow-x: hidden;
  }

  .faq-container {
      width: 100%;
      max-width: 100%;
      margin: 60px auto;
      padding: 0 24px;
      /* safer padding for all screens */
      box-sizing: border-box;
  }

  .faq-container h1 {
      text-align: center;
      font-size: 38px;
      font-weight: 600;
      color: #1f2937;
      margin-bottom: 50px;
      letter-spacing: -0.5px;
  }

  .faq-item {
      background: #ffffff;
      border-radius: 14px;
      margin-bottom: 20px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
      overflow: hidden;
      transition: all 0.3s ease;
  }

  .faq-question {
      width: 100%;
      background: #f9fafb;
      border: none;
      padding: 22px 28px;
      font-size: 18px;
      font-weight: 500;
      color: #111827;
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      transition: background 0.3s ease;
  }

  .faq-question:hover {
      background: #f3f4f6;
  }

  .faq-question i {
      font-size: 16px;
      color: #e49815;
      transition: transform 0.4s ease;
  }

  .faq-answer {
      max-height: 0;
      overflow: hidden;
      padding: 0 28px;
      background: #ffffff;
      transition: max-height 0.5s ease, padding 0.3s ease;
  }

  .faq-answer p {
      margin: 18px 0 24px;
      font-size: 15.5px;
      font-weight: 400;
      color: #4b5563;
      line-height: 1.9;
  }

  .faq-item.active .faq-answer {
      max-height: 350px;
      padding: 10px 28px 26px;
  }

  .faq-item.active .faq-question i {
      transform: rotate(180deg);
  }

  /* Mobile optimization */
  @media (max-width: 768px) {
      .faq-container h1 {
          font-size: 28px;
      }

      .faq-question {
          font-size: 10px;
          padding: 18px 22px;
          font-family: "Poppins", sans-serif;
          color: #404040;
          font-weight: 600;
      }

      .faq-answer p {
          font-size: 14.5px;
      }
  }

  .mega-dropdown {
      position: relative;
  }

  .mega-menu {
      position: absolute;
      top: 100%;
      right: -100%;

      width: 420px;
      max-width: 90vw;

      background: #ffffff;
      border-radius: 12px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);

      padding: 16px 0;

      display: flex;
      flex-direction: column;

      opacity: 0;
      visibility: hidden;
      transform: translateY(10px);
      transition: all 0.25s ease;

      z-index: 9999;
  }

  /* Show on hover */
  .mega-dropdown:hover .mega-menu {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
  }

  /* Each item */
  .mega-column {
      display: flex;
      align-items: flex-start;
      gap: 12px;

      padding: 14px 20px;
      cursor: pointer;
      transition: background 0.2s ease;
  }

  .mega-column:hover {
      background: #f5f7fa;
  }

  /* Icon circle */
  .mega-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: #eef4ff;
      color: #d68812;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 16px;
      flex-shrink: 0;
  }

  /* Title */
  .mega-column h4 {
      font-size: 15px;
      font-weight: 600;
      color: #111827;
      margin: 0 0 4px;
  }

  /* Description */
  .mega-column p {
      font-size: 13.5px;
      color: #6b7280;
      line-height: 1.5;
      margin: 0;
  }

  /* Rotate arrow */
  .mega-dropdown:hover i {
      transform: rotate(180deg);
      transition: transform 0.3s ease;
  }

  /* HERO SECTION */
  .hero-premium {
      /* background: linear-gradient(135deg, #f6e3c2, #d6a86f); */
      background: linear-gradient(to bottom, #f5e3ca, #F49F43);
      padding: 100px 40px;

  }

  .hero-wrap {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.2fr 0.9fr;
      gap: 80px;
      align-items: center;
  }

  /* LEFT CONTENT */
  .hero-content h1 {
      font-size: 50px;
      font-weight: 800;
      color: #0f172a;
      line-height: 1.2;
  }

  .hero-content h1 span {
      color: #2563eb;
  }

  .hero-sub {
      margin-top: 20px;
      font-size: 17px;
      color: #475569;
      max-width: 520px;
  }

  .hero-features {
      margin-top: 30px;
      list-style: none;
      padding: 0;
  }

  .hero-features li {
      margin-bottom: 14px;
      font-size: 15.5px;
      color: #334155;
      padding-left: 28px;
      position: relative;
  }

 .hero-features li {
  position: relative;
  padding-left: 28px;
}

.hero-features li::before {
  content: "\2714";
  color: #22c55e;
  position: absolute;
  left: 0;
  font-weight: bold;
}


  /* STATS */
  .hero-stats {
      display: flex;
      gap: 30px;
      margin-top: 35px;
  }

  .stat-box {
      background: #ffffff;
      padding: 16px 22px;
      border-radius: 14px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      font-size: 14px;
      color: #475569;
  }

  .stat-box strong {
      display: block;
      font-size: 20px;
      color: #0f172a;
  }

  /* ============================= */
  /* PREMIUM FORM CARD */
  /* ============================= */

  .hero-card {
      background: linear-gradient(180deg, #ffffff, #f7faff);
      border-radius: 22px;
      border: 1px solid rgba(37, 99, 235, 0.15);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
      padding: 46px 42px;
      max-width: 440px;
      width: 100%;
      position: relative;
  }

  /* Title */
  .hero-card h3 {
      font-size: 21px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 28px;
      letter-spacing: -0.2px;
  }

  /* Form groups */
  .form-group {
      margin-bottom: 22px;
  }

  /* Labels */
  .hero-card label {
      font-size: 14px;
      color: #64748b;
      margin-bottom: 6px;
      display: block;
      font-weight: 500;
  }

  /* Inputs */
  .hero-card input,
  .hero-card select {
      width: 100%;
      padding: 16px 18px;
      border-radius: 12px;
      border: 1px solid #e2e8f0;
      font-size: 15px;
      background: #f8fafc;
      color: #0f172a;
      transition: all 0.25s ease;
  }

  /* Focus effect */
  .hero-card input:focus,
  .hero-card select:focus {
      outline: none;
      background: #ffffff;
      border-color: #2563eb;
      box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.18);
  }

  /* Button */
  .cta-btn {
      width: 100%;
      padding: 18px;
      background: linear-gradient(135deg, #2563eb, #1d4ed8);
      color: #ffffff;
      border: none;
      border-radius: 14px;
      font-size: 16.5px;
      font-weight: 600;
      cursor: pointer;
      margin-top: 10px;
      box-shadow: 0 12px 28px rgba(37, 99, 235, 0.35);
      transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .cta-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 18px 36px rgba(37, 99, 235, 0.45);
  }

  /* ============================= */
  /* MOBILE REFINEMENT */
  /* ============================= */

  @media (max-width: 768px) {
      .hero-premium {
          padding: 20px !important;
      }

      .hero-wrap {
          grid-template-columns: 1fr;
          gap: 40px;
          justify-content: center;
          padding: 20px;
      }

      .hero-card {
          max-width: 100%;
          padding: 28px 22px;
          border-radius: 18px;
          box-shadow: 0 10px 26px rgba(0, 0, 0, 0.10);
          margin-left: -20px;
      }

      .hero-card h3 {
          font-size: 16.5px;
          margin-bottom: 18px;
      }

      .hero-card label {
          font-size: 12.5px;
      }

      .hero-card input,
      .hero-card select {
          padding: 13px 14px;
          font-size: 13.5px;
          border-radius: 10px;
      }

      .cta-btn {
          padding: 14px;
          font-size: 14.5px;
          border-radius: 12px;
      }

      .hero-stats {
          flex-direction: column;
      }
  }



  .service-promise {
      background: linear-gradient(to bottom, #ffffff, #f4f7fb);
      padding: 90px 40px;
  }

  .promise-container {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.1fr 1fr;
      gap: 70px;
      align-items: center;
  }

  /* Left */
  .promise-left h2 {
      font-size: 34px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 36px;
      text-align: left;
  }

  /* List */
  .promise-list {
      display: flex;
      flex-direction: column;
      gap: 26px;
  }

  /* Item */
  .promise-item {
      display: flex;
      align-items: flex-start;
      gap: 20px;
      padding: 10px 0;
  }

  /* Flat icon style (image look) */
  .promise-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(135deg, #f5e3ca 0%, #F49F43 100%);
      border-radius: 12px;

      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 10px;
  }

  .promise-icon img {
      width: 100%;
      height: 100%;
      object-fit: contain;
  }


  /* Text */
  .promise-item h4 {
      font-size: 16px;
      font-weight: 600;
      color: #0f172a;
      margin-bottom: 4px;
  }

  .promise-item p {
      font-size: 14px;
      color: #475569;
      line-height: 1.6;
  }

  /* Right image */
  .promise-right {
      position: relative;
      display: flex;
      justify-content: center;
  }

  .promise-right img {
      max-width: 100%;
      border-radius: 18px;
  }

  /* Flat badge */
  .shield-badge {
      position: absolute;
      top: 18px;
      right: 18px;

      background: #22c55e;
      color: #ffffff;

      width: 52px;
      height: 52px;
      border-radius: 50%;

      display: flex;
      align-items: center;
      justify-content: center;

      font-size: 24px;
  }

  /* Mobile */
  @media (max-width: 768px) {
      .promise-container {
          grid-template-columns: 1fr;
          text-align: center;
      }

      .promise-item {
          justify-content: center;
          text-align: left;
      }
  }

  .claim-premium {
      background: linear-gradient(to bottom, #fffaf2, #f3e8d6);
      padding: 110px 40px;
      text-align: center;
  }

  .claim-premium h2 {
      font-size: 38px;
      font-weight: 800;
      color: #0f172a;
      margin-bottom: 70px;
      letter-spacing: -0.4px;
  }

  .claim-grid {
      max-width: 1300px;
      margin: auto;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 36px;
      justify-content: center;
  }

  /* PREMIUM CARD */
  .claim-card {
      background: linear-gradient(135deg, #f5e3ca 0%, #F49F43 100%);
      backdrop-filter: blur(12px);
      border-radius: 15px;
      padding: 42px 28px;
      box-shadow:
          0 20px 60px rgba(0, 0, 0, 0.08),
          inset 0 1px 0 rgba(255, 255, 255, 0.6);
      border: 1px solid rgba(62, 58, 58, 0.05);

      transition:
          transform 0.35s ease,
          box-shadow 0.35s ease;
      cursor: pointer;
      position: relative;
      text-align: center;
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  /* LUXURY HOVER */
  .claim-card:hover {
      transform: translateY(-10px) scale(1.03);
      box-shadow:
          0 15px 65px rgba(0, 0, 0, 0.14),
          inset 0 1px 0 rgba(255, 255, 255, 0.7);
  }

  /* ICON IMAGE */
  .claim-card img {
      width: 150px;
      margin-bottom: 26px;
      transition: transform 0.35s ease;
  }

  .claim-card:hover img {
      transform: scale(1.12) rotate(-2deg);
  }

  /* STEP PILL */
  .step {
      display: inline-block;
      font-size: 12px;
      font-weight: 700;
      color: #2563eb;
      background: linear-gradient(135deg, #eaf2ff, #ffffff);
      padding: 7px 16px;
      border-radius: 999px;
      margin-bottom: 16px;
      letter-spacing: 0.5px;
  }

  /* TITLE */
  .claim-card h4 {
      font-size: 17px;
      font-weight: 700;
      color: #0f172a;
      margin-bottom: 10px;
  }

  /* TEXT */
  .claim-card p {
      font-size: 14.5px;
      color: #64748b;
      line-height: 1.7;
  }

  /* SOFT GLOW EDGE */
  .claim-card::after {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: 15px;
      pointer-events: none;
      box-shadow: inset 0 0 0 1px rgba(37, 99, 235, 0.08);
  }

  /* MOBILE */
  @media (max-width: 900px) {
      .claim-grid {
          grid-template-columns: repeat(2, 1fr);
      }
  }

  @media (max-width: 500px) {
      .claim-grid {
          grid-template-columns: 1fr;
      }

      .claim-premium {
          padding: 70px 20px;
      }

      .claim-premium h2 {
          font-size: 28px;
      }
  }

  /* ===============================
   PREMIUM TESTIMONIAL SECTION
================================ */

  .review-section {
      padding: 100px 20px;
      background: linear-gradient(to bottom, #f5e3ca, #F49F43);
  }

  .review-header {
      text-align: center;
      max-width: 800px;
      margin: 0 auto 60px;
  }

  .review-header h2 {
      font-size: 42px;
      font-weight: 800;
      color: #0f172a;
      letter-spacing: -0.5px;
  }

  .review-header p {
      font-size: 18px;
      color: #475569;
      margin-top: 14px;
  }

  /* Stats pill */
  .review-stats {
      display: inline-flex;
      gap: 24px;
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(10px);
      padding: 14px 28px;
      border-radius: 50px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      margin-top: 30px;
      font-weight: 600;
      color: #0f172a;
  }

  /* ===============================
   GRID LAYOUT
================================ */

  .review-grid {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 1.3fr 1fr;
      gap: 50px;
      align-items: center;

  }

  /* ===============================
   VIDEO CARD
================================ */

  .review-video {
      background: #ffffff;
      border-radius: 22px;
      padding: 22px;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
      transition: transform 0.3s ease;
      max-width: 100%;
  }

  .review-video:hover {
      transform: translateY(-6px);
  }

  /* VIDEO WRAPPER */
  .review-video iframe,
  .review-video video {
      width: 100%;
      height: 350px;
      /* ? FIXED HEIGHT */
      border-radius: 18px;
      object-fit: cover;
      /* Keeps video nicely cropped */
  }

  /* TITLE */
  .review-video h4 {
      margin-top: 16px;
      font-size: 18px;
      font-weight: 700;
      color: #0f172a;
  }

  /* MOBILE ADJUSTMENT */
  @media (max-width: 768px) {

      .review-video iframe,
      .review-video video {
          height: 200px;
      }

      .review-video h4 {
          font-size: 16px;
      }
  }


  .review-video span {
      font-size: 14px;
      color: #64748b;
  }

  /* ===============================
   TESTIMONIAL CARDS
================================ */

  .review-cards {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
  }

  .review-card {
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(12px);
      border-radius: 20px;
      padding: 24px 22px;
      box-shadow: 0 16px 40px rgba(0, 0, 0, 0.10);
      transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .review-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 22px 55px rgba(0, 0, 0, 0.14);
  }

  .review-user {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 14px;
  }

  .review-avatar {
      width: 46px;
      height: 46px;
      border-radius: 50%;
      background: #2563eb;
      color: #fff;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
  }

  .review-user h5 {
      font-size: 15px;
      font-weight: 600;
      color: #0f172a;
  }

  .review-stars {
      color: #facc15;
      font-size: 14px;
  }

  .review-text {
      font-size: 14.5px;
      color: #475569;
      line-height: 1.7;
  }

  /* ===============================
   MOBILE RESPONSIVE
================================ */

  @media (max-width: 900px) {
      .review-grid {
          grid-template-columns: 1fr;
      }

      .review-cards {
          grid-template-columns: 1fr;
      }

      .review-header h2 {
          font-size: 28px;
      }

      .review-header p {
          font-size: 15px;
      }

      .review-stats {
          flex-direction: column;
          gap: 10px;
      }
  }


  /* ===============================
   SECTION
================================ */
  .compare-section {
      padding: 100px 20px;
      background: #ffffff;
      text-align: center;
  }

  .compare-section h2 {
      font-size: 36px;
      font-weight: 600;
      color: #111827;
      margin-bottom: 60px;
  }

  /* ===============================
   MAIN LAYOUT
================================ */
  .compare-layout {
      max-width: 1200px;
      margin: auto;
      display: grid;
      grid-template-columns: 260px 1fr;
      gap: 40px;
      align-items: center;
  }

  /* ===============================
   LEFT: STAR + BAR
================================ */
  .compare-left {
      display: flex;
      flex-direction: column;
      align-items: center;
  }

  .compare-star {
      width: 110px;
      margin-bottom: 20px;
  }

  .compare-bar {
      width: 140px;
      height: 340px;
      background: linear-gradient(180deg, #5b8def, #2563eb);
      border-radius: 8px;
      display: flex;
      justify-content: center;
      padding-top: 14px;
      color: #fff;
      font-weight: 600;
      box-shadow: 0 18px 40px rgba(37, 99, 235, 0.35);
  }

  /* ===============================
   RIGHT: COMBINED FEATURES + CARD
================================ */
  .comapare-card-right {
      display: grid;
      grid-template-columns: 1fr 1fr;
      background: #fff;
      border-radius: 16px;
      overflow: hidden;
      box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  }

  /* FEATURES SIDE */
  .compare-features {
      padding: 30px 28px;
      text-align: left;
      border-right: 1px solid #f1f5f9;
  }

  .features-title {
      font-size: 18px;
      color: #9ca3af;
      margin-bottom: 20px;
      font-weight: 500;
  }

  .compare-features ul {
      list-style: none;
      margin: 0;
      padding: 0;
  }

  /* ROW ALIGNMENT */
  .compare-features li,
  .compare-values li {
      padding: 10px 0;
      font-size: 15.5px;
      font-weight: 500;
      color: #0f172a;
      border-bottom: 1px solid #f1f5f9;
      display: flex;
      align-items: center;
      min-height: 56px;
  }

  .compare-features li:last-child,
  .compare-values li:last-child {
      border-bottom: none;
  }

  /* COMPANY SIDE */
  .compare-card {
      background: #fff;
  }

  .compare-header {
      background: linear-gradient(135deg, #905E28, #7A4D1F);
      padding: 22px;
      text-align: center;
      font-weight: 600;
      color: #fff;
  }

  .compare-values {
      list-style: none;
      margin: 0;
      padding: 30px 28px;
  }

  /* ===============================
   MOBILE RESPONSIVE
================================ */
  @media (max-width: 768px) {
      .compare-layout {
          grid-template-columns: 1fr;
          gap: 40px;
      }

      .comapare-card-right {
          grid-template-columns: 1fr;
      }

      .compare-features {
          border-right: none;
          border-bottom: 1px solid #f1f5f9;
          text-align: center;
      }

      .compare-section h2 {
          font-size: 26px;
      }
  }