/* 
   rentals.arcyverion.com – Premium Landing Page Stylesheet
   Design System: Apple, Linear, Stripe inspired minimal premium aesthetic
*/

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

:root {
    /* Colors */
    --bg-dark: #090d16;
    --bg-dark-card: #151b2c;
    --bg-dark-card-hover: #1e263d;
    --bg-light: #f8fafc;
    --bg-light-card: #ffffff;
    --bg-light-card-hover: #f1f5f9;
    
    --primary: #f59e0b; /* Golden Amber */
    --primary-hover: #d97706;
    --primary-glow: rgba(245, 158, 11, 0.15);
    
    --text-light: #f8fafc;
    --text-light-muted: #94a3b8;
    --text-dark: #0f172a;
    --text-dark-muted: #64748b;
    
    --border-dark: rgba(255, 255, 255, 0.08);
    --border-light: rgba(15, 23, 42, 0.08);
    
    /* Typography & Spacing */
    --font-sans: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --max-width: 1200px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-fast: all 0.2s ease;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-dark);
    color: var(--text-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography elements */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

p {
    font-weight: 400;
    letter-spacing: -0.01em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Themes */
.dark-section {
    background-color: var(--bg-dark);
    color: var(--text-light);
    --text-main: var(--text-light);
    --text-sub: var(--text-light-muted);
    --card-bg: var(--bg-dark-card);
    --card-bg-hover: var(--bg-dark-card-hover);
    --border: var(--border-dark);
}

.light-section {
    background-color: var(--bg-light);
    color: var(--text-dark);
    --text-main: var(--text-dark);
    --text-sub: var(--text-dark-muted);
    --card-bg: var(--bg-light-card);
    --card-bg-hover: var(--bg-light-card-hover);
    --border: var(--border-light);
}

/* Grid & Layout */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    width: 100%;
}

.section-padding {
    padding: 8rem 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: 5rem 0;
    }
    .container {
        padding: 0 1.5rem;
    }
}

/* Common Components */
.badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 99px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.dark-section .badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--primary);
}

.light-section .badge {
    background: rgba(15, 23, 42, 0.05);
    border: 1px solid rgba(15, 23, 42, 0.08);
    color: var(--primary-hover);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 5rem auto;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1.25rem;
}

.section-desc {
    font-size: 1.25rem;
    color: var(--text-sub);
    font-weight: 400;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2.25rem;
    }
    .section-desc {
        font-size: 1.1rem;
    }
}

/* Buttons */
.btn-group {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    transition: var(--transition-smooth);
    cursor: pointer;
    border: none;
    outline: none;
}

.btn-primary {
    background-color: var(--primary);
    color: #000000;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(245, 158, 11, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-main);
    border: 1px solid var(--border);
}

.btn-secondary:hover {
    background-color: var(--card-bg-hover);
    transform: translateY(-2px);
    border-color: var(--text-sub);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    background-color: rgba(9, 13, 22, 0.7);
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
}

.logo {
    font-size: 1.35rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    letter-spacing: -0.02em;
}

.logo span {
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding-top: 10rem;
    padding-bottom: 6rem;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 400px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, rgba(9, 13, 22, 0) 70%);
    z-index: 0;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 1.5rem;
    background: linear-gradient(180deg, #ffffff 0%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: var(--text-light-muted);
    font-weight: 400;
    max-width: 650px;
    margin-bottom: 3rem;
}

.hero-btn-group {
    justify-content: center;
    margin-bottom: 5rem;
}

.hero-visual {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    perspective: 1000px;
}

.mockup-container {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
    transform: rotateX(8deg) translateY(0);
    transition: var(--transition-smooth);
}

.mockup-container:hover {
    transform: rotateX(3deg) translateY(-10px);
    box-shadow: 0 40px 80px rgba(245, 158, 11, 0.1);
}

.mockup-image {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    width: 100%;
}

@media (max-width: 768px) {
    .hero {
        padding-top: 8rem;
        padding-bottom: 4rem;
    }
    .hero-title {
        font-size: 2.75rem;
    }
    .hero-subtitle {
        font-size: 1.15rem;
        margin-bottom: 2rem;
    }
    .hero-btn-group {
        flex-direction: column;
        width: 100%;
        margin-bottom: 3rem;
    }
    .hero-btn-group .btn {
        width: 100%;
    }
}

/* Trust Bar */
.trust-bar {
    padding: 2.5rem 0;
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
    background: rgba(255, 255, 255, 0.01);
}

.trust-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
    color: var(--text-light-muted);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.trust-item:hover {
    color: var(--text-light);
}

.trust-item svg {
    color: var(--primary);
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .trust-items {
        justify-content: center;
        gap: 1.5rem;
    }
    .trust-item {
        font-size: 0.9rem;
    }
}

/* Live Demo Showcase */
.demo-showcase {
    overflow: hidden;
}

.demo-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
}

.demo-text-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.demo-text-col h2 {
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
}

.demo-text-col p {
    font-size: 1.15rem;
    color: var(--text-sub);
    margin-bottom: 2.5rem;
}

.demo-visual-col {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.demo-visual-col:hover {
    transform: scale(1.02);
}

@media (max-width: 991px) {
    .demo-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .demo-text-col h2 {
        font-size: 2.25rem;
    }
}

/* Imagine This With Your Brand */
.brand-transformation {
    text-align: center;
    background: radial-gradient(ellipse at bottom, rgba(245, 158, 11, 0.05) 0%, rgba(9, 13, 22, 0) 60%);
}

.transformation-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin: 4rem auto;
    max-width: 1000px;
    flex-wrap: wrap;
}

.flow-step {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 1.5rem 2rem;
    min-width: 160px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.flow-step:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.08);
}

.flow-step-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.flow-step-title {
    font-weight: 600;
    font-size: 1.1rem;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--primary);
    animation: pulseArrow 2s infinite ease-in-out;
}

@keyframes pulseArrow {
    0%, 100% { transform: translateX(0); opacity: 0.6; }
    50% { transform: translateX(5px); opacity: 1; }
}

@media (max-width: 768px) {
    .transformation-flow {
        flex-direction: column;
        gap: 1rem;
    }
    .flow-arrow {
        transform: rotate(90deg);
        animation: pulseArrowV 2s infinite ease-in-out;
    }
    .flow-step {
        width: 100%;
        max-width: 320px;
    }
}

@keyframes pulseArrowV {
    0%, 100% { transform: rotate(90deg) translateX(0); opacity: 0.6; }
    50% { transform: rotate(90deg) translateX(5px); opacity: 1; }
}

/* What's Included (Benefits) */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.benefit-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
    background-color: var(--card-bg-hover);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.benefit-icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: var(--transition-fast);
}

.dark-section .benefit-icon-wrapper {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    color: var(--primary);
}

.light-section .benefit-icon-wrapper {
    background-color: rgba(15, 23, 42, 0.03);
    border: 1px solid rgba(15, 23, 42, 0.06);
    color: var(--primary-hover);
}

.benefit-card:hover .benefit-icon-wrapper {
    background-color: var(--primary);
    color: #000;
}

.benefit-card h3 {
    font-size: 1.35rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-sub);
    font-size: 1rem;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    .benefit-card {
        padding: 2rem;
    }
}

/* Gallery Section */
.gallery-section {
    overflow: hidden;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

.gallery-item {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition-smooth);
    background-color: var(--card-bg);
}

.gallery-item:hover {
    transform: scale(1.015) translateY(-5px);
    box-shadow: 0 30px 60px rgba(245, 158, 11, 0.06);
}

.gallery-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.gallery-item-info {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--border);
}

.gallery-item-title {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.gallery-item-desc {
    font-size: 0.95rem;
    color: var(--text-sub);
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* How It Works (Timeline) */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 4rem auto 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 2rem;
    width: 2px;
    background-color: var(--border);
}

.timeline-item {
    position: relative;
    padding-left: 5rem;
    margin-bottom: 3.5rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: 1rem;
    top: 0.25rem;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background-color: var(--bg-dark-card);
    border: 2px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--primary);
    z-index: 2;
    transition: var(--transition-smooth);
}

.light-section .timeline-marker {
    background-color: var(--bg-light-card);
}

.timeline-item:hover .timeline-marker {
    background-color: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.timeline-content {
    background-color: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 2rem;
    transition: var(--transition-smooth);
}

.timeline-content:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.timeline-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.timeline-text {
    color: var(--text-sub);
    font-size: 1rem;
}

@media (max-width: 768px) {
    .timeline::before {
        left: 1rem;
    }
    .timeline-marker {
        left: 0;
    }
    .timeline-item {
        padding-left: 3rem;
    }
    .timeline-content {
        padding: 1.5rem;
    }
}

/* Launch Offer / Pricing */
.pricing-section {
    position: relative;
}

.pricing-card-wrapper {
    max-width: 650px;
    margin: 0 auto;
    position: relative;
}

.pricing-card-wrapper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--primary) 0%, rgba(9, 13, 22, 0) 100%);
    border-radius: 26px;
    z-index: 0;
    opacity: 0.5;
}

.pricing-card {
    position: relative;
    z-index: 1;
    background-color: var(--bg-dark-card);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 24px;
    padding: 4rem 3rem;
    text-align: center;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.pricing-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background-color: rgba(245, 158, 11, 0.1);
    color: var(--primary);
    border: 1px solid rgba(245, 158, 11, 0.2);
    border-radius: 99px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 2rem;
}

.pricing-price-box {
    margin-bottom: 2.5rem;
}

.price-actual {
    font-size: 4.5rem;
    font-weight: 800;
    color: var(--text-light);
    line-height: 1;
}

.price-desc {
    font-size: 1rem;
    color: var(--text-light-muted);
    margin-top: 0.5rem;
}

.price-typical {
    font-size: 1.1rem;
    color: var(--text-light-muted);
    margin-bottom: 1rem;
    display: block;
    font-weight: 500;
}

.price-label {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 0.5rem;
}

.pricing-features-list {
    list-style: none;
    max-width: 400px;
    margin: 0 auto 3rem auto;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-light);
}

.pricing-features-list li svg {
    color: var(--primary);
    flex-shrink: 0;
}

.pricing-card .btn {
    width: 100%;
    padding: 1.1rem 2rem;
    font-size: 1.1rem;
}

.pricing-note {
    font-size: 0.9rem;
    color: var(--text-light-muted);
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 3rem 1.5rem;
    }
    .price-actual {
        font-size: 3.5rem;
    }
}

/* FAQ Section */
.faq-section {
    background-color: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.faq-item {
    background-color: var(--bg-light-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.faq-question {
    width: 100%;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    outline: none;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.faq-answer-inner {
    padding: 0 2rem 1.5rem 2rem;
    color: var(--text-dark-muted);
    font-size: 1.05rem;
    line-height: 1.6;
}

.faq-icon {
    font-size: 1.25rem;
    color: var(--text-dark-muted);
    transition: transform 0.3s ease;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-item.open {
    border-color: var(--primary);
}

@media (max-width: 768px) {
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 1.05rem;
    }
    .faq-answer-inner {
        padding: 0 1.5rem 1.25rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* Final CTA Section */
.final-cta {
    position: relative;
    padding: 12rem 0;
    text-align: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
}

.final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(9, 13, 22, 0.9) 0%, rgba(9, 13, 22, 0.4) 50%, rgba(9, 13, 22, 0.9) 100%);
    z-index: 1;
}

.final-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.final-cta-title {
    font-size: 3.75rem;
    margin-bottom: 2rem;
    line-height: 1.1;
    color: #ffffff;
}

.final-cta .btn {
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .final-cta {
        padding: 8rem 0;
    }
    .final-cta-title {
        font-size: 2.25rem;
    }
    .final-cta .btn {
        width: 100%;
    }
}

/* Footer */
.footer {
    padding: 5rem 0 3rem 0;
    border-top: 1px solid var(--border-dark);
    background-color: var(--bg-dark);
    color: var(--text-light-muted);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-info-col p {
    margin-top: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-links-col h4 {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-dark);
    padding-top: 2rem;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        margin-bottom: 3rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }
}

/* Scroll reveal animations */
.reveal {
    position: relative;
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Stripe simulation modal */
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 1000;
    background-color: rgba(9, 13, 22, 0.8);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background-color: #1e293b;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    width: 100%;
    max-width: 450px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.active .modal-card {
    transform: scale(1);
}

.modal-spinner {
    width: 3.5rem;
    height: 3.5rem;
    border: 4px solid rgba(245, 158, 11, 0.1);
    border-top-color: var(--primary);
    border-radius: 50%;
    margin: 0 auto 2rem auto;
    animation: spin 1s infinite linear;
}

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

.modal-title {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #ffffff;
}

.modal-desc {
    color: var(--text-light-muted);
    font-size: 1rem;
}
