/* Основные стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #fff8f3 0%, #fef7ed 50%, #fff8f3 100%);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 12px;
}

/* Утилиты */
.text-center { text-align: center; }
.mb-4 { margin-bottom: 1rem; }
.sm-mb-6 { margin-bottom: 1.5rem; }
.lg-mb-8 { margin-bottom: 2rem; }
.mb-6 { margin-bottom: 1.5rem; }
.sm-mb-8 { margin-bottom: 2rem; }
.lg-mb-12 { margin-bottom: 3rem; }
.mb-8 { margin-bottom: 2rem; }
.sm-mb-12 { margin-bottom: 3rem; }
.lg-mb-16 { margin-bottom: 4rem; }
.mt-6 { margin-top: 1.5rem; }
.sm-mt-8 { margin-top: 2rem; }

/* Hero секция */
.hero-section {
    background: transparent;
    color: white;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('webp/ChatGPT Image 30 июл. 2025 г., 13_50_07.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 1;
    z-index: 1;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(127, 29, 29, 0.2);
    z-index: 2;
}

.hero-section .container {
    position: relative;
    z-index: 3;
}

.hero-question {
    font-size: 16px;
    color: white;
    margin-bottom: 1rem;
    font-style: italic;
}

.hero-title {
    font-size: 2rem;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
}

.hero-secret {
    color: #fbbf24;
}

.hero-subtitle {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fbbf24;
    margin-bottom: 0.5rem;
}

.hero-description {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-warning-box {
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 0.5rem;
    padding: 1rem;
    margin-bottom: 1.5rem;
}

.hero-warning-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 0.5rem;
    color: white;
}

.hero-warning-text {
    font-size: 12px;
    color: white;
}

.hero-cta-button {
    background-color: #dc2626;
    color: white;
    font-weight: bold;
    padding: 0.75rem 1.5rem;
    border-radius: 9999px;
    font-size: 16px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
    animation: pulse 2s infinite;
}

.hero-cta-button:hover {
    background-color: #b91c1c;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-content {
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 1rem;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.hero-left {
    width: 100%;
}

.image-container {
    width: 100%;
    max-width: 240px;
    height: 160px;
    background-color: #e5e7eb;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.75rem;
}

.image-caption {
    color: #6b7280;
    text-align: center;
    margin-top: 0.25rem;
    font-size: 9px;
}

.hero-right {
    width: 100%;
    text-align: center;
}

.hero-right-title {
    color: #374151;
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.hero-right-text {
    color: #4b5563;
    font-size: 12px;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.highlight {
    color: #ea580c;
    font-weight: 500;
}

.cta-button {
    background: linear-gradient(135deg, #ea580c, #dc2626);
    color: white;
    font-size: 13px;
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    width: 100%;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
}

/* Story секция */
.story-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #fff8f3 0%, #fef7ed 100%);
}

.section-title {
    color: #FF6A00;
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 0.75rem;
}

.story-highlight {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 0.5rem;
    max-width: 800px;
    margin: 0 auto 0.75rem;
}

.story-highlight-text {
    color: #b91c1c;
    font-size: 13px;
    font-weight: bold;
}

.story-text {
    color: black;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.quote-box {
    background-color: #f3f4f6;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 1px solid #d1d5db;
}

.quote-text {
    color: #FF6A00;
    font-size: 13px;
    font-weight: bold;
    font-style: italic;
}

/* Статистика */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.stat-card {
    background-color: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 1rem;
    padding: 1rem;
    text-align: center;
}

.stat-green {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.stat-yellow {
    background-color: #f0fdf4;
    border-color: #bbf7d0;
}

.stat-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-number {
    color: #16a34a;
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.stat-yellow .stat-number {
    color: #16a34a;
}

.stat-text {
    color: #15803d;
    font-size: 12px;
    line-height: 1.4;
}

.stat-yellow .stat-text {
    color: #15803d;
}

/* Новые стили для текстовых блоков статистики */
.stat-text-card {
    background-color: #f0fdf4;
    border: 2px solid #bbf7d0;
    border-radius: 1rem;
    padding: 1.25rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-text-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 163, 74, 0.15);
}

.stat-text-content {
    color: #15803d;
    font-size: 14px;
    line-height: 1.5;
    font-weight: 500;
    margin: 0;
    text-align: center;
}

/* Новые стили для блока статистики */
.stats-results-box {
    background-color: #fef2f2;
    border: 2px solid #fca5a5;
    border-radius: 1rem;
    padding: 1.5rem;
    margin: 1rem 0;
}

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

.stats-item {
    color: #991b1b;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.stats-item:before {
    content: "•";
    color: #dc2626;
    font-weight: bold;
    font-size: 18px;
    position: absolute;
    left: 0;
    top: -2px;
}

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

.stats-item strong {
    color: #dc2626;
    font-weight: bold;
}

/* Скандал */
.scandal-box {
    background-color: #fef2f2;
    border: 2px solid #ef4444;
    padding: 0.75rem;
    border-radius: 0.75rem;
    margin-bottom: 1rem;
}

.scandal-title {
    color: #dc2626;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.75rem;
}

.scandal-text {
    color: #b91c1c;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.scandal-quote {
    background-color: white;
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #fca5a5;
}

.scandal-quote-text {
    color: #dc2626;
    font-size: 12px;
    font-style: italic;
}

/* Сравнение */
.comparison-section {
    background: linear-gradient(135deg, #FF6A00, #ff8533);
    border-radius: 1rem;
    padding: 0.75rem;
}

.comparison-title {
    color: white;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-card {
    background-color: white;
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
}

.comparison-card-title {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.comparison-before {
    color: #dc2626;
}

.comparison-after {
    color: #16a34a;
}

.comparison-content {
    text-align: center;
}

.comparison-person {
    margin-bottom: 0.75rem;
}

.comparison-name {
    font-size: 12px;
    font-weight: bold;
    color: #374151;
    margin-bottom: 0.5rem;
}

.comparison-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0.5rem;
    object-position: center center;
}

.comparison-list {
    text-align: left;
}

.comparison-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.comparison-icon {
    font-size: 16px;
    font-weight: bold;
}

.comparison-bad .comparison-icon {
    color: #dc2626;
}

.comparison-good .comparison-icon {
    color: #16a34a;
}

.comparison-text {
    color: #374151;
    font-size: 11px;
}

/* Результат */
.result-highlight {
    background: linear-gradient(to right, #fbbf24, #fde047);
    padding: 1rem;
    border-radius: 0.75rem;
    display: inline-block;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.result-title {
    color: black;
    font-weight: bold;
    font-size: 16px;
}

.result-subtitle {
    color: #6b7280;
    font-size: 12px;
    margin-top: 0.25rem;
}

/* Proof секция */
.proof-section {
    padding: 2rem 0 3rem;
    background: linear-gradient(135deg, #fef7ed 0%, #fff8f3 100%);
}

.section-subtitle {
    color: #6b7280;
    font-size: 13px;
    max-width: 600px;
    margin: 0 auto;
}

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

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

.proof-card {
    padding: 1.25rem;
    border-radius: 1rem;
    border: 2px solid #93c5fd;
    background-color: #eff6ff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.proof-green {
    background-color: #eff6ff;
    border-color: #93c5fd;
}

.proof-red {
    background-color: #eff6ff;
    border-color: #93c5fd;
}

.proof-number {
    color: #3b82f6;
    font-weight: bold;
    font-size: 20px;
    margin-bottom: 0.5rem;
}

.proof-red .proof-number {
    color: #3b82f6;
}

.proof-text {
    color: #374151;
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

/* Доктор */
.doctor-section {
    background: linear-gradient(135deg, #e0f2f7, #ccecf5);
    border: 2px solid #a7d9ed;
    padding: 0.75rem;
    border-radius: 1rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.doctor-title {
    color: #1e40af;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
}

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

.doctor-left {
    width: 100%;
    text-align: center;
}

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

.doctor-image {
    width: 128px;
    height: 128px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.doctor-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #1e40af;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 10px;
    font-weight: 500;
}

.doctor-info {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: white;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #fca5a5;
}

.doctor-name {
    color: #1f2937;
    font-weight: bold;
    font-size: 14px;
}

.doctor-position {
    color: #6b7280;
    font-size: 12px;
}

.doctor-right {
    width: 100%;
}

.doctor-quote {
    position: relative;
    background-color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #fed7aa;
}

.quote-mark {
    position: absolute;
    width: 24px;
    height: 24px;
    background-color: #FF6A00;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 14px;
}

.quote-start {
    top: -8px;
    left: -8px;
}

.quote-end {
    bottom: -8px;
    right: -8px;
}

.quote-content {
    margin-top: 0.75rem;
}

.quote-paragraph {
    font-size: 13px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.highlight-red {
    color: #dc2626;
    font-weight: bold;
}

/* Formula секция */
.formula-section {
    padding: 1.5rem 0 2.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #f0fdf4 100%);
}

.formula-title {
    color: #FF6A00;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.25rem;
}

.formula-subtitle {
    text-align: center;
    font-size: 13px;
    margin-bottom: 1rem;
    padding: 0 0.25rem;
}

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

.formula-left {
    width: 100%;
}

.formula-right {
    width: 100%;
}

.order-form {
    background-color: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid #fbbf24;
}

.urgent-warning {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
    border-radius: 0.25rem;
}

.urgent-text {
    color: #b91c1c;
    font-size: 10px;
    font-weight: bold;
}

.order-title {
    color: #dc2626;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
}

.price-section {
    text-align: center;
    margin-bottom: 0.5rem;
}

.price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 13px;
}

.new-price {
    color: #fbbf24;
    background-color: #fef3c7;
    padding: 0.125rem 0.375rem;
    border-radius: 0.5rem;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #fbbf24;
}

.price-warning {
    color: #dc2626;
    font-size: 10px;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.savings-badge {
    background-color: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    border: 2px solid #fbbf24;
}

.savings-text {
    font-size: 10px;
    font-weight: bold;
}

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

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

.form-label {
    display: block;
    color: #374151;
    font-size: 10px;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.form-input {
    width: 100%;
    padding: 0.5rem;
    border: 2px solid #fca5a5;
    border-radius: 0.5rem;
    font-size: 12px;
    outline: none;
}

.form-input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 2px rgba(239, 68, 68, 0.2);
}

.order-button {
    width: 100%;
    background-color: #fbbf24;
    color: black;
    font-weight: bold;
    font-size: 13px;
    padding: 0.625rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 4px solid #ef4444;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.order-button:hover {
    transform: scale(1.05);
}

.order-info {
    margin-top: 0.75rem;
    text-align: center;
}

.order-disclaimer {
    color: #6b7280;
    font-size: 8px;
    margin-bottom: 0.5rem;
}

.recent-orders {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 2px solid #e5e7eb;
}

.recent-text {
    color: #6b7280;
    font-size: 8px;
    font-weight: bold;
}

.guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    font-size: 8px;
    color: #6b7280;
}

/* Футер */
.footer {
    background-color: #1f2937;
    padding: 1.5rem 0;
}

.footer-text {
    color: #d1d5db;
    font-size: 10px;
    margin-bottom: 0.25rem;
}

.footer-disclaimer {
    color: #9ca3af;
    font-size: 8px;
}

/* Ингредиенты */
.ingredients-image {
    width: 100%;
    max-width: 800px;
    height: 150px;
    object-fit: cover;
    object-position: center 70%;
    border-radius: 0.75rem;
    margin: 0 auto;
    display: block;
}

.ingredients-caption {
    color: #6b7280;
    text-align: center;
    margin-top: 0.25rem;
    font-size: 9px;
}

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

.ingredient-card {
    padding: 0.5rem;
    text-align: center;
    border: 2px solid #86efac;
    border-radius: 0.75rem;
    background-color: white;
}

.ingredient-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(to bottom right, #4CAF50, #10b981);
    border-radius: 50%;
    margin: 0 auto 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.ingredient-emoji {
    color: white;
    font-weight: bold;
    font-size: 20px;
}

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

.ingredient-title {
    font-weight: bold;
    font-size: 8px;
    color: #15803d;
    margin: 0;
    padding: 0;
    margin-bottom: 0.25rem;
}

.ingredient-description {
    font-size: 7px;
    color: #6b7280;
    margin: 0;
    padding: 0;
}

.unique-combination {
    background-color: #fef2f2;
    border: 2px solid #ef4444;
    padding: 0.75rem;
    border-radius: 0.75rem;
}

.unique-title {
    color: #dc2626;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
}

.unique-text {
    color: #b91c1c;
    font-size: 12px;
    text-align: center;
    line-height: 1.5;
}

/* Как принимать */
.how-to-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #fff8f3 0%, #fef7ed 100%);
}

.how-to-title {
    color: #FF6A00;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.25rem;
}

.how-to-subtitle {
    text-align: center;
    font-size: 13px;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}

.how-to-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.how-to-left {
    width: 100%;
}

.how-to-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 0.75rem;
}

.how-to-caption {
    color: #6b7280;
    text-align: center;
    margin-top: 0.25rem;
    font-size: 9px;
}

.how-to-right {
    width: 100%;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 2px solid;
}

.step-yellow {
    background-color: #fffbeb;
    border-color: #fde047;
}

.step-blue {
    background-color: #eff6ff;
    border-color: #93c5fd;
}

.step-green {
    background-color: #f0fdf4;
    border-color: #86efac;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.step-yellow .step-number {
    background-color: #fbbf24;
    color: black;
}

.step-blue .step-number {
    background-color: #3b82f6;
    color: white;
}

.step-green .step-number {
    background-color: #10b981;
    color: white;
}

.step-text {
    font-size: 13px;
    font-weight: bold;
    color: #374151;
}

.how-to-highlight {
    background: linear-gradient(to right, #f0fdf4, #fef3c7);
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 2px solid #86efac;
    text-align: center;
}

.highlight-text {
    font-size: 13px;
    margin-bottom: 0.75rem;
    font-weight: bold;
    color: #374151;
}

.highlight-button {
    background-color: #dc2626;
    color: white;
    font-size: 13px;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.highlight-button:hover {
    transform: scale(1.05);
}

/* Ограниченное предложение */
.limited-offer-section {
    padding: 2rem 0;
    background: linear-gradient(to right, #dc2626, #ea580c);
}

.offer-card {
    background-color: white;
    border-radius: 0.75rem;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    border: 4px solid #fbbf24;
}

.offer-left {
    width: 100%;
    text-align: center;
}

.offer-image {
    width: 100%;
    max-width: 240px;
    height: 280px;
    object-fit: cover;
    border-radius: 0.75rem;
    margin: 0 auto;
    border: 4px solid #dc2626;
}

.offer-caption {
    color: #6b7280;
    text-align: center;
    margin-top: 0.25rem;
    font-size: 9px;
}

.offer-right {
    width: 100%;
    text-align: center;
}

.discount-badge {
    background-color: #dc2626;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
    transform: rotate(-2deg);
}

.discount-text {
    font-size: 14px;
    font-weight: bold;
}

.offer-title {
    color: #FF6A00;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.price-highlight {
    background-color: #fef3c7;
    padding: 0.75rem;
    border-radius: 0.75rem;
    border: 2px solid #fbbf24;
    margin-bottom: 0.75rem;
}

.old-price-text {
    font-size: 16px;
    margin-bottom: 0.25rem;
}

.line-through {
    text-decoration: line-through;
    color: #6b7280;
}

.new-price-text {
    color: #FF6A00;
    font-size: 22px;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.savings-text {
    font-size: 13px;
    color: #6b7280;
    font-weight: bold;
}

.urgency-box {
    background-color: #dc2626;
    color: white;
    padding: 0.5rem;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

.urgency-text {
    font-weight: bold;
    font-size: 13px;
    margin-bottom: 0.25rem;
}

.stock-text {
    font-size: 11px;
}

.offer-button {
    background-color: #fbbf24;
    color: black;
    font-weight: bold;
    font-size: 14px;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    width: 100%;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.offer-button:hover {
    transform: scale(1.05);
}

/* Отзывы */
.reviews-section {
    padding: 1.5rem 0;
    background: linear-gradient(135deg, #fef7ed 0%, #fff8f3 100%);
}

.reviews-title {
    color: #FF6A00;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
}

.reviews-subtitle {
    text-align: center;
    font-size: 13px;
    margin-bottom: 1.5rem;
    padding: 0 0.25rem;
}

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

.review-card {
    padding: 0.75rem;
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #86efac;
    border-radius: 0.75rem;
}

.review-header {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.review-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    flex-shrink: 0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #10b981;
}

.review-info {
    flex: 1;
}

.review-name {
    font-weight: bold;
    font-size: 11px;
    color: #374151;
    margin-bottom: 0.25rem;
}

.review-result {
    color: #10b981;
    font-weight: bold;
    font-size: 11px;
}

.review-text {
    color: #6b7280;
    font-size: 11px;
    line-height: 1.5;
}

.review-stars {
    color: #fbbf24;
    font-size: 12px;
    margin-top: 0.25rem;
}

/* Отзыв тренера */
.trainer-review {
    background: linear-gradient(to bottom right, #fef2f2, #fff7ed, #fef3c7);
    border: 4px solid #dc2626;
    border-radius: 1rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.trainer-header {
    text-align: center;
    margin-bottom: 1rem;
}

.trainer-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: linear-gradient(to right, #dc2626, #ea580c);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-weight: bold;
    font-size: 10px;
    margin-bottom: 0.5rem;
}

.badge-emoji {
    font-size: 12px;
}

.trainer-title {
    color: #FF6A00;
    font-size: 14px;
    font-weight: bold;
}

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

.trainer-left {
    width: 100%;
    text-align: center;
}

.trainer-avatar-container {
    position: relative;
    margin-bottom: 0.5rem;
}

.trainer-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    object-position: top center;
    margin: 0 auto;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 4px solid white;
}

.trainer-expert-badge {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #dc2626, #ea580c);
    color: white;
    padding: 0.125rem 0.25rem;
    border-radius: 9999px;
    font-size: 8px;
    font-weight: 500;
}

.trainer-info {
    padding: 0.5rem;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 2px solid #fca5a5;
}

.trainer-name {
    color: #1f2937;
    font-weight: bold;
    font-size: 11px;
    margin-bottom: 0.25rem;
}

.trainer-position {
    color: #6b7280;
    font-size: 9px;
}

.trainer-right {
    width: 100%;
}

.trainer-quote {
    position: relative;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 0.75rem;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid #fed7aa;
}

.quote-paragraph {
    font-size: 11px;
    color: #374151;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.highlight-orange {
    color: #ea580c;
    font-weight: bold;
}

.trainer-advice {
    background: linear-gradient(to right, #fef2f2, #fff7ed);
    padding: 0.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid #dc2626;
    margin-top: 0.5rem;
}

.advice-text {
    font-size: 10px;
    color: #374151;
    font-weight: bold;
}

.more-reviews-button {
    background-color: #dc2626;
    color: white;
    font-size: 13px;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    font-weight: bold;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.more-reviews-button:hover {
    transform: scale(1.05);
}

/* Финальная форма заказа */
.final-order-section {
    padding: 1rem 0;
    background-color: #dc2626;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.final-order-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.final-order-left {
    width: 100%;
    display: flex;
    justify-content: center;
}

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

.product-image {
    width: 200px;
    height: 240px;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 4px solid #fbbf24;
}

.discount-label {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: #fbbf24;
    color: #dc2626;
    font-weight: bold;
    font-size: 12px;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    transform: rotate(12deg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 2px solid white;
}

.stock-label {
    position: absolute;
    top: 12px;
    left: -12px;
    background-color: #dc2626;
    color: white;
    font-weight: bold;
    font-size: 8px;
    padding: 0.125rem 0.375rem;
    border-radius: 9999px;
    transform: rotate(-12deg);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.final-order-right {
    width: 100%;
}

.final-order-form {
    background-color: white;
    border-radius: 0.75rem;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 4px solid #fbbf24;
}

.final-urgent-warning {
    background-color: #fef2f2;
    border-left: 4px solid #ef4444;
    padding: 0.5rem;
    margin-bottom: 0.75rem;
    border-radius: 0.25rem;
}

.final-urgent-text {
    color: #b91c1c;
    font-size: 10px;
    font-weight: bold;
}

.final-order-title {
    color: #dc2626;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 0.5rem;
}

.final-price-section {
    text-align: center;
    margin-bottom: 0.5rem;
}

.final-price-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.25rem;
}

.final-old-price {
    color: #6b7280;
    text-decoration: line-through;
    font-size: 13px;
}

.final-new-price {
    color: #fbbf24;
    background-color: #fef3c7;
    padding: 0.125rem 0.375rem;
    border-radius: 0.5rem;
    font-size: 18px;
    font-weight: bold;
    border: 2px solid #fbbf24;
}

.final-price-warning {
    color: #dc2626;
    font-size: 10px;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.final-savings-badge {
    background-color: #ef4444;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin-bottom: 0.75rem;
    border: 2px solid #fbbf24;
}

.final-savings-text {
    font-size: 10px;
    font-weight: bold;
}

.final-order-form-fields {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.final-order-button {
    width: 100%;
    background-color: #fbbf24;
    color: black;
    font-weight: bold;
    font-size: 13px;
    padding: 0.625rem;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    border: 4px solid #ef4444;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.final-order-button:hover {
    transform: scale(1.05);
}

.final-order-info {
    margin-top: 0.75rem;
    text-align: center;
}

.final-order-disclaimer {
    color: #6b7280;
    font-size: 8px;
    margin-bottom: 0.5rem;
}

.final-recent-orders {
    background-color: #f9fafb;
    border-radius: 0.5rem;
    padding: 0.5rem;
    margin-bottom: 0.5rem;
    border: 2px solid #e5e7eb;
}

.final-recent-text {
    color: #6b7280;
    font-size: 8px;
    font-weight: bold;
}

.final-guarantees {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.25rem;
    font-size: 8px;
    color: #6b7280;
}

/* Медиа запросы для адаптивности */
@media (min-width: 640px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .hero-description {
        font-size: 20px;
    }
    
    .hero-cta-button {
        font-size: 20px;
        padding: 1.25rem 2.5rem;
    }
    
    .hero-warning-box {
        padding: 2rem;
    }
    
    .hero-warning-title {
        font-size: 20px;
    }
    
    .hero-warning-text {
        font-size: 16px;
    }
    
    .warning-text {
        font-size: 13px;
    }
    
    .warning-subtext {
        font-size: 11px;
    }
    
    .hero-content {
        padding: 1rem;
        gap: 1.5rem;
    }
    
    .image-container {
        max-width: 280px;
        height: 200px;
    }
    
    .image-caption {
        font-size: 10px;
    }
    
    .hero-right-title {
        font-size: 18px;
    }
    
    .hero-right-text {
        font-size: 13px;
    }
    
    .cta-button {
        font-size: 14px;
        width: auto;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .story-highlight-text {
        font-size: 16px;
    }
    
    .story-text {
        font-size: 16px;
    }
    
    .quote-text {
        font-size: 16px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-text {
        font-size: 14px;
    }
    
    .stat-text-content {
        font-size: 16px;
    }
    
    .stats-results-box {
        padding: 2rem;
    }
    
    .stats-item {
        font-size: 16px;
    }
    
    .scandal-title {
        font-size: 20px;
    }
    
    .scandal-text {
        font-size: 16px;
    }
    
    .scandal-quote-text {
        font-size: 14px;
    }
    
    .comparison-title {
        font-size: 20px;
    }
    
    .comparison-card-title {
        font-size: 16px;
    }
    
    .comparison-name {
        font-size: 14px;
    }
    
    .comparison-image {
        height: 220px;
        object-position: center center;
    }
    
    .comparison-text {
        font-size: 14px;
    }
    
    .result-title {
        font-size: 20px;
    }
    
    .result-subtitle {
        font-size: 14px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .proof-number {
        font-size: 24px;
    }
    
    .proof-text {
        font-size: 14px;
    }
    
    .proof-card {
        padding: 1.5rem;
    }
    
    .doctor-title {
        font-size: 20px;
    }
    
    .doctor-image {
        width: 160px;
        height: 160px;
    }
    
    .doctor-badge {
        font-size: 12px;
    }
    
    .doctor-name {
        font-size: 16px;
    }
    
    .doctor-position {
        font-size: 14px;
    }
    
    .quote-paragraph {
        font-size: 16px;
    }
    
    .formula-title {
        font-size: 24px;
    }
    
    .formula-subtitle {
        font-size: 16px;
    }
    
    .urgent-text {
        font-size: 12px;
    }
    
    .order-title {
        font-size: 20px;
    }
    
    .old-price {
        font-size: 16px;
    }
    
    .new-price {
        font-size: 24px;
    }
    
    .price-warning {
        font-size: 12px;
    }
    
    .savings-text {
        font-size: 12px;
    }
    
    .form-label {
        font-size: 12px;
    }
    
    .form-input {
        font-size: 14px;
    }
    
    .order-button {
        font-size: 16px;
    }
    
    .order-disclaimer {
        font-size: 10px;
    }
    
    .recent-text {
        font-size: 10px;
    }
    
    .guarantees {
        font-size: 10px;
    }
    
    .footer-text {
        font-size: 12px;
    }
    
    .footer-disclaimer {
        font-size: 10px;
    }
    
    /* Новые стили для адаптивности */
    .ingredients-image {
        height: 200px;
    }
    
    .ingredients-caption {
        font-size: 10px;
    }
    
    .ingredients-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 1rem;
    }
    
    .ingredient-icon {
        width: 96px;
        height: 96px;
    }
    
    .ingredient-emoji {
        font-size: 24px;
    }
    
    .ingredient-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .ingredient-title {
        font-size: 10px;
    }
    
    .ingredient-description {
        font-size: 8px;
    }
    
    .unique-title {
        font-size: 18px;
    }
    
    .unique-text {
        font-size: 14px;
    }
    
    .how-to-title {
        font-size: 24px;
    }
    
    .how-to-subtitle {
        font-size: 16px;
    }
    
    .how-to-content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    
    .how-to-left {
        width: 50%;
    }
    
    .how-to-right {
        width: 50%;
    }
    
    .how-to-image {
        height: 250px;
    }
    
    .how-to-caption {
        font-size: 10px;
    }
    
    .step-number {
        width: 48px;
        height: 48px;
        font-size: 18px;
    }
    
    .step-text {
        font-size: 16px;
    }
    
    .highlight-text {
        font-size: 16px;
    }
    
    .highlight-button {
        font-size: 16px;
    }
    
    .offer-card {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
        padding: 1.5rem;
    }
    
    .offer-left {
        width: 50%;
    }
    
    .offer-right {
        width: 50%;
        text-align: left;
    }
    
    .offer-image {
        max-width: 300px;
        height: 350px;
    }
    
    .offer-caption {
        font-size: 10px;
    }
    
    .discount-text {
        font-size: 18px;
    }
    
    .offer-title {
        font-size: 24px;
    }
    
    .old-price-text {
        font-size: 24px;
    }
    
    .new-price-text {
        font-size: 36px;
    }
    
    .savings-text {
        font-size: 16px;
    }
    
    .urgency-text {
        font-size: 16px;
    }
    
    .stock-text {
        font-size: 14px;
    }
    
    .offer-button {
        font-size: 18px;
    }
    
    .reviews-title {
        font-size: 24px;
    }
    
    .reviews-subtitle {
        font-size: 16px;
    }
    
    .reviews-grid {
        gap: 1.5rem;
    }
    
    .review-avatar {
        width: 64px;
        height: 64px;
        object-position: top center;
    }
    
    .review-name {
        font-size: 14px;
    }
    
    .review-result {
        font-size: 14px;
    }
    
    .review-text {
        font-size: 14px;
    }
    
    .review-stars {
        font-size: 14px;
    }
    
    .trainer-badge {
        font-size: 12px;
    }
    
    .badge-emoji {
        font-size: 14px;
    }
    
    .trainer-title {
        font-size: 18px;
    }
    
    .trainer-content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    
    .trainer-left {
        width: 33.333333%;
    }
    
    .trainer-right {
        width: 66.666667%;
    }
    
    .trainer-avatar {
        width: 96px;
        height: 96px;
        object-position: top center;
    }
    
    .trainer-expert-badge {
        font-size: 10px;
    }
    
    .trainer-name {
        font-size: 14px;
    }
    
    .trainer-position {
        font-size: 12px;
    }
    
    .quote-paragraph {
        font-size: 14px;
    }
    
    .advice-text {
        font-size: 12px;
    }
    
    .more-reviews-button {
        font-size: 16px;
    }
    
    .final-order-content {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
    }
    
    .final-order-left {
        width: 50%;
    }
    
    .final-order-right {
        width: 50%;
    }
    
    .product-image {
        width: 250px;
        height: 300px;
    }
    
    .discount-label {
        font-size: 14px;
    }
    
    .stock-label {
        font-size: 10px;
    }
    
    .final-urgent-text {
        font-size: 12px;
    }
    
    .final-order-title {
        font-size: 20px;
    }
    
    .final-old-price {
        font-size: 16px;
    }
    
    .final-new-price {
        font-size: 24px;
    }
    
    .final-price-warning {
        font-size: 12px;
    }
    
    .final-savings-text {
        font-size: 12px;
    }
    
    .final-order-button {
        font-size: 16px;
    }
    
    .final-order-disclaimer {
        font-size: 10px;
    }
    
    .final-recent-text {
        font-size: 10px;
    }
    
    .final-guarantees {
        font-size: 10px;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-description {
        font-size: 24px;
    }
    
    .hero-cta-button {
        font-size: 24px;
        padding: 1.5rem 3rem;
    }
    
    .hero-warning-box {
        padding: 2.5rem;
    }
    
    .hero-warning-title {
        font-size: 24px;
    }
    
    .hero-warning-text {
        font-size: 18px;
    }
    
    .container {
        padding: 0 24px;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
        padding: 2rem;
    }
    
    .hero-left {
        width: 50%;
    }
    
    .hero-right {
        width: 50%;
        text-align: left;
    }
    
    .image-container {
        max-width: 400px;
        height: 280px;
    }
    
    .image-caption {
        font-size: 14px;
    }
    
    .hero-right-title {
        font-size: 28px;
    }
    
    .hero-right-text {
        font-size: 18px;
    }
    
    .cta-button {
        font-size: 18px;
        padding: 1rem 2.5rem;
    }
    
    .section-title {
        font-size: 42px;
    }
    
    .story-highlight-text {
        font-size: 20px;
    }
    
    .story-text {
        font-size: 18px;
    }
    
    .quote-text {
        font-size: 18px;
    }
    
    .stats-grid {
        gap: 1.5rem;
    }
    
    .stat-number {
        font-size: 48px;
    }
    
    .stat-text {
        font-size: 16px;
    }
    
    .stat-text-content {
        font-size: 18px;
    }
    
    .stats-results-box {
        padding: 2rem;
    }
    
    .stats-item {
        font-size: 16px;
    }
    
    .scandal-title {
        font-size: 28px;
    }
    
    .scandal-text {
        font-size: 18px;
    }
    
    .scandal-quote-text {
        font-size: 16px;
    }
    
    .comparison-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .comparison-card-title {
        font-size: 24px;
    }
    
    .comparison-name {
        font-size: 20px;
    }
    
    .comparison-image {
        height: 320px;
        object-position: center center;
    }
    
    .comparison-text {
        font-size: 16px;
    }
    
    .result-title {
        font-size: 24px;
    }
    
    .result-subtitle {
        font-size: 16px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .proof-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .proof-number {
        font-size: 28px;
    }
    
    .proof-text {
        font-size: 16px;
    }
    
    .proof-card {
        padding: 1.5rem;
    }
    
    .doctor-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }
    
    .doctor-left {
        width: 33.333333%;
    }
    
    .doctor-right {
        width: 66.666667%;
    }
    
    .doctor-image {
        width: 208px;
        height: 208px;
    }
    
    .doctor-badge {
        font-size: 14px;
    }
    
    .doctor-name {
        font-size: 18px;
    }
    
    .doctor-position {
        font-size: 16px;
    }
    
    .quote-paragraph {
        font-size: 18px;
    }
    
    .formula-title {
        font-size: 32px;
    }
    
    .formula-subtitle {
        font-size: 18px;
    }
    
    .formula-content {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .urgent-text {
        font-size: 16px;
    }
    
    .order-title {
        font-size: 32px;
    }
    
    .old-price {
        font-size: 24px;
    }
    
    .new-price {
        font-size: 36px;
    }
    
    .price-warning {
        font-size: 16px;
    }
    
    .savings-text {
        font-size: 16px;
    }
    
    .form-label {
        font-size: 16px;
    }
    
    .form-input {
        font-size: 16px;
        padding: 0.75rem 1rem;
    }
    
    .order-button {
        font-size: 20px;
        padding: 1rem;
    }
    
    .order-disclaimer {
        font-size: 14px;
    }
    
    .recent-text {
        font-size: 14px;
    }
    
    .guarantees {
        font-size: 14px;
    }
    
    .footer-text {
        font-size: 14px;
    }
    
    .footer-disclaimer {
        font-size: 12px;
    }
    
    .ingredients-image {
        height: 300px;
        object-position: center 70%;
    }
    
    .ingredients-caption {
        font-size: 14px;
    }
    
    .ingredients-grid {
        gap: 1.5rem;
    }
    
    .ingredient-icon {
        width: 192px;
        height: 192px;
    }
    
    .ingredient-emoji {
        font-size: 40px;
    }
    
    .ingredient-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 50%;
    }
    
    .ingredient-title {
        font-size: 18px;
    }
    
    .ingredient-description {
        font-size: 16px;
    }
    
    .unique-title {
        font-size: 22px;
    }
    
    .unique-text {
        font-size: 18px;
    }
    
    .how-to-title {
        font-size: 32px;
    }
    
    .how-to-subtitle {
        font-size: 18px;
    }
    
    .how-to-content {
        gap: 3rem;
    }
    
    .how-to-image {
        height: 450px;
    }
    
    .how-to-caption {
        font-size: 14px;
    }
    
    .step-number {
        width: 64px;
        height: 64px;
        font-size: 24px;
    }
    
    .step-text {
        font-size: 18px;
    }
    
    .highlight-text {
        font-size: 18px;
    }
    
    .highlight-button {
        font-size: 18px;
    }
    
    .offer-card {
        gap: 3rem;
        padding: 2rem;
    }
    
    .offer-image {
        max-width: 400px;
        height: 500px;
    }
    
    .offer-caption {
        font-size: 14px;
    }
    
    .discount-text {
        font-size: 24px;
    }
    
    .offer-title {
        font-size: 36px;
    }
    
    .old-price-text {
        font-size: 24px;
    }
    
    .new-price-text {
        font-size: 36px;
    }
    
    .savings-text {
        font-size: 18px;
    }
    
    .urgency-text {
        font-size: 18px;
    }
    
    .stock-text {
        font-size: 16px;
    }
    
    .offer-button {
        font-size: 20px;
    }
    
    .reviews-title {
        font-size: 32px;
    }
    
    .reviews-subtitle {
        font-size: 18px;
    }
    
    .reviews-grid {
        gap: 2rem;
    }
    
    .review-avatar {
        width: 80px;
        height: 80px;
        object-position: top center;
    }
    
    .review-name {
        font-size: 16px;
    }
    
    .review-result {
        font-size: 16px;
    }
    
    .review-text {
        font-size: 16px;
    }
    
    .review-stars {
        font-size: 16px;
    }
    
    .trainer-badge {
        font-size: 16px;
    }
    
    .badge-emoji {
        font-size: 18px;
    }
    
    .trainer-title {
        font-size: 28px;
    }
    
    .trainer-content {
        gap: 3rem;
    }
    
    .trainer-avatar {
        width: 160px;
        height: 160px;
        object-position: top center;
    }
    
    .trainer-expert-badge {
        font-size: 14px;
    }
    
    .trainer-name {
        font-size: 18px;
    }
    
    .trainer-position {
        font-size: 16px;
    }
    
    .quote-paragraph {
        font-size: 18px;
    }
    
    .advice-text {
        font-size: 18px;
    }
    
    .more-reviews-button {
        font-size: 18px;
    }
    
    .final-order-content {
        gap: 3rem;
    }
    
    .product-image {
        width: 400px;
        height: 500px;
    }
    
    .discount-label {
        font-size: 24px;
    }
    
    .stock-label {
        font-size: 16px;
    }
    
    .final-urgent-text {
        font-size: 16px;
    }
    
    .final-order-title {
        font-size: 32px;
    }
    
    .final-old-price {
        font-size: 24px;
    }
    
    .final-new-price {
        font-size: 36px;
    }
    
    .final-price-warning {
        font-size: 16px;
    }
    
    .final-savings-text {
        font-size: 16px;
    }
    
    .final-order-button {
        font-size: 20px;
    }
    
    .final-order-disclaimer {
        font-size: 14px;
    }
    
    .final-recent-text {
        font-size: 14px;
    }
    
    .final-guarantees {
        font-size: 14px;
    }
} 