/* Dark Neon Theme with #ff6a00 accent color */
:root {
    --primary-color: #ff6a00;
    --secondary-color: #00ff6a;
    --tertiary-color: #6a00ff;
    --background-dark: #0a0a0a;
    --background-darker: #000000;
    --surface-dark: #1a1a1a;
    --surface-darker: #111111;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --border-color: #333333;
    --shadow-glow: rgba(255, 106, 0, 0.3);
    --shadow-secondary: rgba(0, 255, 106, 0.2);
    --shadow-tertiary: rgba(106, 0, 255, 0.2);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--background-dark);
    background-image:
        radial-gradient(circle at 20% 50%, var(--shadow-glow) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--shadow-secondary) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, var(--shadow-tertiary) 0%, transparent 50%);
    min-height: 100vh;
    word-break: break-word;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--shadow-glow);
}

h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    text-shadow: 0 0 20px var(--shadow-glow);
}

h3 {
    font-size: 2rem;
    color: var(--text-primary);
}

h4 {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px var(--shadow-secondary);
}

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

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid;
    cursor: pointer;
    text-decoration: none;
    font-size: 14px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    border-color: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px var(--shadow-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #ff8533, var(--primary-color));
    box-shadow: 0 6px 25px var(--shadow-glow);
    transform: translateY(-2px);
    color: #ffffff;
}

.btn-secondary {
    background: transparent;
    border-color: var(--secondary-color);
    color: var(--secondary-color);
    box-shadow: 0 4px 15px var(--shadow-secondary);
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: var(--background-dark);
    box-shadow: 0 6px 25px var(--shadow-secondary);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border-color: var(--text-muted);
    color: var(--text-muted);
}

.btn-outline:hover {
    background: var(--text-muted);
    color: var(--background-dark);
}

/* Navigation */
.navbar {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 20px var(--shadow-glow);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary-color);
    text-shadow: 0 0 15px var(--shadow-glow);
}

.logo-icon {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    fill: var(--primary-color);
    filter: drop-shadow(0 0 10px var(--shadow-glow));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
    background: rgba(255, 106, 0, 0.1);
    text-shadow: 0 0 10px var(--shadow-glow);
}

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

.bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--shadow-glow);
}

/* Hero Sections */
.hero,
.page-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.page-hero {
    min-height: 60vh;
    margin-top: 80px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-svg {
    width: 100%;
    height: 100%;
    opacity: 0.6;
}

.hero-content,
.page-hero-content {
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
    z-index: 1;
    position: relative;
}

.hero h1 {
    font-size: 4rem;
    margin-bottom: 2rem;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px var(--shadow-glow), 0 0 30px var(--shadow-glow), 0 0 40px var(--shadow-glow);
    }

    to {
        text-shadow: 0 0 30px var(--shadow-glow), 0 0 40px var(--shadow-glow), 0 0 50px var(--shadow-glow);
    }
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: var(--text-secondary);
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-radius: 30px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 10px 30px var(--shadow-glow);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px var(--shadow-glow);
    color: #ffffff;
}

/* Sections */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-icon {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
    margin: 0 auto 1rem;
    display: block;
    filter: drop-shadow(0 0 15px var(--shadow-glow));
}

/* Cards */
.feature,
.achievement,
.service-card,
.review-card,
.offer-card,
.principle-card,
.macro-card,
.micro-card,
.tip-step,
.mistake-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.macro-card ul {
list-style-type: none;}

.feature:hover,
.service-card:hover,
.review-card:hover,
.offer-card:hover,
.principle-card:hover
.macro-card:hover,
.micro-card:hover,
.tip-step:hover,
.mistake-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px var(--shadow-glow);
}

.feature-icon,
.service-icon,
.principle-icon,
.micro-icon,
.mistake-icon {
    width: 60px;
    height: 60px;
    fill: var(--primary-color);
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 15px var(--shadow-glow));
}
.micronutrients {
margin-top: 50px;}

/* Grids */
.about-features, .principles-grid, .macro-grid, .tips-content, .mistakes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.achievement {
    background: linear-gradient(135deg, var(--surface-dark), var(--surface-darker));
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-shadow: 0 0 20px var(--shadow-glow);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.offer-card {
    position: relative;
}

.offer-card.featured {
    border: 2px solid var(--primary-color);
    box-shadow: 0 10px 30px var(--shadow-glow);
    transform: scale(1.05);
}

.offer-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    padding: 5px 20px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.offer-price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 1rem 0;
}

.offer-price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.offer-features {
    list-style: none;
    margin: 2rem 0;
}

.offer-features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
}

.offer-button {
    width: 100%;
    margin-top: 1rem;
}

.services-grid, .micro-grid  {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.review-stars {
    display: flex;
    justify-content: center;
    gap: 5px;
    margin-bottom: 1rem;
}

.review-stars svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--shadow-glow));
}

.review-author {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--secondary-color);
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 500;
}

input,
select,
textarea {
    width: 100%;
    padding: 12px 15px;
    background: var(--surface-dark);
    border: 2px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

input[type="checkbox"] {
    width: auto;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 15px var(--shadow-glow);
}

/* Checkbox Styling */
.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    cursor: pointer;
    color: var(--text-secondary);
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    margin-right: 10px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked+.checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
    box-shadow: 0 0 10px var(--shadow-glow);
}

.checkbox-label input[type="checkbox"]:checked+.checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-weight: bold;
}

/* Recipe Filters */
.recipe-filters {
    background: var(--surface-dark);
    padding: 2rem 0;
    border-bottom: 1px solid var(--border-color);
    margin-top: 80px;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.filter-btn {
    padding: 8px 20px;
    background: transparent;
    border: 2px solid var(--border-color);
    border-radius: 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(255, 106, 0, 0.1);
    box-shadow: 0 0 15px var(--shadow-glow);
}

/* Recipe Cards */
.recipes-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.recipe-card {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.recipe-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-glow);
    border-color: var(--primary-color);
}

.recipe-image {
    height: 200px;
    overflow: hidden;
}

.recipe-placeholder {
    width: 100%;
    height: 100%;
}

.recipe-info {
    padding: 1.5rem;
}

.recipe-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.recipe-tags {
    display: flex;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tag {
    background: var(--primary-color);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--surface-darker);
    border-top: 1px solid var(--border-color);
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--surface-dark);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--shadow-glow);
    transform: translateY(-2px);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--text-secondary);
}

.social-links a:hover svg {
    fill: #ffffff;
}

.contact-info {
    color: var(--text-secondary);
}

.contact-icon {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
    margin-right: 8px;
    vertical-align: middle;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-muted);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-darker);
    border-top: 2px solid var(--primary-color);
    padding: 1.5rem;
    z-index: 1001;
    box-shadow: 0 -5px 20px var(--shadow-glow);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
}

.cookie-modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--surface-dark);
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin: 1rem 0;
    padding: 1rem;
    background: var(--surface-darker);
    border-radius: 10px;
}

.cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

/* Legal Pages */
.legal-page {
    margin-top: 80px;
    padding: 4rem 0;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.last-updated {
    color: var(--text-muted);
    font-style: italic;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--surface-dark);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.legal-section h2 {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-details {
    background: var(--surface-darker);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
    margin: 1rem 0;
}

/* Thank You Page */
.thanks-page {
    margin-top: 80px;
    padding: 4rem 0;
    text-align: center;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    margin: 2rem auto;
    width: 100px;
    height: 100px;
}

.thanks-message {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.next-steps {
    margin: 3rem 0;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step-item {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1rem;
    box-shadow: 0 0 15px var(--shadow-glow);
}

.contact-reminder {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 1rem 0;
}

.phone-link svg {
    width: 20px;
    height: 20px;
    fill: var(--primary-color);
}

.office-hours {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-reminder {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border: 1px solid var(--border-color);
}

/* Contact Page */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
    box-shadow: 0 15px 30px var(--shadow-glow);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    fill: var(--primary-color);
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
}

.contact-form-section {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-form-container {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-card {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
}

.sidebar-icon {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
}

.sidebar-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.sidebar-link:hover {
    color: var(--secondary-color);
}

/* Office Hours */
.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.hours-card {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.hours-list {
    margin-top: 1rem;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-item:last-child {
    border-bottom: none;
}

.day {
    color: var(--text-secondary);
}

.time {
    color: var(--primary-color);
    font-weight: 600;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-glow);
    border-color: var(--primary-color);
}

.member-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    overflow: hidden;
}

.member-title {
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Subscription Plans */
.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.plan-card {
    background: var(--surface-dark);
    border: 2px solid var(--border-color);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px var(--shadow-glow);
    border-color: var(--primary-color);
}

.plan-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 15px 35px var(--shadow-glow);
    transform: scale(1.05);
}

.plan-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    padding: 8px 25px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

.plan-price {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-color);
    margin: 2rem 0;
    text-shadow: 0 0 20px var(--shadow-glow);
}

.plan-price span {
    font-size: 1.2rem;
    color: var(--text-muted);
}

.plan-features {
    list-style: none;
    margin: 2rem 0;
    text-align: left;
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.feature-check {
    width: 20px;
    height: 20px;
    fill: var(--secondary-color);
    margin-right: 10px;
    filter: drop-shadow(0 0 5px var(--shadow-secondary));
}

.plan-button {
    width: 100%;
    margin-top: 2rem;
}

/* Subscription Form */
.subscription-form-container {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    margin-top: 2rem;
}

.form-section {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--surface-darker);
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.form-section h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 0.5rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

/* How it Works */
.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.step {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-glow);
    border-color: var(--primary-color);
}

.step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 2rem;
    box-shadow: 0 0 20px var(--shadow-glow);
}

.step-icon {
    width: 40px;
    height: 40px;
    fill: var(--primary-color);
    margin: 0 auto 1rem;
    filter: drop-shadow(0 0 10px var(--shadow-glow));
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.testimonial-card {
    background: var(--surface-dark);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px var(--shadow-glow);
    border-color: var(--primary-color);
}

.testimonial-content {
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.author-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.author-info span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.testimonial-rating {
    display: flex;
    gap: 3px;
}

.testimonial-rating svg {
    width: 16px;
    height: 16px;
    fill: var(--primary-color);
}

/* FAQ */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--surface-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: var(--surface-darker);
}

.faq-question h3 {
    margin: 0;
    color: var(--text-primary);
}

.faq-icon {
    width: 24px;
    height: 24px;
    fill: var(--primary-color);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-secondary);
    display: none;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--surface-dark), var(--surface-darker));
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    margin: 4rem 0;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(26, 26, 26, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        margin: 1rem 0;
        font-size: 1.2rem;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(4px, 3px);
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-form-section {
        grid-template-columns: 1fr;
    }

    .filter-buttons {
        justify-content: start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }

    .cta-buttons,
    .cookie-buttons,
    .thanks-actions,
    .form-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons>*,
    .cookie-buttons>*,
    .thanks-actions>*,
    .form-actions>* {
        width: 100%;
        max-width: 300px;
    }

    .offer-card.featured {
        transform: none;
    }

    .plan-card.featured {
        transform: none;
    }

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

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .section {
        padding: 4rem 0;
    }

    .testimonial-author {
        flex-direction: column;
        align-items: start;
        gap: 1rem;
    }

    .hours-item {
        flex-direction: column;
        gap: 0.5rem;
    }
    .about-features, .principles-grid, .macro-grid, .tips-content, .mistakes-grid, [class*="-grid"], .recipes-container {
        grid-template-columns: 1fr;
    }
    .nav-logo {
    font-size: 1rem;}
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .cookie-banner,
    .hamburger,
    .cta-button,
    .btn-primary,
    .btn-secondary {
        display: none !important;
    }

    body {
        background: white !important;
        color: black !important;
    }

    .hero,
    .page-hero {
        background: white !important;
        color: black !important;
    }
}