:root {
    --primary-teal: #387677;
    --primary-terracotta: #D98565;
    --accent-yellow: #F2A52E;
    --bg-cream: #FCF9F6;
    --bg-white: #FFFFFF;
    --text-dark: #2C3E50;
    --text-body: #444444;
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-body);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.text-teal {
    color: var(--primary-teal);
}

.text-yellow {
    color: var(--accent-yellow);
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    padding: 15px 0;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--primary-teal);
}

.logo {
    height: 45px;
}

.nav-btn {
    text-decoration: none;
    background: var(--primary-teal);
    color: white !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(56, 118, 119, 0.2);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-teal) 0%, #1e4546 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    padding: 5px 15px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    color: white;
    line-height: 1.1;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Buttons */
.btn {
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(242, 165, 46, 0.3);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* About Section */
.problem-solution {
    padding: 100px 0;
}

.grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.highlight-card {
    background: var(--bg-cream);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(217, 133, 101, 0.1);
    position: relative;
}

.highlight-card::before {
    content: "💡";
    position: absolute;
    top: -20px;
    left: 40px;
    font-size: 2rem;
    background: white;
    padding: 10px;
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

/* Product Cards */
.products {
    background: var(--bg-cream);
    padding: 100px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    border: 1px solid #eee;
}

.card:hover {
    transform: translateY(-10px);
}

.card-header {
    background: #f8f9fa;
    padding: 15px;
    text-align: center;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: #999;
}

.card.featured {
    border: 2px solid var(--primary-terracotta);
}

.card.featured .card-header {
    background: var(--primary-terracotta);
    color: white;
}

.card-body {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.card-body h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.card-body ul {
    list-style: none;
    margin: 25px 0;
}

.card-body li {
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.btn-card {
    text-decoration: none;
    text-align: center;
    padding: 15px;
    background: #f8f9fa;
    color: var(--text-dark);
    border-radius: 10px;
    font-weight: 700;
    transition: var(--transition);
    margin-top: auto;
}

.btn-featured {
    background: var(--primary-teal);
    color: white;
}

.btn-featured:hover {
    background: #2a5a5b;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: var(--text-dark);
    color: white;
}

.footer-logo {
    height: 40px;
    filter: brightness(0) invert(1);
    margin-bottom: 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-btns {
        flex-direction: column;
    }

    .navbar .container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        gap: 15px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }
}