:root {
    --bg-color: #FEF3E2;
    --surface-color: rgba(255, 255, 255, 0.5);
    --surface-border: rgba(96, 102, 118, 0.15);
    --text-main: #2C341D;
    --text-muted: #606676;
    --accent-primary: #708871;
    --accent-secondary: #BEC6A0;
    --gradient-primary: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    line-height: 1.2;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

/* Background Effects */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(190, 198, 160, 0.4) 0%, rgba(254, 243, 226, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}
.glow-1 { top: -200px; left: -200px; }
.glow-2 { top: 40%; right: -300px; background: radial-gradient(circle, rgba(112, 136, 113, 0.2) 0%, rgba(254, 243, 226, 0) 70%); }

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(254, 243, 226, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--surface-border);
    z-index: 100;
    padding: 16px 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 800;
    letter-spacing: -1px;
}
.logo span {
    color: var(--accent-primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-muted);
}
.nav-links a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: 99px;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(112, 136, 113, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(112, 136, 113, 0.4);
}

.btn-primary-outline {
    padding: 10px 20px;
    border: 1px solid var(--surface-border);
    border-radius: 99px;
    color: var(--text-main) !important;
}
.btn-primary-outline:hover {
    background: rgba(112, 136, 113, 0.05);
    border-color: var(--accent-primary);
}

.btn-demo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--surface-border);
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    backdrop-filter: blur(10px);
    color: var(--text-main);
}
.btn-demo:hover {
    background: rgba(255, 255, 255, 0.8);
    border-color: var(--accent-primary);
    transform: translateY(-2px);
}
.btn-demo-icon {
    font-size: 20px;
}

.btn-text {
    font-weight: 500;
    color: var(--text-muted);
}
.btn-text:hover {
    color: var(--accent-primary);
}

/* Hero Section */
.hero {
    padding: 160px 0 80px;
    min-height: 90vh;
    display: flex;
    align-items: center;
}
.hero-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(112, 136, 113, 0.1);
    color: var(--accent-primary);
    border-radius: 99px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid rgba(112, 136, 113, 0.2);
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    letter-spacing: -2px;
    margin-bottom: 24px;
}
.hero h1 span {
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 48px;
    max-width: 600px;
    margin-inline: auto;
}

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

/* Sections */
.section {
    padding: 100px 0;
}
.section-header {
    text-align: center;
    margin-bottom: 64px;
}
.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
}
.section-header p {
    font-size: 18px;
    color: var(--text-muted);
}

/* Cards */
.glass-card {
    background: var(--surface-color);
    border: 1px solid var(--surface-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: transform 0.3s ease;
}
.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(96, 102, 118, 0.3);
}

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

.card-icon {
    font-size: 40px;
    margin-bottom: 24px;
}
.glass-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}
.glass-card p {
    color: var(--text-muted);
}

/* Pricing */
.pricing-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.pricing-card {
    position: relative;
    display: flex;
    flex-direction: column;
}
.pricing-card.featured {
    border-color: var(--accent-primary);
    background: rgba(112, 136, 113, 0.05);
}
.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 99px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.price {
    font-family: 'Outfit', sans-serif;
    font-size: 48px;
    font-weight: 800;
    margin: 24px 0;
    color: var(--accent-primary);
}
.price span {
    font-size: 20px;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-card ul {
    list-style: none;
    margin-top: 24px;
    flex-grow: 1;
}
.pricing-card ul li {
    padding: 12px 0;
    border-bottom: 1px solid var(--surface-border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 12px;
}
.pricing-card ul li::before {
    content: "✓";
    color: var(--accent-secondary);
    font-weight: bold;
}

/* Contact Box */
.contact-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}
.form-group {
    margin-bottom: 24px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 16px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid var(--surface-border);
    border-radius: 12px;
    color: var(--text-main);
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    outline: none;
    transition: all 0.3s;
}
.form-group input:focus, .form-group textarea:focus {
    border-color: var(--accent-primary);
    background: rgba(255, 255, 255, 0.8);
}
.contact-form .btn-primary {
    width: 100%;
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--surface-border);
    margin-top: 80px;
}
.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 14px;
}
.footer-links {
    display: flex;
    gap: 24px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 { font-size: 40px; }
    .hero p { font-size: 18px; }
    .nav-links { display: none; }
    .contact-box { grid-template-columns: 1fr; gap: 40px; }
    .footer-content { flex-direction: column; gap: 16px; text-align: center; }
}
