    /* Page-specific styles - common.css handles tokens/header/utilities */

    /* ================================================
       HERO — full-viewport gradient + carousel
    ================================================ */
    .hero-wrap {
      position: relative;
      min-height: 100vh;
      background: linear-gradient(135deg,
          var(--db) 0%,
          #1a4a6e 55%,
          #0d5f8a 100%);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* Decorative circles */
    .hero-wrap .deco-circle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-wrap .dc1 {
      width: 520px;
      height: 520px;
      top: -180px;
      right: -140px;
      background: radial-gradient(circle,
          rgba(14, 165, 233, 0.18),
          transparent 70%);
    }

    .hero-wrap .dc2 {
      width: 380px;
      height: 380px;
      bottom: -120px;
      left: -100px;
      background: radial-gradient(circle,
          rgba(245, 158, 11, 0.14),
          transparent 70%);
    }

    .hero-wrap .dc3 {
      width: 200px;
      height: 200px;
      top: 50%;
      left: 38%;
      background: radial-gradient(circle,
          rgba(255, 255, 255, 0.06),
          transparent 70%);
    }

    /* Grid dot pattern */
    .hero-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px,
          transparent 1px);
      background-size: 36px 36px;
      pointer-events: none;
    }

    .hero-inner {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 120px 0 60px;
      position: relative;
      z-index: 2;
    }

    /* Badge pill in hero */
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 158, 11, 0.15);
      color: var(--gold);
      border: 1px solid rgba(245, 158, 11, 0.35);
      border-radius: 50px;
      padding: 7px 18px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .hero-pill .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4);
      }
    }

    .hero-title {
      font-family: "Raleway", sans-serif;
      font-size: 58px;
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .hero-title .accent {
      color: var(--gold);
    }

    .hero-title .line2 {
      color: rgba(255, 255, 255, 0.7);
      font-weight: 400;
      font-size: 46px;
    }

    .hero-subtitle {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 36px;
    }

    /* Hero floating stat cards */
    .hero-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 20px;
    }

    .h-stat {
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 14px;
      padding: 18px 20px;
      backdrop-filter: blur(8px);
      transition: 0.3s;
    }

    .h-stat:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-4px);
    }

    .h-stat h3 {
      font-size: 26px;
      font-weight: 800;
      color: var(--gold);
      margin: 0;
      font-family: "Raleway", sans-serif;
    }

    .h-stat p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.65);
      margin: 4px 0 0;
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, 0.5);
      font-size: 11px;
      letter-spacing: 1px;
    }

    .scroll-hint .mouse {
      width: 22px;
      height: 36px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 12px;
      display: flex;
      justify-content: center;
      padding-top: 5px;
    }

    .scroll-hint .wheel {
      width: 3px;
      height: 7px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 2px;
      animation: scroll-wheel 1.6s ease infinite;
    }

    @keyframes scroll-wheel {
      0% {
        opacity: 1;
        transform: translateY(0);
      }

      80% {
        opacity: 0;
        transform: translateY(10px);
      }

      100% {
        opacity: 0;
      }
    }

    /* Trust bar */
    .trust-bar {
      background: rgba(255, 255, 255, 0.06);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 18px 0;
      position: relative;
      z-index: 2;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      font-weight: 600;
    }

    .trust-item i {
      color: var(--gold);
      font-size: 18px;
    }

    /* ================================================
       HERO — full-viewport gradient + carousel
    ================================================ */
    .hero-wrap {
      position: relative;
      min-height: 100vh;
      background: linear-gradient(135deg,
          var(--db) 0%,
          #1a4a6e 55%,
          #0d5f8a 100%);
      overflow: hidden;
      display: flex;
      flex-direction: column;
    }

    /* Decorative circles */
    .hero-wrap .deco-circle {
      position: absolute;
      border-radius: 50%;
      pointer-events: none;
    }

    .hero-wrap .dc1 {
      width: 520px;
      height: 520px;
      top: -180px;
      right: -140px;
      background: radial-gradient(circle,
          rgba(14, 165, 233, 0.18),
          transparent 70%);
    }

    .hero-wrap .dc2 {
      width: 380px;
      height: 380px;
      bottom: -120px;
      left: -100px;
      background: radial-gradient(circle,
          rgba(245, 158, 11, 0.14),
          transparent 70%);
    }

    .hero-wrap .dc3 {
      width: 200px;
      height: 200px;
      top: 50%;
      left: 38%;
      background: radial-gradient(circle,
          rgba(255, 255, 255, 0.06),
          transparent 70%);
    }

    /* Grid dot pattern */
    .hero-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px,
          transparent 1px);
      background-size: 36px 36px;
      pointer-events: none;
    }

    .hero-inner {
      flex: 1;
      display: flex;
      align-items: center;
      padding: 120px 0 60px;
      position: relative;
      z-index: 2;
    }

    /* Badge pill in hero */
    .hero-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(245, 158, 11, 0.15);
      color: var(--gold);
      border: 1px solid rgba(245, 158, 11, 0.35);
      border-radius: 50px;
      padding: 7px 18px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }

    .hero-pill .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--gold);
      animation: pulse 1.8s infinite;
    }

    @keyframes pulse {

      0%,
      100% {
        opacity: 1;
        transform: scale(1);
      }

      50% {
        opacity: 0.5;
        transform: scale(1.4);
      }
    }

    .hero-title {
      font-family: "Raleway", sans-serif;
      font-size: 58px;
      font-weight: 900;
      color: #fff;
      line-height: 1.1;
      margin-bottom: 20px;
    }

    .hero-title .accent {
      color: var(--gold);
    }

    .hero-title .line2 {
      color: rgba(255, 255, 255, 0.7);
      font-weight: 400;
      font-size: 46px;
    }

    .hero-subtitle {
      font-size: 17px;
      color: rgba(255, 255, 255, 0.75);
      line-height: 1.75;
      max-width: 520px;
      margin-bottom: 36px;
    }

    /* Hero floating stat cards */
    .hero-stat-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
      margin-top: 20px;
    }

    .h-stat {
      background: rgba(255, 255, 255, 0.09);
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 14px;
      padding: 18px 20px;
      backdrop-filter: blur(8px);
      transition: 0.3s;
    }

    .h-stat:hover {
      background: rgba(255, 255, 255, 0.14);
      transform: translateY(-4px);
    }

    .h-stat h3 {
      font-size: 26px;
      font-weight: 800;
      color: var(--gold);
      margin: 0;
      font-family: "Raleway", sans-serif;
    }

    .h-stat p {
      font-size: 12px;
      color: rgba(255, 255, 255, 0.65);
      margin: 4px 0 0;
    }

    /* Scroll indicator */
    .scroll-hint {
      position: absolute;
      bottom: 30px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      color: rgba(255, 255, 255, 0.5);
      font-size: 11px;
      letter-spacing: 1px;
    }

    .scroll-hint .mouse {
      width: 22px;
      height: 36px;
      border: 2px solid rgba(255, 255, 255, 0.3);
      border-radius: 12px;
      display: flex;
      justify-content: center;
      padding-top: 5px;
    }

    .scroll-hint .wheel {
      width: 3px;
      height: 7px;
      background: rgba(255, 255, 255, 0.5);
      border-radius: 2px;
      animation: scroll-wheel 1.6s ease infinite;
    }

    @keyframes scroll-wheel {
      0% {
        opacity: 1;
        transform: translateY(0);
      }

      80% {
        opacity: 0;
        transform: translateY(10px);
      }

      100% {
        opacity: 0;
      }
    }

    /* Trust bar */
    .trust-bar {
      background: rgba(255, 255, 255, 0.06);
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding: 18px 0;
      position: relative;
      z-index: 2;
    }

    .trust-item {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255, 255, 255, 0.7);
      font-size: 13px;
      font-weight: 600;
    }

    .trust-item i {
      color: var(--gold);
      font-size: 18px;
    }

    /* ================================================
       ABOUT SECTION
    ================================================ */
    .about-section {
      padding: 90px 0;
      background: #fff;
    }

    .about-image-box {
      position: relative;
    }

    .about-image-box img {
      border-radius: 20px;
      width: 100%;
      object-fit: cover;
    }

    /* Decorative corner accent */
    .about-image-box::before {
      content: "";
      position: absolute;
      top: -16px;
      left: -16px;
      width: 120px;
      height: 120px;
      border-top: 4px solid var(--gold);
      border-left: 4px solid var(--gold);
      border-radius: 8px 0 0 0;
      z-index: 0;
    }

    .about-image-box::after {
      content: "";
      position: absolute;
      bottom: -16px;
      right: -16px;
      width: 120px;
      height: 120px;
      border-bottom: 4px solid var(--db);
      border-right: 4px solid var(--db);
      border-radius: 0 0 8px 0;
    }

    /* Floating stats badge */
    .about-stat-float {
      position: absolute;
      bottom: 30px;
      left: -30px;
      background: #fff;
      border-radius: 14px;
      box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
      padding: 18px 22px;
      display: flex;
      flex-direction: column;
      gap: 12px;
      min-width: 190px;
      z-index: 3;
    }

    .asf-item {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .asf-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: linear-gradient(135deg, var(--db), var(--sb));
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 16px;
      flex-shrink: 0;
    }

    .asf-item h4 {
      font-size: 18px;
      font-weight: 800;
      color: var(--db);
      margin: 0;
    }

    .asf-item p {
      font-size: 11px;
      color: var(--muted);
      margin: 0;
    }

    .about-feature-list {
      list-style: none;
      padding: 0;
      margin: 24px 0;
    }

    .about-feature-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 12px 16px;
      background: var(--light);
      border-radius: 10px;
      margin-bottom: 10px;
      border-left: 3px solid var(--db);
      transition: 0.3s;
    }

    .about-feature-list li:hover {
      border-left-color: var(--gold);
      transform: translateX(4px);
    }

    .about-feature-list li i {
      color: var(--db);
      font-size: 18px;
      flex-shrink: 0;
      margin-top: 1px;
    }

    .about-feature-list li span {
      font-weight: 500;
      color: var(--text);
      font-size: 14px;
    }

    /* ================================================
       SERVICES SECTION
    ================================================ */
    .services-section {
      padding: 90px 0;
      background: var(--light);
    }

    /* Category tabs */
    .svc-tabs {
      display: flex;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-bottom: 40px;
    }

    .svc-tab-btn {
      border: 2px solid rgba(12, 44, 74, 0.15);
      background: transparent;
      color: var(--muted);
      border-radius: 50px;
      padding: 9px 22px;
      font-weight: 600;
      font-size: 13px;
      cursor: pointer;
      transition: 0.3s;
      font-family: "Poppins", sans-serif;
    }

    .svc-tab-btn.active,
    .svc-tab-btn:hover {
      background: var(--db);
      color: #fff;
      border-color: var(--db);
      box-shadow: 0 4px 16px rgba(12, 44, 74, 0.3);
    }

    /* Service card */
    .svc-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 32px 26px;
      height: 100%;
      border: 2px solid transparent;
      transition: 0.35s;
      position: relative;
      overflow: hidden;
    }

    .svc-card::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--db), var(--sb));
      transform: scaleX(0);
      transform-origin: left;
      transition: 0.35s;
    }

    .svc-card:hover::after {
      transform: scaleX(1);
    }

    .svc-card:hover {
      border-color: rgba(12, 44, 74, 0.15);
      box-shadow: 0 20px 50px rgba(12, 44, 74, 0.12);
      transform: translateY(-8px);
    }

    .svc-card .svc-icon {
      width: 60px;
      height: 60px;
      border-radius: 14px;
      background: linear-gradient(135deg, var(--db), #1a4a6e);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 24px;
      color: #fff;
      margin-bottom: 20px;
      transition: 0.35s;
    }

    .svc-card:hover .svc-icon {
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      transform: rotate(8deg) scale(1.1);
    }

    .svc-card h4 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 10px;
    }

    .svc-card p {
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.7;
      margin: 0;
    }

    .svc-card .svc-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--db);
      font-weight: 600;
      font-size: 13px;
      margin-top: 16px;
      text-decoration: none;
      transition: 0.3s;
    }

    .svc-card .svc-link:hover {
      color: var(--sb);
      gap: 10px;
    }

    /* Side panel (left) for services */
    .svc-side-panel {
      padding: 10px 30px 10px 0;
    }

    .svc-points {
      list-style: none;
      padding: 0;
      margin: 20px 0 28px;
    }

    .svc-points li {
      position: relative;
      padding-left: 28px;
      margin-bottom: 14px;
      color: var(--text);
      font-weight: 500;
      font-size: 14px;
    }

    .svc-points li::before {
      content: "\F26A";
      font-family: "bootstrap-icons";
      position: absolute;
      left: 0;
      top: 1px;
      color: var(--db);
      font-size: 16px;
    }

    /* ================================================
       STATS / NUMBERS BAND
    ================================================ */
    .stats-band {
      padding: 70px 0;
      background: var(--db);
    }

    .stat-item {
      text-align: center;
      padding: 20px;
      position: relative;
    }

    .stat-item::after {
      content: "";
      position: absolute;
      right: 0;
      top: 20%;
      height: 60%;
      width: 1px;
      background: rgba(255, 255, 255, 0.12);
    }

    .stat-item:last-child::after {
      display: none;
    }

    .stat-item h2 {
      font-size: 46px;
      font-weight: 900;
      color: var(--gold);
      margin: 0;
      font-family: "Raleway", sans-serif;
    }

    .stat-item p {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      font-weight: 600;
      margin: 6px 0 0;
      text-transform: uppercase;
      letter-spacing: 1px;
    }

    .stat-item i {
      font-size: 32px;
      color: rgba(255, 255, 255, 0.2);
      display: block;
      margin-bottom: 10px;
    }

    /* ================================================
       PROCESS SECTION
    ================================================ */
    .process-section {
      padding: 90px 0;
      background: #fff;
    }

    .process-timeline {
      position: relative;
      margin-top: 50px;
    }

    .process-timeline::before {
      content: "";
      position: absolute;
      top: 38px;
      left: calc(12.5% - 1px);
      width: 75%;
      height: 2px;
      background: linear-gradient(90deg, var(--db), var(--sb));
      z-index: 0;
    }

    @media (max-width: 767px) {
      .process-timeline::before {
        display: none;
      }
    }

    .p-step {
      text-align: center;
      position: relative;
      z-index: 1;
      padding: 0 10px;
    }

    .p-step-num {
      width: 70px;
      height: 70px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid var(--db);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 20px;
      font-size: 22px;
      font-weight: 800;
      color: var(--db);
      font-family: "Raleway", sans-serif;
      box-shadow: 0 0 0 8px var(--light);
      transition: 0.3s;
    }

    .p-step:hover .p-step-num {
      background: var(--db);
      color: #fff;
      box-shadow: 0 0 0 8px rgba(12, 44, 74, 0.1);
    }

    .p-step h5 {
      font-weight: 700;
      color: var(--text);
      font-size: 15px;
      margin-bottom: 8px;
    }

    .p-step p {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.6;
      max-width: 160px;
      margin: 0 auto;
    }

    /* ================================================
       WHY CHOOSE US
    ================================================ */
    .why-section {
      padding: 90px 0;
      background: var(--light);
    }

    .why-card {
      background: #fff;
      border-radius: var(--radius);
      padding: 34px 26px;
      height: 100%;
      text-align: center;
      transition: 0.35s;
      border: 2px solid transparent;
    }

    .why-card:hover {
      border-color: var(--db);
      transform: translateY(-8px);
      box-shadow: 0 20px 50px rgba(12, 44, 74, 0.1);
    }

    .why-card i {
      font-size: 42px;
      color: var(--db);
      display: block;
      margin-bottom: 18px;
      transition: 0.35s;
    }

    .why-card:hover i {
      color: var(--gold);
      transform: scale(1.15);
    }

    .why-card h5 {
      font-weight: 700;
      color: var(--text);
      margin-bottom: 8px;
      font-size: 16px;
    }

    .why-card p {
      color: var(--muted);
      font-size: 13.5px;
      line-height: 1.65;
      margin: 0;
    }

    /* ================================================
       TESTIMONIALS
    ================================================ */
    .testimonials-section {
      padding: 90px 0;
      background: #fff;
    }

    .testi-card {
      background: var(--light);
      border-radius: var(--radius);
      padding: 32px 28px;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: 0.3s;
      border: 2px solid transparent;
    }

    .testi-card:hover {
      border-color: rgba(12, 44, 74, 0.1);
      box-shadow: 0 12px 35px rgba(0, 0, 0, 0.08);
    }

    .testi-card .stars {
      color: #fbbf24;
      font-size: 14px;
      margin-bottom: 16px;
    }

    .testi-card p {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.75;
      font-style: italic;
      flex: 1;
    }

    .testi-card .reviewer {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-top: 20px;
    }

    .testi-card .reviewer img {
      width: 50px;
      height: 50px;
      border-radius: 50%;
      object-fit: cover;
      border: 3px solid #fff;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .testi-card .reviewer h6 {
      font-weight: 700;
      font-size: 14px;
      color: var(--text);
      margin: 0;
    }

    .testi-card .reviewer span {
      font-size: 12px;
      color: var(--muted);
    }

  

    /* ================================================
       CLIENTS STRIP
    ================================================ */
    .clients-strip {
      padding: 50px 0;
      background: var(--light);
      border-top: 1px solid rgba(12, 44, 74, 0.06);
    }

    .clients-scroll-wrap {
      overflow: hidden;
      position: relative;
    }

    .clients-scroll-wrap::before,
    .clients-scroll-wrap::after {
      content: "";
      position: absolute;
      top: 0;
      width: 80px;
      height: 100%;
      z-index: 2;
      pointer-events: none;
    }

    .clients-scroll-wrap::before {
      left: 0;
      background: linear-gradient(to right, var(--light), transparent);
    }

    .clients-scroll-wrap::after {
      right: 0;
      background: linear-gradient(to left, var(--light), transparent);
    }

    .clients-track {
      display: flex;
      gap: 40px;
      align-items: center;
      animation: scrollClients 90s linear infinite;
      width: max-content;
    }

    .clients-track:hover {
      animation-play-state: paused;
    }

    @keyframes scrollClients {
      0% {
        transform: translateX(0);
      }

      100% {
        transform: translateX(-50%);
      }
    }

    .client-logo {
      background: #fff;
      border-radius: 12px;
      padding: 16px 28px;
      box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
      color: var(--db);
      font-weight: 700;
      font-size: 15px;
      white-space: nowrap;
      border: 1px solid rgba(12, 44, 74, 0.07);
      transition: 0.3s;
    }

    .client-logo:hover {
      box-shadow: 0 8px 28px rgba(12, 44, 74, 0.14);
      transform: translateY(-4px);
    }

    /* ================================================
       MODAL
    ================================================ */
    .glass-modal {
      background: rgba(255, 255, 255, 0.97);
      backdrop-filter: blur(20px);
      border-radius: 20px;
      border: none;
      box-shadow: 0 25px 60px rgba(0, 0, 0, 0.18);
    }

    .btn-golden {
      background: linear-gradient(135deg, var(--gold), var(--gold-d));
      border: none;
      color: #fff;
      border-radius: 50px;
      padding: 12px 36px;
      font-weight: 700;
      transition: 0.3s;
    }

    .btn-golden:hover {
      transform: translateY(-2px);
      box-shadow: 0 10px 26px rgba(245, 158, 11, 0.4);
      color: #fff;
    }

    .text-golden {
      color: var(--gold) !important;
    }

    /* ================================================
       RESPONSIVE
    ================================================ */
    @media (max-width: 991px) {
      .hero-title {
        font-size: 38px;
      }

      .hero-title .line2 {
        font-size: 30px;
      }

      .s-heading {
        font-size: 28px;
      }

      .svc-side-panel {
        padding: 0 0 30px;
      }

      .about-stat-float {
        position: static;
        margin-top: 20px;
        flex-direction: row;
        flex-wrap: wrap;
      }

      .process-timeline::before {
        display: none;
      }
    }

    @media (max-width: 767px) {
      .hero-title {
        font-size: 30px;
      }

      .hero-title .line2 {
        font-size: 24px;
      }

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

      .trust-item {
        justify-content: center;
      }
    }

    @media (max-width: 575px) {
      .hero-stat-grid {
        grid-template-columns: 1fr 1fr;
      }
    }
