@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;800&display=swap');

/* ============================
   Design Tokens
   ============================ */
:root {
    /* Backgrounds */
    --bg-primary: #0b0b1e;
    --bg-page: #0f0f2d;
    --bg-card: rgba(255,255,255,0.04);
    --bg-card-hover: rgba(255,255,255,0.07);
    --bg-input: rgba(255,255,255,0.06);
    --bg-input-focus: rgba(255,255,255,0.10);
    --bg-glass: rgba(15,15,45,0.85);

    /* Gradients */
    --grad-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --grad-warm: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --grad-gold: linear-gradient(135deg, #f5d76e 0%, #e8b931 50%, #c49b1a 100%);
    --grad-bg: linear-gradient(180deg, #0b0b1e 0%, #1a1040 50%, #0b0b1e 100%);
    --grad-card: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.08) 100%);

    /* Colors */
    --purple: #764ba2;
    --purple-light: #9b6dd7;
    --purple-dark: #5a3d7a;
    --blue: #667eea;
    --gold: #f0c040;
    --gold-light: #f5d76e;
    --gold-dark: #c49b1a;
    --gold-glow: rgba(240, 192, 64, 0.25);
    --rose: #f5576c;
    --emerald: #34d399;
    --sky: #38bdf8;

    /* Text */
    --text-primary: #eef0ff;
    --text-secondary: #9a9ec2;
    --text-muted: #5e6288;
    --text-label: #b0b4d8;

    /* Borders */
    --border: rgba(255,255,255,0.08);
    --border-focus: rgba(102,126,234,0.6);
    --border-gold: rgba(240,192,64,0.3);

    /* Radius */
    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.2);
    --shadow: 0 4px 24px rgba(0,0,0,0.3);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.4);
    --shadow-purple: 0 4px 30px rgba(118,75,162,0.2);
    --shadow-gold: 0 4px 30px rgba(240,192,64,0.15);
    --shadow-input: inset 0 2px 4px rgba(0,0,0,0.2);

    /* Transitions */
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
    -webkit-tap-highlight-color: transparent;
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans KR', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    min-height: 100vh;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--grad-bg);
    z-index: -1;
}

/* Ambient light effects */
body::after {
    content: '';
    position: fixed;
    top: -30%;
    right: -20%;
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, rgba(102,126,234,0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: -1;
    animation: ambient-drift 20s ease-in-out infinite alternate;
}

@keyframes ambient-drift {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-10vw, 10vh); }
}

.container {
    max-width: 460px;
    margin: 0 auto;
    padding: 0 20px 60px;
    position: relative;
}

/* ============================
   Typography
   ============================ */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.3;
}

/* ============================
   Buttons
   ============================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: none;
    border-radius: var(--radius-full);
    font-family: inherit;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    outline: none;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    pointer-events: none;
}

.btn-primary {
    width: 100%;
    padding: 18px 32px;
    background: var(--grad-primary);
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(102,126,234,0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102,126,234,0.5);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-primary:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-gold {
    width: 100%;
    padding: 18px 32px;
    background: var(--grad-gold);
    color: #1a1a1a;
    font-size: 1.05rem;
    box-shadow: 0 4px 20px var(--gold-glow);
    letter-spacing: 0.5px;
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(240,192,64,0.35);
}

.btn-gold:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-glow {
    animation: btn-pulse 2.5s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(102,126,234,0.4); }
    50% { box-shadow: 0 4px 40px rgba(102,126,234,0.6), 0 0 60px rgba(118,75,162,0.2); }
}

.btn-outline {
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.9rem;
    border: 1px solid var(--border);
}

.btn-outline:hover {
    border-color: var(--purple-light);
    color: var(--text-primary);
    background: rgba(255,255,255,0.03);
}

/* ============================
   Card Component
   ============================ */
.card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

/* ============================
   ============ LANDING ============
   ============================ */
.landing-page .hero {
    text-align: center;
    padding: 56px 0 32px;
    position: relative;
}

.landing-page .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    background: rgba(240,192,64,0.1);
    border: 1px solid var(--border-gold);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.landing-page .hero-badge::before {
    content: '✦';
    font-size: 10px;
}

.landing-page .hero-symbol {
    font-size: 72px;
    margin-bottom: 16px;
    filter: drop-shadow(0 0 20px rgba(240,192,64,0.3));
    animation: float 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-8px) scale(1.02); }
}

.landing-page .hero-title {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 6px;
    margin-bottom: 8px;
}

.landing-page .hero-subtitle {
    font-size: 0.95rem;
    color: var(--text-secondary);
    letter-spacing: 3px;
    margin-bottom: 28px;
}

.landing-page .hero-desc {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    max-width: 320px;
    margin: 0 auto;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 40px 0;
}

.feature-item {
    text-align: center;
    padding: 24px 8px 20px;
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    backdrop-filter: blur(8px);
}

.feature-icon {
    font-size: 28px;
    margin-bottom: 10px;
    display: block;
}

.feature-item h3 {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.feature-item p {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Section Title */
.section-title {
    text-align: center;
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.section-title .highlight {
    background: linear-gradient(135deg, var(--blue), var(--purple-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Package Cards */
.packages-preview {
    margin: 40px 0;
}

.package-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.package-card {
    position: relative;
    padding: 24px;
    background: var(--grad-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-align: center;
    backdrop-filter: blur(8px);
    transition: all 0.3s var(--ease);
}

.package-card:hover {
    border-color: rgba(255,255,255,0.15);
    background: var(--bg-card-hover);
}

.card-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--grad-warm);
    color: #fff;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    letter-spacing: 0.5px;
}

.package-card h3 {
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.package-price {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
}

.package-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* Process */
.process {
    margin: 40px 0;
}

.process-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.step {
    text-align: center;
}

.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--grad-primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin: 0 auto 8px;
    box-shadow: 0 2px 12px rgba(102,126,234,0.3);
}

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

.step-arrow {
    color: var(--text-muted);
    font-size: 0.8rem;
    margin: 0 4px;
    margin-top: -16px;
}

/* CTA */
.cta {
    text-align: center;
    margin: 48px 0 32px;
}

.cta-note {
    margin-top: 12px;
    font-size: 0.78rem;
    color: var(--text-muted);
}

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

.footer p {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.72rem;
}

.footer-links a:hover {
    color: var(--purple-light);
}

/* ============================
   ============ FORM PAGE ============
   ============================ */
.form-page {
    padding-top: 0;
}

.page-header {
    text-align: center;
    padding: 28px 0 20px;
}

.page-header h1 {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 3px;
    margin-bottom: 4px;
}

.page-header p {
    font-size: 0.82rem;
    color: var(--text-muted);
}

/* Progress Bar */
.progress-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin-bottom: 28px;
}

.progress-step {
    display: flex;
    align-items: center;
    gap: 0;
}

.progress-dot {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--text-muted);
    transition: all 0.4s var(--ease);
}

.progress-dot.active {
    background: var(--grad-primary);
    border-color: transparent;
    color: #fff;
    box-shadow: 0 2px 16px rgba(102,126,234,0.4);
}

.progress-dot.done {
    background: rgba(52,211,153,0.15);
    border-color: var(--emerald);
    color: var(--emerald);
}

.progress-line {
    width: 48px;
    height: 2px;
    background: var(--border);
    transition: background 0.4s var(--ease);
}

.progress-line.active {
    background: linear-gradient(to right, var(--emerald), var(--blue));
}

/* Form Sections */
.form-section {
    display: none;
    animation: fadeSlideIn 0.35s var(--ease);
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(12px); }
    to { opacity: 1; transform: translateY(0); }
}

.form-section.active {
    display: block;
}

.section-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-label::before {
    content: '';
    width: 4px;
    height: 20px;
    background: var(--grad-primary);
    border-radius: 2px;
}

.section-label .label-desc {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-left: auto;
}

/* Form Groups */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.8rem;
    color: var(--text-label);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group label .required {
    color: var(--rose);
}

/* Inputs */
.form-input {
    width: 100%;
    padding: 14px 16px;
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.92rem;
    font-family: inherit;
    transition: all 0.3s var(--ease);
    outline: none;
    box-shadow: var(--shadow-input);
}

.form-input:focus {
    border-color: var(--border-focus);
    background: var(--bg-input-focus);
    box-shadow: var(--shadow-input), 0 0 0 3px rgba(102,126,234,0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

.form-input.error {
    border-color: var(--rose);
}

.error-msg {
    font-size: 0.72rem;
    color: var(--rose);
    margin-top: 6px;
    display: none;
    padding-left: 2px;
}

.error-msg.show {
    display: block;
    animation: fadeSlideIn 0.2s var(--ease);
}

/* Option Groups (Radio buttons) */
.option-group {
    display: flex;
    gap: 8px;
}

.option-btn {
    flex: 1;
    padding: 13px 10px;
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    font-size: 0.85rem;
    color: var(--text-secondary);
    user-select: none;
    box-shadow: var(--shadow-input);
}

.option-btn:hover {
    border-color: rgba(255,255,255,0.15);
    background: var(--bg-input-focus);
}

.option-btn.selected {
    background: rgba(102,126,234,0.1);
    border-color: var(--blue);
    color: var(--text-primary);
    box-shadow: var(--shadow-input), 0 0 0 3px rgba(102,126,234,0.08);
}

.option-btn input { display: none; }

/* Select Dropdowns */
.date-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 8px;
}

.date-row select,
.time-row select {
    width: 100%;
    padding: 14px 32px 14px 14px;
    background: var(--bg-input);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text-primary);
    font-size: 0.88rem;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' fill='none'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%235e6288' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    outline: none;
    cursor: pointer;
    box-shadow: var(--shadow-input);
    transition: all 0.3s var(--ease);
}

.date-row select:focus,
.time-row select:focus {
    border-color: var(--border-focus);
    background: var(--bg-input-focus);
    box-shadow: var(--shadow-input), 0 0 0 3px rgba(102,126,234,0.1);
}

.time-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

/* Package Selection */
.package-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.package-option {
    padding: 18px 20px;
    background: var(--bg-card);
    border: 1.5px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    gap: 14px;
    backdrop-filter: blur(8px);
}

.package-option:hover {
    border-color: rgba(255,255,255,0.15);
    background: var(--bg-card-hover);
}

.package-option.selected {
    border-color: var(--blue);
    background: rgba(102,126,234,0.06);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.08), var(--shadow-purple);
}

.package-option input { display: none; }

.radio-indicator {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    border: 2px solid var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
    flex-shrink: 0;
}

.package-option.selected .radio-indicator {
    border-color: var(--blue);
    background: var(--blue);
}

.package-option.selected .radio-indicator::after {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #fff;
}

.pkg-info { flex: 1; }

.pkg-name {
    font-size: 0.92rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.pkg-desc {
    font-size: 0.74rem;
    color: var(--text-muted);
}

.pkg-price {
    font-size: 1.1rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Privacy */
.privacy-box {
    padding: 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    margin-bottom: 12px;
    backdrop-filter: blur(8px);
}

.privacy-title {
    font-size: 0.84rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.privacy-text {
    font-size: 0.73rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-height: 120px;
    overflow-y: auto;
    padding: 14px;
    background: rgba(0,0,0,0.2);
    border-radius: var(--radius-sm);
    margin-bottom: 14px;
}

.privacy-text::-webkit-scrollbar { width: 3px; }
.privacy-text::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

.checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
    cursor: pointer;
}

.custom-checkbox {
    width: 22px;
    height: 22px;
    border: 2px solid var(--text-muted);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
    transition: all 0.25s var(--ease);
}

.custom-checkbox.checked {
    background: var(--blue);
    border-color: var(--blue);
    box-shadow: 0 2px 8px rgba(102,126,234,0.3);
}

.custom-checkbox.checked::after {
    content: '✓';
    color: #fff;
    font-size: 13px;
    font-weight: 700;
}

.checkbox-row input { display: none; }

.cb-label {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cb-label strong { color: var(--text-primary); }

/* Submit Area */
.submit-area {
    margin-top: 28px;
}

.submit-area .btn + .btn {
    margin-top: 10px;
}

/* ============================
   ============ PAYMENT ============
   ============================ */
.payment-summary {
    padding: 24px;
    margin-bottom: 20px;
}

.payment-summary h3 {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.payment-summary h3::before {
    content: '📋';
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    font-size: 0.84rem;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.summary-row:last-child {
    border-bottom: none;
}

.summary-row .label {
    color: var(--text-muted);
}

.summary-row .value {
    color: var(--text-primary);
    font-weight: 500;
}

.summary-row.total {
    border-top: 1px solid var(--border);
    border-bottom: none;
    margin-top: 8px;
    padding-top: 16px;
}

.summary-row.total .value {
    font-size: 1.3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kakao-pay-btn {
    width: 100%;
    padding: 18px;
    background: #FEE500;
    color: #1A1A1A;
    border: none;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 16px rgba(254,229,0,0.2);
}

.kakao-pay-btn:hover {
    background: #fdd835;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(254,229,0,0.3);
}

.kakao-icon {
    width: 24px;
    height: 24px;
}

.payment-note {
    text-align: center;
    margin-top: 16px;
    font-size: 0.72rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================
   ============ COMPLETE ============
   ============================ */
.complete-page {
    text-align: center;
    padding-top: 80px;
}

.complete-icon {
    font-size: 72px;
    margin-bottom: 24px;
    animation: complete-pop 0.6s var(--ease-bounce);
}

@keyframes complete-pop {
    0% { transform: scale(0) rotate(-10deg); opacity: 0; }
    60% { transform: scale(1.15) rotate(3deg); }
    100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.complete-page h1 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--emerald), var(--sky));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.complete-page .subtitle {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.7;
}

.complete-info {
    padding: 24px;
    margin-bottom: 24px;
    text-align: left;
}

.complete-info p {
    font-size: 0.84rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    display: flex;
    justify-content: space-between;
}

.complete-info p strong {
    color: var(--text-primary);
    font-weight: 500;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 40px;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    text-decoration: none;
    font-family: inherit;
}

.btn-back:hover {
    border-color: var(--purple-light);
    color: var(--text-primary);
}

/* ============================
   Loading Overlay
   ============================ */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(11, 11, 30, 0.92);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 100;
    animation: fadeIn 0.3s var(--ease);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.loading-spinner {
    width: 44px;
    height: 44px;
    border: 3px solid var(--border);
    border-top-color: var(--blue);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin-bottom: 16px;
}

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

.loading-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* ============================
   Utilities
   ============================ */
.hidden { display: none !important; }
.text-center { text-align: center; }
