@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&amp;family=Inter:wght@300;400;500;600;700&amp;display=swap');

:root {
    --primary-color: #4c5eaf;
    --primary-dark: #322e7d;
    --primary-light: #ada3e6;
    --secondary-color: #1e1b3a;
    --accent-color: #6666bb;
    --text-dark: #1b1a2e;
    --text-light: #5d5a6b;
    --bg-light: #f5f4f9;
    --bg-white: #ffffff;
    --border-color: #dbd8e6;
    --success-color: #352e7d;
    --shadow-sm: 0 1px 2px 0 rgba(27, 58, 42, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(27, 58, 42, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(27, 58, 42, 0.12);
    --shadow-xl: 0 20px 25px -5px rgba(27, 58, 42, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

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

/* Header */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.logo h1 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
    margin: 0;
}

.official-badge {
    font-size: 12px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Buttons */
.cta-button {
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-shadow: var(--shadow-md);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cta-button.primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-button.large {
    padding: 16px 48px;
    font-size: 18px;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #faf7f0 0%, #f5f0e8 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    color: var(--secondary-color);
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 500;
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--success-color);
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 24px;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.price-badge {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 18px;
}

.new-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
}

.discount {
    background: var(--accent-color);
    color: white;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    align-self: flex-start;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeIn 1.2s ease-out 0.5s both;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.product-showcase {
    position: relative;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

.product-icon {
    width: 200px;
    height: 280px;
    filter: drop-shadow(0 20px 30px rgba(0, 0, 0, 0.15));
}

.product-photo {
    width: 100%;
    max-width: 420px;
    height: auto;
    display: block;
    border-radius: 16px;
    filter: drop-shadow(0 20px 35px rgba(27, 58, 42, 0.25));
}

/* Trust Bar */
.trust-bar {
    background: var(--bg-white);
    padding: 40px 0;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.trust-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-dark);
}

.trust-icon {
    width: 32px;
    height: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

/* Section Styles */
section {
    padding: 80px 0;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 16px;
    line-height: 1.3;
}

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

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
}

/* Problems Section */
.problems-section {
    background: var(--bg-light);
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.problem-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary-color) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.problem-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-dark);
}

.problem-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.problem-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.problems-content {
    max-width: 900px;
    margin: 0 auto;
}

.problems-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

/* Mechanism Section */
.mechanism-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.mechanism-text p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    text-align: justify;
}

.layer-diagram {
    background: linear-gradient(135deg, #faf7f0 0%, #f5f0e8 100%);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.layer {
    background: var(--bg-white);
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.layer:last-child {
    margin-bottom: 0;
}

.layer:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.layer-label {
    display: block;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.layer-desc {
    display: block;
    color: var(--text-dark);
    font-size: 16px;
}

.layer-1 { border-left: 4px solid var(--primary-light); }
.layer-2 { border-left: 4px solid var(--primary-color); }
.layer-3 { border-left: 4px solid var(--primary-dark); }

/* Ingredients Section */
.ingredients-section {
    background: var(--bg-white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.ingredient-card {
    background: linear-gradient(135deg, #faf7f0 0%, #f5f0e8 100%);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.ingredient-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.ingredient-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.ingredient-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.ingredient-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
}

.ingredient-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Results Section */
.results-section {
    background: var(--bg-light);
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-light);
}

.timeline-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    position: relative;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: var(--shadow-lg);
    position: relative;
    z-index: 1;
}

.timeline-content {
    flex: 1;
    background: var(--bg-white);
    padding: 24px 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.timeline-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.results-note {
    text-align: center;
    color: var(--text-light);
    font-style: italic;
    margin-top: 40px;
    font-size: 14px;
}

/* Benefits Section */
.benefits-section {
    background: var(--bg-white);
}

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

.benefit-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.benefit-card.featured {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    grid-column: 1 / -1;
}

.benefit-card:not(.featured):hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.benefit-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
}

.benefit-card.featured .benefit-icon {
    color: rgba(255, 255, 255, 0.9);
}

.benefit-card:not(.featured) .benefit-icon {
    color: var(--primary-color);
}

.benefit-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.benefit-card.featured h3 {
    color: white;
}

.benefit-card:not(.featured) h3 {
    color: var(--secondary-color);
}

.benefit-card p {
    line-height: 1.7;
}

.benefit-card.featured p {
    color: rgba(255, 255, 255, 0.95);
}

.benefit-card:not(.featured) p {
    color: var(--text-light);
}

/* Testimonials Section */
.testimonials-section {
    background: linear-gradient(135deg, #faf7f0 0%, #f5f0e8 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.stars {
    color: var(--primary-color);
    font-size: 20px;
    margin-bottom: 16px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}

.testimonial-author strong {
    color: var(--secondary-color);
    font-weight: 600;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 14px;
}

/* Comparison Section */
.comparison-section {
    background: var(--bg-white);
}

.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.comparison-header,
.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    border-bottom: 1px solid var(--border-color);
}

.comparison-header {
    background: var(--secondary-color);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-cell {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 15px;
}

.comparison-header .comparison-cell {
    color: white;
    font-weight: 600;
}

.comparison-cell.highlight {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(212, 175, 55, 0.2) 100%);
    font-weight: 600;
}

.comparison-cell.label {
    justify-content: flex-start;
    text-align: left;
    font-weight: 500;
    color: var(--text-dark);
}

.check-icon {
    width: 28px;
    height: 28px;
    color: var(--success-color);
}

.x-icon {
    width: 28px;
    height: 28px;
    color: var(--accent-color);
}

.maybe-icon,
.na-icon {
    font-size: 20px;
    color: var(--text-light);
}

/* Usage Section */
.usage-section {
    background: var(--bg-light);
}

.usage-steps {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.usage-step {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 24px;
    transition: all 0.3s ease;
}

.usage-step:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.step-content p {
    color: var(--text-light);
    line-height: 1.7;
}

.usage-tips {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, #faf7f0 0%, #f5f0e8 100%);
    padding: 40px;
    border-radius: 12px;
}

.usage-tips h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.usage-tips ul {
    list-style: none;
}

.usage-tips li {
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    color: var(--text-light);
}

.usage-tips li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 18px;
}

/* FAQ Section */
.faq-section {
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.faq-item:hover {
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
}

.faq-question {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
}

/* Guarantee Section */
.guarantee-section {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2634 100%);
    color: white;
}

.guarantee-section .section-title {
    color: white;
    text-align: center;
    margin-bottom: 60px;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.guarantee-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.guarantee-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.guarantee-icon {
    width: 48px;
    height: 48px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.guarantee-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
}

.guarantee-item p {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
}

/* Order Section */
.order-section {
    background: linear-gradient(135deg, #faf7f0 0%, #f5f0e8 100%);
    padding: 80px 0;
}

.order-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.order-info .section-title {
    margin-bottom: 12px;
    text-align: left;
}

.order-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.price-box {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 32px;
}

.price-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.price-details:last-of-type {
    border-bottom: none;
}

.price-details.featured {
    background: linear-gradient(135deg, var(--primary-light) 0%, rgba(212, 175, 55, 0.2) 100%);
    margin: 0 -32px;
    padding: 20px 32px;
    border-radius: 8px;
}

.price-label {
    font-weight: 600;
    color: var(--text-dark);
}

.old-price-large {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 24px;
}

.new-price-large {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.discount-badge {
    text-align: center;
    margin-top: 16px;
}

.discount-badge span {
    background: var(--accent-color);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
}

.payment-options,
.shipping-info {
    margin-bottom: 32px;
}

.payment-options h3,
.shipping-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.payment-options ul {
    list-style: none;
}

.payment-options li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.check-small {
    width: 20px;
    height: 20px;
    color: var(--success-color);
    flex-shrink: 0;
}

.shipping-info p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 14px;
}

/* Order Form */
.order-form-container {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
}

.order-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 32px;
    text-align: center;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group input::placeholder {
    color: #9ca3af;
}

.form-note {
    text-align: center;
    color: var(--text-light);
    font-size: 13px;
    margin-top: 16px;
    font-style: italic;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 60px 0;
    text-align: center;
    color: white;
}

.final-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
}

.final-cta-content p {
    font-size: 18px;
    margin-bottom: 32px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.final-cta .cta-button {
    background: var(--bg-white);
    color: var(--primary-dark);
}

.final-cta .cta-button:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 16px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    font-size: 14px;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    background: rgba(0, 0, 0, 0.2);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.footer-disclaimer p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    line-height: 1.6;
    text-align: justify;
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-image {
        order: -1;
    }

    .trust-items {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .problems-grid,
    .ingredients-grid,
    .benefits-grid,
    .comparison-table,
    .usage-steps,
    .faq-grid,
    .guarantee-grid,
    .order-content {
        grid-template-columns: 1fr;
    }

    .benefit-card.featured {
        grid-column: 1;
    }

    .mechanism-content {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .comparison-header,
    .comparison-row {
        grid-template-columns: 1fr;
    }

    .comparison-cell:first-child {
        background: var(--bg-light);
        font-weight: 600;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 32px;
    }

    .hero-features {
        flex-direction: column;
        gap: 12px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .trust-items {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 30px;
    }

    .timeline-marker {
        width: 60px;
        height: 60px;
        font-size: 18px;
    }

    .timeline-item {
        gap: 20px;
    }

    .order-form-container {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }

    .section-title {
        font-size: 26px;
    }

    .cta-button.large {
        padding: 14px 32px;
        font-size: 16px;
    }

    .usage-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }
}

/* Price CTA box (replaces old price block) */
.price-cta-box {
    margin-bottom: 32px;
    text-align: center;
}

.price-cta-box .cta-button {
    width: 100%;
    max-width: 360px;
}

/* Contact list (replaces order form) */
.contact-intro {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 15px;
}

.contact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.contact-list li {
    padding: 14px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list strong {
    color: var(--secondary-color);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
}

.contact-list a {
    color: var(--primary-dark);
    text-decoration: none;
    font-size: 17px;
    font-weight: 500;
}

.contact-list a:hover {
    text-decoration: underline;
}

.contact-list span {
    color: var(--text-dark);
    font-size: 15px;
    line-height: 1.5;
}

@media (max-width: 480px) {
    .contact-list a {
        font-size: 15px;
    }
}