:root {
    --primary: #FF8243;
    --primary-light: #FF9B6A;
    --primary-dark: #E66826;
    --secondary: #28C76F;
    --secondary-light: #4EE08E;
    --accent: #FFC233;
    --bg-color: #FFFDF7;
    --text-main: #2D3436;
    --text-muted: #636E72;
    --glass-bg: rgba(255, 255, 255, 0.65);
    --glass-border: rgba(255, 255, 255, 0.4);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 15px 40px rgba(255, 130, 67, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Fredoka', sans-serif;
    color: var(--text-main);
    line-height: 1.3;
}

a {
    text-decoration: none;
}

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

.container-sm {
    max-width: 800px;
}

.text-center { text-align: center; }
.highlight { color: var(--primary); }
.highlight-red { color: #E74C3C; }
.mt-4 { margin-top: 2rem; }

/* Utility Classes */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
}

.glass-accent {
    background: linear-gradient(135deg, rgba(255, 130, 67, 0.1) 0%, rgba(255, 253, 247, 0.6) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 130, 67, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-hover);
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary) 0%, #20A75C 100%);
    color: white;
    font-family: 'Fredoka', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 18px 40px;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(40, 199, 111, 0.3);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.3), transparent);
    transform: skewX(-20deg);
    animation: shine 4s infinite;
}

.btn-cta:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 30px rgba(40, 199, 111, 0.4);
    color: white;
}

.btn-huge {
    font-size: 1.3rem;
    padding: 22px 50px;
    width: 100%;
    margin-top: 20px;
}

@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

.pulse {
    animation: pulseActive 2s infinite;
}

@keyframes pulseActive {
    0% { box-shadow: 0 0 0 0 rgba(40, 199, 111, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(40, 199, 111, 0); }
    100% { box-shadow: 0 0 0 0 rgba(40, 199, 111, 0); }
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 3rem;
    max-width: 800px;
    margin-inline: auto;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 6rem 0 4rem;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: radial-gradient(circle at 100% 0%, rgba(255, 194, 51, 0.15) 0%, transparent 40%),
                radial-gradient(circle at 0% 100%, rgba(255, 130, 67, 0.1) 0%, transparent 40%);
}

.hero-bg-shapes {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.6;
}

.shape-1 {
    width: 400px; height: 400px;
    background: var(--primary-light);
    top: -100px; right: -100px;
}

.shape-2 {
    width: 300px; height: 300px;
    background: var(--accent);
    bottom: -50px; left: -50px;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.badge {
    display: inline-block;
    background: rgba(40, 199, 111, 0.15);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(40, 199, 111, 0.3);
}

.hero h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.15rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
}

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

.hero-image {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}

.floating {
    animation: floating 4s ease-in-out infinite;
}

.floating-slow {
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating {
    0% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
    100% { transform: translateY(0); }
}

.floating-badge {
    position: absolute;
    padding: 12px 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.badge-1 { top: 10%; left: -5%; }
.badge-2 { bottom: 15%; right: -5%; }

.icon-green { color: var(--secondary); }
.icon-orange { color: var(--primary); }

/* Animation Utils */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 { transition-delay: 0.2s; }
.delay-2 { transition-delay: 0.4s; }
.delay-3 { transition-delay: 0.6s; }

/* Problems Section */
.problems {
    padding: 5rem 0;
}

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

.problem-card {
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-10px);
}

.icon-wrapper {
    width: 70px; height: 70px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 130, 67, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    padding: 15px;
}

.problem-card h3 {
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.problem-card p {
    color: var(--text-muted);
}

.empathy-box {
    margin-top: 4rem;
    padding: 3rem;
    text-align: center;
    position: relative;
    border-color: rgba(255,194,51,0.5);
}

.quote-icon {
    color: var(--accent);
    width: 40px; height: 40px;
    margin-bottom: 15px;
    opacity: 0.5;
}

.empathy-box p {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-main);
}

/* Split Layout */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Danger & Solution */
.danger-solution {
    padding: 5rem 0;
}

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

.danger-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #E74C3C;
    background: rgba(231, 76, 60, 0.1);
    padding: 15px 20px;
    border-radius: 12px;
}

.solution-box p {
    margin-bottom: 1.5rem;
}
.solution-box .highlight-text {
    font-size: 1.1rem;
    font-weight: 500;
}
.solution-box h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

/* Benefits Section */
.benefits {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--bg-color) 0%, #FFFDF7 100%);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 3rem;
    max-width: 800px;
    margin-inline: auto;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--glass-bg);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
}

.benefit-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-soft);
    border-color: rgba(40, 199, 111, 0.4);
}

.benefit-icon {
    background: var(--secondary);
    color: white;
    padding: 12px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Target Audience */
.target-audience {
    padding: 5rem 0;
}
.bg-light {
    background: rgba(40, 199, 111, 0.05);
}

.check-list {
    list-style: none;
    text-align: left;
    margin-top: 3rem;
    padding: 3rem;
}

.check-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
    color: var(--text-main);
}

.check-list i {
    color: var(--secondary);
    flex-shrink: 0;
}

/* Modules */
.modules {
    padding: 6rem 0;
}

.stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-top: 15px;
    display: inline-block;
    background: rgba(255, 194, 51, 0.1);
    padding: 10px 20px;
    border-radius: 30px;
}

.mockup-display {
    text-align: center;
    margin: 4rem 0;
}

.mockup-image {
    max-width: 700px;
    width: 100%;
    height: auto;
}

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

.module-card {
    background: white;
    padding: 25px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eee;
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
    transition: all 0.3s;
}

.module-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
}

.module-number {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(255, 130, 67, 0.1);
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 10px;
}

/* Testimonials */
.testimonials {
    padding: 6rem 0;
    overflow: hidden;
}

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

.testimonial-card {
    padding: 2.5rem;
}

.testimonial-card .stars {
    background: none;
    padding: 0;
    margin-top: 0;
    margin-bottom: 15px;
}

.review {
    font-style: italic;
    margin-bottom: 25px;
}

.author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.avatar {
    width: 50px; height: 50px;
    background: var(--primary-light);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.author span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* Bonuses */
.bonuses {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 130, 67, 0.05) 0%, rgba(255, 194, 51, 0.05) 100%);
}

.bonus-subtitle {
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

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

.bonus-card {
    padding: 2.5rem 2rem;
}

.bonus-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 12px;
    display: block;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.bonus-image:hover {
    transform: translateY(-5px) scale(1.05);
}

.valuation-box {
    margin-top: 3rem;
    text-align: center;
}
.valuation-box del {
    color: #E74C3C;
}
.valuation-box h3 {
    color: var(--secondary);
    font-size: 1.8rem;
}

/* Offer Header */
.offer {
    padding: 6rem 0;
}

.guarantee-box {
    padding: 3rem;
}

.shield-huge {
    width: 80px; height: 80px;
    color: var(--secondary);
    margin-bottom: 20px;
}

.price-box {
    padding: 3rem;
    border: 2px solid var(--secondary);
    background: white;
}

.limited-time {
    display: inline-block;
    background: #E74C3C;
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.original-price {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.5rem;
}

.discount-price {
    font-size: 3rem;
    color: var(--text-main);
    margin-bottom: 5px;
}

.hw-logo {
    width: 40px;
    margin-bottom: 10px;
    filter: grayscale(1);
    opacity: 0.6;
}

.security-badges {
    margin-top: 25px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.payment-methods {
    margin-top: 10px;
    font-weight: 500;
}

/* FAQ Accordion */
.faq {
    padding: 5rem 0;
}

.accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    padding: 20px 25px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s;
}

.accordion-header:hover {
    color: var(--primary);
}

.accordion-body {
    padding: 0 25px;
    max-height: 0;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-item.active .accordion-body {
    padding: 0 25px 25px;
    max-height: 200px;
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

/* Footer */
.footer {
    padding: 3rem 0;
    background: #1e272e;
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 15px;
    font-size: 0.8rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 900px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image-wrapper {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero h1 { font-size: 2.5rem; }
    
    .floating-badge {
        display: none;
    }
}

@media (max-width: 600px) {
    .section-title { font-size: 2rem; }
    .btn-cta { width: 100%; }
    .glass-accent, .price-box, .empathy-box {
        padding: 2rem 1.5rem;
    }
}
