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

:root {
    --primary: #f7931a;
    --primary-dark: #d87915;
    --secondary: #4a5568;
    --dark: #1a202c;
    --light: #f7fafc;
    --gray: #edf2f7;
    --success: #48bb78;
    --danger: #f56565;
    --border: #e2e8f0;
}

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

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

/* Buttons */
.btn-primary, .btn-secondary {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background: var(--gray);
}

/* Header */
header {
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo h1 {
    font-size: 24px;
    color: var(--primary);
}

nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 100px 0;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero .lead {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

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

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

.stat-card {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stat-card h3 {
    font-size: 36px;
    margin-bottom: 10px;
}

.stat-card p {
    opacity: 0.8;
}

/* Local Notice */
.local-notice {
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 10px;
    margin-top: 40px;
}

.local-notice p {
    margin: 5px 0;
}

/* Section */
.section {
    padding: 80px 0;
}

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

.section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.section-subtitle {
    text-align: center;
    color: var(--secondary);
    margin-top: -30px;
    margin-bottom: 50px;
}

/* Steps */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step {
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    margin-bottom: 15px;
}

.step p {
    color: var(--secondary);
}

/* Pricing */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: 0 5px 20px rgba(247, 147, 26, 0.2);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.price {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 10px;
}

.currency {
    font-size: 24px;
    margin-top: 5px;
}

.amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary);
}

.price-note {
    color: var(--success);
    font-size: 14px;
    margin-bottom: 30px;
}

.features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.features li:last-child {
    border-bottom: none;
}

.disclaimer {
    text-align: center;
    color: var(--secondary);
    font-size: 14px;
    font-style: italic;
}

/* Contact */
.contact-content {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-card {
    background: white;
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 40px;
    text-align: center;
}

.contact-card h3 {
    margin-bottom: 20px;
}

.telegram-link {
    display: inline-block;
    background: #0088cc;
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    margin: 20px 0;
    transition: background 0.3s;
}

.telegram-link:hover {
    background: #006ba1;
}

.contact-note {
    color: var(--secondary);
    font-size: 14px;
}

/* Footer */
footer {
    background: var(--dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3, .footer-section h4 {
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

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

.local-badge {
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 8px;
    margin-top: 20px;
}

.local-badge strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
}

.compliance-flags {
    margin: 20px 0;
}

.flag-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 10px 0;
}

.flag {
    font-size: 32px;
}

.compliance-note {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    margin-top: 15px;
    line-height: 1.5;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    margin: 10px 0;
}

.footer-disclaimer {
    font-size: 13px;
    max-width: 800px;
    margin: 15px auto 0;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 32px;
    }

    .hero-stats,
    .steps,
    .pricing-grid,
    .contact-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    nav {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
    }
}
