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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #fafbfc;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.nav-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
    font-family: 'Inter', sans-serif;
    letter-spacing: -0.02em;
}

.logo-subtitle {
    font-size: 0.75rem;
    color: #64748b;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-cta {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.4);
}

/* Hero Section */
.hero-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23cbd5e1" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(34, 197, 94, 0.1);
    color: #059669;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.badge-icon {
    font-size: 1rem;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.title-main {
    display: block;
    font-size: 3.5rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.1;
}

.title-sub {
    display: block;
    font-size: 2.5rem;
    font-weight: 400;
    color: #2563eb;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #475569;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
}

.hero-description {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 32px;
    line-height: 1.7;
}

.benefits-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.pill {
    display: flex;
    align-items: center;
    gap: 8px;
    background: white;
    padding: 10px 16px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.pill-icon {
    font-size: 1rem;
}

.hero-cta-section {
    margin-top: 40px;
}

.price-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    flex-wrap: wrap;
}

.price-label {
    font-size: 1rem;
    color: #64748b;
    font-weight: 500;
}

.price-main {
    font-size: 2.5rem;
    font-weight: 700;
    color: #059669;
    font-family: 'Inter', sans-serif;
}

.price-original {
    font-size: 1.25rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.price-save {
    background: #fef3c7;
    color: #d97706;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.cta-primary {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    padding: 20px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 400px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
}

.cta-text {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.cta-sub {
    font-size: 0.875rem;
    opacity: 0.9;
}

.trust-indicators {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748b;
}

.trust-icon {
    font-size: 1rem;
}

.medical-disclaimers {
    margin-top: 20px;
}

.disclaimer-text {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Hero Right */
.product-showcase {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.product-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image {
    width: 300px;
    height: 400px;
    object-fit: contain;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-badge {
    position: absolute;
    top: -10px;
    right: -10px;
    background: linear-gradient(135deg, #059669, #10b981);
    color: white;
    padding: 12px 16px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(5, 150, 105, 0.4);
}

.badge-text {
    display: block;
    font-size: 1.25rem;
    font-weight: 700;
}

.badge-subtext {
    display: block;
    font-size: 0.75rem;
    opacity: 0.9;
}

.features-showcase {
    text-align: center;
}

.features-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.features-grid {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.feature-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.feature-circle.algae {
    background: linear-gradient(135deg, #059669, #10b981);
}

.feature-circle.citrus {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.feature-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: #1e293b;
}

.feature-desc {
    font-size: 0.75rem;
    color: #64748b;
}

/* Social Proof Bar */
.social-proof-bar {
    background: white;
    padding: 30px 0;
    border-bottom: 1px solid #e2e8f0;
}

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

.proof-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

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

.stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: #2563eb;
}

.stat-label {
    font-size: 0.875rem;
    color: #64748b;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: #e2e8f0;
}

.proof-testimonial {
    flex: 1;
    text-align: right;
}

.proof-testimonial p {
    font-style: italic;
    color: #64748b;
}

/* Sections */
.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header.centered {
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1e293b;
    font-family: 'Playfair Display', serif;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

/* Benefits Section */
.benefits-section {
    background: white;
    padding: 80px 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: #2563eb;
}

.benefit-card.primary {
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-color: #2563eb;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 24px;
    display: block;
}

.benefit-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.benefit-description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

.benefit-highlight {
    background: rgba(37, 99, 235, 0.1);
    padding: 12px 16px;
    border-radius: 8px;
    border-left: 4px solid #2563eb;
}

.highlight-label {
    font-weight: 600;
    color: #2563eb;
    display: block;
    font-size: 0.875rem;
}

.highlight-value {
    color: #1e293b;
    font-size: 0.875rem;
}

/* How It Works Section */
.how-it-works-section {
    background: #f8fafc;
    padding: 80px 0;
}

.steps-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-top: 60px;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 250px;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.step-image {
    margin-bottom: 20px;
}

.step-img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.step-description {
    color: #64748b;
    line-height: 1.6;
}

.step-arrow {
    font-size: 2rem;
    color: #cbd5e1;
    font-weight: bold;
}

/* Ingredients Section */
.ingredients-section {
    background: white;
    padding: 80px 0;
}

.ingredients-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.ingredients-intro {
    font-size: 1.125rem;
    color: #64748b;
    margin-bottom: 40px;
    line-height: 1.7;
}

.ingredient-breakdown {
    margin-bottom: 40px;
}

.ingredient-item {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    border-left: 4px solid #2563eb;
}

.ingredient-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.ingredient-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
}

.ingredient-amount {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2563eb;
}

.ingredient-details p {
    color: #64748b;
    margin-bottom: 8px;
    font-size: 0.875rem;
}

.health-benefits {
    margin-bottom: 30px;
}

.benefits-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 20px;
}

.benefits-list-detailed {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit-detail {
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefit-check {
    color: #059669;
    font-weight: bold;
    font-size: 1.125rem;
}

.benefit-text {
    color: #64748b;
    font-size: 0.875rem;
}

.health-disclaimer {
    background: #fef3c7;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #f59e0b;
}

.ingredients-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* Reviews Section */
.reviews-section {
    background: #f8fafc;
    padding: 80px 0;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.review-card.featured {
    border: 2px solid #2563eb;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.stars {
    color: #fbbf24;
    font-size: 1.125rem;
}

.review-date {
    font-size: 0.875rem;
    color: #94a3b8;
}

.review-image {
    margin-bottom: 20px;
    text-align: center;
}

.review-product-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.review-text {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
}

.reviewer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.reviewer-name {
    color: #1e293b;
    font-weight: 600;
}

.reviewer-type {
    color: #94a3b8;
    font-size: 0.875rem;
}

.review-summary {
    margin-top: 60px;
    text-align: center;
}

.summary-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
}

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

.summary-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2563eb;
}

.summary-label {
    color: #64748b;
    font-size: 0.875rem;
}

/* FAQ Section */
.faq-section {
    background: white;
    padding: 80px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    margin-top: 60px;
}

.faq-item {
    border-bottom: 1px solid #e2e8f0;
    margin-bottom: 20px;
}

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

.faq-question:hover {
    color: #2563eb;
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: #94a3b8;
    transition: all 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(45deg);
    color: #2563eb;
}

.faq-answer {
    padding: 0 0 24px 0;
    color: #64748b;
    line-height: 1.6;
    display: none;
}

.faq-answer.active {
    display: block;
}

/* Final CTA Section */
.final-cta-section {
    background: linear-gradient(135deg, #1e293b, #334155, #475569);
    color: white;
    padding: 80px 0;
}

.cta-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-description {
    font-size: 1.125rem;
    color: #cbd5e1;
    margin-bottom: 40px;
    line-height: 1.7;
}

.offer-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.offer-badge {
    background: #059669;
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.offer-details {
    display: flex;
    align-items: center;
    gap: 12px;
}

.offer-price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
}

.offer-original {
    font-size: 1.25rem;
    color: #94a3b8;
    text-decoration: line-through;
}

.offer-save {
    background: #fbbf24;
    color: #1e293b;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.guarantees {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #cbd5e1;
}

.guarantee-icon {
    font-size: 1.125rem;
}

.order-form-preview {
    background: white;
    padding: 40px;
    border-radius: 20px;
    color: #1e293b;
}

.form-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.product-summary {
    margin-bottom: 24px;
}

.product-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e2e8f0;
}

.product-line.shipping {
    color: #059669;
    font-weight: 600;
}

.product-line.total {
    font-weight: 700;
    font-size: 1.125rem;
    border-bottom: none;
    padding-top: 16px;
    border-top: 2px solid #e2e8f0;
}

.cta-primary.large {
    font-size: 1.25rem;
    padding: 24px 32px;
}

/* Footer */
.footer {
    background: #0f172a;
    color: white;
    padding: 80px 0 40px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 16px;
}

.footer-description {
    color: #94a3b8;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-link:hover {
    color: #2563eb;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #94a3b8;
    font-size: 0.875rem;
}

.contact-icon {
    font-size: 1rem;
}

.footer-bottom {
    border-top: 1px solid #334155;
    padding-top: 40px;
}

.footer-disclaimers {
    margin-bottom: 20px;
}

.footer-disclaimers .disclaimer-text {
    margin-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #94a3b8;
}

.footer-legal {
    text-align: center;
}

.footer-legal p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 2% auto;
    padding: 0;
    width: 90%;
    max-width: 800px;
    border-radius: 20px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px;
    border-bottom: 1px solid #e2e8f0;
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
}

.modal-close {
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    color: #64748b;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #f1f5f9;
    color: #1e293b;
}

.modal-body {
    padding: 40px;
}

.order-summary {
    background: #f8fafc;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 30px;
}

.product-summary {
    display: flex;
    align-items: center;
    gap: 20px;
}

.summary-image {
    width: 100px;
    height: 120px;
    object-fit: contain;
    border-radius: 12px;
    background: #f8fafc;
    padding: 8px;
    border: 2px solid #e2e8f0;
}

.summary-details h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 4px;
}

.summary-details p {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 8px;
}

.summary-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #059669;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-section h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
}

.form-description {
    color: #64748b;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

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

.form-group input,
.form-group select {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.payment-method-info {
    background: #f8fafc;
    padding: 20px;
    border-radius: 8px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
}

.payment-description {
    color: #64748b;
    font-size: 0.875rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-line.total {
    border-top: 1px solid #e2e8f0;
    padding-top: 16px;
    margin-top: 12px;
}

.submit-order {
    margin-top: 20px;
}

.form-disclaimers {
    margin-top: 20px;
}

.form-disclaimers .disclaimer-text {
    font-size: 0.75rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 12px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .cta-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .ingredients-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .proof-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .proof-testimonial {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .hero-section {
        padding: 100px 0 60px;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-sub {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .steps-container {
        flex-direction: column;
        gap: 30px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .summary-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .modal-header,
    .modal-body {
        padding: 20px;
    }
    
    .product-summary {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .title-main {
        font-size: 2rem;
    }
    
    .title-sub {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .cta-title {
        font-size: 1.75rem;
    }
    
    .benefits-pills {
        justify-content: center;
    }
    
    .trust-indicators {
        justify-content: center;
    }
    
    .features-grid {
        flex-direction: column;
        gap: 15px;
    }
    
    .proof-stats {
        flex-direction: column;
        gap: 20px;
    }
}
