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

:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --secondary-color: #8b5cf6;
    --secondary-dark: #7c3aed;
    --accent-color: #ec4899;
    --text-dark: #111827;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-primary: #fafafa;
    --bg-secondary: #f5f3ff;
    --bg-tertiary: #fef3f2;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    --shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
    --shadow-md: 0 10px 25px 0 rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 40px 0 rgba(0, 0, 0, 0.25);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.8;
    color: var(--text-dark);
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    font-size: 17px;
    font-weight: 400;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(99, 102, 241, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid var(--bg-secondary);
}

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

.logo {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    transition: var(--transition);
    letter-spacing: -1px;
    text-transform: uppercase;
}

.logo:hover {
    transform: scale(1.05);
    filter: brightness(1.2);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    position: relative;
    font-size: 1rem;
    padding: 0.75rem 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.875rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    border-radius: 2px;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white !important;
    padding: 0.875rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.4);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.btn-nav:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 7px;
}

.hamburger span {
    width: 32px;
    height: 4px;
    background: var(--text-dark);
    border-radius: 4px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 8rem 0 6rem;
    background: linear-gradient(135deg, #f5f3ff 0%, #ede9fe 50%, #fef3f2 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}

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

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 700px;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 2.5rem;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -2px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.9;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 5rem;
    flex-wrap: wrap;
}

.hero-image {
    text-align: center;
    position: relative;
    animation: float 6s ease-in-out infinite;
}

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

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    border: 6px solid white;
    transform: rotate(-2deg);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border-light);
}

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

.stat-number {
    font-size: 2.75rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
    line-height: 1;
}

.stat-label {
    font-size: 0.9375rem;
    color: var(--text-medium);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1.0625rem;
    font-family: inherit;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.4);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.5);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.2);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 3px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

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

/* Why Choose Section */
.why-choose {
    padding: 8rem 0;
    background: white;
}

.section-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 6rem;
}

.section-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.9;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.benefit-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: var(--transition);
}

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

.benefit-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    border-color: var(--primary-light);
}

.benefit-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.benefit-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.benefit-description {
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.9;
    font-size: 1.0625rem;
}

.benefit-list {
    list-style: none;
}

.benefit-list li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.benefit-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.375rem;
}

/* Scientific Section */
.scientific {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.scientific::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 10s ease-in-out infinite;
}

.scientific .section-title,
.scientific .section-subtitle,
.scientific .section-description {
    color: white;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.stat-box {
    text-align: center;
    padding: 3.5rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-10px) scale(1.05);
}

.stat-box-number {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.stat-box-label {
    font-size: 1.25rem;
    opacity: 0.95;
    font-weight: 600;
}

/* Ingredients Preview */
.ingredients-preview {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.ingredient-highlight {
    background: white;
    padding: 5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    border: 3px solid var(--border-light);
}

.ingredient-icon {
    font-size: 6rem;
    margin-bottom: 2.5rem;
    display: block;
    filter: drop-shadow(0 8px 16px rgba(99, 102, 241, 0.3));
}

.ingredient-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.ingredient-description {
    font-size: 1.25rem;
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 3rem;
}

.ingredient-tags {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.tag {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Order Section */
.order-section {
    padding: 8rem 0;
    background: white;
}

.order-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
}

.order-content {
    position: sticky;
    top: 120px;
}

.order-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.order-subtitle {
    font-size: 1.25rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    line-height: 1.9;
}

.order-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.order-feature {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 2px solid var(--border-light);
}

.feature-icon {
    font-size: 2rem;
}

.order-form {
    background: var(--bg-secondary);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--border-light);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.25rem;
    border: 3px solid var(--border-color);
    border-radius: 15px;
    font-size: 1.0625rem;
    font-family: inherit;
    transition: var(--transition);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 6px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-note {
    font-size: 0.9375rem;
    color: var(--text-medium);
    margin-top: 1.5rem;
    line-height: 1.7;
}

.order-price-box {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    margin-bottom: 3rem;
    color: white;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.order-price-label {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.order-price-value {
    font-size: 4.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
    line-height: 1;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.order-price-note {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 600;
}

.consent-group {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    border: 3px solid var(--border-color);
    margin-top: 2rem;
}

.consent-label {
    display: flex;
    gap: 1.5rem;
    cursor: pointer;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.consent-label input[type="checkbox"] {
    width: 24px;
    height: 24px;
    margin-top: 2px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.consent-label span {
    color: var(--text-dark);
}

.consent-label a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 700;
}

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

/* FAQ Section */
.faq {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.faq-list {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.2);
}

.faq-question {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    transition: var(--transition);
    color: var(--text-dark);
    font-size: 1.125rem;
}

.faq-question:hover {
    background: var(--bg-secondary);
    color: var(--primary-color);
}

.faq-toggle {
    font-size: 2rem;
    color: var(--primary-color);
    transition: var(--transition);
    font-weight: 300;
    flex-shrink: 0;
    margin-left: 1.5rem;
}

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

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

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

.faq-answer p {
    padding: 0 2rem 2rem;
    color: var(--text-medium);
    line-height: 1.9;
}

/* Page Header */
.page-header {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    text-align: center;
}

.page-title {
    font-size: 4rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.page-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    font-weight: 500;
}

/* Ingredients Page */
.ingredients-main {
    padding: 6rem 0;
}

.ingredient-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 5rem;
    border-radius: 30px;
    color: white;
    margin-bottom: 6rem;
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.4);
}

.ingredient-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9375rem;
    font-weight: 700;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ingredient-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.ingredient-hero-description {
    font-size: 1.25rem;
    line-height: 1.9;
    opacity: 0.95;
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 3rem;
}

.ingredient-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    border: 2px solid var(--border-light);
}

.ingredient-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    border-color: var(--primary-light);
}

.ingredient-card .ingredient-icon {
    font-size: 4.5rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.ingredient-card-title {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.ingredient-card-description {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.ingredient-benefits {
    list-style: none;
}

.ingredient-benefits li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    font-weight: 600;
    position: relative;
    padding-left: 2rem;
    font-size: 1rem;
}

.ingredient-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
    font-size: 1.375rem;
}

.ingredients-evidence {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.evidence-item {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-light);
}

.evidence-item h4 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.evidence-item p {
    color: var(--text-medium);
    line-height: 1.9;
}

.ingredients-cta {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
    color: white;
}

.ingredients-cta h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.ingredients-cta p {
    font-size: 1.375rem;
    margin-bottom: 3rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page */
.contact-section {
    padding: 6rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
}

.contact-info h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 2rem;
    letter-spacing: -1.5px;
}

.contact-info p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 4rem;
    font-size: 1.125rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.contact-detail-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.contact-detail-content h4 {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.contact-detail-content p {
    color: var(--text-medium);
    margin: 0;
    line-height: 1.8;
}

.contact-detail-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.contact-detail-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.contact-form {
    background: var(--bg-secondary);
    padding: 4rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--border-light);
}

.contact-form h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2.5rem;
}

.contact-faq {
    padding: 6rem 0;
    background: var(--bg-secondary);
    text-align: center;
}

.contact-faq h2 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}

.contact-faq p {
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* Legal Content */
.legal-content {
    padding: 6rem 0;
}

.legal-text {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--border-light);
}

.legal-text h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-top: 4rem;
    margin-bottom: 2rem;
}

.legal-text h2:first-child {
    margin-top: 0;
}

.legal-text h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
}

.legal-text p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1.75rem;
    font-size: 1.0625rem;
}

.legal-text ul {
    margin-left: 2.5rem;
    margin-bottom: 1.75rem;
}

.legal-text li {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 1rem;
    font-size: 1.0625rem;
}

.legal-text a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.legal-text a:hover {
    text-decoration: underline;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 3rem 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.cookies-table th,
.cookies-table td {
    padding: 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--border-light);
}

.cookies-table th {
    background: var(--bg-secondary);
    font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.cookies-table tr:last-child td {
    border-bottom: none;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: 6rem 0 3rem;
}

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

.footer-logo {
    font-size: 2rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    display: block;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    text-transform: uppercase;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
    margin-top: 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-disclaimer {
    padding: 3rem 0;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 3rem;
}

.footer-disclaimer p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.9;
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

/* Product Showcase Section */
.product-showcase {
    padding: 8rem 0;
    background: white;
}

.product-showcase-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 6rem;
    align-items: start;
    background: white;
    padding: 5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--border-light);
}

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

.product-showcase-image img {
    width: 100%;
    height: auto;
    border-radius: 25px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    border: 6px solid white;
}

.product-price-badge {
    position: absolute;
    top: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    font-size: 2.75rem;
    font-weight: 900;
    padding: 1.5rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.product-showcase-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    letter-spacing: -1.5px;
}

.product-showcase-subtitle {
    font-size: 1.375rem;
    color: var(--text-medium);
    margin-bottom: 3rem;
    font-weight: 600;
}

.product-properties {
    background: var(--bg-secondary);
    padding: 3.5rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
}

.product-properties h3 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.product-properties > p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 2.5rem;
    font-size: 1.0625rem;
}

.property-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    border-left: 5px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.property-icon {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.property-text {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.0625rem;
}

.property-text strong {
    color: var(--text-dark);
    font-weight: 700;
}

.product-disclaimer {
    background: #fef3c7;
    border: 3px solid #fbbf24;
    padding: 2rem;
    border-radius: 15px;
    font-size: 0.9375rem;
    color: #92400e;
    line-height: 1.8;
    margin-top: 2.5rem;
    margin-bottom: 2.5rem;
}

.product-price {
    display: flex;
    align-items: baseline;
    gap: 1.5rem;
    margin: 3rem 0;
    padding: 2.5rem;
    background: white;
    border-radius: 20px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.2);
}

.price-label {
    font-size: 1.25rem;
    color: var(--text-medium);
    font-weight: 600;
}

.price-value {
    font-size: 3.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-shipping {
    font-size: 1.125rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.btn-large {
    font-size: 1.375rem;
    padding: 1.5rem 3.5rem;
}

/* Nutrition Section */
.nutrition-section {
    padding: 8rem 0;
    background: white;
}

.nutrition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
}

.nutrition-card {
    background: white;
    padding: 3.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-light);
    transition: var(--transition);
    text-align: center;
}

.nutrition-card:hover {
    transform: translateY(-12px) scale(1.03);
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    border-color: var(--primary-color);
}

.nutrition-emoji {
    font-size: 5.5rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 8px rgba(99, 102, 241, 0.3));
}

.nutrition-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.nutrition-card p {
    color: var(--text-medium);
    line-height: 1.8;
    font-size: 1rem;
}

/* Exercise Section */
.exercise-section {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.exercise-section::before {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 12s ease-in-out infinite;
}

.exercise-section .section-title,
.exercise-section .section-subtitle,
.exercise-section .section-description {
    color: white;
    position: relative;
    z-index: 1;
}

.exercise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 5rem;
    position: relative;
    z-index: 1;
}

.exercise-card {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    padding: 3.5rem;
    border-radius: 25px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.exercise-card:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-12px) scale(1.05);
}

.exercise-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: block;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.exercise-card h3 {
    font-size: 1.875rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.exercise-card p {
    line-height: 1.9;
    opacity: 0.95;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.exercise-list {
    list-style: none;
    text-align: left;
}

.exercise-list li {
    padding: 0.75rem 0;
    padding-left: 2.5rem;
    position: relative;
    font-size: 1rem;
}

.exercise-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #fbbf24;
    font-weight: bold;
    font-size: 1.375rem;
}

/* Lifestyle Section */
.lifestyle-section {
    padding: 8rem 0;
    background: var(--bg-secondary);
}

.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    margin-top: 5rem;
}

.lifestyle-card {
    background: white;
    padding: 4rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border-left: 6px solid var(--primary-color);
    transition: var(--transition);
}

.lifestyle-card:hover {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.25);
    transform: translateX(10px) scale(1.02);
}

.lifestyle-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.lifestyle-icon {
    font-size: 4.5rem;
}

.lifestyle-card h3 {
    font-size: 1.875rem;
    font-weight: 800;
    color: var(--text-dark);
}

.lifestyle-card p {
    color: var(--text-medium);
    line-height: 1.9;
    margin-bottom: 2rem;
    font-size: 1.0625rem;
}

.lifestyle-tips {
    list-style: none;
    margin-top: 2.5rem;
}

.lifestyle-tips li {
    padding: 1rem 0;
    padding-left: 2.5rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 600;
    border-bottom: 2px solid var(--border-light);
    font-size: 1rem;
}

.lifestyle-tips li:last-child {
    border-bottom: none;
}

.lifestyle-tips li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.5rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .order-wrapper {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .product-showcase-wrapper {
        grid-template-columns: 1fr;
    }
    
    .lifestyle-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 90px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        padding: 3rem 0;
        gap: 0;
    }
    
    .nav-menu li {
        width: 100%;
        padding: 1.25rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(10px, -10px);
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
    }
    
    .nutrition-grid {
        grid-template-columns: 1fr;
    }
    
    .exercise-grid {
        grid-template-columns: 1fr;
    }
    
    .product-price-badge {
        font-size: 2rem;
        padding: 1.25rem 2rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .order-content {
        position: static;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 5rem 0 4rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .order-form,
    .contact-form {
        padding: 2.5rem;
    }
    
    .legal-text {
        padding: 3rem;
    }
}
