body {
    font-family: 'Inter', sans-serif;
}

/* Dark gradient section — deep red/maroon */
.dark-gradient-section {
    background: linear-gradient(135deg, #1a0a0e 0%, #3b1020 30%, #4a0e2a 60%, #1a0a0e 100%);
}

/* Speaker Section — themeable */
.speaker-section-bg {
    background: #0a1628;
}
.speaker-fade-left {
    background: linear-gradient(to right, #0a1628, transparent, transparent);
}
.speaker-fade-bottom {
    background: linear-gradient(to top, #0a1628, transparent);
}
.speaker-heading-primary {
    color: #1ea3f5;
    text-shadow: 0 2px 30px rgba(30,163,245,0.4), 0 0 40px rgba(0,0,0,0.8);
}
.speaker-heading-accent {
    color: #ffeaab;
    text-shadow: 0 2px 30px rgba(255,234,171,0.4), 0 0 40px rgba(0,0,0,0.8);
}
.speaker-badge-bg {
    background-color: #1ea3f5;
}

/* FAQ Accordion Styles */
.faq-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.3s;
}

.faq-question:hover {
    color: #EAB308;
}

.faq-question .faq-icon {
    transition: transform 0.3s ease;
    color: #EAB308;
    font-size: 1.5rem;
}

.faq-item.active .faq-question .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 20px;
}

/* Urgency countdown badge */
@keyframes urgencyPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.4);
    }
    50% {
        transform: scale(1.02);
        box-shadow: 0 0 20px 5px rgba(225, 29, 72, 0.2);
    }
}

.urgency-badge {
    animation: urgencyPulse 2s ease-in-out infinite;
}

html {
    scroll-behavior: smooth;
}

.bg-hero {
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF5E1 40%, #FEF3C7 70%, #FFFBF0 100%);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatY {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(225, 29, 72, 0.15);
    }

    50% {
        box-shadow: 0 0 50px rgba(225, 29, 72, 0.4);
    }
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 200%;
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes borderGlow {

    0%,
    100% {
        border-color: rgba(234, 179, 8, 0.2);
    }

    50% {
        border-color: rgba(234, 179, 8, 0.7);
    }
}

@keyframes particleDrift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translate(50px, -80px) scale(1.2);
        opacity: 0.5;
    }

    100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.3;
    }
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.revealed {
    opacity: 1 !important;
    transform: translateY(0) translateX(0) scale(1) !important;
    pointer-events: auto !important;
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}

.stagger-4 {
    transition-delay: 0.4s;
}

.hero-badge {
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.hero-title {
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-sub {
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-btn {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.btn-shimmer {
    position: relative;
    overflow: hidden;
}

.btn-shimmer::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    animation: shimmer 3s ease-in-out infinite;
    pointer-events: none;
}

/* Auto pop-up pulse animation for buttons */
@keyframes popPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(234, 179, 8, 0.3);
    }
    50% {
        transform: scale(1.07);
        box-shadow: 0 8px 30px rgba(234, 179, 8, 0.5);
    }
}

.btn-shimmer {
    animation: popPulse 2s ease-in-out infinite;
}

.cta-gradient {
    background: linear-gradient(135deg, #9B1B30, #E11D48, #EAB308, #E11D48);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}

.card-lift {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.card-lift:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(225, 29, 72, 0.15);
    pointer-events: none;
    animation: particleDrift linear infinite;
}

.price-glow {
    animation: borderGlow 3s ease-in-out infinite;
}

.price-glow:nth-child(2) {
    animation-delay: 1s;
}

.price-glow:nth-child(3) {
    animation-delay: 2s;
}

header {
    transition: background-color 0.3s, box-shadow 0.3s, backdrop-filter 0.3s;
}

header.scrolled {
    backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.footer-link {
    position: relative;
    display: inline-block;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: #E11D48;
    transition: width 0.3s;
}

.footer-link:hover::after {
    width: 100%;
}

details[open]>.faq-answer {
    animation: fadeInUp 0.35s ease-out;
}

.text-gradient {
    background: linear-gradient(135deg, #E11D48, #EAB308);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pain-icon {
    animation: floatY 4s ease-in-out infinite;
}

.pain-icon:nth-child(2) {
    animation-delay: 1.3s;
}

.pain-icon:nth-child(3) {
    animation-delay: 2.6s;
}

@keyframes rotate360 {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.icon-hover-spin:hover .material-symbols-outlined {
    animation: rotate360 0.6s ease-out;
}

/* WhatsApp floating button bounce */
@keyframes waBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    15% {
        transform: translateY(-8px);
    }

    30% {
        transform: translateY(0);
    }

    45% {
        transform: translateY(-4px);
    }

    60% {
        transform: translateY(0);
    }
}

.wa-bounce {
    animation: waBounce 3s ease-in-out infinite;
}

/* ===== FOR BUSINESS OWNER — Bling Sticker ===== */
@keyframes blingShimmer {
    0%   { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes blingSpin {
    0%   { transform: rotate(0deg) scale(1); }
    50%  { transform: rotate(180deg) scale(1.3); }
    100% { transform: rotate(360deg) scale(1); }
}

@keyframes blingPop {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 8px rgba(255, 215, 0, 0.6));
    }
    50% {
        transform: scale(1.06);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.9)) drop-shadow(0 0 35px rgba(234, 179, 8, 0.7));
    }
}

.biz-owner-sticker {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 22px;
    border-radius: 999px;
    background: linear-gradient(90deg,
        #7a5800 0%,
        #b8860b 20%,
        #d4a017 40%,
        #b8860b 60%,
        #8a6200 80%,
        #7a5800 100%
    );
    background-size: 300% auto;
    animation: blingShimmer 3.5s linear infinite, blingPop 5s ease-in-out infinite;
    border: 2px solid rgba(255, 215, 0, 0.25);
    box-shadow:
        0 0 8px rgba(180, 130, 0, 0.3),
        0 4px 16px rgba(0, 0, 0, 0.25);
    width: fit-content;
    margin-bottom: 4px;
    cursor: default;
}

.biz-owner-text {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #3b1a00;
    text-shadow:
        0 1px 0 rgba(255, 255, 255, 0.6),
        0 -1px 0 rgba(0, 0, 0, 0.15);
    white-space: nowrap;
}

.biz-owner-stars {
    font-size: 1.2rem;
    color: #3b1a00;
    display: inline-block;
    animation: blingSpin 3s linear infinite;
    text-shadow: 0 0 8px rgba(255, 215, 0, 1);
    line-height: 1;
}

.biz-owner-stars:last-child {
    animation-direction: reverse;
    animation-duration: 2.5s;
}

@media (max-width: 640px) {
    .biz-owner-sticker {
        padding: 8px 16px;
    }
    .biz-owner-text {
        font-size: 0.85rem;
    }
}

/* ===== SPEAKER SECTION TAGS ===== */
.speaker-cred-tag {
    display: inline-block;
    background: rgba(30, 163, 245, 0.12);
    border: 1px solid rgba(30, 163, 245, 0.25);
    color: #93c5fd;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    white-space: nowrap;
    transition: background 0.2s, border-color 0.2s;
}

.speaker-cred-tag:hover {
    background: rgba(30, 163, 245, 0.22);
    border-color: rgba(30, 163, 245, 0.5);
}

.speaker-univ-tag {
    display: inline-block;
    background: rgba(255, 215, 0, 0.08);
    border: 1px solid rgba(255, 215, 0, 0.22);
    color: #fde68a;
    font-size: 11px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.2s;
}

.speaker-univ-tag:hover {
    background: rgba(255, 215, 0, 0.16);
}

.speaker-bank-tag {
    display: inline-block;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid rgba(52, 211, 153, 0.25);
    color: #6ee7b7;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 8px;
    white-space: nowrap;
    transition: background 0.2s;
}

.speaker-bank-tag:hover {
    background: rgba(52, 211, 153, 0.2);
}

/* ===== NEW SPEAKER SECTION — Light/White Layout ===== */
.spk-light-section {
    background: #ffffff;
    border-top: 1px solid #e5e7eb;
    border-bottom: 1px solid #e5e7eb;
}

/* Intro card — left column */
.spk-intro-card {
    background: #f7f9ff;
    border: 1px solid #e0e7ff;
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 56, 130, 0.08);
}

/* Photo wrapper */
.spk-photo-wrap {
    width: 180px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid #e0e7ff;
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    background: #e8edf5;
}

.spk-photo-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

/* "Oleh :" label */
.spk-oleh-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: #E11D48;
    letter-spacing: 0.04em;
    margin-bottom: -8px;
}

/* Name */
.spk-name {
    font-size: 1.7rem;
    font-weight: 900;
    color: #0f2860;
    line-height: 1.1;
    letter-spacing: -0.01em;
}

/* Degrees under name */
.spk-degrees {
    font-size: 0.78rem;
    font-weight: 700;
    color: #1e40af;
    margin-top: 4px;
    line-height: 1.5;
}

/* Red tagline */
.spk-tagline {
    font-size: 0.82rem;
    font-weight: 700;
    color: #E11D48;
    line-height: 1.4;
}

/* Check items */
.spk-check-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.spk-check-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    min-width: 24px;
    border-radius: 50%;
    background: #1e40af;
    color: #fff;
    font-size: 13px;
    font-weight: 900;
    margin-top: 2px;
}

.spk-check-title {
    font-size: 0.83rem;
    font-weight: 700;
    color: #0f2860;
    line-height: 1.3;
}

.spk-check-sub {
    font-size: 0.73rem;
    color: #6b7280;
    line-height: 1.4;
    margin-top: 1px;
}

/* CTA button (red) */
.spk-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #E11D48;
    color: #fff;
    font-weight: 900;
    font-size: 0.88rem;
    letter-spacing: 0.06em;
    padding: 13px 24px;
    border-radius: 10px;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(225, 29, 72, 0.35);
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 4px;
}

.spk-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(225, 29, 72, 0.45);
}

/* Profile text side (right) */
.spk-profile-label {
    font-size: 0.78rem;
    font-weight: 800;
    color: #E11D48;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.spk-profile-name {
    font-size: 2.2rem;
    font-weight: 900;
    color: #0f2860;
    line-height: 1.1;
    margin-top: 6px;
}

.spk-profile-degrees {
    font-size: 0.85rem;
    font-weight: 700;
    color: #E11D48;
    margin-top: 6px;
    line-height: 1.6;
}

.spk-bio-text {
    color: #1e3a5f;
    font-size: 0.92rem;
    line-height: 1.75;
}

.spk-bio-text strong {
    color: #0f2860;
    font-weight: 700;
}

/* Education block */
.spk-edu-block {
    background: #f0f4ff;
    border: 1px solid #dbeafe;
    border-radius: 10px;
    padding: 14px 18px;
}

.spk-edu-label {
    font-size: 0.72rem;
    font-weight: 800;
    color: #1e40af;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 8px;
}

.spk-edu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.spk-edu-list li {
    font-size: 0.82rem;
    color: #374151;
    line-height: 1.5;
}

/* Certificate placeholders */
.spk-cert-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 10px;
    padding: 20px 10px;
    min-height: 120px;
    transition: border-color 0.2s;
    cursor: pointer;
}

.spk-cert-placeholder:hover {
    border-color: #1e40af;
}

/* Cert image (when real photo is provided) */
.spk-cert-img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.12);
    transition: transform 0.25s;
    cursor: pointer;
}

.spk-cert-img:hover {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .spk-profile-name {
        font-size: 1.6rem;
    }
    .spk-name {
        font-size: 1.4rem;
    }
    .spk-photo-wrap {
        width: 140px;
        height: 160px;
    }
}

/* ===== COUNTDOWN TIMER ===== */
.countdown-wrap {
    background: linear-gradient(135deg, #0f2860, #1e40af);
    border-radius: 16px;
    padding: 24px 32px;
    text-align: center;
    box-shadow: 0 8px 32px rgba(30, 64, 175, 0.35);
    max-width: 600px;
    width: 100%;
}

.countdown-label {
    color: #fde68a;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.countdown-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    flex-wrap: wrap;
}

.countdown-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 10px;
    padding: 10px 18px;
    min-width: 72px;
}

.countdown-box span {
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-box small {
    color: rgba(255,255,255,0.6);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.countdown-sep {
    color: #fde68a;
    font-size: 2rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
}

.countdown-note {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    margin-top: 14px;
}

.countdown-note strong {
    color: #fde68a;
}

/* When expired */
.countdown-expired {
    color: #fca5a5;
    font-size: 1rem;
    font-weight: 700;
    margin-top: 10px;
}

/* ===== WARNING BLOCKS ===== */
.warning-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 18px 20px;
    border-radius: 14px;
    border-left: 6px solid;
    transition: transform 0.2s;
}

.warning-block:hover {
    transform: translateY(-2px);
}

.warning-block--red {
    background: #fff0f0;
    border-color: #E11D48;
    box-shadow: 0 4px 18px rgba(225, 29, 72, 0.12);
}

.warning-block--blue {
    background: #eff6ff;
    border-color: #1e40af;
    box-shadow: 0 4px 18px rgba(30, 64, 175, 0.12);
}

.warning-block-icon {
    font-size: 2rem !important;
    flex-shrink: 0;
    margin-top: 2px;
}

.warning-block--red .warning-block-icon {
    color: #E11D48;
}

.warning-block--blue .warning-block-icon {
    color: #1e40af;
}

.warning-block-title {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 4px;
}

.warning-block-sub {
    font-size: 0.82rem;
    color: #4b5563;
    line-height: 1.5;
}

/* ===== URGENCY CTA BLOCK ===== */
@keyframes urgentPulse {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(225, 29, 72, 0.5), 0 8px 40px rgba(225, 29, 72, 0.35);
    }
    50% {
        box-shadow: 0 0 0 12px rgba(225, 29, 72, 0), 0 8px 60px rgba(225, 29, 72, 0.5);
    }
}

@keyframes glowShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.urgency-cta-block {
    background: #fff;
    border: 2px solid #E11D48;
    border-radius: 20px;
    padding: 36px 32px;
    text-align: center;
    max-width: 640px;
    width: 100%;
    animation: urgentPulse 2.5s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}

.urgency-cta-fire {
    font-size: 3rem;
    line-height: 1;
    animation: floatY 2s ease-in-out infinite;
}

.urgency-cta-title {
    font-size: 1.8rem;
    font-weight: 900;
    color: #E11D48;
    letter-spacing: -0.01em;
    line-height: 1.15;
}

.urgency-cta-highlight {
    font-size: 1rem;
    font-weight: 700;
    color: #374151;
    background: #fef3c7;
    border: 1px solid #fcd34d;
    padding: 6px 18px;
    border-radius: 999px;
}

.urgency-cta-prize {
    display: flex;
    align-items: center;
    gap: 14px;
    background: linear-gradient(135deg, #fffbeb, #fef9c3);
    border: 2px solid #EAB308;
    border-radius: 14px;
    padding: 16px 22px;
    text-align: left;
}

.urgency-prize-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #78350f;
}

.urgency-prize-value {
    font-size: 0.85rem;
    color: #92400e;
}

.urgency-prize-value strong {
    font-weight: 900;
    color: #E11D48;
    font-size: 1rem;
}

.urgency-cta-sub {
    font-size: 0.85rem;
    color: #4b5563;
    max-width: 480px;
    line-height: 1.6;
}

.urgency-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, #b91c1c 0%, #E11D48 40%, #f43f5e 70%, #E11D48 100%);
    background-size: 200% auto;
    animation: glowShift 3s linear infinite;
    color: #fff;
    font-weight: 900;
    font-size: 1rem;
    letter-spacing: 0.04em;
    padding: 16px 36px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(225, 29, 72, 0.45);
    transition: transform 0.2s, box-shadow 0.2s;
    width: 100%;
    max-width: 440px;
}

.urgency-cta-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 36px rgba(225, 29, 72, 0.6);
}

@media (max-width: 640px) {
    .countdown-box {
        min-width: 56px;
        padding: 8px 12px;
    }
    .countdown-box span {
        font-size: 1.7rem;
    }
    .urgency-cta-title {
        font-size: 1.4rem;
    }
    .urgency-cta-block {
        padding: 24px 18px;
    }
    .urgency-cta-prize {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   PRICING V2 — DRAMATIC DESIGN
   ============================================================ */

/* ── Section background ── */
.pricing-dramatic-bg {
    background: linear-gradient(160deg, #050d1f 0%, #0a1628 30%, #131b36 60%, #0d1b2a 100%);
}

/* ── Floating glow orbs ── */
@keyframes orbFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-30px) scale(1.15); }
}

.pricing-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    z-index: 0;
    animation: orbFloat 8s ease-in-out infinite;
}

.pricing-orb--1 {
    width: 350px; height: 350px;
    background: #EAB308;
    top: -80px; left: -100px;
    animation-delay: 0s;
}

.pricing-orb--2 {
    width: 250px; height: 250px;
    background: #E11D48;
    bottom: -60px; right: -80px;
    animation-delay: 3s;
}

.pricing-orb--3 {
    width: 200px; height: 200px;
    background: #1e40af;
    top: 40%; left: 50%;
    animation-delay: 5s;
}

/* ── Gold shimmer text ── */
.pricing-gold-text {
    background: linear-gradient(90deg, #EAB308, #FBBF24, #F59E0B, #EAB308);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowShift 3s linear infinite;
}

/* ── Label badge ── */
.pricing-label-badge {
    display: inline-block;
    background: linear-gradient(90deg, #EAB308, #F59E0B);
    color: #422006;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    padding: 6px 20px;
    border-radius: 999px;
    box-shadow: 0 0 20px rgba(234, 179, 8, 0.4);
}

/* ── Countdown V2 ── */
.countdown-wrap-v2 {
    width: 100%;
    max-width: 700px;
}

.countdown-wrap-v2-inner {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 28px 36px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.countdown-v2-label {
    color: #fde68a;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.countdown-v2-boxes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.countdown-v2-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 14px;
    padding: 14px 22px;
    min-width: 82px;
}

.countdown-v2-box span {
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-v2-box small {
    color: rgba(255,255,255,0.5);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 5px;
}

.countdown-v2-box--sec {
    background: rgba(225, 29, 72, 0.15);
    border-color: rgba(225, 29, 72, 0.4);
}

.countdown-v2-box--sec span {
    color: #fb7185;
}

.countdown-v2-sep {
    color: #fde68a;
    font-size: 2.4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 22px;
}

.countdown-v2-note {
    color: rgba(255,255,255,0.5);
    font-size: 0.78rem;
    margin-top: 14px;
}

.countdown-v2-note strong {
    color: #fde68a;
}

/* ── Pricing Cards V2 ── */
.pricing-card-v2 {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.pricing-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.pricing-card-v2--featured {
    border: 2px solid rgba(234, 179, 8, 0.5);
    box-shadow: 0 0 40px rgba(234, 179, 8, 0.12);
}

.pricing-card-v2--featured:hover {
    box-shadow: 0 0 60px rgba(234, 179, 8, 0.25), 0 20px 60px rgba(0,0,0,0.5);
}

/* Ribbon */
.pricing-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: linear-gradient(90deg, #EAB308, #F59E0B);
    color: #422006;
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    padding: 5px 40px;
    transform: rotate(45deg);
    z-index: 5;
    box-shadow: 0 4px 12px rgba(234, 179, 8, 0.4);
}

/* Card header */
.pricing-card-header-v2 {
    padding: 24px;
    text-align: center;
}

.pricing-card-header-v2--gold {
    background: linear-gradient(135deg, rgba(234,179,8,0.15), rgba(245,158,11,0.08));
    border-bottom: 1px solid rgba(234,179,8,0.2);
}

.pricing-card-header-v2--dark {
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pricing-card-emoji {
    font-size: 2rem;
    display: block;
    margin-bottom: 8px;
}

.pricing-card-header-v2 h3 {
    font-size: 1.5rem;
    font-weight: 900;
    color: #fff;
    margin: 0;
}

.pricing-card-header-v2--gold h3 {
    color: #fde68a;
}

.pricing-card-header-v2 p {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.5);
    margin-top: 4px;
}

.pricing-card-header-v2--gold p {
    color: rgba(234,179,8,0.7);
}

/* Card body */
.pricing-card-body-v2 {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pricing-card-deadline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

.pricing-card-deadline strong {
    color: rgba(255,255,255,0.8);
}

/* Price rows */
.pricing-row-v2 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-radius: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
}

.pricing-row-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pricing-row-badge {
    font-size: 1.2rem;
}

.pricing-row-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
}

.pricing-row-right {
    text-align: right;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 4px;
}

.pricing-row-price {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
}

.pricing-row-price--gold {
    color: #fde68a;
    text-shadow: 0 0 12px rgba(234, 179, 8, 0.3);
}

.pricing-save-tag {
    display: inline-block;
    background: linear-gradient(90deg, #E11D48, #f43f5e);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    padding: 2px 8px;
    border-radius: 999px;
}

.pricing-save-tag--muted {
    background: rgba(225, 29, 72, 0.2);
    color: #fb7185;
}

/* CTA buttons */
.pricing-btn-v2 {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 0.9rem;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 4px;
}

.pricing-btn-v2:hover {
    transform: translateY(-2px);
}

.pricing-btn-v2--gold {
    background: linear-gradient(90deg, #EAB308, #F59E0B, #FBBF24);
    color: #422006;
    box-shadow: 0 6px 24px rgba(234, 179, 8, 0.4);
}

.pricing-btn-v2--gold:hover {
    box-shadow: 0 10px 40px rgba(234, 179, 8, 0.6);
}

.pricing-btn-v2--dark {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.2);
    color: #fff;
    box-shadow: 0 4px 16px rgba(0,0,0,0.3);
}

.pricing-btn-v2--dark:hover {
    background: rgba(255,255,255,0.14);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}

/* ── Warning Strip ── */
.warning-strip {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.warning-strip-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    border-radius: 14px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-top: 3px solid;
    transition: transform 0.2s;
}

.warning-strip-item:hover {
    transform: translateY(-3px);
}

.warning-strip-item--danger {
    border-top-color: #E11D48;
}

.warning-strip-item--info {
    border-top-color: #3b82f6;
}

.warning-strip-item .material-symbols-outlined {
    font-size: 1.6rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.warning-strip-item--danger .material-symbols-outlined {
    color: #fb7185;
}

.warning-strip-item--info .material-symbols-outlined {
    color: #60a5fa;
}

.warning-strip-item strong {
    font-size: 0.82rem;
    font-weight: 800;
    color: #fff;
    display: block;
    margin-bottom: 2px;
}

.warning-strip-item p {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 768px) {
    .warning-strip {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .warning-strip {
        grid-template-columns: 1fr;
    }
}

/* ── Urgency V2 ── */
@keyframes urgencyBorderGlow {
    0%, 100% {
        border-color: rgba(234, 179, 8, 0.6);
        box-shadow: 0 0 30px rgba(234, 179, 8, 0.15), 0 0 80px rgba(234, 179, 8, 0.05);
    }
    50% {
        border-color: rgba(225, 29, 72, 0.7);
        box-shadow: 0 0 30px rgba(225, 29, 72, 0.2), 0 0 80px rgba(225, 29, 72, 0.08);
    }
}

@keyframes sparkleRotate {
    0% { transform: rotate(0deg) scale(1); opacity: 0.6; }
    50% { transform: rotate(180deg) scale(1.5); opacity: 1; }
    100% { transform: rotate(360deg) scale(1); opacity: 0.6; }
}

.urgency-v2 {
    position: relative;
    background: linear-gradient(135deg, rgba(234,179,8,0.06), rgba(225,29,72,0.06));
    border: 2px solid rgba(234, 179, 8, 0.4);
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
    max-width: 680px;
    width: 100%;
    animation: urgencyBorderGlow 4s ease-in-out infinite;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.urgency-v2-sparkle {
    position: absolute;
    font-size: 1.2rem;
    color: #fde68a;
    animation: sparkleRotate 3s linear infinite;
}

.urgency-v2-sparkle--tl { top: 14px; left: 14px; animation-delay: 0s; }
.urgency-v2-sparkle--tr { top: 14px; right: 14px; animation-delay: 0.75s; }
.urgency-v2-sparkle--bl { bottom: 14px; left: 14px; animation-delay: 1.5s; }
.urgency-v2-sparkle--br { bottom: 14px; right: 14px; animation-delay: 2.25s; }

.urgency-v2-icon {
    font-size: 3.5rem;
    line-height: 1;
}

.urgency-v2-title {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(90deg, #fde68a, #f59e0b, #fde68a);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: glowShift 2.5s linear infinite;
    line-height: 1.2;
}

.urgency-v2-badge {
    display: inline-block;
    background: linear-gradient(90deg, #EAB308, #F59E0B);
    color: #422006;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    padding: 8px 22px;
    border-radius: 999px;
    box-shadow: 0 0 16px rgba(234,179,8,0.35);
}

.urgency-v2-prize-box {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(234,179,8,0.08);
    border: 2px solid rgba(234,179,8,0.25);
    border-radius: 16px;
    padding: 20px 26px;
    text-align: left;
}

.urgency-v2-prize-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #EAB308, #F59E0B);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #422006;
    box-shadow: 0 4px 16px rgba(234,179,8,0.35);
}

.urgency-v2-prize-title {
    font-size: 1.1rem;
    font-weight: 900;
    color: #fde68a;
}

.urgency-v2-prize-value {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-top: 3px;
}

.urgency-v2-prize-value strong {
    color: #fb7185;
    font-weight: 900;
    font-size: 1.1rem;
}

.urgency-v2-sub {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
    max-width: 460px;
    line-height: 1.6;
}

@keyframes flash {
    0%, 100% { opacity: 1; }
    50%       { opacity: 0.3; }
}

@keyframes zoom {
    0%, 100% { transform: scale(1); }
    50%       { transform: scale(1.1); }
}

.urgency-v2-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    background: red;
    padding: 20px;
    font-size: 32px;
    font-weight: bold;
    animation: flash 0.5s infinite, zoom 0.8s ease-in-out infinite;
    text-decoration: none;
    width: 100%;
    max-width: 480px;
    text-align: center;
    border-radius: 0;
}

.urgency-v2-btn:hover {
    opacity: 0.9;
}

@media (max-width: 640px) {
    .countdown-v2-box {
        min-width: 60px;
        padding: 10px 14px;
    }
    .countdown-v2-box span {
        font-size: 2rem;
    }
    .urgency-v2-title {
        font-size: 1.5rem;
    }
    .urgency-v2 {
        padding: 28px 18px;
    }
    .urgency-v2-prize-box {
        flex-direction: column;
        text-align: center;
    }
    .pricing-ribbon {
        font-size: 0.6rem;
        padding: 4px 32px;
        top: 12px;
        right: -36px;
    }
}

/* =============================================================
   DARK NAVY THEME — Inspired by game screenshot
   Primary : #00D0FF  (bright cyan blue)
   Accent  : #C850C0  (magenta / pink)
   Secondary: #4ECDC4 (teal)
   BG      : #0d1b4b  (dark navy)
   Card    : #0f214d
   ============================================================= */

body {
    background-color: #0d1b4b;
    color: #ffffff;
}

/* Global text overrides */
.text-gray-900, .text-gray-800 { color: #ffffff !important; }
.text-gray-700, .text-gray-600 { color: rgba(255,255,255,0.72) !important; }
.text-gray-500 { color: rgba(255,255,255,0.52) !important; }
.text-gray-400 { color: rgba(255,255,255,0.42) !important; }

/* Border overrides */
.border-gray-200  { border-color: rgba(0,208,255,0.18) !important; }
.border-amber-200 { border-color: rgba(0,208,255,0.22) !important; }

/* Hero */
.bg-hero {
    background: linear-gradient(135deg, #060e2f 0%, #0d1b4b 50%, #111d5c 100%);
}

/* CTA gradient strips */
.cta-gradient {
    background: linear-gradient(135deg, #0a1b6e, #1430a8, #C850C0, #1430a8);
    background-size: 300% 300%;
    animation: gradientShift 8s ease infinite;
}
.cta-gradient h2, .cta-gradient p { color: #ffffff !important; }

/* Dark gradient section tweak */
.dark-gradient-section {
    background: linear-gradient(135deg, #070e20 0%, #0d1b4b 30%, #131c6a 60%, #070e20 100%) !important;
}

/* Pricing section */
.pricing-dramatic-bg {
    background: linear-gradient(160deg, #060e2f 0%, #0a1545 40%, #0e1a5a 70%, #060e2f 100%) !important;
}

/* Cards */
.bg-bg-card { background: #0f214d !important; }
.border-gray-200 { border-color: rgba(0,208,255,0.15) !important; }

/* Speaker section (light → dark) */
.spk-light-section {
    background: #0f214d !important;
    border-top-color:    rgba(0,208,255,0.18) !important;
    border-bottom-color: rgba(0,208,255,0.18) !important;
}
.spk-intro-card {
    background: #0a1535 !important;
    border-color: rgba(0,208,255,0.22) !important;
}
.spk-photo-wrap {
    border-color: rgba(0,208,255,0.35) !important;
    background: #0d1b4b !important;
}
.spk-name, .spk-profile-name { color: #ffffff !important; }
.spk-degrees, .spk-profile-degrees { color: #00D0FF !important; }
.spk-oleh-label, .spk-tagline, .spk-profile-label { color: #C850C0 !important; }
.spk-check-title { color: #ffffff !important; }
.spk-check-sub   { color: rgba(255,255,255,0.52) !important; }
.spk-check-icon  { background: #00D0FF !important; color: #0d1b4b !important; }
.spk-edu-block   { background: rgba(0,208,255,0.07) !important; border-color: rgba(0,208,255,0.2) !important; }
.spk-edu-label   { color: #00D0FF !important; }
.spk-edu-list li { color: rgba(255,255,255,0.72) !important; }
.spk-bio-text          { color: rgba(255,255,255,0.72) !important; }
.spk-bio-text strong   { color: #ffffff !important; }
.spk-cert-placeholder  { background: rgba(255,255,255,0.04) !important; border-color: rgba(0,208,255,0.2) !important; }
.spk-cert-placeholder:hover { border-color: #00D0FF !important; }
.spk-cta-btn { background: #C850C0 !important; box-shadow: 0 4px 16px rgba(200,80,192,0.4) !important; }
.spk-cta-btn:hover { box-shadow: 0 8px 24px rgba(200,80,192,0.55) !important; }

/* FAQ */
.faq-item { border-color: rgba(0,208,255,0.15) !important; }
.faq-question { color: #ffffff !important; }
.faq-question:hover { color: #00D0FF !important; }
.faq-answer { color: rgba(255,255,255,0.62) !important; }
.faq-question .faq-icon { color: #C850C0 !important; }

/* Nav */
header nav a, #mobile-menu a { color: rgba(255,255,255,0.72) !important; }
header nav a:hover, #mobile-menu a:hover { color: #00D0FF !important; }
header h2 { color: #ffffff !important; }
header.scrolled { background: rgba(13,27,75,0.98) !important; }

/* Footer */
footer .text-gray-400, footer .text-gray-500 { color: rgba(255,255,255,0.42) !important; }
footer .text-gray-900 { color: #ffffff !important; }
footer .border-t { border-color: rgba(0,208,255,0.18) !important; }

/* Pain point icon colors */
.text-red-400   { color: #C850C0 !important; }
.text-green-400 { color: #4ECDC4 !important; }

/* ===== VENN DIAGRAM — 3 Lingkaran Keahlian ===== */
.venn-wrap {
    position: relative;
    width: 190px;
    height: 160px;
    margin: 24px auto 4px;
    flex-shrink: 0;
    isolation: isolate;
}

.venn-circle {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    mix-blend-mode: screen;
    opacity: 0.85;
    font-size: 0.65rem;
    font-weight: 900;
    color: #ffffff;
    text-shadow: 0 1px 6px rgba(0,0,0,0.8);
    letter-spacing: 0.03em;
    text-align: center;
    padding: 8px;
    line-height: 1.2;
    transition: opacity 0.2s;
}

/* Hukum — merah, kiri atas */
.venn-circle--hukum {
    background: rgba(220, 38, 38, 0.75);
    top: 10px;
    left: 10px;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 14px;
    padding-left: 14px;
}

/* Akuntansi — teal/biru, kanan atas */
.venn-circle--akuntansi {
    background: rgba(6, 182, 212, 0.75);
    top: 10px;
    right: 10px;
    align-items: flex-start;
    justify-content: flex-end;
    padding-top: 14px;
    padding-right: 12px;
    text-align: right;
}

/* Pajak — hijau, bawah tengah */
.venn-circle--pajak {
    background: rgba(34, 197, 94, 0.75);
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 12px;
}

/* Hover */
.venn-wrap:hover .venn-circle { opacity: 1; }


