/* Reset és alapbeállítások */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #a232fb;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --bg-light: #fafafa;
    --white: #ffffff;
    --border-light: #e5e5e5;
    
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --border-radius: 12px;
    --shadow-soft: 0 4px 24px rgba(162, 50, 251, 0.08);
    --shadow-medium: 0 8px 32px rgba(162, 50, 251, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo-img {
    height: 38px;
    width: auto;
}

.nav-desktop {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-desktop a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-desktop a:hover {
    color: var(--primary-color);
}

.nav-desktop a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
    width: 100%;
}

/* Nav CTA Button */
.nav-cta-btn {
    background: linear-gradient(135deg, var(--primary-color), #c15bff) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    box-shadow: var(--shadow-soft);
    transition: var(--transition) !important;
    border: none;
}

.nav-cta-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: var(--shadow-medium) !important;
    color: var(--white) !important;
}

.nav-cta-btn::after {
    display: none !important;
}

/* Mobile Navigation */
.nav-mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

.nav-mobile {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    border-bottom: 1px solid var(--border-light);
    z-index: 999;
    padding: 20px;
    flex-direction: column;
    gap: 16px;
}

.nav-mobile a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
}

.nav-mobile-cta {
    background: linear-gradient(135deg, var(--primary-color), #c15bff) !important;
    color: var(--white) !important;
    padding: 16px 24px !important;
    border-radius: 25px !important;
    font-weight: 600 !important;
    text-align: center !important;
    margin-top: 8px !important;
    border-bottom: none !important;
    box-shadow: var(--shadow-soft);
}

/* Early Bird Banner */
.early-bird-banner {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    padding: 12px 0;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(255, 71, 87, 0.3);
}

.early-bird-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.early-bird-text {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.early-bird-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    animation: pulse 2s infinite;
}

.early-bird-discount {
    font-size: 18px;
    font-weight: 800;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.countdown-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.countdown-label {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}

.countdown-timer {
    display: flex;
    gap: 10px;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    padding: 4px 8px;
    min-width: 45px;
}

.countdown-number {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
}

.countdown-unit {
    font-size: 10px;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.countdown-ended {
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 6px;
}

/* Hero Section */
.hero {
    padding: 180px 0 80px;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--white) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-headline {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-headline .accent {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subheadline {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.7;
}

/* Benefits */
.benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 2px 0;
}

.benefit-icon {
    font-size: 20px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(162, 50, 251, 0.1);
    border-radius: 8px;
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Ingredient Strip */
.ingredient-strip {
    background: var(--text-dark);
    color: var(--white);
    padding: 12px 20px;
    border-radius: var(--border-radius);
    font-family: 'Courier New', monospace;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    text-align: center;
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.btn {
    padding: 16px 32px;
    border: none;
    border-radius: var(--border-radius);
    font-family: var(--font-family);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    color: var(--white);
    box-shadow: var(--shadow-soft);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Friction Breaker */
.friction-breaker {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    text-align: center;
}

/* Hero Image */
.hero-image {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.hero-img:hover {
    transform: scale(1.02);
}

/* Quote Bubble */
.quote-bubble {
    position: absolute;
    top: 20px;
    right: -40px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    max-width: 250px;
    border-left: 4px solid var(--primary-color);
}

.quote-bubble::before {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 20px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid var(--white);
}

.quote-bubble p {
    font-size: 14px;
    font-style: italic;
    color: var(--text-dark);
    margin: 0;
}

/* Navigation Anchors */
.nav-anchors {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-light);
}

.anchors-list {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.anchor-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 2px solid transparent;
}

.anchor-link:hover {
    color: var(--primary-color);
    border-color: var(--primary-color);
    background: rgba(162, 50, 251, 0.05);
}

/* Problem Awareness Section */
.problem-section {
    padding: 100px 0;
    background: var(--white);
}

.problem-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 32px;
    color: var(--text-dark);
}

.problem-triggers {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.trigger {
    background: rgba(162, 50, 251, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid rgba(162, 50, 251, 0.2);
}

.problem-description {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 24px;
    font-weight: 500;
    font-style: italic;
}

.problem-main-text {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.problem-reassurance {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.problem-reassurance strong {
    color: var(--text-dark);
    font-weight: 600;
}

.emphatic-callout {
    background: linear-gradient(135deg, rgba(162, 50, 251, 0.08), rgba(193, 91, 255, 0.05));
    border: 2px solid rgba(162, 50, 251, 0.15);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.callout-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.emphatic-callout p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Problem Visual */
.problem-image-container {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
}

.problem-img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.problem-img:hover {
    transform: scale(1.02);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    padding: 40px 24px 24px;
    color: var(--white);
}

.overlay-text {
    font-size: 16px;
    font-weight: 500;
    font-style: italic;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Solution Section */
.solution-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.solution-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.solution-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.solution-headline .accent {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.solution-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.benefit-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    border: 1px solid var(--border-light);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.benefit-card-icon {
    font-size: 28px;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(162, 50, 251, 0.1);
    border-radius: 12px;
}

.benefit-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.benefit-card-text {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Solution Emphatic */
.solution-emphatic {
    background: linear-gradient(135deg, rgba(162, 50, 251, 0.08), rgba(193, 91, 255, 0.05));
    border: 2px solid rgba(162, 50, 251, 0.15);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.solution-callout-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.solution-emphatic p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Product Showcase */
.product-showcase {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.main-product {
    position: relative;
    z-index: 10;
}

.product-img {
    width: 300px;
    height: auto;
    filter: drop-shadow(0 8px 32px rgba(162, 50, 251, 0.2));
    transition: var(--transition);
}

.product-img:hover {
    transform: scale(1.05) rotate(2deg);
}

/* Ingredient Circles */
.ingredient-circles {
    position: absolute;
    inset: 0;
}

.ingredient-circle {
    position: absolute;
    width: 80px;
    height: 80px;
    background: var(--white);
    border: 2px solid rgba(162, 50, 251, 0.2);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    animation: float 3s ease-in-out infinite;
    padding: 8px;
    box-sizing: border-box;
}

.ingredient-circle:hover {
    transform: scale(1.1);
    border-color: var(--primary-color);
    box-shadow: var(--shadow-medium);
}

.ingredient-1 { 
    top: 20%; 
    left: 10%; 
    animation-delay: 0s;
}

.ingredient-2 { 
    top: 10%; 
    right: 15%; 
    animation-delay: 1s;
}

.ingredient-3 { 
    bottom: 25%; 
    left: 5%; 
    animation-delay: 2s;
}

.ingredient-4 { 
    bottom: 10%; 
    right: 20%; 
    animation-delay: 1.5s;
}

.ingredient-icon {
    font-size: 18px !important;
    line-height: 1;
    display: block;
    text-align: center;
    margin-bottom: 2px;
}

.ingredient-circle span {
    font-size: 9px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
    line-height: 1.1;
    display: block;
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

/* Showcase Overlay */
.showcase-overlay {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 20px;
    z-index: 15;
}

.overlay-tagline {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Differentiation Section */
.differentiation-section {
    padding: 100px 0;
    background: var(--white);
}

.differentiation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.differentiation-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--text-dark);
}

.differentiation-headline .accent {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.differentiation-intro {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

/* Emotional & Rational Sides */
.emotional-rational {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.emotional-side,
.rational-side {
    background: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
}

.emotional-side h3,
.rational-side h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.emotional-side p,
.rational-side p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Comparison List */
.comparison-list {
    margin-bottom: 32px;
}

.comparison-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.comparison-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 20px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-light);
}

.comparison-item:last-child {
    border-bottom: none;
}

.comparison-negative,
.comparison-positive {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
}

.comparison-negative {
    background: rgba(255, 0, 0, 0.05);
    border: 1px solid rgba(255, 0, 0, 0.1);
}

.comparison-positive {
    background: rgba(162, 50, 251, 0.08);
    border: 1px solid rgba(162, 50, 251, 0.15);
}

.comparison-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.comparison-text {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
}

.comparison-text strong {
    font-weight: 600;
}

/* Differentiation Emphatic */
.differentiation-emphatic {
    background: linear-gradient(135deg, rgba(162, 50, 251, 0.08), rgba(193, 91, 255, 0.05));
    border: 2px solid rgba(162, 50, 251, 0.15);
    border-radius: var(--border-radius);
    padding: 20px 24px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.diff-callout-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.differentiation-emphatic p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
}

/* Comparison Visual */
.comparison-visual {
    position: relative;
    background: var(--bg-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
}

.visual-split {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    text-align: center;
}

.visual-left,
.visual-right {
    padding: 20px;
}

.visual-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.dry-skin {
    filter: grayscale(100%);
}

.glowing-skin {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 10px rgba(162, 50, 251, 0.5);
        transform: scale(1);
    }
    to {
        text-shadow: 0 0 20px rgba(162, 50, 251, 0.8);
        transform: scale(1.1);
    }
}

.visual-left h4,
.visual-right h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.visual-left p,
.visual-right p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.visual-effects {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.effect-item {
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
}

.effect-item.negative {
    background: rgba(255, 0, 0, 0.1);
    color: #d32f2f;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.effect-item.positive {
    background: rgba(162, 50, 251, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(162, 50, 251, 0.2);
}

.visual-divider {
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-text {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 14px;
    box-shadow: var(--shadow-soft);
}

.visual-overlay {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 20px;
    z-index: 10;
}

.overlay-message {
    font-size: 14px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.testimonials-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--text-dark);
    text-align: center;
}

.testimonials-content {
    display: grid;
    gap: 60px;
}

/* Customer Reviews */
.customer-reviews {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.review-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 24px;
    font-size: 60px;
    color: var(--primary-color);
    font-family: Georgia, serif;
    opacity: 0.3;
}

.review-stars {
    font-size: 16px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 24px;
    border: none;
    padding: 0;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.avatar-initial {
    color: var(--white);
    font-size: 18px;
    font-weight: 600;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.author-age {
    font-size: 14px;
    color: var(--text-light);
}

/* Expert Opinion */
.expert-opinion {
    display: flex;
    justify-content: center;
}

.expert-card {
    background: linear-gradient(135deg, rgba(162, 50, 251, 0.08), rgba(193, 91, 255, 0.05));
    border: 2px solid rgba(162, 50, 251, 0.15);
    border-radius: 20px;
    padding: 40px;
    max-width: 700px;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.expert-avatar {
    width: 80px;
    height: 80px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft);
    flex-shrink: 0;
}

.expert-icon {
    font-size: 32px;
}

.expert-content {
    flex: 1;
}

.expert-quote-icon {
    font-size: 24px;
    margin-bottom: 16px;
}

.expert-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    font-style: italic;
    margin-bottom: 20px;
    border: none;
    padding: 0;
}

.expert-info {
    display: flex;
    flex-direction: column;
}

.expert-name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

.expert-title {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
}

/* Before/After Visual */
.before-after-visual {
    display: flex;
    justify-content: center;
}

.before-after-container {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-soft);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    max-width: 600px;
}

.before-side,
.after-side {
    text-align: center;
    padding: 20px;
}

.ba-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
}

.ba-icon.sad {
    filter: grayscale(100%);
}

.ba-icon.happy {
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

.before-side h4,
.after-side h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.before-side p,
.after-side p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.ba-effects {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.ba-effect {
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 500;
}

.ba-effect.negative {
    background: rgba(255, 0, 0, 0.1);
    color: #d32f2f;
    border: 1px solid rgba(255, 0, 0, 0.2);
}

.ba-effect.positive {
    background: rgba(162, 50, 251, 0.1);
    color: var(--primary-color);
    border: 1px solid rgba(162, 50, 251, 0.2);
}

.transformation-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.arrow {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: bold;
}

.arrow-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Social Proof Emphatic */
.social-proof-emphatic {
    background: linear-gradient(135deg, rgba(162, 50, 251, 0.08), rgba(193, 91, 255, 0.05));
    border: 2px solid rgba(162, 50, 251, 0.15);
    border-radius: var(--border-radius);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 600px;
    margin: 0 auto;
}

.social-callout-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.social-proof-emphatic p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

/* Routine Section */
.routine-section {
    padding: 100px 0;
    background: var(--white);
}

.routine-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--text-dark);
    text-align: center;
}

/* Routine Steps */
.routine-steps {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 40px;
    align-items: flex-start;
    margin-bottom: 60px;
}

.routine-step {
    background: var(--bg-light);
    padding: 32px;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.routine-step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(162, 50, 251, 0.3);
}

.routine-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c15bff);
}

.step-number {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.step-icon {
    width: 60px;
    height: 60px;
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(162, 50, 251, 0.3);
    transition: var(--transition);
}

.step-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 24px rgba(162, 50, 251, 0.4);
}

.step-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    text-align: center;
}

.step-product {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow-soft);
}

.step-product.featured {
    background: linear-gradient(135deg, rgba(162, 50, 251, 0.08), rgba(193, 91, 255, 0.05));
}

.step-product-img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    flex-shrink: 0;
}

.step-product-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.step-sizes {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

.product-badges {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 500;
}

.step-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.step-intro {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 16px;
    text-align: center;
}

/* Step Arrows */
.step-arrow {
    font-size: 24px;
    color: var(--primary-color);
    font-weight: bold;
    align-self: center;
    text-align: center;
    padding: 12px;
    background: rgba(162, 50, 251, 0.1);
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Serum Options */
.serum-options {
    display: grid;
    gap: 12px;
}

.serum-option {
    background: var(--white);
    border-radius: 8px;
    padding: 12px;
    transition: var(--transition);
}

.serum-option:hover {
    background: rgba(162, 50, 251, 0.05);
}

.serum-product {
    display: flex;
    align-items: center;
    gap: 12px;
}

.serum-img {
    width: 40px;
    height: 40px;
    object-fit: cover;
    border-radius: 6px;
    flex-shrink: 0;
}

.serum-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.serum-info p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Routine Result */
.routine-result {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(162, 50, 251, 0.15);
}

.result-emphatic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.result-callout-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.result-emphatic p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.routine-cta-btn {
    font-size: 18px;
    padding: 18px 36px;
    min-width: auto;
}

/* Ingredients Section */
.ingredients-section {
    padding: 100px 0;
    background: var(--white);
    position: relative;
}

.ingredients-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 60px;
    color: var(--text-dark);
    text-align: center;
}

.ingredients-headline .accent {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Ingredients Grid */
.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
    margin-bottom: 60px;
}

.ingredient-card {
    background: var(--bg-light);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
    cursor: pointer;
}

.ingredient-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(162, 50, 251, 0.3);
    background: var(--white);
}

.ingredient-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
    position: relative;
}

.ingredient-icon.hyaluronic { animation: drip 3s ease-in-out infinite; }
.ingredient-icon.probiotic { animation: pulse 2s ease-in-out infinite; }
.ingredient-icon.oils { animation: sway 4s ease-in-out infinite; }
.ingredient-icon.algae { animation: shimmer 2.5s ease-in-out infinite; }
.ingredient-icon.soothing { animation: breathe 3s ease-in-out infinite; }
.ingredient-icon.vitamin-e { animation: glow-shield 2s ease-in-out infinite; }

@keyframes drip {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes sway {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(3deg); }
    75% { transform: rotate(-3deg); }
}

@keyframes shimmer {
    0%, 100% { 
        transform: scale(1); 
        text-shadow: 0 0 10px rgba(162, 50, 251, 0.3);
    }
    50% { 
        transform: scale(1.1); 
        text-shadow: 0 0 20px rgba(162, 50, 251, 0.6);
    }
}

@keyframes breathe {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.05); opacity: 0.8; }
}

@keyframes glow-shield {
    0%, 100% { 
        transform: scale(1); 
        filter: drop-shadow(0 0 5px rgba(255, 215, 0, 0.3));
    }
    50% { 
        transform: scale(1.1); 
        filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.6));
    }
}

.ingredient-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.ingredient-subtitle {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 12px;
    font-style: italic;
}

.ingredient-description {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Tooltip */
.ingredient-card::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--text-dark);
    color: var(--white);
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 12px;
    line-height: 1.4;
    white-space: normal;
    width: 250px;
    text-align: left;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
    box-shadow: var(--shadow-soft);
}

.ingredient-card::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(8px);
    border: 6px solid transparent;
    border-top-color: var(--text-dark);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 10;
}

.ingredient-card:hover::after,
.ingredient-card:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(-10px);
}

.ingredient-card:hover::before {
    transform: translateX(-50%) translateY(-2px);
}

/* Visual Grid */
.ingredients-visual {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 20px;
    margin-bottom: 40px;
}

.visual-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    justify-items: center;
}

.visual-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: var(--white);
    border-radius: 12px;
    transition: var(--transition);
    cursor: pointer;
}

.visual-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-soft);
}

.visual-image {
    font-size: 36px;
    transition: var(--transition);
}

.visual-item:hover .visual-image {
    transform: scale(1.2);
}

.visual-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-dark);
    text-align: center;
}

/* Ingredients Emphatic */
.ingredients-emphatic {
    background: linear-gradient(135deg, rgba(162, 50, 251, 0.08), rgba(193, 91, 255, 0.05));
    border: 2px solid rgba(162, 50, 251, 0.15);
    border-radius: var(--border-radius);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    max-width: 800px;
    margin: 0 auto;
}

.ingredients-callout-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.ingredients-emphatic p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}

/* INCI List */
.inci-section {
    margin-top: 40px;
    background: var(--white);
    border-radius: 12px;
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
}

.inci-toggle {
    padding: 20px 24px;
    background: var(--bg-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
    border-bottom: 1px solid var(--border-light);
}

.inci-toggle:hover {
    background: rgba(162, 50, 251, 0.05);
}

.inci-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: 8px;
}

.inci-arrow {
    font-size: 14px;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.inci-arrow.rotated {
    transform: rotate(180deg);
}

.inci-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.inci-content.expanded {
    max-height: 400px;
}

.inci-intro {
    padding: 20px 24px 0;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-light);
    margin: 0;
}

.inci-list {
    padding: 16px 24px 24px;
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-dark);
    font-family: 'Courier New', monospace;
    background: var(--bg-light);
    margin: 16px 24px 0;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
}

/* Final CTA Section */
.final-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--bg-light) 50%, var(--white) 100%);
    position: relative;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #c15bff, var(--primary-color));
}

.final-headline {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 50px;
    color: var(--text-dark);
    text-align: center;
}

.final-headline .accent {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.final-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.final-intro {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 32px;
    font-weight: 500;
}

.final-benefits {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
}

.final-benefit {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 12px;
    background: rgba(162, 50, 251, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
}

.benefit-bullet {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    flex-shrink: 0;
    margin-top: -2px;
}

.final-benefit span:last-child {
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.6;
}

.final-promise {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.6;
    font-weight: 500;
    font-style: italic;
    text-align: center;
    padding: 20px;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    border: 2px solid rgba(162, 50, 251, 0.15);
    margin: 0;
}

/* Pricing Table */
.pricing-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-large);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
    transform: scale(1.05);
    box-shadow: var(--shadow-large);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-5px);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
}

.card-header {
    margin-bottom: 25px;
}

.pricing-product-image {
    width: 120px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 15px;
    filter: drop-shadow(0 4px 16px rgba(162, 50, 251, 0.3));
}

.product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.product-description {
    font-size: 16px;
    color: var(--text-secondary);
    margin: 0;
}

.card-price {
    margin-bottom: 30px;
    padding: 20px 0;
    border-top: 1px solid rgba(162, 50, 251, 0.2);
    border-bottom: 1px solid rgba(162, 50, 251, 0.2);
}

.price-amount {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.price-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 8px;
}

.price-original {
    font-size: 18px;
    color: var(--text-light);
    text-decoration: line-through;
    font-weight: 500;
}

.price-discount {
    background: linear-gradient(135deg, #ff4757, #ff3742);
    color: white;
    font-size: 14px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-note {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-top: 8px;
}

.card-features {
    margin-bottom: 30px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text-dark);
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.feature-list li:last-child {
    border-bottom: none;
}

.card-cta {
    margin-top: auto;
}

.pricing-card .cream-cta-btn,
.pricing-card .package-cta-btn {
    width: 100%;
    font-size: 16px;
    padding: 18px 20px;
    margin: 0;
}

.pricing-card.featured .package-cta-btn {
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    border: none;
    color: var(--white);
    font-weight: 600;
    transform: none;
    animation: pulse-featured 2s ease-in-out infinite;
}

@keyframes pulse-featured {
    0%, 100% { 
        box-shadow: 0 4px 20px rgba(162, 50, 251, 0.4);
    }
    50% { 
        box-shadow: 0 8px 30px rgba(162, 50, 251, 0.6);
    }
}

/* Happy Customer */
.happy-customer {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.happy-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.happy-img:hover {
    transform: scale(1.05);
}

.happy-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 30px 20px 20px;
    color: var(--white);
}

.happy-overlay p {
    font-size: 18px;
    font-weight: 600;
    font-style: italic;
    margin: 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Final CTA Area */
.final-cta-area {
    background: linear-gradient(135deg, rgba(162, 50, 251, 0.08), rgba(193, 91, 255, 0.05));
    border: 3px solid rgba(162, 50, 251, 0.2);
    border-radius: 20px;
    padding: 50px 40px;
    text-align: center;
}

.final-emphatic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.final-callout-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.final-emphatic p {
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
    font-size: 19px;
    line-height: 1.4;
    font-style: italic;
}

/* Sticky Mobile CTA */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 12px 20px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 999;
    display: none;
    border-top: 2px solid var(--primary-color);
}

.sticky-cta-btn {
    width: 100%;
    font-size: 18px;
    padding: 16px;
    box-shadow: 0 4px 20px rgba(162, 50, 251, 0.3);
}

/* Trust & Guarantee Section */
.trust-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.trust-headline {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 40px;
    color: var(--text-dark);
    text-align: center;
}

.trust-headline .accent {
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-color), #c15bff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.trust-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 60px;
}

.trust-intro {
    font-size: 18px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 32px;
    text-align: center;
}

/* Guarantee List */
.guarantee-list {
    display: grid;
    gap: 24px;
}

.guarantee-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
}

.guarantee-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.guarantee-icon {
    width: 32px;
    height: 32px;
    background: rgba(162, 50, 251, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.guarantee-icon .icon {
    font-size: 18px;
    color: var(--primary-color);
}

.guarantee-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 4px;
}

.guarantee-content p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}

/* Trust Visual */
.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.trust-badge {
    background: var(--white);
    padding: 32px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 2px solid var(--border-light);
    transition: var(--transition);
}

.trust-badge:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(162, 50, 251, 0.3);
}

.badge-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.guarantee-badge { animation: pulse 2s ease-in-out infinite; }
.hungarian-badge { animation: wave 3s ease-in-out infinite; }
.clean-badge { animation: grow 2.5s ease-in-out infinite; }
.cruelty-badge { animation: bounce 3s ease-in-out infinite; }

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes wave {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(5deg); }
    75% { transform: rotate(-5deg); }
}

@keyframes grow {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.trust-badge h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.trust-badge p {
    font-size: 12px;
    color: var(--text-light);
    margin: 0;
}

/* Trust Final */
.trust-final {
    background: linear-gradient(135deg, rgba(162, 50, 251, 0.08), rgba(193, 91, 255, 0.05));
    border: 2px solid rgba(162, 50, 251, 0.15);
    border-radius: 20px;
    padding: 40px;
    text-align: center;
}

.trust-emphatic {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

.trust-callout-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.trust-emphatic p {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0;
    font-size: 18px;
    line-height: 1.5;
}

.final-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.final-cta-btn {
    font-size: 20px;
    padding: 20px 40px;
    min-width: auto;
    box-shadow: 0 8px 32px rgba(162, 50, 251, 0.3);
}

.final-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(162, 50, 251, 0.4);
}

.cta-subtext {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin: 0;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-logo {
    height: 100px;
    width: auto;
    filter: brightness(0) invert(1);
    object-fit: contain;
    aspect-ratio: auto;
}

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.footer-section h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--white);
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-section li {
    margin-bottom: 8px;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom p {
    margin: 0;
}

/* Placeholder Sections */
.section-placeholder {
    padding: 80px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-light);
}

.section-placeholder h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-desktop {
        display: none;
    }
    
    .nav-mobile-toggle {
        display: flex;
    }

    .early-bird-banner {
        padding: 8px 0;
    }

    .early-bird-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .early-bird-text {
        justify-content: center;
        gap: 10px;
    }

    .early-bird-discount {
        font-size: 16px;
    }

    .countdown-timer {
        gap: 8px;
    }

    .countdown-item {
        min-width: 35px;
        padding: 2px 6px;
    }

    .countdown-number {
        font-size: 14px;
    }

    .countdown-unit {
        font-size: 9px;
    }
    
    .hero {
        padding: 140px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-text {
        order: 2;
    }
    
    .hero-image {
        order: 1;
    }
    
    .quote-bubble {
        position: absolute;
        top: auto;
        bottom: -60px;
        right: 50%;
        transform: translateX(50%);
        margin: 0;
        max-width: 280px;
        z-index: 10;
    }
    
    .quote-bubble::before {
        bottom: auto;
        top: -8px;
        left: 50%;
        transform: translateX(-50%);
        border-top: none;
        border-bottom: 8px solid var(--white);
    }
    
    .hero-image {
        margin-bottom: 80px;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: left;
    }
    
    .problem-visual {
        order: -1;
    }
    
    .problem-triggers {
        justify-content: center;
    }
    
    .emphatic-callout {
        text-align: left;
    }
    
    .solution-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .solution-visual {
        order: -1;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-showcase {
        min-height: 400px;
    }
    
    .product-img {
        width: 250px;
    }
    
    .ingredient-circle {
        width: 60px;
        height: 60px;
    }
    
    .ingredient-icon {
        font-size: 16px;
    }
    
    .ingredient-circle span {
        font-size: 9px;
    }
    
    .ingredient-1 { 
        top: 15%; 
        left: 5%; 
    }
    
    .ingredient-2 { 
        top: 5%; 
        right: 10%; 
    }
    
    .ingredient-3 { 
        bottom: 20%; 
        left: 0%; 
    }
    
    .ingredient-4 { 
        bottom: 5%; 
        right: 15%; 
    }
    
    .differentiation-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .emotional-rational {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .comparison-item {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .visual-split {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .visual-divider {
        order: 2;
    }
    
    .visual-left {
        order: 1;
    }
    
    .visual-right {
        order: 3;
    }
    
    .comparison-visual {
        padding: 24px;
    }
    
    .visual-icon {
        font-size: 36px;
    }
    
    .effect-item {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .customer-reviews {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .expert-card {
        flex-direction: column;
        text-align: center;
        padding: 24px;
        gap: 20px;
    }
    
    .expert-avatar {
        align-self: center;
    }
    
    .before-after-container {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }
    
    .transformation-arrow {
        order: 2;
    }
    
    .before-side {
        order: 1;
    }
    
    .after-side {
        order: 3;
    }
    
    .arrow {
        transform: rotate(90deg);
        font-size: 24px;
    }
    
    .social-proof-emphatic {
        flex-direction: column;
        text-align: center;
        padding: 20px 24px;
    }
    
    .social-proof-emphatic p {
        font-size: 16px;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .ingredient-card {
        padding: 24px 20px;
    }
    
    .ingredient-icon {
        font-size: 40px;
        margin-bottom: 16px;
    }
    
    .ingredient-card::after {
        width: 200px;
        font-size: 11px;
    }
    
    .visual-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    
    .visual-item {
        padding: 16px 12px;
    }
    
    .visual-image {
        font-size: 28px;
    }
    
    .visual-label {
        font-size: 11px;
    }
    
    .ingredients-visual {
        padding: 24px;
    }
    
    .ingredients-emphatic {
        flex-direction: column;
        gap: 12px;
        padding: 20px 24px;
    }
    
    .ingredients-emphatic p {
        font-size: 16px;
    }
    
    .routine-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .step-arrow {
        transform: rotate(90deg);
        align-self: center;
        justify-self: center;
        margin: 16px 0;
    }
    
    .routine-step {
        padding: 24px;
    }
    
    .step-product {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
    
    .step-product-img {
        width: 80px;
        height: 80px;
    }
    
    .serum-options {
        gap: 8px;
    }
    
    .serum-product {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .serum-img {
        width: 50px;
        height: 50px;
    }
    
    .routine-result {
        padding: 24px;
    }
    
    .result-emphatic {
        flex-direction: column;
        gap: 12px;
    }
    
    .result-emphatic p {
        font-size: 16px;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .trust-badges {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .trust-badge {
        padding: 24px 20px;
    }
    
    .badge-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    
    .trust-final {
        padding: 24px;
    }
    
    .trust-emphatic {
        flex-direction: column;
        gap: 12px;
    }
    
    .trust-emphatic p {
        font-size: 16px;
    }
    
    .final-cta-btn {
        font-size: 18px;
        padding: 18px 32px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .final-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .final-visual {
        order: -1;
    }
    
    .pricing-table {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .pricing-card.featured {
        transform: none;
        order: -1;
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .pricing-product-image {
        width: 100px;
    }
    
    .product-title {
        font-size: 22px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .feature-list li {
        font-size: 15px;
    }
    
    .happy-customer {
        width: 280px;
        height: 280px;
    }
    
    .final-cta-area {
        padding: 30px 20px;
    }
    
    .final-emphatic {
        flex-direction: column;
        gap: 12px;
    }
    
    .final-emphatic p {
        font-size: 16px;
    }
    
    .sticky-cta {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
    }
    
    .anchors-list {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .benefits {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-subheadline {
        font-size: 16px;
    }
    
    .quote-bubble {
        max-width: 100%;
    }
    
    .ingredient-strip {
        font-size: 10px;
        padding: 10px 16px;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content > * {
    animation: fadeInUp 0.8s ease-out;
}

.hero-text > *:nth-child(1) { animation-delay: 0.1s; }
.hero-text > *:nth-child(2) { animation-delay: 0.2s; }
.hero-text > *:nth-child(3) { animation-delay: 0.3s; }
.hero-text > *:nth-child(4) { animation-delay: 0.4s; }
.hero-text > *:nth-child(5) { animation-delay: 0.5s; }
.hero-text > *:nth-child(6) { animation-delay: 0.6s; }

.hero-image {
    animation-delay: 0.4s;
}
