* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Cores Old Money baseadas no seu XML */
    --old-money-cream: #0A0F2D;
    --old-money-light-gold: #151A3D;
    --old-money-gold: #C9A96A;
    --old-money-dark: #E8E6DC;
    --old-money-burgundy: #8B4513;
    --old-money-green: #346440;
    --old-money-red: #8E212F;
    --old-money-dark-green: #1E3A28;
    --old-money-bronze: #8C7853;
    
    /* Cores para UI */
    --primary-color: var(--old-money-gold);
    --primary-dark: #B8975A;
    --secondary-color: var(--old-money-bronze);
    --accent-color: var(--old-money-green);
    --text-dark: var(--old-money-dark);
    --text-light: #A8A6A0;
    --background: var(--old-money-cream);
    --background-light: var(--old-money-light-gold);
    --background-dark: #05081F;
    --border-color: var(--old-money-bronze);
    --shadow: 0 4px 6px -1px rgba(5, 8, 31, 0.3);
    --shadow-lg: 0 20px 25px -5px rgba(5, 8, 31, 0.4);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--background);
    background-image: 
        radial-gradient(circle at 15% 50%, rgba(201, 169, 106, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 85% 30%, rgba(52, 100, 64, 0.03) 0%, transparent 50%);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 15, 45, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.app-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
}

.app-icon.small {
    width: 24px;
    height: 24px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.9rem;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--old-money-cream) 0%, var(--old-money-light-gold) 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 106, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(52, 100, 64, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.highlight {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    border: 1px solid transparent;
    font-family: 'Inter', sans-serif;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--old-money-cream);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(201, 169, 106, 0.1);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.hero-stats {
    display: flex;
    gap: 2rem;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.8;
}

/* Phone Mockup com tema Old Money */
.phone-mockup.old-money-theme {
    position: relative;
    width: 300px;
    margin: 0 auto;
}

.phone-screen {
    background: var(--old-money-light-gold);
    border: 2px solid var(--border-color);
    border-radius: 24px;
    padding: 1.5rem;
    box-shadow: 
        var(--shadow-lg),
        inset 0 0 0 1px rgba(201, 169, 106, 0.1);
    color: var(--text-dark);
    min-height: 500px;
}

.app-preview {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.metrics-card {
    background: var(--old-money-cream);
    border-radius: 12px;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.metrics-header {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.metric {
    flex: 1;
    text-align: center;
    padding: 0.75rem;
    background: var(--background-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.metric-label {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.25rem;
}

.metric-value {
    font-size: 0.9rem;
    font-weight: 600;
    display: block;
}

.metric-value.expense {
    color: var(--old-money-burgundy);
}

.metric-value.income {
    color: var(--old-money-green);
}

.daily-limit-card {
    background: var(--background-light);
    border-radius: 8px;
    padding: 1rem;
    border: 1px solid var(--border-color);
}

.limit-info {
    margin-bottom: 1rem;
}

.limit-label {
    font-size: 0.75rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.25rem;
}

.limit-value-container {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.limit-value {
    font-size: 1rem;
    font-weight: 600;
}

.eye-icon {
    font-size: 0.75rem;
    opacity: 0.6;
}

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

.progress-label {
    font-size: 0.7rem;
    opacity: 0.8;
    display: block;
    margin-bottom: 0.5rem;
}

.progress-bar {
    width: 100%;
    height: 6px;
    background: var(--old-money-cream);
    border-radius: 3px;
    overflow: hidden;
    display: flex;
    margin-bottom: 0.25rem;
}

.progress-spent {
    background: var(--old-money-burgundy);
    height: 100%;
}

.progress-remaining {
    background: var(--old-money-green);
    height: 100%;
}

.progress-text {
    font-size: 0.7rem;
    opacity: 0.8;
}

.transactions-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.transaction-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem;
    background: var(--old-money-cream);
    border-radius: 6px;
    border: 1px solid var(--border-color);
}

.transaction-desc {
    font-size: 0.8rem;
}

.transaction-amount {
    font-size: 0.8rem;
    font-weight: 600;
}

.transaction-amount.expense {
    color: var(--old-money-burgundy);
}

.transaction-amount.income {
    color: var(--old-money-green);
}

/* Features Section */
.features {
    padding: 80px 0;
    background: var(--background-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--old-money-cream);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Notification Capture Section */
.notification-capture {
    padding: 80px 0;
    background: var(--background);
}

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

.notification-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.notification-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: var(--text-light);
    line-height: 1.6;
}

.notification-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.notification-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.notification-feature .feature-icon {
    font-size: 1.5rem;
    margin-bottom: 0;
    flex-shrink: 0;
}

.notification-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.notification-feature p {
    color: var(--text-light);
    line-height: 1.5;
}

.flow-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.step-icon {
    background: var(--primary-color);
    color: var(--old-money-cream);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.step-content p {
    color: var(--text-light);
}

/* How It Works */
.how-it-works {
    padding: 80px 0;
    background: var(--background-light);
}

.steps {
    display: grid;
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-color);
    color: var(--old-money-cream);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Playfair Display', serif;
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.step-content p {
    color: var(--text-light);
}

/* Demo Section */
.demo {
    padding: 80px 0;
    background: var(--background);
}

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

.demo-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.demo-features {
    list-style: none;
    margin-top: 1.5rem;
}

.demo-features li {
    padding: 0.5rem 0;
    font-weight: 500;
    color: var(--text-light);
}

.screenshot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.screenshot.old-money-theme {
    background: var(--old-money-light-gold);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: var(--shadow);
}

.app-screen {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.screen-header {
    font-weight: 600;
    text-align: center;
    color: var(--text-dark);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 0.5rem;
}

.notification-badge {
    background: rgba(52, 100, 64, 0.2);
    border: 1px solid var(--old-money-green);
    border-radius: 6px;
    padding: 0.5rem;
    text-align: center;
    font-size: 0.75rem;
    color: var(--old-money-green);
}

.goal-setting {
    text-align: center;
    padding: 1rem 0;
}

.percentage {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0.5rem 0;
    font-family: 'Playfair Display', serif;
}

.savings-progress {
    margin-top: 1rem;
}

.savings-progress .progress-bar {
    background: var(--old-money-cream);
    height: 8px;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

/* Continuação do CSS anterior... */

.savings-progress .progress {
    background: var(--primary-color);
    height: 100%;
}

.savings-progress span {
    font-size: 0.75rem;
    color: var(--text-light);
}

/* Download Section */
.download {
    padding: 80px 0;
    background: var(--background-light);
}

.download-card {
    background: linear-gradient(135deg, var(--old-money-cream), var(--old-money-light-gold));
    color: var(--text-dark);
    padding: 4rem 2rem;
    border-radius: 20px;
    border: 2px solid var(--border-color);
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.download-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.download-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.download-card p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.download-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.store-btn {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-dark);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    border: 1px solid var(--border-color);
    min-width: 200px;
    justify-content: center;
}

.store-btn:hover {
    background: rgba(201, 169, 106, 0.2);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.store-icon {
    font-size: 2rem;
}

.store-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.available {
    font-size: 0.875rem;
    opacity: 0.8;
}

.store-name {
    font-weight: 600;
    font-size: 1.125rem;
}

.download-note p {
    font-size: 1rem;
    opacity: 0.8;
    color: var(--text-light);
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--background);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: all 0.3s;
    position: relative;
}

.faq-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--primary-color);
    border-radius: 12px 12px 0 0;
}

.faq-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.faq-item h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-brand .app-icon.small {
    width: 24px;
    height: 24px;
}

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
}

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

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Notification Capture Specific Styles */
.notification-flow {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow);
}

.flow-step {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1rem;
    background: var(--old-money-cream);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s;
}

.flow-step:hover {
    background: rgba(201, 169, 106, 0.05);
    transform: translateX(5px);
}

.flow-step:last-child {
    margin-bottom: 0;
}

.step-icon {
    background: var(--primary-color);
    color: var(--old-money-cream);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
    font-size: 0.9rem;
}

.step-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-family: 'Playfair Display', serif;
}

.step-content p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Animation Classes */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(201, 169, 106, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-color);
    animation: spin 1s ease-in-out infinite;
}

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

/* Pulse Animation for CTA */
.pulse {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(201, 169, 106, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(201, 169, 106, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(201, 169, 106, 0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .notification-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .demo-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .download-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .store-btn {
        min-width: 250px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .screenshot-grid {
        grid-template-columns: 1fr;
    }
    
    .phone-mockup {
        width: 250px;
    }
    
    .phone-screen {
        min-height: 400px;
        padding: 1rem;
    }
    
    .metrics-header {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        align-self: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .nav {
        padding: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .feature-card {
        padding: 1.5rem;
    }
    
    .download-card {
        padding: 2rem 1rem;
    }
    
    .download-card h2 {
        font-size: 2rem;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .privacy-content {
        padding: 1.5rem;
    }
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    :root {
        --background: #0A0F2D;
        --background-light: #151A3D;
        --text-dark: #E8E6DC;
        --text-light: #A8A6A0;
    }
}

/* Print styles */
@media print {
    .header,
    .footer,
    .hero-buttons,
    .download-buttons {
        display: none;
    }
    
    .hero,
    .features,
    .how-it-works,
    .demo,
    .download,
    .faq {
        padding: 20px 0;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #000000;
        --text-dark: #000000;
        --text-light: #333333;
        --border-color: #000000;
    }
    
    .feature-card,
    .faq-item,
    .download-card {
        border: 2px solid var(--border-color);
    }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .feature-card:hover,
    .btn:hover,
    .store-btn:hover,
    .flow-step:hover {
        transform: none;
    }
}

/* Focus styles for accessibility */
button:focus,
a:focus,
.btn:focus,
.store-btn:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* Selection styles */
::selection {
    background: rgba(201, 169, 106, 0.3);
    color: var(--text-dark);
}

::-moz-selection {
    background: rgba(201, 169, 106, 0.3);
    color: var(--text-dark);
}

.phones-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    width: 280px;
    transform: rotate(5deg);
    transition: transform 0.3s ease;
}

.phone-mockup.dark-theme {
    transform: rotate(-5deg);
}

.phone-mockup:hover {
    transform: rotate(5deg) scale(1.05);
}

.phone-mockup.dark-theme:hover {
    transform: rotate(-5deg) scale(1.05);
}

.phone-screen {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.phone-mockup.dark-theme .phone-screen {
    background: var(--old-money-light-gold);
}

.screenshot {
    width: 100%;
    height: auto;
    border-radius: 16px;
}