/* ===== Base Styles ===== */
:root {
    --ivory: #f8f7f1;
    --mint: #d9ede4;
    --lavender: #e6e0f0;
    --peach: #fbe6d4;
    --dark: #333333;
    --primary: #6e57b2;
    --secondary: #7fc9aa;
    --accent: #f8c05a;
    --rejection: #e57373;
    --white: #ffffff;
    --shadow-soft: 0 4px 12px rgba(0, 0, 0, 0.05);
    --shadow-medium: 0 8px 24px rgba(0, 0, 0, 0.08);
}

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

html {
    scroll-behavior: smooth;
}

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

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

@media (min-width: 768px) {
    .container { padding: 0 1.5rem; }
}

.hidden { display: none !important; }

.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-rejection { color: var(--rejection); }
.font-bold { font-weight: 700; }
.text-center { text-align: center; }

/* ===== Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    transition: all 0.3s ease;
    padding: 1.25rem 0;
    background: transparent;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow-soft);
    padding: 0.75rem 0;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo { cursor: pointer; }
.logo-img { height: 2rem; width: auto; }
@media (min-width: 768px) { .logo-img { height: 2.5rem; } }

.nav-desktop {
    display: none;
    align-items: center;
    gap: 2rem;
}
@media (min-width: 768px) { .nav-desktop { display: flex; } }

.nav-link {
    background: none;
    border: none;
    color: var(--dark);
    font-weight: 500;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}
.nav-link:hover { color: var(--primary); }
.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}
.nav-link:hover::after { width: 100%; }

.btn-guide {
    background: var(--lavender);
    color: var(--primary);
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.btn-guide:hover {
    background: var(--primary);
    color: var(--white);
    transform: scale(1.05);
}

.burger-btn {
    display: block;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 1.75rem;
    cursor: pointer;
}
@media (min-width: 768px) { .burger-btn { display: none; } }

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    display: flex;
    flex-direction: column;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.close-btn {
    background: none;
    border: none;
    font-size: 1.75rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-nav {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 2rem 1.5rem;
    overflow-y: auto;
}

.mobile-nav-link {
    width: 100%;
    text-align: left;
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--dark);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    background: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}
.mobile-nav-link:hover {
    color: var(--primary);
    background: rgba(110, 87, 178, 0.1);
}

.mobile-nav-buttons {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-primary-full {
    width: 100%;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
}

.btn-telegram-full {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #0088cc;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    font-size: 1.125rem;
    text-decoration: none;
}

/* ===== Hero Section ===== */
.hero-section {
    padding-top: 6rem;
    padding-bottom: 3rem;
    background: var(--white);
    overflow: hidden;
}
@media (min-width: 768px) { .hero-section { padding-top: 8rem; } }

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}
@media (min-width: 1024px) {
    .hero-content {
        flex-direction: row;
        gap: 3rem;
    }
}

.hero-text {
    flex: 1;
    max-width: 40rem;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: rgba(51, 51, 51, 0.6);
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .hero-subtitle { font-size: 1.25rem; } }

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .hero-title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero-title { font-size: 3.75rem; } }

.hero-description {
    font-size: 1.25rem;
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}
@media (min-width: 768px) { .hero-description { font-size: 1.5rem; } }

.hero-highlight {
    background: var(--ivory);
    border-left: 4px solid var(--primary);
    border-radius: 0 0.75rem 0.75rem 0;
    padding: 1rem;
    margin-bottom: 2rem;
}
.hero-highlight p {
    font-size: 1.125rem;
    color: rgba(51, 51, 51, 0.9);
}
@media (min-width: 768px) { .hero-highlight p { font-size: 1.25rem; } }

.btn-primary-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--primary);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s;
    margin-bottom: 1.5rem;
    width: 100%;
    justify-content: center;
}
@media (min-width: 768px) { .btn-primary-lg { width: auto; } }
.btn-primary-lg:hover {
    background: #5b4696;
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(110, 87, 178, 0.3);
}

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

.stat-card {
    background: var(--white);
    border: 1px solid #f0f0f0;
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
@media (min-width: 768px) { .stat-value { font-size: 1.875rem; } }

.stat-label {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.6);
}

.stat-note {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.4);
    margin-top: 0.25rem;
}

.hero-image {
    flex: 1;
    width: 100%;
    max-width: 24rem;
}
@media (min-width: 1024px) { .hero-image { max-width: 28rem; } }

.hero-photo-wrapper {
    border-radius: 1rem;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.hero-photo {
    width: 100%;
    height: auto;
    display: block;
}

.hero-photo-caption {
    text-align: center;
    color: rgba(51, 51, 51, 0.7);
    font-size: 0.875rem;
    margin-top: 1rem;
    margin-bottom: 0.75rem;
}

.contact-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-top: 1rem;
}

.btn-whatsapp, .btn-telegram, .btn-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 0.75rem;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: var(--shadow-soft);
}

.btn-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-whatsapp:hover { background: #20bd5a; }

.btn-telegram {
    background: #0088cc;
    color: var(--white);
}
.btn-telegram:hover { background: #0077b5; }

.btn-phone {
    background: var(--dark);
    color: var(--white);
}
.btn-phone:hover { background: rgba(51, 51, 51, 0.8); }

/* ===== Pain Section ===== */
.pain-section {
    padding: 4rem 0 5rem;
    background: var(--ivory);
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .section-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title { font-size: 3rem; } }

.section-subtitle {
    font-size: 1.25rem;
    color: rgba(51, 51, 51, 0.6);
    text-align: center;
    margin-bottom: 3rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}

.news-collage {
    position: relative;
    max-width: 56rem;
    margin: 0 auto 4rem;
    height: 600px;
}
@media (min-width: 768px) { .news-collage { height: 500px; } }

.news-img {
    position: absolute;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--white);
    transition: transform 0.3s;
}
.news-img:hover { transform: scale(1.05); z-index: 100 !important; }

.news-1 { top: 0; left: -5%; width: 75%; transform: rotate(-6deg); z-index: 10; }
.news-2 { top: 5%; right: -5%; width: 72%; transform: rotate(5deg); z-index: 20; }
.news-3 { top: 20%; left: 5%; width: 78%; transform: rotate(-4deg); z-index: 30; }
.news-4 { top: 35%; right: 0; width: 70%; transform: rotate(7deg); z-index: 40; }
.news-5 { top: 50%; left: -8%; width: 76%; transform: rotate(-3deg); z-index: 50; }
.news-6 { top: 65%; right: -3%; width: 73%; transform: rotate(6deg); z-index: 60; }
.news-7 { top: 80%; left: 10%; width: 75%; transform: rotate(-5deg); z-index: 70; }

@media (min-width: 768px) {
    .news-1 { width: 45%; }
    .news-2 { width: 42%; }
    .news-3 { width: 43%; left: 15%; top: 25%; }
    .news-4 { width: 40%; top: 20%; right: 8%; }
    .news-5 { width: 44%; bottom: 15%; left: 5%; top: auto; }
    .news-6 { width: 41%; bottom: 10%; right: 12%; top: auto; }
    .news-7 { width: 43%; bottom: 0; left: 25%; top: auto; }
}

.pain-note {
    text-align: center;
    color: rgba(51, 51, 51, 0.5);
    font-size: 0.875rem;
    font-style: italic;
    margin-top: 2rem;
}

/* ===== Solution Section ===== */
.solution-section {
    padding: 4rem 0 5rem;
    background: var(--white);
}

.solution-content {
    max-width: 56rem;
    margin: 0 auto;
    text-align: center;
}

.badge-dnv {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(110, 87, 178, 0.1);
    color: var(--primary);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-title-lg {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .section-title-lg { font-size: 2.25rem; } }
@media (min-width: 1024px) { .section-title-lg { font-size: 3rem; } }

.section-text {
    font-size: 1.125rem;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 2.5rem;
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) { .section-text { font-size: 1.25rem; } }

.section-subtitle-lg {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .section-subtitle-lg { font-size: 1.875rem; } }

.tie-card {
    margin-bottom: 3rem;
}

.tie-img {
    max-width: 24rem;
    width: 100%;
    border-radius: 1rem;
    border: 4px solid var(--white);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.tie-caption {
    font-size: 0.875rem;
    color: #666;
    font-weight: 500;
    margin-top: 1rem;
}

.benefits-intro {
    font-size: 1rem;
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 1rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) { .benefits-intro { font-size: 1.125rem; } }

.unique-benefit {
    background: rgba(110, 87, 178, 0.05);
    border: 1px solid rgba(110, 87, 178, 0.2);
    border-radius: 0.75rem;
    padding: 1rem;
    margin-bottom: 2rem;
    max-width: 40rem;
    margin-left: auto;
    margin-right: auto;
}
.unique-benefit p {
    color: rgba(51, 51, 51, 0.8);
    font-size: 0.875rem;
}
@media (min-width: 768px) { .unique-benefit p { font-size: 1rem; } }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}
@media (min-width: 640px) { .benefits-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .benefits-grid { grid-template-columns: repeat(4, 1fr); } }

.benefit-card {
    background: var(--ivory);
    border-radius: 0.75rem;
    padding: 1.25rem;
    text-align: center;
    transition: box-shadow 0.3s;
}
.benefit-card:hover { box-shadow: var(--shadow-medium); }

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 0.75rem;
}

.benefit-title {
    font-weight: 700;
    color: var(--dark);
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}
@media (min-width: 768px) { .benefit-title { font-size: 1rem; } }

.benefit-desc {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.5);
}

/* ===== Not For You Section ===== */
.notforyou-section {
    padding: 4rem 0 5rem;
    background: var(--ivory);
}

.no-fake-notice {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-soft);
    border: 1px solid #f0f0f0;
}
@media (min-width: 768px) {
    .no-fake-notice {
        flex-direction: row;
        padding: 2rem;
    }
}

.notice-image {
    width: 8rem;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    cursor: pointer;
    flex-shrink: 0;
}
@media (min-width: 768px) { .notice-image { width: 10rem; } }

.notice-image img {
    width: 100%;
    height: auto;
    display: block;
}

.notice-text { text-align: center; }
@media (min-width: 768px) { .notice-text { text-align: left; } }

.notice-text h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.notice-text p {
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 0.75rem;
}

.notice-small {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.6);
}

.fit-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .fit-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; } }

.fit-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 2px solid transparent;
}
@media (min-width: 768px) { .fit-card { padding: 2rem; } }

.fit-card.not-for { border-color: rgba(229, 115, 115, 0.2); }
.fit-card.for-you {
    border-color: rgba(127, 201, 170, 0.3);
    box-shadow: var(--shadow-soft);
}

.fit-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.fit-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.fit-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(51, 51, 51, 0.8);
}

.good-news-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--secondary);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}
@media (min-width: 768px) { .good-news-card { padding: 2rem; } }

.good-news-icon {
    width: 3rem;
    height: 3rem;
    background: rgba(127, 201, 170, 0.1);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.good-news-content p {
    font-size: 1.125rem;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.good-news-content p:last-of-type {
    color: rgba(51, 51, 51, 0.7);
    margin-bottom: 1rem;
}

/* ===== Professions Section ===== */
.professions-section {
    padding: 4rem 0 5rem;
    background: var(--ivory);
}

.professions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}
@media (min-width: 768px) { .professions-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem; } }

.profession-card {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
}
@media (min-width: 768px) { .profession-card { padding: 1.25rem; } }

.profession-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 0.75rem;
    background: rgba(110, 87, 178, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
}

.profession-card h3 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.profession-percent {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.5);
    margin-bottom: 1rem;
}

.profession-screenshot {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
}

.profession-screenshot img {
    width: 100%;
    border-radius: 0.5rem;
    box-shadow: var(--shadow-soft);
}

.key-insight {
    background: var(--white);
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: var(--shadow-soft);
    border-left: 4px solid var(--primary);
    max-width: 48rem;
    margin: 0 auto;
}
@media (min-width: 768px) { .key-insight { padding: 2rem; } }

.insight-main {
    font-size: 1.125rem;
    color: var(--dark);
    line-height: 1.6;
}
@media (min-width: 768px) { .insight-main { font-size: 1.25rem; } }

.insight-sub {
    color: rgba(51, 51, 51, 0.6);
    margin-top: 1rem;
}

/* ===== Reviews Section ===== */
.reviews-section {
    padding: 4rem 0 5rem;
    background: var(--ivory);
    overflow: hidden;
}

.approval-header {
    text-align: center;
    margin-bottom: 3rem;
}

.approval-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.1;
}
@media (min-width: 768px) { .approval-title { font-size: 3rem; } }
@media (min-width: 1024px) { .approval-title { font-size: 3.75rem; } }

.approval-70 { opacity: 0.7; }
.approval-40 { opacity: 0.4; }

.author-photo {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}

.author-photo img {
    width: 12rem;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
}
@media (min-width: 768px) { .author-photo img { width: 16rem; } }
.author-photo img:hover {
    transform: scale(1.05);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.2);
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 48rem;
    margin: 0 auto 3rem;
}
@media (min-width: 768px) { .stats-row { grid-template-columns: repeat(4, 1fr); } }

.stat-box {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.stat-box-value {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--secondary);
}
@media (min-width: 768px) { .stat-box-value { font-size: 2.25rem; } }

.stat-box-label {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.6);
}
@media (min-width: 768px) { .stat-box-label { font-size: 0.875rem; } }

.carousel-container {
    position: relative;
    margin-bottom: 2rem;
}

.carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 0.5rem 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.carousel-track::-webkit-scrollbar { display: none; }

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    box-shadow: var(--shadow-medium);
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--dark);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s;
}
@media (min-width: 768px) {
    .carousel-btn { width: 3rem; height: 3rem; }
}
.carousel-container:hover .carousel-btn { opacity: 1; }
.carousel-btn:hover { background: var(--white); }
.carousel-prev { left: 0.5rem; }
@media (min-width: 768px) { .carousel-prev { left: 1rem; } }
.carousel-next { right: 0.5rem; }
@media (min-width: 768px) { .carousel-next { right: 1rem; } }

.approval-card, .review-card {
    flex-shrink: 0;
    width: 16rem;
    height: 20rem;
    border-radius: 0.75rem;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    position: relative;
    transition: box-shadow 0.3s, transform 0.3s;
}
.approval-card:hover, .review-card:hover {
    box-shadow: var(--shadow-medium);
    transform: scale(1.02);
}

.review-card {
    width: 18rem;
    background: var(--white);
}

.approval-card img, .review-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.approval-card:hover img, .review-card:hover img { transform: scale(1.05); }

.approval-badge, .review-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-soft);
}

.review-badge {
    left: 0.75rem;
    right: auto;
}

.cta-card {
    flex-shrink: 0;
    width: 16rem;
    height: 20rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary), #5b4696);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-soft);
}

.cta-card p {
    color: var(--white);
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.btn-white {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 0.75rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s;
}
.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

.reviews-subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .reviews-subtitle { font-size: 1.875rem; } }

.reviews-note {
    text-align: center;
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.5);
}

/* ===== Who We Are Section ===== */
.whoweare-section {
    padding: 4rem 0 6rem;
    background: var(--white);
    overflow: hidden;
}

.intro-box {
    background: var(--ivory);
    border-radius: 1rem;
    padding: 1.5rem;
    margin-bottom: 3rem;
    border: 1px solid rgba(51, 51, 51, 0.05);
}
@media (min-width: 768px) { .intro-box { padding: 2rem; } }

.intro-box p {
    font-size: 1.125rem;
    color: rgba(51, 51, 51, 0.8);
    line-height: 1.6;
}

.intro-bold {
    font-weight: 700;
    color: var(--dark);
    margin-top: 1rem;
}

.trust-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 4rem;
}
@media (min-width: 768px) { .trust-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .trust-grid { grid-template-columns: repeat(3, 1fr); } }

.trust-card {
    background: var(--ivory);
    border-radius: 1rem;
    padding: 1.5rem;
    border: 1px solid transparent;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.trust-card:hover {
    border-color: rgba(110, 87, 178, 0.2);
    box-shadow: var(--shadow-medium);
}

.trust-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
}

.trust-image {
    width: 100%;
    height: 8rem;
    border-radius: 0.75rem;
    overflow: hidden;
    background: var(--white);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
    cursor: pointer;
    margin-bottom: 1rem;
    transition: box-shadow 0.3s;
}
.trust-image:hover { box-shadow: var(--shadow-soft); }

.trust-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.3s;
}
.trust-image:hover img { transform: scale(1.05); }

.trust-card p {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.7);
    flex: 1;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--white);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 1rem;
    transition: all 0.3s;
}
.phone-btn:hover {
    box-shadow: var(--shadow-medium);
    color: var(--primary);
}

.expand-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    padding-bottom: 0.125rem;
    border-bottom: 1px dashed rgba(110, 87, 178, 0.5);
    margin-bottom: 1rem;
    transition: border-color 0.3s;
}
.expand-btn:hover { border-color: var(--primary); }

.requisites {
    background: var(--white);
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(51, 51, 51, 0.1);
    margin-bottom: 1rem;
}

.requisites p {
    font-family: monospace;
    font-size: 0.875rem;
    color: var(--dark);
}

.contract-info {
    font-size: 1rem;
    color: var(--dark);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.image-caption {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.5);
    text-align: center;
    font-style: italic;
    margin-top: 0.5rem;
}

.trust-progress {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid rgba(51, 51, 51, 0.1);
}

.trust-progress span {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.progress-bar {
    height: 0.5rem;
    background: rgba(51, 51, 51, 0.1);
    border-radius: 9999px;
    overflow: hidden;
    margin-top: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 9999px;
    transition: width 0.8s ease-out;
}

.last-10-cta {
    background: linear-gradient(135deg, var(--primary), #5b4696);
    border-radius: 1.5rem;
    padding: 2rem;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .last-10-cta { padding: 3rem; } }

.cta-content { position: relative; z-index: 10; }

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .cta-content h3 { font-size: 1.875rem; } }

.cta-content > p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
}

.cta-list {
    list-style: none;
    margin-bottom: 2rem;
}

.cta-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.75rem;
}

.btn-white-lg {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--white);
    color: var(--primary);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s;
}
.btn-white-lg:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* ===== Lead Gen Section ===== */
.leadgen-section {
    padding: 4rem 0 5rem;
    background: var(--ivory);
}

.leadgen-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.free-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(248, 192, 90, 0.2);
    color: #d4a012;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.leadgen-title {
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .leadgen-title { font-size: 2.25rem; } }
@media (min-width: 1024px) { .leadgen-title { font-size: 3rem; } }

.leadgen-subtitle {
    font-size: 1.125rem;
    color: rgba(51, 51, 51, 0.6);
    max-width: 40rem;
    margin: 0 auto;
}

.video-preview {
    display: flex;
    justify-content: center;
    margin-bottom: 2.5rem;
}

.video-preview video {
    width: 100%;
    max-width: 24rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-medium);
}

.leadgen-card {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: grid;
    border: 1px solid #f0f0f0;
    max-width: 64rem;
    margin: 0 auto;
}
@media (min-width: 768px) { .leadgen-card { border-radius: 2rem; } }
@media (min-width: 1024px) { .leadgen-card { grid-template-columns: 1fr 1fr; } }

.leadgen-left {
    background: var(--dark);
    color: var(--white);
    padding: 1.5rem;
    position: relative;
}
@media (min-width: 768px) { .leadgen-left { padding: 2.5rem; } }

.leadgen-left h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .leadgen-left h3 { font-size: 1.5rem; } }

.guide-contents {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 0.75rem;
    padding: 0.75rem;
}

.guide-icon {
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(248, 192, 90, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.guide-title {
    font-weight: 700;
    color: var(--white);
    font-size: 0.875rem;
}

.guide-desc {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
}

.bonus-box {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(248, 192, 90, 0.2);
    border-radius: 0.75rem;
    border: 1px solid rgba(248, 192, 90, 0.3);
}

.bonus-title {
    color: var(--accent);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
}

.bonus-text {
    color: var(--white);
    font-weight: 700;
    font-size: 0.875rem;
}

.leadgen-right {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}
@media (min-width: 768px) { .leadgen-right { padding: 2.5rem; } }

.leadgen-right h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}
@media (min-width: 768px) { .leadgen-right h3 { font-size: 1.5rem; } }

.leadgen-right > p {
    color: rgba(51, 51, 51, 0.6);
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.btn-telegram-lg {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    background: #0088cc;
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    font-size: 1.125rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s;
    margin-bottom: 1.5rem;
}
.btn-telegram-lg:hover {
    background: #0077b5;
    box-shadow: 0 12px 32px rgba(0, 136, 204, 0.3);
}

.downloads-count {
    font-size: 0.75rem;
    color: rgba(51, 51, 51, 0.5);
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
    width: 100%;
}

/* ===== Footer ===== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 0;
}

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}
@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

.footer-logo {
    text-align: center;
}
@media (min-width: 768px) { .footer-logo { text-align: left; } }

.footer-logo-img {
    height: 2rem;
    width: auto;
    filter: brightness(0) invert(1);
    margin-bottom: 0.5rem;
}

.footer-logo p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    color: var(--white);
    text-decoration: none;
    font-size: 0.875rem;
    transition: background 0.3s;
}
.footer-link:hover { background: rgba(255, 255, 255, 0.2); }

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
}
@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.privacy-link {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s;
}
.privacy-link:hover { color: var(--white); }

/* ===== Image Popup ===== */
.image-popup {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s;
}
.popup-close:hover { opacity: 0.8; }

#popup-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 0.5rem;
}

/* ===== Privacy Modal ===== */
.privacy-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--white);
    overflow-y: auto;
}

.privacy-content {
    max-width: 56rem;
    margin: 0 auto;
    padding: 2rem 1rem;
}
@media (min-width: 768px) { .privacy-content { padding: 2rem 1.5rem; } }

.privacy-close {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 500;
    cursor: pointer;
    margin-bottom: 2rem;
}
.privacy-close:hover { text-decoration: underline; }

.privacy-content h1 {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
@media (min-width: 768px) { .privacy-content h1 { font-size: 2.25rem; } }

.privacy-date {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.5);
    margin-bottom: 1.5rem;
}

.privacy-content h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.privacy-content p {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.privacy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1rem;
}

.privacy-content li {
    color: rgba(51, 51, 51, 0.8);
    margin-bottom: 0.5rem;
}

.privacy-content a {
    color: var(--primary);
    text-decoration: none;
}
.privacy-content a:hover { text-decoration: underline; }

/* ===== Cookie Consent ===== */
.cookie-consent {
    position: fixed;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    z-index: 50;
}
@media (min-width: 768px) {
    .cookie-consent {
        left: auto;
        right: 1.5rem;
        bottom: 1.5rem;
        max-width: 24rem;
    }
}

.cookie-content {
    background: var(--white);
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid #f0f0f0;
    padding: 1.25rem;
    position: relative;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cookie-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: none;
    border: none;
    color: rgba(51, 51, 51, 0.4);
    cursor: pointer;
    font-size: 1.125rem;
}
.cookie-close:hover { color: rgba(51, 51, 51, 0.6); }

.cookie-icon {
    width: 3rem;
    height: 3rem;
    background: #fef3c7;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
    padding-right: 1rem;
}

.cookie-text h4 {
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.cookie-text p {
    font-size: 0.875rem;
    color: rgba(51, 51, 51, 0.6);
    margin-bottom: 1rem;
}

.cookie-text button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
}
.cookie-text button:hover { text-decoration: underline; }

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

.btn-accept {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}
.btn-accept:hover { background: #5b4696; }

.btn-decline {
    background: none;
    border: none;
    color: rgba(51, 51, 51, 0.6);
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s;
}
.btn-decline:hover { color: var(--dark); }

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

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

.blinking {
    animation: blink 1.5s ease-in-out infinite;
}
