/* ===== SHARED SECTION STYLES ===== */
.section {
    padding: 70px 0;
}

.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-neon);
    margin-bottom: 12px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: 1px;
    color: var(--color-white);
    margin-bottom: 16px;
}

.section-desc {
    font-size: 15px;
    color: var(--color-muted);
    line-height: 1.7;
    max-width: 520px;
}

.section-top {
    margin-bottom: 40px;
}

.section-top.centered {
    text-align: center;
}

.section-top.centered .section-label,
.section-top.centered .section-heading {
    display: block;
}

.btn-section {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: linear-gradient(135deg, var(--color-gold), #c9970a);
    color: #0a0a0f;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 700;
    margin-top: 24px;
    transition: all 0.3s;
}

.btn-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--bg-section);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    align-items: center;
}

.about-features {
    list-style: none;
    margin: 28px 0 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.about-features li:last-child {
    border-bottom: none;
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(232, 185, 35, 0.1);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
    font-size: 20px;
}

.about-features strong {
    display: block;
    font-size: 15px;
    color: var(--color-white);
    margin-bottom: 4px;
}

.about-features span {
    font-size: 13px;
    color: var(--color-muted);
}

.about-visual {
    position: relative;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 12px;
}

.about-img {
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    min-height: 140px;
    border: 1px solid var(--color-border);
}

.about-img-1 {
    grid-row: span 2;
    background: linear-gradient(135deg, #1a1030, #2d1b4e);
    color: var(--color-neon-purple);
}

.about-img-2 {
    background: linear-gradient(135deg, #0f2a1f, #1a4030);
    color: var(--color-neon);
}

.about-img-3 {
    background: linear-gradient(135deg, #2a1f0f, #40301a);
    color: var(--color-gold);
}

.about-badge {
    position: absolute;
    bottom: -10px;
    right: -10px;
    background: linear-gradient(135deg, var(--color-gold), #c9970a);
    color: #0a0a0f;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    text-align: center;
    box-shadow: var(--shadow-gold);
}

.badge-num {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    line-height: 1;
}

.badge-text {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== SERVICES ===== */
.services-section {
    background: var(--bg-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.service-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-neon));
    opacity: 0;
    transition: opacity 0.3s;
}

.service-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 185, 35, 0.3);
    box-shadow: var(--shadow-card);
}

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    background: rgba(0, 229, 160, 0.08);
    border: 1px solid rgba(0, 229, 160, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-neon);
    margin-bottom: 18px;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--color-white);
}

.service-card p {
    font-size: 14px;
    color: var(--color-muted);
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-link:hover {
    gap: 10px;
}

@media (min-width: 576px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== STATS SECTION ===== */
.stats-section {
    background: var(--bg-section);
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.payment-list,
.why-list {
    list-style: none;
    margin-top: 24px;
}

.payment-list li,
.why-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--color-muted);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.payment-list i {
    color: var(--color-gold);
    width: 20px;
}

.why-list {
    margin-top: 20px;
}

.why-list li {
    border: none;
    padding: 8px 0;
}

.why-list i {
    color: var(--color-neon);
}

.stats-right {
    position: relative;
}

.stats-box {
    background:
        linear-gradient(135deg, rgba(17, 17, 34, 0.95) 0%, rgba(10, 10, 20, 0.98) 100%);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    box-shadow: var(--shadow-card);
    position: relative;
    overflow: hidden;
}

.stats-box::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    position: relative;
    z-index: 1;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 36px;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 6px;
}

.stat-label {
    font-size: 12px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== WINNERS ===== */
.winners-section {
    background: var(--bg-dark);
}

.winners-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.winner-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s;
}

.winner-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(232, 185, 35, 0.25);
}

.winner-img {
    position: relative;
    height: 180px;
    overflow: hidden;
}

.winner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.winner-card:hover .winner-img img {
    transform: scale(1.08);
}

.winner-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    background: var(--color-gold);
    color: #0a0a0f;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

.winner-info {
    padding: 20px;
}

.winner-info h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.winner-info p {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.winner-link {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

@media (min-width: 576px) {
    .winners-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .winners-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== PROCESS TIMELINE ===== */
.process-section {
    background: var(--bg-section);
}

.process-timeline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
}

.process-step {
    text-align: center;
    padding: 24px 16px;
    position: relative;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--bg-card);
    border: 2px solid var(--color-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--color-gold);
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    background: rgba(232, 185, 35, 0.1);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-gold);
}

.step-num {
    display: block;
    font-family: var(--font-display);
    font-size: 14px;
    color: var(--color-neon);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.process-step h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
}

.process-step p {
    font-size: 13px;
    color: var(--color-muted);
    max-width: 200px;
    margin: 0 auto;
}

.process-line {
    display: none;
}

@media (min-width: 768px) {
    .process-timeline {
        grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
        align-items: start;
    }

    .process-line {
        display: block;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--color-border), transparent);
        margin-top: 56px;
    }
}

/* ===== TESTIMONIAL ===== */
.testimonial-section {
    background: var(--bg-dark);
}

.testimonial-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
    align-items: center;
}

.testimonial-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-gold);
    margin: 0 auto;
}

.testimonial-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.quote-icon {
    font-size: 28px;
    color: var(--color-gold);
    opacity: 0.5;
    margin-bottom: 12px;
}

.testimonial-quote {
    font-size: 17px;
    font-style: italic;
    color: var(--color-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--color-white);
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-muted);
}

.testimonial-stars {
    margin-top: 10px;
    color: var(--color-gold);
    font-size: 14px;
}

@media (min-width: 768px) {
    .testimonial-box {
        grid-template-columns: auto 1fr;
        padding: 48px;
    }

    .testimonial-photo {
        margin: 0;
        width: 140px;
        height: 140px;
    }
}

/* ===== COUNTER ===== */
.counter-section {
    background: linear-gradient(135deg, #12122a 0%, #0a0a18 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 50px 0;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.counter-item {
    text-align: center;
}

.counter-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(32px, 5vw, 48px);
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: 8px;
}

.counter-label {
    font-size: 13px;
    color: var(--color-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (min-width: 768px) {
    .counter-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== PROMOTIONS ===== */
.promos-section {
    background: var(--bg-section);
}

.promos-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.promo-card {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.promo-card:hover {
    transform: translateY(-6px);
    border-color: rgba(232, 185, 35, 0.3);
    box-shadow: var(--shadow-card);
}

.promo-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    background: rgba(232, 185, 35, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: var(--color-gold);
}

.promo-tag {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, var(--color-neon), #00b87a);
    color: #0a0a0f;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    font-size: 11px;
    font-weight: 800;
}

.promo-card h3 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 8px;
}

.promo-card p {
    font-size: 13px;
    color: var(--color-muted);
    margin-bottom: 18px;
}

.btn-promo {
    display: inline-block;
    padding: 10px 28px;
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
    border-radius: var(--radius-sm);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}

.btn-promo:hover {
    background: var(--color-gold);
    color: #0a0a0f;
}

@media (min-width: 576px) {
    .promos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .promos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===== FAQ & BLOG ===== */
.faq-blog-section {
    background: var(--bg-dark);
}

.faq-blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 24px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}

.faq-item.active {
    border-color: rgba(232, 185, 35, 0.3);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 20px;
    background: none;
    border: none;
    color: var(--color-white);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-question i {
    color: var(--color-gold);
    font-size: 14px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 14px;
    color: var(--color-muted);
    line-height: 1.7;
}

.tips-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.tip-card {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 16px;
    background: var(--bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.3s;
}

.tip-card:hover {
    border-color: rgba(232, 185, 35, 0.25);
    transform: translateX(4px);
}

.tip-img-wrap {
    display: block;
    overflow: hidden;
}

.tip-img-wrap img {
    width: 100%;
    height: 100%;
    min-height: 100px;
    object-fit: cover;
    transition: transform 0.4s;
}

.tip-card:hover .tip-img-wrap img {
    transform: scale(1.1);
}

.tip-body {
    padding: 16px 16px 16px 0;
}

.tip-tag {
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--color-neon);
    margin-bottom: 6px;
    display: inline-block;
}

.tip-body h3 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 6px;
}

.tip-body h3 a:hover {
    color: var(--color-gold);
}

.tip-body p {
    font-size: 12px;
    color: var(--color-muted);
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tip-link {
    font-size: 12px;
    font-weight: 600;
    color: var(--color-gold);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

@media (min-width: 992px) {
    .faq-blog-grid {
        grid-template-columns: 1fr 1fr;
    }
}

/* ===== NEWSLETTER BAR ===== */
.newsletter-bar {
    background: linear-gradient(135deg, #1a1030 0%, #12122a 50%, #0f2a1f 100%);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 36px 20px;
}

.newsletter-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.newsletter-text {
    display: flex;
    align-items: center;
    gap: 16px;
}

.newsletter-text > i {
    font-size: 40px;
    color: #29b6f6;
}

.newsletter-text h3 {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.newsletter-text p {
    font-size: 14px;
    color: var(--color-muted);
}

.btn-newsletter {
    padding: 14px 32px;
    background: linear-gradient(135deg, #29b6f6, #0288d1);
    color: white;
    border-radius: var(--radius-md);
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    white-space: nowrap;
    transition: all 0.3s;
}

.btn-newsletter:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(41, 182, 246, 0.4);
}

@media (min-width: 768px) {
    .newsletter-inner {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

/* ===== MOBILE RESPONSIVE OVERRIDES ===== */

@media (max-width: 767px) {
    .section {
        padding: 40px 0;
    }
    
    /* Process Timeline: vertical connecting line on mobile */
    .process-step:not(:last-of-type)::after {
        content: '';
        position: absolute;
        top: 80px; /* Starts below the icon */
        bottom: -20px; /* Goes down into the next step */
        left: 50%;
        transform: translateX(-50%);
        width: 2px;
        background: linear-gradient(180deg, var(--color-border), rgba(232, 185, 35, 0.02));
        z-index: 1;
    }
    .step-icon {
        position: relative;
        z-index: 2;
    }

    /* Testimonials: center alignment on mobile */
    .testimonial-box {
        text-align: center;
        padding: 30px 20px;
    }
    .testimonial-photo {
        margin: 0 auto 16px;
    }
    .testimonial-quote {
        font-size: 15px;
    }
    
    /* Prevent newsletter icon from squeezing */
    .newsletter-text > i {
        flex-shrink: 0;
    }
}

@media (max-width: 575px) {
    /* About Badge: scale down and reposition to avoid overflow */
    .about-badge {
        bottom: -5px;
        right: -5px;
        padding: 10px 14px;
        border-radius: var(--radius-sm);
    }
    .badge-num {
        font-size: 28px;
    }
    .badge-text {
        font-size: 9px;
    }
}

@media (max-width: 480px) {
    /* Stats Section: stack to 1 column to prevent text overflow */
    .stats-box {
        grid-template-columns: 1fr;
        padding: 24px 20px;
        gap: 20px;
    }
    .stat-value {
        font-size: 28px;
    }

    /* Blog Guide Cards: stack vertically for readability */
    .tip-card {
        grid-template-columns: 1fr;
    }
    .tip-img-wrap {
        height: 160px;
        width: 100%;
    }
    .tip-img-wrap img {
        height: 100%;
        width: 100%;
    }
    .tip-body {
        padding: 16px;
    }
}
