/* Основные стили CS2 темы */
:root {
    --cs2-primary: #e62424;
    --cs2-primary-dark: #b81c1c;
    --cs2-secondary: #1e1e1e;
    --cs2-dark: #121212;
    --cs2-gray: #2a2a2a;
    --cs2-light: #f5f5f5;
    --cs2-accent: #ffcc00;
    --cs2-blue: #4a90e2;
    --cs2-gradient: linear-gradient(135deg, #e62424 0%, #ff6b6b 100%);
    --cs2-gradient-dark: linear-gradient(135deg, #121212 0%, #2a2a2a 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oxanium', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

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

section {
    padding: 80px 0;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--cs2-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.cs2-loader {
    text-align: center;
}

.loader-bar {
    width: 300px;
    height: 4px;
    background: var(--cs2-gray);
    border-radius: 2px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.loader-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30%;
    background: var(--cs2-gradient);
    border-radius: 2px;
    animation: loading 2s infinite ease-in-out;
}

.loader-text {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.2rem;
    color: var(--cs2-light);
    letter-spacing: 2px;
}

/* Анимированный логотип */
.logo-animated {
    position: relative;
    width: 180px;
    height: 60px;
}

.logo-circle {
    width: 180px;
    height: 60px;
    background: linear-gradient(90deg, var(--cs2-dark) 0%, var(--cs2-secondary) 100%);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--cs2-gray);
    transition: var(--transition);
}

.logo-circle::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--cs2-gradient);
    border-radius: 32px;
    z-index: -1;
    animation: rotate 3s linear infinite;
}

.logo-circle:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(230, 36, 36, 0.2);
}

.logo-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 20px;
    z-index: 2;
}

.logo-text {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cs2-light);
    letter-spacing: 1px;
}

.logo-accent {
    font-family: 'Oxanium', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--cs2-primary);
    text-shadow: 0 0 10px rgba(230, 36, 36, 0.5);
    letter-spacing: 1px;
}

.logo-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.logo-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--cs2-primary);
    border-radius: 50%;
    animation: floatParticle 3s infinite ease-in-out;
}

.logo-particles .particle:nth-child(1) {
    top: 10px;
    left: 20px;
    animation-delay: 0s;
}

.logo-particles .particle:nth-child(2) {
    top: 15px;
    right: 30px;
    animation-delay: 0.5s;
}

.logo-particles .particle:nth-child(3) {
    bottom: 10px;
    left: 40px;
    animation-delay: 1s;
}

.logo-particles .particle:nth-child(4) {
    bottom: 15px;
    right: 20px;
    animation-delay: 1.5s;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(230, 36, 36, 0.2);
    padding: 15px 0;
    transition: var(--transition);
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-link {
    color: var(--cs2-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    padding: 10px 20px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: var(--cs2-primary);
    background: rgba(230, 36, 36, 0.1);
}

.nav-link.active {
    color: var(--cs2-primary);
    background: rgba(230, 36, 36, 0.1);
}

.nav-cta {
    background: var(--cs2-gradient);
    color: white;
    padding: 12px 24px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow);
    color: white;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--cs2-light);
    border-radius: 2px;
    transition: var(--transition);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    background: url('../images/bg/hero-bg.jpg') no-repeat center center/cover;
    position: relative;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.85);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.gradient-text {
    background: var(--cs2-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.hero-subtitle {
    font-size: 1.8rem;
    color: var(--cs2-accent);
    margin-bottom: 20px;
    font-weight: 600;
}

.typing-effect {
    overflow: hidden;
    white-space: nowrap;
    border-right: 3px solid var(--cs2-primary);
    width: 0;
    animation: typing 3.5s steps(40, end) forwards, blink-caret 0.75s step-end infinite;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid rgba(230, 36, 36, 0.1);
    transition: var(--transition);
}

.stat-item:hover {
    border-color: var(--cs2-primary);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--cs2-primary);
    margin-bottom: 5px;
    font-family: 'Oxanium', sans-serif;
    line-height: 1;
}

.stat-text {
    font-size: 1rem;
    opacity: 0.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    padding: 16px 32px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: var(--transition);
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--cs2-gradient);
    color: white;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}

.btn-secondary {
    background: transparent;
    color: var(--cs2-light);
    border: 2px solid var(--cs2-gray);
}

.btn-secondary:hover {
    border-color: var(--cs2-primary);
    color: var(--cs2-primary);
    transform: translateY(-3px);
}

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

.btn-large {
    padding: 20px 45px;
    font-size: 1.1rem;
}

.btn-glow {
    box-shadow: 0 0 20px rgba(230, 36, 36, 0.5);
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

.hero-rank-showcase {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rank-card {
    background: rgba(42, 42, 42, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--border-radius);
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    width: 280px;
    transition: var(--transition);
    border: 1px solid transparent;
    opacity: 0;
    transform: translateX(50px);
}

.rank-card:hover {
    transform: translateX(-10px);
    border-color: var(--cs2-primary);
}

.rank-card img {
    width: 70px;
    height: 70px;
    object-fit: contain;
}

.rank-info {
    flex: 1;
}

.rank-name {
    font-weight: 600;
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.rank-price {
    color: var(--cs2-accent);
    font-weight: 600;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--cs2-light);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--cs2-light);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

.arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--cs2-light);
    border-bottom: 2px solid var(--cs2-light);
    transform: rotate(45deg);
    margin: 0 auto;
    animation: arrow 2s infinite;
}

/* Process Section */
.process-section {
    background: var(--cs2-gradient-dark);
    position: relative;
    overflow: hidden;
}

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

.section-title {
    font-size: 3.2rem;
    margin-bottom: 15px;
}

.section-subtitle {
    font-size: 1.3rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.process-step {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.process-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cs2-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step:hover::before {
    transform: scaleX(1);
}

.process-step:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--cs2-primary);
}

.step-number {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 3rem;
    font-weight: 800;
    color: rgba(230, 36, 36, 0.1);
    font-family: 'Oxanium', sans-serif;
    line-height: 1;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: rgba(230, 36, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--cs2-primary);
    transition: var(--transition);
}

.process-step:hover .step-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--cs2-gradient);
    color: white;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.step-description {
    opacity: 0.8;
    line-height: 1.6;
}

/* Requirements Section */
.requirements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.requirement-card {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
    opacity: 0;
    transform: translateY(30px);
}

.requirement-card:hover {
    transform: translateY(-10px);
    border-color: var(--cs2-primary);
    box-shadow: var(--shadow);
}

.requirement-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 36, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--cs2-primary);
    transition: var(--transition);
}

.requirement-card:hover .requirement-icon {
    transform: scale(1.1);
    background: var(--cs2-gradient);
    color: white;
}

.requirement-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.requirement-description {
    opacity: 0.8;
    line-height: 1.6;
}

/* Services Section */
.services-section {
    background: var(--cs2-dark);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--cs2-gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--cs2-primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 36, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--cs2-primary);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.service-description {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    opacity: 0.8;
}

.service-features i {
    color: var(--cs2-primary);
    font-size: 0.9rem;
}

.service-link {
    color: var(--cs2-primary);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: var(--transition);
}

.service-link:hover {
    gap: 10px;
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Guarantees Section */
.guarantees-section {
    background: var(--cs2-gradient-dark);
}

.guarantees-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.guarantee-card {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
    opacity: 0;
    transform: translateY(30px);
}

.guarantee-card:hover {
    transform: translateY(-10px);
    border-color: var(--cs2-primary);
    box-shadow: var(--shadow);
}

.guarantee-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 36, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    color: var(--cs2-primary);
    transition: var(--transition);
}

.guarantee-card:hover .guarantee-icon {
    transform: scale(1.1);
    background: var(--cs2-gradient);
    color: white;
}

.guarantee-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.guarantee-description {
    opacity: 0.8;
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: url('../images/bg/cta-bg.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.9);
}

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

.cta-title {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    padding: 150px 0 80px;
    background: var(--cs2-gradient-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-title {
    font-size: 4rem;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 1.5rem;
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
}

/* Service Navigation */
.service-navigation {
    background: var(--cs2-secondary);
    padding: 20px 0;
    position: sticky;
    top: 80px;
    z-index: 999;
    border-bottom: 1px solid var(--cs2-gray);
}

.service-nav-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.service-nav-link {
    padding: 12px 24px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: var(--border-radius);
    color: var(--cs2-light);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-nav-link:hover {
    background: var(--cs2-secondary);
    border-color: var(--cs2-primary);
    color: var(--cs2-primary);
}

/* Service Detail Sections */
.service-detail-section {
    padding: 100px 0;
}

.service-detail-section.service-alt {
    background: var(--cs2-gradient-dark);
}

.service-detail-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 50px;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: var(--cs2-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.service-detail-title h2 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.service-detail-title p {
    font-size: 1.3rem;
    opacity: 0.8;
}

.service-detail-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.service-detail-text h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--cs2-light);
}

.service-detail-text p {
    margin-bottom: 25px;
    line-height: 1.7;
    font-size: 1.1rem;
    opacity: 0.9;
}

.service-info-box {
    background: rgba(230, 36, 36, 0.05);
    border-left: 4px solid var(--cs2-primary);
    padding: 25px;
    margin: 30px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.service-info-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.process-list {
    list-style: decimal;
    padding-left: 20px;
}

.process-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 25px 0;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid var(--cs2-gray);
    transition: var(--transition);
}

.advantage-item:hover {
    border-color: var(--cs2-primary);
    transform: translateY(-3px);
}

.advantage-item i {
    color: var(--cs2-primary);
}

.requirements-list {
    list-style: none;
    margin: 25px 0;
}

.requirements-list li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}

.requirements-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--cs2-primary);
    font-weight: bold;
}

.time-estimation {
    background: rgba(74, 144, 226, 0.05);
    border-left: 4px solid var(--cs2-blue);
    padding: 20px;
    margin: 30px 0;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
}

.time-estimation h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.service-detail-sidebar {
    position: sticky;
    top: 150px;
}

.price-box {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--cs2-gray);
    box-shadow: var(--shadow);
}

.price-box h4 {
    font-size: 1.5rem;
    margin-bottom: 25px;
    color: var(--cs2-light);
    text-align: center;
}

.price-table {
    margin-bottom: 25px;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid var(--cs2-gray);
}

.price-row:last-child {
    border-bottom: none;
}

.price-row .price {
    color: var(--cs2-accent);
    font-weight: 600;
    font-size: 1.2rem;
}

.price-note {
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
    margin-top: 15px;
}

.info-box {
    background: rgba(42, 42, 42, 0.5);
    border-radius: var(--border-radius);
    padding: 20px;
    margin-top: 20px;
    border: 1px solid var(--cs2-gray);
}

.info-box h5 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--cs2-light);
}

.info-box.warning {
    border-color: #ffcc00;
    background: rgba(255, 204, 0, 0.05);
}

.info-box.warning h5 {
    color: #ffcc00;
}

/* Ranks Showcase */
.ranks-showcase {
    margin: 30px 0;
}

.ranks-showcase h4 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--cs2-light);
}

.ranks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
}

.rank-item {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 15px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
}

.rank-item:hover {
    border-color: var(--cs2-primary);
    transform: translateY(-5px);
}

.rank-item img {
    width: 60px;
    height: 60px;
    object-fit: contain;
    margin-bottom: 10px;
}

.rank-item span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Features List */
.features-list {
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding: 20px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: var(--border-radius);
    border: 1px solid transparent;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: var(--cs2-primary);
}

.feature-item i {
    font-size: 2rem;
    color: var(--cs2-primary);
    margin-top: 5px;
}

.feature-item h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--cs2-light);
}

.feature-item p {
    opacity: 0.8;
    line-height: 1.6;
}

.numbered-list {
    list-style: decimal;
    padding-left: 20px;
    margin: 25px 0;
}

.numbered-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
    padding-left: 10px;
}

/* Rating System */
.rating-system {
    margin: 30px 0;
}

.rating-system h4 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--cs2-light);
}

.rating-levels {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.rating-level {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--cs2-gray);
    transition: var(--transition);
}

.rating-level:hover {
    border-color: var(--cs2-primary);
    transform: translateX(5px);
}

.level-name {
    font-weight: 600;
    color: var(--cs2-light);
}

.level-desc {
    opacity: 0.8;
}

/* Process Details */
.process-details {
    margin: 30px 0;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 25px;
    border-bottom: 1px solid var(--cs2-gray);
}

.process-step:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.process-step .step-number {
    position: static;
    width: 40px;
    height: 40px;
    background: var(--cs2-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 600;
    flex-shrink: 0;
}

.step-content h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--cs2-light);
}

.step-content p {
    opacity: 0.8;
    line-height: 1.6;
}

/* Medals Showcase */
.medals-showcase {
    margin: 30px 0;
}

.medals-showcase h4 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: var(--cs2-light);
}

.medals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.medal-item {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 20px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
}

.medal-item:hover {
    border-color: var(--cs2-primary);
    transform: translateY(-5px);
}

.medal-icon {
    width: 60px;
    height: 60px;
    background: var(--cs2-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-family: 'Oxanium', sans-serif;
    font-weight: 800;
    font-size: 1.5rem;
    color: white;
}

.medal-item span {
    display: block;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Features Check */
.features-check {
    list-style: none;
    margin: 25px 0;
}

.features-check li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 5px;
}

.features-check i {
    color: var(--cs2-primary);
}

/* Price Calculation Section */
.price-calculation-section {
    background: var(--cs2-gradient-dark);
    padding: 100px 0;
}

.price-calculator {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 50px;
    border: 1px solid var(--cs2-gray);
    box-shadow: var(--shadow);
}

.calculator-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 50px;
}

.calculator-step {
    background: rgba(42, 42, 42, 0.5);
    border-radius: var(--border-radius);
    padding: 25px;
    text-align: center;
    border: 2px solid var(--cs2-gray);
    transition: var(--transition);
    opacity: 0.6;
}

.calculator-step.active {
    border-color: var(--cs2-primary);
    opacity: 1;
    transform: translateY(-5px);
}

.calculator-step .step-number {
    width: 50px;
    height: 50px;
    background: var(--cs2-gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Oxanium', sans-serif;
}

.calculator-step h5 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--cs2-light);
}

.calculator-step p {
    opacity: 0.8;
    font-size: 0.9rem;
}

.calculator-cta {
    text-align: center;
    padding: 40px;
    background: rgba(230, 36, 36, 0.05);
    border-radius: var(--border-radius);
    border: 2px dashed var(--cs2-primary);
}

.calculator-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.calculator-cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* FAQ Section */
.faq-section {
    background: var(--cs2-dark);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    margin-bottom: 15px;
    border: 1px solid var(--cs2-gray);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--cs2-primary);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(42, 42, 42, 0.5);
}

.faq-question h4 {
    font-size: 1.2rem;
    color: var(--cs2-light);
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--cs2-primary);
    transition: transform 0.3s ease;
}

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

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

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

.faq-answer p {
    opacity: 0.9;
    line-height: 1.7;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.faq-grid .faq-item {
    margin-bottom: 0;
}

/* Final CTA Section */
.final-cta-section, .final-contact-cta {
    padding: 100px 0;
    background: var(--cs2-gradient);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-content h2, .final-contact-cta h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.final-cta-content p, .final-contact-cta p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Gallery Stats */
.gallery-stats-section {
    padding: 60px 0;
    background: var(--cs2-gradient-dark);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.stat-card {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
    opacity: 0;
    transform: translateY(30px);
}

.stat-card:hover {
    transform: translateY(-10px);
    border-color: var(--cs2-primary);
    box-shadow: var(--shadow);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: rgba(230, 36, 36, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--cs2-primary);
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
    background: var(--cs2-gradient);
    color: white;
}

.stat-content .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--cs2-primary);
    margin-bottom: 5px;
    font-family: 'Oxanium', sans-serif;
    line-height: 1;
}

.stat-content .stat-text {
    font-size: 1rem;
    opacity: 0.8;
}

/* Achievements Grid */
.achievements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.achievement-card {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
    opacity: 0;
    transform: translateY(30px);
}

.achievement-card:hover {
    transform: translateY(-10px);
    border-color: var(--cs2-primary);
    box-shadow: var(--shadow);
}

.achievement-image {
    height: 200px;
    overflow: hidden;
}

.achievement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.achievement-card:hover .achievement-image img {
    transform: scale(1.05);
}

.achievement-info {
    padding: 25px;
}

.achievement-info h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--cs2-light);
}

.achievement-info p {
    opacity: 0.8;
    margin-bottom: 15px;
    line-height: 1.6;
}

.achievement-date {
    color: var(--cs2-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

/* Before/After Section */
.before-after-section {
    background: var(--cs2-gradient-dark);
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.comparison-card {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
    opacity: 0;
    transform: translateY(30px);
}

.comparison-card:hover {
    transform: translateY(-10px);
    border-color: var(--cs2-primary);
    box-shadow: var(--shadow);
}

.comparison-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--cs2-gray);
}

.comparison-header h4 {
    font-size: 1.3rem;
    color: var(--cs2-light);
    margin: 0;
}

.comparison-header .time {
    background: rgba(230, 36, 36, 0.1);
    color: var(--cs2-primary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.comparison-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.comparison-content .before,
.comparison-content .after {
    text-align: center;
    flex: 1;
}

.comparison-content .label {
    font-size: 0.9rem;
    opacity: 0.7;
    margin-bottom: 10px;
}

.comparison-content .rank {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cs2-light);
    margin-bottom: 5px;
}

.comparison-content .elo,
.comparison-content .wins,
.comparison-content .matches {
    font-size: 0.9rem;
    opacity: 0.8;
}

.comparison-content .arrow {
    padding: 0 20px;
    color: var(--cs2-primary);
    font-size: 1.5rem;
}

.comparison-footer {
    padding-top: 15px;
    border-top: 1px solid var(--cs2-gray);
    text-align: center;
}

.comparison-footer .price {
    color: var(--cs2-accent);
    font-weight: 600;
    font-size: 1.2rem;
}

/* Boosters Section */
.boosters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.booster-card {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    overflow: hidden;
    transition: var(--transition);
    border: 1px solid var(--cs2-gray);
    opacity: 0;
    transform: translateY(30px);
}

.booster-card:hover {
    transform: translateY(-10px);
    border-color: var(--cs2-primary);
    box-shadow: var(--shadow);
}

.booster-image {
    height: 250px;
    overflow: hidden;
}

.booster-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.booster-card:hover .booster-image img {
    transform: scale(1.05);
}

.booster-info {
    padding: 25px;
}

.booster-info h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.booster-stats {
    display: grid;
    gap: 10px;
    margin-bottom: 15px;
}

.booster-stats .stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--cs2-gray);
}

.booster-stats .label {
    opacity: 0.7;
    font-size: 0.9rem;
}

.booster-stats .value {
    font-weight: 600;
    color: var(--cs2-primary);
}

.booster-desc {
    opacity: 0.8;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Gallery CTA */
.gallery-cta-section {
    padding: 100px 0;
    background: url('../images/bg/gallery-cta-bg.jpg') no-repeat center center/cover;
    position: relative;
    text-align: center;
}

.gallery-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 18, 0.9);
}

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

.gallery-cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: white;
}

.gallery-cta-content p {
    font-size: 1.3rem;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

/* Contact Main */
.contact-main-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--cs2-light);
}

.contact-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.7;
    opacity: 0.9;
}

.contact-methods {
    margin-bottom: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    border: 1px solid var(--cs2-gray);
    transition: var(--transition);
    margin-bottom: 20px;
}

.contact-method:hover {
    border-color: var(--cs2-primary);
    transform: translateY(-5px);
}

.contact-method.primary {
    border-color: var(--cs2-primary);
    background: rgba(230, 36, 36, 0.05);
}

.method-icon {
    width: 70px;
    height: 70px;
    background: var(--cs2-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.method-info h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    color: var(--cs2-light);
}

.method-info p {
    opacity: 0.8;
    margin-bottom: 10px;
}

.method-link {
    color: var(--cs2-primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.method-link:hover {
    gap: 12px;
}

.contact-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.05);
    border-radius: var(--border-radius);
    border: 1px solid var(--cs2-blue);
}

.contact-note i {
    color: var(--cs2-blue);
    font-size: 1.5rem;
    margin-top: 2px;
}

.contact-note p {
    opacity: 0.9;
    line-height: 1.6;
}

.contact-instructions {
    margin-top: 40px;
}

.contact-instructions h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--cs2-light);
}

.instructions-list {
    list-style: decimal;
    padding-left: 25px;
}

.instructions-list li {
    margin-bottom: 15px;
    line-height: 1.6;
    font-size: 1.1rem;
    padding-left: 10px;
}

.contact-sidebar {
    position: sticky;
    top: 150px;
}

.contact-card {
    background: var(--cs2-secondary);
    border-radius: var(--border-radius);
    padding: 30px;
    border: 1px solid var(--cs2-gray);
    box-shadow: var(--shadow);
}

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--cs2-light);
    text-align: center;
}

.contact-card p {
    opacity: 0.9;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.6;
}

.info-list {
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(42, 42, 42, 0.5);
    border-radius: var(--border-radius);
    margin-bottom: 10px;
    border: 1px solid transparent;
    transition: var(--transition);
}

.info-item:hover {
    border-color: var(--cs2-primary);
}

.info-item i {
    color: var(--cs2-primary);
    font-size: 1.2rem;
    width: 24px;
}

.info-item span {
    flex: 1;
    opacity: 0.9;
}

.qr-code {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--cs2-gray);
}

.qr-code h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.qr-image {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    display: inline-block;
}

.qr-placeholder {
    width: 150px;
    height: 150px;
    background: #f0f0f0;
    border-radius: var(--border-radius);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.qr-placeholder i {
    font-size: 3rem;
    color: var(--cs2-primary);
}

.qr-placeholder p {
    font-size: 0.9rem;
    color: #333;
    margin: 0;
    text-align: center;
}

/* Working Hours */
.working-hours-section {
    background: var(--cs2-gradient-dark);
    padding: 60px 0;
}

.hours-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 600px;
    margin: 0 auto;
}

.hours-icon {
    width: 100px;
    height: 100px;
    background: var(--cs2-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    flex-shrink: 0;
}

.hours-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--cs2-light);
}

.hours-schedule {
    margin-bottom: 15px;
}

.day-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--cs2-gray);
}

.day-time:last-child {
    border-bottom: none;
}

.day-time .day {
    opacity: 0.9;
}

.day-time .time {
    font-weight: 600;
    color: var(--cs2-primary);
}

.hours-note {
    opacity: 0.8;
    font-style: italic;
    font-size: 0.9rem;
}

/* Contact FAQ */
.contact-faq-section {
    padding: 80px 0;
    background: var(--cs2-dark);
}

/* Privacy Content */
.privacy-content-section {
    padding: 80px 0;
    background: var(--cs2-dark);
}

.privacy-content {
    max-width: 900px;
    margin: 0 auto;
}

.last-updated {
    padding: 20px;
    background: rgba(230, 36, 36, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 40px;
    text-align: center;
    border: 1px solid var(--cs2-primary);
}

.last-updated p {
    margin: 0;
    font-size: 1.1rem;
}

.privacy-section {
    margin-bottom: 40px;
}

.privacy-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--cs2-light);
    padding-bottom: 10px;
    border-bottom: 2px solid var(--cs2-gray);
}

.privacy-section h3 {
    font-size: 1.5rem;
    margin: 25px 0 15px;
    color: var(--cs2-light);
}

.privacy-section p {
    margin-bottom: 15px;
    line-height: 1.7;
    opacity: 0.9;
    font-size: 1.1rem;
}

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

.privacy-section li {
    margin-bottom: 10px;
    line-height: 1.6;
    opacity: 0.9;
    padding-left: 5px;
}

.acceptance-section {
    margin-top: 50px;
}

.acceptance-box {
    background: rgba(230, 36, 36, 0.05);
    border-radius: var(--border-radius);
    padding: 30px;
    text-align: center;
    border: 2px solid var(--cs2-primary);
}

.acceptance-box h3 {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--cs2-light);
}

.acceptance-box p {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.privacy-links-section {
    padding: 60px 0;
    background: var(--cs2-gradient-dark);
}

.privacy-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* Footer */
.main-footer {
    background: var(--cs2-secondary);
    padding: 60px 0 30px;
    border-top: 1px solid var(--cs2-gray);
}

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

.footer-logo {
    margin-bottom: 20px;
}

.footer-logo a {
    text-decoration: none;
    display: inline-block;
}

.footer-logo .logo-animated {
    width: 200px;
    height: 70px;
}

.footer-logo .logo-circle {
    width: 200px;
    height: 70px;
}

.footer-logo .logo-inner {
    padding: 0 25px;
}

.footer-description {
    margin-bottom: 20px;
    opacity: 0.8;
    line-height: 1.6;
    max-width: 300px;
}

.footer-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: var(--cs2-light);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: var(--cs2-light);
    text-decoration: none;
    opacity: 0.8;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-link:hover {
    opacity: 1;
    color: var(--cs2-primary);
    transform: translateX(5px);
}

.footer-note {
    margin-top: 20px;
    padding: 15px;
    background: rgba(230, 36, 36, 0.1);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--cs2-primary);
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid var(--cs2-gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    opacity: 0.7;
    font-size: 0.9rem;
    max-width: 500px;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.legal-link {
    color: var(--cs2-light);
    text-decoration: none;
    opacity: 0.7;
    transition: var(--transition);
    font-size: 0.9rem;
}

.legal-link:hover {
    opacity: 1;
    color: var(--cs2-primary);
}

/* Адаптивность */
@media (max-width: 1200px) {
    .hero-rank-showcase {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        flex-direction: row;
        justify-content: center;
        margin-top: 60px;
        flex-wrap: wrap;
    }
    
    .rank-card {
        width: 250px;
    }
    
    .service-detail-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .service-detail-sidebar {
        position: static;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .section-title {
        font-size: 2.8rem;
    }
    
    .page-title {
        font-size: 3.2rem;
    }
    
    .service-detail-title h2 {
        font-size: 2.5rem;
    }
    
    .service-icon-large {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .hours-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        flex-direction: column;
        background: var(--cs2-secondary);
        width: 280px;
        height: 100vh;
        padding: 100px 30px 30px;
        transition: var(--transition);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.3);
        z-index: 1000;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2.3rem;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .cta-title, .final-cta-content h2, .final-contact-cta h2, .gallery-cta-content h2 {
        font-size: 2.5rem;
    }
    
    .service-detail-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .service-nav-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .calculator-steps {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    section {
        padding: 60px 0;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
    }
    
    .page-title {
        font-size: 2rem;
    }
    
    .page-subtitle {
        font-size: 1.2rem;
    }
    
    .service-detail-title h2 {
        font-size: 2rem;
    }
    
    .service-detail-title p {
        font-size: 1.1rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 14px 25px;
        font-size: 1rem;
    }
    
    .btn-large {
        padding: 16px 30px;
    }
    
    .price-calculator {
        padding: 30px 20px;
    }
    
    .contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .method-info h4 {
        font-size: 1.3rem;
    }
    
    .logo-animated {
        width: 160px;
        height: 50px;
    }
    
    .logo-circle {
        width: 160px;
        height: 50px;
    }
    
    .logo-text, .logo-accent {
        font-size: 1.5rem;
    }
}