/* =====================================================
   winning-copywriting-standalone.css
   Standalone Copywriting page styles
   ===================================================== */

/* --- Hero --- */
.winning-cws-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-cws-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 46, 0.74);
    z-index: 0;
}
.winning-cws-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}
.winning-cws-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-cws-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-cws-hero { padding: 80px 24px 64px; }
    .winning-cws-hero__title { font-size: 32px; }
    .winning-cws-hero__text { font-size: var(--wc-p-size); }
}
@media (max-width: 767px) {
    .winning-cws-hero { padding: 60px 16px 48px; }
    .winning-cws-hero__title { font-size: 26px; font-weight: 600; }
    .winning-cws-hero__text { font-size: var(--wc-p-size); }
}


/* --- Intro — white bg --- */
.winning-cws-intro {
    padding: 80px 24px;
    background: var(--wc-white);
}
.winning-cws-intro__inner {
    max-width: var(--wc-max-width);
    margin: 0 auto;
}
.winning-cws-intro__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-cws-intro__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--wc-blue);
    border-radius: 2px;
}
.winning-cws-intro__text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--wc-text);
    margin-bottom: 20px;
    max-width: 860px;
}
.winning-cws-intro__text a { color: var(--wc-blue); transition: color var(--wc-transition); }
.winning-cws-intro__text a:hover { color: var(--wc-blue-dark); }

/* Bullet list */
.winning-cws-intro__list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}
.winning-cws-intro__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-cws-intro__list li::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 18px;
    width: 8px;
    height: 8px;
    background: var(--wc-blue);
    border-radius: 50%;
}
.winning-cws-intro__list li:nth-child(odd) { background: rgba(31,95,160,0.03); }
.winning-cws-intro__list li:nth-child(even) { background: var(--wc-white); }

@media (max-width: 767px) {
    .winning-cws-intro { padding: 52px 16px; text-align: center; }
    .winning-cws-intro__title::after { left: 50%; transform: translateX(-50%); }
    .winning-cws-intro__list { text-align: left; }
}


/* --- Skills — dark accented card on grey bg --- */
.winning-cws-skills {
    padding: 72px 24px;
    background: var(--wc-grey-light);
}
.winning-cws-skills__inner {
    max-width: 760px;
    margin: 0 auto;
}
.winning-cws-skills__box {
    background: var(--wc-dark);
    border-radius: var(--wc-radius);
    border-top: 4px solid var(--wc-yellow);
    padding: 40px 36px;
    text-align: center;
}
.winning-cws-skills__title {
    font-size: var(--wc-h2-size);
    font-weight: 700;
    color: var(--wc-white);
    margin-bottom: 28px;
    position: relative;
    display: inline-block;
    padding-bottom: 12px;
}
.winning-cws-skills__title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--wc-yellow);
    border-radius: 2px;
}
.winning-cws-skills__group {
    margin-bottom: 24px;
}
.winning-cws-skills__group:last-child { margin-bottom: 0; }
.winning-cws-skills__label {
    font-size: 15px;
    font-weight: 700;
    color: var(--wc-yellow);
    margin-bottom: 10px;
}
.winning-cws-skills__text {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255,255,255,0.85);
    margin: 0;
}

@media (max-width: 767px) {
    .winning-cws-skills { padding: 52px 16px; }
    .winning-cws-skills__box { padding: 28px 20px; }
}
