/* ═══ NINJI SUBSCRIPTION PAGE ═══ */

/* ─── HERO ────────────────────────────────────────────────────────── */
.hero {
    position: relative;
    background:
        radial-gradient(60% 60% at 80% 20%, #e3f9f1 0%, transparent 60%),
        radial-gradient(60% 60% at 20% 80%, #ffe9b8 0%, transparent 55%),
        linear-gradient(180deg, #ffeaf2 0%, #fff5f9 60%, #fffaf5 100%);
    padding: 48px 40px 0;
    overflow: hidden;
}

.hero-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

/* Eyebrow */
.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    border: 2px solid var(--color-secondary, #FFB8D0);
    color: var(--color-primary);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 7px 16px;
    border-radius: 999px;
    margin-bottom: 20px;
    box-shadow: 0 4px 14px rgba(255,107,157,0.1);
}

.pulse {
    width: 8px; height: 8px; border-radius: 50%;
    background: var(--color-primary);
    animation: pulse-dot 1.6s ease-in-out infinite;
}

@keyframes pulse-dot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.4; }
}

/* Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    line-height: 1.05;
    color: #1e2b4a;
    margin: 0 0 22px;
}

.hero-title .line-1 {
    display: block;
    color: #4d6cb0;
    font-size: 0.6em;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.hero-title .line-main { display: block; }

/* Word rotator — ::after ghost text reserves width for longest word */
.word-rotator {
    display: inline-block;
    position: relative;
    color: var(--color-primary);
    height: 1.15em;
    vertical-align: bottom;
}

.word-rotator::after {
    content: 'een Feestje!';
    display: block;
    height: 0;
    visibility: hidden;
    overflow: hidden;
}

.word {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(100%);
    animation: word-cycle 12s ease-in-out infinite;
    white-space: nowrap;
}

.word--1 { animation-delay: 0s; }
.word--2 { animation-delay: 3s; }
.word--3 { animation-delay: 6s; }
.word--4 { animation-delay: 9s; }

@keyframes word-cycle {
    0%, 2%  { opacity: 0; transform: translateY(100%) scale(0.9); }
    5%, 20% { opacity: 1; transform: translateY(0) scale(1); }
    23%, 100% { opacity: 0; transform: translateY(-100%) scale(0.9); }
}

.hero-sub {
    font-size: 1.08rem;
    color: #4a5778;
    max-width: 480px;
    margin-bottom: 28px;
    line-height: 1.6;
}

.hero-sub--disclaimer {
    font-size: 0.92rem;
    color: #6b7794;
    font-style: italic;
    margin-top: -16px;
}

.hero-cta-row {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 28px;
}

.hero .btn-primary {
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 999px;
    box-shadow: 0 10px 25px rgba(255,107,157,0.25);
}

.hero .btn-ghost {
    background: transparent;
    color: #1e2b4a;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 16px;
    border: none;
}

.hero .btn-ghost:hover { color: var(--color-primary); }

/* Trust bar */
.hero-trust {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #4a5778;
}

.hero-trust-icon {
    width: 30px; height: 30px;
    border-radius: 50%;
    background: #c5f1e3;
    color: #5bc4a8;
    display: flex; align-items: center; justify-content: center;
}

.hero-trust-icon.pink  { background: #ffd6e3; color: var(--color-primary); }
.hero-trust-icon.butter { background: #ffe9b8; color: #c89a3a; }


/* ─── PRESENT BOX ─────────────────────────────────────────────────── */
.hero-present-wrap {
    position: relative;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.present-shadow {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    width: 260px; height: 24px;
    background: radial-gradient(ellipse, rgba(30,43,74,0.14), transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.present {
    position: relative;
    width: 300px; height: 300px;
    cursor: pointer;
    z-index: 2;
    animation: present-float 4s ease-in-out infinite;
}

@keyframes present-float {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50%      { transform: translateY(-14px) rotate(2deg); }
}

.present-box {
    position: absolute;
    bottom: 20px; left: 50%;
    transform: translateX(-50%);
    width: 240px; height: 180px;
    background: linear-gradient(145deg, #FF6B9D 0%, #ff4785 100%);
    border-radius: 16px;
    box-shadow:
        inset 0 -16px 32px rgba(30,43,74,0.15),
        inset 0 16px 24px rgba(255,255,255,0.2),
        0 16px 36px rgba(255,91,149,0.3);
    overflow: hidden;
    border: 2px solid rgba(255,255,255,0.15);
}

/* Diagonal stripe pattern */
.present-box-pattern {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 14px, rgba(255,255,255,0.05) 14px, rgba(255,255,255,0.05) 28px);
    pointer-events: none;
}

/* Vertical ribbon */
.present-box-ribbon {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 30px;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    box-shadow: inset -2px 0 0 rgba(0,0,0,0.06), inset 2px 0 0 rgba(255,255,255,0.25);
}

/* Horizontal ribbon on box */
.present-box::before {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 50%;
    transform: translateY(-50%);
    height: 30px;
    background: linear-gradient(90deg, #FFD700 0%, #FFA500 100%);
    box-shadow: inset 0 -2px 0 rgba(0,0,0,0.06), inset 0 2px 0 rgba(255,255,255,0.25);
    z-index: 1;
}

.present-lid {
    position: absolute;
    top: 50px; left: 50%;
    transform: translateX(-50%);
    width: 258px; height: 48px;
    background: linear-gradient(145deg, #FF85B1 0%, #FF4785 100%);
    border-radius: 12px;
    box-shadow:
        inset 0 -8px 16px rgba(30,43,74,0.08),
        inset 0 8px 16px rgba(255,255,255,0.35),
        0 4px 12px rgba(255,91,149,0.2);
    border: 2px solid rgba(255,255,255,0.15);
    transform-origin: bottom center;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
}

/* Ribbon on lid */
.present-lid-ribbon {
    position: absolute;
    top: 0; bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 30px;
    background: linear-gradient(180deg, #FFD700 0%, #FFA500 100%);
    box-shadow: inset -2px 0 0 rgba(0,0,0,0.06), inset 2px 0 0 rgba(255,255,255,0.25);
}

.present:hover .present-lid {
    transform: translateX(-50%) translateY(-24px) rotate(-10deg);
}

/* Bow */
.bow {
    position: absolute;
    top: 16px; left: 50%;
    transform: translateX(-50%);
    width: 90px; height: 50px;
    z-index: 3;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.present:hover .bow {
    transform: translateX(-50%) translateY(-50px) rotate(-10deg);
}

.bow-loop {
    position: absolute;
    top: 0;
    width: 38px; height: 42px;
    background: linear-gradient(135deg, #FFD700 0%, #FFB300 100%);
    border-radius: 50% 50% 0 50%;
    box-shadow: 0 3px 8px rgba(255,165,0,0.3), inset 0 2px 4px rgba(255,255,255,0.35);
}

.bow-loop.left  { left: 0; transform: rotate(-25deg); }
.bow-loop.right { right: 0; transform: rotate(25deg) scaleX(-1); }

.bow-knot {
    position: absolute;
    top: 12px; left: 50%;
    transform: translateX(-50%);
    width: 22px; height: 26px;
    background: radial-gradient(circle, #FFD700 0%, #FFA500 100%);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(255,165,0,0.5);
}

/* Confetti on click */
.confetti-container {
    position: absolute;
    top: 40%;
    left: 50%;
    pointer-events: none;
    z-index: 10;
}

.confetti-bit {
    position: absolute;
    animation: confetti-pop 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

@keyframes confetti-pop {
    0% { transform: translate(0, 0) rotate(0deg); opacity: 1; }
    100% { transform: translate(var(--cx), var(--cy)) rotate(var(--cr)); opacity: 0; }
}

/* Items pop out on hover */
.box-item {
    position: absolute;
    bottom: 150px; left: 50%;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--color-primary);
    font-family: var(--font-heading);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    pointer-events: none;
    z-index: 1;
}

.present:hover .box-item { opacity: 1; }
.present:hover .i1 { transform: translate(-80px, -50px) rotate(-12deg); transition-delay: 0.08s; }
.present:hover .i2 { transform: translate(-20px, -90px) rotate(8deg);   transition-delay: 0.16s; }
.present:hover .i3 { transform: translate(50px, -65px) rotate(-6deg);   transition-delay: 0.24s; }
.present:hover .i4 { transform: translate(-100px, 0px) rotate(15deg);   transition-delay: 0.32s; }
.present:hover .i5 { transform: translate(70px, -15px) rotate(-15deg);  transition-delay: 0.40s; }

/* Sparkles around present */
.sparkle {
    position: absolute;
    color: #ffd982;
    animation: sparkle-spin 3s ease-in-out infinite;
    z-index: 0;
}

.sparkle.s1 { top: 10%; left: 15%; animation-delay: 0s; }
.sparkle.s2 { top: 25%; right: 10%; animation-delay: 0.6s; color: var(--color-primary); }
.sparkle.s3 { bottom: 30%; left: 5%; animation-delay: 1.2s; color: #9be7d4; }
.sparkle.s4 { bottom: 15%; right: 15%; animation-delay: 1.8s; }

@keyframes sparkle-spin {
    0%, 100% { transform: scale(0.7) rotate(0deg); opacity: 0.4; }
    50%      { transform: scale(1.3) rotate(180deg); opacity: 1; }
}

/* Floating tags around present */
.hero-tag {
    position: absolute;
    background: #fff;
    border-radius: 999px;
    padding: 8px 16px;
    font-weight: 800;
    font-size: 0.8rem;
    box-shadow: 0 6px 18px rgba(255,91,149,0.1), 0 2px 4px rgba(30,43,74,0.04);
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 4;
}

.tag-1 {
    top: 45px; left: -10px;
    color: var(--color-primary);
    border: 2px solid #ffd6e3;
    transform: rotate(-6deg);
}

.tag-2 {
    bottom: 70px; right: -10px;
    color: #4d6cb0;
    border: 2px solid #9be7d4;
    transform: rotate(5deg);
}

.tag-3 {
    top: 160px; right: 0px;
    color: #c89a3a;
    border: 2px solid #ffd982;
    background: #ffe9b8;
    transform: rotate(7deg);
}


/* ─── HERO CAROUSEL ───────────────────────────────────────────────── */
.sub-hero__carousel {
    position: relative;
    z-index: 1;
    padding: 14px 0 18px;
    border-top: 1px solid rgba(255,107,157,0.08);
    margin-top: 20px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.sub-hero__carousel-label {
    text-align: center;
    font-family: var(--font-heading);
    font-size: 0.68rem;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.sub-carousel {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.sub-carousel__track {
    display: flex;
    gap: 8px;
    width: max-content;
    animation: carousel-scroll 22s linear infinite;
}

.sub-carousel:hover .sub-carousel__track { animation-play-state: paused; }

@keyframes carousel-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.sub-carousel__item {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    transition: transform 0.2s;
}

.sub-carousel__item:hover { transform: scale(1.06); }

.sub-carousel__item--pink   { background: #ffeaf2; color: var(--color-primary); }
.sub-carousel__item--purple { background: #F3E8FF; color: #A855F7; }
.sub-carousel__item--mint   { background: #e3f9f1; color: #3aa882; }
.sub-carousel__item--butter { background: #ffe9b8; color: #c89a3a; }


/* ─── SECTIONS ────────────────────────────────────────────────────── */
.section {
    padding: 80px 40px;
    position: relative;
}

.section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-eyebrow {
    display: inline-block;
    background: #e3f9f1;
    color: #5bc4a8;
    border: 2px solid #c5f1e3;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 5px 14px;
    border-radius: 999px;
    margin-bottom: 12px;
    letter-spacing: 0.03em;
}

.section-eyebrow.pink   { background: #ffeaf2; color: var(--color-primary); border-color: #ffd6e3; }
.section-eyebrow.butter { background: #ffe9b8; color: #c89a3a; border-color: #ffd982; }

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    font-weight: 700;
    color: #1e2b4a;
    margin: 0 0 12px;
    line-height: 1.1;
}

.section-sub {
    font-size: 1.05rem;
    color: #4a5778;
    max-width: 580px;
    margin: 0 auto;
}


/* ─── COMBO: PRICING + FAQ SIDE BY SIDE ────────────────────────────── */
.section--combo {
    background: linear-gradient(180deg, #fffaf5 0%, #FFF5F9 50%, #F3E8FF 100%);
    padding: 60px 40px;
}

.combo-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 32px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.combo-faq__title {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 700;
    color: #1e2b4a;
    margin: 0 0 16px;
}

.combo-faq .faq-list {
    background: #fff;
    border-radius: 16px;
    padding: 0.25rem 1.25rem;
    box-shadow: 0 2px 12px rgba(255,107,157,0.05);
    border: 1px solid rgba(255,107,157,0.08);
}

.combo-faq .faq-q {
    font-size: 0.88rem;
    padding: 0.85rem 0;
}

.combo-faq .faq-a p {
    font-size: 0.82rem;
}



/* ─── GRAND PRIZE (full-width section) ─────────────────────────────── */
.prize-section {
    background: linear-gradient(135deg, #1e2b4a 0%, #2a3a63 60%, #1e2b4a 100%);
    color: #fff;
    padding: 56px 40px;
    position: relative;
    overflow: hidden;
}

.prize-section::before, .prize-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    pointer-events: none;
}

.prize-section::before { width: 300px; height: 300px; background: #ff7fad; top: -100px; right: -60px; }
.prize-section::after  { width: 250px; height: 250px; background: #9be7d4; bottom: -100px; left: -60px; }

.prize-inner {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.prize-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 36px;
    align-items: center;
}

.prize-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--color-primary);
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: 0.04em;
}

.prize-copy h2 {
    color: #fff;
    margin-bottom: 8px;
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3vw, 2rem);
    line-height: 1.15;
}

.prize-amount {
    font-family: var(--font-heading);
    font-size: clamp(3.5rem, 7vw, 5rem);
    font-weight: 700;
    color: #ffd982;
    line-height: 1;
    margin: 4px 0 12px;
}

.prize-amount sup {
    font-size: 0.4em;
    vertical-align: super;
    margin-right: 2px;
}

.prize-copy p {
    font-size: 0.92rem;
    opacity: 0.75;
    margin-bottom: 16px;
    max-width: 420px;
    line-height: 1.6;
}

.prize-winner {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 999px;
    padding: 5px 14px;
    font-size: 0.78rem;
    opacity: 0.8;
}

.prize-winner strong { color: #ffd982; }

.prize-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 240px;
}

.mega-box {
    width: 180px; height: 180px;
    background: linear-gradient(135deg, #ffd982, #ffe9b8);
    border-radius: 18px;
    box-shadow:
        inset 0 -16px 32px rgba(0,0,0,0.12),
        inset 0 16px 24px rgba(255,255,255,0.35),
        0 16px 36px rgba(255,217,130,0.3);
    position: relative;
    transform: rotate(-6deg);
    animation: mega-float 5s ease-in-out infinite;
}

@keyframes mega-float {
    0%, 100% { transform: rotate(-6deg) translateY(0); }
    50%      { transform: rotate(-3deg) translateY(-10px); }
}

.mega-box .ribbon-v {
    position: absolute; top: 0; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 24px; background: rgba(255,255,255,0.45);
}

.mega-box .ribbon-h {
    position: absolute; left: 0; right: 0; top: 50%; transform: translateY(-50%);
    height: 24px; background: rgba(255,255,255,0.45);
}

.mega-bow {
    position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    line-height: 1;
}

.mega-tag {
    position: absolute;
    background: #fff;
    border-radius: 999px;
    padding: 5px 12px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.72rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
    z-index: 2;
}

.mega-tag.t1 { top: 8px; left: -24px; color: #c89a3a; border: 2px solid #ffd982; transform: rotate(-4deg); }
.mega-tag.t2 { bottom: 16px; right: -24px; color: var(--color-primary); border: 2px solid #ffd6e3; transform: rotate(5deg); }


/* ─── PRICING ─────────────────────────────────────────────────────── */
.sub-pricing__card {
    background: #fff;
    border-radius: 28px;
    padding: 0 2rem 2.5rem;
    text-align: center;
    box-shadow: 0 10px 36px rgba(255,91,149,0.1);
    border: 2px solid #ffeaf2;
    overflow: hidden;
}

.sub-pricing__ribbon {
    background: var(--color-primary);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    padding: 8px 0;
    margin: 0 -2rem 1.5rem;
    width: calc(100% + 4rem);
}

.sub-pricing__header { margin-bottom: 1.5rem; }

.sub-pricing__amount { display: flex; align-items: baseline; justify-content: center; gap: 4px; }

.sub-pricing__euro { font-family: var(--font-heading); font-size: 2.8rem; font-weight: 800; color: #1e2b4a; }
.sub-pricing__per  { font-size: 1rem; color: #4a5778; font-weight: 600; }

.sub-pricing__value-tag {
    display: inline-block;
    font-size: 0.75rem; font-weight: 700;
    color: #3aa882; background: #e3f9f1;
    padding: 3px 12px; border-radius: 999px;
    margin-top: 6px;
}

.sub-pricing__features { list-style: none; padding: 0; margin: 0 0 2rem; text-align: left; }

.sub-pricing__features li {
    display: flex; align-items: center; gap: 10px;
    padding: 0.6rem 0; font-size: 0.92rem; color: #333;
    border-bottom: 1px solid #f8f8f8;
}

.sub-pricing__features li:last-child { border-bottom: none; }
.sub-pricing__features li svg { flex-shrink: 0; }

.sub-pricing__cta { width: 100%; font-size: 1.05rem; padding: 14px 0; border-radius: 999px; }
.sub-pricing__fine { font-size: 0.78rem; color: #aaa; margin: 1rem 0 0; }


/* ─── FAQ ──────────────────────────────────────────────────────────── */
.faq-list {
    max-width: 680px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #f0f0f0;
}

.faq-q {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 1rem 0;
    background: none; border: none; cursor: pointer;
    font-family: var(--font-heading);
    font-size: 1rem; font-weight: 600;
    color: #1e2b4a; text-align: left;
    gap: 1rem;
}

.faq-q:hover { color: var(--color-primary); }

.faq-icon {
    flex-shrink: 0;
    font-size: 1.2rem;
    color: #ccc;
    transition: transform 0.3s;
    font-weight: 400;
}

.faq-item.open .faq-icon { transform: rotate(45deg); color: var(--color-primary); }

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-item.open .faq-a { max-height: 200px; padding-bottom: 1rem; }

.faq-a p { color: #4a5778; font-size: 0.9rem; line-height: 1.7; margin: 0; }


/* ─── FINAL CTA ────────────────────────────────────────────────────── */
.sub-final-cta {
    background: linear-gradient(135deg, #FFE0F0 0%, #F0D0FF 100%);
    border-radius: 40px 40px 0 0;
}

.sub-final-cta h2 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-weight: 700; color: #1e2b4a; margin: 0;
}


/* ─── MANAGE + SUCCESS + ADMIN (kept from before) ─────────────────── */
.sub-manage { max-width: 680px; margin: 2rem auto; padding: 0 1rem; }
.sub-manage__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 2rem; flex-wrap: wrap; gap: 0.5rem; }
.sub-manage__title { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 700; color: #2D2D2D; margin: 0; }
.sub-status { display: inline-flex; align-items: center; gap: 5px; font-size: 0.8rem; font-weight: 700; padding: 4px 14px; border-radius: 9999px; text-transform: uppercase; letter-spacing: 0.04em; }
.sub-status--active { background: #ECFDF5; color: #059669; }
.sub-status--cancelled { background: #F3F4F6; color: #6B7280; }
.sub-status--past_due { background: #FEF2F2; color: #DC2626; }
.sub-manage__card { background: #fff; border-radius: 16px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,0.05); margin-bottom: 1.25rem; }
.sub-manage__card-title { font-family: var(--font-heading); font-size: 1rem; font-weight: 700; color: #2D2D2D; margin: 0 0 1rem; display: flex; align-items: center; gap: 8px; }
.sub-manage__next-date { font-size: 1.3rem; font-weight: 700; color: var(--color-primary); font-family: var(--font-heading); }
.sub-manage__next-sub { font-size: 0.85rem; color: #999; margin-top: 0.3rem; }
.sub-manage__crates-row { display: flex; align-items: center; justify-content: space-between; }
.sub-manage__crates-count { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 800; color: #C084FC; }
.sub-manage__crates-label { font-size: 0.85rem; color: #888; }
.sub-manage__crates-btn { font-size: 0.85rem; }
.sub-manage__grand-text { color: #777; font-size: 0.9rem; line-height: 1.6; margin: 0; }
.sub-manage__table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.sub-manage__table th { text-align: left; font-weight: 600; color: #aaa; font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.04em; padding: 0.5rem 0.5rem 0.5rem 0; border-bottom: 2px solid #f0f0f0; }
.sub-manage__table td { padding: 0.6rem 0.5rem 0.6rem 0; color: #555; border-bottom: 1px solid #f8f8f8; }
.sub-box-status { display: inline-block; font-size: 0.72rem; font-weight: 600; padding: 2px 10px; border-radius: 9999px; }
.sub-box-status--pending { background: #FEF3C7; color: #92400E; }
.sub-box-status--preparing { background: #DBEAFE; color: #1E40AF; }
.sub-box-status--shipped { background: #D1FAE5; color: #065F46; }
.sub-box-status--delivered { background: #ECFDF5; color: #059669; }
.sub-manage__actions { text-align: center; margin-top: 0.5rem; }

.sub-success { max-width: 560px; margin: 3rem auto; padding: 0 1rem; text-align: center; }
.sub-success__check { width: 80px; height: 80px; border-radius: 50%; background: linear-gradient(135deg, var(--color-primary), #C084FC); display: flex; align-items: center; justify-content: center; margin: 0 auto 1.5rem; animation: bounce-in 0.6s cubic-bezier(0.68,-0.55,0.265,1.55); }
@keyframes bounce-in { 0% { transform: scale(0); } 60% { transform: scale(1.15); } 100% { transform: scale(1); } }
.sub-success__title { font-family: var(--font-heading); font-size: 1.8rem; font-weight: 700; color: #2D2D2D; margin: 0 0 0.8rem; }
.sub-success__lead { color: #777; font-size: 1rem; line-height: 1.6; margin: 0 0 2rem; }
.sub-success__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.sub-success__card { background: #fff; border-radius: 16px; padding: 1.5rem 1rem; box-shadow: 0 2px 12px rgba(0,0,0,0.05); text-align: center; transition: transform 0.2s; }
.sub-success__card:hover { transform: translateY(-3px); }
.sub-success__card-icon { font-size: 2rem; margin-bottom: 0.5rem; }
.sub-success__card h3 { font-family: var(--font-heading); font-size: 0.92rem; font-weight: 700; color: #2D2D2D; margin: 0 0 0.3rem; }
.sub-success__card p { font-size: 0.8rem; color: #888; margin: 0; }

.admin-sub-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.admin-sub-stat { background: #fff; border-radius: 12px; padding: 1.2rem; box-shadow: 0 1px 4px rgba(0,0,0,0.06); }
.admin-sub-stat__label { font-size: 0.72rem; color: #aaa; text-transform: uppercase; letter-spacing: 0.04em; font-weight: 600; }
.admin-sub-stat__value { font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800; color: #2D2D2D; margin-top: 0.2rem; }


/* ─── RESPONSIVE ───────────────────────────────────────────────────── */
@media (max-width: 900px) {
    .hero { padding: 32px 20px 0; }
    .hero-grid { grid-template-columns: 1fr; gap: 20px; text-align: center; }
    .hero-copy { order: 1; }
    .hero-present-wrap { order: 0; height: 320px; }
    .present { width: 240px; height: 240px; }
    .present-box { width: 190px; height: 140px; }
    .present-lid { width: 206px; height: 40px; top: 40px; }
    .hero-tag { display: none; }
    .hero-sub { max-width: none; margin-left: auto; margin-right: auto; }
    .hero-cta-row { justify-content: center; }
    .hero-trust { justify-content: center; }

    .combo-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .combo-faq { margin-top: 8px; }
    .prize-grid { grid-template-columns: 1fr; }
    .prize-visual { height: 200px; }
    .prize-section { padding: 40px 20px; }
    .section { padding: 56px 20px; }
    .sub-success__cards { grid-template-columns: 1fr; }
    .admin-sub-stats { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 1.8rem; }
    .present { width: 200px; height: 200px; }
    .present-box { width: 160px; height: 115px; }
    .present-lid { width: 174px; height: 34px; top: 36px; }
    .hero-present-wrap { height: 260px; }
    .mega-box { width: 140px; height: 140px; }
    .sub-manage__header { flex-direction: column; align-items: flex-start; }
}


/* ─── REDUCED MOTION ───────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
    .pulse, .present, .sparkle, .mega-box, .word,
    .sub-carousel__track, .sub-success__check {
        animation: none !important;
    }
    .word--4 { opacity: 1; transform: translateY(0); }
    .present { transform: rotate(0deg); }
    .present:hover .present-lid { transform: translateX(-50%); }
    .present:hover .bow { transform: translateX(-50%); }
    .present:hover .box-item { opacity: 0; }
}
