:root {
    --bg-main: #FDFCFB;
    --text-main: #2D1B14;
    --text-muted: #6B5E59;
    --accent-primary: #8C6A5E;
    --accent-gradient: linear-gradient(135deg, #8C6A5E 0%, #B09288 100%);
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(140, 106, 94, 0.15);
    --success: #6A7F66;
}

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

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

.app-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Navigation */
nav {
    display: flex;
    justify-content: space-between;
    padding: 2rem 10%;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(253, 252, 251, 0.8);
    backdrop-filter: blur(10px);
    z-index: 100;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    background: var(--accent-gradient);
    padding: 0.6rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
}

.logo h2 {
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    color: var(--text-main);
}

.btn {
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--accent-primary);
    color: #FDFCFB;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(140, 106, 94, 0.2);
    filter: brightness(1.1);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 50px;
}

/* Sections */
main {
    flex: 1;
}

section {
    padding: 6rem 10%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero {
    padding-top: 4rem;
    padding-bottom: 8rem;
}

.badge {
    padding: 0.6rem 1.4rem;
    background: rgba(140, 106, 94, 0.08);
    color: var(--accent-primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(140, 106, 94, 0.15);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    width: 100%;
    max-width: 1200px;
    margin-top: 4rem;
}

.glass-panel {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 3rem 2rem;
    border-radius: 24px;
    text-align: left;
    transition: transform 0.3s ease;
}

.glass-panel:hover {
    transform: translateY(-5px);
}

.feature-icon {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(140, 106, 94, 0.05);
    border-radius: 16px;
    width: fit-content;
}

.feature-icon.primary { color: var(--accent-primary); }
.feature-icon.secondary { color: #8F7666; }
.feature-icon.success { color: var(--success); }

.glass-panel h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.glass-panel p {
    color: var(--text-muted);
    font-size: 1rem;
}

/* New Section Styles */
.section-tag {
    color: var(--accent-primary);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-size: 0.8rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    max-width: 800px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin-bottom: 3rem;
}

.split-section {
    display: flex;
    align-items: center;
    gap: 4rem;
    text-align: left;
    padding: 8rem 10%;
    background: rgba(140, 106, 94, 0.03);
}

.split-content {
    flex: 1;
}

.comparison-card {
    flex: 1;
    background: var(--text-main);
    color: #FDFCFB;
    padding: 3rem;
    border-radius: 32px;
    box-shadow: 0 40px 80px rgba(45, 27, 20, 0.2);
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.comparison-item i {
    color: var(--accent-primary);
}

/* Footer */
footer {
    padding: 4rem 10%;
    text-align: center;
    color: var(--text-muted);
    border-top: 1px solid var(--glass-border);
}

/* Animations */
.animate-slide-up {
    animation: slideUp 0.8s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media (max-width: 968px) {
    .split-section {
        flex-direction: column;
        text-align: center;
    }
    nav {
        padding: 1.5rem 5%;
    }
}
