:root {
    --green-600: #059669;
    --green-500: #10b981;
    --green-400: #34d399;
    --green-100: #d1fae5;
    --green-50: #ecfdf5;
    --orange-500: #f97316;
    --orange-600: #ea580c;
    --orange-400: #fb923c;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    color: var(--gray-800);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Sticky Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--gray-200);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--green-600);
    text-decoration: none;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--green-600);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
}

/* Header Navigation */
.header-nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.header-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-500);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.header-nav-link:hover {
    color: var(--green-600);
    background: var(--green-50);
}

.header-nav-link svg {
    flex-shrink: 0;
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-500);
    color: white;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.header-cta:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
}

/* Section Base */
section {
    padding: 5rem 1.5rem;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    background: var(--green-100);
    color: var(--green-600);
    padding: 0.375rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 700px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 5rem;
    background: linear-gradient(135deg, var(--green-50) 0%, var(--white) 50%, #fff7ed 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, var(--green-100) 0%, transparent 70%);
    opacity: 0.6;
    animation: float 20s ease-in-out infinite;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #ffedd5 0%, transparent 70%);
    opacity: 0.5;
    animation: float 15s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(5deg); }
    66% { transform: translate(-20px, 20px) rotate(-5deg); }
}

.hero .container {
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 2px solid var(--green-500);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--green-600);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease forwards;
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--green-500);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero h1 {
    font-size: clamp(2.25rem, 6vw, 3.5rem);
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s forwards;
    opacity: 0;
}

.hero h1 span {
    color: var(--green-600);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
    max-width: 600px;
    animation: fadeInUp 0.6s ease 0.2s forwards;
    opacity: 0;
}

.hero-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.6s ease 0.3s forwards;
    opacity: 0;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--gray-700);
}

.hero-meta-icon {
    width: 24px;
    height: 24px;
    color: var(--green-500);
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.6s ease 0.4s forwards;
    opacity: 0;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange-500);
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px rgba(249, 115, 22, 0.4);
}

.btn-primary:hover {
    background: var(--orange-600);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(249, 115, 22, 0.5);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: var(--gray-700);
    padding: 1rem 2rem;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    text-decoration: none;
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    border-color: var(--green-500);
    color: var(--green-600);
    transform: translateY(-2px);
}

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

/* Social Proof */
.social-proof {
    background: var(--gray-900);
    padding: 3rem 1.5rem;
}

.social-proof .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 3rem;
}

.stat-item {
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
}

.stat-item.visible {
    animation: fadeInUp 0.5s ease forwards;
}

.stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--green-400);
    line-height: 1;
}

.stat-label {
    color: var(--gray-400);
    font-size: 0.9375rem;
    margin-top: 0.5rem;
}

/* Problem Section */
.problem {
    background: var(--white);
}

.problem-quote {
    background: var(--gray-50);
    border-left: 4px solid var(--orange-500);
    padding: 1.5rem 2rem;
    font-style: italic;
    font-size: 1.25rem;
    color: var(--gray-700);
    margin-bottom: 3rem;
    border-radius: 0 12px 12px 0;
}

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

.problem-card {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.problem-card.visible {
    animation: fadeInUp 0.5s ease forwards;
}

.problem-card:hover {
    border-color: #fecaca;
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.problem-icon {
    width: 48px;
    height: 48px;
    background: #fef2f2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.problem-icon svg {
    width: 24px;
    height: 24px;
    color: #ef4444;
}

.problem-card h3 {
    font-size: 1.125rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.problem-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.problem-conclusion {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, var(--green-50), #fff7ed);
    border-radius: 16px;
}

.problem-conclusion p {
    font-size: 1.25rem;
    color: var(--gray-700);
    font-weight: 500;
}

/* Agitation Section */
.agitation {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

.agitation-list {
    text-align: left;
    margin: 2rem 0;
}

.agitation-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-200);
}

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

.agitation-bullet {
    width: 24px;
    height: 24px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.agitation-bullet svg {
    width: 14px;
    height: 14px;
    color: var(--gray-500);
}

.agitation-item p {
    color: var(--gray-700);
    font-size: 1.0625rem;
}

.agitation-highlight {
    background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
    color: white;
    padding: 2rem;
    border-radius: 16px;
    margin-top: 2rem;
}

.agitation-highlight p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.agitation-highlight span {
    font-size: 1rem;
    opacity: 0.9;
}

/* Solution Section */
.solution {
    background: var(--white);
}

.solution-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.solution-intro p {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.solution-steps {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.solution-step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 16px;
    opacity: 0;
    transform: translateX(-20px);
}

.solution-step.visible {
    animation: fadeInLeft 0.5s ease forwards;
}

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

.step-number {
    width: 48px;
    height: 48px;
    background: var(--green-600);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.step-content p {
    color: var(--gray-600);
}

.solution-results {
    background: linear-gradient(135deg, var(--green-600), var(--green-500));
    padding: 3rem;
    border-radius: 20px;
    color: white;
}

.solution-results h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

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

.result-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.result-icon {
    width: 32px;
    height: 32px;
    background: rgba(255,255,255,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.result-icon svg {
    width: 18px;
    height: 18px;
}

.result-item p {
    font-size: 1rem;
    opacity: 0.95;
}

/* Belief Change Section */
.belief {
    background: var(--gray-50);
}

.belief-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .belief-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.belief-left {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    border: 2px solid var(--gray-200);
}

.belief-left h3 {
    font-size: 1.375rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

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

.belief-list li {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.belief-list li:last-child {
    border-bottom: none;
}

.belief-check {
    width: 24px;
    height: 24px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.belief-check svg {
    width: 14px;
    height: 14px;
    color: var(--green-600);
}

.belief-list span {
    color: var(--gray-700);
}

.belief-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.belief-card {
    background: linear-gradient(135deg, var(--green-600), #047857);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.belief-card::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 8rem;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.belief-card p {
    font-size: 1.125rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

/* Testimonials */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: white;
    border: 2px solid var(--gray-100);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.testimonial-card.visible {
    animation: fadeInUp 0.5s ease forwards;
}

.testimonial-card:hover {
    border-color: var(--green-200);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.testimonial-quote {
    font-size: 1.0625rem;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--green-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green-600);
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info span {
    display: block;
}

.author-name {
    font-weight: 600;
    color: var(--gray-900);
}

.author-role {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.testimonials-photos {
    margin-top: 4rem;
    text-align: center;
}

.testimonials-photos h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.photo-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.photo-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.75rem 1.25rem;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.photo-link:hover {
    background: var(--green-100);
    color: var(--green-600);
}

/* Stack Section */
.stack {
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
}

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

@media (min-width: 768px) {
    .stack-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.stack-column {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid var(--gray-100);
}

.stack-column.child {
    border-color: var(--green-200);
    background: linear-gradient(180deg, var(--green-50), white);
}

.stack-column.parent {
    border-color: var(--orange-200);
    background: linear-gradient(180deg, #fff7ed, white);
}

.stack-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
}

.stack-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.child .stack-icon {
    background: var(--green-100);
    color: var(--green-600);
}

.parent .stack-icon {
    background: #ffedd5;
    color: var(--orange-500);
}

.stack-icon svg {
    width: 28px;
    height: 28px;
}

.stack-header h3 {
    font-size: 1.375rem;
    color: var(--gray-900);
}

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

.stack-list li {
    display: flex;
    gap: 1rem;
    padding: 0.875rem 0;
    align-items: flex-start;
}

.stack-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.child .stack-check {
    background: var(--green-100);
    color: var(--green-600);
}

.parent .stack-check {
    background: #ffedd5;
    color: var(--orange-500);
}

.stack-check svg {
    width: 14px;
    height: 14px;
}

.stack-list span {
    color: var(--gray-700);
}

/* Schedule Section */
.schedule {
    background: var(--white);
}

.schedule-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.schedule-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    border-bottom: 1px solid var(--gray-100);
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row.header {
    background: var(--green-600);
    color: white;
}

.schedule-row.highlight {
    background: var(--green-50);
}

.schedule-time, .schedule-activity {
    padding: 1.25rem 1.5rem;
}

.schedule-time {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    background: var(--gray-50);
}

.schedule-row.header .schedule-time,
.schedule-row.header .schedule-activity {
    background: transparent;
    font-weight: 600;
}

.schedule-row.highlight .schedule-time {
    background: var(--green-100);
    color: var(--green-700);
}

.schedule-activity {
    color: var(--gray-700);
}

.schedule-notice {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    background: #fef3c7;
    padding: 1.5rem;
    border-radius: 12px;
    margin-top: 2rem;
}

.notice-icon {
    width: 24px;
    height: 24px;
    color: #d97706;
    flex-shrink: 0;
}

.schedule-notice p {
    color: #92400e;
}

.schedule-notice strong {
    display: block;
    margin-bottom: 0.25rem;
}

.schedule-location {
    text-align: center;
    margin-top: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 12px;
}

.schedule-location strong {
    color: var(--gray-900);
}

/* Comparison Section */
.comparison {
    background: var(--gray-50);
}

.comparison-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    margin-top: 3rem;
}

.comparison-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--gray-900);
    color: white;
}

.comparison-header > div {
    padding: 1.25rem;
    text-align: center;
    font-weight: 600;
}

.comparison-header .krasnal-col {
    background: var(--green-600);
}

.comparison-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-100);
}

.comparison-row:last-child {
    border-bottom: none;
}

.comparison-row > div {
    padding: 1.25rem;
    text-align: center;
}

.comparison-row .feature {
    text-align: left;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--gray-50);
}

.comparison-row .krasnal-col {
    background: var(--green-50);
    color: var(--green-700);
    font-weight: 500;
}

.comparison-row .other-col {
    color: var(--gray-500);
}

/* About Section */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.about-text p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.about-stat {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
}

.about-stat-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--green-600);
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-top: 0.25rem;
}

.about-highlight {
    background: linear-gradient(135deg, var(--green-600), #047857);
    color: white;
    padding: 2.5rem;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-highlight p {
    font-size: 1.25rem;
    font-style: italic;
    opacity: 0.95;
}

/* FAQ Section */
.faq {
    background: var(--gray-50);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--green-200);
}

.faq-item.active {
    border-color: var(--green-400);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: var(--gray-900);
}

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

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

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

.faq-answer-inner {
    padding: 0 1.5rem 1.5rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Pricing Section */
.pricing {
    background: var(--white);
}

.pricing-table {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    margin-top: 3rem;
    border: 2px solid var(--gray-100);
}

.pricing-header {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    background: var(--gray-900);
    color: white;
}

.pricing-header > div {
    padding: 1.25rem;
    text-align: center;
}

.pricing-header .standard {
    font-weight: 600;
}

.pricing-header .club {
    background: var(--green-600);
    font-weight: 600;
}

.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    border-bottom: 1px solid var(--gray-100);
}

.pricing-row:last-child {
    border-bottom: none;
}

.pricing-row.highlight {
    background: linear-gradient(90deg, #fff7ed, var(--green-50));
}

.pricing-row > div {
    padding: 1.25rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pricing-row .date {
    text-align: left;
    justify-content: flex-start;
    font-weight: 500;
    color: var(--gray-700);
}

.pricing-row.highlight .date {
    color: var(--orange-600);
    font-weight: 600;
}

.price {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
}

.pricing-row.highlight .price {
    color: var(--green-600);
    font-size: 1.5rem;
}

.price-badge {
    background: var(--orange-500);
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    font-weight: 600;
}

.pricing-benefits {
    max-width: 600px;
    margin: 3rem auto 0;
    text-align: center;
}

.pricing-benefits h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

.benefits-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
}

.benefit-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--green-50);
    color: var(--green-700);
    padding: 0.75rem 1.25rem;
    border-radius: 100px;
    font-weight: 500;
}

.benefit-tag svg {
    width: 16px;
    height: 16px;
    color: var(--green-500);
}

.pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-style: italic;
    color: var(--gray-500);
}

/* Guarantee Section */
.guarantee {
    background: linear-gradient(135deg, var(--green-600), #047857);
    color: white;
    text-align: center;
}

.guarantee-icon {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.guarantee-icon svg {
    width: 40px;
    height: 40px;
}

.guarantee h2 {
    color: white;
    margin-bottom: 1.5rem;
}

.guarantee-text {
    max-width: 600px;
    margin: 0 auto;
}

.guarantee-text p {
    font-size: 1.125rem;
    opacity: 0.95;
    margin-bottom: 1rem;
}

.guarantee-list {
    list-style: none;
    margin-top: 2rem;
}

.guarantee-list li {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    opacity: 0.9;
}

.guarantee-list svg {
    width: 20px;
    height: 20px;
}

/* Urgency Section */
.urgency {
    background: var(--gray-900);
    color: white;
    text-align: center;
}

.urgency h2 {
    color: white;
}

.countdown {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.countdown-item {
    background: rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: 12px;
    min-width: 80px;
}

.countdown-number {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--orange-400);
    line-height: 1;
}

.countdown-label {
    font-size: 0.875rem;
    color: var(--gray-400);
    margin-top: 0.5rem;
}

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

.urgency-price {
    background: rgba(255,255,255,0.05);
    padding: 1rem 1.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.1);
}

.urgency-price.active {
    background: var(--orange-500);
    border-color: var(--orange-500);
}

.urgency-price span {
    display: block;
}

.urgency-date {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.urgency-price.active .urgency-date {
    color: rgba(255,255,255,0.8);
}

.urgency-amount {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.urgency-note {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* Final CTA Section */
.final-cta {
    background: linear-gradient(135deg, var(--green-50) 0%, #fff7ed 100%);
    text-align: center;
    padding: 6rem 1.5rem;
}

.final-cta h2 {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    margin-bottom: 1.5rem;
}

.final-cta-text {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--gray-600);
    font-size: 1.125rem;
}

.final-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
}

.final-step {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.final-step-number {
    width: 32px;
    height: 32px;
    background: var(--green-600);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.875rem;
}

.final-step span {
    color: var(--gray-700);
    font-weight: 500;
}

.final-cta-button {
    margin: 2rem 0;
}

.final-contact {
    margin-top: 2rem;
    color: var(--gray-500);
}

.final-contact a {
    color: var(--green-600);
    text-decoration: none;
    font-weight: 500;
}

.final-contact a:hover {
    text-decoration: underline;
}

/* PS Section */
.ps-section {
    background: var(--white);
    padding: 3rem 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.ps-content {
    max-width: 700px;
    margin: 0 auto;
}

.ps-item {
    margin-bottom: 1.5rem;
}

.ps-item strong {
    color: var(--green-600);
}

.ps-item p {
    color: var(--gray-600);
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: white;
    padding: 3rem 1.5rem;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo {
    width: 40px;
    height: 40px;
    background: var(--green-600);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.footer-brand span {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.2s ease;
}

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

.footer-copy {
    width: 100%;
    text-align: center;
    color: var(--gray-500);
    font-size: 0.875rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Responsive */
@media (max-width: 768px) {
    section {
        padding: 3.5rem 1rem;
    }

    .header-inner {
        padding: 0.5rem 1rem;
    }

    .logo span {
        display: none;
    }

    .schedule-row {
        grid-template-columns: 100px 1fr;
    }

    .comparison-header,
    .comparison-row,
    .pricing-header,
    .pricing-row {
        grid-template-columns: 1fr;
    }

    .comparison-header > div,
    .comparison-row > div,
    .pricing-header > div,
    .pricing-row > div {
        padding: 1rem;
    }

    .comparison-row .feature,
    .pricing-row .date {
        background: var(--gray-100);
        font-weight: 600;
    }

    .countdown {
        gap: 0.75rem;
    }

    .countdown-item {
        padding: 1rem;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.75rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Section Images */
.section-image {
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
    max-width: 100%;
    height: auto;
}

.hero-image-container {
    margin-top: 3rem;
    text-align: center;
}

.hero-image {
    max-width: 600px;
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

.hero-video {
    max-width: 620px;
    margin: 0 auto;
    border-radius: 20px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* Problem Card Images */
.problem-card-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.25rem;
}

/* Solution Image */
.solution-image-container {
    margin-bottom: 3rem;
    text-align: center;
}

.solution-main-image {
    max-width: 700px;
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

/* Video embed */
.solution-video-container {
    margin-bottom: 3rem;
    text-align: center;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-caption {
    margin-top: 1rem;
    font-size: 0.85rem;
    color: var(--gray-400);
    font-style: italic;
}

/* Feature Grid with Images */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid var(--gray-100);
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--green-300);
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.feature-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.feature-card-content {
    padding: 1.5rem;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

/* FAQ with Images */
.faq-item-with-image {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 0.5rem;
}

.faq-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}

.faq-content {
    flex: 1;
    min-width: 0;
}

.faq-item-with-image .faq-question {
    padding: 1rem 0;
}

/* Guarantee Image */
.guarantee-image {
    max-width: 200px;
    margin: 0 auto 2rem;
    display: block;
    border-radius: 16px;
}

/* Pricing Comparison Image */
.pricing-comparison-image {
    max-width: 500px;
    width: 100%;
    margin: 2rem auto;
    display: block;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

/* Gallery Section */
.gallery {
    background: var(--gray-50);
}

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

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .faq-item-with-image {
        grid-template-columns: 60px 1fr;
    }

    .faq-image {
        width: 60px;
        height: 60px;
    }

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

/* Logo w naglowku */
.logo-img {
    height: 40px;
    width: auto;
}

/* Sponsor Bar */
.sponsors-bar {
    background: linear-gradient(135deg, var(--green-600) 0%, #047857 100%);
    padding: 1.25rem 0;
    overflow: hidden;
    position: relative;
}

.sponsors-bar-compact {
    padding: 0.875rem 0;
}

.sponsors-bar-compact .sponsor-logo {
    height: 40px;
}

.sponsors-bar-compact .sponsors-group {
    gap: 3rem;
}

.sponsors-bar::before,
.sponsors-bar::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 2;
}

.sponsors-bar::before {
    left: 0;
    background: linear-gradient(to right, var(--green-600), transparent);
}

.sponsors-bar::after {
    right: 0;
    background: linear-gradient(to left, #047857, transparent);
}

.sponsors-title {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.sponsors-track {
    display: flex;
    animation: scroll-left 30s linear infinite;
    width: max-content;
}

.sponsors-track:hover {
    animation-play-state: paused;
}

.sponsors-group {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding: 0 2rem;
}

.sponsor-logo {
    height: 50px;
    width: auto;
    opacity: 0.9;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.sponsor-logo:hover {
    opacity: 1;
    transform: scale(1.1);
}

.sponsor-logo.no-filter {
    filter: none;
}

@keyframes scroll-left {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .sponsors-group {
        gap: 2.5rem;
    }

    .sponsor-logo {
        height: 35px;
    }
}

/* ===== COOKIE BANNER STYLES ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top: 3px solid var(--green-500);
}

.cookie-banner.visible {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 1.5rem;
}

.cookie-banner-text {
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.cookie-banner-text p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.cookie-policy-link {
    font-size: 0.875rem;
    color: var(--green-600);
    text-decoration: underline;
}

.cookie-policy-link:hover {
    color: var(--green-500);
}

.cookie-banner-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.cookie-btn {
    padding: 0.875rem 1.5rem;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9375rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 2px solid transparent;
    min-width: 160px;
    text-align: center;
}

.cookie-btn-primary {
    background: var(--green-600);
    color: white;
    border-color: var(--green-600);
}

.cookie-btn-primary:hover {
    background: var(--green-500);
    border-color: var(--green-500);
}

.cookie-btn-secondary {
    background: white;
    color: var(--gray-700);
    border-color: var(--gray-300);
}

.cookie-btn-secondary:hover {
    border-color: var(--green-500);
    color: var(--green-600);
}

/* ===== COOKIE SETTINGS PANEL ===== */
.cookie-settings-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-settings-panel.visible {
    opacity: 1;
    visibility: visible;
}

.cookie-settings-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.cookie-settings-content {
    position: relative;
    background: white;
    border-radius: 16px;
    max-width: 560px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.cookie-settings-panel.visible .cookie-settings-content {
    transform: translateY(0);
}

.cookie-settings-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
    position: sticky;
    top: 0;
    background: white;
    border-radius: 16px 16px 0 0;
}

.cookie-settings-header h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.cookie-settings-close {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--gray-500);
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.cookie-settings-close:hover {
    background: var(--gray-100);
    color: var(--gray-700);
}

.cookie-settings-body {
    padding: 1.5rem;
}

.cookie-settings-intro {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.cookie-category {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
}

.cookie-category:last-child {
    margin-bottom: 0;
}

.cookie-category-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-category-info h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.cookie-category-info p {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.5;
}

/* Toggle Switch */
.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
    flex-shrink: 0;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gray-300);
    transition: 0.3s;
    border-radius: 28px;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 3px;
    bottom: 3px;
    background: white;
    transition: 0.3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background: var(--green-500);
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle.disabled .cookie-toggle-slider {
    background: var(--green-400);
    cursor: not-allowed;
    opacity: 0.7;
}

.cookie-settings-footer {
    display: flex;
    gap: 0.75rem;
    padding: 1.5rem;
    border-top: 1px solid var(--gray-200);
    background: var(--gray-50);
}

.cookie-settings-footer .cookie-btn {
    flex: 1;
}

.cookie-settings-contact {
    padding: 1rem 1.5rem;
    background: var(--gray-100);
    border-radius: 0 0 16px 16px;
}

.cookie-settings-contact p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 0.25rem;
}

.cookie-settings-contact p:last-child {
    margin-bottom: 0;
}

.cookie-settings-contact a {
    color: var(--green-600);
}

/* Mobile Responsive */
@media (max-width: 640px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        padding: 1.25rem;
    }

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

    .cookie-btn {
        width: 100%;
        min-width: auto;
    }

    .cookie-settings-content {
        width: 95%;
        max-height: 85vh;
    }

    .cookie-settings-footer {
        flex-direction: column;
    }

    .cookie-category-header {
        flex-direction: column;
        gap: 0.75rem;
    }

    .cookie-toggle {
        align-self: flex-start;
    }
}
