* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #3D444B;
    color: #fff;
    line-height: 1.6;
    /* Add bottom padding for mobile sticky bar */
    padding-bottom: 90px;
}

@media (min-width: 900px) {
    body {
        padding-bottom: 0;
    }
}

.page-background {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://d3qp9zvlyuxos1.cloudfront.net/spRevamp/backgrounds/quantum-gradient.svg');
    background-size: cover;
    z-index: -2;
}

.page-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(#000000bf 0%, #00000080 30%, #00000000 100%);
    z-index: -1;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 15px;
}

/* ─── Header ─────────────────────────────────────────── */
.profile-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.profile-info {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.profile-name {
    color: #333;
    font-weight: 600;
    font-size: 1rem;
}

.header-btn {
    background: #f4f4f4;
    color: #333;
    border: none;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ─── Main Content Layout ─────────────────────────────── */
.main-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 900px) {
    .main-content-wrapper {
        flex-direction: row;
        align-items: flex-start;
        gap: 30px;
    }
}

/* ─── Left Section ────────────────────────────────────── */
.content-section {
    flex: 1;
    background: #fff;
    border-radius: 12px;
    color: #333;
    padding: 20px;
}

@media (min-width: 900px) {
    .content-section {
        padding: 30px;
    }
}

.main-title {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-align: center;
    color: #111;
}

@media (min-width: 600px) {
    .main-title {
        font-size: 1.8rem;
    }
}

.card-section {
    margin-bottom: 30px;
}

.section-label {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 5px;
}

.about-content h3 {
    font-size: 1rem;
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 700;
    color: #111;
}

.about-content p {
    font-size: 0.9rem;
    color: #444;
    margin-bottom: 8px;
}

.bonus-title {
    color: #B800B8 !important;
    margin-top: 30px !important;
}

.proof-image {
    width: 100%;
    max-width: 400px;
    display: block;
    margin: 30px auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ─── Testimonials ────────────────────────────────────── */
.testimonial {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.testimonial-icon {
    font-size: 1.5rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    flex: 1;
}

.testimonial-rating {
    color: #f5b301;
    letter-spacing: 2px;
}

.testimonial-text {
    font-size: 0.88rem;
    color: #555;
    font-style: italic;
}

.login-banner {
    background: #f0f4ff;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 25px;
}

.login-banner a {
    color: #B800B8;
    font-weight: 600;
    text-decoration: none;
}

.contact-section {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
}

.contact-label {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 5px;
}

.contact-email {
    font-weight: 600;
    color: #111;
}

/* ─── Right Section: Checkout Card ───────────────────── */
.checkout-section {
    width: 100%;
}

@media (min-width: 900px) {
    .checkout-section {
        width: 380px;
        flex-shrink: 0;
        position: sticky;
        top: 20px;
    }
}

/* On mobile, hide desktop checkout section (we use sticky bottom bar instead) */
@media (max-width: 899px) {
    .checkout-section {
        display: none;
    }
}

.checkout-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    padding: 25px;
    color: #333;
}

.access-text {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 15px;
}

.input-group {
    margin-bottom: 15px;
}

.input-group label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    position: relative;
    top: 8px;
    left: 10px;
    background: #fff;
    padding: 0 5px;
    width: fit-content;
}

.input-group input {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    background-color: #f9f9f9;
    outline: none;
    transition: border-color 0.2s;
}

.input-group input:focus {
    border-color: #B800B8;
    background-color: #fff;
}

.phone-input {
    display: flex;
}

.phone-input select {
    padding: 12px 10px;
    border: 1px solid #ddd;
    border-radius: 6px 0 0 6px;
    background: #f9f9f9;
    border-right: none;
    outline: none;
}

.phone-input input {
    border-radius: 0 6px 6px 0;
}

.order-bump {
    background: #fcf4fc;
    border: 1px dashed #B800B8;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    cursor: pointer;
    transition: all 0.2s;
}

.order-bump:hover {
    background: #faeefa;
}

.bump-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.bump-img {
    background: #B800B8;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: bold;
    flex-shrink: 0;
}

.bump-title h4 {
    font-size: 0.9rem;
    color: #111;
}

.bump-desc {
    font-size: 0.8rem;
    color: #666;
    margin-bottom: 8px;
}

.bump-price {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.strike {
    text-decoration: line-through;
    color: #888;
    font-weight: normal;
    font-size: 0.8rem;
}

.bump-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 6px 10px;
    border-radius: 4px;
    width: fit-content;
    cursor: pointer;
}

.price-summary {
    margin-bottom: 20px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.summary-row hr {
    border: none;
    border-top: 1px solid #eee;
    margin: 10px 0;
}

.total-row {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
}

.download-btn {
    width: 100%;
    background-color: #B800B8;
    color: white;
    border: none;
    border-radius: 50px;
    padding: 15px;
    font-size: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-bottom: 15px;
}

.download-btn:hover {
    opacity: 0.9;
}

.terms-text {
    font-size: 0.75rem;
    color: #888;
    text-align: center;
}

.terms-text a {
    color: #555;
    text-decoration: underline;
}

/* ─── Modal CSS ───────────────────────────────────────── */
.modal {
    display: none;
    position: fixed;
    z-index: 200;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background-color: #fff;
    padding: 25px 20px;
    border-radius: 16px;
    width: 94%;
    max-width: 420px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.25);
    animation: modalFadeIn 0.3s ease-out;
    color: #333;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes modalFadeIn {
    from {
        transform: translateY(20px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.close-modal {
    color: #aaa;
    position: absolute;
    top: 12px;
    right: 18px;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
}

.close-modal:hover {
    color: #333;
}

.modal-content h2 {
    margin-bottom: 10px;
    color: #111;
    font-size: 1.2rem;
}

.modal-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 15px;
}

/* ─── UPI Apps ────────────────────────────────────────── */
.upi-apps-row {
    display: flex;
    justify-content: space-around;
    gap: 8px;
    margin-bottom: 15px;
}

.upi-btn {
    background: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 10px 8px;
    cursor: pointer;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.2s, transform 0.1s;
    min-height: 48px;
}

.upi-btn:hover,
.upi-btn:active {
    border-color: #B800B8;
    transform: scale(0.97);
}

.upi-btn img {
    height: 22px;
    object-fit: contain;
}

.qr-divider {
    display: flex;
    align-items: center;
    text-align: center;
    color: #aaa;
    margin: 15px 0;
    font-size: 0.8rem;
    font-weight: 600;
}

.qr-divider::before,
.qr-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid #eee;
}

.qr-divider span {
    padding: 0 10px;
}

.qr-container {
    background: #f9f9f9;
    padding: 12px;
    border-radius: 8px;
    display: inline-block;
    border: 1px solid #eee;
    margin-bottom: 15px;
}

.qr-container img {
    width: 180px;
    height: 180px;
    display: block;
}

.payment-details {
    background: #f0f7ff;
    padding: 12px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.payment-details p {
    margin: 0 0 5px 0;
    color: #333;
    font-size: 0.95rem;
}

.payment-details .upi-id {
    font-size: 0.9rem;
    color: #555;
    margin: 0;
}

.verify-btn {
    width: 100%;
    background-color: #28a745;
    color: white;
    border: none;
    border-radius: 8px;
    padding: 14px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.verify-btn:hover {
    background-color: #218838;
}

/* ─── Spinner ─────────────────────────────────────────── */
.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #B800B8;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.pending-title {
    color: #B800B8;
    margin-bottom: 10px;
}

.pending-desc {
    color: #555;
    font-size: 0.95rem;
}

.pending-note {
    color: #999;
    font-size: 0.8rem;
    margin-top: 15px;
    font-weight: bold;
}

.order-id-badge {
    background: #fff3cd;
    color: #856404;
    padding: 8px 15px;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 12px;
    border: 1px solid #ffeeba;
}

.upi-note {
    font-size: 0.8rem !important;
    color: #888 !important;
    margin-top: 5px !important;
}

/* ══════════════════════════════════════════════════════
   MOBILE STICKY BOTTOM BAR
   ══════════════════════════════════════════════════════ */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 150;
    background: #111;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
}

@media (max-width: 899px) {
    .mobile-sticky-bar {
        display: block;
    }
}

/* Top strip: price increasing warning + countdown */
.sticky-top-strip {
    background: #1a1a1a;
    padding: 6px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #333;
}

.sticky-price-warning {
    font-size: 0.72rem;
    color: #aaa;
    line-height: 1.3;
}

.sticky-price-warning strong {
    display: block;
    color: #fff;
    font-size: 0.78rem;
}

.sticky-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

.sticky-countdown .unit {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.sticky-countdown .digits {
    background: #B800B8;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 4px;
    min-width: 32px;
    text-align: center;
    line-height: 1.3;
    font-variant-numeric: tabular-nums;
}

.sticky-countdown .label {
    font-size: 0.55rem;
    color: #aaa;
    text-transform: uppercase;
    margin-top: 2px;
}

.sticky-countdown .sep {
    color: #B800B8;
    font-weight: 900;
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Bottom row: CTA button */
.sticky-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 14px;
    gap: 10px;
}

.sticky-price-tag {
    flex-shrink: 0;
}

.sticky-price-tag .original {
    text-decoration: line-through;
    color: #888;
    font-size: 0.7rem;
}

.sticky-price-tag .current {
    color: #fff;
    font-weight: 800;
    font-size: 1.25rem;
    line-height: 1;
}

.sticky-download-btn {
    flex: 1;
    background: linear-gradient(135deg, #cc00cc, #B800B8);
    color: white;
    border: none;
    border-radius: 50px;
    padding: 13px 18px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 15px rgba(184, 0, 184, 0.5);
    transition: transform 0.15s, opacity 0.15s;
    white-space: nowrap;
}

.sticky-download-btn:active {
    transform: scale(0.97);
    opacity: 0.92;
}

/* ─── Mobile Checkout Sheet (slide-up) ───────────────── */
.mobile-checkout-sheet {
    display: none;
    position: fixed;
    z-index: 300;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(3px);
    align-items: flex-end;
    justify-content: center;
}

.mobile-checkout-sheet.active {
    display: flex;
}

.sheet-inner {
    background: #fff;
    width: 100%;
    max-width: 540px;
    border-radius: 20px 20px 0 0;
    padding: 24px 20px 30px;
    color: #333;
    animation: slideUp 0.3s ease-out;
    max-height: 90vh;
    overflow-y: auto;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }

    to {
        transform: translateY(0);
    }
}

.sheet-handle {
    width: 40px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
    margin: 0 auto 20px;
}

.sheet-close {
    position: absolute;
    top: 16px;
    right: 18px;
    font-size: 24px;
    color: #aaa;
    cursor: pointer;
    background: none;
    border: none;
    line-height: 1;
}

.sheet-title {
    font-size: 1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 16px;
    text-align: center;
}