/* ============================================================
   HIGHTICKETADS.IO — SHARED CSS
   Dark theme: #07080C bg / #6F00FF purple / white text
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS Variables ───────────────────────────────────────── */
:root {
    --bg:           #07080C;
    --bg-2:         #0D1020;
    --bg-card:      #111426;
    --purple:       #6F00FF;
    --purple-light: #8B2FFF;
    --purple-dark:  #5500CC;
    --purple-glow:  rgba(111, 0, 255, 0.25);
    --white:        #FFFFFF;
    --white-muted:  rgba(255, 255, 255, 0.70);
    --white-dim:    rgba(255, 255, 255, 0.40);
    --border:       rgba(255, 255, 255, 0.10);
    --border-purple:rgba(111, 0, 255, 0.40);
    --success:      #22C55E;
    --error:        #EF4444;

    --font:         'Inter', 'Roboto', -apple-system, sans-serif;
    --max-w:        1100px;
    --max-w-narrow: 760px;
    --radius:       10px;
    --radius-lg:    16px;
}

/* ── Base ────────────────────────────────────────────────── */
html { scroll-behavior: smooth; }

body {
    background: var(--bg);
    color: var(--white);
    font-family: var(--font);
    font-size: 17px;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--purple-light); }

/* ── Layout ──────────────────────────────────────────────── */
.container {
    width: 92%;
    max-width: var(--max-w);
    margin-inline: auto;
}
.container-narrow {
    width: 92%;
    max-width: var(--max-w-narrow);
    margin-inline: auto;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
    line-height: 1.2;
    font-weight: 700;
    letter-spacing: -0.01em;
}
h1 { font-size: clamp(28px, 5vw, 46px); }
h2 { font-size: clamp(24px, 4vw, 36px); }
h3 { font-size: clamp(20px, 3vw, 26px); }

.accent { color: var(--purple-light); }
.muted  { color: var(--white-muted); }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 16px 36px;
    border-radius: var(--radius);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.04em;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: opacity 0.15s, transform 0.15s;
}
.btn:hover  { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 24px var(--purple-glow);
    width: 100%;
    text-align: center;
    font-size: 17px;
    padding: 18px 36px;
}

.btn-large { padding: 20px 48px; font-size: 18px; }

/* ── Form base ───────────────────────────────────────────── */
.form-input {
    width: 100%;
    background: rgba(255, 255, 255, 0.06);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    color: var(--white);
    font-family: var(--font);
    font-size: 16px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
}
.form-input::placeholder { color: var(--white-dim); }
.form-input:focus { border-color: var(--purple); }
.form-input.error { border-color: var(--error); }

.field-error {
    display: block;
    color: var(--error);
    font-size: 13px;
    margin-top: 5px;
    min-height: 18px;
}

/* ── Cards ───────────────────────────────────────────────── */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
}

/* ── Section spacing ─────────────────────────────────────── */
.section { padding-block: clamp(48px, 8vw, 96px); }
.section-sm { padding-block: clamp(32px, 5vw, 56px); }

/* ── Divider ─────────────────────────────────────────────── */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin-block: 0;
}

/* ── Checkmark list ──────────────────────────────────────── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.5;
}
.check-list li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ── Footer ──────────────────────────────────────────────── */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding-block: 28px;
    text-align: center;
    color: var(--white-dim);
    font-size: 13px;
}
.site-footer a {
    color: var(--white-dim);
    text-decoration: none;
}
.site-footer a:hover { color: var(--white-muted); }
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ── Video wrapper ───────────────────────────────────────── */
.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 48px rgba(0, 0, 0, 0.6);
}
.video-wrapper wistia-player { display: block; }

/* ── Sticky video (desktop only) ─────────────────────────── */
@media (min-width: 769px) {
    .video-sticky-active .video-wrapper {
        position: fixed;
        bottom: 24px;
        right: 24px;
        width: 340px;
        z-index: 999;
        border-radius: var(--radius);
        box-shadow: 0 12px 48px rgba(0,0,0,0.7);
    }
}

/* ── FAQ accordion ───────────────────────────────────────── */
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: var(--font);
    font-size: 17px;
    font-weight: 600;
    text-align: left;
    padding: 20px 0;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.4;
}
.faq-question::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    flex-shrink: 0;
    color: var(--purple-light);
    transition: transform 0.2s;
}
.faq-question[aria-expanded="true"]::after { transform: rotate(45deg); }
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--white-muted);
    font-size: 16px;
    line-height: 1.7;
}
.faq-answer.open { max-height: 600px; }
.faq-answer-inner { padding-bottom: 20px; }

/* ── Success message ─────────────────────────────────────── */
.success-message {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.4);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    color: var(--white);
    font-size: 17px;
    line-height: 1.6;
}
.success-message strong { color: var(--success); }

/* ── Testimonial card ────────────────────────────────────── */
.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
}
.testimonial-card blockquote {
    font-size: 16px;
    line-height: 1.7;
    color: var(--white-muted);
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}
.testimonial-result {
    display: inline-block;
    background: rgba(111, 0, 255, 0.2);
    border: 1px solid var(--border-purple);
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--purple-light);
    margin-bottom: 12px;
}

/* ── Grid helpers ────────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }

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

/* ── Utility ─────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-purple { color: var(--purple-light); }
.mt-8  { margin-top: 8px; }
.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
