/*----------------------------
  Events Page – Color Theme Override
  Replaced orange (#e7490a, #6222cc) with the
  project brand: --qutiiz-base #6222cc / dark purple #4a18a0
-----------------------------*/

/*----------------------------
  Fonts
-----------------------------*/
@font-face { font-family: bricolabold;      src: url(../fonts/BRICOLAGEGROTESQUE_24PT-BOLD.TTF); font-display: swap;}
@font-face { font-family: bricolaextrabold; src: url(../fonts/BRICOLAGEGROTESQUE_24PT-EXTRABOLD.TTF); font-display: swap;}
@font-face { font-family: bricolaextralight;src: url(../fonts/BRICOLAGEGROTESQUE_24PT-EXTRALIGHT.TTF); font-display: swap;}
@font-face { font-family: bricolalight;     src: url(../fonts/BRICOLAGEGROTESQUE_24PT-LIGHT.TTF); font-display: swap;}
@font-face { font-family: bricolamedium;    src: url(../fonts/BRICOLAGEGROTESQUE_24PT-MEDIUM.TTF); font-display: swap;}
@font-face { font-family: bricolaregular;   src: url(../fonts/BRICOLAGEGROTESQUE_24PT-REGULAR.TTF); font-display: swap;}
@font-face { font-family: bricolasemibold;  src: url(../fonts/BRICOLAGEGROTESQUE_24PT-SEMIBOLD.TTF); font-display: swap;}
@font-face { font-family: benzinmedium;     src: url(../fonts/Benzin-Medium.ttf); font-display: swap;}
@font-face { font-family: benzinsemibold;   src: url(../fonts/Benzin-Semibold.ttf); font-display: swap;}
@font-face { font-family: benzinbold;       src: url(../fonts/Benzin-Bold.ttf); font-display: swap;}
@font-face { font-family: benzinextrabold;  src: url(../fonts/Benzin-ExtraBold.ttf); font-display: swap;}
@font-face { font-family: benzinregular;    src: url(../fonts/Benzin-Regular.ttf); font-display: swap;}

/*----------------------------
  Reset / Base
-----------------------------*/
* { margin: 0; padding: 0; box-sizing: border-box; }
body { width: 100%; overflow-x: hidden; }

@media (max-width: 600px) { .desktop { display: none !important; } }
@media (min-width: 601px) { .mobile  { display: none !important; } }




/*============================
  HOME SECTION 1
============================*/
.home-section-1 {
    width: 100%;
    background: #000;
    padding: 7vw 0 2vw;
    overflow: hidden;
}
.home-section-1-wrapper {
    width: 100%;
    display: flex;
    gap: 2.5vw;
    align-items: stretch;
    padding: 2vw 6vw;
}
.home-section-1-video {
    width: 60%;
    border-radius: 2vw;
    overflow: hidden;
    z-index: 10;
    position: relative;
}
.home-section-1-video video {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.video-mute-btn {
    position: absolute;
    bottom: 1vw;
    right: 1vw;
    width: 4.5vw;
    height: 4.5vw;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
    transition: all 0.3s ease;
}
.video-mute-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: #fff;
}
.video-mute-btn svg {
    width: 2.5vw;
    height: 2.5vw;
    fill: white;
}
.mute-icon,
.unmute-icon {
    transition: opacity 0.2s ease;
}
.home-section-1-content { width: 40%; position: relative; }

.home-section-1-card {
    position: relative;
    height: 100%;
    background: var(--qutiiz-base);
    border-radius: 1.5vw;
    padding: 2vw 0;
    z-index: 2;
}
.home-section-1-card::after {
    content: "";
    position: absolute;
    bottom: 0.6vw;
    left: -0.8vw;
    width: 100%;
    height: 99%;
    border-radius: 1.5vw;
    background: #000;
    border: 1px solid var(--qutiiz-base);
    z-index: -1;
}
.home-section-1-card h1 {
    color: #fff;                /* was purple-on-purple — now white on purple */
    font-size: 3.3vw;
    line-height: 1.2;
    font-weight: 900;
    margin-bottom: 1.5vw;
    text-transform: uppercase;
    font-family: 'benzinbold';
    padding-left: 1.5vw;
}
.home-section-1-card p {
    color: #fff;
    font-size: 2vw;
    line-height: 1.1;
    max-width: 98%;
    font-family: 'benzinmedium';
    padding-left: 1.5vw;
}
.home-section-1-card p span {
    color: var(--qutiiz-base);           /* was purple-on-purple — now semi-white on purple */
    display: block;
    font-weight: 700;
}
.home-section-1-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1vw;
    margin-top: 2vw;
    margin-bottom: 1vw;
    width: 93%;
    padding-left: 1.5vw;
}

.home-section-1-box {
    width: 100%;
}

.register-btn {
    grid-column: 1 / -1;
    width: 100%;
}
.home-section-1-box {
    flex: 1;
    border: .12vw solid rgba(255,255,255,.8);
    border-radius: .8vw;
    padding: 1vw;
}
.home-section-1-box h4 {
    color: #fff;                /* was purple-on-purple card — now white */
    font-size: 1.3vw;
    margin-bottom: .4vw;
    font-family: 'benzinmedium';
}
.home-section-1-box span {
    color: #fff;
    font-size: 1.1vw;
    line-height: 1.4;
    display: block;
    font-family: 'bricolaregular';
}

/* Strip ticker */
.home-strip {
    width: 110%;
    background: var(--qutiiz-base);
    overflow: hidden;
    padding: 25px 0;
    transform: rotate(0deg);
    margin-top: 0vw;
    margin-left: -3vw;
}
.home-strip-track {
    display: flex;
    width: max-content;
    animation: homeStripMove 15s linear infinite;
}
.home-strip-group {
    display: flex;
    align-items: center;
    gap: 5vw;
    padding-right: 5vw;
}
.home-strip-group span {
    display: flex;
    align-items: center;
    gap: 5vw;
    color: #fff;
    font-size: 2vw;
    font-weight: 900;
    white-space: nowrap;
    font-family: 'benzinmedium';
}
.home-strip-group svg { width: 3.5vw; height: auto; }
@keyframes homeStripMove {
    from { transform: translateX(-50%); }
    to   { transform: translateX(0); }
}

/* Section 1 — mobile */
@media (max-width: 600px) {
    .home-section-1 { padding: 35vw 0 6vw; }
    .home-section-1-wrapper { flex-direction: column; gap: 5vw; padding: 0 6vw; }
    .home-section-1-video, .home-section-1-content { width: 100%; }
    .home-section-1-video { border-radius: 5vw; height: 100vw; }
    .video-mute-btn { width: 12vw; height: 12vw; bottom: 4vw; right: 4vw; }
    .video-mute-btn svg { width: 6vw; height: 6vw; }
    .home-section-1-card { padding: 10vw 2vw; border-radius: 4vw; }
    .home-section-1-card::after { bottom: 1vw; left: -2vw; border-radius: 4vw; }
    .home-section-1-card h1 { font-size: 10vw; margin-bottom: 5vw; }
    .home-section-1-card p  { font-size: 8vw; max-width: 100%; }
    .home-section-1-info { flex-direction: column; gap: 3vw; margin-top: 8vw; }
    .home-section-1-box { border-radius: 3vw; padding: 4vw; }
    .home-section-1-box h4  { font-size: 6vw; }
    .home-section-1-box span{ font-size: 5vw; }
    .home-strip { padding: 2vw 0; width: 110%; margin-top: 4vw; margin-left: -3vw; }
    .home-strip-group span  { font-size: 8vw; gap: 7vw; }
    .home-strip-group svg   { width: 10vw; }
}

/*============================
  HOME SECTION 2
============================*/
.home-section-2 {
    width: 100%;
    padding: 3vw 6vw;
    background: #fff;
    position: relative;
}
.home-section-2-tag {
    position: absolute;
    top: 3vw;
    left: 6vw;
    background: var(--qutiiz-base);
    color: #fff;                /* was black-on-purple — now white for better contrast */
    font-size: 1.5vw;
    font-weight: 700;
    padding: 1.2vw 2vw;
    border-radius: .8vw .8vw .8vw 0;
    z-index: 2;
    font-family: 'benzinmedium';
}
.home-section-2-inner {
    border: .12vw solid var(--qutiiz-base);
    border-radius: 1vw 1vw 0 0;
    padding: 7vw 4vw 5vw;
    background: #fff;
}
.home-section-2 h2 {
    text-align: center;
    font-size: 4vw;
    line-height: 1.1;
    font-weight: 900;
    color: #000;
    font-family: 'benzinmedium';
}
.home-section-2 h2 span { color: var(--qutiiz-base); }


.home-section-2-cards {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin-top: 4vw;
}

.home-section-2-cards > *:nth-child(-n+3) {
    grid-column: span 2; /* First 3 cards */
}

.home-section-2-cards > *:nth-child(4),
.home-section-2-cards > *:nth-child(5) {
    grid-column: span 3; /* Last 2 cards */
}
.home-section-2-card {
    width: 100%;
    border: .15vw solid var(--qutiiz-base);
    border-radius: 1.5vw;
    padding: 2vw;
    text-align: center;
}
.home-section-2-card h3 { font-size: 3vw; color: var(--qutiiz-base); line-height: 1; font-weight: 900; font-family: 'benzinmedium'; margin-bottom: -.8vw; }
.home-section-2-card h4 { font-size: 3vw; margin: 0; font-weight: 800; font-family: 'benzinmedium'; }
.home-section-2-card p  { margin-top: 2vw; font-size: 1.4vw; line-height: 1.3; font-family: 'bricolalight'; }

/* Speakers Section */
.home-section-2-speakers {
    width: 100%;
    margin: 3vw 0 5vw;
}
.home-section-2-speakers h3 span{
  color: var(--qutiiz-base);
}

.home-section-2-speakers h3 {
    text-align: center;
    font-size: 4vw;
    line-height: 1.1;
    font-weight: 900;
    color: #000;
    font-family: 'benzinmedium';
    margin-bottom: 40px;
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
    width: 100%;
}

.speaker-card {
    position: relative;
    overflow: hidden;
    background: #f9f9f9;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
    transform: translateZ(0);
}

.speaker-card:hover {
    transform: translateY(-0.5vw);
    box-shadow: 0 10px 30px rgba(98, 34, 204, 0.15);
}

.speaker-card img {
    width: 100%;
    height: 400px;
    display: block;
    object-fit: cover;
    border-radius: 1.5vw 1.5vw 0 0;
}

.speaker-info {
    padding: 1.5vw;
    text-align: center;
    border:1px solid var(--qutiiz-base);
    border-radius: 0 0 20px 20px ;
}

.speaker-name {
    font-size: 1.5vw;
    font-weight: 900;
    color: #000;
    margin-bottom: 0.4vw;
    font-family: 'benzinbold';
    line-height: 1.2;
}

.speaker-role {
    font-size: 1.1vw;
    color: var(--qutiiz-base);
    font-weight: 700;
    font-family: 'benzinmedium';
    margin-bottom: 0.3vw;
}

.speaker-company {
    font-size: 1vw;
    color: #666;
    font-family: 'bricolalight';
    line-height: 1.3;
}

/* Responsive: Tablet */
@media (max-width: 1024px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5vw;
    }

    .speaker-card img {
        height: 35vw;
    }

    .home-section-2-speakers h3 {
        font-size: 3.5vw;
    }

    .speaker-name {
        font-size: 1.8vw;
    }

    .speaker-role {
        font-size: 1.3vw;
    }

    .speaker-company {
        font-size: 1.1vw;
    }
}

/* Responsive: Mobile */
@media (max-width: 600px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
        padding: 0 5vw;
    }

    .speaker-card img {
        height: 45vw;
        border-radius: 4vw 4vw 0 0;
    }

    .speaker-card {
        border-radius: 4vw;
    }

    .speaker-info {
        padding: 3vw;
    }

    .home-section-2-speakers h3 {
        font-size: 7vw;
        margin-bottom: 6vw;
    }

    .speaker-name {
        font-size: 4vw;
        margin-bottom: 1.5vw;
    }

    .speaker-role {
        font-size: 3vw;
        margin-bottom: 1vw;
    }

    .speaker-company {
        font-size: 2.5vw;
    }
}

.home-section-2-center-icon { text-align: center; margin-top: 3vw; }
.home-section-2-center-icon svg { width: 4vw; }

.home-section-2-program { display: flex; justify-content: center; align-items: flex-start; gap: 1.5vw; margin-top: 2vw; }
.home-section-2-program-icon svg { width: 3vw; height: auto; fill: #000; transform: rotate(-90deg); }
.home-section-2-program-content { display: flex; align-items: flex-start; gap: 1.3vw; flex-wrap: wrap; }
.home-section-2-program-content h3   { font-size: 4vw; line-height: 1; font-weight: 900; border-bottom: .5vw solid var(--qutiiz-base); font-family: 'benzinmedium'; }
.home-section-2-program-content span { font-size: 3vw; font-weight: 800; line-height: 1; font-family: 'bricolamedium'; margin-top: 1.3vw; }

.home-section-2-description { text-align: center; margin-top: 2vw; font-size: 1.6vw; font-family: 'bricolalight'; }

.home-section-2-outcomes { text-align: center; margin-top: 6vw; }
.home-section-2-outcomes h3 { font-size: 4vw; line-height: 1.1; font-weight: 900; font-family: 'benzinmedium'; }
.home-section-2-outcomes svg { width: 4vw; vertical-align: middle; margin: 0 .4vw; padding: 0 .4vw; background: linear-gradient(135deg, #6222cc 0%, #4a18a0 100%); fill: #fff; }
.sign-svg { display: flex; align-items: center; justify-content: flex-end; width: 88%; }
.sign-svg svg { background: none !important; fill: var(--qutiiz-base); width: 15vw; height: auto; }

.home-section-2-footer {
    background: #f0ebff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3vw;
    padding: 2vw;
    border: .12vw solid var(--qutiiz-base);
    border-top: none;
}
.home-section-2-footer-item { display: flex; align-items: center; gap: 1vw; }
.home-section-2-footer-item strong { font-size: 2vw; font-family: 'benzinmedium'; }
.home-section-2-footer-item span   { font-size: 1.8vw; font-family: 'bricolalight'; }
.home-section-2-footer-icon svg    { width: 4vw; fill: var(--qutiiz-base); }


@media (max-width: 768px) {
    .home-section-2-cards {
        grid-template-columns: 1fr;
    }

    .home-section-2-cards > * {
        grid-column: span 1 !important;
    }
}
/* Section 2 — mobile */
@media (max-width: 600px) {
    .home-section-2 { padding: 5vw; }
    .home-section-2-inner { padding: 20vw 0 10vw; border-radius: 3vw 3vw 0 0; }
    .home-section-2-tag   { top: 5vw; left: 5vw; font-size: 5vw; padding: 3vw 6vw; border-radius: 3vw 3vw 3vw 0; }
    .home-section-2 h2    { font-size: 7.5vw; margin-top: 5vw; }
    .home-section-2 h2 br { display: none; }
    .home-section-2-cards { flex-direction: column; gap: 4vw; padding: 4vw 5vw; }
    .home-section-2-card  { width: 100%; border-radius: 4vw; padding: 6vw; }
    .home-section-2-card h3 { font-size: 10vw; }
    .home-section-2-card h4 { font-size: 9vw; }
    .home-section-2-card p  { font-size: 5vw; margin-top: 4vw; }
    .home-section-2-banner  { width: 90%; margin: 4vw auto 8vw; }
    .home-section-2-banner img { border-radius: 4vw; }
    .home-section-2-center-icon svg { width: 12vw; }
    .home-section-2-program { flex-direction: column; gap: 4vw; padding: 0 5vw; margin-top: 15vw; }
    .home-section-2-program-icon svg { width: 10vw; }
    .home-section-2-program-content { justify-content: center; text-align: center; display: flex; margin-top: -15vw; }
    .home-section-2-program-content h3   { font-size: 12vw; line-height: 1.2; border-bottom: 1.5vw solid var(--qutiiz-base); }
    .home-section-2-program-content span { font-size: 7vw; }
    .home-section-2-description { font-size: 4vw; margin-top: 5vw; }
    .home-section-2-outcomes h3 { font-size: 5vw; line-height: 1.4; }
    .home-section-2-outcomes svg { width: 8vw; }
    .sign-svg { width: 95%; }
    .sign-svg svg { width: 30vw; }
    .home-section-2-footer { flex-direction: row; gap: 4vw; padding: 5vw; }
    .home-section-2-footer-item { flex-direction: column; text-align: center; }
    .home-section-2-footer-item strong { font-size: 4vw; }
    .home-section-2-footer-item span   { font-size: 3vw; }
    .home-section-2-footer-icon svg    { width: 10vw; }
}

/*============================
  HOME SECTION 3  (rotated ticker)
============================*/
.home-section-3 {
    width: 102.5%;
    background: linear-gradient(135deg, #6222cc 0%, #4a18a0 100%);
    overflow: hidden;
    padding: 1vw 0;
    transform: rotate(-6deg);
    white-space: nowrap;
    margin-left: -2vw;
}
.home-section-3-track {
    display: flex;
    width: max-content;
    animation: homeSection3Move 25s linear infinite;
    will-change: transform;
}
.home-section-3-group {
    display: flex;
    align-items: center;
    gap: 5vw;
    padding-right: 5vw;
    flex-shrink: 0;
    min-width: max-content;
}
.home-section-3-group span { color: #fff; font-size: 2.5vw; font-weight: 900; line-height: 1; white-space: nowrap; font-family: 'benzinmedium'; }
.home-section-3-group svg  { width: 3vw; height: auto; fill: #fff; flex-shrink: 0; } /* was fill:#000 (black on purple) → white */
@keyframes homeSection3Move {
    0%   { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}
@media (max-width: 600px) {
    .home-section-3 { padding: 3vw 0; width: 100%; }
    .home-section-3-group span { font-size: 6vw; }
    .home-section-3-group svg  { width: 8vw; }
}

/*============================
  HOME SECTION 4
============================*/
.home-section-4 { width: 100%; padding: 3vw 0 4vw; background: #fff; margin-top: 6vw; }
.home-section-4-container {
    width: 100%;
    background-color: var(--qutiiz-base);
    border-radius: 5vw 5vw 0 0;
    padding: 6vw;
    overflow: hidden;
    position: relative;
}
.home-section-4-heading { text-align: center; color: #fff; font-size: 5.5vw; line-height: 1.2; margin-bottom: 4vw; font-family: 'benzinmedium'; }
.home-section-4-heading span { color: #000; }
.home-section-4-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: .5vw; }
.home-section-4-card {
    position: relative;
    border: .12vw solid rgba(255,255,255,.9);
    border-radius: 1.5vw;
    padding: 2vw;
    min-height: 32vw;
    display: flex;
    flex-direction: column;
}
.home-section-4-icon {
    position: absolute;
    top: 0; right: 0;
    width: 5.5vw; height: 5vw;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 1.3vw 0 0;
}
.home-section-4-icon svg { width: 3vw; height: auto; }
.home-section-4-card h3 { color: #fff; font-size: 2.1vw; line-height: 1.1; margin-top: 6vw; margin-bottom: 2vw; font-family: 'benzinmedium'; height: 8vw; }
.home-section-4-card p  { color: #fff; font-size: 1.4vw; line-height: 1.3; font-family: 'bricolalight'; flex: 1; }
.home-section-4-btn {
    width: 100%; text-align: center; text-decoration: none;
    background: #fff; color: #000;
    border: .12vw solid #4a18a0; border-radius: 5vw;
    padding: 1vw; font-size: 1.1vw; font-family: 'benzinmedium';
    margin-top: 2vw; position: relative; overflow: hidden; z-index: 1; transition: .3s;
}
.home-section-4-btn::before {
    content: ""; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #6222cc 0%, #4a18a0 100%);
    transition: .5s ease; z-index: -1;
}
.home-section-4-btn:hover::before { left: 0; }
.home-section-4-btn:hover { color: #fff; border-color: var(--qutiiz-base); transform: translateY(-.2vw); }
@media (max-width: 600px) {
    .home-section-4 { padding: 8vw 0; }
    .home-section-4-container { padding: 18vw 5vw; border-radius: 8vw 8vw 0 0; }
    .home-section-4-heading { font-size: 7vw; margin-bottom: 8vw; }
    .home-section-4-grid { grid-template-columns: 1fr; gap: 5vw; }
    .home-section-4-card { min-height: auto; padding: 6vw 5vw; border-radius: 5vw; }
    .home-section-4-icon { width: 20vw; height: 20vw; border-radius: 0 5vw 0 0; }
    .home-section-4-icon svg { width: 9vw; }
    .home-section-4-card h3 { font-size: 9vw; margin-top: 18vw; margin-bottom: 5vw; height: 100%; }
    .home-section-4-card p  { font-size: 4.5vw; line-height: 1.5; }
    .home-section-4-btn { padding: 4vw 4vw 8vw; font-size: 4vw; border-radius: 12vw; margin-top: 5vw; border: .3vw solid #4a18a0; }
}

/*============================
  HOME SECTION 5
============================*/
.home-section-5 { width: 100%; padding: 0 6vw; background: #fff; position: relative; overflow: hidden; }
.home-section-5-curve {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 120%; height: 100%;
    border: .15vw solid var(--qutiiz-base); border-radius: 50%; pointer-events: none;
}
.home-section-5-container { position: relative; z-index: 2; margin: 10vw 0; }
.home-section-5-heading { text-align: center; font-size: 5vw; line-height: 1; color: #000; font-family: 'benzinmedium'; }
.home-section-5-heading span { color: var(--qutiiz-base); }
.home-section-5-sign { width: 85%; display: flex; justify-content: flex-end; overflow: hidden; margin-top: 1vw; margin-bottom: 3vw; }
.home-section-5-sign svg { width: 17vw; height: auto; fill: var(--qutiiz-base); display: block; }
.home-section-5-description { max-width: 60vw; margin: 0 auto 8vw; text-align: center; font-size: 1.9vw; line-height: 1.3; color: #333; font-family: 'bricolalight'; }
.home-section-5-top-row { display: flex; justify-content: center; gap: 0; margin-bottom: 0; }
.home-section-5-main-btn {
    text-decoration: none; background: var(--qutiiz-base); color: #fff;
    font-size: 2vw; padding: 2vw 3vw; border: .12vw solid #000;
    font-family: 'benzinbold'; text-align: center; min-width: 28%; margin-bottom: -.1vw; z-index: 99999;
}
.home-section-5-main-btn.active { border-radius: 3vw; }
.home-section-5-items { display: flex; flex-wrap: wrap; justify-content: center; gap: 0; margin-top: 0; }
.home-section-5-item {
    display: flex; align-items: center; gap: 1.5vw;
    padding: 1.8vw 2vw; border: .12vw solid var(--qutiiz-base); background: #fff;
}
.home-section-5-item:nth-child(1) { border-radius: 3vw 3vw; margin-right: -.1vw; }
.home-section-5-item:nth-child(3) { border-radius: 3vw 3vw; margin-left: -.1vw; }
.home-section-5-item:nth-child(4),
.home-section-5-item:nth-child(5) { border-radius: 3vw; margin-top: -.1vw; }
.home-section-5-item-last { width: fit-content; margin: -.1vw auto 0; border-radius: 3vw 3vw; }
.home-section-5-item svg { width: 2.2vw; height: auto; fill: var(--qutiiz-base); margin-top: -.5vw; }
.home-section-5-item span { color: #000; font-size: 2vw; line-height: 1; font-family: 'benzinbold'; }
@media (max-width: 600px) {
    .home-section-5 { padding: 7vw 5vw; }
    .home-section-5-curve { width: 300%; height: 225vw; top: 5vw; }
    .home-section-5-heading { font-size: 10vw; line-height: 1.15; }
    .home-section-5-sign { width: 80%; }
    .home-section-5-sign svg { width: 40vw; }
    .home-section-5-description { max-width: 100%; font-size: 4.5vw; margin: 5vw auto 8vw; }
    .home-section-5-top-row { flex-direction: column; gap: 1vw; }
    .home-section-5-main-btn { min-width: 100%; font-size: 5vw; padding: 5vw; border-radius: 4vw; }
    .home-section-5-items { margin-top: 2vw; flex-direction: column; gap: 1vw; }
    .home-section-5-item { width: 100%; justify-content: center; gap: 4vw; padding: 4vw 5vw; border-radius: 4vw !important; }
    .home-section-5-item svg { width: 5vw; }
    .home-section-5-item span { font-size: 3.9vw; line-height: 1.3; }
}

/*============================
  HOME SECTION 6
============================*/
.home-section-6 { width: 100%; padding: 5vw 6vw; background: #fff; }
.home-section-6-heading-wrap { position: relative; max-width: 75vw; margin: auto; }
.home-section-6-heading-shadow { position: absolute; left: 0; bottom: -1vw; width: 100%; height: 100%; background: var(--qutiiz-base); border-radius: 1.5vw; }
.home-section-6-heading-box {
    position: relative; z-index: 2; background: #fff;
    border: .12vw solid var(--qutiiz-base); border-radius: 1.5vw; padding: 3vw; text-align: center;
}
.home-section-6-heading-box h2 { font-size: 4vw; line-height: 1; color: #000; font-family: 'benzinmedium'; margin-bottom: 1vw; }
.home-section-6-heading-box p  { font-size: 2vw; color: #222; font-family: 'bricolaregular'; }
.home-section-6-description { max-width: 58vw; margin: 5vw auto; text-align: center; font-size: 1.5vw; line-height: 1.3; color: #333; font-family: 'bricolaregular'; }
.home-section-6-btn-wrap { display: flex; justify-content: center; margin-top: 4vw; }
.home-section-6-btn {
    display: flex; align-items: center; gap: 1vw;
    background: linear-gradient(135deg, #6222cc 0%, #4a18a0 100%);
    color: #fff; text-decoration: none;
    padding: 2vw 4vw; border-radius: 5vw; border: .15vw solid var(--qutiiz-base);
    font-size: 2vw; font-family: 'benzinbold';
}
.home-section-6-btn svg { width: 2vw; height: auto; fill: #fff; }
@media (max-width: 600px) {
    .home-section-6 { padding: 12vw 5vw; }
    .home-section-6-heading-wrap { max-width: 100%; }
    .home-section-6-heading-shadow { bottom: -2vw; border-radius: 4vw; }
    .home-section-6-heading-box { border-radius: 4vw; padding: 6vw 4vw; }
    .home-section-6-heading-box h2 { font-size: 9vw; }
    .home-section-6-heading-box p  { font-size: 4.5vw; }
    .home-section-6-description { max-width: 100%; font-size: 4.5vw; margin: 10vw auto 0; }
    .home-section-6-btn { width: 100%; justify-content: center; padding: 5vw; font-size: 4vw; border-radius: 15vw; gap: 2vw; }
    .home-section-6-btn svg { width: 5vw; }
}

/*============================
  HOME SECTION 8
============================*/
.home-section-8 { width: 100%; padding: 4vw 10vw; background: #000; position: relative; overflow: hidden; }
.home-section-8-container {
    position: relative; z-index: 2; width: 100%; background: #fff;
    border-radius: 2vw; padding: 6vw 4vw; text-align: center;
}
.home-section-8-heading { color: var(--qutiiz-base); font-size: 5vw; line-height: 1; font-family: 'benzinbold'; }
.home-section-8-sign { margin-top: .5vw; margin-left: 20vw; }
.home-section-8-sign svg { width: 12vw; height: auto; fill: var(--qutiiz-base); }
.home-section-8-description { margin-top: 2vw; color: #222; font-size: 1.7vw; font-family: 'bricolaregular'; margin-bottom: 4vw; }
.home-section-8-partners {
    display: flex; justify-content: center; align-items: center;
    flex-wrap: wrap; gap: 3vw; max-width: 65vw; margin: 0 auto;
}
.home-section-8-partner-item { color: #555; font-size: 1.3vw; font-family: 'bricolamedium'; text-transform: uppercase; }
.home-section-8-divider { width: .1vw; height: 1.2vw; background: var(--qutiiz-base); }
.home-section-8-btn-wrap { display: flex; justify-content: center; margin-top: 5vw; }
.home-section-8-btn {
    text-decoration: none; color: #000;
    border: .12vw solid var(--qutiiz-base); border-radius: 5vw;
    padding: 2vw 6vw; font-size: 2vw; font-family: 'benzinbold';
    position: relative; overflow: hidden; z-index: 1;
}
.home-section-8-btn::before {
    content: ""; position: absolute; top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(135deg, #6222cc 0%, #4a18a0 100%);
    transition: .5s ease; z-index: -1;
}
.home-section-8-btn:hover::before { left: 0; }
.home-section-8-btn:hover { color: #fff; }

@media (max-width: 600px) {
    .home-section-8 { padding: 12vw 5vw 0; }
    .home-section-8-container { border-radius: 6vw; padding: 8vw 5vw; }
    .home-section-8-heading { font-size: 9vw; }
    .home-section-8-sign { margin-left: 35vw; }
    .home-section-8-sign svg { width: 28vw; }
    .home-section-8-description { font-size: 4.5vw; margin-top: 3vw; }
    .home-section-8-partners { gap: 3vw; margin-top: 8vw; max-width: 100%; }
    .home-section-8-partner-item { font-size: 3.5vw; }
    .home-section-8-divider { width: .3vw; height: 4vw; }
    .home-section-8-btn-wrap { margin-top: 10vw; }
    .home-section-8-btn { width: 100%; text-align: center; padding: 5vw; font-size: 5vw; border-radius: 15vw; }
}

/*============================
  HOME SECTION 9
============================*/
.home-section-9 {
    width: 100%;
    padding: 5vw 6vw;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #0f0c29, #302b63, #24243e);
    background-size: cover;
    background-position: center center;
}
.home-section-9-overlay {
    position: absolute; inset: 0;
    background-color: var(--qutiiz-base);
    z-index: 1;
}
.res-sub{
  text-align: center;
  font-size: 1.4vw;
  line-height: 1.7;
  font-family: 'bricolalight';
  color: #ddd;
}
.home-section-9-content { position: relative; z-index: 2; }
.home-section-9-heading { text-align: center; color: #fff; font-size: 4.5vw; line-height: 1.1; font-family: 'benzinmedium'; }
.home-section-9-switch {
    width: 55vw; height: 9vw;
    margin: 4vw auto;
    border: .12vw solid #fff; border-radius: 6vw;
    position: relative; display: flex; align-items: center; overflow: hidden;
}
.home-section-9-slider {
    position: absolute; left: .5vw; top: 50%;
    width: calc(49% - .5vw); height: 90%;
    background: #000; border-radius: 6vw;
    transform: translateY(-50%); transition: .4s ease; margin-left: .5vw;
}
.home-section-9-tab {
    width: 50%; height: 100%; background: none; border: none;
    position: relative; z-index: 2; cursor: pointer;
    display: flex; flex-direction: column; justify-content: center; align-items: center;
}
.home-section-9-tab a { display: flex; flex-direction: column; text-decoration: none; }
.home-section-9-tab span { font-size: 2vw; font-family: 'benzinbold'; color: #fff; transition: .3s; }  /* was #000 on dark bg */
.home-section-9-tab small { font-size: .9vw; font-family: 'benzinmedium'; color: rgba(255,255,255,.75); transition: .3s; }  /* was #000 on dark bg */
.home-section-9-tab.active span,
.home-section-9-tab.active small { color: #fff; }
.home-section-9-powered { display: flex; justify-content: center; align-items: center; gap: 1vw; }
.home-section-9-powered span { color: rgba(255,255,255,.75); font-size: 1.5vw; font-family: 'benzinmedium'; }  /* was #000 on dark bg */
.home-section-9-powered h3   { color: #fff; font-size: 3vw; line-height: 1; font-family: 'benzinmedium'; }
.home-section-9-sign { display: flex; justify-content: center; margin-top: 1vw; margin-left: 18vw; }
.home-section-9-sign svg { width: 16vw; height: auto; }
.home-section-9-description {
    max-width: 63vw; margin: 3vw auto 0; text-align: center;
    color: rgba(255,255,255,.85); font-size: 1.4vw; line-height: 1.5; font-family: 'bricolaregular'; /* was #000 on dark purple bg */
}

/* Section 9 — Panels */
.home-section-9-panels { width: 100%; max-width: 70vw; margin: 0 auto; }

.pop-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2vw;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 1vw;
    padding: 1.5vw;
    transition: background .3s;
}
.pop-item:hover { background: rgba(255,255,255,0.12); }
.pop-bonus {
    grid-column: span 2;
    background: rgba(255,255,255,0.04);
    border-color: rgba(255,255,255,0.25);
}
.pop-num {
    flex-shrink: 0;
    width: 2.5vw;
    height: 2.5vw;
    background: #fff;
    color: var(--qutiiz-base);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1vw;
    font-family: 'benzinbold';
    font-weight: 900;
}
.pop-item h4 {
    color: #fff;
    font-size: 1.3vw;
    font-family: 'benzinmedium';
    margin-bottom: .4vw;
    line-height: 1.2;
}
.pop-item p {
    color: rgba(255,255,255,.75);
    font-size: 1.1vw;
    font-family: 'bricolalight';
    line-height: 1.5;
    margin: 0;
}

/* ---- Payment CTA Button ---- */
.pop-cta-wrap {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    padding: 2vw 0 1vw;
}

.pop-pay-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8vw;
    background: #fff;
    color: var(--qutiiz-base);
    text-decoration: none;
    font-family: 'benzinbold';
    font-size: 1.3vw;
    padding: 1.2vw 3vw;
    border-radius: 5vw;
    border: 2px solid #fff;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
    letter-spacing: 0.02em;
}

.pop-pay-btn svg {
    width: 1.2vw;
    height: 1.2vw;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.pop-pay-btn:hover {
    background: var(--qutiiz-base);
    color: #fff;
    border-color: rgba(255,255,255,0.5);
    box-shadow: 0 12px 40px rgba(98, 34, 204, 0.5);
    transform: translateY(-3px);
}

.pop-pay-btn:hover svg {
    transform: translateX(4px);
}



.pop-pay-icon {
    font-size: 1.4vw;
    line-height: 1;
}

@media (max-width: 600px) {
    .home-section-9-panels { max-width: 100%; }
    .home-section-9-panel.active { grid-template-columns: 1fr; gap: 3vw; }
    .pop-bonus { grid-column: span 1; }
    .pop-item { gap: 3vw; border-radius: 3vw; padding: 4vw; }
    .pop-num { width: 8vw; height: 8vw; font-size: 3vw; }
    .pop-item h4 { font-size: 4vw; margin-bottom: 1.5vw; }
    .pop-item p  { font-size: 3.5vw; }

    .pop-pay-btn {
        font-size: 3vw;
        padding: 4vw 6vw;
        border-radius: 12vw;
        gap: 2.5vw;
        text-align: center;
    }
    .pop-pay-btn svg {
        width: 4vw;
        height: 4vw;
    }
    .pop-pay-icon { font-size: 5vw; }
}

@media (max-width: 600px) {
    .home-section-9 {padding: 12vw 5vw; }
    .home-section-9-heading { font-size: 7vw; }
    .res-sub { font-size: 4vw; }
    .home-section-9-switch { width: 100%; height: 18vw; margin: 8vw auto 12vw; border-radius: 10vw; }
    .home-section-9-slider { width: calc(47% - .5vw); height: 75%; border-radius: 6vw; margin-left: 1.6vw; }
    .home-section-9-tab span  { font-size: 3.5vw; }
    .home-section-9-tab small { font-size: 2vw; margin-top: 1vw; }
    .home-section-9-powered { flex-direction: column; align-items: center; gap: 2vw; }
    .home-section-9-powered span { font-size: 4vw; }
    .home-section-9-powered h3   { font-size: 10vw; }
    .home-section-9-sign { margin-left: 40vw; margin-top: 2vw; }
    .home-section-9-sign svg { width: 30vw; }
    .home-section-9-description { max-width: 100%; font-size: 3.5vw; margin-top: 6vw; }
}

/*============================
  HOME SECTION 4 - EXPERIENCE
============================*/
.experience-section {
    max-width: 100%;
    width: 100%;
    position: relative;
    padding: 4vw 0;
    background: var(--qutiiz-black);
    overflow: hidden;
    margin: 103px 0 0;
    
}

.experience-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(98, 34, 204, 0.08) 0%, rgba(98, 34, 204, 0.04) 50%, transparent 100%);
  pointer-events: none;
}

/* Header Section */
.experience-header {
  text-align: center;
  max-width: 80%;
  margin: 0 auto 60px;
  padding: 0 6vw;
  position: relative;
  z-index: 1;
}

.experience-badge {
  display: inline-block;
  background: rgba(98, 34, 204, 0.15);
  border: 1px solid rgba(98, 34, 204, 0.5);
  color: #6222cc;
  font-size: clamp(10px, 1.2vw, 12px);
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 18px;
  font-family: 'benzinmedium';
}

.experience-header h2 {
  font-size: 4.5vw;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  font-family: 'benzinbold';
  color: #fff;
  line-height: 1.2;
}

.experience-header p {
  font-size: 1.4vw;
  line-height: 1.7;
  font-family: 'bricolalight';
  color: #ddd;
}

/* Stage Container - Custom Grid Layout */
.experience-stage {
  position: relative;
  padding: 0 8vw;
  max-width: 1600px;
  margin: 0 auto;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stage-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 700px;
  height: 700px;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle, rgba(98, 34, 204, 0.3) 0%, rgba(98, 34, 204, 0.15) 35%, transparent 70%);
  filter: blur(100px);
  pointer-events: none;
  z-index: 0;
}

/* Center Ring */
.experience-center {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 35%, #2a2a2a 0%, #1a1a1a 60%);
  border: 3px solid rgba(98, 34, 204, 0.7);
  box-shadow:
    0 0 100px rgba(98, 34, 204, 0.5),
    0 0 200px rgba(98, 34, 204, 0.25),
    inset 0 0 80px rgba(98, 34, 204, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}

.center-ring {
  text-align: center;
  padding: 0 30px;
}

.center-ring span {
  display: inline-block;
  background: #6222cc;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 5px 16px;
  border-radius: 16px;
  margin-bottom: 12px;
  font-family: 'benzinbold';
  text-transform: uppercase;
}

.center-ring h3 {
  font-size: clamp(36px, 4.4vw, 44px);
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  font-family: 'benzinbold';
  line-height: 1.2;
}

.center-ring p {
  font-size: clamp(13px, 1.5vw, 15px);
  color: #999;
  font-family: 'bricolalight';
  line-height: 1.4;
}

/* Cards - Absolute positioning for overlapping layout */
.experience-card {
  position: absolute;
  background: rgba(98, 34, 204, 0.1);
  border: 1.5px solid rgba(98, 34, 204, 0.4);
  border-radius: 24px;
  padding: 20px;
  width: 400px;
  height: 250px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(98, 34, 204, 0.25);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(12px);
  z-index: 2;
}

.experience-card:hover {
  transform: translateY(-12px);
  border-color: rgba(98, 34, 204, 0.9);
  background: rgba(98, 34, 204, 0.15);
  box-shadow: 0 20px 60px rgba(98, 34, 204, 0.3), inset 0 1px 0 rgba(98, 34, 204, 0.35);
}

.experience-card .number {
  display: block;
  color: #fff;
  font-weight: 700;
  font-size: clamp(14px, 1.6vw, 30px);
  letter-spacing: 0.12em;
  margin-bottom: 14px;
  font-family: 'benzinbold';
  text-transform: uppercase;
}

.experience-card h3 {
  font-size: clamp(18px, 2.4vw, 28px);
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'benzinbold';
  color: #fff;
  line-height: 1.3;
  font-weight: 500;
}

.experience-card p {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 1.7;
  color: #ddd;
  font-family: 'bricolalight';
  flex: 1;
}

.experience-card h3 .accent {
  color: #fff;
  font-weight: 700;
}

/* Card Positioning - Overlapping Layout */
/* TOP ROW - Inside positioning */
.card-1 {
  top: 0px;
  left: 150px;
}

.card-2 {
  top: 0;
  right: 150px;
}

/* MIDDLE ROW - Outside positioning */
.card-3 {
    top: 320px;
    left: 60px;
}

.card-4 {
  top: 320px;
  right: 60px;
}

/* BOTTOM ROW - Inside positioning */
.card-5 {
  bottom: 0;
  left: 150px;
}

.card-6 {
  bottom: 0;
  right: 150px;
}

/* Footer highlight */
.experience-highlight {
  text-align: center;
  margin-top: 100px;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.02em;
  font-family: 'benzinbold';
  padding: 0 6vw;
  position: relative;
  z-index: 1;
}

/* Responsive */
@media (max-width: 1024px) {
  .experience-stage {
    gap: 24px;
    min-height: 600px;
  }

  .stage-glow {
    width: 500px;
    height: 500px;
  }

  .experience-center {
    width: 260px;
    height: 260px;
  }

  .center-ring h3 {
    font-size: clamp(28px, 3.5vw, 36px);
  }

  .center-ring p {
    font-size: clamp(12px, 1.4vw, 14px);
  }

  .experience-card {
    max-width: 240px;
    padding: 24px 20px;
  }

  .experience-card .number {
    font-size: clamp(12px, 1.4vw, 14px);
  }

  .experience-card h3 {
    font-size: clamp(16px, 1.8vw, 18px);
  }

  .experience-card p {
    font-size: clamp(12px, 1.3vw, 13px);
  }
}

/* Responsive */
@media (max-width: 1200px) {
  .experience-stage {
    gap: 24px;
    min-height: 600px;
  }

  .stage-glow {
    width: 500px;
    height: 500px;
  }

  .experience-center {
    width: 260px;
    height: 260px;
  }

  .center-ring h3 {
    font-size: clamp(32px, 4vw, 40px);
  }

  .center-ring p {
    font-size: clamp(13px, 1.5vw, 15px);
  }

  .experience-card {
    max-width: 240px;
    padding: 24px 20px;
  }

  .experience-card .number {
    font-size: clamp(13px, 1.5vw, 15px);
  }

  .experience-card h3 {
    font-size: clamp(18px, 2vw, 22px);
  }

  .experience-card p {
    font-size: clamp(13px, 1.4vw, 15px);
  }
}

@media (max-width: 992px) {
  .experience-section {
    padding: 8vw 0;
  }

  .experience-stage {
    min-height: 800px;
    padding: 0 3vw;
  }

  .stage-glow {
    width: 500px;
    height: 500px;
  }

  .experience-center {
    width: 280px;
    height: 280px;
  }

  .center-ring h3 {
    font-size: clamp(28px, 3.2vw, 32px);
  }

  .center-ring p {
    font-size: clamp(12px, 1.3vw, 13px);
  }

  .experience-card {
    width: 240px;
    padding: 24px 20px;
    min-height: 220px;
  }

  .experience-card .number {
    font-size: clamp(12px, 1.4vw, 14px);
  }

  .experience-card h3 {
    font-size: clamp(16px, 1.8vw, 18px);
    margin-bottom: 12px;
  }

  .experience-card p {
    font-size: clamp(12px, 1.3vw, 13px);
  }

  .card-1 { top: 0px; left: 50px; }
  .card-2 { top: 0px; right: 50px; }
  .card-3 { top: 275px; left:0px; }
  .card-4 { top: 275px; right: 0px; }
  .card-5 { bottom: 0px; left: 50px; }
  .card-6 { bottom: 0px; right: 50px; }
}

@media (max-width: 768px) {
  .experience-section {
    padding: 10vw 5vw;
    overflow: hidden;
  }

  .experience-header {
    max-width: 100%;
    margin: 0 auto 60px;
    padding: 0;
  }

  .experience-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 16px;
    background: rgba(98, 34, 204, 0.15);
    border: 1px solid rgba(98, 34, 204, 0.5);
    color: #6222cc;
  }

  .experience-header h2 {
    font-size: 7vw;
    margin-bottom: 14px;
    line-height: 1.2;
    color: #fff;
    font-family: 'benzinbold';
  }

  .experience-header p {
    font-size: 15px;
    line-height: 1.6;
    color: #ddd;
    font-family: 'bricolalight';
  }

  .experience-stage {
    position: relative;
    display: block;
    padding: 0;
    min-height: auto;
    max-width: 100%;
    margin: 0;
  }

  .stage-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(98, 34, 204, 0.3) 0%, rgba(98, 34, 204, 0.15) 35%, transparent 70%);
    filter: blur(100px);
  }

  .experience-center {
    position: relative;
    width: 220px;
    height: 220px;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    z-index: 5;
    margin: 40px auto 50px;
    border: 2px solid rgba(98, 34, 204, 0.7);
    background-color: var(--qutiiz-gray);
    box-shadow: 0 0 60px rgba(98, 34, 204, 0.4), 0 0 120px rgba(98, 34, 204, 0.15), inset 0 0 40px rgba(98, 34, 204, 0.08);
  }

  .center-ring h3 {
    font-size: 32px;
    margin-bottom: 8px;
   
    font-family: 'benzinbold';
  }

  .center-ring p {
    font-size: 15px;
    color: #aaa;
    font-family: 'bricolalight';
  }

  .center-ring span {
    font-size: 11px;
    padding: 5px 14px;
    margin-bottom: 10px;
    background: #6222cc;
    
    font-family: 'benzinbold';
  }

  /* Stack cards vertically */
  .experience-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 25px;
    padding: 24px 20px;
    min-height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 3;
    background: rgba(98, 34, 204, 0.1);
    border: 1.5px solid rgba(98, 34, 204, 0.4);
    border-radius: 18px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(98, 34, 204, 0.25);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
  }

  .experience-card:hover {
    transform: translateY(-8px);
    border-color: rgba(98, 34, 204, 0.7);
    background: rgba(98, 34, 204, 0.15);
    box-shadow: 0 16px 48px rgba(98, 34, 204, 0.2), inset 0 1px 0 rgba(98, 34, 204, 0.3);
  }

  .card-1,
  .card-2,
  .card-3,
  .card-4,
  .card-5,
  .card-6 {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .experience-card .number {
    font-size: 14px;
    margin-bottom: 10px;
    color: #6222cc;
    font-family: 'benzinbold';
  }

  .experience-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #fff;
    font-family: 'benzinbold';
  }

  .experience-card h3 .accent {
    color: #6222cc;
  }

  .experience-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #bbb;
    font-family: 'bricolalight';
  }

  .experience-highlight {
    margin-top: 60px;
    font-size: 16px;
    padding: 0;
    color: #6222cc;
    font-family: 'benzinbold';
  }
}

@media (max-width: 600px) {
  .experience-section {
    padding: 12vw 4vw;
  }

  .experience-header {
    max-width: 100%;
    margin: 0 auto 50px;
    padding: 0;
    text-align: center;
  }

  .experience-badge {
    font-size: 10px;
    padding: 5px 12px;
    margin-bottom: 14px;
    background: rgba(98, 34, 204, 0.15);
    border: 1px solid rgba(98, 34, 204, 0.5);
    color: #6222cc;
    font-family: 'benzinbold';
  }

  .experience-header h2 {
    font-size: 6.5vw;
    margin-bottom: 12px;
    line-height: 1.2;
    font-weight: 700;
    color: #fff;
    font-family: 'benzinbold';
  }

  .experience-header p {
    font-size: 14px;
    line-height: 1.5;
    color: #ddd;
    font-family: 'bricolalight';
  }

  .experience-stage {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0;
    min-height: auto;
    width: 100%;
  }

  .stage-glow {
    width: 250px;
    height: 250px;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(98, 34, 204, 0.3) 0%, rgba(98, 34, 204, 0.15) 35%, transparent 70%);
    filter: blur(100px);
  }

  .experience-center {
    position: relative;
    width: 180px;
    height: 180px;
    left: auto;
    top: auto;
    right: auto;
    bottom: auto;
    transform: none;
    z-index: 5;
    margin: 0 auto 40px;
    border: 2px solid rgba(98, 34, 204, 0.6);
    background-color:var(--qutiiz-gray);
    box-shadow: 0 0 50px rgba(98, 34, 204, 0.35), 0 0 100px rgba(98, 34, 204, 0.12), inset 0 0 30px rgba(98, 34, 204, 0.06);
  }

  .center-ring h3 {
    font-size: 26px;
    margin-bottom: 6px;
   
    font-family: 'benzinbold';
  }

  .center-ring p {
    font-size: 13px;
    color: #aaa;
    font-family: 'bricolalight';
  }

  .center-ring span {
    font-size: 10px;
    padding: 0px 12px;
    margin-bottom: 8px;
    background: #6222cc;
    
    font-family: 'benzinbold';
  }

  /* Cards stack vertically */
  .experience-card {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 0 18px 0;
    padding: 20px 16px;
    height: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    z-index: 3;
    background: rgba(98, 34, 204, 0.08);
    border: 1.2px solid rgba(98, 34, 204, 0.35);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(98, 34, 204, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
  }

  .experience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(98, 34, 204, 0.7);
    background: rgba(98, 34, 204, 0.12);
    box-shadow: 0 12px 36px rgba(98, 34, 204, 0.2), inset 0 1px 0 rgba(98, 34, 204, 0.25);
  }

  .card-1,
  .card-2,
  .card-3,
  .card-4,
  .card-5,
  .card-6 {
    position: relative;
    width: 100%;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
  }

  .experience-card .number {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-bottom: 15px;
    color: #6222cc;
    font-family: 'benzinbold';
  }

  .experience-card h3 {
    font-size: 17px;
    margin-bottom: 10px;
    line-height: 1.2;
    color: #fff;
    font-family: 'benzinbold';
  }

  .experience-card h3 .accent {
    color: #6222cc;
  }

  .experience-card p {
    font-size: 13px;
    line-height: 1.5;
    color: #ddd;
    font-family: 'bricolalight';
  }

  .experience-highlight {
    margin-top: 50px;
    font-size: 14px;
    padding: 0;
    line-height: 1.6;
    color: #fff;
    font-family: 'benzinbold';
  }
}

@media (max-width: 480px) {
  .experience-section {
    padding: 10vw 3vw;
  }

  .experience-header {
    margin: 0 auto 45px;
  }

  .experience-badge {
    font-size: 9px;
    padding: 4px 10px;
    margin-bottom: 12px;
    background: rgba(98, 34, 204, 0.15);
    border: 1px solid rgba(98, 34, 204, 0.5);
    color: #6222cc;
    font-family: 'benzinmedium';
    text-transform: uppercase;
  }

  .experience-header h2 {
    font-size: clamp(18px, 6vw, 24px);
    margin-bottom: 10px;
    color: #fff;
    font-family: 'benzinbold';
  }

  .experience-header p {
    font-size: 13px;
    color: #ddd;
    font-family: 'bricolalight';
  }

  .experience-center {
    width: 160px;
    height: 160px;
    margin: 0 auto 35px;
    border: 2px solid rgba(98, 34, 204, 0.6);
    background: radial-gradient(circle at 35% 35%, #2a2a2a 0%, #1a1a1a 60%);
    box-shadow: 0 0 40px rgba(98, 34, 204, 0.3), 0 0 80px rgba(98, 34, 204, 0.1), inset 0 0 25px rgba(98, 34, 204, 0.05);
  }

  .center-ring h3 {
    font-size: clamp(20px, 4.5vw, 24px);
    
    font-family: 'benzinbold';
  }

  .center-ring p {
    font-size: 12px;
    color: #999;
    font-family: 'bricolalight';
  }

  .center-ring span {
    font-size: 9px;
    background: #6222cc;
    
    font-family: 'benzinbold';
    text-transform: uppercase;
  }

  .stage-glow {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(98, 34, 204, 0.3) 0%, rgba(98, 34, 204, 0.15) 35%, transparent 70%);
    filter: blur(100px);
  }

  .experience-card {
    margin: 0 0 15px 0;
    padding: 18px 14px;
    background: rgba(98, 34, 204, 0.08);
    border: 1.2px solid rgba(98, 34, 204, 0.35);
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(98, 34, 204, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(12px);
  }

  .experience-card:hover {
    transform: translateY(-6px);
    border-color: rgba(98, 34, 204, 0.7);
    background: rgba(98, 34, 204, 0.12);
  }

  .experience-card .number {
    font-size: 2rem;
    color: #fff;
    font-family: 'benzinbold';
    text-transform: uppercase;
  }

  .experience-card h3 {
    font-size: 1.5rem;
    color: #fff;
    font-family: 'benzinbold';
  }

  .experience-card h3 .accent {
    color: #fff;
    font-weight: 700;
  }

  .experience-card p {
    font-size: 1rem;
    color: #ddd;
    font-family: 'bricolalight';
  }

  .experience-highlight {
    margin-top: 40px;
    font-size: 14px;
    color: #fff;
    font-family: 'benzinbold';
  }
}



    /* Show h1 on events page — overrides the global h1{display:none} in base.html */
    .home-section-1-card h1 {
        display: block !important;
    }

    @media (max-width: 600px) {
        .award-section-video-media {
            width: 100%;
            height: 100%;
            object-fit: cover;
            margin-top: 8vw;
        }
    }

   
        

        .stats-section {
            background-color: #6225d1; /* Purple background */
            padding: 30px 10px 60px;
            color: white;
            text-align: center;
        }

        .stats-heading {
            font-size: clamp(1.2rem, 3vw, 3rem);
            font-family: 'benzinbold';
            color: #fff;
            margin-bottom: 40px;
            letter-spacing: 0.02em;
        }

        .stats-container {
            margin: 0 auto;
            display: flex;
            flex-wrap: wrap; /* Allows wrapping into multiple rows */
            justify-content: center;
        }

        .stat-card {
            padding: 20px 10px;
            position: relative;
            /* Default: 6 items in one row on Desktop */
            flex: 0 0 16.66%; 
        }

        /* Vertical Dividers - Only show on Desktop when in one row */
        @media (min-width: 1024px) {
            .stat-card:not(:last-child)::after {
                content: "";
                position: absolute;
                right: 0;
                top: 25%;
                height: 50%;
                width: 1px;
                background: rgba(255, 255, 255, 0.2);
            }
        }

        /* --- CIRCLE ICON --- */
        .icon-circle {
            width: 80px;
            height: 80px;
            background-color: white;
            border-radius: 50%;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 8px 15px rgba(0,0,0,0.1);
        }

        .icon-circle i {
            font-size: 30px;
            color: #6225d1;
        }

        /* --- TEXT STYLES --- */
        .stat-number {
            font-size: 2.2rem;
            font-weight: 700;
            margin: 5px 0;
            display: block;
        }

        .stat-label {
            font-size: 1rem;
            letter-spacing: 1px;
            font-weight: 400;
            opacity: 0.85;
            line-height: 1.3;
            max-width: 130px;
            margin: 0 auto;
        }

        /* --- RESPONSIVE BREAKPOINTS --- */

        /* Tablet View: 3 cards per row */
        @media (max-width: 1023px) and (min-width: 601px) {
            .stat-card {
                flex: 0 0 33.33%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
        }

        /* Mobile View: 2 cards per row (As requested) */
        @media (max-width: 600px) {
            .stat-card {
                flex: 0 0 50%; /* 2 cards per row */
                padding: 30px 5px;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }
            .stats-section {
                padding: 20px 5px;
            }
            .stats-heading {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }

            
            /* Add a subtle vertical line between the 2 columns */
            .stat-card:nth-child(odd)::after {
                content: "";
                position: absolute;
                right: 0;
                top: 20%;
                height: 60%;
                width: 1px;
                background: rgba(255, 255, 255, 0.1);
            }

            .stat-number { font-size: 1.8rem; }
            .icon-circle { width: 70px; height: 70px; }
            .icon-circle i { font-size: 25px; }
        }
    
    
    .home-section-9-panel { display: none; }
    .home-section-9-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2vw; }
    .pop-bonus-full { grid-column: 1 / -1; }
    .pop-inline-bonus { margin-top: 0.6em; font-size: 0.82em; font-weight: 600; color: #c9a84c; letter-spacing: 0.03em; }
    @media (max-width: 600px) {
        .home-section-9-panel.active { grid-template-columns: 1fr; gap: 3vw; }
         .pop-inline-bonus{ line-height: 1.3; font-size: 12px;}
    }




/* ============================
   PRICING SECTION STYLES
   ============================ */

.pricing-section {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
  background: #f0ebff;
  position: relative;
  overflow: hidden;
}

.pricing-section::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(98, 37, 209, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

/* Layout Grid */
.pricing-container {
  max-width: 1400px;
  width: 100%;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr 1.1fr;
  gap: 30px;
  position: relative;
  z-index: 2;
}

/* Intro Text (Left Column) */
.pricing-intro {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 20px 0;
}

.pricing-intro h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  margin-bottom: 20px;
  color: #1a1a1a;
  font-family: 'benzinbold', sans-serif;
  line-height: 1.1;
}

.intro-subtext {
  font-size: 1rem;
  color: #555;
  line-height: 1.6;
  margin-bottom: 0px;
}

.divider {
  border: none;
  border-top: 2px solid #ddd;
  margin-bottom: 40px;
  width: 60px;
}

.intro-bottom h4 {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: #999;
  font-family: 'bricolaregular', sans-serif;
  font-weight: 600;
}

.intro-bottom p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.7;
  max-width: 260px;
}

/* ========== CARD STYLES ========== */
.card {
  border-radius: 24px;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  min-height: 680px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.card-content {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.card-content p{
  font-size: 1.1rem;
}

.card h3 {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  font-family: 'benzinbold', sans-serif;
}

.card-subtitle {
  font-size: 0.95rem;
  color: #888;
  margin-bottom: 35px;
  line-height: 1.5;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 30px;
  font-family: 'benzinbold', sans-serif;
}

.per-month {
  font-size: 1rem;
  font-weight: 400;
  color: #aaa;
  display: block;
}

/* Feature List */
.feature-list {
  list-style: none;
  margin-bottom: 40px;
  flex-grow: 1;
}

.feature-list li {
  font-size: 0.95rem;
  font-weight: 500;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6;
  gap: 12px;
}

.check {
  flex-shrink: 0;
  font-weight: bold;
  margin-top: 2px;
}

.gray-text {
  color: #999;
  font-weight: 400;
}

/* Buttons */
.btn {
  width: 100%;
  padding: 16px 24px;
  border-radius: 50px;
  border: none;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  z-index: 3;
  transition: all 0.3s ease;
  font-family: 'benzinbold', sans-serif;
  letter-spacing: 0.5px;
}

.btn:hover {
  transform: scale(1.03);
}

.btn:active {
  transform: scale(0.98);
}

/* Light Card */
.light-card {
  background-color: #ffffff;
  color: #1a1a1a;
  border: 1px solid #f0f0f0;
}

.light-card .card-subtitle,
.light-card .gray-text {
  color: #777;
}

.btn-light {
  background-color: #1a1a1a;
  color: #ffffff !important;
  border: 2px solid transparent;
}

.btn-light:hover {
  background-color: #1a1a1a;
  box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

/* Dark Card */
.dark-card {
  background-color: #1a1a1a;
  color: #ffffff;
  border: 1px solid #333;
  background-image: url('{% static "assets/images/events/pri-bg.webp" %}');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: local;
}

.dark-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(26,26,26,0.85) 0%, rgba(26,26,26,0.5) 50%, rgba(26,26,26,0.2) 100%);
  z-index: 1;
  pointer-events: none;
  border-radius: 24px;
}

.dark-card h3 {
  color: #fff;
  position: relative;
  z-index: 2;
}

.dark-card .card-subtitle {
  color: #aaa;
  position: relative;
  z-index: 2;
}

.dark-card .gray-text {
  color: #888;
  position: relative;
  z-index: 2;
}

.btn-dark {
  background-color: #ffffff;
  color: #1a1a1a;
}

.btn-dark:hover {
  background-color: #f0f0f0;
  color: #1a1a1a;
}

/* Badge */
.badge {
  display: inline-block;
  background: rgba(255, 255, 255, 0.15);
  font-size: 0.8rem;
  padding: 8px 16px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 600;
  color: #ffffff;
}

/* ========== BACKGROUND GRAPHICS ========== */
.card-bg-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 60%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

.light-card .card-bg-img {
  opacity: 0.5;
}

.dark-card .card-bg-img {
  display: none; /* Hidden since background is on card itself */
}

.architecture-img {
  background-image: url('{% static "assets/images/pricing/architecture-light.svg" %}');
}

/* ========== RESPONSIVE DESIGN ========== */
@media (max-width: 1024px) {
  .pricing-container {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  
  .pricing-intro {
    grid-column: 1 / -1;
  }
  
  .card {
    min-height: 600px;
  }
}

@media (max-width: 768px) {
  .pricing-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-section {
    padding: 60px 16px;
  }
  
 
  
  .pricing-intro h1 {
    font-size: 2.5rem;
  }
  
  .intro-subtext {
    max-width: 100%;
   
  }
  
  .divider {
    width: 100%;
  }
  
  .intro-bottom p {
    max-width: 100%;
  }
  
  .card {
    min-height: 550px;
    padding: 30px;
  }
  
  .price {
    font-size: 2.5rem;
  }
  
  .card-bg-img {
    height: 40%;
    opacity: 0.3;
  }
}

@media (max-width: 480px) {
  .pricing-section {
    padding: 40px 12px;
  }
  
  .pricing-intro h1 {
    font-size: 1.8rem;
  }
  
  .intro-subtext {
    font-size: 0.9rem;
    margin-bottom: 0px;
  }
  
  .card {
    min-height: auto;
    padding: 24px;
    border-radius: 16px;
  }
  
  .card h3 {
    font-size: 1.2rem;
  }
  
  .price {
    font-size: 2rem;
  }
  
  .feature-list li {
    font-size: 0.85rem;
    margin-bottom: 12px;
  }
  
  
  .btn {
    padding: 14px 20px;
    font-size: 0.95rem;
  }
  .intra-text{
    margin-top: 20px !important;
  }
  .register-btn{
    font-size: 1.2rem !important;
    
  }
}
ol, ul{padding-left: 0;}
.intro-top h1 span{
  color: #6225d1;
}

.intra-text{
font-size: 1.3rem;
margin-top: 130px; 
margin-bottom: 20px; 
font-weight: 700; 
font-family: 'benzinbold', sans-serif;
border-bottom: #1a1a1a 1px solid;
}

.register-btn{
    background-color: #6225d1;
    color: #fff !important;
    border: 1px solid #6225d1;
    width: 100%;
    padding: 12px;
    border-radius: 50px;
    text-align: center;
    margin-top: 20px;
    font-family: 'benzinbold', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
}


.mob{
  display: none;
}

@media (max-width: 480px) {
  .mob{
  display: block;
}
}

