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

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

html {
    scroll-behavior: smooth;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

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

/* Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

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

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

.logo-icon {
    width: 2rem;
    height: 2rem;
    color: #059669;
    stroke-width: 2;
}

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

.nafdac {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 500;
}

/* Hero Section */
.hero {
    background: linear-gradient(to bottom right, #ecfdf5, #ffffff, #ecfdf5);
    padding: 4rem 0;
}

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

@media (min-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.badge {
    display: inline-block;
    background-color: #d1fae5;
    color: #065f46;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    width: fit-content;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    line-height: 1.2;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}

.hero-description {
    font-size: 1.25rem;
    color: #4b5563;
    line-height: 1.75;
}

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

@media (min-width: 640px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background-color: #ffffff;
    padding: 1rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #059669;
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke-width: 2;
}

.feature-title {
    font-weight: 600;
    color: #1f2937;
}

.feature-text {
    font-size: 0.875rem;
    color: #4b5563;
}

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

@media (min-width: 640px) {
    .hero-buttons {
        flex-direction: row;
    }
}

.btn {
    padding: 1rem 2rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 1.125rem;
    text-align: center;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-primary {
    background-color: #059669;
    color: #ffffff;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

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

.btn-secondary {
    background-color: #ffffff;
    color: #059669;
    border: 2px solid #059669;
}

.btn-secondary:hover {
    background-color: #ecfdf5;
}

.btn-outline {
    background-color: #f3f4f6;
    color: #1f2937;
}

.btn-outline:hover {
    background-color: #e5e7eb;
}

.hero-badges {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: 0.875rem;
    color: #4b5563;
    flex-wrap: wrap;
}

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

.check-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
}

.hero-image-container {
    position: relative;
}

.hero-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.hero-stat {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    background-color: #059669;
    color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    max-width: 18rem;
}

.hero-stat-number {
    font-size: 1.875rem;
    font-weight: 700;
}

.hero-stat-text {
    color: #d1fae5;
}

/* Problem Section */
.problem-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

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

@media (min-width: 640px) {
    .section-title {
        font-size: 2.25rem;
    }
}

.section-description {
    font-size: 1.25rem;
    color: #4b5563;
}

.problem-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.problem-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.alert-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: 0.25rem;
    stroke-width: 2;
}

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

.problem-text {
    color: #374151;
    line-height: 1.75;
}

.problem-divider {
    border-top: 1px solid #e5e7eb;
    padding-top: 1.5rem;
}

.problem-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.problem-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .problem-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

.problem-list-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #374151;
}

.bullet {
    width: 0.5rem;
    height: 0.5rem;
    background-color: #ef4444;
    border-radius: 50%;
    flex-shrink: 0;
}

.quote-box {
    background-color: #ecfdf5;
    border-left: 4px solid #059669;
    padding: 1.5rem;
    border-radius: 0.25rem;
}

.quote-text {
    color: #1f2937;
    font-weight: 500;
}

/* Solution Section */
.solution-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.solution-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

@media (min-width: 1024px) {
    .solution-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.solution-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.solution-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f2937;
}

.benefit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

.benefit-icon-box {
    background-color: #d1fae5;
    padding: 0.5rem;
    border-radius: 0.5rem;
}

.benefit-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #059669;
    stroke-width: 2;
}

.benefit-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.25rem;
}

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

.solution-image {
    position: relative;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.how-to-use {
    background: linear-gradient(to bottom right, #059669, #047857);
    border-radius: 1rem;
    padding: 3rem;
    color: #ffffff;
}

.how-to-use-content {
    max-width: 48rem;
    margin: 0 auto;
}

.how-to-use-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (min-width: 640px) {
    .how-to-use-title {
        font-size: 1.875rem;
    }
}

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

@media (min-width: 640px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.step {
    text-align: center;
}

.step-number {
    background-color: rgba(255, 255, 255, 0.2);
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-title {
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step-text {
    color: #d1fae5;
    font-size: 0.875rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 4rem 0;
    background-color: #f9fafb;
}

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

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.testimonial-card {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.stars {
    display: flex;
    gap: 0.25rem;
}

.star {
    width: 1.25rem;
    height: 1.25rem;
    color: #f59e0b;
    fill: #f59e0b;
}

.testimonial-text {
    color: #374151;
    font-style: italic;
}

.testimonial-divider {
    border-top: 1px solid #e5e7eb;
    padding-top: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
}

.testimonial-location {
    font-size: 0.875rem;
    color: #6b7280;
}

.rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #d1fae5;
    color: #065f46;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
}

.rating-star {
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
    fill: #059669;
}

.rating-text {
    font-weight: 600;
}

/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.promo-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #fee2e2;
    color: #991b1b;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    margin-bottom: 1rem;
}

.promo-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.pricing-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 80rem;
    margin: 0 auto 3rem;
}

@media (min-width: 768px) {
    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.pricing-card {
    background-color: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.pricing-popular {
    background: linear-gradient(to bottom right, #059669, #047857);
    color: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
}

.popular-badge {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fbbf24;
    color: #1f2937;
    padding: 0.25rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
}

.pricing-header {
    text-align: center;
}

.price {
    font-size: 2.25rem;
    font-weight: 700;
}

.price-old {
    font-size: 0.875rem;
    text-decoration: line-through;
    color: #6b7280;
    margin-top: 0.25rem;
}

.pricing-popular .price-old {
    color: #d1fae5;
}

.price-label {
    font-size: 1.125rem;
    margin-top: 0.5rem;
}

.price-save {
    font-size: 0.875rem;
    color: #059669;
    font-weight: 500;
    margin-top: 0.25rem;
}

.pricing-popular .price-save {
    color: #fcd34d;
}

.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check {
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
    flex-shrink: 0;
    stroke-width: 2;
}

.pricing-popular .check {
    color: #ffffff;
}

.guarantee-box {
    max-width: 48rem;
    margin: 0 auto;
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 0.75rem;
    padding: 1.5rem;
}

.guarantee-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.75rem;
    text-align: center;
}

.guarantee-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: #374151;
}

.guarantee-list p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.check-sm {
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
    flex-shrink: 0;
    stroke-width: 2;
}

/* Order Form Section */
.order-section {
    padding: 4rem 0;
    background: linear-gradient(to bottom right, #ecfdf5, #ffffff);
}

.order-card {
    background-color: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

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

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: repeat(2, 1fr);
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

.form-notice {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 0.5rem;
    padding: 1rem;
}

.form-notice p {
    font-size: 0.875rem;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-notice p:last-child {
    margin-bottom: 0;
    color: #4b5563;
}

.btn-submit {
    width: 100%;
}

.btn-icon {
    width: 1.25rem;
    height: 1.25rem;
    stroke-width: 2;
}

.form-terms {
    text-align: center;
    font-size: 0.875rem;
    color: #6b7280;
}

.success-message {
    text-align: center;
}

.success-icon-box {
    width: 4rem;
    height: 4rem;
    background-color: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.success-icon {
    width: 2rem;
    height: 2rem;
    color: #059669;
    stroke-width: 2;
}

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

.success-text {
    color: #4b5563;
    margin-bottom: 1.5rem;
}

.success-info {
    background-color: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 0.5rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    text-align: left;
}

.success-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #374151;
}

.truck-icon,
.cart-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #059669;
    stroke-width: 2;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #f9fafb;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    text-align: left;
    background: transparent;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #f3f4f6;
}

.faq-question span {
    padding-right: 1rem;
}

.faq-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #6b7280;
    flex-shrink: 0;
    transition: transform 0.3s;
    stroke-width: 2;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: #374151;
    line-height: 1.75;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 3rem 0;
}

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

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-logo-icon {
    width: 2rem;
    height: 2rem;
    color: #10b981;
    stroke-width: 2;
}

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

.footer-description {
    color: #9ca3af;
}

.footer-nafdac {
    font-size: 0.875rem;
    color: #10b981;
}

.footer-title {
    color: #ffffff;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a:hover {
    color: #10b981;
    transition: color 0.3s;
}

.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: #10b981;
    stroke-width: 2;
}

.footer-cta-text {
    color: #9ca3af;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.btn-footer {
    width: 100%;
    text-align: center;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: #9ca3af;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
    max-width: 56rem;
    margin-left: auto;
    margin-right: auto;
}
/* SIMPLIFIED LAYOUT STYLES */

/* Hero Section Simplified */
.hero-main {
    text-align: center;
    max-width: 56rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1f2937;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.125rem;
}

.hero-guarantees {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
    font-size: 0.95rem;
}

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

/* Story Section */
.story-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.hero-image-inline {
    text-align: center;
    margin: 1.5rem 0;
}

.hero-image-inline img {
    max-width: 480px;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
    display: inline-block;
}

.story-content {
    max-width: 56rem;
}

.story-image-inline {
    text-align: center;
    margin: 1rem 0 1.5rem;
}

.story-image-inline img {
    max-width: 420px;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: inline-block;
}

.story-image-mid {
    text-align: center;
    margin: 1.5rem 0;
}

.story-image-mid img {
    max-width: 380px;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: inline-block;
}

.why-works-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.why-works-image img {
    max-width: 500px;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: inline-block;
}

.order-image {
    text-align: center;
    margin-bottom: 1.5rem;
}

.order-image img {
    max-width: 480px;
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    display: inline-block;
}

/* CTA Image Section */
.cta-image-section {
    padding: 3rem 0;
    background-color: #ffffff;
    text-align: center;
}

.cta-image-section img {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: 0.75rem;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    display: block;
    margin: 0 auto;
}

/* Lead-in Narrative Styling */
.lead-in {
    background: linear-gradient(180deg, rgba(5,150,105,0.04), transparent);
    padding: 1rem 1.25rem;
    border-radius: 0.5rem;
    margin-bottom: 1.25rem;
    color: #374151;
    line-height: 1.7;
}

.lead-in p {
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
}

.lead-in p:last-child {
    margin-bottom: 0;
    font-weight: 600;
}

/* Lead heading style */
.lead-heading {
    font-size: 1.375rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.story-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 2rem;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #374151;
    margin-bottom: 2rem;
}

.story-text p {
    margin-bottom: 1rem;
}

.story-highlight {
    font-size: 1.25rem;
    background-color: #ecfdf5;
    padding: 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #059669;
}

.story-facts {
    margin-top: 3rem;
}

.story-facts h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

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

@media (min-width: 768px) {
    .facts-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.fact-card {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.fact-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.5rem;
}

.fact-card p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.5;
}

/* Why Works Section */
.why-works-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

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

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

.benefit-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1rem;
    color: #059669;
    stroke-width: 2;
}

.benefit h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.benefit p {
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.how-to-use-simple {
    background-color: #ecfdf5;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.how-to-use-simple h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1f2937;
}

.steps {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.step-simple {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-num {
    width: 3rem;
    height: 3rem;
    background-color: #059669;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 1.25rem;
}

.step-simple p {
    font-size: 0.95rem;
    color: #1f2937;
    max-width: 10rem;
    line-height: 1.4;
}

.step-arrow {
    font-size: 1.5rem;
    color: #059669;
    font-weight: bold;
}

@media (max-width: 768px) {
    .step-arrow {
        transform: rotate(90deg);
    }
}

/* Testimonials Simplified */
.testimonials-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.feedback-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .feedback-images {
        grid-template-columns: repeat(2, 1fr);
    }
}

.feedback-images img {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

@media (min-width: 768px) {
    .testimonials-simple {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.testimonial {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.testimonial-quote {
    font-style: italic;
    color: #374151;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #1f2937;
}

/* Pricing Simplified */
.pricing-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: #059669;
    margin-bottom: 2rem;
}

.pricing-simple {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

@media (min-width: 768px) {
    .pricing-simple {
        grid-template-columns: repeat(3, 1fr);
    }
}

.price-option {
    background-color: #f9fafb;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s;
    position: relative;
}

.price-option:hover {
    border-color: #059669;
    box-shadow: 0 4px 6px rgba(5, 150, 105, 0.1);
}

.price-option.popular {
    border-color: #059669;
    background-color: #ecfdf5;
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .price-option.popular {
        transform: scale(1);
    }
}

.badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #059669;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.price-option h3 {
    font-size: 1.125rem;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #059669;
    margin-bottom: 0.25rem;
}

.savings {
    font-size: 0.875rem;
    color: #059669;
    margin-bottom: 1.5rem;
}

.pricing-guarantees {
    background-color: #ecfdf5;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
}

.pricing-guarantees h3 {
    font-size: 1.25rem;
    color: #1f2937;
    margin-bottom: 1rem;
}

.pricing-guarantees ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    font-size: 0.95rem;
    color: #374151;
}

.pricing-guarantees li {
    flex: 1;
    min-width: 12rem;
}

/* Order Form Simplified */
.order-section {
    background-color: #f9fafb;
    padding: 4rem 0;
}

.order-subtitle {
    text-align: center;
    font-size: 1rem;
    color: #4b5563;
    margin-bottom: 2rem;
}

.order-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #059669;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

@media (min-width: 640px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.btn-submit {
    width: 100%;
    margin-top: 1rem;
}

.form-notice {
    font-size: 0.9rem;
    color: #4b5563;
    text-align: center;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.success-message {
    background-color: #ecfdf5;
    padding: 2rem;
    border-radius: 0.75rem;
    text-align: center;
    color: #059669;
}

.success-message h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.success-message p {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* FAQ Simplified */
.faq-section {
    padding: 4rem 0;
    background-color: #ffffff;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 1.25rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #ecfdf5;
}

.faq-toggle {
    display: inline-block;
    font-size: 1.25rem;
    color: #059669;
    transition: transform 0.3s;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 1.25rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 1.25rem 1.25rem;
}

.faq-answer p {
    color: #4b5563;
    line-height: 1.6;
}