/* ===========================================

   HOMEPAGE V2 - CONVERSION-FOCUSED STYLES

   =========================================== */



/* Background & Base */

body {

    background: linear-gradient(135deg, #0a0a0f 0%, #1a1a2e 50%, #0a0a0f 100%);

    background-attachment: fixed;

}



/* Remove particles - use clean gradient instead */

#particles-js {

    display: none !important;

}



/* Sticky CTA Button */

.sticky-cta {

    position: fixed;

    bottom: 80px;

    right: 30px;

    z-index: 999;

    padding: 15px 30px;

    background: var(--gradient-primary);

    border: none;

    border-radius: 50px;

    color: white;

    font-family: 'Rajdhani', sans-serif;

    font-size: 1.1rem;

    font-weight: 700;

    cursor: pointer;

    box-shadow: 0 10px 40px rgba(0, 240, 255, 0.4);

    transition: all 0.3s ease;

    display: flex;

    align-items: center;

    gap: 10px;

}



.sticky-cta:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 50px rgba(0, 240, 255, 0.6);

}



/* Hero V2 */

.hero-v2 {

    min-height: 100vh;

    display: flex;

    align-items: center;

    padding: 60px 0 120px;

    position: relative;

    overflow: hidden;

}



.hero-bg-gradient {

    position: absolute;

    width: 100%;

    height: 100%;

    background: radial-gradient(circle at 30% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 50%),

                radial-gradient(circle at 70% 50%, rgba(255, 0, 255, 0.1) 0%, transparent 50%);

    animation: pulse-bg 8s ease-in-out infinite;

}



@keyframes pulse-bg {

    0%, 100% { opacity: 0.5; }

    50% { opacity: 1; }

}



.hero-v2 .container {

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 60px;

    align-items: center;

    position: relative;

    z-index: 2;

}



.hero-content-v2 {

    max-width: 650px;opacity: 1 !important;

}



.trust-badge-row {

    display: flex;

    gap: 15px;

    margin-bottom: 30px;

    flex-wrap: wrap;

}



.trust-badge {

    padding: 8px 16px;

    background: rgba(0, 240, 255, 0.1);

    border: 1px solid rgba(0, 240, 255, 0.3);

    border-radius: 25px;

    font-size: 0.85rem;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 6px;

    color: var(--primary-color);

}



.hero-title-v2 {

    font-family: 'Orbitron', sans-serif;

    font-size: 4rem;

    font-weight: 900;

    line-height: 1.1;

    margin-bottom: 25px;

}



.gradient-text-v2 {

    background: linear-gradient(135deg, #00f0ff 0%, #9f59ff 50%, #7000ff 100%);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    background-size: 200% 200%;

    animation: gradient-shift 4s ease infinite;

}



.hero-subtitle-v2 {

    font-size: 1.3rem;

    color: var(--text-secondary);

    line-height: 1.7;

    margin-bottom: 35px;

}



.hero-cta-group {

    display: flex;

    gap: 15px;

    margin-bottom: 50px;

}



.btn-v2 {

    padding: 16px 32px;

    border-radius: 50px;

    font-family: 'Rajdhani', sans-serif;

    font-size: 1.1rem;

    font-weight: 700;

    text-decoration: none;

    display: inline-flex;

    align-items: center;

    gap: 10px;

    transition: all 0.3s ease;

    cursor: pointer;

    border: none;

}



.btn-primary-v2 {

    background: var(--gradient-primary);

    color: white;

    box-shadow: 0 10px 30px rgba(0, 240, 255, 0.3);

}



.btn-primary-v2:hover {

    transform: translateY(-3px);

    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.5);

}



.btn-outline-v2 {

    background: transparent;

    color: var(--text-primary);

    border: 2px solid rgba(0, 240, 255, 0.3);

}



.btn-outline-v2:hover {

    background: rgba(0, 240, 255, 0.1);

    border-color: var(--primary-color);

}



.btn-lg {

    padding: 20px 45px;

    font-size: 1.25rem;

}



.btn-xl {

    padding: 22px 50px;

    font-size: 1.3rem;

}



.btn-full {

    width: 100%;

    justify-content: center;

}



.hero-trust-stats {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 30px;

}



.trust-stat {

    text-align: center;

}



.stat-number-v2 {

    font-family: 'Orbitron', sans-serif;

    font-size: 2.2rem;

    font-weight: 700;

    background: var(--gradient-primary);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    margin-bottom: 5px;

}



.star-icon {

    color: #FFD700;

    margin-left: 2px;

}



.stat-label-v2 {

    font-size: 0.9rem;

    color: var(--text-secondary);

}



.hero-visual-v2 {

    position: relative;opacity: 1 !important;

}



.card-showcase-v2 {

    position: relative;

    animation: float-gentle 6s ease-in-out infinite;

}



@keyframes float-gentle {

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

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

}



.hero-card-img {

    width: 100%;

    max-width: 500px;

    filter: drop-shadow(0 30px 60px rgba(0, 240, 255, 0.3));

}



.card-badge {

    position: absolute;

    padding: 10px 20px;

    background: rgba(10, 10, 20, 0.95);

    backdrop-filter: blur(10px);

    border: 1px solid var(--primary-color);

    border-radius: 25px;

    font-size: 0.9rem;

    font-weight: 600;

    display: flex;

    align-items: center;

    gap: 8px;

    animation: float-badge 3s ease-in-out infinite;

}



.badge-kyc {

    top: 10%;

    right: -5%;

    color: #4CAF50;

    border-color: #4CAF50;

}



.badge-mastercard {

    top: 50%;

    right: -10%;

    color: #FF5722;

    border-color: #FF5722;

    animation-delay: 1s;

}



.badge-instant {

    bottom: 15%;

    left: -5%;

    color: var(--primary-color);

    animation-delay: 2s;

}



@keyframes float-badge {

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

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

}



/* Trust Logos Section */

.trust-logos {

    padding: 60px 0;

    background: rgba(20, 20, 30, 0.3);

    border-top: 1px solid rgba(0, 240, 255, 0.1);

    border-bottom: 1px solid rgba(0, 240, 255, 0.1);

}



.trust-logos-title {

    text-align: center;

    font-size: 1.1rem;

    color: var(--text-secondary);

    margin-bottom: 30px;

}



.logos-marquee {

    overflow: hidden;

    position: relative;

}



.logos-track {

    display: flex;

    gap: 50px;

    animation: marquee 30s linear infinite;

}



.logo-item {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 1.2rem;

    color: var(--text-secondary);

    white-space: nowrap;

}



.logo-item i {

    font-size: 2rem;

    color: var(--primary-color);

}



@keyframes marquee {

    0% { transform: translateX(0); }

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

}



/* Card Types Section */

.card-types-section {

    padding: 60px 0;

}



.section-header-v2 {

    text-align: center;

    margin-bottom: 0px;

}



.section-title-v2 {

    font-family: 'Orbitron', sans-serif;

    font-size: 3rem;

    font-weight: 700;

    margin-bottom: 15px;

}



.section-subtitle-v2 {

    font-size: 1.2rem;

    color: var(--text-secondary);

}



.cards-comparison {

    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 40px;

    max-width: 1100px;

    margin: 0 auto;

}



.card-type-box {

    background: rgba(20, 20, 30, 0.6);

    backdrop-filter: blur(10px);

    border: 2px solid rgba(0, 240, 255, 0.2);

    border-radius: 25px;

    padding: 40px;

    position: relative;

    transition: all 0.3s ease;

}



.card-type-box:hover {

    transform: translateY(-10px);

    border-color: var(--primary-color);

    box-shadow: 0 20px 60px rgba(0, 240, 255, 0.3);

}



.featured-card {

    border-color: #FFD700;

}



.card-type-badge {

    position: absolute;

    top: -15px;

    right: 30px;

    padding: 8px 20px;

    background: var(--gradient-primary);

    border-radius: 20px;

    font-size: 0.85rem;

    font-weight: 700;

    box-shadow: 0 5px 15px rgba(0, 240, 255, 0.4);

}



.card-type-badge.premium {

    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);

}



.card-type-visual {

    text-align: center;

    margin-bottom: 30px;

}



.card-type-visual img {

    max-width: 100%;

    height: auto;

    filter: drop-shadow(0 10px 30px rgba(0, 240, 255, 0.2));

}



.card-type-name {

    font-family: 'Orbitron', sans-serif;

    font-size: 1.8rem;

    margin-bottom: 10px;

    display: flex;

    align-items: center;

    gap: 12px;

}



.card-type-tagline {

    color: var(--text-secondary);

    font-size: 1.05rem;

    margin-bottom: 30px;

}



.card-type-features {

    margin-bottom: 30px;

}



.card-feature-item {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    margin-bottom: 15px;

}



.card-feature-item i {

    color: var(--primary-color);

    margin-top: 3px;

    flex-shrink: 0;

}



.card-type-price {

    text-align: center;

    padding: 20px;

    background: rgba(0, 240, 255, 0.05);

    border-radius: 15px;

    margin-bottom: 25px;

}



.price-label {

    color: var(--text-secondary);

    font-size: 0.9rem;

}



.price-value {

    font-family: 'Orbitron', sans-serif;

    font-size: 2rem;

    font-weight: 700;

    color: var(--primary-color);

    margin-left: 10px;

}



.price-note {

    font-size: 0.85rem;

    color: var(--text-secondary);

}



/* USPs Section */

.usps-section {

    padding: 60px 0;

    background: rgba(20, 20, 30, 0.2);

}



.usps-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

}



.usp-card {

    background: rgba(20, 20, 30, 0.6);

    backdrop-filter: blur(10px);

    border: 1px solid rgba(0, 240, 255, 0.1);

    border-radius: 20px;

    padding: 35px;

    transition: all 0.3s ease;

}



.usp-card:hover {

    border-color: var(--primary-color);

    transform: translateY(-5px);

    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.2);

}



.usp-icon-lg {

    width: 80px;

    height: 80px;

    background: var(--gradient-primary);

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2.5rem;

    margin-bottom: 25px;

}



.usp-title {

    font-family: 'Orbitron', sans-serif;

    font-size: 1.5rem;

    margin-bottom: 15px;

}



.usp-description {

    color: var(--text-secondary);

    line-height: 1.7;

    margin-bottom: 20px;

}



.usp-comparison {

    display: flex;

    flex-direction: column;

    gap: 10px;

}



.comparison-item {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 10px;

    border-radius: 10px;

}



.comparison-item.bad {

    background: rgba(255, 0, 0, 0.1);

    color: #ff6b6b;

}



.comparison-item.good {

    background: rgba(0, 255, 0, 0.1);

    color: #51cf66;

}



.usp-highlight {

    text-align: center;

    padding: 20px;

    background: rgba(0, 240, 255, 0.1);

    border-radius: 15px;

}



.highlight-value {

    font-family: 'Orbitron', sans-serif;

    font-size: 3rem;

    font-weight: 900;

    color: var(--primary-color);

    display: block;

}



.highlight-label {

    color: var(--text-secondary);

    font-size: 0.9rem;

}



.crypto-icons-list {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}



.crypto-icons-list span {

    padding: 6px 12px;

    background: rgba(0, 240, 255, 0.1);

    border: 1px solid rgba(0, 240, 255, 0.3);

    border-radius: 15px;

    font-size: 0.85rem;

}



.usp-timeline {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 10px;

}



.timeline-step {
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}



.step-time {

    display: block;

    font-family: 'Orbitron', sans-serif;

    font-size: 1.2rem;

    font-weight: 700;

    color: var(--primary-color);

    margin-bottom: 5px;

}



.step-label {

    color: var(--text-secondary);

    font-size: 0.85rem;

}



.timeline-arrow {

    color: var(--primary-color);

    font-size: 1.5rem;

}



.support-badge {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 15px;

    background: rgba(0, 240, 255, 0.1);

    border-radius: 10px;

}



/* Security Section */

.security-section {

    padding: 60px 0;

}



.security-grid {

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 30px;

    margin-bottom: 50px;

}



.security-feature {

    text-align: center;opacity: 1 !important;

    padding: 30px;

    background: rgba(20, 20, 30, 0.4);

    border: 1px solid rgba(0, 240, 255, 0.1);

    border-radius: 20px;

    transition: all 0.3s ease;

}



.security-feature:hover {

    border-color: var(--primary-color);

    transform: translateY(-5px);

}



.security-icon {

    width: 80px;

    height: 80px;

    background: linear-gradient(135deg, rgba(0, 240, 255, 0.2), rgba(255, 0, 255, 0.2));

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2rem;

    margin: 0 auto 20px;

    color: var(--primary-color);

}



.security-feature h3 {

    font-family: 'Orbitron', sans-serif;

    font-size: 1.3rem;

    margin-bottom: 10px;

}



.security-feature p {

    color: var(--text-secondary);

    line-height: 1.6;

}



.compliance-badges {

    display: flex;

    justify-content: center;

    gap: 30px;

    flex-wrap: wrap;  padding: 70px 0 0 0;

}



.compliance-badge {

    display: flex;

    align-items: center;

    gap: 10px;

    padding: 12px 24px;

    background: rgba(20, 20, 30, 0.6);

    border: 1px solid rgba(0, 240, 255, 0.3);

    border-radius: 25px;

    font-weight: 600;

}



.compliance-badge i {

    color: var(--primary-color);

    font-size: 1.3rem;

}



/* How It Works V2 */

.how-it-works-v2 {

    padding: 60px 0;

    background: rgba(20, 20, 30, 0.2);

}



.steps-visual {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 40px;

    margin-bottom: 50px;

}



.step-box {

    flex: 1;

    max-width: 320px;

    background: rgba(20, 20, 30, 0.6);

    border: 2px solid rgba(0, 240, 255, 0.2);

    border-radius: 25px;

    padding: 40px 30px;

    text-align: center;

    position: relative;

    transition: all 0.3s ease;

}



.step-box:hover {

    border-color: var(--primary-color);

    transform: translateY(-10px);

    box-shadow: 0 20px 50px rgba(0, 240, 255, 0.3);

}



.step-number {

    position: absolute;

    top: -20px;

    right: 20px;

    font-family: 'Orbitron', sans-serif;

    font-size: 3rem;

    font-weight: 900;

    background: var(--gradient-primary);

    -webkit-background-clip: text;

    -webkit-text-fill-color: transparent;

    background-clip: text;

    opacity: 0.4;

}



.step-icon-circle {

    width: 100px;

    height: 100px;

    background: var(--gradient-secondary);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2.5rem;

    margin: 0 auto 25px;

}



.step-title {

    font-family: 'Orbitron', sans-serif;

    font-size: 1.4rem;

    margin-bottom: 15px;

}



.step-desc {

    color: var(--text-secondary);

    line-height: 1.7;

    margin-bottom: 20px;

}



.step-time {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    padding: 8px 16px;

    background: rgba(0, 240, 255, 0.1);

    border: 1px solid rgba(0, 240, 255, 0.3);

    border-radius: 20px;

    font-size: 0.9rem;

    color: var(--primary-color);

    font-weight: 600;

}



.step-connector {

    width: 60px;

    height: 2px;

    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));

    position: relative;

}


.step-connector::after {
    content: '→';
    position: absolute;
    right: -15px;
    top: -20.9px;
    font-size: 1.7rem;
    color: var(--primary-color);
}



.cta-after-steps {

    text-align: center;

}



.cta-subtext {

    margin-top: 15px;

    color: var(--text-secondary);

    font-size: 0.95rem;

}



/* Premium Features */

.premium-features {

    padding:60px 0;

}



.premium-grid {

    display: grid;

    grid-template-columns: repeat(2, 1fr);padding: 40px 0 0 0;

    gap: 30px;

}



.premium-card {

    background: rgba(20, 20, 30, 0.6);

    border: 1px solid rgba(0, 240, 255, 0.1);

    border-radius: 20px;

    padding: 35px;

    transition: all 0.3s ease;

}



.premium-card:hover {

    border-color: var(--primary-color);

    transform: translateY(-5px);

}



.premium-visual {

    width: 80px;

    height: 80px;

    background: var(--gradient-primary);

    border-radius: 20px;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 2.5rem;

    margin-bottom: 20px;

}



.premium-card h3 {

    font-family: 'Orbitron', sans-serif;

    font-size: 1.6rem;

    margin-bottom: 15px;

}



.premium-card p {

    color: var(--text-secondary);

    line-height: 1.7;

    margin-bottom: 20px;

}



.premium-example {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 15px;

    background: rgba(0, 240, 255, 0.05);

    border-radius: 10px;

    font-weight: 600;

}



.premium-example i {

    color: var(--primary-color);

}



.premium-badge-list {

    display: flex;

    gap: 10px;

    flex-wrap: wrap;

}



.deal-badge {

    padding: 8px 15px;

    background: var(--gradient-primary);

    border-radius: 20px;

    font-size: 0.85rem;

    font-weight: 600;

}



.premium-link {

    color: var(--primary-color);

    text-decoration: none;

    font-weight: 600;

    display: inline-flex;

    align-items: center;

    gap: 8px;

    transition: all 0.3s ease;

}



.premium-link:hover {

    gap: 12px;

}



/* Testimonials */

.testimonials-section {

    padding: 60px 0;

    background: rgba(20, 20, 30, 0.2);

}



.testimonials-grid {

	display: grid;

	grid-template-columns: repeat(3, 1fr);

	gap: 30px;

	padding: 40px 0 0 0;

}

.testimonial-card {

    background: rgba(20, 20, 30, 0.6);

    border: 1px solid rgba(0, 240, 255, 0.1);

    border-radius: 20px;

    padding: 30px;

    transition: all 0.3s ease;

}



.testimonial-card:hover {

    border-color: var(--primary-color);

    transform: translateY(-5px);

}



.stars {

    color: #FFD700;

    font-size: 1.2rem;

    margin-bottom: 20px;

}



.testimonial-text {

    color: var(--text-secondary);

    line-height: 1.8;

    margin-bottom: 25px;

    font-style: italic;

}



.testimonial-author {

    display: flex;

    align-items: center;

    gap: 15px;

}



.author-avatar {

    width: 50px;

    height: 50px;

    background: var(--gradient-primary);

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-weight: 700;

    font-size: 1.2rem;

}



.author-name {

    font-weight: 700;

    margin-bottom: 5px;

}



.author-meta {

    color: var(--text-secondary);

    font-size: 0.85rem;

}



/* FAQ */

.faq-section {

    padding: 60px 0;

}



.faq-container {

    max-width: 900px;

    margin: 0 auto;padding: 40px 0 0 0;

}



.faq-item {

    background: rgba(20, 20, 30, 0.4);

    border: 1px solid rgba(0, 240, 255, 0.1);

    border-radius: 15px;

    margin-bottom: 15px;

    overflow: hidden;

    transition: all 0.3s ease;

}



.faq-item.active {

    border-color: var(--primary-color);

}



.faq-question {

    padding: 25px 30px;

    display: flex;

    justify-content: space-between;

    align-items: center;

    cursor: pointer;

    user-select: none;

}



.faq-question h3 {

    font-family: 'Rajdhani', sans-serif;

    font-size: 1.2rem;

    font-weight: 600;

    margin: 0;

}



.faq-question i {

    color: var(--primary-color);

    transition: transform 0.3s ease;

}



.faq-item.active .faq-question i {

    transform: rotate(180deg);

}



.faq-answer {

    max-height: 0;

    overflow: hidden;

    transition: max-height 0.3s ease;

}



.faq-item.active .faq-answer {

    max-height: 500px;

}



.faq-answer p {

    padding: 0 30px 25px;

    color: var(--text-secondary);

    line-height: 1.8;

    margin: 0;

}



/* Final CTA */

.final-cta-section {

    padding: 60px 0;

    position: relative;

    overflow: hidden;

}



.cta-bg-gradient {

    position: absolute;

    width: 100%;

    height: 100%;

    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.15) 0%, transparent 70%);

}



.final-cta-content {

    max-width: 800px;

    margin: 0 auto;

    text-align: center;

    position: relative;

    z-index: 2;

}



.final-cta-title {

    font-family: 'Orbitron', sans-serif;

    font-size: 3rem;

    font-weight: 900;

    margin-bottom: 20px;

}



.final-cta-subtitle {

    font-size: 1.3rem;

    color: var(--text-secondary);

    margin-bottom: 35px;

    line-height: 1.7;

}



.final-cta-features {

    display: flex;

    justify-content: center;

    gap: 30px;

    margin-bottom: 40px;

    flex-wrap: wrap;

}



.final-feature {

    display: flex;

    align-items: center;

    gap: 10px;

    font-size: 1.05rem;

    font-weight: 600;

}



.final-feature i {

    color: #51cf66;

    font-size: 1.2rem;

}



.final-cta-note {

    margin-top: 20px;

    color: var(--text-secondary);

    font-size: 0.95rem;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 8px;

}



.trust-indicators {

    display: flex;

    justify-content: center;

    gap: 30px;

    margin-top: 40px;

    flex-wrap: wrap;

}



.trust-indicator {

    display: flex;

    align-items: center;

    gap: 8px;

    padding: 10px 20px;

    background: rgba(20, 20, 30, 0.6);

    border: 1px solid rgba(0, 240, 255, 0.2);

    border-radius: 25px;

    font-size: 0.9rem;

}



.trust-indicator i {

    color: var(--primary-color);

}



/* Responsive Design */





@media (max-width: 768px) {

    .hero-title-v2 {

        font-size: 2.5rem;

    }

    

    .hero-trust-stats {

        grid-template-columns: 1fr 1fr;

    }

    

    .usps-grid, .security-grid, .premium-grid, .testimonials-grid {

        grid-template-columns: 1fr;

    }

    



    

    .step-connector {

        width: 2px;

        height: 60px;

        transform: rotate(90deg);

    }

    

    .sticky-cta {

        bottom: 20px;

        right: 20px;

        padding: 12px 24px;

        font-size: 1rem;

    }

    

    .final-cta-features {

        flex-direction: column;

        align-items: center;

    }

}

@media (max-width: 767px) {

	.trust-badge {

	padding: 4px 10px; 

	font-size: 0.55rem; 

	gap: 4px; 

}

	.hero-title-v2 {

	font-size: 1.6rem;

}

.hero-subtitle-v2 {

	font-size: 1.1rem;

 	line-height: 1.4;

 }

.btn-v2 {

	padding: 7px 14px; 

	font-size: 0.8rem; 

	gap: 4px; 

}

.stat-number-v2 {

 	font-size: 1.5rem; 

	margin-bottom: 0;

}

.section-title-v2 { 

	font-size: 1.6rem;

}

.card-type-name {

 	font-size: 1.2rem; 

	gap: 9px;

}

.card-type-box { 

	padding: 20px; 

	margin: 30px 0 0 0;

}

	

}