/* Кто в животике — Soft Mystical Premium */

/* ========== CSS VARIABLES ========== */
:root {
    --bg-primary: #FAF7FF;
    --bg-card: #FFFFFF;
    --bg-soft: #F4F0FF;
    --accent-primary: #7C6FDB;
    --accent-dark: #2D2A4A;
    --accent-boy: #B8D4F0;
    --accent-girl: #F4C2D7;
    --accent-gold: #D4A574;
    --text-primary: #2D2A4A;
    --text-secondary: #8B87A8;
    --text-muted: #B4B0C8;
    --border-soft: #E8E4F5;
    --border-accent: rgba(124, 111, 219, 0.15);
    --radius: 14px;
    --radius-lg: 28px;
    --radius-md: 20px;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Manrope', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========== BACKGROUND DECORATION ========== */
body::before,
body::after {
    content: '';
    position: fixed;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12;
    z-index: -1;
    pointer-events: none;
}
body::before {
    width: 500px;
    height: 500px;
    background: var(--accent-primary);
    top: -100px;
    right: -150px;
}
body::after {
    width: 400px;
    height: 400px;
    background: var(--accent-girl);
    bottom: 10%;
    left: -100px;
}

.star-field {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}
.star-field .star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent-primary);
    border-radius: 50%;
    animation: twinkle var(--dur, 4s) ease-in-out infinite alternate;
}
@keyframes twinkle {
    from { opacity: 0.15; }
    to { opacity: 0.45; }
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3 {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-optical-sizing: auto;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}
h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.1;
}
h1 em {
    font-style: italic;
    color: var(--accent-primary);
}
h2 {
    font-size: clamp(26px, 4vw, 40px);
    line-height: 1.2;
    text-align: center;
}
h3 {
    font-size: 20px;
}
.label {
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
}
.archetype-name {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-style: italic;
    font-size: 24px;
    color: var(--accent-primary);
    margin: 8px 0;
}

/* ========== HEADER ========== */
.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 247, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-soft);
}
.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    height: 72px;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.logo-icon {
    width: 32px;
    height: 32px;
}
.logo-text {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 20px;
    color: var(--text-primary);
}
.nav { display: flex; gap: 4px; }
.nav-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    transition: color 0.2s;
}
.nav-link:hover { color: var(--accent-primary); }

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}
.burger span {
    width: 22px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-menu {
    display: none;
    flex-direction: column;
    padding: 0 40px 16px;
    gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-link {
    font-weight: 500;
    font-size: 14px;
    color: var(--text-primary);
    text-decoration: none;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-soft);
}

/* ========== HERO ========== */
.hero {
    min-height: 80vh;
    padding: 80px 24px 60px;
    display: flex;
    justify-content: center;
}
.hero-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 720px;
    width: 100%;
}
.hero > .hero-inner > * {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}
.hero > .hero-inner > *:nth-child(1) { animation-delay: 0s; }
.hero > .hero-inner > *:nth-child(2) { animation-delay: 0.1s; }
.hero > .hero-inner > *:nth-child(3) { animation-delay: 0.2s; }
.hero > .hero-inner > *:nth-child(4) { animation-delay: 0.3s; }

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: var(--bg-soft);
    color: var(--accent-primary);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    border-radius: 100px;
    margin-bottom: 24px;
}
.hero-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 520px;
    margin: 20px auto 48px;
}

/* ========== FORM CARD ========== */
.hero-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 40px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 20px 60px rgba(45, 42, 74, 0.06);
}
.field { margin-bottom: 20px; }
.field-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 8px;
}
.select {
    width: 100%;
    padding: 16px 20px;
    background: var(--bg-primary);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    font-family: 'Manrope', sans-serif;
    font-size: 15px;
    color: var(--text-primary);
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%238B87A8' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: border-color 0.2s, box-shadow 0.2s;
}
.select:focus {
    border-color: var(--accent-primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(124, 111, 219, 0.1);
}

/* ========== BUTTONS ========== */
.btn-primary {
    display: block;
    width: 100%;
    background: var(--accent-primary);
    color: white;
    padding: 16px 32px;
    border: none;
    border-radius: var(--radius);
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 8px 24px rgba(124, 111, 219, 0.25);
    margin-top: 4px;
}
.btn-primary:hover {
    background: #6B5FC7;
    box-shadow: 0 12px 32px rgba(124, 111, 219, 0.35);
    transform: translateY(-1px);
}
.btn-primary:active {
    transform: translateY(0) scale(0.98);
}
.btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}
.btn-text {
    display: block;
    width: 100%;
    background: transparent;
    border: none;
    color: var(--accent-primary);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    padding: 12px;
    margin-top: 12px;
    transition: opacity 0.2s;
}
.btn-text:hover { text-decoration: underline; }

/* ========== GENDER ROW (reverse) ========== */
.gender-row {
    display: flex;
    gap: 8px;
}
.gender-btn {
    flex: 1;
    padding: 14px;
    background: var(--bg-primary);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius);
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.gender-btn.active,
.gender-btn.on {
    background: var(--bg-soft);
    border-color: var(--accent-primary);
    color: var(--accent-primary);
}
.gender-btn:hover:not(.active):not(.on) {
    border-color: var(--text-muted);
}

/* ========== LOADER ========== */
.loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    gap: 20px;
}
.loader-ring {
    width: 40px;
    height: 40px;
    border: 2px solid var(--border-soft);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.loader-label {
    font-family: 'Fraunces', serif;
    font-style: italic;
    font-size: 15px;
    color: var(--text-secondary);
}

/* ========== RESULT CARD ========== */
.result-card {
    text-align: center;
}
.result-logo {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px;
    display: block;
}
.result-title {
    font-size: 22px;
    margin-bottom: 4px;
}
.result-card > .label {
    margin-bottom: 24px;
}
.gender-symbol {
    font-size: 72px;
    display: block;
    margin: 24px 0 8px;
    line-height: 1;
}
.result-gender {
    font-size: 36px;
    margin-bottom: 24px;
}

/* Info grid (Знак + Архетип) */
.info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.info-block {
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 16px 12px;
    text-align: center;
}
.info-block .label { margin-bottom: 6px; }
.info-value {
    font-weight: 600;
    font-size: 16px;
    color: var(--text-primary);
}

/* Destiny block */
.destiny-block {
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    padding: 24px;
    margin-bottom: 24px;
    text-align: center;
}
.destiny-block .label { margin-bottom: 8px; }
.archetype-description {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

/* Month box */
.month-box {
    background: var(--bg-soft);
    border-radius: var(--radius-md);
    padding: 20px;
    margin-bottom: 24px;
    text-align: center;
}
.month-value {
    font-family: 'Fraunces', serif;
    font-size: 20px;
    font-weight: 500;
    color: var(--accent-primary);
    margin-top: 8px;
}

/* ========== TRADITION ========== */
.tradition-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 18px;
    text-align: center;
    margin: 8px 0 16px;
}
.tradition-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 8px;
}
.trad-btn {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 16px 12px;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 13px;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.trad-btn:hover,
.trad-btn.on {
    border-color: var(--accent-primary);
    background: var(--bg-soft);
    color: var(--accent-primary);
}

/* ========== REPORT HEADER ========== */
.report-header {
    text-align: center;
    padding-bottom: 28px;
    margin-bottom: 28px;
    border-bottom: 1px solid var(--border-soft);
}
.report-logo {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    display: block;
}
.report-title {
    font-family: 'Fraunces', serif;
    font-size: 26px;
    font-weight: 500;
    color: var(--text-primary);
    margin-bottom: 8px;
}
.report-subtitle {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ========== NAMES LIST ========== */
.names-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}
.name-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: left;
}
.name-card:hover {
    border-color: var(--accent-primary);
    box-shadow: 0 8px 24px rgba(124, 111, 219, 0.08);
}
.name-head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px;
    gap: 12px;
}
.name-title {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--text-primary);
    margin: 0;
}
.name-origin {
    font-size: 13px;
    color: var(--accent-primary);
    font-style: italic;
    white-space: nowrap;
}
.name-desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
.name-celeb {
    font-size: 13px;
    color: var(--accent-gold);
    font-style: italic;
    margin-bottom: 12px;
}
.name-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.tag {
    display: inline-block;
    padding: 5px 12px;
    background: var(--bg-soft);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-primary);
}
.tag.neg {
    background: rgba(244, 194, 215, 0.3);
    color: #c0648a;
}

.btn-pdf {
    margin-top: 0;
}

/* ========== REPORT ACTIONS ========== */
.report-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 24px;
    border-top: 1px solid var(--border-soft);
}

.report-actions-top {
    border-top: none;
    padding-top: 0;
    margin-bottom: 20px;
}

/* ========== NAME MODAL ========== */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(45, 42, 74, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 200;
    padding: 24px;
}
.modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(45, 42, 74, 0.12);
}
.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 32px;
    height: 32px;
    background: var(--bg-soft);
    border: none;
    border-radius: 50%;
    font-size: 18px;
    color: var(--text-secondary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.modal-close:hover { background: var(--border-soft); }
.modal-icon { text-align: center; margin-bottom: 16px; }
.modal-icon svg { width: 64px; height: 64px; }
.modal-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 16px;
}
.modal-desc {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Name modal */
.name-modal-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-lg);
    padding: 32px;
    max-width: 480px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 24px 64px rgba(45, 42, 74, 0.12);
}
.nm-header {
    text-align: center;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-soft);
}
.nm-name { font-size: 28px; margin-bottom: 4px; }
.nm-origin {
    font-size: 14px;
    color: var(--accent-primary);
    font-style: italic;
}
.nm-pop {
    display: block;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 8px;
}
.nm-section { margin-bottom: 20px; }
.nm-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 6px;
}
.nm-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-primary);
}
.nm-muted {
    font-size: 13px;
    color: var(--text-secondary);
    margin-top: 4px;
}
.nm-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ========== ARCHETYPES SECTION ========== */
.section {
    padding: 100px 24px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    text-align: center;
    margin: 16px auto 60px;
    max-width: 500px;
}
.arch-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.arch-card {
    background: var(--bg-card);
    border: 1px solid var(--border-soft);
    border-radius: var(--radius-md);
    padding: 32px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}
.arch-card:hover {
    border-color: var(--accent-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(45, 42, 74, 0.08);
}
.arch-card svg {
    width: 56px;
    height: 56px;
    margin-bottom: 16px;
    color: var(--accent-primary);
}
.arch-name {
    font-family: 'Fraunces', serif;
    font-weight: 500;
    font-size: 18px;
    color: var(--text-primary);
    margin: 0;
}

/* ========== AD BLOCKS ========== */
.ad-wrap {
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto 40px;
}
.ad {
    border: 1px dashed var(--border-soft);
    border-radius: var(--radius-md);
    padding: 32px;
    text-align: center;
    position: relative;
}
.ad-tag {
    position: absolute;
    top: 8px;
    left: 12px;
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}
.ad-ph {
    font-size: 14px;
    color: var(--text-muted);
}

/* ========== FOOTER ========== */
.footer {
    background: var(--accent-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 48px 24px;
    margin-top: 40px;
}
.footer .container {
    max-width: 720px;
}
.disclaimer {
    margin-bottom: 24px;
}
.disclaimer-title {
    font-family: 'Fraunces', serif;
    font-size: 18px;
    color: white;
    margin-bottom: 16px;
}
.disclaimer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.disclaimer-list li {
    font-size: 13px;
    line-height: 1.6;
    padding-left: 16px;
    position: relative;
}
.disclaimer-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    background: var(--accent-primary);
    border-radius: 50%;
}
.disclaimer-list strong {
    color: white;
}
.footer-copy {
    font-size: 12px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

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

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .arch-grid { grid-template-columns: repeat(3, 1fr); }
    .header-inner { padding: 0 24px; }
}
@media (max-width: 768px) {
    .arch-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .header-inner { padding: 0 16px; }
    .nav { display: none; }
    .burger { display: flex; }
    .hero { padding: 48px 16px 40px; min-height: auto; }
    .hero-form-card { padding: 24px; }
    h1 { font-size: 32px; }
    .hero-subtitle { font-size: 16px; margin-bottom: 32px; }
    .section { padding: 60px 16px; }
    .info-grid { gap: 8px; }
    .tradition-grid { gap: 8px; }
    .trad-btn { padding: 12px 8px; font-size: 12px; }
    .name-card { padding: 20px; }
    .name-title { font-size: 20px; }
    .name-head { flex-direction: column; gap: 4px; }
    .names-list { gap: 14px; }
    .report-title { font-size: 22px; }
}

/* ========== LOCKED NAMES ========== */
.name-card.locked {
    position: relative;
    opacity: 0.35;
    pointer-events: none;
    filter: blur(4px);
}

.name-card.locked::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 14px;
}

.lock-overlay {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    margin: 4px 0 12px;
    background: linear-gradient(135deg, rgba(124, 111, 219, 0.06), rgba(212, 165, 116, 0.06));
    border: 1px dashed rgba(124, 111, 219, 0.4);
    border-radius: var(--radius);
    text-align: center;
}

.lock-overlay .lock-icon {
    margin-bottom: 8px;
    color: var(--accent-primary);
    opacity: 0.7;
}

.lock-overlay .lock-text {
    font-size: 14px;
    color: var(--muted);
    margin: 0 0 14px;
    line-height: 1.4;
}

/* ========== PAYMENT MODAL ========== */
.pay-modal-card {
    max-width: 380px;
    text-align: center;
}

.pay-modal-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.pay-icon {
    font-size: 40px;
}

.pay-title {
    font-family: Fraunces, Georgia, serif;
    font-weight: 500;
    font-size: 22px;
    color: var(--text);
    margin: 0;
}

.pay-desc {
    font-size: 14px;
    color: var(--muted);
    margin: 0;
    line-height: 1.5;
}

.pay-price {
    padding: 12px 24px;
    background: linear-gradient(135deg, rgba(124, 111, 219, 0.1), rgba(212, 165, 116, 0.1));
    border-radius: var(--radius);
}

.pay-amount {
    font-family: Fraunces, Georgia, serif;
    font-size: 28px;
    font-weight: 500;
    color: var(--accent-primary);
}

.btn-pay {
    width: 100%;
    padding: 14px 24px;
    background: var(--accent-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pay:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}

.pay-note {
    font-size: 12px;
    color: var(--muted);
    margin: 0;
}

.btn-pay-inline {
    padding: 12px 24px;
    background: var(--accent-primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-pay-inline:hover {
    background: var(--accent-dark);
    transform: translateY(-1px);
}
