/* ============================================================
   mobile.css — DigiJewels Landing Page
   Applied only when max-width: 767px
   ============================================================ */

/* ---- Global reset for mobile ---- */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---- Navbar ---- */
.navbar {
    padding: 14px 0;
}

.nav-container {
    padding: 0 16px;
}

.nav-links {
    display: none !important;
}

.btn.btn-primary:not(.mobile-menu__cta) {
    display: none;
}

.nav-toggle {
    display: inline-flex !important;
}

.logo img {
    height: 30px;
}

/* ---- Hero Section ---- */
.hero {
    padding: 0;
}

.hero-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0 16px;
}

.hero-content {
    max-width: 100%;
    display: contents;
    /* dissolve wrapper so h1/p become direct flex children */
}

.hero-content h1 {
    font-size: clamp(26px, 7vw, 36px);
    margin-bottom: 0;
    order: 1;
    margin-top: 13%;
    text-align: center;
    width: 100%;
}

.hero-content p {
    font-size: 15px;
    max-width: 100%;
    margin: 0 auto;
    order: 3;
    text-align: center;
    width: 100%;
    display: none;
}

.hero-image {
    order: 2;
    text-align: center;
    padding-left: 0;
    padding-right: 0;
    width: 100%;
    justify-content: center;
    align-items: flex-end;
    align-self: center;
    margin-right: 0;
}

.hero-image img {
    max-width: min(340px, 90%);
    margin: 0 auto;
    transform: rotate(0deg) !important;
    animation: none !important;
}

/* Phone mockup scaling on mobile */
.phone-mockup {
    animation: none !important;
    transform: translateY(82px) !important;
}

.phone-frame {
    width: 200px !important;
    height: 412px !important;
    border-radius: 36px !important;
}

.phone-notch {
    width: 70px !important;
    height: 20px !important;
    top: 12px !important;
}

.phone-screen {
    inset: 5px !important;
    border-radius: 32px !important;
}

.phone-screen img {
    border-radius: 32px !important;
}

.phone-carousel__slide img {
    height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
}

/* spacing between stacked hero items on mobile */
.hero-container {
    row-gap: 20px;
}

/* ---- Trusted By ---- */
.trusted {
    padding: 12px 0 24px; /* Reduced vertical space on mobile */
}

.trusted .container {
    padding: 0 16px;
}

.trusted-title {
    font-size: 18px; /* Slightly larger on mobile */
    font-weight: 700;
    margin-bottom: 14px;
}

.trusted-grid {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.trusted-item {
    font-size: 14px; /* Slightly larger on mobile */
    padding: 10px 16px;
}

/* ---- Features Section — Scaled Animated Diagram ---- */
.features-section {
    padding: 10px 0 20px;
    overflow: hidden;
}

.features-section .container {
    width: 100%;
    max-width: 100%;
    padding: 0 4px;
    overflow: hidden;
}

.section-title--features {
    margin-bottom: 24px;
}

.section-title--features h3 {
    font-size: 20px;
}

.section-heading-primary {
    font-size: 20px;
}

.section-title--features .section-subtitle {
    font-size: 14px;
}

/* Mobile Herringbone — vertical spine + alternating left/right nodes */
.features-diagram-wrapper {
    position: relative !important;
    display: block !important;
    grid-template-columns: unset !important;
    grid-template-rows: unset !important;
    aspect-ratio: 350 / 640 !important;
    width: 90vw !important;
    height: auto !important;
    overflow: visible !important;
    isolation: isolate !important;
    transform: none !important;
    transform-origin: unset !important;
    margin: 20px auto 40px !important;
}

/* Hide desktop SVG, show mobile spine SVG */
.feature-connector--desktop {
    display: none !important;
}

.feature-connector--mobile {
    display: block !important;
    visibility: visible !important;
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
}

/* Nodes — absolute, percentage-based, keep float animations */
.feature-node {
    position: absolute !important;
    top: var(--y) !important;
    left: var(--x) !important;
    width: 40% !important;
    min-width: 0 !important;
    max-width: none !important;
    transform: translate(-50%, -50%) !important;
    animation: feature-float var(--float-duration, 7.2s) ease-in-out infinite !important;
    animation-delay: var(--float-delay, 0s) !important;
    will-change: transform !important;
    grid-column: auto !important;
    grid-row: auto !important;
}

/* Hub center — slightly wider */
.feature-node--hub {
    width: 65% !important;
    z-index: 5 !important;
}

/* Hub card styling */
.feature-hub {
    padding: 14px 18px !important;
    border-radius: 20px !important;
    min-height: unset !important;
    white-space: normal !important;
}

.feature-hub__logo {
    width: min(100%, 160px) !important;
    margin: 0 auto !important;
}

/* Herringbone positions — x positions keep spine dots visible */
/* Left cards: centered at 24% → spans ~2%-46% of wrapper */
/* Right cards: centered at 76% → spans ~54%-98% of wrapper */
/* Spine at 50% is always between the card edges — connector dots show */
.feature-node--scheme {
    --x: 50% !important;
    --y: 6% !important;
    width: 55% !important;
}

.feature-node--sip {
    --x: 24% !important;
    --y: 18% !important;
}

.feature-node--admin {
    --x: 76% !important;
    --y: 27% !important;
}

.feature-node--live {
    --x: 24% !important;
    --y: 36% !important;
}

.feature-node--hub {
    --x: 50% !important;
    --y: 50% !important;
    width: 65% !important;
}

.feature-node--brand {
    --x: 76% !important;
    --y: 64% !important;
}

.feature-node--gold {
    --x: 24% !important;
    --y: 73% !important;
}

.feature-node--redeem {
    --x: 76% !important;
    --y: 82% !important;
}

.feature-node--vault {
    --x: 50% !important;
    --y: 96% !important;
    width: 55% !important;
}

/* Feature cards — matching web view colors on mobile */
.features-diagram-wrapper .feature-card {
    border-radius: 20px !important;
    padding: 8px 10px !important;
    min-height: auto !important;
    white-space: normal !important;
    width: 100% !important;
    text-align: center;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.04)),
        linear-gradient(135deg, rgba(110, 72, 146, 0.96), rgba(75, 44, 115, 0.98) 54%, rgba(55, 32, 82, 0.99) 100%) !important;
    border: 1.4px solid rgba(255, 255, 255, 0.82) !important;
    box-shadow: inset 0 -2px 0 rgba(255, 255, 255, 0.18), 0 14px 30px rgba(16, 10, 35, 0.28) !important;
    backdrop-filter: blur(10px) !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.features-diagram-wrapper .feature-card h3 {
    font-size: 11px !important;
    white-space: normal !important;
    letter-spacing: -0.02em !important;
    margin-bottom: 2px !important;
    font-weight: 700 !important;
    color: #fff !important;
    line-height: 1.2 !important;
    text-wrap: balance !important;
}

.features-diagram-wrapper .feature-card p {
    font-size: 9px !important;
    white-space: normal !important;
    line-height: 1.3 !important;
    color: rgba(255, 255, 255, 0.82) !important;
    margin: 0 !important;
    text-wrap: balance !important;
}

/* No icon badges — removed per user request */
 

/* ---- How It Works (Premium Compact Flow) ---- */
.hiw-section {
    padding: 50px 0;
    overflow: hidden;
    /* Prevent particle overflow */
}

.hiw-section .container {
    padding: 0 16px;
}

.hiw-container {
    flex-direction: column;
    gap: 20px;
    align-items: stretch;
}

.hiw-flow-panel {
    max-width: 100%;
    width: 100%;
    min-height: auto;
    padding: 8px 0 0 0;
}

/* Re-enable ambient motion on mobile */
.hiw-orb {
    display: block !important;
    width: 180px;
    height: 180px;
    opacity: 0.5;
}

.hiw-particles {
    display: block !important;
}

/* Hide SVG connectors on mobile as they don't fit the vertical stack */
.hiw-snake-svg,
.hiw-ladder-svg,
.hiw-timeline-line {
    display: none !important;
}

/* Steps Staggered Reveal on Mobile */
.hiw-flow-step {
    padding: 0 0 18px 0;
    gap: 12px;
    opacity: 0;
    /* JS will trigger reveal */
    transform: translateY(20px);
    transition: all 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.hiw-flow-panel.hiw-visible .hiw-flow-step {
    opacity: 1;
    transform: translateY(0);
}

/* Add mobile-specific staggered delays */
.hiw-flow-panel.hiw-visible .hiw-flow-step:nth-child(1) {
    transition-delay: 0.1s;
}

.hiw-flow-panel.hiw-visible .hiw-flow-step:nth-child(2) {
    transition-delay: 0.3s;
}

.hiw-flow-panel.hiw-visible .hiw-flow-step:nth-child(3) {
    transition-delay: 0.5s;
}

.hiw-flow-step .hiw-card {
    animation: hiwFloatMobile 6s ease-in-out infinite;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

@keyframes hiwFloatMobile {

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

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

.hiw-flow-step--3 {
    padding-bottom: 0;
}

/* Smaller badge */
.hiw-badge {
    width: 34px;
    height: 34px;
    flex-shrink: 0;
    border-width: 1px;
}

.hiw-badge__num {
    font-size: 13px;
}

.hiw-pulse-ring {
    width: 42px;
    height: 42px;
    left: -4px;
    top: -4px;
    animation: hiwPulse 3s ease-out infinite;
}

/* Compact Card */
.hiw-card {
    padding: 14px 16px;
    border-radius: 18px;
    gap: 12px;
    align-items: center;
}

.hiw-card__icon {
    width: 45px;
    height: 45px;
    border-radius: 10px;
}

.hiw-card__icon svg {
    width: 25px;
    height: 25px;
}

.hiw-card__title {
    font-size: 15px;
    margin-bottom: 2px;
}

.hiw-card__desc {
    font-size: 12.5px;
    line-height: 1.4;
}

/* Image */
.hiw-image {
    width: 100%;
    text-align: center;
    flex: none;
}

.hiw-image img {
    max-width: min(300px, 88%);
    margin: 0 auto;
    transform: none !important;
}

.hiw-bg {
    display: none;
}


/* ---- Consumer Stories ---- */
.reviews-section {
    padding: 22px 0;
}

.reviews-section .container {
    padding: 0 16px;
}

.reviews-track {
    padding: 20px 16px;
    gap: 16px;
}

.review-card {
    min-width: calc(100vw - 48px);
    max-width: calc(100vw - 48px);
    padding: 30px 24px;
    border-radius: 32px;
}

.review-card p {
    font-size: 14px;
    margin-bottom: 20px;
}

.review-author {
    font-size: 12px;
}

.reviews-pagination {
    margin-top: 24px;
}

/* ---- Trusted Partners ---- */
.partners-showcase {
    padding: 50px 0 60px;
}

.partners-showcase .container {
    padding: 0 16px;
}

.partners-heading {
    font-size: 18px;
    margin: 0 auto 12px;
}

.partners-subtext {
    font-size: 13px;
    margin-bottom: 36px;
}

.partners-logos-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    align-items: stretch;
}

.partners-logos-row .partner-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: calc(50% - 7px);
    margin: 0 auto;
}

.partner-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px 18px;
    width: 100%;
    min-width: 0;
    height: 90px;
    border-radius: 14px;
}

.partner-card img {
    max-height: 38px;
    max-width: 110px;
}




/* ---- Book Demo Form ---- */
.demo-section {
    padding: 60px 0;
}

.demo-section .container {
    padding: 0 16px;
}

.demo-section h2 {
    margin-bottom: 24px;
}

.demo-form-wrapper {
    padding: 28px 20px;
    border-radius: 24px;
    max-width: 100%;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.fn,
.sn,
.mn,
.em,
.ci,
.st,
.nc,
.ns {
    grid-column: 1 !important;
    grid-row: auto !important;
}

.btn-submit-wrapper {
    grid-column: 1 !important;
    grid-row: auto !important;
    justify-content: stretch;
}

.btn-demo {
    width: 100%;
    font-size: 15px;
    padding: 14px 20px;
}

.form-subtitle {
    font-size: 15px;
}

.demo-bg {
    display: none;
}

/* ---- FAQs ---- */
.faq-section {
    padding: 60px 0;
}

.faq-section .container {
    padding: 0 16px;
}

.faq-section h2 {
    margin-bottom: 30px;
}

.faq-list {
    max-width: 100%;
    gap: 12px;
}

.faq-item {
    border-radius: 20px;
}

.faq-question {
    padding: 16px 18px;
    font-size: 13px;
}

.faq-answer {
    padding: 0 18px 16px;
    font-size: 14px;
}

/* ---- CTA Bottom ---- */
.cta-bottom {
    padding: 32px 0;
}

.cta-bottom .container {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 30px;
    padding: 0 16px;
}

.cta-text-col {
    max-width: 100%;
}

.cta-bottom h2 {
    font-size: 22px;
}

.cta-bottom .cta-text-col p {
    font-size: 14px;
}

.cta-btn-col {
    align-items: center;
    max-width: 100%;
}

.btn-cta {
    font-size: 18px;
    padding: 12px 36px;
    width: 100%;
    text-align: center;
}

.cta-btn-col p {
    font-size: 13px;
    text-align: center;
}

.cta-bg {
    display: none;
}

/* ---- Footer ---- */
.footer .container {
    padding: 0;
}

.footer-grid {
    grid-template-columns: 1fr !important;
    padding: 0 20px !important;
    gap: 28px;
    text-align: center;
}

.footer-brand {
    order: -1;
    transform: none;
}

.footer-logo img {
    margin: 0 auto;
    width: min(100%, 220px);
}

.footer-side {
    max-width: 100% !important;
    margin-left: 0 !important;
    text-align: center !important;
    padding-top: 0;
}

.footer-side--right {
    text-align: center !important;
    max-width: 100% !important;
}

.footer-tagline {
    font-size: 14px;
    margin-bottom: 16px;
}

.footer-nav {
    justify-content: center;
    gap: 12px 20px;
}

.footer-social {
    justify-content: center;
}

.footer-main {
    padding: 56px 0 28px;
}

.footer-star {
    /* top: -36px; */
    top: -45px;
    width: 90px;
}

.footer-bottom {
    padding: 10px 0;
}

.footer-bottom-inner {
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 8px;
    padding: 10px 16px;
}

.footer-bottom-links {
    justify-content: center;
    gap: 16px;
}

/* ---- Standalone FAQ Page ---- */
.site-page-hero {
    min-height: 260px;
    padding: 0;
}

.site-page-hero .hero-wave-left {
    width: 300px;
    opacity: 0.22;
}

.site-page-hero .hero-wave-right {
    width: 330px;
    opacity: 0.18;
}

.page-hero__content {
    margin-top: 58px;
    padding: 0 18px;
}

.page-title-pill {
    width: min(245px, 78vw);
    min-height: 58px;
    font-size: 32px;
}

.page-title-pill--wide {
    width: auto;
    min-width: 0;
    max-width: calc(100vw - 36px);
    padding-inline: 24px;
    font-size: clamp(22px, 6.8vw, 32px);
    white-space: nowrap;
}

.faq-page-section {
    min-height: auto;
    padding: 55px 0 95px;
}

.faq-page-decor--wave {
    top: 0;
    left: -135px;
    width: 520px;
    opacity: 0.16;
}

.faq-page-decor--gold {
    left: -235px;
    bottom: -460px;
    width: 430px;
    opacity: 0.10;
}

.faq-page__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 100%;
}

.faq-page__intro {
    padding-left: 0;
    text-align: center;
}

.faq-page__small-star {
    width: 54px;
    height: 54px;
    margin: 0 auto 12px;
}

.faq-page__heading {
    font-size: clamp(34px, 10vw, 44px);
    line-height: 1.12;
}

.faq-page__line {
    width: 180px;
    margin: 26px auto 0;
    background: linear-gradient(to right, var(--brand-purple) 0%, transparent 100%);
    border-radius: 999px;
}

.faq-page__list {
    margin-top: 0;
    gap: 12px;
}

.faq-page-section .faq-item,
.faq-page-section .faq-item.active {
    border-radius: 24px;
}

.faq-page-section .faq-question {
    min-height: 48px;
    padding: 13px 16px 13px 18px;
    font-size: 13px;
}

.faq-page-section .faq-item.active .faq-question {
    padding-top: 18px;
    padding-bottom: 4px;
}

.faq-page-section .faq-answer {
    padding: 0 48px 18px 18px;
    font-size: 13px;
}

/* ---- Terms & Conditions Page (Mobile) ---- */
.tc-section {
    padding: 52px 0 32px;
}

.tc-section .container {
    padding: 0 18px;
}

.tc-content {
    max-width: none;
}

.tc-heading {
    font-size: clamp(32px, 10vw, 42px);
    margin-bottom: 20px;
}

.tc-body p {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 18px;
}

.trusted--terms {
    padding: 18px 0 80px;
}

.trusted--terms .trusted-title {
    margin-bottom: 16px;
}

/* ---- Contact Page (Mobile) ---- */
.contact-section {
    padding: 38px 0 72px !important;
}

.contact-section .container {
    padding: 0 16px;
}

.contact-grid {
    grid-template-columns: 1fr !important;
    gap: 34px !important;
}

.contact-info {
    padding: 0 !important;
    max-width: 100% !important;
}

.contact-star {
    width: 46px;
    margin-bottom: 14px;
}

.contact-heading {
    font-size: clamp(38px, 13vw, 52px);
    margin-bottom: 12px;
}

.contact-subtext {
    max-width: 100% !important;
    margin-bottom: 20px;
    font-size: 15px;
}

.contact-divider {
    width: 180px;
    margin-bottom: 22px;
}

.contact-info-list {
    max-width: 100% !important;
    gap: 12px;
}

.contact-info-item {
    max-width: 100% !important;
    padding: 14px 14px 14px 12px;
    border-radius: 20px;
    gap: 14px;
}

.contact-info-icon {
    width: 54px;
    height: 54px;
    border-radius: 17px;
}

.contact-info-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-label {
    font-size: 14px;
}

.contact-info-value {
    font-size: 15px;
}

.contact-info-value--address {
    font-size: 14px;
}

.contact-form-shell {
    padding-top: 0 !important;
}

.contact-form-shell::after {
    top: 16px !important;
    right: -3px !important;
    bottom: -6px !important;
    left: 12px !important;
    border-radius: 28px !important;
}

.contact-form-card {
    margin-left: 0 !important;
    max-width: none !important;
    padding: 22px 18px 18px !important;
    border-radius: 28px !important;
}

.contact-form-grid {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
}

.contact-form-card .form-group input,
.contact-form-card .form-group select {
    min-height: 44px;
    padding: 0 18px 0 20px;
    font-size: 14px;
}

.contact-form-msg textarea {
    min-height: 136px !important;
    padding: 14px 18px !important;
    border-radius: 20px !important;
}

.contact-form-footer {
    margin-top: 12px;
}

.contact-submit-btn {
    width: 100%;
    min-width: 0;
    font-size: 18px;
}

/* ---- About Us Section (Responsive) ---- */
.about-section {
    padding: 60px 0 30px;
}

.about-bg {
    display: none;
}

.admin-bg {
    display: none;
}

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

.about-image-col {
    order: -1; /* Keep mockup at the top of the stack on mobile */
}

.about-image-wrapper {
    max-width: 320px;
}

.about-mockup {
    animation: aboutImageFloatMobile 5s ease-in-out infinite;
}

@keyframes aboutImageFloatMobile {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-6px);
    }
}

.about-intro {
    font-size: 15px;
    line-height: 1.6;
}

.about-body {
    font-size: 14px;
    line-height: 1.55;
}

.about-list-title {
    font-size: 16px;
    margin-top: 22px;
}

.about-features-list li {
    font-size: 14px;
    line-height: 1.45;
}

.about-callout {
    padding: 18px 20px;
    margin-top: 22px;
}

.about-callout-text {
    font-size: 14px;
}

.about-text-col {
    max-height: none !important;
    overflow: visible !important;
}

/* No bottom-fade or scroll capture on mobile */
.about-text-col::after {
    display: none !important;
}

.about-scroll-content {
    overflow-y: visible !important;
    padding-right: 0 !important;
}

/* ---- Notebooks vs Digital Section (Responsive) ---- */
.notebooks-section {
    padding: 40px 0 60px;
    /* Allow horizontal scroll strip to bleed through */
    overflow: visible !important;
}

/* The container must not clip the scroll strip */
.notebooks-section .container {
    overflow: visible !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Re-clip only the header text area so it doesn't bleed */
.notebooks-header {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 32px;
}

/* Horizontal scroll container */
.notebooks-grid {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: unset !important;
    gap: 16px;
    margin-top: 20px;
    /* Enable horizontal scroll */
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Peek next card on the right */
    padding: 8px 20px 24px 20px;
    /* Hide scrollbar — clean look */
    scrollbar-width: none;       /* Firefox */
    -ms-overflow-style: none;    /* IE / Edge */
    /* Prevent page-level overflow capture */
    width: 100%;
    box-sizing: border-box;
}

.notebooks-grid::-webkit-scrollbar {
    display: none;               /* Chrome / Safari */
}

/* Each card is a fixed-width snap point */
.notebooks-card {
    flex: 0 0 78vw !important;
    max-width: 78vw !important;
    width: 78vw !important;
    scroll-snap-align: center;
    padding: 32px 24px;
    border-radius: 26px;
    /* Ensure cards don't collapse */
    min-height: 220px;
    box-sizing: border-box;
}

.notebooks-card-comparison {
    flex-wrap: wrap;
    gap: 6px;
    border-radius: 12px;
}

.notebooks-card-title {
    font-size: 18px;
    margin-bottom: 12px;
}

.notebooks-card-desc {
    font-size: 14px;
    line-height: 1.6;
}

/* Scroll hint — right breathing room */
.notebooks-grid::after {
    content: '';
    display: block;
    flex: 0 0 4px;
    min-width: 4px;
}

/* ---- Why India's Jewellers Choose Section (Responsive) ---- */

/* Allow horizontal scroll strip to bleed through */
.why-choose-section {
    overflow: visible !important;
}

/* Remove container side paddings so card strip fills edge-to-edge */
.why-choose-section .container {
    overflow: visible !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

/* Keep header text inset */
.why-choose-header {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 36px;
}

/* Override the style.css @media(max-width:640px) stacked layout */
.why-choose-grid {
    display: flex !important;
    flex-direction: row !important;
    grid-template-columns: unset !important;
    gap: 16px !important;
    /* Horizontal scroll */
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    /* Peek next card */
    padding: 8px 20px 28px 20px;
    /* Hide scrollbar */
    scrollbar-width: none;
    -ms-overflow-style: none;
    width: 100%;
    box-sizing: border-box;
}

.why-choose-grid::-webkit-scrollbar {
    display: none;
}

/* Each card snaps to centre, peeks next */
.why-card {
    flex: 0 0 78vw !important;
    max-width: 78vw !important;
    width: 78vw !important;
    scroll-snap-align: center;
    padding: 28px 22px 26px !important;
    border-radius: 20px;
    min-height: 200px;
    box-sizing: border-box;
}

/* Right breathing room after last card */
.why-choose-grid::after {
    content: '';
    display: block;
    flex: 0 0 4px;
    min-width: 4px;
}
