  :root {
    --primary: #0d2461;
    --primary-light: #1a3a8f;
    --accent: #f5a623;
    --accent-dark: #e09010;
    --blue-text: #1565c0;
    --light-bg: #f4f7fd;
    --text-dark: #1a1a2e;
    --text-muted: #6b7280;
    --success: #2e7d32;
  }

  * {
    box-sizing: border-box;
  }

  body {
    font-family: 'Nunito', sans-serif;
    color: var(--text-dark);
    overflow-x: hidden;
  }

  h1,
  h2,
  h3,
  h4,
  h5 {
    font-family: 'Poppins', sans-serif;
  }

  .container {
    max-width: 1250px;
  }

  /* ── NAVBAR ── */
  .navbar {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, .08);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }

  .navbar-brand {
    max-width: 210px;
  }

  .navbar-brand img {
    width: 100%;
  }

  .navbar-brand .brand-name {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    color: var(--primary);
    line-height: 1.1;
  }

  .navbar-brand .brand-sub {
    font-size: .65rem;
    color: var(--accent);
    font-weight: 600;
    letter-spacing: .04em;
  }

  .navbar-nav .nav-link {
    font-weight: 600;
    font-size: 16px;
    color: #374151;
    padding: 6px 14px !important;
    transition: color .2s;
  }

  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link.active {
    color: var(--accent);
  }

  .navbar-nav .nav-link.active {
    border-bottom: 2px solid var(--accent);
  }

  .btn-book {
    background: var(--primary);
    color: #fff !important;
    border-radius: 35px;
    padding: 11px 24px !important;
    font-weight: 700;
    font-size: 16px;
    transition: background .2s, transform .2s;
  }

  .btn-book:hover {
    background: var(--primary-light);
    transform: translateY(-1px);
  }

  /* ── HERO ── */
  .hero {
    background-image: url('./assets/images/hero-bg.png');
    background-size: cover;
    background-position: center center;
    padding: 60px 0 40px;
    position: relative;
    overflow: hidden;
    min-height: calc(100vh - 90px);
    display: flex;
    align-items: center;
  }

  .hero::before {
    content: '';
    position: absolute;
    right: -80px;
    top: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(245, 166, 35, .12) 0%, transparent 70%);
  }

  .hero-title {
    font-size: clamp(2rem, 4vw, 4rem);
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.15;
  }

  .hero-title .highlight {
    color: var(--primary);
  }

  .hero-subtitle {
    font-size: .97rem;
    color: #4b5563;
    max-width: 400px;
    line-height: 1.7;
  }

  .btn-primary-cta {
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 35px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    text-decoration: none;
  }

  .btn-primary-cta:hover {
    background: var(--primary-light);
    color: #fff;
    transform: translateY(-2px);
  }

  .btn-outline-cta {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 10px;
    padding: 9px 35px;
    font-weight: 700;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    text-decoration: none;
  }

  .btn-outline-cta:hover {
    background: var(--primary);
    color: #fff;
  }

  .hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 24px;
  }

  .hero-badge {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: .78rem;
    font-weight: 700;
    color: #374151;
  }

  .hero-badge i {
    color: var(--primary);
    font-size: .9rem;
  }

  .hero-badge span.label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: .72rem;
  }

  .powered-card {
    background: #fff;
    border-radius: 14px;
    padding: 14px 18px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .1);
    font-size: .78rem;
    color: #555;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    position: absolute;
    right: 20px;
    bottom: 30px;
  }

  .powered-card .pname {
    font-weight: 800;
    color: var(--primary);
    font-size: .82rem;
  }

  .hero-img-wrap {
    position: relative;
  }

  .hero-img-wrap img {
    border-radius: 20px;
    width: 100%;
    /* max-width: 520px; */
    object-fit: cover;
  }

  .brd-2 {
    border-left: 2px solid #fff;
  }

  .brd-3 {
    border-right: 2px solid #f4f7fc;
  }

  .brd-4 {
    padding-top: 30px;
    border: 1px solid var(--primary);
    border-radius: 10px;
  }

  .how-it-works-title {
    background: #f4f7fd !important;
    position: relative;
    top: 6px !important;
    max-width: fit-content;
    margin: 0 auto;
    padding: 0px 25px;
  }

  /* ── SECTION SHARED ── */
  section {
    padding: 64px 0;
  }

  .section-title {
    font-size: 2.7rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
  }

  .why-choose-row {
    border: 2px solid #c8d4e7;
    padding-top: 30px;
    border-radius: 10px;
    padding-bottom: 15px;
  }

  .section-title-3 {
    font-size: 40px !important;
    font-weight: 600;
    position: relative;
  }

  .right-img img {
    width: 100%;
  }

  .section-title-2 {
    font-size: 40px !important;
    font-weight: 600;
    position: relative;
    top: 0px;
    background: #fff;
    max-width: fit-content;
    margin: 0 auto;
    padding: 0px 25px;
  }

  .section-title .highlight {
    color: var(--primary);
  }

  .section-title .blue {
    color: var(--blue-text);
  }

  .section-divider {
    width: 60px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
    margin: 12px auto 28px;
  }

  /* ── WHAT IS PMD ── */
  .what-section {
    background: #F4F7FC;
    padding: 35px 0px;
  }

  .what-section img {
    width: 100%;
  }

  .eye-glow {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, #1a3a8f 0%, #0d2461 50%, #000 100%);
    box-shadow: 0 0 60px rgba(21, 101, 192, .4), 0 0 120px rgba(21, 101, 192, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .eye-glow::after {
    content: '';
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: radial-gradient(circle, #000 40%, #1a1a1a 100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, .8);
  }

  .eye-rings {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid rgba(21, 101, 192, .3);
    border-radius: 50%;
    animation: pulse-ring 3s infinite;
  }

  @keyframes pulse-ring {

    0%,
    100% {
      transform: scale(1);
      opacity: .5;
    }

    50% {
      transform: scale(1.05);
      opacity: 1;
    }
  }

  .feature-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px 0;
  }

  .feature-badge .icon-wrap {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #e8f0fe;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .feature-badge .icon-wrap i {
    color: var(--primary);
    font-size: 1rem;
  }

  .feature-badge h6 {
    font-weight: 700;
    font-size: .88rem;
    margin-bottom: 2px;
    color: var(--primary);
  }

  .feature-badge p {
    font-size: .78rem;
    color: #6b7280;
    margin: 0;
  }

  .pmd-desc {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
  }

  .info-note {
    background: #e8f4fd;
    border-left: 4px solid var(--blue-text);
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 15px;
    color: var(--blue-text);
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  /* ── WHY PARENTS ── */
  .why-section {
    background: #fff;
  }

  .why-card {
    text-align: center;
    padding: 28px 15px;
    border-radius: 16px;

    transition: all .3s;
    height: 100%;
  }

  .why-card:hover {
    box-shadow: 0 8px 30px rgba(13, 36, 97, .1);
    transform: translateY(-4px);
    border-color: var(--primary);
  }

  .why-card .icon-big {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #c7d7fc);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
  }

  .why-card .icon-big i {
    font-size: 2rem;
    color: var(--primary);
  }

  .why-card h6 {
    font-weight: 700;
    font-size: 22px;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .why-card p {
    font-size: 16px;
    color: #4b5563;
    margin: 0;
    line-height: 1.4;
  }

  /* ── HOW IT WORKS ── */
  .how-section {
    background: var(--light-bg);
  }

  .step-card {
    text-align: center;
    padding: 30px 20px;
    /* background: #fff; */
    border-radius: 16px;
    /* box-shadow: 0 4px 20px rgba(0,0,0,.06); */
    position: relative;
    height: 100%;
  }

  .step-conuter {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    position: relative;
    max-width: 150px;
    margin: 0 auto 25px;
  }

  .step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 800;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    /* margin: 0 auto 14px; */
    position: absolute;
    left: -50px;
  }

  .step-icon {
    width: 75px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .step-icon img {
    width: 100%;
  }

  .step-icon i {
    color: var(--primary);
    font-size: 75px;
  }

  .step-card h5 {
    font-weight: 500;
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 8px;
  }

  .step-card p {
    font-size: .8rem;
    color: #6b7280;
    margin: 0;
  }

  .step-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 2.0rem;
  }

  /* ── WHAT YOU RECEIVE ── */
  .receive-section {
    background: linear-gradient(135deg, #eef3fc 0%, #fafdff 50%, #ffffff 100%);
    position: relative;
  }

  .receive-list {
    list-style: none;
    padding: 0;
    margin-top: 24px;
  }

  .receive-list li {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.98rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(13, 36, 97, 0.05);
    border-radius: 12px;
    padding: 12px 18px;
    margin-bottom: 12px;
    box-shadow: 0 4px 15px rgba(13, 36, 97, 0.03);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .receive-list li:hover {
    transform: translateY(-2px);
    background: #fff;
    box-shadow: 0 8px 25px rgba(13, 36, 97, 0.07);
    border-color: rgba(245, 166, 35, 0.4);
  }

  .receive-list li i {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #c7d7fc);
    color: var(--primary-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
    box-shadow: 0 2px 6px rgba(13, 36, 97, 0.05);
    transition: all 0.3s ease;
  }

  .receive-list li:hover i {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
    transform: scale(1.05);
  }

  .report-card {
    background: var(--primary);
    border-radius: 16px;
    padding: 20px 16px;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .report-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
  }

  .report-card h5 {
    font-weight: 800;
    font-size: 1.05rem;
    margin-bottom: 4px;
  }

  .report-card p {
    font-size: .75rem;
    opacity: .8;
    margin: 0;
  }

  .report-card .eye-mini {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: radial-gradient(circle, #1a3a8f, #000);
    margin: 12px auto;
    box-shadow: 0 0 30px rgba(21, 101, 192, .5);
  }

  .report-card .tag {
    background: var(--accent);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 4px 14px;
    display: inline-block;
    margin-top: 8px;
  }

  .mini-chart-bar {
    height: 10px;
    border-radius: 5px;
    margin-bottom: 6px;
  }

  .chart-label {
    font-size: .7rem;
    color: #374151;
    margin-bottom: 2px;
    font-weight: 600;
  }

  .chart-mini-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, .07);
  }

  .chart-mini-card h6 {
    font-size: .8rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
  }

  .btn-download {
    background: #fff;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50px;
    padding: 11px 24px !important;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
  }

  .btn-download:hover {
    background: var(--primary);
    color: #fff;
  }

  /* ── PROGRAMS ── */
  .programs-section {
    background: var(--light-bg);
  }

  .programs-section .section-title-3,
  .testimonial-section .section-title-3,
  .safety-section .section-title-3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
  }

  .programs-section .section-title-3::before,
  .programs-section .section-title-3::after,
  .testimonial-section .section-title-3::before,
  .testimonial-section .section-title-3::after,
  .safety-section .section-title-3::before,
  .safety-section .section-title-3::after {
    content: '';
    width: 100px;
    height: 3px;
    background-color: var(--primary);
    border-radius: 2px;
    flex-shrink: 0;
  }

  @media (max-width: 768px) {

    .programs-section .section-title-3::before,
    .programs-section .section-title-3::after,
    .testimonial-section .section-title-3::before,
    .testimonial-section .section-title-3::after,
    .safety-section .section-title-3::before,
    .safety-section .section-title-3::after {
      width: 50px;
    }
  }

  @media (max-width: 480px) {

    .programs-section .section-title-3::before,
    .programs-section .section-title-3::after,
    .testimonial-section .section-title-3::before,
    .testimonial-section .section-title-3::after,
    .safety-section .section-title-3::before,
    .safety-section .section-title-3::after {
      display: none;
    }
  }

  .program-card {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, .08);
    transition: transform .3s;
    height: 100%;
    display: flex;
    align-items: flex-start;
    background-color: #fff;
    padding: 0px 10px 0px 0px;
  }

  .thumbnail-card {
    height: 100%;
  }

  .program-card-1 {
    border-top: 3px #e65100 solid;
  }

  .program-card-2 {
    border-top: 3px #2e7d32 solid;
  }

  .program-card-3 {
    border-top: 3px #0d47a1 solid;
  }

  .program-card-4 {
    border-top: 3px #6a1b9a solid;
  }

  .program-card:hover {
    transform: translateY(-4px);
  }

  .program-card img {
    width: auto;
    height: 100%;
    object-fit: cover;
    max-width: 130px;
  }

  .program-card .body {
    padding: 16px;
    background: #fff;
  }

  .program-card .age-tag {
    font-size: .75rem;
    font-weight: 800;
    border-radius: 50px;
    padding: 4px 14px;
    display: inline-block;
    margin-bottom: 8px;
  }

  .age-0 {
    background: #fff3e0;
    color: #e65100;
  }

  .age-6 {
    background: #e8f5e9;
    color: #2e7d32;
  }

  .age-11 {
    background: #e3f2fd;
    color: #0d47a1;
  }

  .age-17 {
    background: #f3e5f5;
    color: #6a1b9a;
  }

  .program-card h6 {
    font-weight: 700;
    font-size: .9rem;
    color: var(--primary);
    margin-bottom: 6px;
  }

  .program-card p {
    font-size: .78rem;
    color: #6b7280;
    margin: 0;
    line-height: 1.5;
  }

  /* ── ALLIANCE ── */
  .alliance-wrapper {
    background-color: var(--light-bg);
  }

  .alliance-section {
    background: #011e4a;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding: 40px;
    border-radius: 20px;
  }

  .alliance-section h2 span {
    color: var(--accent);
  }

  .alliance-section p,
  .cta-section p {
    color: rgba(255, 255, 255, .8);
    font-size: 16px;
    line-height: 1.5;
  }

  .stat-item {
    text-align: center;
  }

  .stat-item img {
    max-width: 50px;
    margin: 0px auto 10px;
  }

  .stat-item .number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--accent);
  }

  .stat-item .label {
    font-size: .8rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 600;
  }

  .btn-alliance {
    border: 2px solid #fff;
    color: #fff;
    border-radius: 50px;
    padding: 11px 24px !important;
    font-weight: 700;
    font-size: 16px;
    background: transparent;
    transition: all .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
  }

  .btn-alliance:hover {
    background: #fff;
    color: var(--primary);
  }

  .network-dots {
    position: relative;
    width: 100%;
    height: 240px;
  }

  .dot {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .15);
    border: 2px solid rgba(255, 255, 255, .3);
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    color: rgba(255, 255, 255, .7);
    font-weight: 700;
  }

  .dot.center {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-color: var(--accent);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  /* ── TESTIMONIALS ── */
  .testimonial-section {
    background: #fff;
  }

  .testi-card {
    background: #f8faff;
    border-radius: 16px;
    padding: 40px 24px;
    border: 1px solid #e5e7eb;
    height: 100%;
    position: relative;
  }

  .testi-card::before {
    content: '\201C';
    font-size: 5rem;
    color: var(--primary);
    opacity: .1;
    position: absolute;
    top: 0;
    left: 16px;
    line-height: 1;
    font-family: Georgia, serif;
  }

  .testi-card p {
    font-size: 18px;
    color: #4b5563;
    line-height: 1.5;
    margin-bottom: 16px;
  }

  .testi-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .testi-card .avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, #e8f0fe, #c7d7fc);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--primary);
    font-size: .9rem;
    flex-shrink: 0;
  }

  .testi-card .name {
    font-weight: 700;
    font-size: .88rem;
    color: var(--primary);
  }

  .testi-card .role {
    font-size: .76rem;
    color: #9ca3af;
  }

  /* ── CTA BANNER ── */
  .cta-section {
    background: #011e4a;
    padding: 30px 20px 0px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
  }

  .cta-section::before {
    content: '';
    position: absolute;
    left: -80px;
    bottom: -80px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
  }

  .cta-section h2 {
    color: #fff;
    font-weight: 500;
    font-size: 37px;
    line-height: 1.3;
  }

  .cta-section img {
    width: 100%;
  }

  .cta-section h2 span {
    color: var(--accent);
  }

  .btn-cta-book {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    width: 100%;
    justify-content: center;
    text-decoration: none;
  }

  .btn-cta-book:hover {
    background: var(--accent-dark);
    color: #fff;
    transform: translateY(-2px);
  }

  .btn-cta-wa {
    background: transparent;
    color: #fff;
    border: 1px solid #fff;
    border-radius: 10px;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all .2s;
    width: 100%;
    justify-content: center;
    text-decoration: none;
    margin-top: 12px;
  }

  .btn-cta-wa:hover {
    background: #1ebe5b;
    color: #fff;
  }

  /* ── FOOTER ── */
  footer {
    background: #011e4a;
    color: rgba(255, 255, 255, .8);
    padding: 50px 0 24px;
  }

  .footer-brand {
    max-width: 200px;
    margin-bottom: 20px;
  }

  .footer-brand img {
    width: 100%;
  }

  footer h6 {
    color: #fff;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 16px;
  }

  footer a {
    color: rgba(255, 255, 255, .7);
    text-decoration: none;
    font-size: 16px;
    display: block;
    margin-bottom: 8px;
    transition: color .2s;
  }

  footer a:hover {
    color: var(--accent);
  }

  footer .divider {
    border-color: rgba(255, 255, 255, .15);
    margin: 28px 0 16px;
  }

  footer .copy {
    font-size: .75rem;
    color: rgba(255, 255, 255, .5);
  }

  .social-icons a {
    display: inline-flex;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .12);
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 17px;
    margin-right: 6px;
    transition: background .2s;
  }

  .social-icons a:hover {
    background: var(--accent);
  }

  .footer-brand .brand-name {
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
  }

  .footer-brand .brand-sub {
    font-size: .65rem;
    color: var(--accent);
    font-weight: 600;
  }

  /* ── DECORATIVE FLOATING ICONS ── */
  .floating-icon {
    position: absolute;
    opacity: .07;
    font-size: 4rem;
    color: var(--primary);
    pointer-events: none;
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 768px) {
    .navbar-brand {
      max-width: 170px;
    }

    .hero {
      padding: 40px 0 30px 10px;
      background-image: unset;
    }

    .btn-primary-cta,
    .btn-outline-cta {
      padding: 10px 7px;
      font-size: 14px;
    }

    .hero-title {
      font-size: 1.8rem;
    }

    .hero-badges {
      gap: 12px;
    }

    .hero-badge {
      width: 48%;
    }

    .section-title,
    .section-title-2,
    .section-title-3 {
      font-size: 2.2rem !important;
    }

    .why-card h6 {
      font-size: 18px;
    }

    .cta-section {
      padding: 30px 20px 30px;
    }

    .powered-card {
      position: static;
      margin-top: 16px;
    }

    .step-arrow {
      transform: rotate(90deg);
      padding: 10px 0;
    }
  }

  .wr-img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(13, 36, 97, 0.06);
    background: #fff;
    transition: all 0.3s ease;
  }

  .wr-img img {
    width: 100%;
    display: block;
  }

  .wr-img:hover {
    box-shadow: 0 15px 40px rgba(13, 36, 97, 0.10);
    transform: translateY(-2px);
  }

  /* ── TRUST & SAFETY ── */
  .safety-section {
    background: #ffffff;
    padding: 80px 0;
  }

  .safety-card {
    display: flex;
    gap: 16px;
    background: #f8faff;
    border: 1px solid #eef2f9;
    border-radius: 16px;
    padding: 20px;
    height: 100%;
    transition: all 0.3s ease;
  }

  .safety-card:hover {
    transform: translateY(-4px);
    background: #fff;
    box-shadow: 0 10px 30px rgba(13, 36, 97, 0.06);
    border-color: rgba(245, 166, 35, 0.3);
  }

  .safety-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, #e8f0fe, #c7d7fc);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
    transition: all 0.3s ease;
  }

  .safety-card:hover .icon-box {
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: #fff;
  }

  .safety-card h5 {
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--primary);
    margin-bottom: 6px;
  }

  .safety-card p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
  }

  .safety-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(13, 36, 97, 0.05);
    transition: all 0.3s ease;
    background: #fff;
  }

  .safety-img-wrap img {
    width: 100%;
    display: block;
  }

  .safety-img-wrap:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 45px rgba(13, 36, 97, 0.08);
  }