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

body {
    background-color: #fff;
    color: #1d2327;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

a {
    color: #1DAB56;
    text-decoration: none;
}

a:hover {
    color: #178f48;
    text-decoration: underline;
}

/* Header */
header {
    padding: 2rem 0;
}

nav .brand {
    display: block;
    line-height: 0;
}

nav .brand:hover {
    text-decoration: none;
}

nav .logo {
    height: 48px;
    width: auto;
}

/* Hero */
.hero {
    padding: 6rem 0 5rem;
    border-bottom: 1px solid #e5e5e5;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: #1d2327;
    max-width: 800px;
    margin-bottom: 2rem;
}

.hero-intro {
    font-size: 1.25rem;
    color: #50575e;
    max-width: 640px;
    line-height: 1.6;
}

/* Sections */
section {
    padding: 5rem 0;
    border-bottom: 1px solid #e5e5e5;
}

section:last-of-type {
    border-bottom: none;
}

h2 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #50575e;
    margin-bottom: 3rem;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.service-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    padding-left: 1rem;
    border-left: 3px solid #1DAB56;
}

.service-item p {
    color: #50575e;
    line-height: 1.6;
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.product-card {
    padding: 2rem;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
}

.product-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1d2327;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.product-tagline {
    color: #1DAB56;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-description {
    color: #50575e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.product-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.product-features li {
    padding-left: 1.25rem;
    position: relative;
    color: #50575e;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.product-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1DAB56;
    font-weight: 600;
}

.product-link {
    font-weight: 500;
}

.product-status {
    font-size: 0.875rem;
    color: #86868b;
    font-weight: 500;
}

/* Text Sections */
.text-block {
    max-width: 640px;
}

.text-block p {
    font-size: 1.25rem;
    color: #50575e;
    line-height: 1.6;
}

/* Contact Section */
.contact-section p {
    font-size: 1.25rem;
    color: #50575e;
    margin-bottom: 1.5rem;
}

.contact-section .email-link {
    font-size: 1.25rem;
    font-weight: 500;
}

.contact-section .location {
    margin-top: 2rem;
    font-size: 1rem;
    color: #86868b;
}

/* Footer */
footer {
    padding: 3rem 0;
    color: #86868b;
    font-size: 0.875rem;
}

footer a {
    color: #86868b;
}

footer a:hover {
    color: #1DAB56;
}

/* Legal Pages */
.legal-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.legal-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 1rem;
}

.legal-content .intro {
    font-size: 1.25rem;
    color: #50575e;
    margin-bottom: 3rem;
    max-width: 640px;
}

.legal-content h2 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
}

.legal-content p {
    color: #50575e;
    margin-bottom: 1rem;
    max-width: 640px;
}

.legal-content ul {
    list-style: none;
    margin-bottom: 2rem;
    max-width: 640px;
}

.legal-content ul li {
    padding-left: 1.5rem;
    position: relative;
    color: #50575e;
    margin-bottom: 0.75rem;
}

.legal-content ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 5px;
    height: 5px;
    background-color: #1DAB56;
    border-radius: 50%;
}

.legal-content ol {
    list-style: none;
    counter-reset: terms;
    max-width: 700px;
}

.legal-content ol li {
    counter-increment: terms;
    margin-bottom: 2.5rem;
    padding-left: 0;
}

.legal-content ol li strong {
    display: block;
    font-size: 1.125rem;
    color: #1d2327;
    margin-bottom: 0.5rem;
}

.legal-content ol li p {
    margin: 0;
}

.legal-contact {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
}

/* Responsive */
@media (max-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 600px) {
    body {
        font-size: 16px;
    }

    .container {
        padding: 0 1.25rem;
    }

    .hero {
        padding: 4rem 0 3rem;
    }

    .hero h1 {
        font-size: 2.25rem;
    }

    .hero-intro {
        font-size: 1.125rem;
    }

    section {
        padding: 3rem 0;
    }

    h2 {
        margin-bottom: 2rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-item h3 {
        font-size: 1.25rem;
    }

    .text-block p,
    .contact-section p {
        font-size: 1.125rem;
    }

    .legal-content h1 {
        font-size: 1.75rem;
    }
}
