/**
 * Public Support & Commerce Pages Stylesheet
 *
 * Extracted inline CSS from support/commerce-style public pages:
 * - gift-vouchers.php
 * - faqs.php
 * - shipping.php
 * - whats-included.php
 *
 * Loaded via PageController page_styles mapping for the public layout.
 *
 * @package SportGene
 */

/* ============================================
   GIFT VOUCHERS PAGE STYLES
   ============================================ */

/* Hero */
.gv-hero {
    background: radial-gradient(circle at 15% 15%, rgba(0, 223, 122, 0.18), transparent 45%),
        radial-gradient(circle at 80% 25%, rgba(74, 144, 226, 0.15), transparent 40%),
        linear-gradient(135deg, #031e47 0%, #031334 55%, #021024 100%);
}

/* Subheader */
.gv-subheader {
    background: linear-gradient(135deg, rgba(3, 30, 71, 0.95) 0%, rgba(3, 30, 71, 0.98) 100%);
}

/* Section Intro */
.gv-section {
    padding: 72px 0;
    scroll-margin-top: 110px;
}

.gv-section__intro {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 48px;
}

.gv-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--sg-accent);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.gv-section__intro h2 {
    margin: 0 0 12px;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--sg-ink);
    letter-spacing: -0.02em;
}

.gv-section__intro p {
    margin: 0;
    color: var(--sg-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Voucher Cards Grid */
.gv-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.gv-card {
    background: #fff;
    border-radius: 20px;
    border: 2px solid rgba(3, 30, 71, 0.08);
    box-shadow: 0 8px 24px rgba(3, 30, 71, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    position: relative;
}

.gv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(3, 30, 71, 0.12);
    border-color: rgba(0, 223, 122, 0.2);
}

.gv-card--featured {
    border: 2px solid rgba(0, 223, 122, 0.3);
    box-shadow: 0 12px 32px rgba(0, 223, 122, 0.15);
}

.gv-card__ribbon {
    position: absolute;
    top: 16px;
    right: -28px;
    background: linear-gradient(135deg, #00DF7A 0%, #00C96E 100%);
    color: #031E47;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 32px;
    transform: rotate(45deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.gv-card__visual {
    background: linear-gradient(180deg, rgba(0, 223, 122, 0.06) 0%, rgba(74, 144, 226, 0.04) 100%);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border-bottom: 1px solid rgba(3, 30, 71, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gv-card__visual--featured {
    background: linear-gradient(180deg, rgba(0, 223, 122, 0.12) 0%, rgba(74, 144, 226, 0.08) 100%);
}

.gv-card__visual--complete {
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.12) 0%, rgba(168, 85, 247, 0.08) 100%);
}

.gv-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 0 16px 0;
    background: rgba(0, 223, 122, 0.1);
    color: #00DF7A;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-card__icon svg {
    width: 32px;
    height: 32px;
}

.gv-card__icon--featured {
    background: rgba(0, 223, 122, 0.15);
    color: #00C96E;
}

.gv-card__icon--featured svg {
    width: 32px;
    height: 32px;
}

.gv-card__icon--complete {
    background: rgba(99, 102, 241, 0.15);
    color: #6366F1;
}

.gv-card__icon--complete svg {
    width: 32px;
    height: 32px;
}

.gv-card__value {
    font-size: 3rem;
    font-weight: 900;
    color: var(--sg-ink);
    line-height: 1;
    margin-bottom: 8px;
    text-align: center;
}

.gv-card__content {
    padding: 24px;
}

.gv-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--sg-ink);
    margin: 0 0 8px;
}

.gv-card__subtitle {
    font-size: 0.95rem;
    color: var(--sg-muted);
    margin: 0 0 20px;
    line-height: 1.5;
}

.gv-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gv-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--sg-ink);
    line-height: 1.4;
}

.gv-card__features svg {
    color: #00DF7A;
    flex-shrink: 0;
}

.gv-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px 20px;
    background: var(--sg-ink);
    color: #fff;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.2s ease;
}

.gv-card__btn:hover {
    background: #062a52;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(3, 30, 71, 0.2);
}

.gv-card__btn--featured {
    background: #00DF7A;
    color: #031E47;
}

.gv-card__btn--featured:hover {
    background: #00C96E;
}

/* How It Works Section */
.gv-how-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.gv-how-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.gv-how__header {
    text-align: center;
    margin-bottom: 48px;
}

.gv-how__header .gv-kicker {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 223, 122, 0.1);
    color: #00DF7A;
    font-weight: 700;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    border-radius: 100px;
    margin-bottom: 16px;
}

.gv-how__header h2 {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--sg-ink);
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.gv-how__header p {
    font-size: 1.1rem;
    color: var(--sg-muted);
    line-height: 1.7;
    margin: 0;
}
.gv-how {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 80px 0;
}

.gv-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 48px auto 0;
}

.gv-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    text-align: left;
    position: relative;
}

.gv-step__number {
    width: 48px;
    height: 48px;
    margin: 0;
    flex-shrink: 0;
    background: linear-gradient(135deg, #00DF7A 0%, #00C96E 100%);
    color: #031E47;
    font-weight: 900;
    font-size: 1.25rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 223, 122, 0.3);
}

.gv-step__content h3 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sg-ink);
    margin: 0 0 8px;
}

.gv-step__content p {
    font-size: 1rem;
    color: var(--sg-muted);
    line-height: 1.6;
    margin: 0;
}

.gv-step__connector {
    width: 2px;
    height: 24px;
    background: linear-gradient(180deg, #00DF7A 0%, #4A90E2 100%);
    margin: 0 0 0 24px;
    opacity: 0.3;
}

.gv-security-note {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-top: 48px;
    padding: 24px;
    background: linear-gradient(135deg, rgba(0, 223, 122, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    border: 2px solid rgba(0, 223, 122, 0.15);
    border-radius: 16px;
}

.gv-security-note__icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    color: #00DF7A;
}

.gv-security-note__content {
    flex: 1;
    font-size: 0.95rem;
    color: var(--sg-muted);
    line-height: 1.6;
}

.gv-security-note__content strong {
    color: var(--sg-ink);
    font-weight: 700;
}

/* Features Section */
.gv-features {
    padding: 72px 0;
}

.gv-features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.gv-feature {
    text-align: center;
}

.gv-feature__icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(0, 223, 122, 0.1);
    color: #00DF7A;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.gv-feature__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sg-ink);
    margin: 0 0 12px;
}

.gv-feature__text {
    font-size: 0.95rem;
    color: var(--sg-muted);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.gv-cta {
    background: radial-gradient(circle at 15% 15%, rgba(0, 223, 122, 0.18), transparent 45%),
        radial-gradient(circle at 80% 25%, rgba(74, 144, 226, 0.15), transparent 40%),
        linear-gradient(135deg, #031e47 0%, #031334 55%, #021024 100%);
    padding: 88px 0;
    text-align: center;
}

.gv-cta__title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
}

.gv-cta__subtitle {
    font-size: 1.15rem;
    color: rgba(234, 245, 255, 0.8);
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.gv-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Gift Vouchers Responsive */
@media (max-width: 1024px) {
    .gv-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .gv-grid,
    .gv-features-grid {
        grid-template-columns: 1fr;
    }

    .gv-section {
        padding: 48px 0;
    }

    .gv-how-section {
        padding: 48px 0;
    }

    .gv-steps {
        gap: 20px;
    }

    .gv-step {
        gap: 16px;
    }

    .gv-step__number {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }

    .gv-security-note {
        flex-direction: column;
        gap: 12px;
        padding: 20px;
    }

    .gv-section__intro h2 {
        font-size: 1.8rem;
    }

    .gv-cta {
        padding: 64px 0;
    }

    .gv-cta__title {
        font-size: 2rem;
    }
}

/* Gift Vouchers Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .gv-card,
    .gv-card__btn {
        transition: none;
    }

    .gv-card:hover,
    .gv-card__btn:hover {
        transform: none;
    }
}


/* ============================================
   FAQs PAGE STYLES
   ============================================ */

/* Main FAQ Page Container */
.faq-page {
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    padding: 72px 0;
}

.faq-page__container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Meta info */
.faq-page__meta {
    text-align: center;
    font-size: 0.9rem;
    color: var(--sg-muted);
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid rgba(3, 30, 71, 0.1);
}

.faq-page__meta-divider {
    margin: 0 12px;
    color: rgba(3, 30, 71, 0.3);
}

/* Topic Grid */
.faq-topic-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 56px;
}

.faq-topic-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 32px 24px;
    background: #ffffff;
    border: 2px solid rgba(3, 30, 71, 0.08);
    border-radius: 16px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.faq-topic-card:hover {
    transform: translateY(-4px);
    border-color: rgba(0, 223, 122, 0.3);
    box-shadow: 0 12px 32px rgba(0, 223, 122, 0.15);
}

.faq-topic-card__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 223, 122, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    border-radius: 12px;
    margin-bottom: 16px;
    color: var(--sg-accent);
}

.faq-topic-card__icon svg {
    width: 24px;
    height: 24px;
}

.faq-topic-card__title {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sg-ink);
    margin-bottom: 8px;
}

.faq-topic-card__text {
    font-size: 0.9rem;
    color: var(--sg-muted);
    line-height: 1.5;
}

/* FAQ Categories */
.faq-category {
    margin-bottom: 56px;
    scroll-margin-top: 120px;
}

.faq-category__title {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--sg-ink);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

/* FAQ List */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(3, 30, 71, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(0, 223, 122, 0.15);
}

.faq-item[open] {
    border-color: rgba(0, 223, 122, 0.2);
    box-shadow: 0 4px 16px rgba(0, 223, 122, 0.08);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--sg-ink);
    line-height: 1.4;
    list-style: none;
    transition: color 0.2s ease;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question:hover {
    color: var(--sg-accent);
}

.faq-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    position: relative;
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background-color: currentColor;
    transition: transform 0.3s ease;
}

.faq-icon::before {
    width: 2px;
    height: 12px;
    left: 9px;
    top: 4px;
}

.faq-icon::after {
    width: 12px;
    height: 2px;
    left: 4px;
    top: 9px;
}

.faq-item[open] .faq-icon::before {
    transform: rotate(90deg);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--sg-muted);
    line-height: 1.7;
    font-size: 1rem;
}

.faq-answer p {
    margin: 0;
}

.faq-answer a {
    color: var(--sg-accent);
    text-decoration: none;
    font-weight: 600;
}

.faq-answer a:hover {
    text-decoration: underline;
}

/* Guarantee Section */
.faq-page__guarantee {
    margin-top: 64px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(0, 223, 122, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    border: 2px solid rgba(0, 223, 122, 0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.faq-page__guarantee-copy {
    flex: 1;
}

.faq-page__guarantee-link {
    display: inline-flex;
    align-items: center;
    padding: 12px 28px;
    background: var(--sg-accent);
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    border-radius: 100px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.faq-page__guarantee-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 223, 122, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .faq-page {
        padding: 48px 0;
    }

    .faq-topic-grid {
        grid-template-columns: 1fr;
    }

    .faq-category__title {
        font-size: 1.5rem;
    }

    .faq-question {
        padding: 16px 20px;
        font-size: 1rem;
    }

    .faq-answer {
        padding: 0 20px 20px;
    }

    .faq-page__guarantee {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
    }

    .pricing-guarantee__icon {
        margin: 0 auto;
    }
}

/* Legacy FAQ Section (for compatibility) */
.faq-section {
    padding: 72px 0;
}

.faq-section__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.faq-section__intro h2 {
    margin: 0 0 16px;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--sg-ink);
}

.faq-section__intro p {
    margin: 0;
    color: var(--sg-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(3, 30, 71, 0.08);
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.2s ease;
}

.faq-item:hover {
    border-color: rgba(0, 223, 122, 0.2);
}

.faq-item__question {
    margin: 0 0 12px;
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--sg-ink);
    line-height: 1.4;
}

.faq-item__answer {
    margin: 0;
    color: var(--sg-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.faq-cta {
    background: linear-gradient(135deg, #031E47 0%, #08295f 100%);
    padding: 72px 0;
    text-align: center;
}

.faq-cta__title {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
}

.faq-cta__subtitle {
    font-size: 1.1rem;
    color: rgba(234, 245, 255, 0.8);
    margin: 0 0 32px;
}

.faq-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* FAQs Responsive */
@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .faq-section {
        padding: 48px 0;
    }

    .faq-section__intro h2 {
        font-size: 1.8rem;
    }
}


/* ============================================
   SHIPPING PAGE STYLES
   ============================================ */

.shipping-section {
    padding: 72px 0;
}

.shipping-section__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.shipping-section__intro h2 {
    margin: 0 0 16px;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--sg-ink);
}

.shipping-section__intro p {
    margin: 0;
    color: var(--sg-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.shipping-card {
    background: #fff;
    border: 1px solid rgba(3, 30, 71, 0.08);
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 32px;
}

.shipping-card__icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    background: rgba(0, 223, 122, 0.1);
    color: #00DF7A;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shipping-card__title {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--sg-ink);
    margin: 0 0 16px;
    text-align: center;
}

.shipping-card__content {
    color: var(--sg-muted);
    line-height: 1.8;
    font-size: 1.05rem;
}

.shipping-card__content p {
    margin: 0 0 12px;
}

.shipping-card__content p:last-child {
    margin-bottom: 0;
}

.shipping-timeline {
    position: relative;
    padding-left: 60px;
}

.shipping-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #00DF7A 0%, #4A90E2 100%);
}

.shipping-step {
    position: relative;
    margin-bottom: 32px;
}

.shipping-step__number {
    position: absolute;
    left: -40px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #00DF7A 0%, #00C96E 100%);
    color: #031E47;
    font-weight: 900;
    font-size: 1.1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 223, 122, 0.3);
}

.shipping-step__title {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--sg-ink);
    margin: 0 0 8px;
}

.shipping-step__text {
    margin: 0;
    color: var(--sg-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.shipping-cta {
    background: radial-gradient(circle at 15% 15%, rgba(0, 223, 122, 0.18), transparent 45%),
        radial-gradient(circle at 80% 25%, rgba(74, 144, 226, 0.15), transparent 40%),
        linear-gradient(135deg, #031e47 0%, #031334 55%, #021024 100%);
    padding: 88px 0;
    text-align: center;
}

.shipping-cta__title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
}

.shipping-cta__subtitle {
    font-size: 1.15rem;
    color: rgba(234, 245, 255, 0.8);
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.shipping-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Shipping Responsive */
@media (max-width: 768px) {
    .shipping-section {
        padding: 48px 0;
    }

    .shipping-section__intro h2 {
        font-size: 1.8rem;
    }

    .shipping-card {
        padding: 28px;
    }

    .shipping-timeline {
        padding-left: 0;
    }

    .shipping-timeline::before {
        display: none;
    }

    .shipping-step__number {
        position: static;
        margin: 0 0 16px;
    }

    .shipping-cta {
        padding: 64px 0;
    }

    .shipping-cta__title {
        font-size: 2rem;
    }
}


/* ============================================
   WHAT'S INCLUDED PAGE STYLES
   ============================================ */

.wi-section {
    padding: 72px 0;
}

.wi-section__intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
}

.wi-section__intro h2 {
    margin: 0 0 16px;
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--sg-ink);
}

.wi-section__intro p {
    margin: 0;
    color: var(--sg-muted);
    line-height: 1.7;
    font-size: 1.05rem;
}

.wi-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
    margin-bottom: 48px;
}

.wi-card {
    background: #fff;
    border: 1px solid rgba(3, 30, 71, 0.08);
    border-radius: 18px;
    padding: 32px;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.wi-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(3, 30, 71, 0.1);
    border-color: rgba(0, 223, 122, 0.15);
}

.wi-card__icon {
    width: 64px;
    height: 64px;
    margin: 0 0 20px;
    background: rgba(0, 223, 122, 0.1);
    color: #00DF7A;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wi-card__title {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--sg-ink);
    margin: 0 0 12px;
}

.wi-card__text {
    margin: 0;
    color: var(--sg-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}

.wi-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 0 0;
}

.wi-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--sg-ink);
    line-height: 1.6;
}

.wi-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 2px;
    font-size: 18px;
    color: #00DF7A;
    font-weight: bold;
}

.wi-cta {
    background: radial-gradient(circle at 15% 15%, rgba(0, 223, 122, 0.18), transparent 45%),
        radial-gradient(circle at 80% 25%, rgba(74, 144, 226, 0.15), transparent 40%),
        linear-gradient(135deg, #031e47 0%, #031334 55%, #021024 100%);
    padding: 88px 0;
    text-align: center;
}

.wi-cta__title {
    font-size: 2.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0 0 16px;
}

.wi-cta__subtitle {
    font-size: 1.15rem;
    color: rgba(234, 245, 255, 0.8);
    margin: 0 0 32px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.wi-cta__actions {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* What's Included Responsive */
@media (max-width: 1024px) {
    .wi-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .wi-grid {
        grid-template-columns: 1fr;
    }

    .wi-section {
        padding: 48px 0;
    }

    .wi-section__intro h2 {
        font-size: 1.8rem;
    }

    .wi-cta {
        padding: 64px 0;
    }

    .wi-cta__title {
        font-size: 2rem;
    }
}

/* What's Included Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .wi-card {
        transition: none;
    }

    .wi-card:hover {
        transform: none;
    }
}
