/* ============================================================
   Haya Pharmacy — World Cup Campaign CSS
   Extends partner-2.css with WC-specific styles
   ============================================================ */

/* ─── Hero Section ─────────────────────────────────────────── */
.wc-hero-section {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #013022 0%, #01452f 40%, #015645 70%, #016b52 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.wc-hero-overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(187, 153, 96, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* Floating decorations */
.wc-ball-1, .wc-ball-2, .wc-ball-3 {
    position: absolute;
    font-size: 5rem;
    opacity: 0.08;
    animation: wcFloat 6s ease-in-out infinite;
    pointer-events: none;
}
.wc-ball-1 { top: 10%; left: 5%; animation-delay: 0s; font-size: 4rem; }
.wc-ball-2 { bottom: 15%; right: 8%; animation-delay: 2s; font-size: 6rem; }
.wc-ball-3 { top: 60%; left: 2%; animation-delay: 4s; font-size: 3rem; }

@keyframes wcFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50%       { transform: translateY(-20px) rotate(10deg); }
}

.wc-hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
    padding: 6rem 4rem 4rem;
    max-width: 1300px;
    margin: 0 auto;
    width: 100%;
}

/* Hero Text */
.wc-hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #BB9960, #e4c07a);
    color: #013022;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.4rem 1.2rem;
    border-radius: 999px;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    animation: slideInRight 0.8s ease both;
}

.wc-hero-title {
    font-size: clamp(2rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.25;
    margin-bottom: 1.5rem;
    animation: slideInRight 0.9s ease 0.1s both;
}

.wc-gold-text {
    display: block;
    background: linear-gradient(135deg, #BB9960, #e4c07a, #BB9960);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.wc-hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    animation: slideInRight 1s ease 0.2s both;
}

/* Language switcher */
.wc-lang-bar {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    animation: slideInRight 1s ease 0.3s both;
}
.wc-lang-btn {
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.7);
    padding: 0.4rem 1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    font-family: var(--font-arabic);
    transition: all 0.3s ease;
}
.wc-lang-btn.active, .wc-lang-btn:hover {
    background: linear-gradient(135deg, #BB9960, #e4c07a);
    border-color: transparent;
    color: #013022;
}
.wc-lang-divider { color: rgba(255,255,255,0.3); }

/* CTA Button */
.wc-hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #BB9960, #e4c07a);
    color: #013022;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-size: 1.2rem;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(187, 153, 96, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInRight 1.1s ease 0.4s both;
}
.wc-hero-cta:hover {
    transform: scale(1.05) translateY(-2px);
    box-shadow: 0 16px 50px rgba(187, 153, 96, 0.7);
}

/* Hero Visual */
.wc-hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: slideInLeft 1s ease 0.3s both;
}
.wc-hero-img {
    max-width: 100%;
    width: 480px;
    border-radius: 2rem;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    animation: wcHeroFloat 5s ease-in-out infinite;
}
@keyframes wcHeroFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-14px); }
}

.wc-hero-flag-stripe {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 6px;
    background: linear-gradient(90deg, #ce1126 33%, #fff 33%, #fff 66%, #007a3d 66%);
    border-radius: 3px;
    opacity: 0.7;
}

/* ─── Prizes Section ─────────────────────────────────────────── */
.wc-prizes-section {
    padding: 5rem 4rem;
    background: var(--haya-beige);
}
.wc-prizes-container { max-width: 1200px; margin: 0 auto; }

.wc-section-title {
    text-align: center;
    font-size: clamp(1.8rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--haya-green);
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}
.wc-section-title.visible {
    opacity: 1;
    transform: translateY(0);
}

.wc-prizes-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
.wc-prize-card {
    background: #fff;
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.5s ease, transform 0.5s ease;
    max-width: 380px;
    width: 100%;
}
.wc-prize-card.visible {
    opacity: 1;
    transform: translateY(0);
}
.wc-prize-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.12);
}
.wc-prize-card--highlight {
    background: linear-gradient(135deg, #013022, #01452f);
    color: #fff;
}
.wc-prize-card--highlight h3 { color: #BB9960; }
.wc-prize-card--highlight p { color: rgba(255,255,255,0.8); }
.wc-prize-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.wc-prize-card h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--haya-green);
    margin-bottom: 0.75rem;
}
.wc-prize-card p { color: #666; font-size: 0.95rem; line-height: 1.7; }
.wc-prize-badge {
    position: absolute;
    top: -12px;
    right: 50%;
    transform: translateX(50%);
    background: linear-gradient(135deg, #BB9960, #e4c07a);
    color: #013022;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 0.3rem 1rem;
    border-radius: 999px;
    white-space: nowrap;
}

.wc-prizes-cta { text-align: center; }
.wc-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #013022, #01452f);
    color: #fff;
    padding: 1rem 3rem;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(1, 48, 34, 0.3);
}
.wc-btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 16px 40px rgba(1, 48, 34, 0.4);
}

/* ─── How Section ─────────────────────────────────────────── */
.wc-how-section {
    padding: 5rem 4rem;
    background: #fff;
}
.wc-how-container { max-width: 1000px; margin: 0 auto; text-align: center; }
.wc-steps-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}
.wc-how-step {
    background: var(--haya-beige);
    border-radius: 1.5rem;
    padding: 2rem 1.5rem;
    min-width: 200px;
    flex: 1;
    max-width: 240px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.wc-how-step.visible { opacity: 1; transform: translateY(0); }
.wc-how-num {
    width: 3.5rem;
    height: 3.5rem;
    background: linear-gradient(135deg, #013022, #01452f);
    color: #fff;
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}
.wc-how-step h3 { font-size: 1.1rem; font-weight: 800; color: var(--haya-green); margin-bottom: 0.5rem; }
.wc-how-step p { font-size: 0.9rem; color: #666; }
.wc-how-arrow { font-size: 2rem; color: #BB9960; font-weight: 900; }

/* ─── Instagram CTA Section ─────────────────────────────────── */
.wc-ig-section {
    background: linear-gradient(135deg, #013022 0%, #01452f 100%);
    padding: 5rem 4rem;
    text-align: center;
}
.wc-ig-inner { max-width: 700px; margin: 0 auto; }
.wc-ig-flags { font-size: 3rem; margin-bottom: 1.5rem; }
.wc-ig-section h2 { color: #BB9960; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 900; margin-bottom: 1rem; }
.wc-ig-section p { color: rgba(255,255,255,0.8); font-size: 1.05rem; margin-bottom: 2.5rem; }
.wc-btn-ig {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #E1306C, #F77737, #FCAF45);
    color: #fff;
    padding: 1rem 2.5rem;
    border-radius: 999px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.4);
}
.wc-btn-ig:hover { transform: scale(1.06); box-shadow: 0 16px 40px rgba(225, 48, 108, 0.6); }

/* ─── Sticky CTA ─────────────────────────────────────────── */
.wc-sticky-cta {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    z-index: 500;
    background: linear-gradient(135deg, #BB9960, #e4c07a);
    color: #013022;
    padding: 0.85rem 1.8rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(187, 153, 96, 0.5);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    opacity: 0;
    transform: translateY(80px);
    pointer-events: none;
}
.wc-sticky-cta.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}
.wc-sticky-cta:hover { transform: scale(1.06) translateY(-2px); }

/* ─── Modal ─────────────────────────────────────────────── */
.wc-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}
.wc-modal-overlay.open {
    display: flex;
    animation: wcModalFadeIn 0.3s ease both;
}
@keyframes wcModalFadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.wc-modal {
    background: #fff;
    border-radius: 2rem;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.35);
    animation: wcModalSlideIn 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes wcModalSlideIn {
    from { opacity: 0; transform: translateY(60px) scale(0.93); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* Modal Header */
.wc-modal-header {
    background: linear-gradient(135deg, #013022, #01452f);
    padding: 1.5rem 1.75rem;
    border-radius: 2rem 2rem 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wc-modal-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-weight: 800;
    font-size: 1rem;
}
.wc-modal-logo img { height: 2.5rem; object-fit: contain; filter: brightness(0) invert(1); }
.wc-modal-close {
    background: rgba(255,255,255,0.15);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    font-family: sans-serif;
}
.wc-modal-close:hover { background: rgba(255,255,255,0.25); }

/* Progress Bar */
.wc-progress {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem 2rem;
    background: var(--haya-beige);
    gap: 0;
}
.wc-progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    flex: 0 0 auto;
}
.wc-progress-dot {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    background: #ddd;
    color: #999;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.wc-progress-step.active .wc-progress-dot {
    background: linear-gradient(135deg, #013022, #01452f);
    color: #fff;
    box-shadow: 0 4px 12px rgba(1,48,34,0.3);
}
.wc-progress-step.done .wc-progress-dot {
    background: linear-gradient(135deg, #BB9960, #e4c07a);
    color: #013022;
}
.wc-progress-step span {
    font-size: 0.7rem;
    color: #888;
    font-weight: 600;
}
.wc-progress-step.active span, .wc-progress-step.done span { color: #013022; }
.wc-progress-line {
    flex: 1;
    height: 2px;
    background: #ddd;
    min-width: 2.5rem;
    margin: 0 0.25rem;
    margin-bottom: 1.1rem;
    transition: background 0.3s ease;
}

/* Form Container */
.wc-form-container {
    padding: 2rem 1.75rem 1.5rem;
}
.wc-form-container.hide { display: none; }

.wc-step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.75rem;
}
.wc-step-num {
    width: 2.25rem;
    height: 2.25rem;
    background: linear-gradient(135deg, #013022, #01452f);
    color: #fff;
    border-radius: 50%;
    font-weight: 900;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.wc-step-title {
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--haya-green);
    margin: 0;
}

/* Form Controls */
.wc-form-group { margin-bottom: 1.25rem; }
.wc-form-control {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.875rem;
    font-size: 1rem;
    font-family: var(--font-arabic);
    color: #1a1a1a;
    outline: none;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
    background: #fafafa;
    -webkit-appearance: none;
    appearance: none;
}
.wc-form-control:focus {
    border-color: #013022;
    box-shadow: 0 0 0 3px rgba(1,48,34,0.1);
    background: #fff;
}
.wc-select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23013022' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
}

.wc-phone-wrap {
    display: flex;
    border: 2px solid #e5e5e5;
    border-radius: 0.875rem;
    overflow: hidden;
    background: #fafafa;
    transition: border-color 0.25s ease;
}
.wc-phone-wrap:focus-within {
    border-color: #013022;
    box-shadow: 0 0 0 3px rgba(1,48,34,0.1);
    background: #fff;
}
.wc-phone-prefix {
    display: flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0 0.85rem;
    background: #f0ede8;
    border-left: 2px solid #e5e5e5;
    font-weight: 700;
    color: #013022;
    font-size: 0.9rem;
    white-space: nowrap;
}
.wc-flag-img { width: 1.4rem; height: auto; }
.wc-phone-input {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    border-radius: 0 !important;
    flex: 1;
}

/* Radio Group */
.wc-radio-group {
    display: flex;
    gap: 0.75rem;
}
.wc-radio-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.875rem;
    cursor: pointer;
    font-weight: 700;
    color: #555;
    transition: all 0.25s ease;
}
.wc-radio-btn:has(input:checked) {
    border-color: #013022;
    background: #013022;
    color: #fff;
}
.wc-radio-btn input { position: absolute; opacity: 0; pointer-events: none; }

/* Team Buttons */
.wc-label {
    display: block;
    font-weight: 700;
    color: #013022;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}
.wc-team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}
.wc-team-btn {
    padding: 0.55rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    background: #fff;
    color: #333;
    font-family: var(--font-arabic);
    transition: all 0.25s ease;
}
.wc-team-btn:hover { border-color: #BB9960; color: #BB9960; }
.wc-team-btn.selected {
    background: linear-gradient(135deg, #013022, #01452f);
    border-color: transparent;
    color: #fff;
}

/* Consent */
.wc-consent-block { display: flex; flex-direction: column; gap: 1rem; margin-bottom: 1.5rem; }
.wc-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
}
.wc-checkbox-label input[type="checkbox"] {
    width: 1.2rem;
    height: 1.2rem;
    accent-color: #013022;
    cursor: pointer;
    flex-shrink: 0;
    margin-top: 0.2rem;
}
.wc-checkbox-text { font-size: 0.9rem; color: #444; line-height: 1.6; }

/* Buttons */
.wc-step-nav {
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    margin-top: 0.5rem;
}
.wc-btn-next, .wc-btn-submit {
    background: linear-gradient(135deg, #013022, #01452f);
    color: #fff;
    border: none;
    border-radius: 0.875rem;
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 800;
    cursor: pointer;
    font-family: var(--font-arabic);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    flex: 1;
}
.wc-btn-next:hover, .wc-btn-submit:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 24px rgba(1,48,34,0.3);
}
.wc-btn-back {
    background: #f0ede8;
    color: #013022;
    border: none;
    border-radius: 0.875rem;
    padding: 0.9rem 1.5rem;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: var(--font-arabic);
    transition: background 0.25s ease;
    flex: 0 0 auto;
}
.wc-btn-back:hover { background: #e0d8d0; }

/* Error Messages */
.wc-error {
    display: block;
    color: #e53e3e;
    font-size: 0.82rem;
    margin-top: 0.35rem;
    min-height: 0;
    opacity: 0;
    transition: opacity 0.2s;
}
.wc-error.show { opacity: 1; }

/* Success Screen */
.wc-success-screen { padding: 2rem 1.75rem; }
.wc-success-screen.hide { display: none; }
.wc-success-inner { text-align: center; }
.wc-success-trophy {
    font-size: 5rem;
    margin-bottom: 1rem;
    animation: wcTrophyPop 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) both;
}
@keyframes wcTrophyPop {
    from { opacity: 0; transform: scale(0); }
    to   { opacity: 1; transform: scale(1); }
}
.wc-success-title {
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--haya-green);
    margin-bottom: 0.75rem;
}
.wc-success-body {
    color: #555;
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
.wc-btn-ig-follow {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #E1306C, #F77737);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: transform 0.3s ease;
}
.wc-btn-ig-follow:hover { transform: scale(1.04); }

/* Health Card */
.wc-health-card {
    background: var(--haya-beige);
    border-radius: 1.25rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: right;
}
[lang="en"] .wc-health-card { text-align: left; }
.wc-health-title {
    font-size: 1rem;
    font-weight: 900;
    color: var(--haya-green);
    margin-bottom: 0.35rem;
}
.wc-health-sub { font-size: 0.85rem; color: #666; margin-bottom: 1rem; }
.wc-health-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}
.wc-health-item {
    background: #fff;
    padding: 0.65rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
    font-weight: 700;
    color: #013022;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

/* Instagram Block in Success */
.wc-ig-block { text-align: center; }
.wc-btn-ig-main {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: linear-gradient(135deg, #E1306C, #F77737, #FCAF45);
    color: #fff;
    padding: 0.85rem 2rem;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.3s ease;
    margin-bottom: 0.5rem;
}
.wc-btn-ig-main:hover { transform: scale(1.04); }
.wc-ig-sub { font-size: 0.82rem; color: #888; }

/* Animate on scroll class */
.wc-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.wc-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 992px) {
    .wc-hero-inner {
        grid-template-columns: 1fr;
        padding: 5rem 2rem 3rem;
        text-align: center;
    }
    .wc-hero-text { order: 1; }
    .wc-hero-visual { order: 0; margin-bottom: 2rem; }
    .wc-hero-img { width: 320px; }
    .wc-lang-bar { justify-content: center; }
    .wc-hero-cta { justify-content: center; }
    .wc-how-arrow { display: none; }
    .wc-prizes-section { padding: 4rem 2rem; }
    .wc-how-section { padding: 4rem 2rem; }
    .wc-ig-section { padding: 4rem 2rem; }
}

@media (max-width: 576px) {
    .wc-modal { border-radius: 1.5rem 1.5rem 0 0; max-height: 96vh; }
    .wc-modal-overlay { align-items: flex-end; padding: 0; }
    .wc-team-grid { gap: 0.5rem; }
    .wc-team-btn { font-size: 0.8rem; padding: 0.45rem 0.75rem; }
    .wc-health-grid { grid-template-columns: 1fr; }
    .wc-how-step { min-width: 140px; }
}

/* Scrollbar for modal */
.wc-modal::-webkit-scrollbar { width: 6px; }
.wc-modal::-webkit-scrollbar-track { background: #f0ede8; }
.wc-modal::-webkit-scrollbar-thumb { background: #013022; border-radius: 3px; }
