/* ── TICKETING SECTION — tkt- prefix ── */

#ticketing {
    border-top: 0.5px solid var(--border);
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    background: transparent;
}

/* ── HEADER ── */
.tkt-header {
    background: var(--light1);
    padding: 48px 48px 40px;
    border-bottom: 0.5px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tkt-tag {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.26em;
    text-transform: uppercase;
    color: var(--green);
}

.tkt-h2 {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 52px;
    text-transform: uppercase;
    color: var(--black);
    line-height: 0.92;
    margin: 0;
}

.tkt-header-p {
    font-size: 15px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 420px;
    margin: 0;
}

/* ── STEPS BODY ── */
.tkt-step {
    display: grid;
    grid-template-columns: 56px 1fr;
    border-bottom: 0.5px solid #2e2e2e;
    background: #242424;
}

.tkt-step:last-of-type {
    border-bottom: none;
}

/* ── DOT COLUMN ── */
.tkt-step-dot-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 32px;
    background: #1a1a1a;
    border-right: 0.5px solid #333;
}

.tkt-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #242424;
    border: 1.5px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.tkt-dot i {
    font-size: 14px;
    color: #616161;
}

.tkt-dot.active {
    border-color: var(--green);
    background: #0f1f0e;
}

.tkt-dot.active i {
    color: var(--green);
}

.tkt-connector {
    flex: 1;
    width: 1px;
    background: #2e2e2e;
    margin-top: 6px;
}

/* ── STEP CONTENT ── */
.tkt-step-content {
    padding: 28px 48px 28px 36px;
}

.tkt-step-num {
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #444;
    margin-bottom: 6px;
}

.tkt-step-title {
    font-family: var(--font-head);
    font-weight: 400;
    font-size: 20px;
    text-transform: uppercase;
    color: var(--white);
    margin: 0 0 10px;
    line-height: 1.1;
}

.tkt-step-body {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.45);
    line-height: 1.75;
    max-width: 520px;
    margin: 0;
}

/* ── BADGE ── */
.tkt-step-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 14px;
    padding: 4px 12px;
    border-radius: 20px;
    border: 0.5px solid #2e2e2e;
    font-family: var(--font-body);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #616161;
}

.tkt-step-badge i {
    font-size: 12px;
}

.tkt-step-badge.green {
    border-color: #0d3b10;
    color: var(--green);
    background: #0a1f0b;
}

/* ── PULLQUOTE ── */
.tkt-pullquote {
    background: #000000;
    padding: 52px 48px;
    border-top: 0.5px solid var(--green);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tkt-pq-text {
    font-family: var(--font-head);
    font-weight: 300;
    font-size: 40px;
    text-transform: uppercase;
    color: var(--white);
    line-height: 1.0;
    margin: 0;
}

.tkt-pq-text em {
    font-style: italic;
    color: var(--green);
}

.tkt-pq-sub {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 300;
    color: rgba(255,255,255,0.35);
    letter-spacing: 0.05em;
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
    .tkt-header { padding: 40px 24px 32px; }
    .tkt-h2 { font-size: 36px; }
    .tkt-step-content { padding: 24px 24px 24px 20px; }
    .tkt-pullquote { padding: 40px 24px; }
    .tkt-pq-text { font-size: 28px; }
}
