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

:root {
    --primary-orange: #FF7A30;
    --secondary-yellow: #FFD447;
    --fresh-green: #2BB673;
    --soft-cream: #FFF8F0;
    --dark-text: #2C2C2C;
    --gray-text: #6B7280;
    --light-gray: #F3F4F6;
    --white: #FFFFFF;
    --shadow-light: 0 4px 20px rgba(255, 122, 48, 0.1);
    --shadow-medium: 0 8px 30px rgba(255, 122, 48, 0.15);
    --shadow-strong: 0 12px 40px rgba(255, 122, 48, 0.2);
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: var(--dark-text);
    overflow-x: hidden;
    background-color: var(--white);
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-text);
}

h1 { 
    font-size: 3.5rem; 
    font-weight: 800;
    letter-spacing: -0.02em;
}
h2 { 
    font-size: 2.5rem; 
    font-weight: 700;
    letter-spacing: -0.01em;
}
h3 { 
    font-size: 1.5rem; 
    font-weight: 600;
}

p {
    margin-bottom: 1rem;
    color: var(--gray-text);
    font-size: 1.1rem;
    font-weight: 400;
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange), #FF8A4C);
    background-size: 200% 200%;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    text-align: center;
    position: relative;
    overflow: hidden;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-strong);
    background: linear-gradient(135deg, #FF8A4C, var(--primary-orange));
}

.btn-secondary {
    background: transparent;
    color: var(--dark-text);
    border: 2px solid var(--light-gray);
    padding: 12px 24px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-secondary:hover {
    background: var(--soft-cream);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
    padding: 14px 28px;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-outline:hover {
    background: var(--primary-orange);
    color: white;
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-medium);
}

.btn-large {
    padding: 18px 36px;
    font-size: 1.1rem;
    border-radius: 16px;
}

.btn-full-width {
    width: 100%;
    margin-top: 1rem;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 122, 48, 0.1);
    box-shadow: 0 2px 20px rgba(255, 122, 48, 0.08);
}

.navbar {
    padding: 1.2rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
    color: var(--fresh-green);
}

.logo-img {
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

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

.nav-menu a {
    text-decoration: none;
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow));
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-menu a:hover {
    color: var(--primary-orange);
    transform: translateY(-2px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-text);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

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

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

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.7), rgba(255, 122, 48, 0.4));
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    color: white;
    text-align: center;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 2rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #ffffff, var(--secondary-yellow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.2);
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 4rem;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
}

.hero-features .feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-features .feature i {
    font-size: 1.3rem;
    color: var(--secondary-yellow);
}

/* Pain Points Section */
.pain-points {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-cream), #FFF4E6);
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
    position: relative;
}

.section-header h2 {
    color: var(--dark-text);
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: var(--gray-text);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 400;
}

/* Modern Pain Points Grid Layout */
.pain-grid-modern {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Left Column: Hero Card */
.pain-card-hero {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.pain-card-hero .pain-pictogram {
    width: 120px;
    height: 120px;
    margin-bottom: 2.5rem;
}

.pain-card-hero .pain-pictogram i {
    font-size: 4rem;
}

.pain-card-hero h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pain-card-hero p {
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 300px;
}

/* Right Column: Stacked Cards */
.pain-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

/* Modern Pain Cards */
.pain-card-modern {
    background: #FFF8F0;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 122, 48, 0.1);
    position: relative;
    overflow: hidden;
}

.pain-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 122, 48, 0.15);
    border-color: rgba(255, 122, 48, 0.2);
}

/* Pictogram Containers */
.pain-pictogram {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--white);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(255, 122, 48, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pain-card-modern:hover .pain-pictogram {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 122, 48, 0.2);
}

.pain-pictogram i {
    font-size: 2.5rem;
    color: #FF7A30;
}

/* Typography */
.pain-card-modern h3 {
    font-family: 'Poppins', sans-serif;
    color: #222;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.pain-card-modern p {
    font-family: 'Open Sans', sans-serif;
    color: #555;
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 400;
}

/* Meal Plans Section */
.meal-plans {
    padding: 100px 0;
    background: var(--white);
}

.meal-plans-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Pricing Cards */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.pricing-card {
    background: var(--white);
    border: 2px solid rgba(255, 122, 48, 0.1);
    border-radius: 20px;
    padding: 2.5rem 1.8rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: var(--shadow-light);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-orange);
    background: var(--soft-cream);
}

.pricing-card.popular {
    border-color: var(--primary-orange);
    box-shadow: var(--shadow-medium);
    position: relative;
    background: linear-gradient(145deg, var(--white), var(--soft-cream));
}

.pricing-card.popular::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    border-radius: 20px 20px 0 0;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--fresh-green), #34D399);
    color: white;
    padding: 8px 24px;
    border-radius: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(43, 182, 115, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: translateX(-50%) scale(1) rotate(0deg); 
        box-shadow: 0 4px 15px rgba(43, 182, 115, 0.3);
    }
    50% { 
        transform: translateX(-50%) scale(1.05) rotate(1deg); 
        box-shadow: 0 6px 20px rgba(43, 182, 115, 0.4);
    }
}

.plan-header {
    margin-bottom: 1.5rem;
}

.plan-header h3 {
    color: #333;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.plan-price {
    margin-bottom: 1.5rem;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--primary-orange);
    display: block;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 4px rgba(255, 122, 48, 0.1);
}

.pricing-card:hover .price {
    transform: scale(1.1);
    color: var(--fresh-green);
}

.per-meal {
    color: var(--gray-text);
    font-size: 0.95rem;
    font-weight: 500;
    font-family: 'Open Sans', sans-serif;
}

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

.plan-items li {
    padding: 0.6rem 0;
    border-bottom: 1px solid #f8f9fa;
    display: flex;
    align-items: center;
    color: #555;
    font-size: 0.95rem;
}

.plan-items li:before {
    content: '✓';
    color: var(--fresh-green);
    font-weight: bold;
    margin-right: 12px;
    font-size: 1.1rem;
}

.plan-items li:last-child {
    border-bottom: none;
}

/* Pricing Table */
.pricing-table-container {
    background: linear-gradient(135deg, var(--soft-cream), #FFF4E6);
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid rgba(255, 122, 48, 0.1);
    box-shadow: var(--shadow-light);
}

.pricing-table-container h4 {
    color: #333;
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    text-align: center;
    font-weight: 600;
}

.pricing-table {
    overflow-x: auto;
}

.pricing-table table {
    width: 100%;
    border-collapse: collapse;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-light);
}

.pricing-table th {
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    color: white;
    padding: 1.2rem 0.8rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-align: center;
}

.pricing-table td {
    padding: 1rem 0.8rem;
    text-align: center;
    border-bottom: 1px solid #f0f1f3;
    font-size: 0.95rem;
    color: #555;
    font-weight: 500;
}

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

.duration-cell {
    text-align: left !important;
    font-weight: 500;
}

.duration-cell strong {
    color: #333;
    display: block;
    margin-bottom: 2px;
}

.duration-cell small {
    color: #888;
    font-size: 0.8rem;
}

.highlighted-row {
    background: rgba(255, 107, 53, 0.05);
}

.highlighted-row td {
    font-weight: 600;
    color: #333;
}

/* Footnotes */
.pricing-footnotes {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 122, 48, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 122, 48, 0.1);
}

.pricing-footnotes p {
    color: var(--gray-text);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.pricing-footnotes p:last-child {
    margin-bottom: 0;
}

/* Why Us Section */
.why-us {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-cream), #FFF4E6);
}

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

.feature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 122, 48, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow), var(--fresh-green));
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-strong);
    border-color: var(--primary-orange);
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--fresh-green), #34D399);
}

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

.feature-card h3 {
    color: var(--dark-text);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--gray-text);
    line-height: 1.8;
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    background: var(--white);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.step {
    text-align: center;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.step:hover {
    transform: translateY(-5px);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--fresh-green), #34D399);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(43, 182, 115, 0.3);
}

.step-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-light);
}

.step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--fresh-green), #34D399);
}

.step-icon i {
    font-size: 2.2rem;
    color: white;
}

.step h3 {
    color: var(--dark-text);
    margin-bottom: 0.8rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.step p {
    color: var(--gray-text);
    line-height: 1.6;
    font-size: 0.95rem;
}

.cta-section {
    text-align: center;
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-orange), var(--secondary-yellow));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.cta-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.cta-actions .btn-primary {
    background: var(--white);
    color: var(--primary-orange);
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-actions .btn-primary:hover {
    background: var(--soft-cream);
    color: var(--dark-text);
    transform: translateY(-5px) scale(1.05);
}

.cta-actions .btn-outline {
    border-color: white;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.cta-actions .btn-outline:hover {
    background: white;
    color: var(--primary-orange);
}

.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--soft-cream), #FFF4E6);
    overflow: hidden;
}

.testimonials-slider-container {
    position: relative;
    width: 100%;
    max-width: 100vw;
    margin: 0 auto;
}

.testimonials-slider {
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
}

.testimonials-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    gap: 2rem;
    width: fit-content;
    cursor: grab;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonial-card {
    flex: 0 0 calc(33.333% - 1.33rem);
    min-width: 350px;
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-light);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 122, 48, 0.1);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #ff6b35, transparent);
    transition: left 0.6s ease;
}

.testimonial-card:hover::before {
    left: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 107, 53, 0.2);
}

.testimonial-card:hover::before {
    left: 100%;
}

.stars {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 4px;
}

.stars i {
    color: var(--secondary-yellow);
    font-size: 1.2rem;
    transition: all 0.2s ease;
}

.testimonial-card:hover .stars i {
    color: var(--primary-orange);
    transform: scale(1.1);
}

.testimonial-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-text);
    margin-bottom: 2.5rem;
    font-style: italic;
    min-height: 120px;
    display: flex;
    align-items: center;
    text-align: left;
    position: relative;
}

.testimonial-content p::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-orange);
    position: absolute;
    left: -20px;
    top: -10px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    opacity: 0.3;
}

.testimonial-author {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 2px solid var(--soft-cream);
}

.testimonial-author strong {
    display: block;
    color: var(--dark-text);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.95rem;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, #ff6b35, #ff8e3c);
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.slider-btn:hover {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.prev-btn {
    left: -25px;
}

.next-btn {
    right: -25px;
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #ff6b35;
    transform: scale(1.2);
}

.dot:hover {
    background: #ff8e3c;
}

/* Responsive Design for Testimonials */
@media (max-width: 1200px) {
    .testimonial-card {
        flex: 0 0 calc(50% - 1rem);
        min-width: 320px;
    }
    
    .prev-btn {
        left: 10px;
    }
    
    .next-btn {
        right: 10px;
    }
    
    /* Tablet Responsive for Meal Plans */
    .meal-plans-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .pricing-card {
        padding: 1.5rem 1rem;
    }
    
    .pricing-table-container {
        order: -1;
    }
    
    /* Steps container responsive for tablet */
    .steps-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    /* Pain points responsive for tablet */
    .pain-grid-modern {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .pain-card-hero {
        min-height: 350px;
    }
}

@media (max-width: 768px) {
    .testimonial-card {
        flex: 0 0 calc(90vw - 2rem);
        min-width: 280px;
        padding: 2rem 1.5rem;
    }
    
    .testimonials-track {
        gap: 1rem;
    }
    
    .testimonial-content p {
        font-size: 1rem;
        min-height: 100px;
        text-align: center;
    }
    
    .slider-btn {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
}

@media (max-width: 480px) {
    .testimonial-card {
        flex: 0 0 calc(95vw - 1rem);
        min-width: 260px;
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        min-height: 80px;
        font-size: 0.95rem;
    }
}

/* Footer */
.footer {
    background: var(--dark-text);
    color: white;
    padding: 100px 0 30px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-orange), var(--secondary-yellow), var(--fresh-green));
}

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

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--primary-orange);
}

.footer-section h4 {
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    margin-bottom: 2rem;
    position: relative;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--secondary-yellow);
    border-radius: 1px;
}

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

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

.footer-section ul li a {
    color: #CBD5E0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff6b35;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #ff6b35;
}

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    color: #ff6b35;
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 122, 48, 0.2);
    color: #CBD5E0;
}

.footer-bottom a {
    color: var(--primary-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--secondary-yellow);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu,
    .nav-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    
    /* Mobile responsive for modern pain points */
    .pain-grid-modern {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pain-card-hero {
        min-height: 300px;
    }
    
    .pain-card-hero .pain-pictogram {
        width: 100px;
        height: 100px;
        margin-bottom: 2rem;
    }
    
    .pain-card-hero .pain-pictogram i {
        font-size: 3rem;
    }
    
    .pain-card-hero h3 {
        font-size: 1.6rem;
    }
    
    .pain-card-hero p {
        font-size: 1rem;
        max-width: 100%;
    }
    
    .pain-cards-stack {
        gap: 1.2rem;
    }
    
    .pain-card-modern {
        padding: 1.5rem;
    }
    
    .pain-pictogram {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .pain-pictogram i {
        font-size: 2rem;
    }
    
    .meal-plans-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .pricing-cards {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-table-container {
        order: -1;
        padding: 1.5rem;
    }
    
    .pricing-table {
        font-size: 0.85rem;
    }
    
    .pricing-table th,
    .pricing-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
        background: linear-gradient(135deg, #ffffff, var(--secondary-yellow));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}