:root {
    --primary: #d97706;
    --primary-foreground: #ffffff;
    --secondary: #fef3c7;
    --secondary-foreground: #92400e;
    --background: #FDFBF7;
    --stone-900: #1c1917;
    --stone-800: #292524;
    --stone-600: #57534e;
    --stone-500: #78716c;
    --stone-400: #a8a29e;
    --stone-200: #e7e5e4;
    --stone-100: #f5f5f4;
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--stone-800);
    line-height: 1.5;
}

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

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

h1, h2, h3, .footer-title {
    font-family: 'Playfair Display', serif;
}

.navbar {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--stone-100);
    height: 64px;
    display: flex;
    align-items: center;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: bold;
    font-size: 1.25rem;
}

.logo-circle {
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.btn {
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background-color: var(--primary);
    color: white;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background-color: #b45309;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--stone-200);
    color: var(--stone-600);
}

.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-xl { padding: 1.25rem 2.5rem; font-size: 1.25rem; width: 100%; max-width: 400px; }

.hero {
    padding-top: 160px;
    padding-bottom: 80px;
    overflow: hidden;
}

.hero-container {
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .hero-container { flex-direction: row; text-align: left; }
    .hero-content { flex: 1; }
    .hero-image { flex: 1; }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--secondary-foreground);
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.875rem;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 24px;
}

.highlight {
    color: var(--primary);
    font-style: italic;
    position: relative;
}

.hero p {
    font-size: 1.125rem;
    color: var(--stone-600);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 1024px) {
    .hero-actions { justify-content: flex-start; }
}

.image-wrapper {
    position: relative;
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid white;
    transform: rotate(2deg);
}

.image-wrapper img { width: 100%; height: auto; display: block; }

.floating-badge {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(255, 255, 255, 0.95);
    padding: 16px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.icon-check {
    width: 20px;
    height: 20px;
    background: #16a34a;
    border-radius: 50%;
}

.how-it-works { padding: 96px 0; background: white; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 16px; }

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

.step { text-align: center; }
.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 24px;
}

.icon-blue { background: #eff6ff; }
.icon-orange { background: #fff7ed; }
.icon-green { background: #f0fdf4; }

.quote-section {
    padding: 96px 0;
    background: var(--stone-900);
    color: white;
    position: relative;
}

.quote-section h2 { font-size: 2.5rem; margin-bottom: 32px; }
.handwriting {
    font-family: 'Architects Daughter', cursive;
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 48px;
}

.benefit-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    text-align: left;
}

.benefit-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
}

.pricing { padding: 96px 0; }
.pricing-content { display: flex; justify-content: center; }
.pricing-text { max-width: 600px; text-align: center; }

.pricing-list { list-style: none; margin: 24px 0; text-align: left; display: inline-block; }
.pricing-list li { margin-bottom: 8px; }

.price-box {
    background: white;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--stone-200);
    margin-bottom: 32px;
}

.price-row { display: flex; align-items: baseline; justify-content: center; gap: 12px; }
.current-price { font-size: 2.5rem; font-weight: bold; }
.old-price { text-decoration: line-through; color: var(--stone-400); }

footer { padding: 48px 0; background: var(--stone-900); color: var(--stone-400); text-align: center; }
footer hr { border: none; border-top: 1px solid var(--stone-800); margin: 32px 0; }

/* Notifications */
.notification {
    position: fixed;
    top: 80px;
    right: 20px;
    background: white;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    z-index: 2000;
    display: flex;
    align-items: center;
    gap: 16px;
    animation: slideIn 0.5s ease-out;
}

@keyframes slideIn { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }
