/* ═══ CAMPAIGN HERO — Aurora Edition ═══════════════════════════════════════════ */

/* ── Design Tokens ── */
.campaign-hero-section {
    --chero-bg-1: #070b1e;
    --chero-bg-2: #0f1535;
    --chero-aurora-1: rgba(56, 189, 248, 0.18);
    --chero-aurora-2: rgba(139, 92, 246, 0.15);
    --chero-aurora-3: rgba(20, 184, 166, 0.12);
    --chero-accent: #38bdf8;
    --chero-accent-2: #8b5cf6;
    --chero-text: #ffffff;
    --chero-subtext: rgba(255, 255, 255, 0.75);
    --chero-btn-grad: linear-gradient(135deg, #38bdf8, #8b5cf6);
    --chero-btn-text: #ffffff;
    --chero-glass-bg: rgba(255, 255, 255, 0.05);
    --chero-glass-border: rgba(255, 255, 255, 0.09);
    --chero-glow-1: rgba(56, 189, 248, 0.35);
    --chero-glow-2: rgba(139, 92, 246, 0.3);
    --chero-particle-color: rgba(255, 255, 255, 0.6);
    --chero-particle-glow: var(--chero-accent);

    position: relative;
    background: linear-gradient(170deg, var(--chero-bg-1) 0%, var(--chero-bg-2) 100%);
    color: var(--chero-text);
    padding: 96px 24px 88px;
    text-align: center;
    overflow: hidden;
    isolation: isolate;
}

/* ═══ AURORA LAYERS ═══════════════════════════════════════════════════════════ */

/* Layer 1 — wide sweeping bands */
.campaign-hero-section::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(ellipse 80% 60% at 25% 40%, var(--chero-aurora-1) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 70% 25%, var(--chero-aurora-2) 0%, transparent 65%),
        radial-gradient(ellipse 70% 50% at 50% 75%, var(--chero-aurora-3) 0%, transparent 60%);
    animation: cheroAurora1 20s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}

@keyframes cheroAurora1 {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); opacity: 0.9; }
    33%  { transform: translate(-4%, 2%) rotate(2deg) scale(1.06); opacity: 1; }
    66%  { transform: translate(3%, -2%) rotate(-1.5deg) scale(0.97); opacity: 0.85; }
    100% { transform: translate(-1%, 3%) rotate(1deg) scale(1.03); opacity: 0.95; }
}

/* Layer 2 — offset accents */
.campaign-hero-section::after {
    content: '';
    position: absolute;
    inset: -30%;
    background:
        radial-gradient(ellipse 50% 70% at 65% 20%, var(--chero-aurora-2) 0%, transparent 65%),
        radial-gradient(ellipse 70% 40% at 25% 75%, var(--chero-aurora-1) 0%, transparent 55%);
    animation: cheroAurora2 16s ease-in-out infinite alternate-reverse;
    pointer-events: none;
    z-index: 0;
}

@keyframes cheroAurora2 {
    0%   { transform: translate(0, 0) rotate(0deg) scale(1); }
    50%  { transform: translate(4%, -3%) rotate(-2.5deg) scale(1.08); }
    100% { transform: translate(-2%, 2%) rotate(1.5deg) scale(1.02); }
}

/* Layer 3 — colour screen blend */
.chero-aurora {
    position: absolute;
    inset: -50%;
    background:
        radial-gradient(ellipse 45% 55% at 40% 50%, var(--chero-aurora-3) 0%, transparent 60%),
        radial-gradient(ellipse 55% 35% at 75% 45%, var(--chero-aurora-1) 0%, transparent 50%);
    animation: cheroAurora3 24s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
    mix-blend-mode: screen;
}

@keyframes cheroAurora3 {
    0%   { transform: translate(0, 0) rotate(0deg); }
    100% { transform: translate(-5%, 4%) rotate(3deg); }
}

/* ═══ GLOW ORBS ══════════════════════════════════════════════════════════════ */

.chero-glow {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    z-index: 0;
}

.chero-glow-1 {
    width: 420px;
    height: 420px;
    top: -80px;
    right: -60px;
    background: var(--chero-glow-1);
    animation: cheroGlow1 14s ease-in-out infinite alternate;
}

.chero-glow-2 {
    width: 360px;
    height: 360px;
    bottom: -70px;
    left: -40px;
    background: var(--chero-glow-2);
    animation: cheroGlow2 18s ease-in-out infinite alternate;
}

@keyframes cheroGlow1 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.6; }
    100% { transform: translate(-35px, 25px) scale(1.12); opacity: 0.8; }
}

@keyframes cheroGlow2 {
    0%   { transform: translate(0, 0) scale(1); opacity: 0.5; }
    100% { transform: translate(30px, -20px) scale(1.15); opacity: 0.7; }
}

/* ═══ ROTATING RINGS ═════════════════════════════════════════════════════════ */

.chero-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
    pointer-events: none;
    z-index: 0;
}

.chero-ring-1 {
    width: 600px;
    height: 600px;
    top: -180px;
    right: -160px;
    animation: cheroSpin 80s linear infinite;
}

.chero-ring-2 {
    width: 450px;
    height: 450px;
    bottom: -120px;
    left: -110px;
    border-style: dashed;
    border-color: rgba(255, 255, 255, 0.03);
    animation: cheroSpin 60s linear infinite reverse;
}

.chero-ring-3 {
    width: 200px;
    height: 200px;
    top: 25%;
    left: 12%;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.025);
    animation: cheroSpin 100s linear infinite;
}

@keyframes cheroSpin {
    to { transform: rotate(360deg); }
}

/* ═══ PARTICLES ══════════════════════════════════════════════════════════════ */

.chero-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.chero-particles span {
    position: absolute;
    border-radius: 50%;
    background: var(--chero-particle-color);
    box-shadow: 0 0 8px 2px var(--chero-particle-glow);
    animation: cheroFloat var(--p-dur) var(--p-delay) ease-in-out infinite;
}

.chero-particles span:nth-child(1) { left: 8%;  top: 82%; width: 4px; height: 4px; --p-dur: 9s;  --p-delay: 0s;   --p-dx: 18px;  --p-dy: -130px; }
.chero-particles span:nth-child(2) { left: 20%; top: 74%; width: 2px; height: 2px; --p-dur: 12s; --p-delay: 2s;   --p-dx: -12px; --p-dy: -95px;  }
.chero-particles span:nth-child(3) { left: 42%; top: 88%; width: 3px; height: 3px; --p-dur: 8s;  --p-delay: 0.8s; --p-dx: 10px;  --p-dy: -150px; }
.chero-particles span:nth-child(4) { left: 62%; top: 78%; width: 2px; height: 2px; --p-dur: 13s; --p-delay: 3.5s; --p-dx: -22px; --p-dy: -105px; }
.chero-particles span:nth-child(5) { left: 78%; top: 86%; width: 3px; height: 3px; --p-dur: 10s; --p-delay: 1.2s; --p-dx: 14px;  --p-dy: -120px; }
.chero-particles span:nth-child(6) { left: 33%; top: 68%; width: 2px; height: 2px; --p-dur: 14s; --p-delay: 4s;   --p-dx: -8px;  --p-dy: -85px;  }
.chero-particles span:nth-child(7) { left: 52%; top: 92%; width: 4px; height: 4px; --p-dur: 7s;  --p-delay: 1.8s; --p-dx: 25px;  --p-dy: -140px; }
.chero-particles span:nth-child(8) { left: 90%; top: 70%; width: 2px; height: 2px; --p-dur: 15s; --p-delay: 2.8s; --p-dx: -16px; --p-dy: -110px; }

@keyframes cheroFloat {
    0%, 100% { transform: translate(0, 0); opacity: 0; }
    12%      { opacity: 0.8; }
    50%      { transform: translate(var(--p-dx), var(--p-dy)); opacity: 1; }
    88%      { opacity: 0.6; }
}

/* ═══ CONTENT LAYOUT ═════════════════════════════════════════════════════════ */

.campaign-hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

.campaign-hero-content {
    max-width: 820px;
    margin: 0 auto;
}

/* ═══ ENTRANCE STAGGER ═══════════════════════════════════════════════════════ */

.campaign-hero-content > * {
    --reveal-delay: 0.15s;
    opacity: 0;
    transform: translateY(28px);
    animation: cheroReveal 0.9s var(--reveal-delay) cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.campaign-hero-content > *:nth-child(1) { --reveal-delay: 0.15s; }
.campaign-hero-content > *:nth-child(2) { --reveal-delay: 0.30s; }
.campaign-hero-content > *:nth-child(3) { --reveal-delay: 0.45s; }
.campaign-hero-content > *:nth-child(4) { --reveal-delay: 0.60s; }

@keyframes cheroReveal {
    to { opacity: 1; transform: translateY(0); }
}

/* ═══ COUNTDOWN ══════════════════════════════════════════════════════════════ */

.campaign-countdown {
    display: inline-block;
    margin-bottom: 36px;
}

.countdown-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    opacity: 0.5;
    margin-bottom: 16px;
}

.countdown-timer {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
}

.countdown-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.countdown-days,
.countdown-hours,
.countdown-minutes,
.countdown-seconds {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 76px;
    background: var(--chero-glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--chero-glass-border);
    border-radius: 18px;
    font-size: 36px;
    font-weight: 800;
    font-family: 'Dosis', sans-serif;
    line-height: 1;
    color: var(--chero-text);
    text-shadow: 0 0 24px var(--chero-glow-1);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
                box-shadow 0.3s ease;
}

.countdown-days:hover,
.countdown-hours:hover,
.countdown-minutes:hover,
.countdown-seconds:hover {
    transform: scale(1.08);
    box-shadow: 0 0 30px var(--chero-glow-1);
}

/* Digit change micro-animation */
.countdown-days.digit-flip,
.countdown-hours.digit-flip,
.countdown-minutes.digit-flip,
.countdown-seconds.digit-flip {
    animation: cheroDigitFlip 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes cheroDigitFlip {
    0%   { transform: scale(1); }
    35%  { transform: scale(1.14) translateY(-3px); }
    100% { transform: scale(1); }
}

.countdown-unit-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    opacity: 0.4;
}

.countdown-sep {
    font-size: 28px;
    font-weight: 700;
    opacity: 0.25;
    margin: 18px 8px 0;
    animation: cheroSepPulse 1.2s ease-in-out infinite;
}

@keyframes cheroSepPulse {
    0%, 100% { opacity: 0.25; }
    50%      { opacity: 0.06; }
}

/* ═══ TITLE ══════════════════════════════════════════════════════════════════ */

.campaign-hero-title {
    font-size: 52px;
    font-weight: 800;
    margin: 0 0 20px 0;
    line-height: 1.06;
    font-family: 'Dosis', sans-serif;
    letter-spacing: -1px;
    background: linear-gradient(
        120deg,
        var(--chero-text) 0%,
        var(--chero-text) 25%,
        var(--chero-accent) 50%,
        var(--chero-text) 75%,
        var(--chero-text) 100%
    );
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: cheroReveal 0.9s var(--reveal-delay, 0.3s) cubic-bezier(0.16, 1, 0.3, 1) forwards,
               cheroTitleShine 8s 1.5s ease-in-out infinite;
}

@keyframes cheroTitleShine {
    0%, 100% { background-position: 0% 50%; }
    50%      { background-position: 100% 50%; }
}

/* ═══ SUBTITLE ═══════════════════════════════════════════════════════════════ */

.campaign-hero-subtitle {
    font-size: 20px;
    margin: 0 0 40px 0;
    line-height: 1.65;
    color: var(--chero-subtext);
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══ CTA BUTTON ═════════════════════════════════════════════════════════════ */

.campaign-hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--chero-btn-grad);
    color: var(--chero-btn-text);
    padding: 18px 42px;
    border-radius: 60px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    letter-spacing: 0.02em;
}

/* Shimmer sweep */
.campaign-hero-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.6s ease;
}

.campaign-hero-btn:hover::before {
    left: 140%;
}

.campaign-hero-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow:
        0 18px 50px rgba(0, 0, 0, 0.35),
        0 0 60px var(--chero-glow-1),
        0 0 0 1px rgba(255, 255, 255, 0.18) inset;
}

.chero-btn-arrow {
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

.campaign-hero-btn:hover .chero-btn-arrow {
    transform: translateX(6px);
}

/* ═══ DESIGN VARIANTS ════════════════════════════════════════════════════════ */

/* ── Industrial (default) ── */
.campaign-hero-section.campaign-hero-design-industrial {
    --chero-bg-1: #070b1e;
    --chero-bg-2: #111a42;
    --chero-aurora-1: rgba(56, 189, 248, 0.18);
    --chero-aurora-2: rgba(139, 92, 246, 0.15);
    --chero-aurora-3: rgba(20, 184, 166, 0.12);
    --chero-accent: #38bdf8;
    --chero-accent-2: #8b5cf6;
    --chero-btn-grad: linear-gradient(135deg, #38bdf8, #8b5cf6);
    --chero-glow-1: rgba(56, 189, 248, 0.35);
    --chero-glow-2: rgba(139, 92, 246, 0.3);
}

.campaign-hero-section.campaign-hero-design-industrial .campaign-hero-content {
    max-width: 900px;
}

.campaign-hero-section.campaign-hero-design-industrial .campaign-hero-title {
    font-size: 56px;
}

/* ── Catalog ── */
.campaign-hero-section.campaign-hero-design-catalog {
    --chero-bg-1: #0f172a;
    --chero-bg-2: #1e293b;
    --chero-aurora-1: rgba(148, 163, 184, 0.12);
    --chero-aurora-2: rgba(203, 213, 225, 0.08);
    --chero-aurora-3: rgba(100, 116, 139, 0.1);
    --chero-accent: #94a3b8;
    --chero-accent-2: #e2e8f0;
    --chero-btn-grad: linear-gradient(135deg, #e2e8f0, #f8fafc);
    --chero-btn-text: #0f172a;
    --chero-glow-1: rgba(148, 163, 184, 0.2);
    --chero-glow-2: rgba(100, 116, 139, 0.15);
    --chero-particle-glow: rgba(148, 163, 184, 0.4);
}

.campaign-hero-section.campaign-hero-design-catalog .campaign-hero-content {
    max-width: 880px;
    background: rgba(248, 250, 252, 0.96);
    border-radius: 28px;
    padding: 52px 48px 46px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.25);
    text-align: left;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.campaign-hero-section.campaign-hero-design-catalog .campaign-hero-title {
    font-size: 44px;
    background: linear-gradient(120deg, #0f172a 0%, #0f172a 25%, #475569 50%, #0f172a 75%, #0f172a 100%);
    background-size: 250% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.campaign-hero-section.campaign-hero-design-catalog .campaign-hero-subtitle {
    color: #475569;
    margin-left: 0;
}

.campaign-hero-section.campaign-hero-design-catalog .countdown-label {
    color: #64748b;
}

.campaign-hero-section.campaign-hero-design-catalog .countdown-days,
.campaign-hero-section.campaign-hero-design-catalog .countdown-hours,
.campaign-hero-section.campaign-hero-design-catalog .countdown-minutes,
.campaign-hero-section.campaign-hero-design-catalog .countdown-seconds {
    background: rgba(15, 23, 42, 0.06);
    border-color: rgba(15, 23, 42, 0.1);
    color: #0f172a;
    text-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.campaign-hero-section.campaign-hero-design-catalog .countdown-sep {
    color: #94a3b8;
}

.campaign-hero-section.campaign-hero-design-catalog .countdown-unit-label {
    color: #64748b;
}

/* ── Neon ── */
.campaign-hero-section.campaign-hero-design-neon {
    --chero-bg-1: #0c0a1d;
    --chero-bg-2: #1a0f3e;
    --chero-aurora-1: rgba(168, 85, 247, 0.2);
    --chero-aurora-2: rgba(236, 72, 153, 0.15);
    --chero-aurora-3: rgba(34, 211, 238, 0.12);
    --chero-accent: #22d3ee;
    --chero-accent-2: #a855f7;
    --chero-btn-grad: linear-gradient(135deg, #22d3ee, #a855f7);
    --chero-glow-1: rgba(34, 211, 238, 0.4);
    --chero-glow-2: rgba(168, 85, 247, 0.35);
    --chero-particle-glow: rgba(34, 211, 238, 0.5);
}

.campaign-hero-section.campaign-hero-design-neon .campaign-hero-title {
    text-transform: uppercase;
    letter-spacing: 0.04em;
    text-shadow: 0 0 40px rgba(34, 211, 238, 0.4), 0 0 80px rgba(168, 85, 247, 0.2);
    -webkit-text-fill-color: unset;
    background: none;
}

.campaign-hero-section.campaign-hero-design-neon .campaign-hero-subtitle {
    font-weight: 500;
}

.campaign-hero-section.campaign-hero-design-neon .campaign-hero-btn {
    border-radius: 14px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    box-shadow:
        0 8px 32px rgba(34, 211, 238, 0.3),
        0 0 0 1px rgba(34, 211, 238, 0.2) inset;
}

.campaign-hero-section.campaign-hero-design-neon .countdown-days,
.campaign-hero-section.campaign-hero-design-neon .countdown-hours,
.campaign-hero-section.campaign-hero-design-neon .countdown-minutes,
.campaign-hero-section.campaign-hero-design-neon .countdown-seconds {
    border-color: rgba(34, 211, 238, 0.15);
    text-shadow: 0 0 20px rgba(34, 211, 238, 0.5);
}

/* ── Elegant ── */
.campaign-hero-section.campaign-hero-design-elegant {
    --chero-bg-1: #0a0a0a;
    --chero-bg-2: #1a1a1a;
    --chero-aurora-1: rgba(245, 158, 11, 0.12);
    --chero-aurora-2: rgba(217, 119, 6, 0.1);
    --chero-aurora-3: rgba(251, 191, 36, 0.08);
    --chero-accent: #f59e0b;
    --chero-accent-2: #fbbf24;
    --chero-btn-grad: linear-gradient(135deg, #f59e0b, #fbbf24);
    --chero-btn-text: #0a0a0a;
    --chero-glow-1: rgba(245, 158, 11, 0.25);
    --chero-glow-2: rgba(217, 119, 6, 0.2);
    --chero-particle-glow: rgba(245, 158, 11, 0.4);
}

.campaign-hero-section.campaign-hero-design-elegant .campaign-hero-content {
    max-width: 760px;
    text-align: left;
    margin-left: 8%;
}

.campaign-hero-section.campaign-hero-design-elegant .campaign-hero-title {
    font-size: 54px;
}

.campaign-hero-section.campaign-hero-design-elegant .campaign-hero-subtitle {
    margin-left: 0;
    margin-right: 0;
}

.campaign-hero-section.campaign-hero-design-elegant .campaign-hero-btn {
    border-radius: 12px;
    padding: 17px 38px;
}

.campaign-hero-section.campaign-hero-design-elegant .countdown-timer {
    justify-content: flex-start;
}

/* ── Sunset ── */
.campaign-hero-section.campaign-hero-design-sunset {
    --chero-bg-1: #1a0505;
    --chero-bg-2: #2d1010;
    --chero-aurora-1: rgba(249, 115, 22, 0.18);
    --chero-aurora-2: rgba(239, 68, 68, 0.14);
    --chero-aurora-3: rgba(253, 224, 71, 0.1);
    --chero-accent: #f97316;
    --chero-accent-2: #ef4444;
    --chero-btn-grad: linear-gradient(135deg, #fde68a, #f97316);
    --chero-btn-text: #7c2d12;
    --chero-glow-1: rgba(249, 115, 22, 0.35);
    --chero-glow-2: rgba(239, 68, 68, 0.3);
    --chero-particle-glow: rgba(253, 224, 71, 0.5);
}

.campaign-hero-section.campaign-hero-design-sunset .campaign-hero-title {
    font-size: 54px;
}

.campaign-hero-section.campaign-hero-design-sunset .campaign-hero-btn {
    border-radius: 14px;
    box-shadow:
        0 10px 36px rgba(124, 45, 18, 0.4),
        0 0 0 1px rgba(253, 224, 71, 0.15) inset;
}

/* ── Glass ── */
.campaign-hero-section.campaign-hero-design-glass {
    --chero-bg-1: #020617;
    --chero-bg-2: #0c1f3d;
    --chero-aurora-1: rgba(14, 165, 233, 0.16);
    --chero-aurora-2: rgba(20, 184, 166, 0.12);
    --chero-aurora-3: rgba(56, 189, 248, 0.1);
    --chero-accent: #0ea5e9;
    --chero-accent-2: #14b8a6;
    --chero-btn-grad: linear-gradient(135deg, rgba(255,255,255,0.92), rgba(255,255,255,0.98));
    --chero-btn-text: #0c4a6e;
    --chero-glow-1: rgba(14, 165, 233, 0.3);
    --chero-glow-2: rgba(20, 184, 166, 0.25);
    --chero-particle-glow: rgba(14, 165, 233, 0.4);
    --chero-glass-bg: rgba(255, 255, 255, 0.06);
    --chero-glass-border: rgba(255, 255, 255, 0.14);
}

.campaign-hero-section.campaign-hero-design-glass .campaign-hero-content {
    max-width: 860px;
    background: rgba(15, 23, 42, 0.28);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 28px;
    padding: 48px 42px;
}

.campaign-hero-section.campaign-hero-design-glass .campaign-hero-title {
    font-size: 48px;
}

.campaign-hero-section.campaign-hero-design-glass .countdown-days,
.campaign-hero-section.campaign-hero-design-glass .countdown-hours,
.campaign-hero-section.campaign-hero-design-glass .countdown-minutes,
.campaign-hero-section.campaign-hero-design-glass .countdown-seconds {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

/* ═══ PRODUCT BADGES ═════════════════════════════════════════════════════════ */
.pcard-badge {
    position: absolute;
    top: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    z-index: 2;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
}

.pcard-badge-pct {
    left: 10px;
    background: #e53935;
    color: white;
}

.pcard-badge-sale {
    left: 10px;
    background: #ff9800;
    color: white;
}

.pcard-badge-online_payment {
    right: 10px;
    background: #4caf50;
    color: white;
}

.pcard-badge-points {
    right: 10px;
    background: #9c27b0;
    color: white;
}

/* ═══ RESPONSIVE ═════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
    .campaign-hero-section {
        padding: 64px 18px 56px;
    }

    .campaign-hero-title {
        font-size: 34px !important;
        letter-spacing: -0.5px !important;
    }

    .campaign-hero-subtitle {
        font-size: 16px;
        margin-bottom: 28px;
    }

    .countdown-days,
    .countdown-hours,
    .countdown-minutes,
    .countdown-seconds {
        width: 54px;
        height: 58px;
        font-size: 26px;
        border-radius: 14px;
    }

    .countdown-sep {
        font-size: 22px;
        margin: 14px 4px 0;
    }

    .countdown-unit-label {
        font-size: 9px;
    }

    .campaign-hero-btn {
        padding: 16px 32px;
        font-size: 15px;
    }

    /* Shed decorations on mobile */
    .chero-ring-3,
    .chero-particles span:nth-child(n+6) {
        display: none;
    }

    .chero-glow-1 { width: 250px; height: 250px; }
    .chero-glow-2 { width: 200px; height: 200px; }
    .chero-ring-1 { width: 350px; height: 350px; }
    .chero-ring-2 { width: 280px; height: 280px; }

    .campaign-hero-section.campaign-hero-design-catalog .campaign-hero-content,
    .campaign-hero-section.campaign-hero-design-glass .campaign-hero-content {
        padding: 28px 22px;
    }

    .campaign-hero-section.campaign-hero-design-elegant .campaign-hero-content {
        text-align: center;
        margin: 0 auto;
    }

    .campaign-hero-section.campaign-hero-design-elegant .countdown-timer {
        justify-content: center;
    }

    .campaign-hero-section.campaign-hero-design-catalog .campaign-hero-content {
        text-align: center;
    }
}

@media (max-width: 420px) {
    .countdown-days,
    .countdown-hours,
    .countdown-minutes,
    .countdown-seconds {
        width: 46px;
        height: 50px;
        font-size: 22px;
        border-radius: 12px;
    }

    .countdown-sep {
        margin: 10px 2px 0;
        font-size: 18px;
    }
}

/* ═══ REDUCED MOTION ═════════════════════════════════════════════════════════ */

@media (prefers-reduced-motion: reduce) {
    .campaign-hero-section::before,
    .campaign-hero-section::after,
    .chero-aurora,
    .chero-glow-1,
    .chero-glow-2,
    .chero-ring-1,
    .chero-ring-2,
    .chero-ring-3 {
        animation: none !important;
    }

    .chero-particles span {
        animation: none !important;
        opacity: 0.4;
    }

    .campaign-hero-title {
        animation: none !important;
        background: none !important;
        -webkit-text-fill-color: var(--chero-text) !important;
    }

    .campaign-hero-btn::before { display: none; }
    .campaign-hero-btn:hover { transform: none; }
    .countdown-sep { animation: none; opacity: 0.25; }

    .campaign-hero-content > * {
        animation: none !important;
        opacity: 1 !important;
        transform: none !important;
    }

    .countdown-days.digit-flip,
    .countdown-hours.digit-flip,
    .countdown-minutes.digit-flip,
    .countdown-seconds.digit-flip {
        animation: none !important;
    }
}
