/* Reset & Base */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #eef2ff;
    --accent: #6366f1;
    --green: #22c55e;
    --green-light: #f0fdf4;
    --orange: #f97316;
    --orange-light: #fff7ed;
    --blue: #3b82f6;
    --blue-light: #eff6ff;
    --pink: #ec4899;
    --pink-light: #fdf2f8;
    --purple: #a855f7;
    --purple-light: #faf5ff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.1), 0 1px 2px -1px rgb(0 0 0 / 0.1);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --radius: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    color: var(--gray-900);
    background-color: var(--white);
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea {
    font-family: inherit;
    font-size: inherit;
}

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

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

/* Typography */
h1, h2, h3, h4 {
    font-weight: 800;
    line-height: 1.2;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.125rem;
}

.accent {
    color: var(--primary);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-header {
    background-color: var(--white);
    color: var(--primary);
}

.btn-header:hover {
    background-color: var(--gray-100);
}

.btn-secondary {
    border: 2px solid var(--gray-200);
    color: var(--gray-700);
    background-color: var(--white);
}

.btn-secondary:hover {
    border-color: var(--primary-light);
    background-color: var(--gray-50);
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.125rem;
    border-radius: var(--radius-xl);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--gray-100);
    box-shadow: var(--shadow-sm);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: var(--primary);
    border-radius: var(--radius);
    color: var(--white);
}

.logo-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
}

.nav {
    display: none;
    align-items: center;
    gap: 1.5rem;
}

.nav a {
    font-size: 0.875rem;
    color: var(--gray-600);
    transition: color 0.2s;
}

.nav a:hover {
    color: var(--primary);
}

.nav a.btn-primary {
    color: var(--white);
}

.nav a.btn-primary:hover {
    color: var(--white);
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--gray-700);
    border-radius: 2px;
}

/* Hero Section */
.hero {
    padding: 6rem 0 5rem;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--white) 50%, var(--purple-light) 100%);
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

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

.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 1rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 9999px;
    margin-bottom: 1.5rem;
}

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

.hero-description {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 2rem;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
}

.hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2.5rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

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

.hero-image-wrapper {
    position: relative;
    max-width: 500px;
}

.hero-image-wrapper img {
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-2xl);
    aspect-ratio: 4/3;
    object-fit: cover;
}

.hero-card {
    position: absolute;
    background-color: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
}

.hero-card-left {
    bottom: -1.5rem;
    left: -1.5rem;
}

.hero-card-right {
    top: -1.5rem;
    right: -1.5rem;
}

.card-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.card-value.green {
    color: var(--green);
}

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

/* Sections */
.section {
    padding: 5rem 0;
}

.section-gray {
    background-color: var(--gray-50);
}

.section-light {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--purple-light) 100%);
}

.section-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--purple) 100%);
    color: var(--white);
}

.section-beige {
    background-color: #e8e4df;
}

.section-earnings {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    color: var(--white);
}

.section-earnings .section-header h2 {
    color: var(--white);
}

.section-earnings .section-header p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 700px;
}

.section-earnings .section-header strong {
    color: var(--white);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto;
}

.section-header.light h2 {
    color: var(--white);
}

.section-header.light p {
    color: rgba(255, 255, 255, 0.7);
}

/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.step-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background-color: var(--gray-50);
    border-radius: var(--radius-2xl);
    transition: box-shadow 0.2s;
}

.step-card:hover {
    box-shadow: var(--shadow-lg);
}

.step-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: var(--radius-2xl);
    margin-bottom: 1.25rem;
}

.step-icon.indigo {
    background-color: var(--primary-light);
    color: var(--primary);
}

.step-icon.purple {
    background-color: var(--purple-light);
    color: var(--purple);
}

.step-icon.pink {
    background-color: var(--pink-light);
    color: var(--pink);
}

.step-icon.green {
    background-color: var(--green-light);
    color: var(--green);
}

.step-number {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 9999px;
}

.step-card h3 {
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.875rem;
    color: var(--gray-500);
    line-height: 1.6;
}

/* Earnings Grid */
.earnings-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3.5rem;
}

.earnings-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--white);
    border-radius: var(--radius-2xl);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.earnings-card:hover {
    border-color: var(--gray-200);
    box-shadow: var(--shadow-md);
}

.earnings-card.active {
    border-color: var(--orange);
    box-shadow: 0 0 0 1px var(--orange);
}

.earnings-card.orange .earnings-icon {
    background-color: var(--orange);
    color: var(--white);
}

.earnings-card.blue .earnings-icon,
.earnings-card.indigo .earnings-icon {
    background-color: var(--gray-100);
    color: var(--gray-500);
}

.earnings-card.green .earnings-icon {
    background-color: var(--green);
    color: var(--white);
}

.earnings-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: var(--radius-xl);
    margin-bottom: 1.25rem;
}

.earnings-card h3 {
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
}

.earnings-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
}

.earnings-label {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

/* New Earnings Cards */
.earnings-card-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem 1.5rem;
    background-color: var(--white);
    border-radius: var(--radius-2xl);
    transition: all 0.3s ease;
}

.earnings-card-new:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.earnings-icon-new {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-xl);
    margin-bottom: 1rem;
}

.earnings-icon-new.orange {
    background-color: var(--orange);
    color: var(--white);
}

.earnings-icon-new.blue {
    background-color: var(--blue);
    color: var(--white);
}

.earnings-icon-new.indigo {
    background-color: var(--primary);
    color: var(--white);
}

.earnings-icon-new.green {
    background-color: var(--green);
    color: var(--white);
}

.earnings-card-new h3 {
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
}

.earnings-value-new {
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--gray-900);
}

.earnings-label-new {
    font-size: 0.75rem;
    color: var(--gray-400);
    margin-top: 0.25rem;
}

/* New Stats Grid */
.stats-grid-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-card-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0.05) 100%);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: var(--radius-2xl);
}

.stat-card-new svg {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
}

.stat-value-new {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.stat-label-new {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (min-width: 768px) {
    .stats-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-2xl);
}

.stat-card svg {
    margin-bottom: 0.75rem;
    opacity: 0.7;
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
}

/* Stats Grid - Beige Section */
.section-beige .stats-grid {
    margin-top: 3rem;
}

.section-beige .stat-card {
    background-color: transparent;
    padding: 1.5rem;
}

.section-beige .stat-card svg {
    color: var(--gray-400);
    opacity: 1;
}

.section-beige .stat-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gray-500);
}

.section-beige .stat-label {
    color: var(--gray-400);
    font-size: 0.875rem;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.review-card {
    position: relative;
    padding: 1.75rem;
    background-color: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-sm);
    transition: box-shadow 0.2s;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.review-avatar {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    object-fit: cover;
}

.review-name {
    font-weight: 700;
    color: var(--gray-900);
}

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

.review-stars {
    color: #facc15;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.review-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.review-earning {
    display: inline-block;
    padding: 0.5rem 1rem;
    background-color: var(--green-light);
    color: var(--green);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius);
}

/* FAQ */
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item {
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-900);
    text-align: left;
    background-color: var(--white);
    transition: background-color 0.2s;
}

.faq-question:hover {
    background-color: var(--gray-50);
}

.faq-question svg {
    flex-shrink: 0;
    margin-left: 1rem;
    color: var(--primary);
    transition: transform 0.2s;
}

.faq-item.active .faq-question svg {
    transform: rotate(180deg);
}

.faq-answer {
    display: none;
    padding: 0 1.5rem 1.25rem;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq-answer p {
    font-size: 0.9375rem;
    color: var(--gray-600);
    line-height: 1.6;
}

/* Contact Form */
.form-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.375rem;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    color: var(--gray-900);
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
}

.form-group input::placeholder {
    color: var(--gray-400);
}

.form-note {
    font-size: 0.75rem;
    color: var(--gray-400);
    text-align: center;
    margin-top: 1rem;
}

.form-note a {
    color: var(--primary);
    text-decoration: underline;
}

/* Success Message */
.success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeIn 0.4s ease-in-out;
}

.success-icon {
    width: 64px;
    height: 64px;
    color: var(--green);
    margin-bottom: 1.25rem;
}

.success-title {
    font-size: 1.5rem;
    font-weight: 650;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.btn-telegram-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    margin-top: 1.5rem;
    background: linear-gradient(135deg, #29B6F6 0%, #0288D1 100%);
    color: var(--white);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all 0.2s;
    box-shadow: 0 4px 12px rgba(41, 182, 246, 0.3);
}

.btn-telegram-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(41, 182, 246, 0.4);
}

.btn-telegram-contact svg {
    flex-shrink: 0;
}

/* Spin Animation */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.animate-spin {
    animation: spin 1s linear infinite;
}

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

/* Footer */
.footer {
    background-color: var(--gray-900);
    color: var(--gray-300);
    padding: 3.5rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand .accent {
    color: #818cf8;
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    font-size: 0.875rem;
    color: var(--gray-400);
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #818cf8;
}

.footer-contacts ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-contacts li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
}

.footer-contacts svg {
    flex-shrink: 0;
    color: #818cf8;
    margin-top: 2px;
}

.footer-bottom {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    font-size: 0.875rem;
    color: var(--gray-500);
}

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

.footer-links a {
    color: var(--gray-500);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #818cf8;
}

/* Responsive */
@media (min-width: 640px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero-buttons {
        flex-direction: row;
    }
    
    .form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .earnings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stats-grid-new {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) {
    h1 {
        font-size: 3.5rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .nav {
        display: flex;
    }
    
    .mobile-menu-btn {
        display: none;
    }
    
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-text {
        flex: 1;
        text-align: left;
    }
    
    .hero-description {
        margin: 0 0 2rem;
    }
    
    .hero-buttons {
        justify-content: flex-start;
    }
    
    .hero-features {
        justify-content: flex-start;
    }
    
    .hero-image {
        flex: 1;
    }
    
    .steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: 2fr 1fr 1.5fr;
    }
    
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .form-card {
        padding: 2.5rem;
    }
}

@media (min-width: 1024px) {
    h1 {
        font-size: 4rem;
    }
    
    .steps-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .earnings-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Legal Pages */
.legal-page {
    padding: 7rem 0 4rem;
}

.legal-page h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.legal-date {
    color: var(--gray-500);
    margin-bottom: 2.5rem;
}

.legal-section {
    margin-bottom: 2rem;
}

.legal-section h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.legal-section p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

.legal-section li {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 0.5rem;
    list-style-type: disc;
}

/* Mobile Menu Active State */
.nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background-color: var(--white);
    padding: 1rem;
    border-bottom: 1px solid var(--gray-200);
    box-shadow: var(--shadow-lg);
}

.nav.active a {
    padding: 0.75rem 0;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

@media (min-width: 768px) {
    .nav.active {
        position: static;
        flex-direction: row;
        padding: 0;
        border-bottom: none;
        box-shadow: none;
    }
    
    .legal-page h1 {
        font-size: 2.5rem;
    }
}

/* Telegram Reviews Card */
.telegram-reviews-card {
    max-width: 480px;
    margin: 0 auto;
    padding: 3rem 2.5rem;
    background-color: var(--white);
    border-radius: var(--radius-2xl);
    text-align: center;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.telegram-icon {
    margin-bottom: 1.5rem;
}

.telegram-icon svg {
    filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.2));
}

.telegram-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.telegram-description {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.btn-telegram {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    padding: 1rem 2rem;
    background-color: var(--primary);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all 0.2s;
}

.btn-telegram:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.btn-telegram svg {
    flex-shrink: 0;
}

.btn-telegram-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    margin-top: 1.25rem;
    background-color: #29B6F6;
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: all 0.2s;
}

.btn-telegram-footer:hover {
    background-color: #0288D1;
}

.btn-telegram-footer svg {
    flex-shrink: 0;
}
