:root {
    --gold: #b5985a;
    --dark: #0f172a;
    --text-muted: #64748b;
    --white: #ffffff;
}

body {
    margin: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    background: #fdfdfd;
    color: var(--dark);
    line-height: 1.6;
}

.text-gradient {
    background: linear-gradient(45deg, #b5985a, #e2c275);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    padding: 20px 8%;
    align-items: center;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #f1f5f9;
}

.logo { font-weight: 800; font-size: 1.5rem; }
.logo span { color: var(--gold); }

.nav-links a { text-decoration: none; color: var(--text-muted); margin-left: 25px; font-weight: 600; font-size: 0.9rem; }
.btn-cta { background: var(--dark); color: white !important; padding: 10px 22px; border-radius: 12px; }

/* Hero */
.hero { text-align: center; padding: 60px 20px 40px; }
.badge { background: #f1f5f9; color: var(--gold); padding: 5px 15px; border-radius: 100px; font-size: 0.7rem; font-weight: 800; letter-spacing: 1px; }
h1 { font-size: 3rem; font-weight: 800; margin-top: 15px; }

/* Tabs */
.tab-container { display: flex; justify-content: center; gap: 15px; margin-bottom: 50px; }
.tab-btn {
    padding: 12px 25px; border-radius: 100px; border: 1px solid #e2e8f0;
    background: white; cursor: pointer; font-weight: 700; color: var(--text-muted);
    transition: 0.3s;
}
.tab-btn.active { background: var(--dark); color: white; border-color: var(--dark); }

/* Grid */
.product-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; padding: 0 8% 100px; }

.card {
    background: white; border-radius: 30px; padding: 30px;
    border: 1px solid #f1f5f9; transition: 0.4s; position: relative;
}
.card:hover { transform: translateY(-10px); box-shadow: 0 30px 60px rgba(15,23,42,0.08); }

.card-icon { font-size: 2.5rem; margin-bottom: 20px; }
.card h3 { font-size: 1.4rem; margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 20px; }

.feature-list { list-style: none; padding: 0; margin-bottom: 30px; }
.feature-list li { font-size: 0.85rem; margin-bottom: 10px; display: flex; align-items: center; color: var(--dark); font-weight: 600; }
.feature-list li::before { content: '→'; color: var(--gold); margin-right: 10px; }

.btn-card {
    width: 100%; padding: 15px; border-radius: 15px; border: none;
    background: #f8fafc; color: var(--dark); font-weight: 800; cursor: pointer; transition: 0.3s;
}
.btn-card:hover { background: var(--gold); color: white; }
