@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

html {
    scroll-behavior: smooth;
    scroll-padding-top: 130px;
}

html, body {
    width: 100%;
    overflow-x: clip !important;
}

body {
    background-color: #f8fafc;
    color: #0f172a;
    font-family: 'Plus Jakarta Sans', sans-serif;
    padding-top: 108px;
}

section {
    scroll-margin-top: 130px;
}

.bg-canvas {
    background-color: #f8fafc;
}

.text-gradient-purple {
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.text-purple {
    color: #7c3aed !important;
}

.announcement-ticker {
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    height: 38px;
    z-index: 1060;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
}

.ticker-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.ticker-title {
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    color: #ffffff;
    padding: 0 20px;
    font-weight: 800;
    font-size: 0.78rem;
    letter-spacing: 1px;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    position: relative;
    z-index: 20;
}

.ticker-content-container {
    flex-grow: 1;
    overflow: hidden;
    position: relative;
    height: 100%;
}

.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    height: 100%;
    animation: tickerAnimation 32s linear infinite;
}

.ticker-item {
    padding: 0 35px;
    font-size: 0.82rem;
    color: #0f172a;
    font-weight: 600;
}

@keyframes tickerAnimation {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.main-navbar {
    top: 38px;
    z-index: 1050;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
    padding: 10px 0;
}

.brand-badge-sm {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    color: #ffffff;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.brand-text {
    color: #0f172a;
    letter-spacing: -0.5px;
}

.main-navbar .nav-link {
    color: #64748b !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 18px !important;
    border-radius: 50rem;
    transition: all 0.25s ease;
}

    .main-navbar .nav-link:hover,
    .main-navbar .nav-link.active {
        color: #7c3aed !important;
        background: rgba(124, 58, 237, 0.06);
    }

.nav-cta-wrapper {
    display: flex;
    align-items: center;
}

.btn-cta-primary {
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    color: #ffffff;
    border: none;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 10px 22px;
    border-radius: 50rem;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 16px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

    .btn-cta-primary:hover {
        color: #ffffff;
        transform: translateY(-2px);
        box-shadow: 0 8px 24px rgba(124, 58, 237, 0.45);
    }

.luxury-offcanvas {
    background: rgba(15, 23, 42, 0.96) !important;
    backdrop-filter: blur(30px);
}

.mobile-drawer-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 3px solid #7c3aed;
    border-radius: 16px;
    padding: 16px 20px;
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.3s ease;
}

    .mobile-drawer-card:hover,
    .mobile-drawer-card:active {
        background: rgba(124, 58, 237, 0.2);
        border-color: rgba(124, 58, 237, 0.4);
        color: #ffffff;
        transform: translateX(4px);
    }

.hero-section {
    position: relative;
    padding-top: 10px;
}

.hero-banner-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    width: 100%;
    aspect-ratio: 1920 / 700;
    background: #0d1117;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
    border: 1px solid #e2e8f0;
}

.hero-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay-layer {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(13, 17, 23, 0.5) 0%, transparent 60%);
    pointer-events: none;
}

.countdown-glass-container {
    display: inline-flex;
    gap: 12px;
    pointer-events: auto;
}

.countdown-unit {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 10px 18px;
    border-radius: 14px;
    text-align: center;
    min-width: 78px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

    .countdown-unit span {
        font-size: 1.5rem;
        font-weight: 800;
        color: #7c3aed;
        display: block;
        line-height: 1.1;
    }

    .countdown-unit small {
        font-size: 0.6rem;
        color: #64748b;
        font-weight: 800;
        letter-spacing: 1px;
    }

.action-dock-vibrant {
    display: flex;
    align-items: center;
    gap: 14px;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left-width: 4px;
    border-radius: 18px;
    padding: 18px 20px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
}

.border-purple {
    border-left-color: #7c3aed;
}

.border-violet {
    border-left-color: #8b5cf6;
}

.border-fuchsia {
    border-left-color: #d946ef;
}

.border-rose {
    border-left-color: #f43f5e;
}

.action-dock-vibrant:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(124, 58, 237, 0.1);
}

.dock-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    color: #ffffff;
    flex-shrink: 0;
}

.bg-purple-glow {
    background: linear-gradient(135deg, #7c3aed, #a78bfa);
}

.bg-violet-glow {
    background: linear-gradient(135deg, #8b5cf6, #c4b5fd);
}

.bg-fuchsia-glow {
    background: linear-gradient(135deg, #d946ef, #f472b6);
}

.bg-rose-glow {
    background: linear-gradient(135deg, #f43f5e, #fb7185);
}

.dock-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.dock-title {
    font-size: 0.98rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
}

.dock-subtitle {
    font-size: 0.78rem;
    color: #64748b;
    font-weight: 500;
}

.dock-arrow {
    color: #e2e8f0;
    font-size: 1.4rem;
    transition: all 0.3s ease;
}

.action-dock-vibrant:hover .dock-arrow {
    color: #7c3aed;
    transform: translateX(4px);
}

.editorial-invite-card {
    border: 1px solid #e2e8f0;
    border-radius: 28px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.03);
    width: 100%;
}

.quote-bg-icon {
    position: absolute;
    right: -20px;
    bottom: -30px;
    font-size: 14rem;
    color: #7c3aed;
    opacity: 0.03;
    pointer-events: none;
}

.tag-pill-vibrant {
    padding: 6px 16px;
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 50rem;
    font-size: 0.78rem;
    font-weight: 800;
}

.editorial-title {
    font-size: 2.3rem;
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.editorial-greeting {
    font-size: 1.15rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 12px;
}

.editorial-body p {
    font-size: 1rem;
    line-height: 1.75;
    color: #64748b;
}

.quartz-timeline-hub {
    background: linear-gradient(135deg, #1e1b4b 0%, #311042 100%);
    border-radius: 28px;
    border: 1px solid rgba(167, 139, 250, 0.2);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
    height: 450px;
}

.quartz-glow-bg {
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(217, 70, 239, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.border-purple-subtle {
    border-color: rgba(167, 139, 250, 0.15) !important;
}

.quartz-icon-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.btn-quartz-ctrl {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(167, 139, 250, 0.3);
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    transition: all 0.2s ease;
}

    .btn-quartz-ctrl:hover {
        background: #d946ef;
        color: #ffffff;
        border-color: #d946ef;
    }

.quartz-viewport {
    height: 290px;
    overflow: hidden;
    position: relative;
}

.quartz-track {
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.45s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.quartz-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(167, 139, 250, 0.15);
    border-radius: 18px;
    padding: 14px 18px;
    position: relative;
    flex: 0 0 auto;
    height: 88px;
    transition: all 0.3s ease;
}

    .quartz-item:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: #d946ef;
        transform: translateY(-2px);
    }

.qi-date-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.2);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 12px;
    padding: 6px 12px;
    min-width: 65px;
}

.qi-day {
    font-size: 1.35rem;
    font-weight: 800;
    color: #f3e8ff;
    line-height: 1;
}

.qi-month {
    font-size: 0.65rem;
    font-weight: 800;
    color: #c084fc;
    letter-spacing: 1px;
    margin-top: 2px;
}

.qi-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.qi-tag {
    align-self: flex-start;
    font-size: 0.65rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50rem;
    background: rgba(217, 70, 239, 0.15);
    color: #f472b6;
    margin-bottom: 3px;
}

.qi-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 2px 0;
}

.qi-sub {
    font-size: 0.78rem;
    color: #cbd5e1;
    margin: 0;
}

.q-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

    .q-dot.active {
        width: 20px;
        border-radius: 8px;
        background: #d946ef;
    }

.speaker-card-vibrant {
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    transition: all 0.35s cubic-bezier(0.165, 0.84, 0.44, 1);
}

    .speaker-card-vibrant:hover {
        transform: translateY(-8px);
        border-color: #7c3aed;
        box-shadow: 0 16px 36px rgba(124, 58, 237, 0.12);
    }

.speaker-avatar-frame {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    padding: 3px;
    background: linear-gradient(135deg, #7c3aed, #d946ef);
}

    .speaker-avatar-frame img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border: 3px solid #ffffff;
    }

.btn-speaker-purple {
    border: 1px solid #e2e8f0;
    color: #7c3aed;
    background: #ffffff;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

    .btn-speaker-purple:hover {
        background: #7c3aed;
        color: #ffffff;
        border-color: #7c3aed;
    }

.custom-modal-overlay {
    z-index: 2000 !important;
}

.custom-modal {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    z-index: 2010;
    position: relative;
}

.custom-modal-close {
    cursor: pointer;
    z-index: 2020;
    position: relative;
}

.speaker-modal-img {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border: 4px solid #f1f5f9;
}

.dots-container {
    margin-bottom: 15pc;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.dot {
    height: 20px;
    width: 20px;
    margin-right: 10px;
    border-radius: 10px;
    background-color: #b3d4fc;
    animation: pulse 1.5s infinite ease-in-out;
}

    .dot:last-child {
        margin-right: 0;
    }

    .dot:nth-child(1) {
        animation-delay: -0.3s;
    }

    .dot:nth-child(2) {
        animation-delay: -0.1s;
    }

    .dot:nth-child(3) {
        animation-delay: 0.1s;
    }

@keyframes pulse {
    0% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }

    50% {
        transform: scale(1.2);
        background-color: #6793fb;
        box-shadow: 0 0 0 10px rgba(178, 212, 252, 0);
    }

    100% {
        transform: scale(0.8);
        background-color: #b3d4fc;
        box-shadow: 0 0 0 0 rgba(178, 212, 252, 0.7);
    }
}

.loader {
    position: relative;
    left: calc(50% - 1.25em);
    min-height: 350px;
    width: 2.5em;
    height: 2.5em;
    transform: rotate(165deg);
}

    .loader:before,
    .loader:after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        display: block;
        width: 0.5em;
        height: 0.5em;
        border-radius: 0.25em;
        transform: translate(-50%, -50%);
    }

    .loader:before {
        animation: before8 2s infinite;
    }

    .loader:after {
        animation: after6 2s infinite;
    }

@keyframes before8 {
    0% {
        width: 0.5em;
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }

    35% {
        width: 2.5em;
        box-shadow: 0 -0.5em rgba(225, 20, 98, 0.75), 0 0.5em rgba(111, 202, 220, 0.75);
    }

    70% {
        width: 0.5em;
        box-shadow: -1em -0.5em rgba(225, 20, 98, 0.75), 1em 0.5em rgba(111, 202, 220, 0.75);
    }

    100% {
        box-shadow: 1em -0.5em rgba(225, 20, 98, 0.75), -1em 0.5em rgba(111, 202, 220, 0.75);
    }
}

@keyframes after6 {
    0% {
        height: 0.5em;
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }

    35% {
        height: 2.5em;
        box-shadow: 0.5em 0 rgba(61, 184, 143, 0.75), -0.5em 0 rgba(233, 169, 32, 0.75);
    }

    70% {
        height: 0.5em;
        box-shadow: 0.5em -1em rgba(61, 184, 143, 0.75), -0.5em 1em rgba(233, 169, 32, 0.75);
    }

    100% {
        box-shadow: 0.5em 1em rgba(61, 184, 143, 0.75), -0.5em -1em rgba(233, 169, 32, 0.75);
    }
}

.davet p {
    text-align: justify !important;
}

.congress-meta-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
    width: 100%;
    margin: 20px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.congress-meta-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #7c3aed;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

    .congress-meta-card:hover {
        transform: translateX(6px);
        border-color: #cbd5e1;
        border-left-color: #d946ef;
        box-shadow: 0 10px 25px rgba(124, 58, 237, 0.08);
    }

.cm-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(217, 70, 239, 0.1));
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cm-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.cm-label {
    font-size: 0.74rem;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: #64748b;
}

.cm-value {
    font-size: 1.05rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 576px) {
    .congress-meta-card {
        padding: 16px 18px;
        gap: 14px;
    }

    .cm-icon-box {
        width: 40px;
        height: 40px;
        font-size: 1.15rem;
    }

    .cm-value {
        font-size: 0.95rem;
    }
}

.program-preview-wrap {
    margin-top: 36px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.program-preview-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 16px;
    letter-spacing: -0.3px;
}

    .program-preview-title i {
        color: #7c3aed;
        font-size: 1.25rem;
    }

.program-timeline-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.program-timeline-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.03);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

    .program-timeline-card::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 4px;
        background: linear-gradient(180deg, #7c3aed 0%, #d946ef 100%);
    }

    .program-timeline-card:hover {
        transform: translateX(6px);
        border-color: #cbd5e1;
        box-shadow: 0 10px 25px rgba(124, 58, 237, 0.08);
    }

.pt-date-badge {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.08) 0%, rgba(217, 70, 239, 0.08) 100%);
    border: 1px solid rgba(124, 58, 237, 0.2);
    color: #7c3aed;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 10px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.pt-details {
    color: #334155;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.5;
    margin: 0;
    letter-spacing: 0.2px;
}

@media (max-width: 640px) {
    .program-timeline-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px 18px;
    }

    .pt-date-badge {
        font-size: 0.82rem;
        padding: 6px 12px;
    }

    .pt-details {
        font-size: 0.88rem;
    }
}

.reg-page-wrapper {
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: #1e293b;
    width: 100%;
}

.reg-section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #f1f5f9;
}

.reg-section-badge {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: linear-gradient(135deg, #7c3aed, #d946ef);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.15rem;
    flex-shrink: 0;
}

.reg-section-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.3px;
    margin: 0;
}

.reg-table-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    margin-bottom: 20px;
    width: 100%;
}

.custom-reg-table {
    width: 100%;
    margin: 0;
    border-collapse: separate;
    border-spacing: 0;
}

    .custom-reg-table thead th {
        background: #0f172a;
        color: #ffffff;
        font-weight: 700;
        font-size: 0.92rem;
        letter-spacing: 0.5px;
        padding: 16px 20px;
        text-align: center;
        border: none;
    }

        .custom-reg-table thead th:first-child {
            text-align: left;
        }

    .custom-reg-table tbody td {
        padding: 16px 20px;
        font-size: 1rem;
        font-weight: 600;
        text-align: center;
        color: #0f172a;
        border-top: 1px solid #f1f5f9;
        background: #ffffff;
    }

        .custom-reg-table tbody td:first-child {
            text-align: left;
            font-weight: 700;
            color: #334155;
        }

.reg-price-tag {
    color: #7c3aed !important;
    font-weight: 800 !important;
    font-size: 1.1rem;
}

.reg-info-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #7c3aed;
    border-radius: 14px;
    padding: 22px 26px;
    margin-bottom: 40px;
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.02);
    width: 100%;
}

.reg-info-title {
    font-size: 0.95rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .reg-info-title i {
        color: #7c3aed;
    }

.reg-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

    .reg-info-list li {
        position: relative;
        padding-left: 22px;
        color: #475569;
        font-size: 0.94rem;
        line-height: 1.6;
    }

        .reg-info-list li::before {
            content: '';
            position: absolute;
            left: 4px;
            top: 9px;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #7c3aed;
        }

.reg-mail-link {
    color: #7c3aed;
    font-weight: 700;
    text-decoration: none;
}

    .reg-mail-link:hover {
        color: #d946ef;
        text-decoration: underline;
    }

.contact-org-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px 28px;
    box-shadow: 0 10px 35px rgba(15, 23, 42, 0.04);
    position: relative;
    overflow: hidden;
    font-family: 'Plus Jakarta Sans', sans-serif;
    width: 100%;
}

    .contact-org-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, #7c3aed, #d946ef);
    }

.org-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.org-header-icon {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(217, 70, 239, 0.1));
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.org-header-title {
    font-size: 1.2rem;
    font-weight: 800;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.3px;
}

.org-brand-box {
    background: #f8fafc;
    border: 1px solid #edf2f7;
    border-radius: 18px;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.org-brand-img {
    max-width: 170px;
    height: auto;
    object-fit: contain;
}

.org-brand-name {
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #1e293b;
    margin: 0;
    text-transform: uppercase;
}

.org-brand-sub {
    font-size: 0.78rem;
    color: #64748b;
    margin: 2px 0 0 0;
    font-weight: 600;
}

.contact-items-stack {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item-row {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 14px 16px;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 14px;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

    .contact-item-row:hover {
        background: #faf5ff;
        border-color: rgba(124, 58, 237, 0.25);
        transform: translateX(4px);
    }

.ci-icon-box {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(124, 58, 237, 0.08);
    color: #7c3aed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.contact-item-row:hover .ci-icon-box {
    background: #7c3aed;
    color: #ffffff;
}

.ci-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
    width: 100%;
}

.ci-label {
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    color: #64748b;
}

.ci-value {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.5;
}

.ci-link {
    color: #0f172a;
    text-decoration: none;
    transition: color 0.2s ease;
}

    .ci-link:hover {
        color: #7c3aed;
    }

.ci-link-accent {
    color: #7c3aed;
    text-decoration: none;
    font-weight: 700;
}

    .ci-link-accent:hover {
        color: #d946ef;
        text-decoration: underline;
    }

@media (max-width: 991.98px) {
    body {
        padding-top: 92px;
    }

    .main-navbar {
        padding: 8px 16px;
    }

    .editorial-title {
        font-size: 1.6rem;
    }

    .quartz-timeline-hub {
        height: auto !important;
        min-height: 100%;
    }

    .hero-banner-wrapper {
        aspect-ratio: 16 / 9;
        min-height: 250px;
    }

    .countdown-unit {
        padding: 8px 12px;
        min-width: 62px;
    }

        .countdown-unit span {
            font-size: 1.25rem;
        }

    .col-lg-8,
    .col-lg-12,
    .col-12 {
        width: 100% !important;
        max-width: 100% !important;
        flex: 0 0 100% !important;
    }
}

@media (max-width: 768px) {
    .editorial-invite-card {
        padding: 24px 16px !important;
        border-radius: 20px;
    }

    .reg-page-wrapper,
    .reg-table-card,
    .reg-info-box,
    .table-responsive {
        width: 100% !important;
        max-width: 100% !important;
        min-width: 100% !important;
    }

    .custom-reg-table {
        width: 100% !important;
        min-width: 100% !important;
    }

        .custom-reg-table thead th,
        .custom-reg-table tbody td {
            padding: 12px 10px;
            font-size: 0.85rem;
            white-space: normal;
        }

    .reg-price-tag {
        font-size: 0.95rem;
    }

    .reg-info-box {
        padding: 16px 14px;
        margin-bottom: 24px;
    }

    .reg-info-list li {
        font-size: 0.88rem;
    }
}

@media (max-width: 576px) {
    .hero-banner-wrapper {
        aspect-ratio: 16 / 9;
        min-height: 200px;
        border-radius: 16px;
    }

    .hero-overlay-layer {
        position: static;
        background: transparent;
    }

        .hero-overlay-layer > div {
            padding: 12px 0 0 0 !important;
        }

    .countdown-glass-container {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        width: 100%;
        gap: 8px;
    }

    .countdown-unit {
        min-width: unset;
        width: 100%;
        padding: 10px 4px;
        border-radius: 12px;
        background: #ffffff;
        border: 1px solid #e2e8f0;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.05);
    }

        .countdown-unit span {
            font-size: 1.2rem;
            line-height: 1;
            margin-bottom: 2px;
        }

        .countdown-unit small {
            font-size: 0.62rem;
            letter-spacing: 0.5px;
        }

    .contact-org-card {
        padding: 24px 18px;
    }

    .org-brand-box {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
        padding: 16px;
    }

    .org-brand-img {
        max-width: 140px;
    }
}
