:root {
    --brand-primary: #FF5722;
    --brand-dark: #dc3f10;
    --primary-glare: rgba(255, 87, 34, 0.24);
    --primary-soft: #fff0eb;
    --bg: #f7f8fc;
    --card: #ffffff;
    --text: #101828;
    --muted: #667085;
    --line: #e7ebf3;
    --ink-black: #020617;
    --ink-gray: #475569;
    --green: #12b981;
    --blue: #3b82f6;
    --purple: #7c3aed;
    --orange-soft: #fff6ed;
    --shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
    --shadow-lg: 0 24px 70px rgba(16, 24, 40, 0.13);
    --radius: 22px;
    --radius-sm: 16px;
    --transition: 0.25s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Inter", sans-serif;
    background:
        radial-gradient(circle at top left, rgba(255,87,34,0.10), transparent 28%),
        radial-gradient(circle at right center, rgba(59,130,246,0.07), transparent 24%),
        var(--bg);
    color: var(--text);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

body.cookie-lock {
    overflow: hidden;
    height: 100vh;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input {
    font: inherit;
}

.wrapper {
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

#loader {
    position: fixed;
    inset: 0;
    background: #fff;
    display: grid;
    place-items: center;
    z-index: 9999;
    transition: opacity .5s ease, visibility .5s ease;
}

.loader-logo {
    width: auto;
    height: 82px;
    max-width: 220px;
    object-fit: contain;
}


body.loaded #loader {
    opacity: 0;
    visibility: hidden;
}

@keyframes pulseLogo {
    0%, 100% { transform: scale(1); opacity: .85; }
    50% { transform: scale(1.08); opacity: 1; }
}

.topbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    position: relative;
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.brand img {
    width: auto;
    height: 48px;
    max-width: 180px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
}

.brand-title {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: var(--brand-primary);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 12px 16px;
    border-radius: 14px;
    color: #344054;
    font-size: 14px;
    font-weight: 700;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    background: var(--primary-soft);
    color: var(--brand-dark);
}

.auth-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-white,
.btn-outline-light {
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 800;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    color: #fff;
    padding: 14px 22px;
    border-radius: 16px;
    box-shadow: 0 16px 30px rgba(255,87,34,0.22);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 38px rgba(255,87,34,0.28);
}

.btn-secondary,
.btn-ghost {
    background: #fff;
    color: #26364f;
    border: 1px solid var(--line);
    border-radius: 16px;
    box-shadow: var(--shadow);
}

.btn-secondary {
    padding: 14px 22px;
}

.btn-ghost {
    padding: 11px 16px;
}

.btn-white {
    background: #fff;
    color: var(--brand-dark);
    padding: 14px 22px;
    border-radius: 16px;
}

.btn-outline-light {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.22);
    padding: 14px 22px;
    border-radius: 16px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 4px;
    box-shadow: var(--shadow);
}

.menu-toggle span {
    width: 18px;
    height: 2px;
    background: #243047;
    border-radius: 999px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

.mobile-dropdown {
    display: none;
}

.main {
    padding: 18px 0 0;
}

.hero-section {
    padding: 42px 0 26px;
}

.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
    gap: 30px;
    align-items: center;
}

.eyebrow,
.tag {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--primary-soft);
    color: var(--brand-dark);
    border: 1px solid #ffd8ca;
    border-radius: 999px;
    padding: 10px 14px;
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--shadow);
}

.hero .eyebrow {
    margin-bottom: 18px;
}

.hero h1 {
    font-size: clamp(38px, 6vw, 78px);
    line-height: .98;
    letter-spacing: -0.055em;
    font-weight: 900;
    max-width: 12ch;
    margin-bottom: 18px;
}

.accent {
    color: var(--brand-primary);
    position: relative;
}

.accent::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 14px;
    background: rgba(255,87,34,0.13);
    z-index: -1;
    border-radius: 999px;
}

.hero p {
    max-width: 650px;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 24px;
}

.hero-search {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 8px;
    max-width: 650px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 18px;
}

.search-input {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 14px;
    color: var(--muted);
}

.search-input input {
    border: none;
    outline: none;
    width: 100%;
    color: var(--text);
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 26px;
}

.hero-mini {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.mini-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.9);
    border: 1px solid #edf1f7;
    padding: 13px 14px;
    border-radius: 18px;
    box-shadow: var(--shadow);
    min-width: 0;
}

.mini-icon,
.feature-icon,
.stat-icon {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}

.mini-card strong {
    display: block;
    font-size: 14px;
    margin-bottom: 3px;
}

.mini-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.45;
}

.orange { background: var(--primary-soft); color: var(--brand-primary); }
.green { background: #e9fbf2; color: #059669; }
.blue { background: #eef5ff; color: var(--blue); }
.purple { background: #f3edff; color: var(--purple); }

.hero-visual {
    position: relative;
    min-height: 620px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-bg {
    position: absolute;
    inset: 20px 0 20px 42px;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid #edf1f7;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.68), rgba(255,247,244,0.88)),
        url('image/hero.jpg');
    background-size: cover;
    background-position: center;
    box-shadow: var(--shadow-lg);
}

.visual-bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(16,24,40,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16,24,40,0.05) 1px, transparent 1px);
    background-size: 42px 42px;
    mask-image: linear-gradient(180deg, rgba(0,0,0,0.8), transparent 90%);
}

.ticket-card,
.sales-card,
.access-card,
.live-card {
    position: absolute;
    background: rgba(255,255,255,0.94);
    border: 1px solid #edf1f7;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(14px);
    z-index: 5;
}

.ticket-card {
    top: 76px;
    left: 0;
    width: 325px;
    padding: 18px;
    animation: floatCard 5.5s ease-in-out infinite;
}

.ticket-top,
.sales-head,
.access-head,
.live-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}

.live-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #e9fbf2;
    color: #047857;
    border-radius: 999px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 800;
}

.pulse {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #10b981;
    box-shadow: 0 0 0 0 rgba(16,185,129,.45);
    animation: pulseRing 1.6s infinite;
}

.event-pass {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 14px;
}

.pass-cover {
    width: 66px;
    height: 66px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--brand-primary), #111827);
    display: grid;
    place-items: center;
    color: #fff;
    font-size: 24px;
}

.progress-head {
    display: flex;
    justify-content: space-between;
    color: var(--muted);
    font-size: 13px;
    margin-bottom: 8px;
}

.progress-line {
    height: 10px;
    background: #edf1f7;
    border-radius: 999px;
    overflow: hidden;
}

.progress-fill {
    width: 82%;
    height: 100%;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    border-radius: inherit;
    animation: pulseWidth 3s ease-in-out infinite;
}

.sales-card {
    right: 10px;
    top: 170px;
    width: 250px;
    padding: 16px;
    animation: floatCard 5.9s ease-in-out infinite .5s;
}

.sales-list {
    display: grid;
    gap: 10px;
}

.sales-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #4b5565;
    font-size: 14px;
}

.status-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot-orange { background: var(--brand-primary); }
.dot-green { background: var(--green); }
.dot-blue { background: var(--blue); }

.access-card {
    left: 34px;
    bottom: 48px;
    width: 255px;
    padding: 16px;
    animation: floatCard 6.4s ease-in-out infinite 1.2s;
}

.live-card {
    right: 28px;
    bottom: 34px;
    width: 230px;
    padding: 16px;
    animation: floatCard 6s ease-in-out infinite 1.8s;
}

.section {
    padding: 76px 0 18px;
}

.section-heading {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 32px;
}

.section-heading .tag {
    margin-bottom: 14px;
}

.section-heading h2 {
    font-size: clamp(30px, 4vw, 48px);
    line-height: 1.06;
    font-weight: 900;
    letter-spacing: -0.045em;
    margin-bottom: 12px;
}

.section-heading p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.7;
}

.trusted-bar {
    padding: 20px 0 10px;
}

.trusted-box {
    background: rgba(255,255,255,0.78);
    border: 1px solid #edf1f7;
    border-radius: 24px;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    box-shadow: var(--shadow);
}

.trusted-title {
    font-size: 14px;
    font-weight: 800;
    color: #344054;
}

.trusted-logos {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.trusted-pill,
.category-pill {
    padding: 10px 14px;
    border-radius: 999px;
    background: #fff;
    border: 1px solid #edf1f7;
    color: #667085;
    font-size: 13px;
    font-weight: 800;
}

.category-strip {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 28px;
}

.category-pill.active {
    background: var(--brand-primary);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 14px 24px var(--primary-glare);
}

.events-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 24px;
}

.events-head h2 {
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.05;
    letter-spacing: -0.04em;
    font-weight: 900;
}

.events-head p {
    color: var(--muted);
    line-height: 1.7;
    margin-top: 8px;
}

.event-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

.event-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: #ffd0bf;
}

.card-frame {
    position: relative;
    aspect-ratio: 1 / 1.05;
    overflow: hidden;
    margin: 10px;
    border-radius: 20px;
    background: #f2f4f7;
}

.card-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .8s ease;
}

.event-card:hover .card-frame img {
    transform: scale(1.08);
}

.card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,.92);
    color: var(--brand-dark);
    padding: 8px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 900;
    text-transform: uppercase;
}

.price-badge {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: var(--ink-black);
    color: #fff;
    padding: 9px 11px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 900;
}

.card-content {
    padding: 8px 18px 20px;
}

.card-content h3 {
    font-size: 18px;
    line-height: 1.25;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
    font-weight: 900;
}

.card-data {
    display: grid;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.data-point {
    display: flex;
    align-items: center;
    gap: 8px;
}

.data-point i {
    color: var(--brand-primary);
}

.empty-events {
    grid-column: 1 / -1;
    padding: 54px;
    text-align: center;
    border: 2px dashed #d8deea;
    background: #fff;
    border-radius: 26px;
    color: var(--muted);
}

.feature-grid,
.how-grid,
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.feature-card,
.step-card,
.testimonial-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 26px;
    padding: 24px;
    box-shadow: var(--shadow);
}

.feature-card {
    background: linear-gradient(180deg, #fff 0%, #fffaf8 100%);
}

.feature-card h3,
.step-card h3 {
    font-size: 20px;
    margin-bottom: 10px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.feature-card p,
.step-card p,
.testimonial-card p {
    color: var(--muted);
    line-height: 1.75;
    font-size: 15px;
}

.stats-panel {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 30px;
}

.stat-card {
    min-height: 138px;
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 22px;
    padding: 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow);
}

.stat-title {
    color: var(--muted);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 14px;
}

.stat-value {
    font-size: 38px;
    font-weight: 900;
    line-height: 1;
    letter-spacing: -0.05em;
}

.dashboard-preview {
    margin-top: 28px;
    background: linear-gradient(180deg, #fff 0%, #fff7f3 100%);
    border: 1px solid #edf1f7;
    border-radius: 34px;
    padding: 24px;
    box-shadow: var(--shadow-lg);
}

.preview-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 20px;
}

.preview-main,
.preview-side {
    display: grid;
    gap: 18px;
}

.preview-box {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 24px;
    padding: 18px;
    box-shadow: var(--shadow);
}

.preview-box h4 {
    font-size: 16px;
    font-weight: 900;
    margin-bottom: 14px;
}

.timeline {
    display: grid;
    gap: 14px;
}

.timeline-item {
    display: flex;
    gap: 12px;
}

.timeline-track {
    width: 14px;
    display: flex;
    justify-content: center;
}

.timeline-track::before {
    content: "";
    width: 4px;
    min-height: 42px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--brand-primary), #ffd6c8);
}

.timeline-content strong {
    display: block;
    margin-bottom: 4px;
    font-size: 15px;
}

.timeline-content span,
.track-card span {
    color: var(--muted);
    font-size: 13px;
    line-height: 1.6;
}

.track-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #fffaf8;
    border: 1px solid #ffe2d8;
    border-radius: 18px;
    padding: 14px;
}

.tracking-cards {
    display: grid;
    gap: 14px;
}

.step-number {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    color: #fff;
    font-weight: 900;
    margin-bottom: 16px;
}

.testimonial-card p {
    color: #475467;
    margin-bottom: 18px;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    background: var(--primary-soft);
    color: var(--brand-primary);
    display: grid;
    place-items: center;
    font-weight: 900;
}

.pricing-panel {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 34px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: .9fr 1.1fr;
    gap: 24px;
    align-items: center;
}

.rate-card {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    color: #fff;
    border-radius: 28px;
    padding: 34px;
    min-height: 100%;
}

.rate {
    font-family: "Space Grotesk", sans-serif;
    font-size: 86px;
    font-weight: 700;
    line-height: .9;
    letter-spacing: -0.06em;
    margin-bottom: 12px;
}

.rate span {
    font-size: 24px;
    letter-spacing: 0;
}

.rate-card p {
    color: rgba(255,255,255,.84);
    line-height: 1.75;
}

.benefit-list {
    list-style: none;
    display: grid;
    gap: 14px;
}

.benefit-list li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    color: #475467;
    line-height: 1.65;
}

.benefit-list i {
    color: var(--green);
    margin-top: 4px;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 20px;
    margin-bottom: 14px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.faq-trigger {
    width: 100%;
    border: none;
    background: transparent;
    padding: 22px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.faq-trigger span {
    font-size: 17px;
    font-weight: 900;
    color: var(--text);
}

.faq-icon {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    display: grid;
    place-items: center;
    background: var(--primary-soft);
    color: var(--brand-primary);
    transition: var(--transition);
    flex-shrink: 0;
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    padding: 0 24px;
}

.faq-content p {
    color: var(--muted);
    line-height: 1.75;
    padding-bottom: 22px;
}

.faq-item.active {
    border-color: #ffd4c5;
}

.faq-item.active .faq-icon {
    background: var(--brand-primary);
    color: #fff;
    transform: rotate(180deg);
}

.faq-item.active .faq-content {
    max-height: 420px;
}

.cta-panel {
    margin-top: 36px;
    background:
        radial-gradient(circle at top right, rgba(255,255,255,.20), transparent 28%),
        linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    color: #fff;
    border-radius: 34px;
    padding: 36px;
    box-shadow: 0 24px 48px rgba(255,87,34,.25);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 22px;
    flex-wrap: wrap;
}

.cta-panel h3 {
    font-size: clamp(28px, 4vw, 42px);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: -0.045em;
    margin-bottom: 10px;
}

.cta-panel p {
    color: rgba(255,255,255,.84);
    line-height: 1.7;
    max-width: 640px;
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer {
    margin-top: 72px;
    padding: 56px 0 26px;
    background: #fff;
    border-top: 1px solid var(--line);
}

.footer-box {
    display: flex;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    padding-bottom: 28px;
}

.footer-brand {
    max-width: 390px;
}

.footer-brand p {
    margin-top: 14px;
    color: var(--muted);
    line-height: 1.75;
    font-size: 15px;
}

.newsletter-form {
    margin-top: 18px;
    display: flex;
    gap: 8px;
    background: #f7f8fc;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 6px;
}

.newsletter-form input {
    flex: 1;
    min-width: 0;
    border: none;
    outline: none;
    background: transparent;
    padding: 0 10px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 38px;
    flex-wrap: wrap;
}

.footer-col h4 {
    font-size: 14px;
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: .05em;
    color: #344054;
}

.footer-col a {
    display: block;
    color: var(--muted);
    margin-bottom: 10px;
    font-size: 15px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--brand-primary);
}

.footer-bottom {
    border-top: 1px solid var(--line);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
    color: #7a869c;
    font-size: 14px;
}

.socials {
    display: flex;
    gap: 16px;
    font-size: 18px;
}

.socials a:hover {
    color: var(--brand-primary);
}

.chatbot {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 1200;
}

.chatbot-toggle {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    border: none;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    color: #fff;
    cursor: pointer;
    box-shadow: 0 18px 30px rgba(255,87,34,.28);
    display: grid;
    place-items: center;
    font-size: 20px;
}

.chatbot-panel {
    position: absolute;
    right: 0;
    bottom: 76px;
    width: 360px;
    max-width: calc(100vw - 24px);
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 24px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    display: none;
}

.chatbot-panel.open {
    display: block;
}

.chatbot-head {
    padding: 16px 18px;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    color: #fff;
    display: flex;
    justify-content: space-between;
    gap: 12px;
}

.chatbot-head strong {
    display: block;
    font-size: 15px;
}

.chatbot-head span {
    color: rgba(255,255,255,.84);
    font-size: 12px;
}

.chatbot-body {
    padding: 16px;
    background: linear-gradient(180deg, #fff 0%, #fff8f5 100%);
    height: 320px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.message {
    max-width: 86%;
    padding: 12px 14px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.6;
}

.message.bot {
    background: var(--primary-soft);
    color: #3f2a22;
    align-self: flex-start;
    border-bottom-left-radius: 6px;
}

.message.user {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 6px;
}

.chatbot-suggestions {
    padding: 0 16px 12px;
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    background: #fff8f5;
}

.suggestion-btn {
    border: 1px solid #ffd9cb;
    background: #fff;
    color: #6b3a2b;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
}

.chatbot-form {
    border-top: 1px solid #edf1f7;
    padding: 12px;
    display: flex;
    gap: 10px;
    background: #fff;
}

.chatbot-form input {
    flex: 1;
    min-width: 0;
    border: 1px solid #dde4ef;
    border-radius: 14px;
    padding: 13px 14px;
    outline: none;
}

.chatbot-form button {
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 14px;
    background: var(--brand-primary);
    color: #fff;
    cursor: pointer;
}

#cookieOverlay {
    position: fixed;
    inset: 0;
    background: rgba(16,24,40,.42);
    backdrop-filter: blur(4px);
    z-index: 9997;
    display: none;
}

#cookieOverlay.show {
    display: block;
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 28px;
    transform: translateX(-50%) translateY(150%);
    width: min(520px, calc(100% - 24px));
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 22px;
    box-shadow: var(--shadow-lg);
    z-index: 9998;
    transition: transform .45s ease;
}

.cookie-banner.show {
    transform: translateX(-50%) translateY(0);
}

.cookie-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.cookie-header i {
    color: var(--brand-primary);
    font-size: 22px;
}

.cookie-header h4 {
    font-size: 18px;
    font-weight: 900;
}

.cookie-text {
    color: var(--muted);
    line-height: 1.6;
    font-size: 14px;
    margin-bottom: 14px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-actions .btn-primary,
.cookie-actions .btn-secondary {
    flex: 1;
    padding: 12px 14px;
}

.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.show {
    opacity: 1;
    transform: translateY(0);
}

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes pulseRing {
    0% { box-shadow: 0 0 0 0 rgba(16,185,129,.45); }
    70% { box-shadow: 0 0 0 12px rgba(16,185,129,0); }
    100% { box-shadow: 0 0 0 0 rgba(16,185,129,0); }
}

@keyframes pulseWidth {
    0%, 100% { width: 82%; }
    50% { width: 88%; }
}

@media (max-width: 1100px) {
    .hero-grid,
    .preview-grid,
    .pricing-panel {
        grid-template-columns: 1fr;
    }

    .event-grid,
    .feature-grid,
    .how-grid,
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-visual {
        min-height: 580px;
    }
}

@media (max-width: 860px) {
    .nav-desktop,
    .auth-desktop {
        display: none;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .mobile-dropdown {
        position: absolute;
        top: calc(100% + 10px);
        right: 0;
        width: min(340px, 100%);
        background: #fff;
        border: 1px solid #e8edf7;
        border-radius: 18px;
        box-shadow: var(--shadow-lg);
        padding: 12px;
        display: none;
    }

    .mobile-dropdown.open {
        display: block;
    }

    .mobile-dropdown .nav-link {
        display: block;
        margin-bottom: 6px;
    }

    .mobile-auth {
        display: grid;
        gap: 10px;
        padding-top: 8px;
    }

    .hero-grid,
    .feature-grid,
    .how-grid,
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        max-width: 100%;
    }

    .hero-mini {
        grid-template-columns: 1fr;
    }

    .events-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 620px) {
    .wrapper {
        width: min(100%, calc(100% - 18px));
    }

    .brand-title {
        font-size: 19px;
    }

    .hero-section {
        padding-top: 26px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 15px;
    }

    .hero-search {
        grid-template-columns: 1fr;
    }

    .hero-search .btn-primary,
    .hero-cta .btn-primary,
    .hero-cta .btn-secondary {
        width: 100%;
    }

    .hero-visual {
        min-height: 560px;
    }

    .visual-bg {
        inset: 8px 0;
        border-radius: 24px;
    }

    .ticket-card {
        left: 10px;
        top: 48px;
        width: calc(100% - 20px);
        padding: 14px;
    }

    .sales-card {
        right: 10px;
        top: 215px;
        width: calc(100% - 70px);
        padding: 14px;
    }

    .access-card {
        left: 10px;
        bottom: 106px;
        width: calc(100% - 90px);
        padding: 14px;
    }

    .live-card {
        right: 10px;
        bottom: 18px;
        width: calc(100% - 100px);
        padding: 14px;
    }

    .event-grid {
        grid-template-columns: 1fr;
    }

    .stats-panel {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-card {
        min-height: 112px;
        padding: 14px;
    }

    .stat-value {
        font-size: 28px;
    }

    .stat-icon {
        width: 44px;
        height: 44px;
    }

    .pricing-panel,
    .dashboard-preview,
    .cta-panel {
        padding: 20px;
        border-radius: 24px;
    }

    .rate {
        font-size: 64px;
    }

    .cta-actions,
    .cta-actions a {
        width: 100%;
    }

    .btn-white,
    .btn-outline-light {
        width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
    }

    .cookie-actions {
        flex-direction: column;
    }
}