/* =====================================================
   winning-how.css
   How It Works page styles
   ===================================================== */

/* --- Hero --- */
.winning-how-hero {
    background: linear-gradient(135deg, var(--wc-dark) 0%, var(--wc-dark-mid) 50%, var(--wc-dark-deep) 100%);
    padding: 100px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}
.winning-how-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.74);
    z-index: 0;
}
.winning-how-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.winning-how-hero__title {
    font-size: 40px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin-bottom: 18px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.25);
}
.winning-how-hero__text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.55;
    color: rgba(255,255,255,0.92);
    max-width: 640px;
    margin: 0 auto 32px;
    text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}

@media (max-width: 1024px) {
    .winning-how-hero { padding: 80px 24px 64px; }
    .winning-how-hero__title { font-size: 32px; }
    .winning-how-hero__text { font-size: var(--wc-p-size); }
}
@media (max-width: 767px) {
    .winning-how-hero { padding: 60px 16px 48px; }
    .winning-how-hero__title { font-size: 26px; font-weight: 600; }
    .winning-how-hero__text { font-size: var(--wc-p-size); }
}


/* --- Generic section bases --- */
.winning-how-section {
    padding: 80px 24px;
}
.winning-how-section--white { background: var(--wc-white); }
.winning-how-section--grey { background: var(--wc-grey-light); }
.winning-how-section--dark {
    background: var(--wc-dark);
    color: var(--wc-white);
}
.winning-how-section__inner {
    max-width: var(--wc-max-width);
    margin: 0 auto;
}
.winning-how-section__title {
    font-size: var(--wc-h2-size);
    font-weight: 700;
    color: var(--wc-dark);
    margin-bottom: 24px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.winning-how-section__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--wc-blue);
    border-radius: 2px;
}
.winning-how-section--dark .winning-how-section__title {
    color: var(--wc-white);
}
.winning-how-section--dark .winning-how-section__title::after {
    background: var(--wc-yellow);
}
.winning-how-section__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wc-text);
    margin-bottom: 20px;
    max-width: 860px;
}
.winning-how-section__text strong { color: var(--wc-dark); }
.winning-how-section--dark .winning-how-section__text {
    color: rgba(255,255,255,0.85);
}
.winning-how-section--dark .winning-how-section__text strong {
    color: var(--wc-white);
}
.winning-how-section__text a { color: var(--wc-blue); }
.winning-how-section__text a:hover { color: var(--wc-blue-dark); }
.winning-how-section--dark .winning-how-section__text a { color: var(--wc-yellow); }
.winning-how-section--dark .winning-how-section__text a:hover { color: var(--wc-yellow-hover); }

/* Bullet list */
.winning-how-section__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.winning-how-section__list li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wc-text);
    padding: 10px 16px 10px 36px;
    position: relative;
    border-radius: var(--wc-radius);
}
.winning-how-section__list li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--wc-blue);
    border-radius: 50%;
}
.winning-how-section__list li:nth-child(odd) { background: rgba(31,95,160,0.03); }
.winning-how-section__list li:nth-child(even) { background: var(--wc-white); }
.winning-how-section__list a { color: var(--wc-blue); }

@media (max-width: 767px) {
    .winning-how-section { padding: 52px 16px; text-align: center; }
    .winning-how-section__title { font-size: var(--wc-h3-size); }
    .winning-how-section__title::after { left: 50%; transform: translateX(-50%); }
    .winning-how-section__text { font-size: var(--wc-p-size); }
    .winning-how-section__list { text-align: left; }
}

