/* [SITESECTION:1:variables] */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Rubik:wght@400;500;600;700&display=swap');

:root {
    --primary: #1a6b4a;
    --primary-dark: #0d3b28;
    --primary-light: #2d8f66;
    --secondary: #c8a84e;
    --accent: #f0d78c;
    --bg-dark: #0a1a14;
    --bg-card: #111f19;
    --bg-deep: #0a1a14;
    --bg-light: #f8faf9;
    --text-primary: #e8efe9;
    --text-muted: #8fa898;
    --text-dark: #1a2e24;
    --gradient-1: linear-gradient(180deg, #0d3b28, #1a6b4a);
    --gradient-2: linear-gradient(135deg, #1a6b4a, #c8a84e);
    --gradient-gold: linear-gradient(135deg, #c8a84e, #f0d78c);
    --gradient-dark: linear-gradient(180deg, #0a1a14, #0d2a1e);
    --border-radius: 12px;
    --border-radius-lg: 16px;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 0 25px rgba(200, 168, 78, 0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-dark);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

a {
    color: var(--secondary);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--accent);
}

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

ul {
    list-style: none;
}
/* [/SITESECTION:1] */

/* [SITESECTION:2:layout] */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.section-title i {
    color: var(--secondary);
    margin-right: 10px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: var(--gradient-2);
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 48px;
    touch-action: manipulation;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(200, 168, 78, 0.3);
    color: #fff;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    background: transparent;
    color: var(--secondary);
    font-weight: 600;
    font-size: 1rem;
    border: 2px solid var(--secondary);
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    min-height: 48px;
    touch-action: manipulation;
}

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

.required {
    color: #e74c3c;
    font-weight: 700;
}

.section-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 80px;
    z-index: 10;
    pointer-events: none;
    transform: none !important;
}

.section-divider svg {
    display: block;
    width: 100%;
    height: 100%;
}

.telegram-gate {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-dark);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.telegram-gate.active {
    display: flex;
}

.telegram-gate-content {
    text-align: center;
    padding: 40px;
}

.telegram-gate-content i {
    font-size: 4rem;
    color: #26A5E4;
    margin-bottom: 20px;
}

.telegram-gate-content h2 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.telegram-gate-content p {
    color: var(--text-muted);
    margin-bottom: 20px;
}

.telegram-gate-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: #26A5E4;
    color: #fff;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
}

.telegram-gate-btn:hover {
    background: #1d8fc4;
    color: #fff;
}

.app-wrapper {
    min-height: 100vh;
}
/* [/SITESECTION:2] */

/* [SITESECTION:3:header] */
.app-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 26, 20, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 168, 78, 0.1);
    transition: var(--transition);
}

.app-header.scrolled {
    background: rgba(10, 26, 20, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--text-primary);
}

.header-logo i {
    color: var(--secondary);
    font-size: 1.5rem;
}

.header-nav ul {
    display: flex;
    gap: 24px;
}

.header-nav a {
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.header-nav a:hover,
.header-nav a.active {
    color: var(--secondary);
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: var(--transition);
}

.header-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header-tg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(38, 165, 228, 0.15);
    color: #26A5E4;
    font-size: 1.1rem;
    transition: var(--transition);
}

.header-tg-btn:hover {
    background: #26A5E4;
    color: #fff;
    transform: scale(1.1);
}

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

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}
/* [/SITESECTION:3] */

/* [SITESECTION:4:hero] */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 100px;
    background: var(--gradient-dark);
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    top: -25%;
    left: -25%;
    width: 150%;
    height: 150%;
    opacity: 0.04;
    background-image:
        repeating-linear-gradient(0deg, transparent, transparent 40px, rgba(200, 168, 78, 0.3) 40px, rgba(200, 168, 78, 0.3) 41px),
        repeating-linear-gradient(90deg, transparent, transparent 40px, rgba(200, 168, 78, 0.3) 40px, rgba(200, 168, 78, 0.3) 41px),
        repeating-linear-gradient(45deg, transparent, transparent 56px, rgba(200, 168, 78, 0.2) 56px, rgba(200, 168, 78, 0.2) 57px),
        repeating-linear-gradient(-45deg, transparent, transparent 56px, rgba(200, 168, 78, 0.2) 56px, rgba(200, 168, 78, 0.2) 57px);
    animation: pattern-breathe 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pattern-breathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.06); }
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(200, 168, 78, 0.12);
    border: 1px solid rgba(200, 168, 78, 0.3);
    border-radius: 50px;
    color: var(--secondary);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}

.hero-user-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 32px;
    padding: 16px 24px;
    background: rgba(17, 31, 25, 0.8);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: var(--border-radius);
    display: inline-flex;
}

.user-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.user-details {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.user-name {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-primary);
}

.user-id {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-cta {
    animation: subtle-pulse 2s infinite;
}

.btn-cta:hover {
    animation-play-state: paused;
}

@keyframes subtle-pulse {
    0% { box-shadow: 0 0 0 0 rgba(200, 168, 78, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(200, 168, 78, 0); }
    100% { box-shadow: 0 0 0 0 rgba(200, 168, 78, 0); }
}
/* [/SITESECTION:4] */

/* [SITESECTION:5:sections] */
.profile-section {
    position: relative;
    padding: 80px 0 100px;
    background: var(--bg-card);
}

.finance-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.finance-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px;
    background: rgba(10, 26, 20, 0.6);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.finance-card:hover {
    border-color: rgba(200, 168, 78, 0.4);
    box-shadow: var(--shadow-gold), var(--shadow-md);
}

.finance-card-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.balance-card .finance-card-icon {
    background: rgba(26, 107, 74, 0.2);
    color: var(--primary-light);
}

.deposit-card .finance-card-icon {
    background: rgba(200, 168, 78, 0.15);
    color: var(--secondary);
}

.finance-card-body {
    display: flex;
    flex-direction: column;
}

.finance-label {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.finance-value {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.finance-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 4px;
}

.finance-note i {
    margin-right: 4px;
    color: var(--secondary);
}

.tg-buttons-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.tg-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    min-height: 48px;
    text-decoration: none;
}

.channel-btn {
    background: rgba(38, 165, 228, 0.12);
    color: #26A5E4;
    border: 1px solid rgba(38, 165, 228, 0.3);
}

.channel-btn:hover {
    background: #26A5E4;
    color: #fff;
    transform: translateY(-2px);
}

.support-btn {
    background: rgba(200, 168, 78, 0.12);
    color: var(--secondary);
    border: 1px solid rgba(200, 168, 78, 0.3);
}

.support-btn:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    transform: translateY(-2px);
}

.levels-section {
    position: relative;
    padding: 80px 0 100px;
    background: var(--gradient-dark);
}

.levels-grid {
    display: grid;
    gap: 16px;
    max-width: 700px;
    margin: 0 auto;
}

.level-card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: var(--bg-card);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.level-card:hover {
    border-color: rgba(200, 168, 78, 0.4);
    box-shadow: var(--shadow-gold);
}

.level-range {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-primary);
    min-width: 140px;
}

.level-percent {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    min-width: 50px;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.level-bar {
    flex: 1;
    height: 8px;
    background: rgba(200, 168, 78, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.level-bar-fill {
    height: 100%;
    background: var(--gradient-2);
    border-radius: 4px;
    width: 0;
    transition: width 0.8s ease-out;
}

.level-bar-fill.animate {
    width: var(--target-width);
}

.stats-section {
    position: relative;
    padding: 80px 0 100px;
    background: var(--bg-card);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    text-align: center;
    padding: 28px 20px;
    background: rgba(10, 26, 20, 0.6);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
}

.stat-card:hover {
    border-color: rgba(200, 168, 78, 0.4);
    box-shadow: var(--shadow-gold);
}

.stat-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(200, 168, 78, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
    font-size: 1.3rem;
    color: var(--secondary);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    font-variant-numeric: tabular-nums;
    min-width: 100px;
    display: inline-block;
    text-align: center;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 6px;
}

.chart-card {
    background: rgba(10, 26, 20, 0.6);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 24px;
}

.chart-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.chart-title i {
    color: var(--secondary);
    margin-right: 8px;
}

.chart-container {
    position: relative;
}

.activity-chart {
    width: 100%;
    height: 200px;
}

.chart-line {
    stroke-dasharray: 1200;
    stroke-dashoffset: 1200;
    transition: stroke-dashoffset 2s ease-out;
}

.chart-line.animate {
    stroke-dashoffset: 0;
}

.chart-dot {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.chart-dot.animate {
    opacity: 1;
}

.chart-labels {
    display: flex;
    justify-content: space-between;
    padding: 10px 0 0;
}

.chart-labels span {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.operations-section {
    position: relative;
    padding: 80px 0 100px;
    background: var(--gradient-dark);
}

.operations-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.operation-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(200, 168, 78, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
    cursor: pointer;
}

.operation-card:hover {
    border-color: rgba(200, 168, 78, 0.35);
    box-shadow: var(--shadow-gold);
}

.operation-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.operation-icon.completed {
    background: rgba(45, 143, 102, 0.15);
    color: var(--primary-light);
}

.operation-icon.pending {
    background: rgba(200, 168, 78, 0.15);
    color: var(--secondary);
}

.operation-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.operation-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.operation-date {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.operation-amount {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-light);
    font-variant-numeric: tabular-nums;
}

.operation-status {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
}

.status-completed {
    background: rgba(45, 143, 102, 0.15);
    color: var(--primary-light);
}

.status-pending {
    background: rgba(200, 168, 78, 0.15);
    color: var(--secondary);
}

.about-section {
    position: relative;
    padding: 80px 0 100px;
    background: var(--bg-card);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about-card {
    text-align: center;
    padding: 32px 24px;
    background: rgba(10, 26, 20, 0.6);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    position: relative;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-2);
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
    opacity: 0;
    transition: var(--transition);
}

.about-card:hover {
    border-color: rgba(200, 168, 78, 0.4);
    box-shadow: var(--shadow-gold), var(--shadow-md);
    transform: translateY(-4px);
}

.about-card:hover::after {
    opacity: 1;
}

.about-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200, 168, 78, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 1.5rem;
    color: var(--secondary);
    transition: var(--transition);
}

.about-card:hover .about-card-icon {
    background: var(--secondary);
    color: var(--bg-dark);
    transform: scale(1.1);
}

.about-card h3 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.about-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.faq-section {
    position: relative;
    padding: 80px 0 100px;
    background: var(--gradient-dark);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid rgba(200, 168, 78, 0.1);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: rgba(200, 168, 78, 0.3);
}

.faq-item.active {
    border-color: rgba(200, 168, 78, 0.4);
    box-shadow: var(--shadow-gold);
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--secondary);
}

.faq-question i {
    color: var(--secondary);
    transition: transform 0.3s ease;
    font-size: 0.8rem;
}

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

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 20px 18px;
}

.faq-answer p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
}

.faq-answer a {
    color: var(--secondary);
}

.testimonials-section {
    position: relative;
    padding: 80px 0 100px;
    background: var(--bg-card);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    padding: 28px 24px;
    background: rgba(10, 26, 20, 0.6);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: var(--border-radius-lg);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-color: rgba(200, 168, 78, 0.4);
    box-shadow: var(--shadow-gold), var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-quote {
    color: var(--secondary);
    font-size: 1.5rem;
    margin-bottom: 12px;
    opacity: 0.6;
}

.testimonial-stars {
    margin-bottom: 14px;
}

.testimonial-stars i {
    color: var(--secondary);
    font-size: 0.9rem;
    margin-right: 2px;
}

.testimonial-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
}

.testimonial-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(200, 168, 78, 0.3);
}

.testimonial-author-info {
    display: flex;
    flex-direction: column;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.75rem;
    color: var(--text-muted);
}
/* [/SITESECTION:5] */

/* [SITESECTION:6:contact] */
.contact-section {
    position: relative;
    padding: 80px 0 60px;
    background: var(--gradient-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid rgba(200, 168, 78, 0.1);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.contact-item:hover {
    border-color: rgba(200, 168, 78, 0.3);
}

.contact-item > i {
    font-size: 1.3rem;
    color: var(--secondary);
    width: 40px;
    text-align: center;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.contact-item a,
.contact-item span {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.contact-item a:hover {
    color: var(--secondary);
}

.contact-social {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(38, 165, 228, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #26A5E4;
    font-size: 1.2rem;
    transition: var(--transition);
}

.social-link:hover {
    background: #26A5E4;
    color: #fff;
    transform: scale(1.1);
}

.contact-form-block {
    background: var(--bg-card);
    border: 1px solid rgba(200, 168, 78, 0.12);
    border-radius: var(--border-radius-lg);
    padding: 30px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
}

.form-group label i {
    margin-right: 6px;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    background: rgba(10, 26, 20, 0.8);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    margin-top: 8px;
}

.captcha-group {
    display: flex;
    align-items: center;
    gap: 10px;
    margin: 5px 0;
}

.captcha-group img {
    height: 50px;
    border-radius: var(--border-radius);
    flex-shrink: 0;
    border: 1px solid rgba(200, 168, 78, 0.15);
}

.captcha-group input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(10, 26, 20, 0.8);
    border: 1px solid rgba(200, 168, 78, 0.15);
    border-radius: var(--border-radius);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
    outline: none;
}

.captcha-group input:focus {
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.1);
}

.captcha-group input::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.captcha-refresh-btn {
    background: rgba(200, 168, 78, 0.12);
    border: 1px solid rgba(200, 168, 78, 0.2);
    color: var(--secondary);
    cursor: pointer;
    font-size: 1.3rem;
    padding: 10px 14px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    line-height: 1;
}

.captcha-refresh-btn:hover {
    background: var(--secondary);
    color: var(--bg-dark);
}

.consent-group {
    display: flex;
    align-items: flex-start;
    margin: 5px 0;
    padding: 5px 0;
}

.consent-group label {
    display: flex;
    gap: 8px;
    cursor: pointer;
    font-size: 0.85rem;
    line-height: 1.4;
    color: var(--text-muted);
    align-items: center;
}

.consent-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--secondary);
    flex-shrink: 0;
}
/* [/SITESECTION:6] */

/* [SITESECTION:7:footer] */
.app-footer {
    background: #060f0b;
    border-top: 1px solid rgba(200, 168, 78, 0.1);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Rubik', sans-serif;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer-logo i {
    color: var(--secondary);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.6;
}

.footer-nav h4,
.footer-contacts h4 {
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 16px;
}

.footer-nav ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-nav a {
    color: var(--text-muted);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-nav a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.footer-contacts ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contacts a {
    color: var(--text-muted);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-contacts a:hover {
    color: var(--secondary);
}

.footer-contacts a i {
    color: var(--secondary);
    width: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(38, 165, 228, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #26A5E4;
    font-size: 1rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: #26A5E4;
    color: #fff;
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(200, 168, 78, 0.08);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.8rem;
}
/* [/SITESECTION:7] */

/* [SITESECTION:8:components] */
.toast-notification {
    position: fixed;
    top: 20px;
    right: -350px;
    z-index: 9999;
    padding: 15px 20px;
    border-radius: var(--border-radius);
    color: white;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    max-width: 300px;
    transition: right 0.3s ease-out;
    font-size: 0.9rem;
}

.toast-notification.show {
    right: 20px;
}

.toast-notification.success {
    background: #28a745;
}

.toast-notification.error {
    background: #dc3545;
}

.demo-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.demo-modal.active {
    display: flex;
}

.demo-modal-content {
    background: var(--bg-card);
    border: 1px solid rgba(200, 168, 78, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 40px;
    text-align: center;
    max-width: 380px;
    width: 90%;
    position: relative;
    animation: modalAppear 0.3s ease;
}

@keyframes modalAppear {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.demo-modal-close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.demo-modal-close:hover {
    color: var(--secondary);
}

.demo-modal-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(200, 168, 78, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--secondary);
}

.demo-modal-content h3 {
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.demo-modal-content p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.demo-modal-btn {
    width: 100%;
}

.scroll-top-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-dark);
    border: 2px solid var(--secondary);
    color: var(--secondary);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    background: var(--secondary);
    color: var(--bg-dark);
    transform: translateY(-3px);
}

.site-modal {
    backdrop-filter: blur(4px);
}

.site-modal .modal-content {
    color: #333;
}

.site-modal .modal-content h2 {
    color: #1a2e24;
    margin-bottom: 20px;
}

.site-modal .modal-content h3 {
    color: #1a2e24;
    margin: 20px 0 10px;
    font-size: 1.1rem;
}

.site-modal .modal-content p {
    color: #444;
    line-height: 1.7;
    margin-bottom: 10px;
}
/* [/SITESECTION:8] */

/* [SITESECTION:9:animations] */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animate {
    opacity: 1;
    transform: translateY(0);
}

.no-js .animate-on-scroll {
    opacity: 1;
    transform: none;
}

.fade-in {
    animation: fadeIn 0.6s ease forwards;
}

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

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

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}
/* [/SITESECTION:9] */

/* [SITESECTION:10:responsive] */
@media (max-width: 992px) {
    .header-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(10, 26, 20, 0.98);
        backdrop-filter: blur(12px);
        padding: 80px 30px 30px;
        transition: right 0.3s ease;
        z-index: 999;
        border-left: 1px solid rgba(200, 168, 78, 0.15);
    }

    .header-nav.active {
        right: 0;
    }

    .header-nav ul {
        flex-direction: column;
        gap: 20px;
    }

    .header-nav a {
        font-size: 1.1rem;
    }

    .hamburger {
        display: flex;
    }

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

    .footer-brand {
        grid-column: 1 / -1;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }

    .hero-section {
        padding: 100px 0 80px;
        min-height: auto;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

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

    .hero-buttons .btn-primary,
    .hero-buttons .btn-secondary {
        width: 100%;
        max-width: 280px;
    }

    .finance-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .level-card {
        flex-wrap: wrap;
        gap: 10px;
    }

    .level-range {
        min-width: auto;
        flex: 1;
    }

    .level-bar {
        width: 100%;
        order: 3;
    }

    .operation-card {
        flex-wrap: wrap;
        gap: 10px;
    }

    .operation-amount {
        margin-left: auto;
    }

    .operation-status {
        width: 100%;
        text-align: center;
        order: 4;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .section-divider {
        height: 50px;
    }

    .contact-form-block {
        padding: 20px;
    }

    .captcha-group {
        flex-direction: column;
        align-items: stretch;
    }

    .captcha-group img {
        align-self: center;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    .hero-section {
        padding: 90px 0 70px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .hero-badge {
        font-size: 0.75rem;
        padding: 6px 14px;
    }

    .hero-user-info {
        padding: 12px 16px;
        gap: 10px;
    }

    .finance-value {
        font-size: 1.4rem;
    }

    .stat-number {
        font-size: 1.2rem;
        min-width: 80px;
    }

    .profile-section,
    .levels-section,
    .stats-section,
    .operations-section,
    .about-section,
    .faq-section,
    .testimonials-section,
    .contact-section {
        padding: 60px 0 80px;
    }

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

    .tg-action-btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .scroll-top-btn {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }

    .section-divider {
        height: 40px;
    }

    .chart-card {
        padding: 16px;
    }

    .activity-chart {
        height: 150px;
    }
}

@media (max-width: 360px) {
    .hero-pattern {
        display: none;
    }

    .hero-content h1 {
        font-size: 1.6rem;
    }

    .finance-card {
        padding: 16px;
    }

    .finance-card-icon {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
    }

    .finance-value {
        font-size: 1.2rem;
    }
}

@media (max-width: 576px) {
    .toast-notification {
        right: -100%;
        left: auto;
        max-width: calc(100% - 40px);
    }

    .toast-notification.show {
        right: 20px;
    }
}
/* [/SITESECTION:10] */