/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #374151;
    background-color: #ffffff;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: linear-gradient(to right, #059669, #047857);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    background-color: #ffffff;
    border-radius: 9999px;
    padding: 0.5rem 1.5rem;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #047857;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1.25rem;
    border-radius: 0.5rem;
    border: 2px solid #ffffff;
    transition: all 0.3s ease;
}

.nav-link:hover {
    color: #d1fae5;
    border-color: #d1fae5;
}

/* Hero Section */
.hero {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.hero-discount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #047857;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #374151;
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.hero-text {
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.btn-primary {
    display: inline-block;
    background-color: #059669;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #047857;
}

.strikethrough {
    text-decoration: line-through;
    font-weight: 400;
    font-style: italic;
}

.hero-image, .benefits-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 100%;
    max-width: 28rem;
    height: auto;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    object-fit: cover;
}

.image-placeholder {
    width: 100%;
    max-width: 28rem;
    height: 24rem;
    background: linear-gradient(to bottom right, #d1fae5, #f3f4f6);
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 1.125rem;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #d1fae5, #f3f4f6);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: #047857;
    margin-bottom: 3rem;
}

.section-subtitle {
    font-size: 1.5rem;
    text-align: center;
    color: #374151;
    margin-bottom: 3rem;
}

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

.feature-item {
    text-align: left;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-text {
    color: #4b5563;
    line-height: 1.75;
}

.feature-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image {
    width: 100%;
    height: auto;
    max-height: 20rem;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.image-placeholder-center {
    width: 100%;
    height: 20rem;
    background: linear-gradient(to bottom right, #d1fae5, #f3f4f6);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
}

.feature-spacer {
    display: none;
}

/* Ideal For Section */
.ideal-for {
    padding: 4rem 0;
    background-color: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.card {
    background-color: #ecfdf5;
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

.card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.2);
}

.card-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.card-text {
    color: #4b5563;
    line-height: 1.75;
}

/* Benefits Section */
.benefits {
    padding: 4rem 0;
    background-color: #f9fafb;
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.benefit-check {
    color: #059669;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit-text {
    color: #4b5563;
    line-height: 1.75;
}

/* Form Section */
.form-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #d1fae5, #f3f4f6);
}

.form-container {
    max-width: 42rem;
    margin: 0 auto;
    background-color: #ffffff;
    border-radius: 1.5rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
}

.form-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    color: #047857;
    margin-bottom: 2rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    width: 100%;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: none;
    border-bottom: 2px solid #d1d5db;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    border-bottom-color: #059669;
}

.form-submit {
    text-align: center;
}

.btn-submit {
    background-color: #059669;
    color: #ffffff;
    font-weight: 700;
    padding: 1rem 3rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: inherit;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #047857;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #ffffff;
    padding: 3rem 0;
}

.disclaimer {
    text-align: center;
    color: #9ca3af;
    margin-bottom: 2rem;
    line-height: 1.75;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.footer-info {
    text-align: center;
    font-size: 0.875rem;
    color: #d1d5db;
    line-height: 1.75;
}

.footer-links {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-link {
    color: #34d399;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #6ee7b7;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .feature-spacer {
        display: block;
    }

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

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

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

    .footer-info {
        text-align: left;
    }

    .footer-links {
        text-align: right;
    }
}

@media (min-width: 1024px) {
    .cards-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
