:root {
      --orange: #ff9f00;
      --orange-dark: #f47c00;
      --blue: #006fc9;
      --blue-dark: #003c9e;
      --sky: #32a8dc;
      --dark: #111217;
      --text: #15151a;
      --muted: #6f7280;
      --border: rgba(0, 111, 201, 0.12);
    }

    * {
      box-sizing: border-box;
    }

    body {
      margin: 0;
      font-family: Inter, Arial, sans-serif;
      color: var(--text);
      background: #ffffff;
    }

    .container-custom {
      width: min(100% - 32px, 1350px);
      margin-inline: auto;
    }

    /* ================= HEADER ================= */

    .site-header {
      position: fixed;
      top: 18px;
      left: 0;
      width: 100%;
      z-index: 999;
    }

    .nav-shell {
      min-height: 66px;
      background: rgba(255, 255, 255, 0.9);
      backdrop-filter: blur(18px);
      border: 1px solid var(--border);
      box-shadow: 0 20px 60px rgba(0, 60, 158, 0.08);
      border-radius: 999px;
      padding: 8px 10px 8px 20px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    .brand {
      display: flex;
      align-items: center;
      text-decoration: none;
      flex: 0 0 auto;
    }

    .brand img {
      width: 105px;
      height: auto;
      object-fit: contain;
      display: block;
    }

    .desktop-menu {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 3px;
      margin: 0;
      padding: 0;
      list-style: none;
      flex: 1;
    }

    .desktop-menu li {
      position: relative;
    }

    .desktop-menu a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 10px;
      border-radius: 999px;
      color: #34343b;
      text-decoration: none;
      font-size: 13px;
      font-weight: 650;
      white-space: nowrap;
      transition: 0.25s ease;
    }

    .desktop-menu a:hover,
    .desktop-menu a.active {
      background: rgba(255, 159, 0, 0.13);
      color: var(--orange-dark);
    }

    .has-dropdown > a::after {
      content: "▾";
      font-size: 10px;
      margin-left: 6px;
      transform: translateY(-1px);
    }

    .dropdown-menu-custom {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  width: 235px;
  background: #ffffff;
  border: 1px solid rgba(0, 111, 201, 0.12);
  box-shadow: 0 24px 70px rgba(0, 60, 158, 0.13);
  border-radius: 18px;
  padding: 24px 10px 10px;
  margin: 0;
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.25s ease;
  z-index: 9999;
}

.dropdown-menu-custom::before {
  content: "";
  position: absolute;
  left: 0;
  top: -18px;
  width: 100%;
  height: 18px;
  background: transparent;
}

.has-dropdown:hover .dropdown-menu-custom,
.dropdown-menu-custom:hover {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

    .dropdown-menu-custom a {
      width: 100%;
      justify-content: flex-start;
      border-radius: 12px;
      min-height: 42px;
      padding: 0 14px;
      font-size: 14px;
    }

    .header-action {
      display: flex;
      align-items: center;
      gap: 10px;
      flex: 0 0 auto;
    }

    .btn-started {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 44px;
      padding: 0 16px;
      border-radius: 999px;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #ffffff;
      text-decoration: none;
      font-size: 13px;
      font-weight: 800;
      white-space: nowrap;
      box-shadow: 0 14px 30px rgba(244, 124, 0, 0.28);
      transition: 0.25s ease;
    }

    .btn-started:hover {
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
      color: #ffffff;
      transform: translateY(-1px);
    }

    .menu-toggle {
      width: 44px;
      height: 44px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: #ffffff;
      display: none;
      align-items: center;
      justify-content: center;
      padding: 0;
      cursor: pointer;
    }

    .menu-toggle span {
      width: 18px;
      height: 2px;
      background: var(--blue-dark);
      display: block;
      position: relative;
      transition: 0.25s ease;
    }

    .menu-toggle span::before,
    .menu-toggle span::after {
      content: "";
      width: 18px;
      height: 2px;
      background: var(--blue-dark);
      position: absolute;
      left: 0;
      transition: 0.25s ease;
    }

    .menu-toggle span::before {
      top: -6px;
    }

    .menu-toggle span::after {
      top: 6px;
    }

    .menu-toggle.active span {
      background: transparent;
    }

    .menu-toggle.active span::before {
      top: 0;
      transform: rotate(45deg);
    }

    .menu-toggle.active span::after {
      top: 0;
      transform: rotate(-45deg);
    }

    .mobile-menu {
      display: none;
      margin-top: 12px;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(18px);
      border: 1px solid var(--border);
      box-shadow: 0 24px 80px rgba(0, 60, 158, 0.14);
      border-radius: 24px;
      padding: 14px;
      max-height: calc(100vh - 95px);
      overflow-y: auto;
    }

    .mobile-menu.show {
      display: block;
    }

    .mobile-menu a {
      display: flex;
      align-items: center;
      min-height: 46px;
      border-radius: 14px;
      padding: 0 14px;
      text-decoration: none;
      color: #22232b;
      font-size: 15px;
      font-weight: 700;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
      background: rgba(255, 159, 0, 0.13);
      color: var(--orange-dark);
    }

    .mobile-menu .mobile-btn {
      margin-top: 10px;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #ffffff;
      justify-content: center;
      border-radius: 999px;
    }

    /* ================= HERO ================= */

    .hero-section {
      position: relative;
      min-height: 780px;
      overflow: hidden;
      padding: 190px 0 80px;
      background:
        radial-gradient(circle at 16% 16%, rgba(255, 159, 0, 0.16), transparent 28%),
        radial-gradient(circle at 86% 16%, rgba(0, 111, 201, 0.13), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f5fbff 100%);
    }

    .hero-section::after {
      content: "";
      position: absolute;
      right: -160px;
      bottom: -180px;
      width: 520px;
      height: 520px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 159, 0, 0.22), rgba(0, 111, 201, 0.16));
      filter: blur(8px);
      pointer-events: none;
    }

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

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 14px;
      border-radius: 999px;
      background: #ffffff;
      border: 1px solid rgba(255, 159, 0, 0.24);
      color: var(--orange-dark);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 22px;
      box-shadow: 0 12px 32px rgba(244, 124, 0, 0.08);
    }

    .hero-badge span {
      width: 8px;
      height: 8px;
      background: var(--orange);
      border-radius: 50%;
      box-shadow: 0 0 0 5px rgba(255, 159, 0, 0.14);
    }

    .hero-title {
      font-size: clamp(42px, 5.7vw, 58px);
      line-height: 0.98;
      letter-spacing: -0.06em;
      font-weight: 550;
      margin-bottom: 24px;
      max-width: 760px;
      color: #111217;
    }

    .hero-title span {
      background: linear-gradient(135deg, #3F51B5, var(--blue));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-text {
      max-width: 590px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.75;
      margin-bottom: 28px;
    }

    /* ================= HERO LOAN BOX ================= */

    .hero-loan-box {
      max-width: 640px;
      background: #ffffff;
      border: 1px solid rgba(0, 111, 201, 0.10);
      box-shadow: 0 30px 90px rgba(0, 60, 158, 0.12);
      border-radius: 26px;
      padding: 14px;
      margin-bottom: 34px;
    }

    .hero-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0;
      background: linear-gradient(135deg, #f7fbff, #fff8ed);
      border-radius: 20px;
      overflow: hidden;
      margin-bottom: 14px;
      border: 1px solid rgba(0, 111, 201, 0.08);
    }

    .hero-stat-item {
      padding: 18px 14px;
      min-height: 88px;
      border-right: 1px solid rgba(0, 111, 201, 0.08);
      background: transparent;
    }

    .hero-stat-item:last-child {
      border-right: 0;
    }

    .hero-stat-item strong {
      display: block;
      font-size: 22px;
      line-height: 1;
      font-weight: 900;
      color: var(--blue-dark);
      margin-bottom: 7px;
    }

    .hero-stat-item span {
      display: block;
      font-size: 12px;
      line-height: 1.35;
      font-weight: 700;
      color: var(--muted);
    }

    .hero-apply-form {
      display: grid;
      grid-template-columns: 78px 1fr 135px;
      gap: 10px;
      background: #f6f9fc;
      border: 1px solid rgba(0, 111, 201, 0.10);
      border-radius: 18px;
      padding: 8px;
      margin-bottom: 12px;
    }

    .country-code {
      min-height: 48px;
      border-radius: 14px;
      background: #ffffff;
      border: 1px solid rgba(0, 111, 201, 0.10);
      color: var(--blue-dark);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      font-weight: 900;
    }

    .hero-phone-input {
      width: 100%;
      height: 48px;
      border: 0;
      outline: 0;
      background: #ffffff;
      border-radius: 14px;
      padding: 0 15px;
      color: var(--dark);
      font-size: 14px;
      font-weight: 700;
    }

    .hero-phone-input::placeholder {
      color: #969aa6;
    }

    .hero-submit-btn {
      border: 0;
      min-height: 48px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--orange), var(--orange-dark));
      color: #ffffff;
      font-size: 14px;
      font-weight: 900;
      box-shadow: 0 14px 28px rgba(244, 124, 0, 0.24);
      transition: 0.25s ease;
    }

    .hero-submit-btn:hover {
      background: linear-gradient(135deg, var(--blue), var(--blue-dark));
    }

    .cibil-consent {
      display: flex;
      align-items: flex-start;
      gap: 9px;
      margin: 0;
      padding: 2px 4px;
      color: #777b86;
      font-size: 11px;
      line-height: 1.5;
      font-weight: 600;
    }

    .cibil-consent input {
      margin-top: 3px;
      accent-color: var(--orange-dark);
    }

    .cibil-consent a {
      color: var(--blue-dark);
      text-decoration: none;
      font-weight: 900;
    }

    .trusted-title {
      color: var(--muted);
      font-size: 13px;
      margin-bottom: 15px;
      font-weight: 600;
    }

    .trusted-logos {
      display: flex;
      align-items: center;
      gap: 28px;
      flex-wrap: wrap;
      color: #686b78;
      font-size: 14px;
      font-weight: 800;
    }

    /* ================= HERO IMAGE ================= */

    .hero-visual {
      position: relative;
      z-index: 2;
      min-height: 590px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .phone-card {
      position: relative;
      width: min(100%, 590px);
      min-height: 590px;
      border-radius: 36px;
      background: rgba(255, 255, 255, 0.82);
      border: 1px solid rgba(0, 111, 201, 0.13);
      box-shadow: 0 34px 90px rgba(0, 60, 158, 0.14);
      backdrop-filter: blur(18px);
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 48px;
      padding-bottom:0px;
      overflow: visible;
    }

    .phone-card::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: linear-gradient(135deg, rgba(255, 159, 0, 0.25), rgba(0, 111, 201, 0.18));
      filter: blur(15px);
      z-index: -1;
    }

    .phone-img {
      width: 100%;
      max-height: 610px;
      object-fit: contain;
      filter: drop-shadow(0 35px 45px rgba(0, 60, 158, 0.24));
      animation: none;
    }

    .floating-card {
      position: absolute;
      background: #ffffff;
      border: 1px solid rgba(0, 111, 201, 0.13);
      box-shadow: 0 20px 45px rgba(0, 60, 158, 0.14);
      border-radius: 22px;
      padding: 16px;
      z-index: 5;
      animation: floatCard 4s ease-in-out infinite;
    }

    .floating-card.left {
      left: -18px;
      bottom: 105px;
      max-width: 215px;
    }

    .floating-card.right {
      right: -14px;
      bottom: 38px;
      max-width: 190px;
      animation-delay: 1.2s;
    }

    @keyframes floatCard {
      0%, 100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-14px);
      }
    }

    .stat-line {
      display: flex;
      gap: 10px;
      align-items: center;
    }

    .stat-icon {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      background: rgba(255, 159, 0, 0.14);
      color: var(--orange-dark);
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 900;
      flex: 0 0 auto;
    }

    .floating-card h6 {
      margin: 0 0 4px;
      font-size: 13px;
      font-weight: 850;
      color: #15151a;
    }

    .floating-card p {
      margin: 0;
      color: var(--muted);
      font-size: 12px;
      line-height: 1.45;
    }

   .mini-users {
  display: flex;
  align-items: center;
  margin-bottom: 9px;
}

.mini-users img {
  width: 29px;
  height: 29px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #ffffff;
  margin-left: -8px;
  background: #f4f8fc;
  box-shadow: 0 6px 14px rgba(0, 60, 158, 0.12);
}

.mini-users img:first-child {
  margin-left: 0;
}

@media (max-width: 575px) {
  .mini-users img {
    width: 23px;
    height: 23px;
  }
}


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

    @media (max-width: 1299px) {
      .desktop-menu a {
        padding: 0 7px;
        font-size: 12px;
      }

      .btn-started {
        padding: 0 13px;
        font-size: 12px;
      }

      .brand img {
        width: 95px;
      }

      .nav-shell {
        gap: 10px;
      }
    }

    @media (max-width: 1199px) {
      .desktop-menu,
      .header-action .btn-started {
        display: none;
      }

      .menu-toggle {
        display: flex;
      }

      .hero-title {
        font-size: clamp(42px, 5vw, 64px);
      }
    }

    @media (max-width: 991px) {
      .site-header {
        top: 12px;
      }

      .nav-shell {
        min-height: 62px;
      }

      .hero-section {
        min-height: auto;
        padding: 125px 0 60px;
      }

      .hero-title,
      .hero-text {
        max-width: 100%;
      }

      .hero-loan-box {
        max-width: 100%;
      }

      .hero-visual {
        min-height: 560px;
        margin-top: 35px;
      }

      .phone-card {
        width: min(100%, 540px);
        min-height: 540px;
      }

      .phone-img {
        max-height: 550px;
      }

      .floating-card.left {
        left: 10px;
        bottom: 95px;
      }

      .floating-card.right {
        right: 8px;
        bottom: 28px;
      }
    }

    @media (max-width: 575px) {
      .container-custom {
        width: min(100% - 24px, 1350px);
      }

      .nav-shell {
        padding: 8px 8px 8px 15px;
        border-radius: 22px;
      }

      .brand img {
        width: 88px;
      }

      .hero-section {
        padding: 112px 0 44px;
      }

      .hero-title {
        font-size: 42px;
        letter-spacing: -0.045em;
      }

      .hero-text {
        font-size: 15px;
      }

      .hero-loan-box {
        border-radius: 22px;
        padding: 12px;
      }

      .hero-stats {
        grid-template-columns: 1fr;
      }

      .hero-stat-item {
        border-right: 0;
        border-bottom: 1px solid rgba(0, 111, 201, 0.08);
        min-height: auto;
      }

      .hero-stat-item:last-child {
        border-bottom: 0;
      }

      .hero-apply-form {
        grid-template-columns: 74px 1fr;
        border-radius: 18px;
      }

      .hero-submit-btn {
        grid-column: 1 / -1;
        width: 100%;
      }

      .trusted-logos {
        gap: 16px;
        font-size: 13px;
      }

      .hero-visual {
        min-height: 430px;
        margin-top: 28px;
      }

      .phone-card {
        width: 100%;
        min-height: 430px;
        padding: 16px;
        border-radius: 26px;
        overflow: visible;
      }

      .phone-img {
        max-height: 430px;
        animation: none;
      }

      .floating-card {
        position: absolute;
        border-radius: 18px;
        padding: 12px;
        animation: floatCard 4s ease-in-out infinite;
      }

      .floating-card.left {
        left: -4px;
        bottom: 72px;
        max-width: 178px;
      }

      .floating-card.right {
        right: -4px;
        bottom: 14px;
        max-width: 165px;
      }

      .floating-card h6 {
        font-size: 11px;
      }

      .floating-card p {
        font-size: 10px;
      }

      .stat-icon {
        width: 30px;
        height: 30px;
        font-size: 13px;
      }

      .mini-users img {
        width: 23px;
        height: 23px;
      }
    }

    @media (max-width: 380px) {
      .hero-visual {
        min-height: 400px;
      }

      .phone-card {
        min-height: 400px;
      }

      .phone-img {
        max-height: 395px;
      }

      .floating-card.left {
        left: -6px;
        bottom: 66px;
        max-width: 160px;
      }

      .floating-card.right {
        right: -6px;
        bottom: 10px;
        max-width: 150px;
      }
    }
    
    
    .hero-title span {
          display: inline-block;
          background: linear-gradient(135deg, #3F51B5, var(--blue));
          -webkit-background-clip: text;
          -webkit-text-fill-color: transparent;
          transition: opacity 0.35s ease, transform 0.35s ease;
        }
        
        .hero-title span.changing {
          opacity: 0;
          transform: translateY(10px);
        }

/* Show the phone form only when Salary Advance slide is active */
    .salary-advance-only {
      display: none;
    }

    .salary-advance-only.show {
      display: block;
    }

    .salary-advance-only .reveal-item {
      opacity: 0;
      transform: translateY(12px);
    }

    .salary-advance-only.show .reveal-item {
      animation: revealSalaryLine 0.45s ease forwards;
    }

    .salary-advance-only.show .country-code {
      animation-delay: 0.08s;
    }

    .salary-advance-only.show .hero-phone-input {
      animation-delay: 0.18s;
    }

    .salary-advance-only.show .hero-submit-btn {
      animation-delay: 0.28s;
    }

    .salary-advance-only.show .cibil-consent {
      animation-delay: 0.42s;
    }

    @keyframes revealSalaryLine {
      from {
        opacity: 0;
        transform: translateY(12px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 575px) {
      .mini-users img {
        width: 23px;
        height: 23px;
      }
    }

/* ================= ABOUT ORRISH SECTION ================= */

.about-orrish-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background: #073b84;
}

.about-orrish-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.08), transparent 26%),
    radial-gradient(circle at 90% 74%, rgba(255, 255, 255, 0.06), transparent 24%),
    radial-gradient(circle at 12% 18%, rgba(255, 159, 0, 0.10), transparent 20%);
  pointer-events: none;
}

.about-orrish-section::after {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -160px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.about-orrish-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 58px;
  align-items: center;
}

.about-orrish-content {
  animation: aboutFadeUp 0.9s ease both;
}

.about-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.about-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 159, 0, 0.16);
}

.about-title {
  max-width: 720px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 24px;
}

.about-title span {
  color: #ffb22e;
  font-weight: 500;
}

.about-lead {
  max-width: 700px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 18px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0 0 14px;
}

.about-text {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0;
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.about-outline-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue-dark);
  border: 1px solid rgba(255, 255, 255, 0.35);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
}

.about-outline-btn:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.about-panel {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 34px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: 0 30px 80px rgba(0, 18, 48, 0.22);
  backdrop-filter: blur(12px);
  animation: aboutFadeUp 0.9s ease 0.12s both;
}

.about-panel::before {
  content: "";
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  pointer-events: none;
}

.about-panel::after {
  content: "";
  position: absolute;
  left: -42px;
  bottom: -42px;
  width: 125px;
  height: 125px;
  border-radius: 50%;
  background: rgba(255, 159, 0, 0.14);
  pointer-events: none;
}

.about-panel-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}

.about-panel-head span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.about-panel-head i {
  height: 1px;
  flex: 1;
  background: rgba(255, 255, 255, 0.18);
}

.about-main-card {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #ffffff;
  border-radius: 24px;
  padding: 22px;
  box-shadow: 0 20px 50px rgba(0, 18, 48, 0.18);
  margin-bottom: 14px;
}

.about-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 500;
  flex: 0 0 auto;
}

.about-main-card h3 {
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--blue-dark);
  margin: 0 0 8px;
}

.about-main-card p {
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  color: var(--muted);
  margin: 0;
}

.about-card-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.about-info-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 16px 40px rgba(0, 18, 48, 0.14);
  transition: 0.25s ease;
}

.about-info-card:hover {
  transform: translateY(-5px);
}

.about-info-card strong {
  display: block;
  font-size: 26px;
  line-height: 1;
  font-weight: 500;
  color: var(--blue-dark);
  margin-bottom: 10px;
}

.about-info-card span {
  display: block;
  font-size: 13px;
  line-height: 1.5;
  font-weight: 400;
  color: var(--muted);
}

.orange-card {
  background: linear-gradient(135deg, #ffb22e, #f47c00);
}

.orange-card strong,
.orange-card span {
  color: #ffffff;
}

@keyframes aboutFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 991px) {
  .about-orrish-section {
    padding: 78px 0;
  }

  .about-orrish-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
}

@media (max-width: 575px) {
  .about-orrish-section {
    padding: 62px 0;
  }

  .about-title {
    font-size: 38px;
    letter-spacing: -0.03em;
  }

  .about-lead,
  .about-text {
    font-size: 15px;
  }

  .about-actions .btn-main,
  .about-actions .about-outline-btn {
    width: 100%;
  }

  .about-panel {
    padding: 18px;
    border-radius: 24px;
  }

  .about-main-card {
    flex-direction: column;
    border-radius: 20px;
    padding: 18px;
  }

  .about-main-card h3 {
    font-size: 24px;
  }

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

  .about-info-card {
    border-radius: 18px;
    padding: 18px;
  }
}

/* ================= ORRISH LOAN SHOWCASE ================= */

.orrish-loan-showcase {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 82% 16%, rgba(0, 111, 201, 0.10), transparent 28%),
    radial-gradient(circle at 14% 86%, rgba(255, 159, 0, 0.10), transparent 26%),
    #ffffff;
}

.loan-showcase-box {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 111, 201, 0.10);
  border-radius: 34px;
  padding: 42px;
  box-shadow: 0 30px 90px rgba(0, 60, 158, 0.10);
}

.loan-showcase-box::before {
  content: "";
  position: absolute;
  top: -90px;
  right: -90px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(0, 111, 201, 0.08);
  pointer-events: none;
}

.loan-showcase-box::after {
  content: "";
  position: absolute;
  left: 48%;
  top: -28px;
  width: 18px;
  height: 58px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--orange), var(--blue));
  opacity: 0.55;
  pointer-events: none;
}

.loan-showcase-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 30px;
  align-items: end;
  margin-bottom: 34px;
}

.loan-section-tag {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 13px;
  border-radius: 999px;
  background: rgba(255, 159, 0, 0.12);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 14px;
}

.loan-showcase-head h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.04em;
  font-weight: 500;
  color: #111217;
  margin: 0;
}

.loan-showcase-head p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
}

.loan-card-track {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.loan-product-card {
  position: relative;
  overflow: hidden;
  border-radius: 24px;
  min-height: 350px;
  padding: 22px;
  background: #ffffff;
  border: 1px solid rgba(0, 111, 201, 0.14);
  box-shadow: 0 20px 55px rgba(0, 60, 158, 0.08);
  transition: 0.3s ease;
}

.loan-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 75px rgba(0, 60, 158, 0.14);
}

.loan-product-card.featured {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-color: transparent;
}

.loan-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.loan-product-card h3 {
  font-size: 22px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 500;
  color: var(--blue-dark);
  margin: 0 0 8px;
}

.loan-product-card span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
}

.loan-product-card p {
  max-width: 320px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  margin: 0 0 18px;
}

.loan-product-card.featured h3,
.loan-product-card.featured span,
.loan-product-card.featured p {
  color: #ffffff;
}

.loan-product-card.featured span,
.loan-product-card.featured p {
  opacity: 0.78;
}

.loan-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  line-height: 1;
  flex: 0 0 auto;
  transition: 0.25s ease;
}

.loan-arrow:hover {
  background: #111217;
  color: #ffffff;
  transform: rotate(10deg);
}

.loan-image {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  height: 150px;
  border-radius: 18px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 159, 0, 0.10), rgba(0, 111, 201, 0.10)),
    #f4f8fc;
}

.loan-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
  display: block;
  transition: 0.35s ease;
}

.loan-product-card:hover .loan-image img {
  transform: scale(1.06);
}

.loan-slider-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 28px;
}

.loan-slider-dots button {
  width: 7px;
  height: 7px;
  border: 0;
  border-radius: 999px;
  background: rgba(0, 60, 158, 0.25);
  padding: 0;
  transition: 0.25s ease;
}

.loan-slider-dots button.active {
  width: 24px;
  background: var(--orange);
}

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

@media (max-width: 991px) {
  .orrish-loan-showcase {
    padding: 80px 0;
  }

  .loan-showcase-box {
    padding: 28px;
    border-radius: 28px;
  }

  .loan-showcase-head {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .loan-card-track {
    grid-template-columns: 1fr;
  }

  .loan-product-card {
    min-height: 330px;
  }
}

@media (max-width: 575px) {
  .orrish-loan-showcase {
    padding: 62px 0;
  }

  .loan-showcase-box {
    padding: 18px;
    border-radius: 24px;
  }

  .loan-showcase-head h2 {
    font-size: 36px;
    letter-spacing: -0.035em;
  }

  .loan-showcase-head p {
    font-size: 14px;
  }

  .loan-product-card {
    min-height: 340px;
    border-radius: 20px;
    padding: 18px;
  }

  .loan-product-card h3 {
    font-size: 20px;
  }

  .loan-image {
    left: 14px;
    right: 14px;
    bottom: 14px;
  }
}

/* ================= ORRISH EXPERIENCE SECTION - IMPROVED ================= */

.orrish-experience-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 82% 14%, rgba(0, 111, 201, 0.10), transparent 30%),
    radial-gradient(circle at 12% 86%, rgba(255, 159, 0, 0.10), transparent 28%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

.orrish-experience-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 111, 201, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 111, 201, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.orrish-exp-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 58px;
  align-items: center;
  margin-bottom: 70px;
}

.orrish-exp-content {
  animation: expFadeUp 0.8s ease both;
}

.orrish-exp-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 159, 0, 0.12);
  border: 1px solid rgba(255, 159, 0, 0.18);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 22px;
}

.orrish-exp-tag span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 159, 0, 0.14);
}

.orrish-exp-content h2 {
  max-width: 680px;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #111217;
  margin: 0 0 22px;
}

.orrish-exp-content h2 span {
  color: var(--blue-dark);
  font-weight: 500;
}

.orrish-exp-content > p {
  max-width: 650px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0 0 28px;
}

.orrish-exp-note {
  max-width: 620px;
  position: relative;
  background: linear-gradient(135deg, #f2fff0, #eaf7ff);
  border: 1px solid rgba(0, 111, 201, 0.08);
  border-radius: 26px;
  padding: 26px 28px;
  box-shadow: 0 24px 70px rgba(0, 60, 158, 0.08);
}

.quote-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--blue-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  line-height: 1;
  margin-bottom: 14px;
}

.orrish-exp-note p {
  color: #31412c;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

/* ================= VISUAL COLLAGE ================= */

.orrish-exp-visual {
  position: relative;
  min-height: 540px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  grid-template-rows: 175px 165px 155px;
  gap: 16px;
  animation: expFadeUp 0.9s ease 0.1s both;
}

.exp-card {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  box-shadow: 0 24px 70px rgba(0, 60, 158, 0.10);
}

.image-card {
  background: #f3f7fb;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.45s ease;
}

.image-card:hover img {
  transform: scale(1.05);
}

.main-image {
  grid-row: 1 / 3;
}

.small-image {
  grid-column: 2;
  grid-row: 2 / 4;
}

.customer-card {
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mini-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-weight: 500;
}

.customer-card strong {
  color: #ffffff;
  font-size: 34px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 8px;
}

.customer-card span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 400;
}

.rating-card {
  background: #ffffff;
  border: 1px solid rgba(0, 111, 201, 0.10);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rating-logo {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange), var(--blue));
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  margin-bottom: 12px;
}

.rating-card strong {
  color: var(--blue-dark);
  font-size: 28px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 6px;
}

.rating-card span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 400;
}

.amount-card {
  position: absolute;
  left: 39%;
  bottom: 36px;
  min-width: 190px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: #ffffff;
  border-radius: 24px;
  padding: 20px;
  box-shadow: 0 24px 70px rgba(0, 60, 158, 0.22);
  animation: softFloat 4s ease-in-out infinite;
}

.amount-card span {
  display: block;
  color: #ffcf7a;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 8px;
}

.amount-card strong {
  display: block;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 8px;
}

.amount-card small {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 400;
}

/* ================= FEATURE CARDS - FIXED ================= */

.orrish-feature-list {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 20px;
}

.orrish-feature-item {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  background: #ffffff;
  border: 1px solid rgba(0, 111, 201, 0.10);
  border-radius: 28px;
  padding: 22px;
  box-shadow: 0 20px 55px rgba(0, 60, 158, 0.08);
  transition: 0.28s ease;
}

.orrish-feature-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 75px rgba(0, 60, 158, 0.13);
}

.orrish-feature-item::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 159, 0, 0.10);
  pointer-events: none;
}

.feature-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
}

.feature-count {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: rgba(255, 159, 0, 0.14);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 500;
  flex: 0 0 auto;
}

.feature-top span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(0, 111, 201, 0.08);
  color: var(--blue-dark);
  font-size: 12px;
  line-height: 1.4;
  font-weight: 500;
}

.orrish-feature-item h3 {
  color: #111217;
  font-size: 22px;
  line-height: 1.12;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0 0 14px;
}

.orrish-feature-item p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  font-weight: 400;
  margin: 0;
}

.orrish-feature-item.active {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-color: transparent;
}

.orrish-feature-item.active::after {
  background: rgba(255, 255, 255, 0.10);
}

.orrish-feature-item.active .feature-count {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

.orrish-feature-item.active .feature-top span {
  background: rgba(255, 159, 0, 0.22);
  color: #ffcf7a;
}

.orrish-feature-item.active h3,
.orrish-feature-item.active p {
  color: #ffffff;
}

.orrish-feature-item.active p {
  opacity: 0.78;
}

@keyframes expFadeUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

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

@media (max-width: 1199px) {
  .orrish-feature-list {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 991px) {
  .orrish-experience-section {
    padding: 80px 0;
  }

  .orrish-exp-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .orrish-exp-visual {
    min-height: 500px;
  }
}

@media (max-width: 767px) {
  .orrish-feature-list {
    grid-template-columns: 1fr;
    margin-top: 44px;
  }

  .orrish-feature-item {
    min-height: auto;
    border-radius: 22px;
  }
}

@media (max-width: 575px) {
  .orrish-experience-section {
    padding: 62px 0;
  }

  .orrish-exp-content h2 {
    font-size: 38px;
    letter-spacing: -0.035em;
  }

  .orrish-exp-content > p,
  .orrish-exp-note p {
    font-size: 15px;
  }

  .orrish-exp-visual {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }

  .main-image,
  .small-image {
    grid-column: auto;
    grid-row: auto;
    min-height: 240px;
  }

  .customer-card,
  .rating-card {
    min-height: 150px;
  }

  .amount-card {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    animation: none;
  }

  .feature-top {
    margin-bottom: 22px;
  }

  .orrish-feature-item h3 {
    font-size: 22px;
  }
}

/* ================= FAQ SECTION ================= */

.orrish-faq-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background:
    radial-gradient(circle at 82% 18%, rgba(0, 111, 201, 0.08), transparent 30%),
    radial-gradient(circle at 16% 86%, rgba(255, 159, 0, 0.08), transparent 28%),
    #ffffff;
}

.orrish-faq-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 111, 201, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 111, 201, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.orrish-faq-heading {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.orrish-faq-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 159, 0, 0.12);
  border: 1px solid rgba(255, 159, 0, 0.18);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.orrish-faq-heading h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #111217;
  margin: 0 0 16px;
}

.orrish-faq-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
}

.orrish-faq-wrap {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.orrish-faq-col {
  display: grid;
  gap: 16px;
  align-content: start;
}

.faq-box {
  background: #edf5ff;
  border: 1px solid rgba(0, 111, 201, 0.08);
  border-radius: 14px;
  overflow: hidden;
  transition: 0.25s ease;
}

.faq-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 60, 158, 0.08);
}

.faq-btn {
  width: 100%;
  border: 0;
  background: transparent;
  min-height: 66px;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 1fr 24px;
  align-items: center;
  gap: 14px;
  text-align: left;
  cursor: pointer;
}

.faq-btn span {
  color: #111217;
  font-size: 16px;
  line-height: 1.4;
  font-weight: 500;
}

.faq-btn b {
  color: #111217;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  text-align: center;
}

.faq-content {
  display: none;
  padding: 0 22px 22px;
}

.faq-content p {
  max-width: 620px;
  color: #4f5664;
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  margin: 0;
}

.faq-box.active {
  background: #edf5ff;
}

.faq-box.active .faq-content {
  display: block;
}

.faq-box.active .faq-btn b {
  color: var(--orange-dark);
}

.faq-help-card {
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin: 28px auto 0;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 18px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 24px 60px rgba(0, 60, 158, 0.16);
}

.faq-help-card span {
  display: block;
  color: #ffcf7a;
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 6px;
}

.faq-help-card strong {
  display: block;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-weight: 500;
}

.faq-help-links {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.faq-help-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
}

.faq-help-links a:hover {
  background: var(--orange);
  color: #ffffff;
}

@media (max-width: 991px) {
  .orrish-faq-section {
    padding: 80px 0;
  }

  .orrish-faq-wrap {
    grid-template-columns: 1fr;
  }

  .faq-help-card {
    align-items: flex-start;
    flex-direction: column;
  }

  .faq-help-links {
    justify-content: flex-start;
  }
}

@media (max-width: 575px) {
  .orrish-faq-section {
    padding: 62px 0;
  }

  .orrish-faq-heading {
    text-align: left;
    margin-bottom: 34px;
  }

  .orrish-faq-heading h2 {
    font-size: 38px;
    letter-spacing: -0.035em;
  }

  .orrish-faq-heading p {
    font-size: 15px;
  }

  .faq-btn {
    padding: 17px 18px;
  }

  .faq-btn span {
    font-size: 15px;
  }

  .faq-content {
    padding: 0 18px 20px;
  }

  .faq-help-card {
    border-radius: 16px;
    padding: 20px;
  }

  .faq-help-links a {
    width: 100%;
    justify-content: center;
  }
}

/* ================= CONTACT SUPPORT SECTION ================= */

.orrish-contact-section {
  position: relative;
  overflow: hidden;
  padding: 105px 0;
  background:
    radial-gradient(circle at 86% 14%, rgba(0, 111, 201, 0.08), transparent 30%),
    radial-gradient(circle at 12% 88%, rgba(255, 159, 0, 0.09), transparent 28%),
    #ffffff;
}

.orrish-contact-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0, 111, 201, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 111, 201, 0.022) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.orrish-contact-head {
  position: relative;
  z-index: 2;
  max-width: 790px;
  text-align: center;
  margin: 0 auto 58px;
}

.orrish-contact-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(255, 159, 0, 0.12);
  border: 1px solid rgba(255, 159, 0, 0.18);
  color: var(--orange-dark);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 18px;
}

.orrish-contact-head h2 {
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 500;
  color: #111217;
  margin: 0 0 16px;
}

.orrish-contact-head h2 span {
  color: var(--blue-dark);
  font-weight: 500;
}

.orrish-contact-head p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
  font-weight: 400;
  margin: 0;
}

.orrish-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 28px;
  align-items: stretch;
}

.orrish-contact-info {
  display: grid;
  gap: 16px;
}

.contact-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-info-card {
  position: relative;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(0, 111, 201, 0.10);
  border-radius: 26px;
  padding: 24px;
  box-shadow: 0 20px 55px rgba(0, 60, 158, 0.08);
}

.contact-info-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(255, 159, 0, 0.10);
  pointer-events: none;
}

.main-info-card {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  min-height: 160px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.main-info-card::after {
  background: rgba(255, 255, 255, 0.10);
}

.contact-info-card span {
  display: block;
  color: var(--orange-dark);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 9px;
}

.main-info-card span {
  color: #ffcf7a;
}

.contact-info-card h3 {
  position: relative;
  z-index: 2;
  color: #111217;
  font-size: 26px;
  line-height: 1.18;
  letter-spacing: -0.025em;
  font-weight: 500;
  margin: 0;
}

.main-info-card h3 {
  color: #ffffff;
}

.contact-icon {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: rgba(255, 159, 0, 0.14);
  color: var(--orange-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-bottom: 18px;
}

.contact-info-card a {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 500;
  word-break: break-word;
}

.contact-info-card a:hover {
  color: var(--orange-dark);
}

.contact-support-card {
  position: relative;
  overflow: hidden;
  background: #f4f9ff;
  border: 1px solid rgba(0, 111, 201, 0.10);
  border-radius: 30px;
  padding: 30px;
  box-shadow: 0 20px 55px rgba(0, 60, 158, 0.07);
}

.contact-support-card::before {
  content: "";
  position: absolute;
  right: -80px;
  top: -80px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(0, 111, 201, 0.08);
  pointer-events: none;
}

.contact-support-card > span {
  display: block;
  color: var(--orange-dark);
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 12px;
}

.contact-support-card h3 {
  max-width: 440px;
  color: #111217;
  font-size: 30px;
  line-height: 1.1;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 16px;
}

.contact-support-card p {
  max-width: 520px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
  margin: 0 0 22px;
}

.contact-support-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.contact-support-card li {
  position: relative;
  color: #313744;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 400;
  padding-left: 30px;
}

.contact-support-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: var(--orange);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Form */

.orrish-contact-form-card {
  background: #ffffff;
  border: 1px solid rgba(0, 111, 201, 0.10);
  border-radius: 32px;
  padding: 30px;
  box-shadow: 0 30px 90px rgba(0, 60, 158, 0.11);
}

.orrish-contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.form-group {
  display: grid;
  gap: 8px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  color: #111217;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid rgba(0, 111, 201, 0.12);
  background: #f7fbff;
  border-radius: 16px;
  min-height: 54px;
  padding: 0 16px;
  outline: none;
  color: #111217;
  font-size: 14px;
  font-weight: 400;
  transition: 0.22s ease;
}

.form-group textarea {
  min-height: 150px;
  padding: 15px 16px;
  resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #9298a5;
}

.form-group input:focus,
.form-group textarea:focus {
  background: #ffffff;
  border-color: rgba(255, 159, 0, 0.75);
  box-shadow: 0 0 0 4px rgba(255, 159, 0, 0.12);
}

.form-note {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
  font-weight: 400;
  margin: 0;
}

.contact-submit-btn {
  grid-column: 1 / -1;
  border: 0;
  min-height: 54px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  color: #ffffff;
  font-size: 15px;
  font-weight: 500;
  box-shadow: 0 16px 34px rgba(244, 124, 0, 0.24);
  transition: 0.25s ease;
}

.contact-submit-btn:hover {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark));
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .orrish-contact-section {
    padding: 80px 0;
  }

  .orrish-contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .orrish-contact-section {
    padding: 62px 0;
  }

  .orrish-contact-head {
    text-align: left;
    margin-bottom: 36px;
  }

  .orrish-contact-head h2 {
    font-size: 38px;
    letter-spacing: -0.035em;
  }

  .orrish-contact-head p {
    font-size: 15px;
  }

  .contact-info-row {
    grid-template-columns: 1fr;
  }

  .contact-info-card,
  .contact-support-card,
  .orrish-contact-form-card {
    border-radius: 22px;
  }

  .contact-support-card h3 {
    font-size: 26px;
  }

  .orrish-contact-form {
    grid-template-columns: 1fr;
  }

  .orrish-contact-form-card {
    padding: 20px;
  }
}

/* ================= DOWNLOAD APP SECTION ================= */

.orrish-app-section {
  position: relative;
  overflow: hidden;
  padding: 100px 0;
  background: #ffffff;
}

.orrish-app-container {
  width: min(100% - 32px, 1000px);
  margin-inline: auto;
}

.orrish-app-card {
  position: relative;
  overflow: hidden;
  min-height: 820px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 0%, rgba(255, 255, 255, 0.13), transparent 24%),
    radial-gradient(circle at 0% 100%, rgba(255, 255, 255, 0.10), transparent 26%),
    linear-gradient(135deg, var(--blue-dark), #3477f6);
  box-shadow: 0 34px 90px rgba(0, 60, 158, 0.18);
  padding: 54px 42px 0;
  text-align: center;
}

.app-bg-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.app-circle-one {
  width: 270px;
  height: 270px;
  right: -70px;
  top: -80px;
  background: rgba(255, 255, 255, 0.10);
}

.app-circle-two {
  width: 360px;
  height: 360px;
  left: -180px;
  bottom: -180px;
  background: rgba(255, 255, 255, 0.08);
}

.orrish-app-content {
  position: relative;
  z-index: 3;
  max-width: 680px;
  margin-inline: auto;
}

.app-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  margin-bottom: 20px;
}

.app-pill span {
  color: #ffcf7a;
  font-size: 14px;
}

.orrish-app-content h2 {
  max-width: 620px;
  margin: 0 auto 16px;
  color: #ffffff;
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1.08;
  letter-spacing: -0.045em;
  font-weight: 500;
}

.orrish-app-content h2 span {
  display: block;
  color: #ffffff;
  font-weight: 500;
}

.orrish-app-content p {
  max-width: 640px;
  margin: 0 auto 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
}

.app-qr-box {
  width: 116px;
  height: 116px;
  margin: 0 auto 14px;
  padding: 8px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(0, 18, 48, 0.18);
}

.app-qr-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.google-play-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 238px;
  padding: 0 22px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 12px;
  transition: 0.25s ease;
}

.google-play-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #ffffff;
  transform: translateY(-2px);
}

.app-apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 205px;
  min-height: 46px;
  margin: 0 auto 18px;
  border-radius: 10px;
  background: #ffffff;
  color: #111217;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: 0.25s ease;
}

.app-apply-btn:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.app-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: #ffffff;
  margin-bottom: 32px;
}

.app-meta div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.app-meta strong {
  color: #ffffff;
  font-size: 14px;
  line-height: 1;
  font-weight: 500;
}

.app-meta i {
  width: 1px;
  height: 24px;
  background: rgba(255, 255, 255, 0.38);
}

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

.download-icon {
  color: #ffffff;
  font-size: 17px;
}

.app-phone-wrap {
  position: absolute;
  left: 50%;
  bottom: -18px;
  z-index: 2;
  width: min(86%, 620px);
  transform: translateX(-50%);
}

.app-phone-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 28px 42px rgba(0, 18, 48, 0.30));
  animation: appPhoneFloat 5s ease-in-out infinite;
}

@keyframes appPhoneFloat {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

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

@media (max-width: 991px) {
  .orrish-app-section {
    padding: 80px 0;
  }

  .orrish-app-card {
    min-height: 680px;
  }

  .app-phone-wrap {
    width: min(92%, 580px);
  }
}

@media (max-width: 575px) {
  .orrish-app-section {
    padding: 62px 0;
  }

  .orrish-app-container {
    width: min(100% - 24px, 1000px);
  }

  .orrish-app-card {
    min-height: 620px;
    border-radius: 24px;
    padding: 38px 18px 0;
  }

  .orrish-app-content h2 {
    font-size: 36px;
    letter-spacing: -0.035em;
  }

  .orrish-app-content p {
    font-size: 15px;
  }

  .google-play-btn,
  .app-apply-btn {
    width: 100%;
    min-width: 0;
  }

  .app-meta {
    flex-direction: column;
    gap: 10px;
  }

  .app-meta i {
    display: none;
  }

  .app-phone-wrap {
    width: 112%;
    bottom: -6px;
  }
}

/* ================= ORRISH FOOTER ================= */

.orrish-footer {
  position: relative;
  overflow: hidden;
  padding: 90px 0 0;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 159, 0, 0.12), transparent 26%),
    radial-gradient(circle at 10% 90%, rgba(255, 255, 255, 0.07), transparent 28%),
    linear-gradient(135deg, #071f45 0%, #073b84 58%, #05275c 100%);
  color: #ffffff;
}

.orrish-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  pointer-events: none;
}

.orrish-footer::after {
  content: "";
  position: absolute;
  right: -160px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.orrish-footer-top {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.95fr 1.35fr;
  gap: 56px;
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.footer-brand-block {
  max-width: 520px;
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  background: #ffffff;
  border-radius: 18px;
  padding: 12px 16px;
  margin-bottom: 24px;
  box-shadow: 0 20px 50px rgba(0, 18, 48, 0.20);
}

.footer-logo img {
  width: 112px;
  height: auto;
  display: block;
  object-fit: contain;
}

.footer-brand-block h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.15;
  letter-spacing: -0.035em;
  font-weight: 500;
  margin: 0 0 16px;
}

.footer-brand-block p {
  color: rgba(255, 255, 255, 0.76);
  font-size: 15px;
  line-height: 1.8;
  font-weight: 400;
  margin: 0 0 24px;
}

.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 15px;
  border-radius: 999px;
  background: rgba(255, 159, 0, 0.14);
  border: 1px solid rgba(255, 159, 0, 0.24);
  color: #ffcf7a;
  font-size: 13px;
  font-weight: 500;
}

.footer-badge span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 5px rgba(255, 159, 0, 0.16);
}

.footer-links-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 26px;
}

.footer-link-col h4 {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 500;
  margin: 0 0 18px;
}

.footer-link-col a {
  display: block;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin-bottom: 11px;
  transition: 0.22s ease;
}

.footer-link-col a:hover {
  color: #ffcf7a;
  transform: translateX(4px);
}

.orrish-footer-contact {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1fr 0.8fr;
  gap: 24px;
  padding: 34px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.orrish-footer-contact > div {
  min-width: 0;
}

.orrish-footer-contact span {
  display: block;
  color: #ffcf7a;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 8px;
}

.orrish-footer-contact strong {
  display: block;
  color: #ffffff;
  font-size: 17px;
  line-height: 1.5;
  font-weight: 500;
}

.orrish-footer-contact p,
.orrish-footer-contact a {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
  line-height: 1.7;
  font-weight: 400;
  text-decoration: none;
  margin: 0;
  word-break: break-word;
}

.orrish-footer-contact a:hover {
  color: #ffffff;
}

.orrish-footer-bottom {
  position: relative;
  z-index: 2;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}

.orrish-footer-bottom p {
  color: rgba(255, 255, 255, 0.70);
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.70);
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
  transition: 0.22s ease;
}

.footer-bottom-links a:hover {
  color: #ffcf7a;
}

/* ================= FOOTER RESPONSIVE ================= */

@media (max-width: 1199px) {
  .orrish-footer-top {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-brand-block {
    max-width: 760px;
  }
}

@media (max-width: 991px) {
  .orrish-footer {
    padding-top: 75px;
  }

  .footer-links-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .orrish-footer-contact {
    grid-template-columns: repeat(2, 1fr);
  }

  .orrish-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    padding: 22px 0;
  }
}

@media (max-width: 575px) {
  .orrish-footer {
    padding-top: 62px;
  }

  .orrish-footer-top {
    gap: 34px;
    padding-bottom: 34px;
  }

  .footer-logo {
    border-radius: 16px;
  }

  .footer-logo img {
    width: 96px;
  }

  .footer-brand-block h3 {
    font-size: 26px;
  }

  .footer-links-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .orrish-footer-contact {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-bottom-links {
    gap: 12px;
  }
}

/* ================= FIXED APP CTA ================= */

.orrish-fixed-app-cta {
  position: fixed;
  right: 28px;
  bottom: 26px;
  z-index: 9999;
  width: 390px;
  min-height: 72px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: 18px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 24px 70px rgba(0, 60, 158, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.14);
  animation: fixedAppSlideUp 0.6s ease both;
}

.fixed-app-content {
  flex: 1;
  min-width: 0;
}

.fixed-app-content strong {
  display: block;
  color: #ffffff;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 500;
  margin-bottom: 4px;
}

.fixed-app-content span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  line-height: 1.3;
  font-weight: 400;
}

.fixed-app-btn {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--blue-dark);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: 0.25s ease;
}

.fixed-app-btn::before {
  content: "⇩";
  margin-right: 7px;
  color: var(--blue);
  font-size: 15px;
}

.fixed-app-btn:hover {
  background: var(--orange);
  color: #ffffff;
  transform: translateY(-2px);
}

.fixed-app-btn:hover::before {
  color: #ffffff;
}

.fixed-app-close {
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 22px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: 0.22s ease;
}

.fixed-app-close:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.orrish-fixed-app-cta.hide {
  display: none;
}

@keyframes fixedAppSlideUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Hide on mobile */
@media (max-width: 767px) {
  .orrish-fixed-app-cta {
    display: none;
  }
}
/* Realtime validation helpers */
.form-alert,
.apply-alert,
.enach-alert {
  display: none;
}
.form-alert.show,
.apply-alert.show,
.enach-alert.show {
  display: block;
}
.form-group small,
.apply-form-group small,
.enach-form-group small {
  display: none;
  color: #dc2626;
  font-size: 12px;
  line-height: 1.4;
}
.form-group.has-error small,
.apply-form-group.has-error small,
.enach-form-group.has-error small {
  display: block;
}
.form-group.has-error input,
.form-group.has-error textarea,
.apply-form-group.has-error input,
.apply-form-group.has-error select,
.apply-form-group.has-error textarea,
.enach-form-group.has-error input,
.enach-form-group.has-error select,
.enach-form-group.has-error textarea {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 4px rgba(220, 38, 38, 0.10) !important;
}
.form-alert {
  grid-column: 1 / -1;
  border-radius: 14px;
  padding: 12px 14px;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 14px;
}
.form-alert.success-alert {
  background: #ecfdf5;
  color: #047857;
  border: 1px solid rgba(4, 120, 87, 0.16);
}
.form-alert.error-alert {
  background: #fef2f2;
  color: #b91c1c;
  border: 1px solid rgba(185, 28, 28, 0.16);
}
.faq-btn, .faq-btn span, .faq-btn b { touch-action: manipulation; }
