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

:root {
    /* Distinctive palette - deep teal + warm coral */
    --primary: #0d4f4f;
    --primary-dark: #083838;
    --primary-light: #1a7070;
    --accent: #e85d4c;
    --accent-light: #f07d6f;
    --accent-dark: #c94a3a;
    --secondary: #f4a261;
    --text-dark: #1a2e2e;
    --text-medium: #3d5a5a;
    --text-light: #5a7a7a;
    --bg-white: #ffffff;
    --bg-light: #f5f9f9;
    --bg-subtle: #ebf2f2;
    --border: #c8d8d8;
    --success: #2d8a6e;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: var(--bg-white);
}

/* Header */
header {
    background: var(--bg-white);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: -0.5px;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

nav ul a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s;
}

nav ul a:hover {
    color: var(--primary);
}

/* Main content */
main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

/* Hero Section */
#hero {
    text-align: center;
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
    position: relative;
    overflow: hidden;
}

#hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='m36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

#hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    letter-spacing: -1px;
    position: relative;
}

#hero p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto 2rem;
    position: relative;
}

.hero-badge {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
}

.hero-cta {
    display: inline-block;
    background: var(--accent);
    color: var(--primary-dark);
    padding: 1rem 2.5rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    position: relative;
}

.hero-cta:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 165, 75, 0.3);
}

/* Section headers */
h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

/* About Section */
#about {
    background: var(--bg-light);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-content {
    max-width: 900px;
}

.about-content p {
    margin-bottom: 1.5rem;
    color: var(--text-medium);
    font-size: 1.1rem;
}

.about-content p:first-of-type {
    font-size: 1.25rem;
    color: var(--text-dark);
    line-height: 1.8;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--border);
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    color: var(--text-light);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

/* Values Section */
#values {
    padding-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}

.value-card:hover {
    border-color: var(--accent);
    box-shadow: 0 8px 24px rgba(13, 79, 79, 0.1);
}

.value-card h3 {
    font-size: 1.2rem;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Products Section */
#products {
    background: var(--bg-subtle);
    margin: 0 -2rem;
    padding-left: 2rem;
    padding-right: 2rem;
}

.product-card {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 16px;
    max-width: 800px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 16px rgba(30, 58, 95, 0.06);
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 100%);
}

.product-badge {
    display: inline-block;
    background: var(--bg-subtle);
    color: var(--primary);
    padding: 0.35rem 0.9rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.product-card h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary);
    font-weight: 700;
}

.product-card > p {
    margin-bottom: 2rem;
    color: var(--text-medium);
    font-size: 1.1rem;
    line-height: 1.7;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-medium);
    font-size: 0.95rem;
}

.product-features li::before {
    content: '✓';
    color: var(--success);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Contact Section */
#contact {
    padding-bottom: 4rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--primary);
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-card p {
    color: var(--text-medium);
    line-height: 1.8;
}

.contact-card a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.contact-card a:hover {
    color: var(--accent-dark);
}

/* Footer */
footer {
    background: var(--primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 3rem 2rem;
    margin-top: 0;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #fff;
}

footer p {
    font-size: 0.9rem;
}

footer nav {
    display: flex;
    gap: 2rem;
}

footer nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}

footer nav a:hover {
    color: var(--accent);
}

/* Legal pages */
.legal {
    max-width: 800px;
    padding-top: 2rem;
}

.legal h1 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.legal .updated {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    font-size: 0.95rem;
}

.legal h2 {
    font-size: 1.4rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: var(--primary);
}

.legal p {
    margin-bottom: 1.25rem;
    color: var(--text-medium);
}

.legal ul {
    margin-left: 1.5rem;
    margin-bottom: 1.25rem;
}

.legal li {
    margin-bottom: 0.5rem;
    color: var(--text-medium);
}

.legal a {
    color: var(--primary);
}

.legal a:hover {
    color: var(--accent-dark);
}

/* Responsive */
@media (max-width: 768px) {
    #hero h1 {
        font-size: 2rem;
    }

    #hero p {
        font-size: 1.1rem;
    }

    nav ul {
        gap: 1.25rem;
    }

    nav ul a {
        font-size: 0.9rem;
    }

    section {
        padding: 3rem 0;
    }

    h2 {
        font-size: 1.6rem;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .product-card {
        padding: 2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    footer nav {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    header {
        padding: 1rem;
    }

    main {
        padding: 0 1rem;
    }

    .logo {
        font-size: 1.3rem;
    }

    #hero {
        padding: 4rem 1rem;
        margin: 0 -1rem;
    }

    #about, #products {
        margin: 0 -1rem;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }
}
