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

:root {
    --bg: #0e0a14;
    --bg-card: #16111f;
    --bg-elevated: #1e1828;
    --text: #ddd8e4;
    --text-muted: #8a7fa0;
    --accent: #9b8ab8;
    --accent-glow: rgba(155, 138, 184, 0.2);
    --cta: #d4c8a8;
    --cta-hover: #e0d6b8;
    --success: #8ab89b;
    --danger: #c87070;
    --radius: 8px;
    --radius-sm: 4px;
    --max-width: 720px;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'PT Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: var(--bg);
    background-image: radial-gradient(ellipse at 50% 0%, rgba(60, 40, 90, 0.4) 0%, transparent 60%);
    background-attachment: fixed;
    color: var(--text);
    line-height: 1.6;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--accent);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* ========== Layout ========== */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 16px;
}

/* ========== Header ========== */
.header {
    padding: 16px 0;
    border-bottom: 1px solid var(--bg-elevated);
}

.header__brand {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

/* ========== Hero ========== */
.hero {
    padding: 28px 0 32px;
    text-align: center;
}

.hero__badge {
    display: inline-block;
    background: transparent;
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 2px;
    font-size: 0.8rem;
    font-weight: 400;
    margin-bottom: 14px;
    border: 1px solid rgba(155, 138, 184, 0.3);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.hero__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 1.15;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    color: #f0ecf4;
}

/* Artist row: ghost + name inline */
.hero__artist-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 8px;
}

.hero__ghost {
    width: 56px;
    height: auto;
    opacity: 0.9;
    flex-shrink: 0;
    align-self: center;
    margin-top: 12px;
}

.hero__artist-name {
    max-width: 360px;
    width: 100%;
    height: auto;
}

.hero__subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.hero__details {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    margin: 20px 0 32px;
    font-size: 0.95rem;
    color: var(--text-muted);
}

.hero__detail {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero__detail-icon {
    font-size: 1.1rem;
}

.hero__detail a {
    color: var(--text-muted);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.hero__detail a:hover {
    color: var(--accent);
}

/* ========== CTA Button ========== */
.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #f0ecf4;
    border: 2px solid rgba(240, 236, 244, 0.6);
    padding: 16px 56px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-cta:hover {
    background: rgba(240, 236, 244, 0.08);
    border-color: #f0ecf4;
}

.btn-cta:active {
    background: rgba(240, 236, 244, 0.12);
}

.btn-cta__ghost {
    height: 1.2em;
    width: auto;
    vertical-align: middle;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--bg-elevated);
    color: var(--text);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 12px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius);
    cursor: pointer;
    transition: background 0.15s;
}

.btn-secondary:hover {
    background: #24243a;
}

/* ========== Video Section ========== */
.video-section {
    padding: 0 0 8px;
}

.video-player {
    border-radius: var(--radius);
    overflow: hidden;
    max-height: 360px;
}

.video-player video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== Countdown ========== */
.countdown {
    text-align: center;
    padding: 16px 0;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.countdown__value {
    color: #c4b5d8;
    font-weight: 700;
}

.countdown__row {
    margin: 4px 0;
}

.countdown__deadline {
    font-size: 0.85rem;
    color: var(--cta);
    margin-top: 6px;
}

.countdown__deadline strong {
    color: #e8dcc0;
}

.countdown__deadline .countdown__value {
    color: var(--cta);
}

.countdown__deadline--expired {
    color: var(--danger);
}

.countdown__deadline--expired .countdown__value {
    color: var(--danger);
}

/* ========== How It Works ========== */
.how-it-works {
    padding: 40px 0;
}

.section-title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    margin-bottom: 32px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
}

.steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.step__number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--accent);
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 1.2rem;
    border-radius: 50%;
    border: 1px solid rgba(155, 138, 184, 0.3);
}

.step__content h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.step__content p {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* ========== Group Invite Banner ========== */
.group-invite {
    padding: 16px 0 0;
}

.group-invite__card {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(59, 130, 246, 0.10));
    border: 1px solid rgba(168, 85, 247, 0.25);
    border-radius: var(--radius);
    padding: 20px 24px;
    text-align: center;
}

.group-invite__text {
    font-size: 1.1rem;
    color: var(--text);
    line-height: 1.4;
}

.group-invite__name {
    font-weight: 700;
    color: var(--accent);
}

.group-invite__sub {
    margin-top: 6px;
    font-size: 0.88rem;
    color: var(--text-muted);
}

/* ========== Progress Section ========== */
.progress-section {
    padding: 16px 0 8px;
}

.progress-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 14px 24px 28px;
    border: 1px solid rgba(255,255,255,0.05);
}

.progress-card__header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 16px;
}

.progress-card__count {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #c4b5d8;
}

.progress-card__target {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.progress-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-elevated);
    border-radius: 6px;
    overflow: hidden;
    margin-bottom: 24px;
}

.progress-bar__fill {
    height: 100%;
    background: linear-gradient(90deg, #3d2a5c, #7b5ea7, #9b8ab8);
    border-radius: 6px;
    transition: width 0.6s ease-out;
    min-width: 0;
}

/* ========== Tiers ========== */
.tiers {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tier {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 4px;
    padding: 14px 16px;
    background: var(--bg);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.05);
    transition: border-color 0.3s, background 0.3s;
}

.tier--reached {
}

.tier--current {
}

.tier__label {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.tier__discount {
    font-weight: 700;
    font-size: 1rem;
}

.tier__bonus {
    font-size: 0.75rem;
    color: var(--cta);
    font-weight: 500;
    margin-top: 2px;
}

/* ========== Participants ========== */
.participants-section {
    padding: 40px 0;
}

.participants-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.participant-card {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: var(--bg-card);
    border-radius: 24px;
    border: 1px solid rgba(255,255,255,0.05);
}

.participant-card__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(100, 70, 140, 0.3);
    color: #c4b5d8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-weight: 600;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.participant-card__name {
    font-size: 0.9rem;
    font-weight: 500;
}

.participant-card--more {
    background: transparent;
    border: 1px dashed rgba(255,255,255,0.15);
    color: var(--text-muted);
    font-size: 0.85rem;
}

.participants-empty {
    text-align: center;
    color: var(--text-muted);
    padding: 24px;
    font-size: 0.95rem;
}

/* ========== Referral Stats ========== */
.referral-stats {
    display: none;
    text-align: center;
    padding: 16px;
    margin: 16px 0;
    background: rgba(200, 80, 240, 0.08);
    border: 1px solid rgba(200, 80, 240, 0.2);
    border-radius: var(--radius);
    color: var(--accent);
    font-weight: 600;
}

/* ========== Modal ========== */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 100;
    align-items: center;
    justify-content: center;
    padding: 16px;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
}

.modal {
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 32px 24px;
    width: 100%;
    max-width: 440px;
    max-height: 90vh;
    overflow-y: auto;
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    padding: 4px;
}

.modal__close:hover {
    color: var(--text);
}

.modal__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 8px;
    letter-spacing: 0.02em;
}

.modal__subtitle {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

/* ========== Form ========== */
.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text-muted);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.15s;
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
}

.form-input::placeholder {
    color: rgba(136, 136, 160, 0.6);
}

.form-hint {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.form-error {
    display: none;
    font-size: 0.85rem;
    color: var(--danger);
    margin-bottom: 12px;
    padding: 10px 14px;
    background: rgba(240, 80, 80, 0.1);
    border-radius: var(--radius-sm);
}

.form-error.visible {
    display: block;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: transparent;
    color: #f0ecf4;
    border: 2px solid rgba(240, 236, 244, 0.5);
    border-radius: 2px;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.25s ease;
}

.btn-submit:hover {
    background: rgba(240, 236, 244, 0.08);
    border-color: #f0ecf4;
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ========== Share Modal ========== */
.share-success {
    text-align: center;
    margin-bottom: 24px;
}

.share-success__icon {
    font-size: 3rem;
    margin-bottom: 8px;
}

.share-link-box {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.share-link-box__input {
    flex: 1;
    padding: 10px 14px;
    background: var(--bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.85rem;
    font-family: monospace;
}

.btn-copy {
    padding: 10px 16px;
    background: var(--accent);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    font-size: 0.85rem;
    transition: background 0.15s;
}

.btn-copy:hover {
    background: #d060ff;
}

.share-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.share-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 20px;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    color: white;
    transition: transform 0.15s, opacity 0.15s;
    border: none;
    cursor: pointer;
}

.share-btn:hover {
    transform: translateY(-1px);
    text-decoration: none;
    color: white;
}

.share-btn--telegram {
    background: #2AABEE;
}

.share-btn--whatsapp {
    background: #25D366;
}

.share-btn--vk {
    background: #4680C2;
}

.share-btn--story {
    width: 100%;
    margin-top: 8px;
    background: var(--bg-elevated);
    border: 1px solid var(--accent);
    color: var(--accent);
}

.share-btn--story:hover {
    background: var(--accent);
    color: #fff;
}

.share-btn__icon {
    font-size: 1.2rem;
}

/* ========== Footer ========== */
.footer {
    padding: 32px 0;
    text-align: center;
    border-top: 1px solid var(--bg-elevated);
    margin-top: 40px;
}

.footer__text {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========== Utilities ========== */
.hidden {
    display: none !important;
}

.text-center {
    text-align: center;
}

/* ========== Loading State ========== */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,0.2);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.progress-loading {
    text-align: center;
    padding: 24px 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ========== Closed Page ========== */
.closed-page {
    text-align: center;
    padding: 60px 0 40px;
}

.closed-page__icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.closed-page__title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 16px;
}

.closed-page__text {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.closed-page__details {
    background: var(--bg-card);
    border: 1px solid var(--accent-glow);
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 32px;
    text-align: left;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.closed-page__details p {
    color: var(--text);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 12px;
}

.closed-page__details p:last-child {
    margin-bottom: 0;
}

/* ========== Desktop ========== */
@media (min-width: 768px) {
    .hero {
        padding: 64px 0 40px;
    }

    .hero__title {
        font-size: 2.1rem;
    }

    .hero__title span {
        font-size: 3.2rem;
    }

    .hero__artist-name {
        max-width: 420px;
    }

    .hero__subtitle {
        font-size: 1.25rem;
    }

    .steps {
        flex-direction: row;
    }

    .step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .tiers {
        flex-direction: row;
    }

    .tier {
        flex: 1;
    }

    .share-buttons {
        flex-direction: row;
    }

    .share-btn {
        flex: 1;
    }
}

/* ========== Admin Styles ========== */
#admin-content .container {
    max-width: 1200px;
}

.admin-header {
    padding: 20px 0;
    border-bottom: 1px solid var(--bg-elevated);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.admin-stats {
    display: flex;
    gap: 24px;
    padding: 24px 0;
}

.admin-stat {
    background: var(--bg-card);
    padding: 20px 24px;
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.admin-stat__value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.admin-stat__label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-table-wrapper {
    overflow-x: auto;
    margin-top: 24px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.82rem;
}

.admin-table th,
.admin-table td {
    padding: 8px 8px;
    text-align: left;
    border-bottom: 1px solid var(--bg-elevated);
    white-space: nowrap;
}

.admin-table th {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.admin-table tr:hover td {
    background: rgba(255,255,255,0.02);
}

.admin-table code {
    background: var(--bg-elevated);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85rem;
}

.btn-export {
    padding: 10px 20px;
    background: var(--success);
    color: #0a0a0f;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.15s;
}

.btn-export:hover {
    opacity: 0.9;
}

/* ========== Admin Promo Section ========== */
.admin-promo {
    margin-top: 32px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(255,255,255,0.05);
}

.admin-promo__title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0 0 4px;
}

.admin-promo__desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0 0 20px;
}

.admin-promo__form {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    flex-wrap: wrap;
}

.admin-promo__field {
    flex: 1;
    min-width: 200px;
}

.admin-promo__field label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    font-weight: 500;
}

.admin-promo__field input {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
}

.admin-promo__field input:focus {
    border-color: var(--accent);
}

.admin-promo__field input::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.btn-promo {
    padding: 10px 24px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    font-size: 0.9rem;
    transition: opacity 0.15s;
    white-space: nowrap;
}

.btn-promo:hover {
    opacity: 0.9;
}

.btn-promo:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.admin-promo__counter {
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.admin-promo__result {
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    line-height: 1.5;
}

.admin-promo__result--success {
    background: rgba(80, 200, 120, 0.1);
    border: 1px solid rgba(80, 200, 120, 0.3);
    color: var(--success);
}

.admin-promo__result--warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.admin-promo__result--error {
    background: rgba(200, 112, 112, 0.1);
    border: 1px solid rgba(200, 112, 112, 0.3);
    color: var(--danger);
}

/* ========== Admin Promo Select ========== */
.admin-promo__select {
    width: 100%;
    padding: 10px 14px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.15s;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%238a7fa0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 32px;
}

.admin-promo__select:focus {
    border-color: var(--accent);
}

/* ========== Promo Status ========== */
.promo-status {
    font-size: 0.9rem;
    cursor: default;
}

.promo-status--sent {
    color: var(--success);
    font-weight: 700;
}

.promo-status--not {
    color: var(--text-muted);
    opacity: 0.5;
}

/* ========== Inline Promo in Table ========== */
.promo-inline {
    display: flex;
    gap: 4px;
    align-items: center;
}

.promo-input-inline {
    width: 80px;
    padding: 4px 8px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.78rem;
    outline: none;
    text-transform: uppercase;
}

.promo-contact-inline {
    width: 70px;
    padding: 4px 8px;
    background: var(--bg-elevated);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 0.78rem;
    outline: none;
}

.promo-contact-inline:focus {
    border-color: var(--accent);
}

.promo-contact-inline::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
}

.promo-input-inline:focus {
    border-color: var(--accent);
}

.promo-input-inline::placeholder {
    color: var(--text-muted);
    opacity: 0.5;
    text-transform: none;
}

.btn-send-inline {
    background: none;
    border: 1px solid rgba(155, 138, 184, 0.3);
    color: var(--accent);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
    flex-shrink: 0;
}

.btn-send-inline:hover {
    background: rgba(155, 138, 184, 0.15);
    border-color: var(--accent);
}

.btn-send-inline:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.btn-send-inline--success {
    border-color: var(--success);
    color: var(--success);
}

.btn-send-inline--error {
    border-color: var(--danger);
    color: var(--danger);
}

.btn-delete {
    background: none;
    border: 1px solid rgba(200, 112, 112, 0.3);
    color: var(--danger);
    width: 28px;
    height: 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s, border-color 0.15s;
}

.btn-delete:hover {
    background: rgba(200, 112, 112, 0.15);
    border-color: var(--danger);
}

/* ========== Legal Pages ========== */
.legal-page {
    padding: 40px 0 60px;
}

.legal-page__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 8px;
    color: #f0ecf4;
}

.legal-page__updated {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 32px;
}

.legal-section {
    margin-bottom: 28px;
}

.legal-section h2 {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: #f0ecf4;
    letter-spacing: 0.02em;
}

.legal-section p {
    margin-bottom: 10px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
}

.legal-section ul {
    margin: 8px 0 12px 20px;
    list-style: disc;
}

.legal-section li {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 4px;
}

.legal-section strong {
    color: #f0ecf4;
}

/* ========== Footer Links ========== */
.footer__links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 20px;
    margin-bottom: 12px;
}

.footer__link {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.15s;
}

.footer__link:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer__link--current {
    color: var(--accent);
    cursor: default;
}

.footer__link--current:hover {
    text-decoration: none;
}

/* ========== Form Checkbox ========== */
.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 20px;
    cursor: pointer;
}

.form-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--accent);
    cursor: pointer;
}

.form-checkbox__text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--text-muted);
}

.form-checkbox__text a {
    color: var(--accent);
    text-decoration: underline;
}

.form-checkbox__text a:hover {
    color: var(--cta);
}

/* ========== Header Brand Link ========== */
.header__brand {
    text-decoration: none;
    color: var(--text);
}

.header__brand:hover {
    text-decoration: none;
    color: var(--accent);
}
