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

:root {
    --primary-color: #4CAF50;
    --secondary-color: #2E7D32;
    --accent-color: #81C784;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: 
        linear-gradient(135deg, rgba(20, 30, 25, 0.88) 0%, rgba(35, 70, 45, 0.92) 100%),
        url('https://images.unsplash.com/photo-1490818387583-1baba5e638af?q=80&w=2000') center/cover no-repeat;
    background-attachment: fixed;
    color: white;
    padding: 140px 20px 40px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

/* Floating Elements */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
}

.floating-emoji {
    position: absolute;
    font-size: 3rem;
    opacity: 0.25;
    animation: float-random 20s infinite ease-in-out;
}

.emoji-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.emoji-2 {
    top: 70%;
    left: 15%;
    animation-delay: 5s;
    animation-duration: 30s;
}

.emoji-3 {
    top: 25%;
    right: 15%;
    animation-delay: 2s;
    animation-duration: 28s;
}

.emoji-4 {
    top: 60%;
    right: 10%;
    animation-delay: 7s;
    animation-duration: 22s;
}

.emoji-5 {
    top: 40%;
    left: 5%;
    animation-delay: 3s;
    animation-duration: 27s;
}

.emoji-6 {
    top: 80%;
    left: 50%;
    animation-delay: 8s;
    animation-duration: 24s;
}

.emoji-7 {
    top: 10%;
    right: 25%;
    animation-delay: 4s;
    animation-duration: 29s;
}

.emoji-8 {
    top: 45%;
    right: 5%;
    animation-delay: 6s;
    animation-duration: 26s;
}

.emoji-9 {
    top: 85%;
    right: 30%;
    animation-delay: 9s;
    animation-duration: 23s;
}

.emoji-10 {
    top: 20%;
    left: 35%;
    animation-delay: 1s;
    animation-duration: 31s;
}

@keyframes float-random {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -30px) rotate(5deg);
    }
    50% {
        transform: translate(-15px, -50px) rotate(-5deg);
    }
    75% {
        transform: translate(25px, -25px) rotate(3deg);
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(76, 175, 80, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(129, 199, 132, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    text-shadow: 
        0 4px 8px rgba(0, 0, 0, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        0 16px 32px rgba(0, 0, 0, 0.15);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 25px;
    opacity: 0.95;
    line-height: 1.7;
    text-shadow: 
        0 3px 6px rgba(0, 0, 0, 0.3),
        0 6px 12px rgba(0, 0, 0, 0.2);
}

.hero-features {
    margin-bottom: 25px;
}

.hero-features p {
    font-size: 1.1rem;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 10px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
}

.hero-features p:last-child {
    margin-bottom: 0;
}

.hero-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.8;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero-tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 0.95rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero-tag:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s ease;
}

.phone-mockup:hover {
    transform: scale(1.05) rotate(2deg);
}

.phone-mockup-desktop {
    display: block;
}

.phone-mockup-mobile {
    display: none;
}

.phone-mockup-tablet {
    display: none;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    opacity: 0.8;
}

.arrow-down {
    width: 30px;
    height: 30px;
    border-right: 2px solid white;
    border-bottom: 2px solid white;
    transform: rotate(45deg);
    margin: 0 auto;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) rotate(45deg);
    }
    40% {
        transform: translateY(-10px) rotate(45deg);
    }
    60% {
        transform: translateY(-5px) rotate(45deg);
    }
}

/* Pain Section */
.pain-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--text-dark);
}

.pain-grid {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.pain-card {
    background: white;
    padding: 25px 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pain-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.pain-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.pain-card h3 {
    font-size: 1.1rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

.pain-card p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
}

.pain-dots {
    display: none;
}

/* Transition Section */
.transition-section {
    padding: 140px 20px;
    background: linear-gradient(135deg, rgba(20, 30, 25, 0.95) 0%, rgba(35, 70, 45, 0.98) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.transition-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(129, 199, 132, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(76, 175, 80, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.transition-background-animation {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(129, 199, 132, 0.2) 0%, transparent 70%);
    animation: pulse-transition 4s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes pulse-transition {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.5; }
    50% { transform: translate(-50%, -50%) scale(1.5); opacity: 0.8; }
}

.transition-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.transition-icon {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: glow-icon 3s ease-in-out infinite;
}

@keyframes glow-icon {
    0%, 100% { 
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 215, 0, 0.6));
    }
    50% { 
        transform: scale(1.15);
        filter: drop-shadow(0 0 40px rgba(255, 215, 0, 0.9));
    }
}

.transition-title {
    font-size: 3.8rem;
    margin-bottom: 35px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -1px;
    text-shadow: 
        0 4px 30px rgba(0, 0, 0, 0.6),
        0 2px 10px rgba(0, 0, 0, 0.3);
}

.transition-highlight {
    color: #FFD54F;
    position: relative;
    display: inline-block;
    text-shadow: 
        0 0 30px rgba(255, 213, 79, 0.9),
        0 4px 30px rgba(0, 0, 0, 0.6);
}

.transition-divider {
    width: 120px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FFD54F, transparent);
    margin: 0 auto 40px;
    border-radius: 3px;
    box-shadow: 0 0 20px rgba(255, 213, 79, 0.6);
}

.transition-description {
    font-size: 1.7rem;
    opacity: 0.95;
    line-height: 1.9;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.crossed-word {
    text-decoration: line-through;
    text-decoration-color: rgba(255, 100, 100, 0.8);
    text-decoration-thickness: 3px;
    opacity: 0.65;
    font-style: italic;
}

.empowered-word {
    font-weight: 800;
    color: #81C784;
    text-shadow: 
        0 0 25px rgba(129, 199, 132, 0.9),
        0 2px 15px rgba(0, 0, 0, 0.4);
    position: relative;
    padding: 0 5px;
}

.empowered-word::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 10px;
    background: rgba(129, 199, 132, 0.3);
    border-radius: 5px;
    z-index: -1;
}

.transition-arrow {
    font-size: 3.5rem;
    animation: bounce-arrow-transition 2s ease-in-out infinite;
    opacity: 0.7;
    text-shadow: 0 0 20px rgba(129, 199, 132, 0.6);
}

@keyframes bounce-arrow-transition {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Solution Section */
.solution-section {
    padding: 120px 20px;
    background: 
        linear-gradient(135deg, rgba(240, 253, 244, 0.95) 0%, rgba(200, 230, 201, 0.95) 50%, rgba(165, 214, 167, 0.95) 100%);
    position: relative;
    overflow: hidden;
}

.mobile-feature-title,
.mobile-screens-container,
.mobile-feature-dots {
    display: none;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.5) 0%, transparent 30%),
        radial-gradient(circle at 90% 80%, rgba(76, 175, 80, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(129, 199, 132, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.solution-section::after {
    content: '✨';
    position: absolute;
    top: 50px;
    right: 50px;
    font-size: 4rem;
    opacity: 0.15;
    animation: sparkle-rotate 10s ease-in-out infinite;
}

@keyframes sparkle-rotate {
    0%, 100% { transform: rotate(0deg) scale(1); opacity: 0.15; }
    50% { transform: rotate(180deg) scale(1.2); opacity: 0.25; }
}

.solution-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.solution-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
}

.solution-header h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -1px;
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.08),
        0 4px 8px rgba(0, 0, 0, 0.04);
}

.solution-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
    background: white;
    padding: 12px 30px;
    border-radius: 50px;
    display: inline-block;
    box-shadow: 
        0 4px 15px rgba(76, 175, 80, 0.12),
        0 8px 25px rgba(0, 0, 0, 0.04);
    border: 2px solid rgba(76, 175, 80, 0.15);
}

/* Interactive Showcase */
.interactive-showcase {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
    padding: 40px 20px;
}

/* Feature Columns */
.features-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.feature-item {
    background: white;
    padding: 25px 22px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 18px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 15px rgba(76, 175, 80, 0.08),
        0 10px 40px rgba(0, 0, 0, 0.05);
    position: relative;
    border: 2px solid transparent;
}

.feature-item:hover {
    transform: translateX(10px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(76, 175, 80, 0.2),
        0 15px 50px rgba(0, 0, 0, 0.08);
    border-color: rgba(76, 175, 80, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f1f8e9 100%);
}

.right-column .feature-item:hover {
    transform: translateX(-10px) scale(1.02);
}

.feature-item.active {
    background: white;
    transform: translateY(-3px);
    box-shadow: 
        0 15px 50px rgba(76, 175, 80, 0.35),
        0 0 0 3px var(--primary-color),
        0 0 20px rgba(76, 175, 80, 0.4);
    border-color: var(--primary-color);
}

.feature-item.active h4 {
    color: var(--primary-color);
    font-weight: 700;
}

.feature-item.active p {
    color: var(--text-dark);
}

.feature-item-icon {
    font-size: 2.2rem;
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08) 0%, rgba(129, 199, 132, 0.12) 100%);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-item-icon {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(129, 199, 132, 0.2) 100%);
    transform: scale(1.08) rotate(-5deg);
}

.feature-item.active .feature-item-icon {
    background: rgba(255, 255, 255, 0.25);
    transform: scale(1.1);
}

.feature-item-content {
    flex: 1;
}

.feature-item-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.feature-item-content p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin: 0;
}

.feature-item-arrow {
    font-size: 1.5rem;
    color: var(--primary-color);
    transition: transform 0.3s ease;
}

.feature-item.active .feature-item-arrow {
    color: white;
    transform: translateX(5px);
}

.feature-item-arrow.left {
    order: -1;
}

.right-column .feature-item.active .feature-item-arrow {
    transform: translateX(-5px);
}

/* Phone Mockup Center */
.phone-mockup-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: drop-shadow(0 25px 50px rgba(0, 0, 0, 0.2));
}

.phone-frame {
    width: 340px;
    height: 680px;
    background: linear-gradient(145deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 50px;
    padding: 14px;
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.3),
        0 0 0 10px rgba(255, 255, 255, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
    animation: phone-float 5s ease-in-out infinite;
}

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

.phone-notch {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 150px;
    height: 30px;
    background: #1a1a1a;
    border-radius: 0 0 20px 20px;
    z-index: 3;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 35px;
    overflow: hidden;
    position: relative;
}

.current-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.current-screen.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.phone-button {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 5px;
    background: #666;
    border-radius: 3px;
}

.phone-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 750px;
    background: radial-gradient(
        ellipse at center,
        rgba(129, 199, 132, 0.4) 0%,
        rgba(76, 175, 80, 0.3) 30%,
        transparent 70%
    );
    z-index: 1;
    animation: pulse-glow-soft 4s ease-in-out infinite;
    filter: blur(40px);
}

@keyframes pulse-glow-soft {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1); 
        opacity: 0.6; 
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.12); 
        opacity: 0.85; 
    }
}

/* Extra Benefits */
.extra-benefits {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.extra-benefit-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 18px 32px;
    border-radius: 60px;
    box-shadow: 
        0 4px 20px rgba(76, 175, 80, 0.12),
        0 8px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(76, 175, 80, 0.15);
}

.extra-benefit-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 
        0 8px 30px rgba(76, 175, 80, 0.25),
        0 15px 60px rgba(0, 0, 0, 0.1);
    border-color: rgba(76, 175, 80, 0.4);
}

.extra-checkmark {
    color: white;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    font-size: 1.3rem;
    font-weight: bold;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
    transition: transform 0.3s ease;
}

.extra-benefit-item:hover .extra-checkmark {
    transform: scale(1.15) rotate(360deg);
}

.extra-benefit-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 600;
}

/* Old styles for compatibility */
.solution-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.solution-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.solution-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.checkmark {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    flex-shrink: 0;
}

.benefit-item p {
    font-size: 1.1rem;
    color: var(--text-dark);
}

.solution-images {
    display: flex;
    justify-content: center;
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--bg-light);
}

.features-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.feature-image img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

.feature-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-text p {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Reviews Section */
.reviews-section {
    padding: 100px 20px;
    background: white;
}

.reviews-dots {
    display: none;
}

.reviews-grid {
    max-width: 1200px;
    margin: 0 auto 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stars {
    color: #FFD700;
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.review-text {
    font-size: 1rem;
    color: var(--text-dark);
    margin-bottom: 15px;
    line-height: 1.7;
    font-style: italic;
}

.review-author {
    color: var(--text-light);
    font-size: 0.95rem;
}

.rating-badge {
    text-align: center;
    max-width: 300px;
    margin: 60px auto 0;
    padding: 30px;
    background: white;
    color: var(--text-dark);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(76, 175, 80, 0.3);
    border: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rating-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(76, 175, 80, 0.4);
}

.rating-badge.animating {
    animation: ratingPulse 0.6s ease-out;
}

@keyframes ratingPulse {
    0% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.rating-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(76, 175, 80, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

.rating-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
    color: var(--primary-color);
}

.rating-stars {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #FFD700;
    position: relative;
    z-index: 1;
}

.rating-text {
    font-size: 1rem;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
}

/* FAQ Section */
.faq-section {
    padding: 100px 20px;
    background: white;
}

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

.accordion {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.accordion-item {
    background: white;
    border-bottom: 2px solid var(--bg-light);
    transition: all 0.3s ease;
}

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

.accordion-item:hover {
    background: rgba(76, 175, 80, 0.02);
}

.accordion-item.active {
    background: rgba(76, 175, 80, 0.03);
}

.accordion-header {
    width: 100%;
    padding: 35px 20px 35px 0;
    background: transparent;
    border: none;
    display: flex;
    align-items: center;
    gap: 25px;
    cursor: pointer;
    text-align: left;
    transition: all 0.3s ease;
    position: relative;
}

.accordion-header:hover {
    background: transparent;
}

.accordion-item.active .accordion-header {
    background: transparent;
}

.accordion-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.5;
    flex-shrink: 0;
    min-width: 45px;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-number {
    color: var(--primary-color);
    opacity: 1;
    transform: scale(1.1);
}

.accordion-question {
    flex: 1;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.accordion-item.active .accordion-question {
    color: var(--primary-color);
}

.accordion-icon {
    flex-shrink: 0;
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.accordion-item:hover .accordion-icon {
    transform: scale(1.1);
}

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

.accordion-icon svg {
    position: absolute;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.accordion-item.active .accordion-icon svg {
    color: white;
}

.icon-plus {
    opacity: 1;
}

.icon-minus {
    opacity: 0;
}

.accordion-item.active .icon-plus {
    opacity: 0;
    transform: rotate(90deg);
}

.accordion-item.active .icon-minus {
    opacity: 1;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px 0 70px;
}

.accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 0 20px 35px 70px;
}

.accordion-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
    animation: fadeInContent 0.5s ease 0.15s both;
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Section */
.cta-section {
    padding: 120px 20px;
    background: linear-gradient(135deg, rgba(20, 30, 25, 0.95) 0%, rgba(35, 70, 45, 0.98) 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(129, 199, 132, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(76, 175, 80, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.cta-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.03;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.1) 35px, rgba(255,255,255,.1) 70px);
    pointer-events: none;
}

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

.cta-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.cta-fade-in:nth-child(1) {
    transition-delay: 0.1s;
}

.cta-fade-in:nth-child(2) {
    transition-delay: 0.3s;
}

.cta-fade-in:nth-child(3) {
    transition-delay: 0.5s;
}

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

.cta-emoji {
    font-size: 5rem;
    margin-bottom: 30px;
    animation: bounce-emoji 2s ease-in-out infinite;
}

@keyframes bounce-emoji {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-20px) rotate(-10deg); }
    75% { transform: translateY(-20px) rotate(10deg); }
}

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 30px;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -1px;
}

.title-word {
    display: inline-block;
    margin: 0 8px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
    animation: fade-in-word 0.8s ease backwards;
}

.title-word:nth-child(1) { animation-delay: 0s; }
.title-word:nth-child(2) { animation-delay: 0.15s; }
.title-word:nth-child(3) { animation-delay: 0.3s; }
.title-word:nth-child(4) { animation-delay: 0.45s; }

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

.highlight-word {
    color: #81C784;
    font-weight: 900;
    text-shadow: 
        0 0 30px rgba(129, 199, 132, 0.8),
        0 4px 25px rgba(0, 0, 0, 0.6);
}

.cta-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.95;
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    line-height: 1.6;
}

.cta-stats-mini {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 35px;
    margin-bottom: 50px;
    padding: 25px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.stat-mini {
    text-align: center;
}

.stat-mini-number {
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    color: #81C784;
    text-shadow: 0 0 20px rgba(129, 199, 132, 0.6);
}

.stat-mini-label {
    font-size: 0.9rem;
    opacity: 0.85;
    font-weight: 500;
}

.stat-mini-divider {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.btn-primary, .btn-mega {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: white;
    color: #1a1a1a;
    padding: 24px 55px;
    border-radius: 70px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.5),
        0 0 50px rgba(255, 255, 255, 0.3);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-primary::before, .btn-mega::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(129, 199, 132, 0.3), rgba(76, 175, 80, 0.2));
    transform: translate(-50%, -50%);
    transition: width 0.7s ease, height 0.7s ease;
}

.btn-primary:hover::before, .btn-mega:hover::before {
    width: 500px;
    height: 500px;
}

.btn-primary:hover, .btn-mega:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.6),
        0 0 80px rgba(129, 199, 132, 0.6);
}

.btn-mega {
    animation: pulse-cta 3s ease-in-out infinite;
}

@keyframes pulse-cta {
    0%, 100% {
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.5),
            0 0 50px rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 15px 50px rgba(0, 0, 0, 0.5),
            0 0 70px rgba(129, 199, 132, 0.8);
    }
}

.btn-icon {
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-badge {
    display: inline-block;
    font-size: 1rem;
    font-weight: 700;
    padding: 8px 20px;
    background: rgba(255, 215, 0, 0.2);
    border: 2px solid rgba(255, 215, 0, 0.4);
    border-radius: 50px;
    margin-bottom: 25px;
    backdrop-filter: blur(10px);
}

.cta-button-wrapper {
    margin-bottom: 25px;
}

.cta-download-note {
    margin-top: 15px;
    font-size: 0.95rem;
    opacity: 0.8;
}

.cta-trust-line {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    opacity: 0.9;
    font-size: 1rem;
}

.trust-item {
    font-weight: 600;
}

.trust-divider {
    opacity: 0.4;
}

.cta-note {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.footer-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 0;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-section p {
    opacity: 0.8;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.disclaimer {
    font-size: 0.9rem;
    font-style: italic;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    opacity: 0.7;
}

/* Animations */
.fade-in {
    animation: fadeIn 1s ease-in;
}

.fade-in-delay-1 {
    animation: fadeIn 1s ease-in 0.3s both;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-in 0.6s both;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-in 0.9s both;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease-in 1.2s both;
}

.fade-in-delay-5 {
    animation: fadeIn 1s ease-in 1.5s both;
}

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-left.delay-1 {
    transition-delay: 0.1s;
}

.slide-in-left.delay-2 {
    transition-delay: 0.2s;
}

.slide-in-left.delay-3 {
    transition-delay: 0.3s;
}

.slide-in-left.delay-4 {
    transition-delay: 0.4s;
}

.slide-in-left.delay-5 {
    transition-delay: 0.5s;
}

.slide-in-left.delay-6 {
    transition-delay: 0.6s;
}

.slide-in-left.delay-7 {
    transition-delay: 0.7s;
}

.fade-in-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-scroll.delay-1 {
    transition-delay: 0.1s;
}

.fade-in-scroll.delay-2 {
    transition-delay: 0.2s;
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.scale-in.delay-1 {
    transition-delay: 0.2s;
}

.scale-in.delay-2 {
    transition-delay: 0.4s;
}

.scale-in.delay-3 {
    transition-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .phone-mockup-desktop {
        display: none;
    }

    .phone-mockup-tablet {
        display: block;
    }

    .solution-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 2rem;
    }

    .pain-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 600px;
        margin: 0 auto;
    }

    .pain-card {
        padding: 25px 20px;
    }

    .pain-dots {
        display: none;
    }

    .solution-header h2 {
        font-size: 2.4rem;
    }

    .solution-header h2::after {
        font-size: 2rem;
        right: -40px;
    }

    .solution-subtitle {
        display: none;
    }

    .interactive-showcase {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 0;
    }

    .features-column {
        display: none;
    }

    .mobile-feature-title {
        display: block;
    }

    .mobile-screens-container {
        display: flex;
    }

    .mobile-feature-dots {
        display: flex;
    }

    .extra-benefits {
        display: none;
    }

    .phone-mockup-center {
        order: 0;
        width: 100%;
        overflow: visible;
    }

    .phone-mockup-center .phone-frame {
        display: none;
    }

    .phone-mockup-center .phone-glow {
        display: none;
    }

    .solution-wrapper {
        position: relative;
    }

    .solution-section {
        padding: 60px 20px 20px;
    }

    .solution-header h2 {
        margin-bottom: 0;
    }

    .mobile-feature-title {
        text-align: center;
        padding: 0 20px 15px;
        min-height: 70px;
    }

    .mobile-feature-title h3 {
        font-size: 1.4rem;
        font-weight: 700;
        color: var(--text-dark);
        margin-bottom: 6px;
    }

    .mobile-feature-title p {
        font-size: 0.95rem;
        color: var(--text-light);
        margin: 0;
    }

    .mobile-screens-container {
        display: flex;
        overflow-x: scroll;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 0;
        padding: 15px 0;
        width: 100vw;
        margin: 0 calc(-50vw + 50%);
        touch-action: auto;
    }

    .mobile-screens-container::-webkit-scrollbar {
        display: none;
    }

    .mobile-screen-item {
        scroll-snap-align: center;
        scroll-snap-stop: always;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100vw;
        min-width: 100vw;
        position: relative;
        touch-action: auto;
    }

    .mobile-screen-item .phone-frame {
        display: block;
        width: 250px;
        height: 500px;
        animation: none;
        box-shadow: none;
    }

    .mobile-screen-item .phone-glow {
        display: block;
    }

    .mobile-screen-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        opacity: 1;
    }

    .mobile-feature-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 15px 20px 5px;
    }

    .mobile-feature-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: #ccc;
        transition: all 0.3s ease;
        cursor: pointer;
    }

    .mobile-feature-dot.active {
        background: var(--primary-color);
        width: 24px;
        border-radius: 4px;
    }

    .feature-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .extra-benefits {
        flex-direction: column;
        gap: 20px;
    }

    .reviews-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 20px;
        padding: 15px 20px;
        margin: 0 auto 20px;
        touch-action: auto;
        max-width: 100%;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        scroll-snap-align: center;
        min-width: 300px;
        max-width: 300px;
        flex-shrink: 0;
        background: white;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        border-radius: 15px;
        padding: 30px 20px;
    }

    .reviews-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 0 20px;
        margin-bottom: 20px;
    }

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

    .review-dot.active {
        background: var(--primary-color);
        width: 24px;
        border-radius: 4px;
    }

    .cta-emoji {
        font-size: 4rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .title-word {
        margin: 0 5px;
    }

    .cta-subtitle {
        font-size: 1.25rem;
    }

    .cta-stats-mini {
        flex-direction: column;
        gap: 20px;
        padding: 20px;
    }

    .stat-mini-number {
        font-size: 2rem;
    }

    .stat-mini-divider {
        width: 80%;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .btn-primary, .btn-mega {
        padding: 20px 45px;
        font-size: 1.3rem;
    }

    .transition-icon {
        font-size: 4rem;
    }

    .transition-title {
        font-size: 2.8rem;
    }

    .transition-divider {
        width: 90px;
        height: 4px;
    }

    .transition-description {
        font-size: 1.4rem;
    }

    .transition-arrow {
        font-size: 3rem;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 100px 20px 40px;
        min-height: auto;
    }

    .hero-content {
        gap: 25px;
        grid-template-columns: 1fr;
    }

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

    .hero-text h1 {
        font-size: 1.75rem;
        line-height: 1.35;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 15px;
    }

    .hero-features {
        margin-bottom: 15px;
    }

    .hero-features p {
        font-size: 0.9rem;
        line-height: 1.7;
        margin-bottom: 8px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero-image {
        order: -1;
    }

    .hero-tags {
        gap: 8px;
        justify-content: center;
    }

    .hero-tag {
        font-size: 0.8rem;
        padding: 6px 14px;
    }

    .floating-emoji {
        font-size: 2rem;
        opacity: 0.15;
    }

    .phone-mockup {
        max-width: 60%;
    }

    .phone-mockup-desktop {
        display: none;
    }

    .phone-mockup-mobile {
        display: block;
    }

    .phone-mockup-tablet {
        display: none;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .transition-icon {
        font-size: 3.5rem;
    }

    .transition-title {
        font-size: 2.2rem;
    }

    .transition-divider {
        width: 80px;
        height: 3px;
    }

    .transition-description {
        font-size: 1.2rem;
    }

    .transition-arrow {
        font-size: 2.5rem;
    }

    .pain-section {
        padding: 60px 20px 40px;
    }

    .pain-grid {
        display: grid;
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 600px;
        margin: 0 auto;
    }

    .pain-card {
        padding: 25px 20px;
    }

    .pain-dots {
        display: none;
    }

    .solution-header h2 {
        font-size: 2.4rem;
        margin-bottom: 0;
        line-height: 1.1;
    }

    .solution-header-small {
        font-size: 1.2rem;
        display: block;
        font-weight: 500;
        margin-bottom: -5px;
    }

    .mobile-feature-title {
        padding: 0 20px 15px;
    }

    .reviews-grid {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        overflow-y: visible;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        gap: 20px;
        padding: 15px 20px;
        margin: 0 auto 20px;
        touch-action: auto;
        max-width: 100%;
    }

    .reviews-grid::-webkit-scrollbar {
        display: none;
    }

    .review-card {
        scroll-snap-align: center;
        min-width: 280px;
        max-width: 280px;
        flex-shrink: 0;
        background: white;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        border-radius: 15px;
        padding: 30px 20px;
    }

    .reviews-dots {
        display: flex;
        justify-content: center;
        gap: 8px;
        padding: 0 20px;
        margin-bottom: 20px;
    }

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

    .review-dot.active {
        background: var(--primary-color);
        width: 24px;
        border-radius: 4px;
    }

    .phone-frame {
        width: 240px;
        height: 480px;
    }

    .phone-glow {
        width: 300px;
        height: 550px;
    }

    .feature-item {
        padding: 18px 15px;
    }

    .feature-item-icon {
        font-size: 1.8rem;
        width: 50px;
        height: 50px;
    }

    .feature-item-content h4 {
        font-size: 0.95rem;
    }

    .feature-item-content p {
        font-size: 0.8rem;
    }

    .extra-benefit-item {
        padding: 12px 20px;
    }

    .extra-benefit-item p {
        font-size: 0.9rem;
    }

    .accordion-header {
        padding: 28px 15px 28px 0;
        gap: 18px;
    }

    .accordion-number {
        font-size: 1.1rem;
        min-width: 40px;
    }

    .accordion-question {
        font-size: 1.05rem;
    }

    .accordion-icon {
        width: 26px;
        height: 26px;
    }

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

    .accordion-content {
        padding: 0 15px 0 58px;
    }

    .accordion-item.active .accordion-content {
        padding: 0 15px 28px 58px;
    }

    .accordion-content p {
        font-size: 0.98rem;
    }

    .cta-emoji {
        font-size: 3.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .title-word {
        margin: 0 3px;
    }

    .cta-subtitle {
        font-size: 1.1rem;
    }

    .cta-stats-mini {
        flex-direction: column;
        gap: 15px;
        padding: 18px;
    }

    .stat-mini-number {
        font-size: 1.8rem;
    }

    .stat-mini-divider {
        width: 70%;
        height: 2px;
        background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-mega {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 18px 35px;
        font-size: 1.2rem;
    }

    .cta-trust-line {
        flex-direction: column;
        gap: 10px;
    }

    .trust-divider {
        display: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-logo {
        justify-content: center;
    }
}

/* ============================================
   HEADER STYLES
   ============================================ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: 0 2px 30px rgba(0, 0, 0, 0.12);
    background: rgba(255, 255, 255, 0.98);
}

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

.header-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s ease;
    cursor: pointer;
}

.header-logo:hover {
    transform: translateY(-2px);
}

.header-logo:hover .header-logo-icon {
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.header-logo-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.2);
    transition: all 0.3s ease;
}

.header-logo-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.header-logo-text {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    white-space: nowrap;
    line-height: 1.2;
}

.header-logo-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1;
}

.header-logo-rating svg {
    flex-shrink: 0;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    justify-content: center;
}

.header-nav-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 10px 18px;
    border-radius: 10px;
    background: transparent;
}

.header-nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.08), rgba(76, 175, 80, 0.12));
    border-radius: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.header-nav-link:hover::before {
    opacity: 1;
}

.header-nav-icon {
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.header-nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.header-nav-link:hover .header-nav-icon {
    transform: scale(1.1) rotate(-5deg);
}

.header-nav-link.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1), rgba(76, 175, 80, 0.15));
}

.header-nav-link.active .header-nav-icon {
    transform: scale(1.05);
}

.header-nav-link span {
    position: relative;
    z-index: 1;
}

.header-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #F4442E 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 6px 24px rgba(255, 107, 53, 0.5);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

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

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

.header-btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 10px 35px rgba(255, 107, 53, 0.7);
    border-color: rgba(255, 255, 255, 0.6);
}

.header-btn:active {
    transform: translateY(-1px) scale(1.0);
}

.header-btn-icon {
    flex-shrink: 0;
}

.header-btn-icon-download {
    display: none;
}

.header-btn-text {
    font-weight: 700;
    font-size: 1.1rem;
}

.header-burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.header-burger span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.header-burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.header-burger.active span:nth-child(2) {
    opacity: 0;
}

.header-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.header-mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background: linear-gradient(180deg, #ffffff 0%, #f8fdf9 100%);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    overflow-y: auto;
}

.header-mobile-menu.active {
    right: 0;
}

.header-mobile-top {
    padding: 100px 30px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-bottom: 3px solid rgba(255, 255, 255, 0.2);
}

.header-mobile-badge {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.header-mobile-badge-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
}

.header-mobile-badge-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-dark);
}

.header-mobile-badge-label {
    font-size: 0.85rem;
    color: var(--text-light);
    font-weight: 500;
}

.header-mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 10px 20px;
    gap: 0;
}

.header-mobile-link {
    display: flex;
    align-items: center;
    gap: 15px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 18px 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(20px);
}

.header-mobile-menu.active .header-mobile-link {
    opacity: 1;
    transform: translateX(0);
}

.header-mobile-menu.active .header-mobile-link:nth-child(1) {
    transition-delay: 0.1s;
}

.header-mobile-menu.active .header-mobile-link:nth-child(2) {
    transition-delay: 0.15s;
}

.header-mobile-menu.active .header-mobile-link:nth-child(3) {
    transition-delay: 0.2s;
}

.header-mobile-link-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
}

.header-mobile-link:hover {
    color: var(--primary-color);
    padding-left: 25px;
    background: rgba(76, 175, 80, 0.08);
}

.header-mobile-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 18px 30px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1.05rem;
    margin: 25px 15px 30px;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(76, 175, 80, 0.35);
    opacity: 0;
    transform: translateY(20px);
}

.header-mobile-menu.active .header-mobile-btn {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

.header-mobile-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.45);
}

.header-mobile-btn:active {
    transform: translateY(0);
}

/* Overlay для мобильного меню */
.header-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.header-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   RESPONSIVE - HEADER
   ============================================ */

@media (max-width: 1200px) {
    .header-nav-link span {
        display: none;
    }
    
    .header-nav-link {
        padding: 10px 12px;
    }
    
    .header-nav {
        gap: 8px;
    }
}

@media (min-width: 1101px) and (max-width: 1200px) {
    .header-btn-text {
        display: none;
    }
    
    .header-btn {
        padding: 14px 20px;
        gap: 0;
    }
}

@media (max-width: 700px) {
    .header-nav {
        display: none;
    }
    
    .header-burger {
        display: flex;
        margin-left: auto;
        margin-right: 10px;
    }
    
    .header-container {
        padding: 18px 30px;
        gap: 0;
    }
    
    .header-btn {
        padding: 11px 14px;
        gap: 0;
    }
    
    .header-btn-icon {
        width: 22px;
        height: 22px;
    }
    
    .header-btn-text {
        display: none;
    }
    
    .header-logo-text {
        font-size: 1.1rem;
    }
    
    .header-logo-rating {
        font-size: 0.7rem;
    }
    
    .header-logo-rating svg {
        width: 12px;
        height: 12px;
    }
    
    .header-logo-icon {
        width: 36px;
        height: 36px;
    }
}

@media (min-width: 701px) and (max-width: 992px) {
    .header-container {
        padding: 18px 30px;
        gap: 20px;
    }
    
    .header-nav {
        gap: 10px;
    }
    
    .header-nav-link {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .header-nav-icon {
        width: 16px;
        height: 16px;
    }
    
    .header-btn {
        padding: 11px 20px;
        font-size: 0.95rem;
    }
    
    .header-btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .header-btn-text {
        font-size: 0.95rem;
    }
}

@media (min-width: 577px) and (max-width: 700px) {
    .header-burger {
        margin-right: 10px;
    }
    
    .header-btn {
        padding: 11px 14px;
        gap: 0;
    }
    
    .header-btn-icon {
        width: 22px;
        height: 22px;
    }
    
    .header-btn-text {
        display: none;
    }
}

@media (max-width: 576px) {
    .header-container {
        padding: 15px 20px;
        gap: 0;
    }
    
    .header-burger {
        margin-right: 8px;
    }
    
    /* Переключаем иконки только на маленьких мобильных */
    .header-btn-icon-apple {
        display: none;
    }
    
    .header-btn-icon-download {
        display: block;
    }
    
    .header-btn {
        padding: 10px 12px;
        gap: 0;
    }
    
    .header-btn-icon {
        width: 20px;
        height: 20px;
    }
    
    .header-btn-text {
        display: none;
    }
    
    .header-logo-icon {
        width: 32px;
        height: 32px;
    }
    
    .header-logo-text {
        font-size: 1rem;
    }
    
    .header-logo-rating {
        font-size: 0.65rem;
    }
    
    .header-logo-rating svg {
        width: 11px;
        height: 11px;
    }
    
    .header-mobile-menu {
        max-width: 100%;
    }
    
    .header-mobile-top {
        padding: 85px 25px 20px;
    }
    
    .header-mobile-badge {
        padding: 18px;
    }
    
    .header-mobile-badge-number {
        font-size: 1.6rem;
    }
    
    .header-mobile-badge-label {
        font-size: 0.8rem;
    }
    
    .header-mobile-nav {
        padding: 10px 15px;
    }
    
    .header-mobile-link {
        font-size: 1.05rem;
        padding: 16px 12px;
    }
    
    .header-mobile-btn {
        font-size: 1rem;
        padding: 16px 25px;
        margin: 20px 12px 25px;
    }
    
    .hero {
        padding-top: 100px;
    }
}

/* Анимация появления header при загрузке */
.header {
    animation: slideDown 0.6s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* ========================================
   PRIVACY POLICY PAGE
   ======================================== */

.privacy-section {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    min-height: calc(100vh - 80px);
    margin-top: 0;
}

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

.privacy-header {
    text-align: center;
    margin-bottom: 60px;
}

.privacy-header h1 {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #4CAF50, #2E7D32);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.privacy-subtitle {
    font-size: 1.1rem;
    color: #6c757d;
    font-weight: 500;
}

.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.privacy-section-item {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #e9ecef;
}

.privacy-section-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.privacy-section-item h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 20px;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.privacy-section-item h2::before {
    content: "🔒";
    margin-right: 15px;
    font-size: 1.5rem;
}

.privacy-section-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #4CAF50;
    margin: 25px 0 15px;
}

.privacy-section-item p {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 15px;
}

.privacy-section-item ul {
    margin: 15px 0;
    padding-left: 25px;
}

.privacy-section-item li {
    font-size: 1rem;
    color: #495057;
    margin-bottom: 8px;
    position: relative;
}

.privacy-section-item li::marker {
    color: #4CAF50;
}

.privacy-section-item a {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.privacy-section-item a:hover {
    color: #2E7D32;
    text-decoration: underline;
}

.privacy-section-item strong {
    color: #2c3e50;
    font-weight: 600;
}

/* Responsive для политики конфиденциальности */
@media (max-width: 768px) {
    .privacy-section {
        padding: 100px 0 60px;
    }
    
    .privacy-container {
        padding: 0 15px;
    }
    
    .privacy-header h1 {
        font-size: 2.2rem;
    }
    
    .privacy-content {
        padding: 30px 25px;
        border-radius: 15px;
    }
    
    .privacy-section-item h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section-item h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .privacy-container {
        padding: 0 10px;
    }
    
    .privacy-content {
        padding: 25px 20px;
    }
    
    .privacy-header h1 {
        font-size: 1.8rem;
    }
    
    .privacy-section-item h2 {
        font-size: 1.3rem;
    }
}

/* ========================================
   ИЗОЛИРОВАННЫЕ СТИЛИ ДЛЯ ПОЛИТИКИ КОНФИДЕНЦИАЛЬНОСТИ
   ======================================== */

/* Сброс стилей для страницы политики */
body.privacy-page {
    background: #f8f9fa !important;
    margin: 0 !important;
    padding: 0 !important;
}

body.privacy-page .main {
    margin-top: 0 !important;
    padding-top: 0 !important;
    background: none !important;
}

body.privacy-page .hero-section {
    display: none !important;
}

body.privacy-page .header-logo-icon {
    width: 50px !important;
    height: 50px !important;
    max-width: 50px !important;
    max-height: 50px !important;
    object-fit: contain !important;
}

/* Белый текст в футере для всех страниц */
.footer {
    color: white !important;
}

.footer h3,
.footer h4 {
    color: white !important;
}

.footer p,
.footer li {
    color: white !important;
}

.footer a {
    color: white !important;
}


body.privacy-page .privacy-section {
    padding: 140px 0 80px !important;
    background: #f8f9fa !important;
    min-height: 100vh !important;
    margin-top: 0 !important;
    position: relative !important;
    z-index: 10 !important;
}

body.privacy-page .privacy-content {
    background: white !important;
    position: relative !important;
    z-index: 15 !important;
}

/* Мобильная версия для политики */
@media (max-width: 768px) {
    body.privacy-page .privacy-section {
        padding: 120px 0 60px !important;
    }
}

@media (max-width: 480px) {
    body.privacy-page .privacy-section {
        padding: 100px 0 40px !important;
    }
}
