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

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background-color: #ffffff;
}

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

/* Typography */
h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c5282;
}

h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #2c5282;
}

h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c5282;
}

p {
    margin-bottom: 1rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-text {
    text-align: center;
}

.hero h1 {
    color: white;
    margin-bottom: 1.5rem;
    font-size: 3.5rem;
    line-height: 1.2;
}

.hero h2 {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    font-size: 1.75rem;
}

.trust-indicators {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-item i {
    font-size: 1.2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #48bb78;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #38a169;
}

/* Pain Points Section */
.pain-points {
    padding: 80px 0;
    background-color: #f7fafc;
}

.pain-points-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.pain-point {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.pain-point:hover {
    transform: translateY(-5px);
}

.pain-point i {
    font-size: 2rem;
    color: #ed8936;
    margin-bottom: 1rem;
}

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

.benefits h2 {
    text-align: center;
    color: #2c5282;
    margin-bottom: 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.benefit {
    text-align: center;
    padding: 1.5rem;
}

.benefit i {
    font-size: 2.5rem;
    color: #48bb78;
    margin-bottom: 1rem;
}

.benefit h3 {
    color: #2c5282;
    margin-bottom: 0.5rem;
}

/* Bundles Section */
.bundles {
    padding: 2rem 0;
    background-color: #ffffff;
}

.bundles h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.bundle {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.bundle:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.bundle.selected {
    border-color: #4CAF50;
    background: #f8fff8;
}

.bundle.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    color: #4CAF50;
    font-size: 1.5rem;
}

.bundle.popular {
    border: 2px solid #48bb78;
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #48bb78;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1rem 0;
}

.original-price {
    font-size: 1.5rem;
    color: #718096;
    text-decoration: line-through;
}

.discounted-price {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5282;
}

.savings {
    font-size: 1rem;
    color: #48bb78;
    font-weight: 600;
    background: rgba(72, 187, 120, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.shipping-cost {
    font-size: 1rem;
    color: #e53e3e;
    font-weight: 600;
    background: rgba(229, 62, 62, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
}

.bundle.popular .price {
    margin-top: 1.5rem;
}

.bundle ul {
    list-style: none;
    margin: 1.5rem 0;
}

.bundle ul li {
    margin-bottom: 0.5rem;
}

.bundle-select {
    width: 100%;
    padding: 1rem;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.bundle-select:hover {
    background: #45a049;
}

.bundle-select.active {
    background: #2c5282;
}

/* Order Form Section */
.order-form {
    padding: 80px 0;
    background-color: #f7fafc;
}

.order-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.order-form-header {
    background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    color: white;
    padding: 2rem;
    text-align: center;
}

.order-form-header h2 {
    color: white;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.order-form-header p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

.order-form-content {
    padding: 2rem;
}

.form-bundles {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.form-bundles .bundle {
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    cursor: pointer;
}

.form-bundles .bundle:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-bundles .bundle.selected {
    background: #f8fff8;
    border-color: #4CAF50;
}

.form-bundles .bundle.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    color: #4CAF50;
    font-size: 1.5rem;
}

.form-bundles .bundle.popular {
    border: 2px solid #48bb78;
}

.form-bundles .popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #48bb78;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

.form-bundles .price {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c5282;
    margin: 1rem 0;
}

.form-bundles .bundle ul {
    list-style: none;
    margin: 1rem 0;
}

.form-bundles .bundle ul li {
    margin-bottom: 0.5rem;
    color: #4a5568;
}

.form-bundles .bundle-select {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.form-bundles .bundle-select:hover {
    background-color: #45a049;
}

.form-bundles .bundle-select.active {
    background-color: #2c5282;
}

.selected-bundle {
    background: white;
    border: 2px solid #48bb78;
    border-left-width: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.selected-bundle h3 {
    color: #2d3748;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

#selected-bundle-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

#selected-bundle-name.not-selected {
    color: #718096;
    font-style: italic;
}

#selected-bundle-price {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

#selected-bundle-price .price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

#selected-bundle-price .shipping {
    font-size: 1rem;
    color: #e53e3e;
    font-weight: 600;
    background: rgba(229, 62, 62, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    display: inline-block;
}

#selected-bundle-price .savings {
    font-size: 1rem;
    color: #48bb78;
    font-weight: 600;
}

.bundle-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.bundle-details {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    background: #f7fafc;
    padding: 1.5rem;
    border-radius: 8px;
}

.bundle-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5282;
}

.bundle-name.not-selected {
    color: #718096;
    font-size: 1rem;
    font-weight: normal;
}

.bundle-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    width: 100%;
}

.bundle-price .price {
    font-size: 2rem;
    font-weight: 700;
    color: #48bb78;
}

.bundle-price .savings {
    color: #48bb78;
    font-weight: 600;
    background: rgba(72, 187, 120, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
}

.order-summary {
    margin-top: 1rem;
    width: 100%;
}

.order-summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.order-summary-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
    color: #4a5568;
    font-size: 1.1rem;
}

.order-summary-list li:last-child {
    border-bottom: none;
    font-weight: 700;
    color: #2d3748;
    font-size: 1.25rem;
    margin-top: 0.5rem;
}

.order-summary-list .savings {
    color: #48bb78;
}

.order-summary-list .free-shipping {
    color: #2d3748;
    font-weight: 500;
}

.bundle-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-label {
    color: #718096;
}

.quantity-value {
    font-weight: 600;
    color: #2d3748;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
    width: 100%;
}

.form-group i {
    position: absolute;
    left: 1rem;
    top: 2.3rem;
    color: #718096;
    font-size: 1.1rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.75rem;
    height: 3rem;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.form-group input:focus {
    background: white;
    border-color: #4299e1;
    box-shadow: 0 0 0 3px rgba(66, 153, 225, 0.2);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2d3748;
}

.submit-button {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
    margin-top: 1rem;
    height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.submit-button i {
    font-size: 1.2rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.2);
}

.submit-button:disabled {
    background-color: #a0aec0;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Trust Elements Section */
.trust-elements {
    padding: 80px 0;
    background-color: #f7fafc;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.trust-item {
    text-align: center;
}

.trust-item i {
    font-size: 2.5rem;
    color: #ed8936;
    margin-bottom: 1rem;
}

/* Footer */
footer {
    background-color: #2c5282;
    color: white;
    padding: 2rem 0;
    text-align: center;
}

/* Floating CTA Button */
.floating-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, #2c5282 0%, #4299e1 100%);
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 153, 225, 0.4);
}

.floating-cta i {
    font-size: 1.2rem;
}

.floating-cta.hidden {
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
}

@media (max-width: 768px) {
    .floating-cta {
        padding: 12px 25px;
        font-size: 1rem;
        bottom: 15px;
        right: 15px;
    }
}

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

    .hero h2 {
        font-size: 1.25rem;
    }

    .trust-indicators {
        flex-direction: column;
        gap: 1rem;
    }

    .bundle.popular {
        transform: scale(1.05);
    }

    .order-form-wrapper {
        margin: 0 1rem;
    }

    .order-form-content {
        padding: 1.5rem;
    }

    .bundle-summary {
        flex-direction: column;
        align-items: stretch;
    }

    .form-bundles {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-bundles .bundle {
        padding: 1.25rem;
    }

    .form-bundles .price {
        font-size: 1.5rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .original-price {
        font-size: 1.25rem;
    }

    .discounted-price {
        font-size: 1.75rem;
    }

    .savings {
        font-size: 0.9rem;
    }

    .bundle-details {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .selected-bundle {
        padding: 1rem;
    }
    
    #selected-bundle-name {
        font-size: 1.125rem;
    }
    
    #selected-bundle-price .price {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .container {
        padding: 0 15px;
    }
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

/* Problems Section */
.problems {
    padding: 2rem 0;
    background-color: rgba(255, 0, 0, 0.03);
}

.problems h2 {
    text-align: center;
    color: #e53e3e;
    margin-bottom: 2rem;
    font-size: 2.5rem;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card h3 {
    color: #e53e3e;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.problem-card i {
    color: #e53e3e;
    font-size: 1.25rem;
}

.problem-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.problem-card li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.problem-card li::before {
    content: '•';
    color: #e53e3e;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.problems-cta {
    text-align: center;
    margin-top: 3rem;
}

.problems-cta p {
    font-size: 1.25rem;
    color: #2d3748;
    margin-bottom: 1.5rem;
}

.problems-cta .cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: #e53e3e;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.problems-cta .cta-button:hover {
    background: #c53030;
}

/* Why Cream Section */
.why-cream {
    padding: 2rem 0;
    background-color: #f7fafc;
}

.why-cream h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.why-cream-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.why-cream-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-cream-item:hover {
    transform: translateY(-5px);
}

.why-cream-item i {
    font-size: 2.5rem;
    color: #48bb78;
    margin-bottom: 1.5rem;
}

.why-cream-item h3 {
    color: #2c5282;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.why-cream-item p {
    color: #4a5568;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .why-cream-grid {
        grid-template-columns: 1fr;
    }

    .why-cream h2 {
        font-size: 2rem;
    }
}

/* Section Headings */
section h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #2c5282;
    font-size: 2.5rem;
}

/* Reviews Section */
.reviews {
    padding: 2rem 0;
    background-color: #ffffff;
}

.reviews h2 {
    text-align: center;
    margin-bottom: 2rem;
}

.review-score-container {
    text-align: center;
    margin-bottom: 3rem;
}

.review-score {
    font-size: 4rem;
    font-weight: 700;
    color: #2c5282;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.review-stars {
    color: #f6ad55;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.review-count {
    color: #718096;
    font-size: 1.1rem;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.review-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    transform: translateY(-5px);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-image {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.reviewer-details h4 {
    color: #2d3748;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.stars {
    color: #f6ad55;
}

.review-date {
    color: #718096;
    font-size: 0.9rem;
}

.review-text {
    color: #4a5568;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
    flex-grow: 1;
}

.review-verified {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #48bb78;
    font-size: 0.9rem;
    margin-top: auto;
}

@media (max-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }

    section h2 {
        font-size: 2rem;
    }
} 