:root {
    --axis-primary: #841d39;
    --axis-accent: #d6004c;
    --axis-light: #fde7ef;
    --axis-csr-gradient: linear-gradient(135deg, #581c45 0%, #8e2c5d 100%);
}

* { box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    background: #FAFAFA;
    color: #374151;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    margin: 0;
    padding: 0;
}

.hero-bg { background: linear-gradient(135deg, #7c0032 0%, #a13a5c 100%); }

.swiper { width: 100%; padding-bottom: 40px !important; }
.swiper-pagination { bottom: 8px !important; }
.swiper-pagination-bullet { background: #d1d5db; opacity: 0.6; }
.swiper-pagination-bullet-active { background: #841d39; opacity: 1; }
.swiper-button-next, .swiper-button-prev { color: #841d39; }

.hero-swiper .swiper-slide { width: 100%; border-radius: 14px; overflow: hidden; background: #fff; }
.hero-swiper .swiper-slide img { width: 100%; height: auto; display: block; object-fit: contain; }

.hero-main-img { width: 100%; max-width: 100%; border-radius: 14px; display: block; }

.cc-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.cc-card {
    background: #fff; border-radius: 16px; padding: 14px 12px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05); cursor: pointer;
    border: 1px solid transparent; transition: all 0.2s ease;
}
.cc-card:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(132,29,57,0.1); border-color: #fde7ef; }
.cc-card img { width: 48px; height: 48px; object-fit: contain; background: #f8fafc; border-radius: 50%; padding: 8px; flex-shrink: 0; }
.cc-card-text { font-size: 13px; font-weight: 600; color: #1f2937; line-height: 1.3; flex: 1; }
.cc-arrow { font-size: 18px; color: #841d39; font-weight: 800; transition: transform 0.2s; flex-shrink: 0; }
.cc-card:hover .cc-arrow { transform: translateX(3px); }

.csr-section {
    margin-top: 60px;
    margin-bottom: 40px;
}
.csr-card {
    background: var(--axis-csr-gradient);
    border-radius: 22px;
    overflow: visible;
    display: flex;
    align-items: stretch;
    box-shadow: 0 8px 28px rgba(88,28,69,0.22);
    color: white;
    min-height: 300px;
    position: relative;
}
.csr-content {
    padding: 28px 20px 28px 24px;
    flex: 1.1;
    display: flex; flex-direction: column; justify-content: center;
}
.csr-tag { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; opacity: 0.85; margin-bottom: 10px; }
.csr-title { font-size: 18px; font-weight: 800; line-height: 1.25; margin-bottom: 16px; }
.csr-stats { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; font-size: 13px; opacity: 0.92; }
.csr-stat-item { display: flex; align-items: center; gap: 8px; }
.csr-stat-item::before { content: ""; width: 5px; height: 5px; background: white; border-radius: 50%; flex-shrink: 0; }
.csr-btn {
    background: white; color: #581c45; padding: 10px 24px; border-radius: 50px;
    font-weight: 700; font-size: 13px; text-decoration: none; display: inline-block;
    transition: transform 0.2s, box-shadow 0.2s; align-self: flex-start;
}
.csr-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.18); }

.csr-image-wrap {
    flex: 0.9;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: visible;
}
.csr-image-wrap img {
    width: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    margin-top: -60px;
}

@media (max-width: 600px) {
    .csr-section { margin-top: 50px; }
    .csr-card { flex-direction: column-reverse; min-height: auto; overflow: visible; }
    .csr-image-wrap { width: 100%; }
    .csr-image-wrap img { width: 75%; margin-top: -50px; margin-left: auto; margin-right: auto; }
    .csr-content { padding: 20px 18px 24px; }
    .csr-title { font-size: 17px; }
}

.kyc-section { margin-bottom: 32px; }
.kyc-container {
    background: #fff;
    border-radius: 22px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #e5e7eb;
}

.kyc-text-content {
    text-align: center;
    padding: 0 10px;
    width: 100%;
}

.kyc-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--axis-primary);
    margin-bottom: 12px;
    line-height: 1.2;
}

.kyc-desc {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.kyc-swiper {
    width: 100%;
    max-width: 320px;
    padding-bottom: 36px !important;
}

.kyc-swiper .swiper-slide {
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 4 / 5;
    background: #f1f5f9;
    border: 1px solid #f1f5f9;
    box-shadow: 0 10px 25px rgba(132,29,57, 0.12);
}

.kyc-swiper .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kyc-update-btn {
    background: var(--axis-primary);
    color: white;
    border-radius: 50px;
    padding: 10px 28px;
    text-decoration: none;
    font-weight: 700;
    display: inline-block;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(132, 29, 57, 0.3);
    transition: transform 0.2s;
}
.kyc-update-btn:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(132, 29, 57, 0.4); }

@media (min-width: 768px) {
    .kyc-container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        text-align: left;
        padding: 32px;
    }
    .kyc-text-content {
        flex: 1;
        padding-right: 20px;
        text-align: left;
        width: auto;
    }
    .kyc-swiper {
        max-width: 240px;
        flex-shrink: 0;
    }
    .kyc-desc { margin-bottom: 16px; }
}


.treasury-wrap { max-width: 440px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.treasury-card { border-radius: 18px; padding: 18px 16px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.treasury-card.mint { background: #e8faf9; }
.treasury-card.grey { background: #f4f6f8; }
.treasury-card.lavender { background: #f6eef6; }
.treasury-text h3 { font-size: 16px; font-weight: 700; color: #1f2937; margin: 0 0 4px; }
.treasury-text p { font-size: 12px; color: #6b7280; margin: 0 0 12px; line-height: 1.4; }
.treasury-img { width: 80px; height: 80px; object-fit: contain; flex-shrink: 0; }
.treasury-btn { background: var(--axis-primary); color: #fff; padding: 7px 18px; border-radius: 50px; font-size: 12px; font-weight: 600; text-decoration: none; display: inline-block; }

.icici-voucher-section { background: #fff; padding: 28px 16px; margin-top: 28px; border-top: 1px solid #f0f0f0; }
.voucher-slider { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -webkit-overflow-scrolling: touch; scrollbar-width: none; scrollbar-width: none; scroll-behavior: smooth; }
.voucher-slider::-webkit-scrollbar { display: none; }
.voucher-card { min-width: 220px; background: #fff; border-radius: 14px; padding: 18px 14px; text-align: center; scroll-snap-align: center; border: 1px solid #eee; box-shadow: 0 3px 10px rgba(0,0,0,0.04); }
.voucher-card img { width: 90px; height: auto; margin-bottom: 10px; object-fit: contain; }
.voucher-dots { display: flex; justify-content: center; gap: 7px; margin-top: 14px; }
.voucher-dots span { width: 6px; height: 6px; background: #d1d5db; border-radius: 50%; transition: background 0.3s; }
.voucher-dots span.active { background: var(--axis-primary); }

.axis-footer { background: #1a1a1a; color: white; padding: 20px 16px; text-align: center; }
.footer-img { max-width: 260px; width: 100%; margin: 0 auto 10px; opacity: 0.88; display: block; }
.footer-text { font-size: 12px; color: #9ca3af; }

.section-gap { margin-bottom: 32px; }
.section-title { font-size: 20px; font-weight: 800; color: #1f2937; text-align: center; margin-bottom: 18px; }
