/* Apple-Style Design System with Lemon Theme */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --lemon-yellow: #FFE562;
    --lemon-light: #FFF8E1;
    --lemon-bright: #FFF3B0;
    --lemon-dark: #F7C948;
    --lemon-darker: #F4B400;
    --lemon-green: #7AC74F;
    --lemon-green-dark: #469B46;
    --lemon-green-light: #C6EEA0;
    --text-primary: #1d1d1f;
    --text-secondary: #5a5a5a;
    --bg-white: #ffffff;
    --bg-light: #FFFEF9;
    --bg-gray: #FFF8EB;
    --bg-yellow: #FFF6D6;
    --border-soft: rgba(15, 23, 42, 0.08);
    --shadow-soft: 0 25px 60px rgba(15, 23, 42, 0.08);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Lemon Animations */
@keyframes lemon-float {
    0% {
        transform: translateY(0px) translateX(0) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-50px) translateX(40px) rotate(90deg) scale(1.1);
        opacity: 0.8;
    }
    50% {
        transform: translateY(-30px) translateX(60px) rotate(180deg) scale(0.95);
        opacity: 0.7;
    }
    75% {
        transform: translateY(-60px) translateX(20px) rotate(270deg) scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: translateY(0px) translateX(0) rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

@keyframes lemon-pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.9;
    }
}

@keyframes lemon-rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes scale-in {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow-pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(255, 235, 59, 0.3), 0 0 40px rgba(255, 235, 59, 0.2);
    }
    50% {
        box-shadow: 0 0 40px rgba(255, 235, 59, 0.6), 0 0 80px rgba(255, 235, 59, 0.4);
    }
}

@keyframes slide-in-left {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slide-in-right {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #fffdf0 55%, #fff5ca 100%);
    padding: 60px 20px;
    overflow: hidden;
    flex-wrap: wrap;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.lemon-float {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--lemon-yellow);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    opacity: 0.6;
    filter: blur(0px);
    animation: lemon-float 20s ease-in-out infinite;
    box-shadow: 0 0 30px rgba(255, 235, 59, 0.6),
                inset -10px -10px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.lemon-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
    background: var(--lemon-yellow);
}

.lemon-2 {
    top: 60%;
    right: 15%;
    animation-delay: -7s;
    width: 150px;
    height: 150px;
    background: var(--lemon-bright);
}

.lemon-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -14s;
    width: 100px;
    height: 100px;
    background: var(--lemon-green-light);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 1300px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 100px;
    align-items: center;
    animation: fade-in-up 1s ease-out;
    padding-top: 20px;
}

.hero-text-wrapper {
    animation: fade-in-up 1s ease-out 0.2s both;
}

.hero-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--lemon-yellow);
    color: var(--text-primary);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(255, 235, 59, 0.4);
    border: 2px solid var(--lemon-green);
}

.book-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.book-container {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    border-radius: 32px;
    background: radial-gradient(circle at 20% 20%, rgba(255, 249, 196, 0.95), rgba(255, 235, 59, 0.15));
    box-shadow: 0 40px 120px rgba(255, 235, 59, 0.35),
                0 10px 40px rgba(0, 0, 0, 0.15);
    transform-style: preserve-3d;
    isolation: isolate;
    overflow: visible;
}

.book-container::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    mix-blend-mode: screen;
}

.book-glow {
    position: absolute;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.5;
    z-index: -1;
    animation: lemon-pulse 6s ease-in-out infinite;
}

.book-glow-primary {
    background: rgba(255, 235, 59, 0.8);
    top: -40px;
    left: -30px;
}

.book-glow-secondary {
    background: rgba(139, 195, 74, 0.6);
    bottom: -50px;
    right: -20px;
    animation-delay: 1.5s;
}

.book-shadow {
    position: absolute;
    bottom: -50px;
    width: 260px;
    height: 40px;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.25), transparent 70%);
    filter: blur(12px);
    transform: rotateX(80deg);
    opacity: 0.7;
    pointer-events: none;
}

.book-image {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 18px;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.25), 
                0 0 80px rgba(255, 235, 59, 0.4),
                0 25px 45px rgba(255, 235, 59, 0.25);
    transform: perspective(1200px) rotateY(-10deg) rotateX(3deg) translateZ(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    animation: scale-in 1s ease-out 0.2s both, glow-pulse 3s ease-in-out infinite 1.2s;
    border: 3px solid rgba(255, 255, 255, 0.4);
}

.book-image:hover {
    transform: perspective(1200px) rotateY(0deg) rotateX(0deg) scale(1.05) translateZ(45px);
    box-shadow: 0 60px 140px rgba(0, 0, 0, 0.3), 
                0 0 100px rgba(255, 235, 59, 0.45),
                0 35px 70px rgba(255, 235, 59, 0.35);
    border-color: rgba(255, 255, 255, 0.7);
}


.hero-title {
    font-size: 56px;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-primary);
    max-width: 800px;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 400;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-author-info {
    margin-bottom: 50px;
    padding-left: 20px;
    border-left: 4px solid var(--lemon-yellow);
}

.hero-author {
    font-size: 20px;
    color: var(--text-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.hero-author strong {
    color: var(--lemon-green-dark);
    font-weight: 700;
}

.hero-credentials {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.hero-cta-wrapper {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
}

.cta-note {
    font-size: 15px;
    color: var(--text-secondary);
    font-weight: 400;
}

.section-cta {
    margin-top: 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}

.book-badge {
    position: absolute;
    top: -15px;
    right: -15px;
    background: var(--lemon-green);
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
    animation: lemon-bounce 2s ease-in-out infinite;
    z-index: 10;
}


.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--lemon-yellow);
    color: var(--text-primary);
    text-decoration: none;
    border-radius: 50px;
    font-size: 17px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid var(--lemon-green);
    box-shadow: 0 8px 25px rgba(255, 235, 59, 0.4),
                0 4px 15px rgba(255, 235, 59, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    transition: left 0.5s;
}

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

.cta-primary:hover {
    background: var(--lemon-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.6),
                0 8px 25px rgba(255, 235, 59, 0.5),
                0 0 30px rgba(255, 235, 59, 0.4);
    border-color: var(--lemon-green-dark);
}

.cta-large {
    padding: 20px 50px;
    font-size: 20px;
    margin-top: 40px;
}

/* Problem Section */
.problem-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf0 100%);
    position: relative;
    overflow: hidden;
}

.problem-section::before,
.problem-section::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 226, 150, 0.5), rgba(255, 226, 150, 0));
    filter: blur(0);
    animation: problem-drift 18s ease-in-out infinite alternate;
    z-index: 0;
}

.problem-section::before {
    top: -120px;
    left: -160px;
}

.problem-section::after {
    bottom: -140px;
    right: -100px;
    animation-delay: 4s;
}

.problem-section .container,
.problem-section .problem-intro,
.problem-section .content-grid,
.problem-section .problem-stats-grid,
.problem-section .section-cta {
    position: relative;
    z-index: 1;
}

@keyframes problem-drift {
    0% {
        transform: translate(0, 0) scale(1);
        opacity: 0.45;
    }
    50% {
        transform: translate(40px, -30px) scale(1.05);
        opacity: 0.6;
    }
    100% {
        transform: translate(-30px, 20px) scale(0.95);
        opacity: 0.4;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.section-intro {
    font-size: 24px;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.5;
}

.section-header.align-left {
    text-align: left;
}

.section-header.align-left .section-intro {
    margin-left: 0;
}

.eyebrow {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--lemon-green-dark);
    margin-bottom: 16px;
    font-weight: 600;
}

.eyebrow.center {
    text-align: center;
}

.problem-intro {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.problem-copy {
    background: #ffffff;
    border-radius: 28px;
    padding: 48px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
}

.problem-copy .section-header {
    margin-bottom: 0;
}

.problem-list {
    list-style: none;
    margin-top: 30px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.problem-list li {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 26px;
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 249, 229, 0.9) 100%);
    box-shadow: var(--shadow-soft);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.problem-list li::after {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    pointer-events: none;
    z-index: -1;
}

.stat-pill {
    background: linear-gradient(135deg, rgba(122, 199, 79, 0.15), rgba(255, 229, 98, 0.3));
    border-radius: 20px;
    padding: 18px 22px;
    display: flex;
    flex-direction: column;
    min-width: 210px;
    border: 1px solid rgba(122, 199, 79, 0.25);
}

.stat-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--text-primary);
}

.stat-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--lemon-green-dark);
}

.stat-detail p {
    margin: 0;
    color: var(--text-secondary);
}

.problem-quote-card {
    background: radial-gradient(circle at top left, rgba(255, 245, 214, 0.9), #ffffff);
    border-radius: 28px;
    padding: 48px;
    border: 1px solid rgba(255, 213, 122, 0.5);
    box-shadow: 0 30px 70px rgba(247, 201, 72, 0.25);
    position: relative;
    overflow: hidden;
}

.problem-quote-card::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 22px;
    pointer-events: none;
}

.quote-text {
    font-size: 24px;
    line-height: 1.6;
    color: var(--text-primary);
    font-weight: 500;
    margin-bottom: 30px;
}

.quote-source {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-primary);
}

.quote-role {
    font-size: 15px;
    color: var(--text-secondary);
    margin-top: 4px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.content-card {
    padding: 40px;
    background: #ffffff;
    border-radius: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    display: flex;
    align-items: center;
    gap: 32px;
}

.content-card .card-text {
    flex: 1;
}

.content-card .card-media {
    flex: 0 0 240px;
}

.content-card .card-media img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.15);
}

.content-card.media-left .card-media {
    order: 0;
}

.content-card.media-left .card-text {
    order: 1;
}

.content-card.media-right .card-text {
    order: 0;
}

.content-card.media-right .card-media {
    order: 1;
}

.content-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--lemon-green) 0%, var(--lemon-yellow) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.content-card:hover {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 35px 80px rgba(15, 23, 42, 0.12);
    border-color: rgba(247, 201, 72, 0.5);
}

.card-number {
    font-size: 14px;
    font-weight: 700;
    color: var(--lemon-green-dark);
    margin-bottom: 20px;
    letter-spacing: 0.1em;
    display: inline-block;
    padding: 8px 16px;
    background: rgba(122, 199, 79, 0.12);
    border-radius: 20px;
    box-shadow: none;
}

.content-card h3 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.content-card p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.problem-stats-grid {
    margin-top: 60px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-card {
    background: radial-gradient(circle at top, rgba(255, 245, 214, 0.9), #ffffff);
    padding: 36px;
    border-radius: 28px;
    border: 1px solid rgba(247, 201, 72, 0.4);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.stat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #ffffff;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.stat-icon.trend-up {
    background: linear-gradient(135deg, #7ac74f, #3ea94d);
}

.stat-icon.trend-risk {
    background: linear-gradient(135deg, #f7b733, #fc4a1a);
}

.stat-icon.trend-alert {
    background: linear-gradient(135deg, #00c9ff, #92fe9d);
}

.stat-chip {
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.stat-note {
    font-size: 13px;
    color: var(--text-secondary);
    opacity: 0.8;
}

/* Solution Section */
.solution-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fff9ed 100%);
    position: relative;
    overflow: hidden;
}

.solution-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.solution-content h2 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 40px;
    color: var(--text-primary);
}

.lead-text {
    font-size: 24px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
}

.solution-content p {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
}

.highlight-text {
    font-size: 22px;
    color: var(--text-primary);
    font-weight: 500;
    line-height: 1.7;
    padding: 40px;
    background: var(--lemon-yellow);
    border-radius: 20px;
    border-left: 5px solid var(--lemon-green);
    margin-top: 40px;
    box-shadow: 0 15px 40px rgba(255, 235, 59, 0.4),
                0 5px 20px rgba(255, 235, 59, 0.3);
    position: relative;
    animation: fade-in-up 0.8s ease-out;
}

.highlight-text::before {
    content: '';
    position: absolute;
    top: -15px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--lemon-yellow);
    border-radius: 50%;
    opacity: 0.3;
    animation: lemon-pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 235, 59, 0.5);
}

.solution-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 32px;
}

.solution-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    width: 100%;
}

.pillar-card {
    padding: 28px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: var(--shadow-soft);
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.pillar-icon {
    width: 64px;
    height: 64px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(122, 199, 79, 0.2), rgba(255, 229, 98, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: var(--lemon-green-dark);
    flex-shrink: 0;
}

.pillar-card h3 {
    font-size: 22px;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.pillar-card p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
}

.solution-steps-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1px solid rgba(247, 201, 72, 0.4);
    box-shadow: 0 35px 90px rgba(15, 23, 42, 0.12);
    padding: 32px;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 880px;
}

.solution-badge {
    display: inline-block;
    padding: 8px 18px;
    border-radius: 999px;
    background: linear-gradient(135deg, #7ac74f, #ffe562);
    color: var(--text-primary);
    font-size: 13px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 18px;
}

.solution-steps-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
}

.solution-steps {
    list-style: none;
    counter-reset: steps;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.solution-steps li {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 207, 0.9));
    border-radius: 18px;
    padding: 18px 20px 18px 60px;
    position: relative;
    border: 1px solid rgba(247, 201, 72, 0.4);
}

.solution-steps li::before {
    counter-increment: steps;
    content: counter(steps);
    position: absolute;
    left: 20px;
    top: 18px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid rgba(247, 201, 72, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-primary);
}

.step-title {
    display: block;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.solution-steps li p {
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
}

.solution-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(247, 201, 72, 0.4);
}

.footer-title {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.footer-copy {
    margin: 0;
    font-size: 16px;
    color: var(--text-primary);
}

.cta-link {
    font-weight: 600;
    color: var(--lemon-green-dark);
    text-decoration: none;
    position: relative;
}

.cta-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: var(--lemon-green-dark);
    transition: transform 0.3s ease;
    transform-origin: left;
}

.cta-link:hover::after {
    transform: scaleX(0.6);
}

/* Features Section */
.features-section {
    padding: 40px 0;
    background: var(--bg-white);
}

.section-title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -0.02em;
    text-align: center;
    margin-bottom: 80px;
    color: var(--text-primary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.feature-card {
    padding: 40px;
    background: radial-gradient(circle at top, rgba(255, 238, 170, 0.8), #ffffff);
    border-radius: 24px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(247, 201, 72, 0.4);
    box-shadow: 0 30px 80px rgba(15, 23, 42, 0.12);
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 12px;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    pointer-events: none;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-12px) scale(1.03);
    border-color: rgba(255, 229, 98, 0.8);
    box-shadow: 0 40px 100px rgba(247, 201, 72, 0.35);
}

.feature-card:hover::before {
    inset: 8px;
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 24px;
    display: inline-block;
    color: var(--lemon-green-dark);
    transition: all 0.4s ease;
    transform: scale(1);
    position: relative;
    z-index: 1;
}

.feature-icon i {
    display: block;
}

.feature-card:hover .feature-icon {
    color: var(--lemon-yellow);
    transform: scale(1.2) rotate(5deg);
    animation: lemon-bounce 1s ease-in-out infinite;
    filter: drop-shadow(0 4px 10px rgba(255, 235, 59, 0.5));
}

.feature-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.feature-card p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 40px 0;
    background: linear-gradient(180deg, #ffffff 0%, #fffaf2 100%);
}

.testimonial-carousel {
    display: flex;
    align-items: center;
    gap: 24px;
    position: relative;
    flex-wrap: nowrap;
}

.carousel-window {
    overflow: hidden;
    flex: 1 1 auto;
    min-width: 0;
}

.carousel-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testimonial-card {
    padding: 48px;
    background: radial-gradient(circle at top, rgba(255, 249, 228, 0.9), #ffffff);
    border-radius: 28px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(247, 201, 72, 0.4);
    position: relative;
    overflow: hidden;
    flex: 0 0 100%;
    isolation: isolate;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, var(--lemon-green), var(--lemon-yellow));
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
    z-index: -1;
}

.testimonial-card::after {
    content: '“';
    position: absolute;
    top: 20px;
    right: 28px;
    font-size: 120px;
    line-height: 1;
    color: rgba(255, 235, 130, 0.3);
    font-family: 'Times New Roman', serif;
    pointer-events: none;
}

.testimonial-card:hover::before {
    transform: scaleY(1);
}

.testimonial-card:hover {
    transform: translateY(-6px);
    border-color: rgba(247, 201, 72, 0.7);
}

.carousel-control {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(247, 201, 72, 0.5);
    background: #ffffff;
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 15px 35px rgba(15, 23, 42, 0.08);
    flex: 0 0 52px;
}

.carousel-control:hover:not(:disabled) {
    background: var(--lemon-yellow);
    border-color: var(--lemon-green);
    color: var(--text-primary);
    transform: translateY(-2px);
}

.carousel-control:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.carousel-dot.active {
    background: var(--lemon-dark);
    transform: scale(1.2);
}

@media (max-width: 1024px) {
    .testimonial-carousel {
        flex-wrap: wrap;
    }

    .carousel-window {
        order: 1;
        flex-basis: 100%;
    }

    .carousel-control {
        order: 2;
    }
}

@media (max-width: 768px) {
    .testimonial-carousel {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .carousel-window {
        order: 1;
        flex-basis: 100%;
    }

    .testimonial-carousel > .carousel-control {
        order: 2;
    }
}

.stars {
    color: var(--lemon-dark);
    font-size: 18px;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.stars i {
    color: var(--lemon-dark);
}

.testimonial-text {
    font-size: 18px;
    color: var(--text-primary);
    line-height: 1.8;
    margin-bottom: 28px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.testimonial-author strong {
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 15px;
    color: var(--text-secondary);
}

/* Testimonial Wall */
.testimonial-wall {
    padding: 40px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.wall-intro {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 0;
}

.wall-copy {
    padding-bottom: 20px;
}

.wall-copy h3 {
    font-size: 36px;
    margin-bottom: 16px;
}

.wall-copy p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.wall-marquee {
    display: flex;
    gap: 20px;
    overflow: hidden;
    border: 1px solid rgba(247, 201, 72, 0.3);
    border-radius: 30px;
    padding: 18px 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.6), rgba(255, 247, 207, 0.8));
    position: relative;
}

.wall-marquee::before,
.wall-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    pointer-events: none;
    z-index: 2;
}

.wall-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg-white) 0%, transparent 100%);
}

.wall-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--bg-white) 0%, transparent 100%);
}

.wall-track {
    display: flex;
    gap: 16px;
    animation: wall-scroll 25s linear infinite;
}

.wall-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(247, 201, 72, 0.4);
    font-weight: 600;
    color: var(--text-primary);
    font-size: 15px;
    white-space: nowrap;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.wall-pill i {
    color: var(--lemon-green-dark);
}

@keyframes wall-scroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

/* Order Section */
.order-section {
    padding: 40px 0;
    background: radial-gradient(circle at top, #fffbe7, #fff4c7);
    position: relative;
    overflow: hidden;
}

.order-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.order-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.5;
    animation: orb-float 12s ease-in-out infinite;
}

.orb-1 {
    width: 280px;
    height: 280px;
    background: rgba(122, 199, 79, 0.4);
    top: -60px;
    left: 10%;
}

.orb-2 {
    width: 220px;
    height: 220px;
    background: rgba(255, 229, 98, 0.5);
    bottom: -80px;
    right: 15%;
    animation-delay: -4s;
}

.orb-3 {
    width: 180px;
    height: 180px;
    background: rgba(255, 191, 105, 0.35);
    bottom: 10%;
    left: 20%;
    animation-delay: -7s;
}

@keyframes orb-float {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
    50% {
        transform: translateY(-30px) scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.4;
    }
}

.order-card {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 40px;
    border: 1px solid rgba(247, 201, 72, 0.4);
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
    box-shadow: 0 40px 120px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(12px);
}

.order-copy h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--text-primary);
    letter-spacing: -0.02em;
}

.order-copy h2 span {
    color: var(--lemon-green-dark);
}

.order-copy p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.order-retailers {
    background: rgba(255, 255, 255, 0.8);
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.retailer-label {
    font-size: 14px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--text-secondary);
}

.retailer-badges {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.retailer-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 20px;
    border-radius: 999px;
    border: 1px solid rgba(247, 201, 72, 0.5);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 240, 207, 0.95));
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 15px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.retailer-pill img {
    width: 80px;
    height: auto;
}

.retailer-pill:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 45px rgba(15, 23, 42, 0.14);
}

.order-note {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 8px;
}

.order-note a {
    color: var(--lemon-green-dark);
    font-weight: 600;
    text-decoration: none;
}

/* Footer */
.page-footer {
    padding: 40px 0;
    background: var(--lemon-yellow);
    border-top: 1px solid rgba(255, 235, 59, 0.3);
    text-align: center;
}

.page-footer p {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-text-wrapper {
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-title {
        font-size: 48px;
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-author-info {
        padding-left: 0;
        border-left: none;
        border-top: 4px solid var(--lemon-yellow);
        padding-top: 20px;
        margin-top: 20px;
    }

    .hero-cta-wrapper {
        align-items: center;
    }

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

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

    .content-card .card-media {
        order: 0;
        width: 100%;
        flex: unset;
    }

    .content-card .card-media img {
        height: auto;
    }

    .content-card .card-text {
        order: 1;
    }

    .features-grid,
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wall-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .problem-copy,
    .problem-quote-card {
        padding: 40px;
    }

    .problem-list {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .solution-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .solution-pillars {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .order-card {
        grid-template-columns: 1fr;
    }

    .retailer-badges {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

    .hero {
        padding: 60px 20px;
        min-height: auto;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2,
    .section-title,
    .solution-content h2 {
        font-size: 40px;
    }

    .section-intro,
    .lead-text {
        font-size: 20px;
    }

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

    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

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

    .wall-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .problem-section,
    .solution-section,
    .features-section,
    .testimonials-section,
    .order-section {
        padding: 40px 0;
    }

    .problem-copy,
    .problem-quote-card {
        padding: 32px;
    }

    .problem-list {
        grid-template-columns: 1fr;
    }

    .problem-stats-grid {
        grid-template-columns: 1fr;
    }

    .problem-list li {
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-pill {
        width: 100%;
    }

    .solution-steps-card,
    .pillar-card {
        padding: 24px;
    }

    .solution-pillars {
        grid-template-columns: 1fr;
    }

    .order-card {
        padding: 32px;
    }

    .order-copy h2 {
        font-size: 36px;
    }

    .retailer-badges {
        grid-template-columns: 1fr;
    }

    .retailer-pill img {
        width: 70px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .section-header h2,
    .section-title,
    .solution-content h2 {
        font-size: 32px;
    }

    .content-card,
    .feature-card,
    .testimonial-card {
        padding: 30px;
    }
}
