:root {
    --brand-bg: #FCF9F8;
    /* Off-white background */
    --brand-text: #171717;
    /* Dark Grey/Black */
    --brand-accent: #C68F79;
    /* Copper/Rose */
    --brand-white: #FFFFFF;
    --brand-font: 'Montserrat', sans-serif;
    --input-border: #E0E0E0;
    --border-radius: 50px;
    /* Pill shape for buttons */
    --card-radius: 12px;
}

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

body {
    font-family: var(--brand-font);
    background-color: var(--brand-bg);
    color: var(--brand-text);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.site-header {
    background-color: var(--brand-bg);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.logo-link {
    display: inline-block;
}

.logo-img {
    width: 153px;
    display: block;
}

/* Hero Section */
.hero-section {
    padding: 60px 0;
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.hero-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

.hero-text h1 {
    font-size: 2.8rem;
    line-height: 1.25;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--brand-text);
}

.hero-text .subtitle {
    font-size: 1rem;
    color: rgba(23, 23, 23, 0.65);
    margin-bottom: 35px;
    max-width: 520px;
    line-height: 1.65;
}

.features-list {
    list-style: none;
}

.features-list li {
    margin-bottom: 14px;
    font-weight: 400;
    font-size: 0.9rem;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}

.features-list li span {
    color: var(--brand-accent);
    font-weight: bold;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

.mobile-product-image {
    display: none;
}

.mobile-product-image img {
    max-width: 100px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

/* Form */
.form-wrapper {
    flex: 1;
    min-width: 320px;
    max-width: 450px;
    background: var(--brand-white);
    padding: 40px;
    border-radius: var(--card-radius);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-product-image {
    text-align: center;
    margin-bottom: 25px;
    margin-top: -10px;
}

.form-product-image img {
    max-width: 100px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
}

.lead-form h2 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    text-align: center;
}

.form-desc {
    text-align: center;
    color: rgba(23, 23, 23, 0.6);
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--input-border);
    border-radius: 8px;
    font-family: var(--brand-font);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--brand-accent);
}

.form-group input.invalid {
    border-color: #ef4444;
    background-color: rgba(239, 68, 68, 0.05);
}

.error-message {
    color: #ef4444;
    font-size: 0.8rem;
    margin-top: 6px;
    font-weight: 500;
}

.submit-btn {
    width: 100%;
    background-color: var(--brand-accent);
    color: var(--brand-white);
    padding: 16px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.disclaimer {
    margin-top: 20px;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 1.4;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 0;
    color: rgba(0, 0, 0, 0.4);
    font-size: 0.9rem;
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        padding: 35px 0;
    }

    .hero-text h1 {
        font-size: 1.8rem;
        text-align: center;
    }

    .hero-text .subtitle {
        font-size: 0.95rem;
        text-align: center;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

    .features-list li {
        font-size: 0.85rem;
        margin-bottom: 12px;
    }

    .hero-container {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: auto auto auto auto auto;
        gap: 0;
    }

    .hero-text {
        display: contents;
    }

    .mobile-product-image {
        display: block;
        grid-row: 1;
        text-align: center;
        margin-bottom: 25px;
    }

    .hero-text h1 {
        grid-row: 2;
    }

    .hero-text .subtitle {
        grid-row: 3;
        margin-bottom: 30px;
    }

    .form-wrapper {
        width: 100%;
        max-width: 100%;
        grid-row: 4;
        margin-bottom: 40px;
    }

    .hero-text .features-list {
        grid-row: 5;
    }

    .form-product-image {
        display: none;
    }
}