:root {
--color-primary: #2c5f2d;
--color-primary-dark: #1e4620;
--color-primary-light: #4a8a4c;
--color-accent: #f4a261;
--color-background: #ffffff;
--color-background-alt: #f8f9fa;
--color-text: #2d3436;
--color-text-light: #636e72;

--font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
--font-size-base: 16px;
--font-size-small: 14px;
--font-size-large: 18px;
--font-size-h1: 42px;
--font-size-h2: 32px;
--font-size-h3: 24px;
--font-size-h4: 20px;
--line-height-base: 1.6;
--line-height-heading: 1.3;
--font-weight-normal: 400;
--font-weight-medium: 500;
--font-weight-bold: 700;

--shadow-small: 0 2px 4px rgba(0, 0, 0, 0.1);
--shadow-medium: 0 4px 12px rgba(0, 0, 0, 0.1);
--shadow-large: 0 8px 24px rgba(0, 0, 0, 0.15);
--shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.12);

--radius-small: 4px;
--radius-medium: 8px;
--radius-large: 12px;
--radius-xlarge: 16px;
--radius-round: 50%;

--spacing-xs: 8px;
--spacing-sm: 16px;
--spacing-md: 24px;
--spacing-lg: 32px;
--spacing-xl: 48px;
--spacing-xxl: 64px;

--transition-fast: 0.2s ease;
--transition-medium: 0.3s ease;
--transition-slow: 0.5s ease;

--container-width: 1200px;
--container-padding: 20px;
}

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

html {
font-size: var(--font-size-base);
scroll-behavior: smooth;
}

body {
font-family: var(--font-primary);
line-height: var(--line-height-base);
color: var(--color-text);
background-color: var(--color-background);
overflow-x: hidden;
}

.container {
max-width: var(--container-width);
margin: 0 auto;
padding: 0 var(--container-padding);
}

h1, h2, h3, h4, h5, h6 {
line-height: var(--line-height-heading);
font-weight: var(--font-weight-bold);
color: var(--color-text);
margin-bottom: var(--spacing-sm);
}

h1 {
font-size: var(--font-size-h1);
}

h2 {
font-size: var(--font-size-h2);
}

h3 {
font-size: var(--font-size-h3);
}

h4 {
font-size: var(--font-size-h4);
}

p {
margin-bottom: var(--spacing-sm);
}

a {
color: var(--color-primary);
text-decoration: none;
transition: color var(--transition-fast);
}

a:hover {
color: var(--color-primary-dark);
}

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

header {
background-color: var(--color-background);
box-shadow: var(--shadow-small);
position: sticky;
top: 0;
z-index: 1000;
padding: var(--spacing-sm) 0;
}

header .container {
display: flex;
justify-content: space-between;
align-items: center;
}

.brand {
font-size: var(--font-size-h3);
font-weight: var(--font-weight-bold);
color: var(--color-primary);
}

nav {
display: flex;
gap: var(--spacing-md);
}

nav a {
color: var(--color-text);
font-weight: var(--font-weight-medium);
padding: var(--spacing-xs) var(--spacing-sm);
border-radius: var(--radius-small);
transition: all var(--transition-fast);
}

nav a:hover {
background-color: var(--color-background-alt);
color: var(--color-primary);
}

main {
min-height: 60vh;
}

section {
padding: var(--spacing-xxl) 0;
}

.hero {
background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
position: relative;
overflow: hidden;
padding: 80px 0 100px;
min-height: 90vh;
display: flex;
align-items: center;
}

.hero-bg-shapes {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
overflow: hidden;
z-index: 0;
}

.shape {
position: absolute;
background: linear-gradient(135deg, rgba(44, 95, 45, 0.1), rgba(74, 138, 76, 0.1));
border-radius: 50%;
filter: blur(60px);
animation: float 20s infinite ease-in-out;
}

.shape-1 {
width: 500px;
height: 500px;
top: -100px;
left: -100px;
animation-delay: 0s;
}

.shape-2 {
width: 400px;
height: 400px;
top: 50%;
right: -100px;
animation-delay: 5s;
}

.shape-3 {
width: 350px;
height: 350px;
bottom: -100px;
left: 30%;
animation-delay: 10s;
}

@keyframes float {
0%, 100% { transform: translate(0, 0) scale(1); }
33% { transform: translate(30px, -30px) scale(1.1); }
66% { transform: translate(-20px, 20px) scale(0.9); }
}

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

.hero-left {
color: #fff;
}

.hero-badge {
display: inline-block;
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
padding: 8px 20px;
border-radius: 50px;
font-size: 14px;
font-weight: 500;
margin-bottom: 24px;
animation: slideDown 0.6s ease;
}

.hero-title {
font-size: 56px;
font-weight: 800;
line-height: 1.2;
margin-bottom: 24px;
animation: slideUp 0.6s ease 0.2s both;
}

.gradient-text {
background: linear-gradient(135deg, #2c5f2d, #4a8a4c);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.hero-subtitle {
font-size: 18px;
line-height: 1.7;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 40px;
animation: slideUp 0.6s ease 0.4s both;
}

.hero-stats {
display: flex;
gap: 32px;
margin-bottom: 40px;
animation: slideUp 0.6s ease 0.6s both;
}

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

.stat-number {
font-size: 28px;
font-weight: 700;
color: #4a8a4c;
margin-bottom: 4px;
}

.stat-label {
font-size: 13px;
color: rgba(255, 255, 255, 0.6);
}

.hero-cta-group {
display: flex;
gap: 16px;
animation: slideUp 0.6s ease 0.8s both;
}

.hero-cta-primary, .hero-cta-secondary {
padding: 16px 32px;
border-radius: 12px;
font-weight: 600;
font-size: 16px;
transition: all 0.3s ease;
text-decoration: none;
display: inline-block;
}

.hero-cta-primary {
background: linear-gradient(135deg, #4a8a4c, #2c5f2d);
color: #fff;
box-shadow: 0 8px 24px rgba(74, 138, 76, 0.3);
}

.hero-cta-primary:hover {
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(74, 138, 76, 0.4);
}

.hero-cta-secondary {
background: rgba(255, 255, 255, 0.1);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.2);
color: #fff;
}

.hero-cta-secondary:hover {
background: rgba(255, 255, 255, 0.15);
}

.hero-right {
position: relative;
animation: fadeIn 0.8s ease 1s both;
}

.product-showcase {
position: relative;
width: 100%;
aspect-ratio: 1;
display: flex;
align-items: center;
justify-content: center;
}

.product-glow {
position: absolute;
width: 80%;
height: 80%;
background: radial-gradient(circle, rgba(74, 138, 76, 0.3), transparent 70%);
filter: blur(40px);
animation: pulse 3s infinite;
}

.product-image {
position: relative;
z-index: 2;
max-width: 70%;
height: auto;
filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.3));
animation: floatProduct 6s infinite ease-in-out;
}

.floating-card {
position: absolute;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 16px;
padding: 12px 20px;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
display: flex;
align-items: center;
gap: 8px;
font-weight: 600;
color: #2c5f2d;
animation: floatCard 4s infinite ease-in-out;
}

.card-icon {
font-size: 20px;
}

.card-1 {
top: 10%;
left: -5%;
animation-delay: 0s;
}

.card-2 {
top: 50%;
right: -5%;
animation-delay: 1.3s;
}

.card-3 {
bottom: 15%;
left: 5%;
animation-delay: 2.6s;
}

.price-card {
margin-top: 40px;
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 32px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
animation: slideUp 0.6s ease 1.2s both;
}

.price-header {
text-align: center;
font-size: 14px;
font-weight: 600;
color: #f4a261;
text-transform: uppercase;
letter-spacing: 1px;
margin-bottom: 16px;
}

.price-content {
display: flex;
align-items: center;
justify-content: center;
gap: 16px;
margin-bottom: 12px;
}

.price-old {
font-size: 20px;
color: #999;
text-decoration: line-through;
}

.price-new {
font-size: 42px;
font-weight: 800;
color: #2c5f2d;
}

.price-save {
text-align: center;
background: linear-gradient(135deg, #2c5f2d, #4a8a4c);
color: #fff;
padding: 8px 16px;
border-radius: 8px;
font-weight: 600;
font-size: 14px;
margin-bottom: 24px;
}

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

.quick-order-form input[type="text"],
.quick-order-form input[type="email"],
.quick-order-form input[type="tel"] {
padding: 14px 16px;
border: 2px solid #e0e0e0;
border-radius: 10px;
font-size: 15px;
transition: border-color 0.3s;
}

.quick-order-form input:focus {
outline: none;
border-color: #4a8a4c;
}

.checkbox-label {
display: flex;
align-items: start;
gap: 8px;
font-size: 13px;
color: #666;
}

.checkbox-label input {
margin-top: 2px;
}

.checkbox-label a {
color: #4a8a4c;
text-decoration: underline;
}

.submit-btn {
background: linear-gradient(135deg, #4a8a4c, #2c5f2d);
color: #fff;
padding: 16px;
border: none;
border-radius: 10px;
font-weight: 700;
font-size: 16px;
cursor: pointer;
transition: all 0.3s;
box-shadow: 0 4px 16px rgba(74, 138, 76, 0.3);
}

.submit-btn:hover {
transform: translateY(-2px);
box-shadow: 0 6px 24px rgba(74, 138, 76, 0.4);
}

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

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

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

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

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

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

.features {
background-color: var(--color-background-alt);
}

.features h2 {
text-align: center;
margin-bottom: var(--spacing-xl);
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--spacing-lg);
}

.feature-card {
background-color: var(--color-background);
padding: var(--spacing-lg);
border-radius: var(--radius-large);
box-shadow: var(--shadow-small);
text-align: center;
transition: all var(--transition-medium);
}

.feature-card:hover {
box-shadow: var(--shadow-hover);
transform: translateY(-4px);
}

.feature-icon {
font-size: 48px;
margin-bottom: var(--spacing-md);
}

.feature-card h3 {
color: var(--color-primary);
margin-bottom: var(--spacing-sm);
}

.benefits h2 {
text-align: center;
margin-bottom: var(--spacing-xl);
}

.benefits-layout {
display: grid;
grid-template-columns: 1fr 1fr;
gap: var(--spacing-xl);
align-items: center;
}

.benefits-image img {
border-radius: var(--radius-large);
box-shadow: var(--shadow-medium);
}

.benefits-list {
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}

.benefit-item {
padding: var(--spacing-md);
background-color: var(--color-background-alt);
border-radius: var(--radius-medium);
border-left: 4px solid var(--color-primary);
}

.benefit-item h3 {
color: var(--color-primary);
font-size: var(--font-size-h4);
}

.description {
background-color: var(--color-background-alt);
}

.description h2 {
text-align: center;
margin-bottom: var(--spacing-xl);
}

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

.instructions {
background-color: var(--color-background);
}

.instructions h2 {
text-align: center;
margin-bottom: var(--spacing-xl);
}

.instructions-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: var(--spacing-lg);
}

.instruction-step {
text-align: center;
padding: var(--spacing-lg);
background-color: var(--color-background-alt);
border-radius: var(--radius-large);
transition: all var(--transition-medium);
}

.instruction-step:hover {
box-shadow: var(--shadow-medium);
transform: translateY(-4px);
}

.step-number {
width: 60px;
height: 60px;
background-color: var(--color-primary);
color: var(--color-background);
border-radius: var(--radius-round);
display: flex;
align-items: center;
justify-content: center;
font-size: var(--font-size-h2);
font-weight: var(--font-weight-bold);
margin: 0 auto var(--spacing-md);
}

.composition {
background-color: var(--color-background-alt);
}

.composition h2 {
text-align: center;
margin-bottom: var(--spacing-xl);
}

.composition-layout {
display: grid;
grid-template-columns: 1.5fr 1fr;
gap: var(--spacing-xl);
align-items: start;
}

.ingredients-list {
list-style: none;
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}

.ingredients-list li {
padding: var(--spacing-md);
background-color: var(--color-background);
border-radius: var(--radius-medium);
box-shadow: var(--shadow-small);
}

.composition-note {
margin-top: var(--spacing-md);
padding: var(--spacing-md);
background-color: var(--color-warning);
border-radius: var(--radius-medium);
font-weight: var(--font-weight-medium);
}

.composition-image img {
border-radius: var(--radius-large);
box-shadow: var(--shadow-medium);
}

.reviews {
background-color: var(--color-background);
}

.reviews h2 {
text-align: center;
margin-bottom: var(--spacing-xl);
}

.reviews-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
gap: var(--spacing-lg);
}

.review-card {
background-color: var(--color-background-alt);
padding: var(--spacing-lg);
border-radius: var(--radius-large);
box-shadow: var(--shadow-small);
transition: all var(--transition-medium);
}

.review-card:hover {
box-shadow: var(--shadow-medium);
transform: translateY(-4px);
}

.review-header {
display: flex;
justify-content: space-between;
align-items: center;
margin-bottom: var(--spacing-sm);
}

.reviewer-name {
font-weight: var(--font-weight-bold);
color: var(--color-primary);
}

.review-rating {
color: var(--color-accent);
}

.review-text {
color: var(--color-text-light);
margin-bottom: var(--spacing-sm);
}

.review-date {
font-size: var(--font-size-small);
color: var(--color-text-light);
}

.faq {
background-color: var(--color-background-alt);
}

.faq h2 {
text-align: center;
margin-bottom: var(--spacing-xl);
}

.faq-list {
max-width: 900px;
margin: 0 auto;
display: flex;
flex-direction: column;
gap: var(--spacing-md);
}

.faq-item {
background-color: var(--color-background);
padding: var(--spacing-lg);
border-radius: var(--radius-medium);
box-shadow: var(--shadow-small);
cursor: pointer;
transition: all var(--transition-fast);
}

.faq-item:hover {
box-shadow: var(--shadow-medium);
}

.faq-question {
color: var(--color-primary);
font-size: var(--font-size-h4);
margin-bottom: var(--spacing-sm);
}

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

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

.cta-section h2 {
color: var(--color-background);
margin-bottom: var(--spacing-md);
}

.cta-description {
font-size: var(--font-size-large);
margin-bottom: var(--spacing-lg);
}

.cta-button-large {
display: inline-block;
background-color: var(--color-accent);
color: var(--color-background);
padding: var(--spacing-md) var(--spacing-xl);
border-radius: var(--radius-medium);
font-size: var(--font-size-large);
font-weight: var(--font-weight-bold);
box-shadow: var(--shadow-large);
transition: all var(--transition-fast);
}

.cta-button-large:hover {
background-color: #e89350;
box-shadow: var(--shadow-hover);
transform: translateY(-2px);
}

.science-section {
background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
padding: 80px 0;
}

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

.section-badge {
display: inline-block;
background: linear-gradient(135deg, #2c5f2d, #4a8a4c);
color: #fff;
padding: 8px 20px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
margin-bottom: 16px;
}

.section-subtitle {
color: var(--color-text-light);
font-size: 18px;
max-width: 600px;
margin: 0 auto;
}

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

.science-card {
background: #fff;
padding: 40px 32px;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
transition: all 0.3s ease;
position: relative;
overflow: hidden;
}

.science-card::before {
content: '';
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 4px;
background: linear-gradient(90deg, #2c5f2d, #4a8a4c);
transform: scaleX(0);
transition: transform 0.3s ease;
}

.science-card:hover::before {
transform: scaleX(1);
}

.science-card:hover {
transform: translateY(-8px);
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
}

.science-number {
font-size: 48px;
font-weight: 800;
color: rgba(74, 138, 76, 0.1);
margin-bottom: 16px;
}

.science-card h3 {
color: #2c5f2d;
margin-bottom: 12px;
font-size: 20px;
}

.about-us-section {
background: #fff;
padding: 80px 0;
}

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

.about-text h2 {
margin-bottom: 24px;
color: #2c5f2d;
}

.about-text p {
color: var(--color-text-light);
margin-bottom: 20px;
font-size: 16px;
line-height: 1.8;
}

.about-values {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 24px;
margin-top: 40px;
}

.value-item {
padding: 20px;
background: linear-gradient(135deg, #f8f9fa, #ffffff);
border-radius: 12px;
border-left: 4px solid #4a8a4c;
}

.value-item h4 {
font-size: 16px;
color: #2c5f2d;
margin-bottom: 8px;
}

.value-item p {
font-size: 14px;
color: var(--color-text-light);
margin: 0;
}

.about-image img {
border-radius: 16px;
box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
width: 100%;
height: auto;
}

.transformation-section {
background: #fff;
padding: 80px 0;
}

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

.transformation-left h2 {
margin-bottom: 20px;
}

.transformation-left p {
color: var(--color-text-light);
margin-bottom: 40px;
font-size: 18px;
line-height: 1.7;
}

.transformation-stats {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
}

.trans-stat {
text-align: center;
padding: 24px;
background: linear-gradient(135deg, #f8f9fa, #ffffff);
border-radius: 12px;
border: 2px solid #e0e0e0;
}

.trans-stat-number {
font-size: 36px;
font-weight: 800;
color: #2c5f2d;
margin-bottom: 8px;
}

.trans-stat p {
font-size: 14px;
color: var(--color-text);
margin: 0;
}

.timeline {
position: relative;
padding-left: 40px;
}

.timeline::before {
content: '';
position: absolute;
left: 15px;
top: 0;
bottom: 0;
width: 2px;
background: linear-gradient(180deg, #2c5f2d, #4a8a4c);
}

.timeline-item {
position: relative;
margin-bottom: 40px;
}

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

.timeline-dot {
position: absolute;
left: -33px;
top: 5px;
width: 16px;
height: 16px;
background: #4a8a4c;
border: 3px solid #fff;
border-radius: 50%;
box-shadow: 0 0 0 4px rgba(74, 138, 76, 0.2);
}

.timeline-content {
background: #f8f9fa;
padding: 20px 24px;
border-radius: 12px;
border-left: 3px solid #4a8a4c;
}

.timeline-content h4 {
color: #2c5f2d;
margin-bottom: 8px;
font-size: 18px;
}

.timeline-content p {
color: var(--color-text-light);
margin: 0;
font-size: 15px;
}

.guarantee-section {
background: linear-gradient(135deg, #2c5f2d, #4a8a4c);
padding: 80px 0;
}

.guarantee-box {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 24px;
padding: 60px 40px;
text-align: center;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.guarantee-icon {
font-size: 64px;
margin-bottom: 24px;
}

.guarantee-box h2 {
color: #2c5f2d;
margin-bottom: 16px;
}

.guarantee-box p {
color: var(--color-text-light);
font-size: 18px;
max-width: 700px;
margin: 0 auto 40px;
}

.guarantee-features {
display: flex;
justify-content: center;
gap: 40px;
flex-wrap: wrap;
}

.guarantee-feature {
display: flex;
align-items: center;
gap: 12px;
font-size: 16px;
font-weight: 600;
color: var(--color-text);
}

.check-icon {
width: 28px;
height: 28px;
background: #4a8a4c;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
}

.final-cta {
position: relative;
background: #0f2027;
padding: 100px 0;
overflow: hidden;
}

.cta-bg-gradient {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: radial-gradient(circle at 30% 50%, rgba(74, 138, 76, 0.15), transparent 50%),
radial-gradient(circle at 70% 50%, rgba(151, 198, 128, 0.15), transparent 50%);
z-index: 0;
}

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

.cta-left {
color: #fff;
}

.cta-left h2 {
font-size: 42px;
color: #fff;
margin-bottom: 20px;
}

.cta-left p {
font-size: 18px;
color: rgba(255, 255, 255, 0.8);
margin-bottom: 32px;
}

.cta-benefits {
list-style: none;
display: flex;
flex-direction: column;
gap: 16px;
}

.cta-benefits li {
display: flex;
align-items: center;
gap: 12px;
font-size: 16px;
color: rgba(255, 255, 255, 0.9);
}

.benefit-check {
width: 24px;
height: 24px;
background: #4a8a4c;
color: #fff;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 700;
flex-shrink: 0;
}

.cta-order-card {
background: rgba(255, 255, 255, 0.98);
backdrop-filter: blur(10px);
border-radius: 24px;
padding: 40px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.cta-card-header {
text-align: center;
margin-bottom: 32px;
}

.cta-card-header h3 {
font-size: 28px;
color: #2c5f2d;
margin-bottom: 12px;
}

.cta-timer {
background: linear-gradient(135deg, #f4a261, #e89350);
color: #fff;
padding: 8px 20px;
border-radius: 50px;
font-size: 14px;
font-weight: 600;
display: inline-block;
}

.cta-pricing {
margin-bottom: 32px;
}

.cta-price-row {
display: flex;
justify-content: space-between;
align-items: center;
padding: 12px 0;
border-bottom: 1px solid #e0e0e0;
}

.cta-price-row.main {
border-bottom: none;
padding: 20px 0;
}

.cta-price-label {
font-size: 16px;
color: var(--color-text);
}

.cta-price-old {
font-size: 20px;
color: #999;
text-decoration: line-through;
}

.cta-price-current {
font-size: 42px;
font-weight: 800;
color: #2c5f2d;
}

.cta-savings {
background: linear-gradient(135deg, #2c5f2d, #4a8a4c);
color: #fff;
padding: 12px;
border-radius: 12px;
text-align: center;
font-weight: 700;
font-size: 16px;
margin-top: 16px;
}

.cta-order-btn {
display: block;
width: 100%;
background: linear-gradient(135deg, #4a8a4c, #2c5f2d);
color: #fff;
padding: 18px;
border: none;
border-radius: 12px;
font-size: 18px;
font-weight: 700;
text-align: center;
text-decoration: none;
cursor: pointer;
transition: all 0.3s ease;
box-shadow: 0 8px 24px rgba(74, 138, 76, 0.3);
margin-bottom: 20px;
}

.cta-order-btn:hover {
transform: translateY(-2px);
box-shadow: 0 12px 32px rgba(74, 138, 76, 0.4);
}

.cta-trust {
display: flex;
justify-content: space-around;
font-size: 14px;
color: var(--color-text-light);
}

.cta-trust span {
display: flex;
align-items: center;
gap: 6px;
}

.disclaimer {
background-color: var(--color-warning);
padding: var(--spacing-lg) 0;
}

.disclaimer p {
text-align: center;
font-size: var(--font-size-small);
color: var(--color-text);
margin: 0;
}

footer {
background-color: var(--color-text);
color: var(--color-background);
padding: var(--spacing-xl) 0 var(--spacing-md);
}

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

.footer-section h4 {
color: var(--color-background);
margin-bottom: var(--spacing-md);
}

.footer-section p {
color: var(--color-background-alt);
font-size: var(--font-size-small);
}

.footer-section nav {
display: flex;
flex-direction: column;
gap: var(--spacing-xs);
}

.footer-section nav a {
color: var(--color-background-alt);
font-size: var(--font-size-small);
transition: color var(--transition-fast);
}

.footer-section nav a:hover {
color: black
}

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

.footer-bottom p {
color: var(--color-background-alt);
font-size: var(--font-size-small);
margin: 0;
}

.cookie-consent {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background-color: var(--color-text);
color: var(--color-background);
padding: var(--spacing-lg);
box-shadow: var(--shadow-large);
z-index: 2000;
display: none;
}

.cookie-consent.visible {
display: block;
}

.cookie-content {
max-width: var(--container-width);
margin: 0 auto;
}

.cookie-content h3 {
color: var(--color-background);
margin-bottom: var(--spacing-sm);
}

.cookie-content p {
margin-bottom: var(--spacing-md);
}

.cookie-buttons {
display: flex;
gap: var(--spacing-sm);
flex-wrap: wrap;
}

.cookie-btn {
padding: var(--spacing-sm) var(--spacing-md);
border: none;
border-radius: var(--radius-medium);
font-weight: var(--font-weight-medium);
cursor: pointer;
transition: all var(--transition-fast);
}

.cookie-btn.primary {
background-color: var(--color-primary);
color: var(--color-background);
}

.cookie-btn.primary:hover {
background-color: var(--color-primary-dark);
}

.cookie-btn.secondary {
background-color: var(--color-background);
color: var(--color-text);
}

.cookie-btn.secondary:hover {
background-color: var(--color-background-alt);
}

.cookie-modal {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background-color: rgba(0, 0, 0, 0.7);
display: none;
align-items: center;
justify-content: center;
z-index: 3000;
padding: var(--spacing-md);
}

.cookie-modal.visible {
display: flex;
}

.modal-content {
background-color: var(--color-background);
padding: var(--spacing-lg);
border-radius: var(--radius-large);
max-width: 600px;
width: 100%;
box-shadow: var(--shadow-large);
}

.modal-content h3 {
margin-bottom: var(--spacing-md);
}

.cookie-category {
margin-bottom: var(--spacing-md);
}

.cookie-category label {
display: flex;
align-items: start;
gap: var(--spacing-sm);
cursor: pointer;
}

.cookie-category input[type="checkbox"] {
margin-top: 4px;
width: 18px;
height: 18px;
cursor: pointer;
}

.cookie-category input[type="checkbox"]:disabled {
cursor: not-allowed;
}

.modal-buttons {
display: flex;
gap: var(--spacing-sm);
margin-top: var(--spacing-lg);
}

.thank-you {
padding: var(--spacing-xxl) 0;
text-align: center;
background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

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

.thank-you-subtitle {
font-size: 20px;
color: var(--color-text-light);
margin-bottom: 24px;
}

.success-icon {
width: 100px;
height: 100px;
background: linear-gradient(135deg, #2c5f2d, #4a8a4c);
color: var(--color-background);
border-radius: var(--radius-round);
display: flex;
align-items: center;
justify-content: center;
font-size: 60px;
margin: 0 auto var(--spacing-lg);
box-shadow: 0 8px 24px rgba(44, 95, 45, 0.3);
animation: scaleIn 0.5s ease;
}

@keyframes scaleIn {
from { transform: scale(0); opacity: 0; }
to { transform: scale(1); opacity: 1; }
}

.order-timeline {
display: grid;
grid-template-columns: repeat(4, 1fr);
gap: 24px;
margin: 48px 0;
padding: 40px;
background: #fff;
border-radius: 16px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.timeline-step {
text-align: center;
position: relative;
}

.timeline-step:not(:last-child)::after {
content: '→';
position: absolute;
right: -20px;
top: 20px;
font-size: 24px;
color: #4a8a4c;
}

.timeline-icon {
font-size: 40px;
margin-bottom: 12px;
}

.timeline-step h3 {
font-size: 16px;
color: #2c5f2d;
margin-bottom: 8px;
}

.timeline-step p {
font-size: 14px;
color: var(--color-text-light);
margin: 0;
}

.next-steps {
background: linear-gradient(135deg, #f8f9fa, #ffffff);
padding: var(--spacing-lg);
border-radius: var(--radius-large);
margin: var(--spacing-lg) 0;
text-align: left;
}

.next-steps h2 {
text-align: center;
margin-bottom: var(--spacing-md);
color: #2c5f2d;
}

.next-steps ul {
list-style-position: inside;
}

.next-steps li {
margin-bottom: var(--spacing-sm);
}

.next-steps-grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: 24px;
margin-top: 32px;
}

.next-step-card {
background: #fff;
padding: 32px 24px;
border-radius: 12px;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
transition: transform 0.3s ease;
}

.next-step-card:hover {
transform: translateY(-4px);
}

.step-icon {
font-size: 48px;
margin-bottom: 16px;
}

.next-step-card h3 {
font-size: 18px;
color: #2c5f2d;
margin-bottom: 12px;
}

.next-step-card p {
font-size: 14px;
color: var(--color-text-light);
margin: 0;
}

.thank-you-cta {
display: flex;
gap: 16px;
justify-content: center;
margin-top: 40px;
}

.cta-button-secondary {
padding: 16px 32px;
border: 2px solid #4a8a4c;
color: #4a8a4c;
background: transparent;
border-radius: 12px;
font-weight: 600;
text-decoration: none;
transition: all 0.3s ease;
}

.cta-button-secondary:hover {
background: #4a8a4c;
color: #fff;
}

.policy-page {
padding: var(--spacing-xxl) 0;
}

.policy-page h1 {
text-align: center;
margin-bottom: var(--spacing-sm);
}

.last-updated {
text-align: center;
color: var(--color-text-light);
font-size: var(--font-size-small);
margin-bottom: var(--spacing-xl);
}

.policy-section {
margin-bottom: var(--spacing-xl);
}

.policy-section h2 {
color: var(--color-primary);
margin-top: var(--spacing-lg);
margin-bottom: var(--spacing-md);
}

.policy-section h3 {
color: var(--color-primary-light);
margin-top: var(--spacing-md);
margin-bottom: var(--spacing-sm);
}

.policy-section ul,
.policy-section ol {
margin-left: var(--spacing-lg);
margin-bottom: var(--spacing-md);
}

.policy-section li {
margin-bottom: var(--spacing-xs);
}

.cookie-table {
width: 100%;
border-collapse: collapse;
margin: var(--spacing-md) 0;
}

.cookie-table th,
.cookie-table td {
padding: var(--spacing-sm);
text-align: left;
border: 1px solid var(--color-border);
}

.cookie-table th {
background-color: var(--color-background-alt);
font-weight: var(--font-weight-bold);
}

@media (max-width: 768px) {
:root {
--font-size-h1: 32px;
--font-size-h2: 26px;
--font-size-h3: 20px;
--font-size-h4: 18px;
--spacing-xl: 32px;
--spacing-xxl: 48px;
}

header .container {
flex-direction: column;
gap: var(--spacing-sm);
}

nav {
flex-wrap: wrap;
justify-content: center;
gap: var(--spacing-sm);
}

.hero {
min-height: auto;
padding: 60px 0;
}

.hero-content {
grid-template-columns: 1fr;
gap: 40px;
}

.hero-title {
font-size: 36px;
}

.hero-stats {
flex-wrap: wrap;
gap: 20px;
}

.hero-cta-group {
flex-direction: column;
}

.hero-cta-primary, .hero-cta-secondary {
width: 100%;
text-align: center;
}

.product-showcase {
max-width: 400px;
margin: 0 auto;
}

.floating-card {
padding: 8px 16px;
font-size: 14px;
}

.price-card {
padding: 24px;
}

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

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

.about-values {
grid-template-columns: 1fr;
}

.transformation-content {
grid-template-columns: 1fr;
gap: 40px;
}

.transformation-stats {
grid-template-columns: 1fr;
}

.guarantee-box {
padding: 40px 24px;
}

.guarantee-features {
flex-direction: column;
align-items: center;
gap: 20px;
}

.final-cta-content {
grid-template-columns: 1fr;
gap: 40px;
}

.cta-left h2 {
font-size: 32px;
}

.cta-order-card {
padding: 32px 24px;
}

.order-timeline {
grid-template-columns: 1fr;
padding: 24px;
}

.timeline-step:not(:last-child)::after {
content: '↓';
right: auto;
top: auto;
bottom: -20px;
left: 50%;
transform: translateX(-50%);
}

.next-steps-grid {
grid-template-columns: 1fr;
}

.thank-you-cta {
flex-direction: column;
}

.cta-button, .cta-button-secondary {
width: 100%;
text-align: center;
}

.benefits-layout {
grid-template-columns: 1fr;
}

.composition-layout {
grid-template-columns: 1fr;
}

.composition-image {
order: -1;
}

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

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

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

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

.cookie-buttons {
flex-direction: column;
}

.cookie-btn {
width: 100%;
}

.modal-buttons {
flex-direction: column;
}

.cookie-table {
font-size: var(--font-size-small);
}

.cookie-table th,
.cookie-table td {
padding: var(--spacing-xs);
}
}

@media (max-width: 480px) {
:root {
--font-size-h1: 28px;
--font-size-h2: 22px;
--font-size-h3: 18px;
--container-padding: 16px;
}

.price-block {
flex-direction: column;
align-items: start;
}
}

@media (max-width: 320px) {
:root {
--font-size-h1: 24px;
--font-size-h2: 20px;
--font-size-h3: 16px;
--font-size-h4: 15px;
--font-size-base: 14px;
--font-size-small: 12px;
--container-padding: 12px;
--spacing-xs: 6px;
--spacing-sm: 12px;
--spacing-md: 16px;
--spacing-lg: 24px;
--spacing-xl: 32px;
--spacing-xxl: 40px;
}

.brand {
font-size: 18px;
}

nav {
gap: 8px;
}

nav a {
padding: 6px 10px;
font-size: 13px;
}

.hero {
padding: 40px 0;
}

.hero-title {
font-size: 24px;
line-height: 1.3;
}

.hero-subtitle {
font-size: 14px;
}

.hero-stats {
gap: 12px;
}

.stat-number {
font-size: 20px;
}

.stat-label {
font-size: 11px;
}

.hero-cta-primary, .hero-cta-secondary {
padding: 12px 20px;
font-size: 14px;
}

.price-card {
padding: 16px;
}

.price-new {
font-size: 32px;
}

.price-old {
font-size: 16px;
}

.quick-order-form input {
padding: 10px 12px;
font-size: 14px;
}

.submit-btn {
padding: 12px;
font-size: 14px;
}

.floating-card {
padding: 6px 12px;
font-size: 12px;
}

.card-icon {
font-size: 16px;
}

.feature-card, .instruction-step, .science-card {
padding: 20px 16px;
}

.step-number {
width: 50px;
height: 50px;
font-size: 24px;
}

.trans-stat {
padding: 16px;
}

.trans-stat-number {
font-size: 28px;
}

.guarantee-box {
padding: 32px 16px;
}

.guarantee-icon {
font-size: 48px;
}

.cta-left h2 {
font-size: 24px;
}

.cta-price-current {
font-size: 32px;
}

.cta-order-card {
padding: 24px 16px;
}

.review-card {
padding: 20px 16px;
}

.faq-item {
padding: 20px 16px;
}

.timeline-content {
padding: 16px;
}

.order-timeline {
padding: 20px 12px;
gap: 16px;
}

.timeline-icon {
font-size: 32px;
}

.next-step-card {
padding: 24px 16px;
}

.step-icon {
font-size: 36px;
}

section {
padding: 40px 0;
}

.science-section, .about-us-section, .transformation-section, .guarantee-section, .final-cta {
padding: 60px 0;
}
}
