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

:root {
    --primary: #FF6B35;
    --primary-dark: #E55A2B;
    --secondary: #2C3E50;
    --accent: #FFD23F;
    --text: #1A1A1A;
    --text-light: #6B7280;
    --bg: #FFFFFF;
    --bg-light: #F9FAFB;
    --border: #E5E7EB;
    --whatsapp: #25D366;
    --telegram: #0088CC;
}

body {
    font-family: 'Golos Text', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

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

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

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

/* Header */
.header {
    position: sticky;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    padding: 20px 0;
}

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

.logo {
    flex-shrink: 0;
}

.logo-text {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 18px;
    line-height: 1.2;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    gap: 30px;
    flex-grow: 1;
}

.nav a {
    font-size: 15px;
    font-weight: 500;
    color: var(--text);
    transition: color 0.2s;
    white-space: nowrap;
}

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

.header-contacts .phone-btn {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary);
    white-space: nowrap;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

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

/* Hero Section */
.hero {
    position: relative;
    padding: 80px 0 120px;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    overflow: hidden;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -2px;
}

.hero-title .accent {
    color: var(--primary);
    display: inline-block;
    position: relative;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 30px;
    font-weight: 500;
}

.hero-benefits {
    list-style: none;
    margin-bottom: 40px;
}

.hero-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 16px;
    margin-bottom: 15px;
}

.hero-benefits svg {
    flex-shrink: 0;
    color: var(--primary);
    margin-top: 2px;
}

.hero-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-image {
    position: relative;
}

.hero-image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.hero-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--accent);
    padding: 25px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    transform: rotate(-5deg);
}

.badge-text {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.3;
    text-align: center;
    text-transform: uppercase;
    color: var(--secondary);
}

.hero-decoration {
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 600;
    font-size: 15px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

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

.btn-whatsapp:hover {
    background: #1EBE57;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.3);
}

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

.btn-telegram:hover {
    background: #0077B5;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 136, 204, 0.3);
}

.btn-large {
    padding: 20px 40px;
    font-size: 16px;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--bg);
}

.section-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -1px;
}

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

.service-card {
    background: var(--bg-light);
    padding: 40px 30px;
    border-radius: 20px;
    transition: all 0.3s;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    background: white;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: white;
}

.service-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin-bottom: 15px;
}

.service-description {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

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

/* Why Choose Section */
.why-choose {
    padding: 100px 0;
    background: var(--secondary);
    color: white;
}

.why-choose .section-title {
    color: white;
}

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

.advantage-item {
    position: relative;
}

.advantage-number {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 72px;
    color: rgba(255, 255, 255, 0.1);
    line-height: 1;
    margin-bottom: 10px;
}

.advantage-item h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 22px;
    margin-bottom: 15px;
}

.advantage-item p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FF6B35 0%, #E55A2B 100%);
    color: white;
    text-align: center;
}

.cta-title {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.cta-buttons .btn:hover {
    background: var(--bg-light);
    transform: translateY(-5px);
}

.cta-buttons .btn-whatsapp {
    background: var(--whatsapp);
    color: white;
}

.cta-buttons .btn-telegram {
    background: var(--telegram);
    color: white;
}

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

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

.footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    line-height: 1.6;
}

.footer-col h4 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

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

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: white;
}

.footer-phone {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--accent);
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s;
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-location {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 20px;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: white;
    z-index: 2000;
    transition: right 0.3s;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-content {
    padding: 30px;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mobile-menu-close {
    align-self: flex-end;
    background: none;
    border: none;
    font-size: 36px;
    cursor: pointer;
    color: var(--text);
    margin-bottom: 30px;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-grow: 1;
}

.mobile-nav a {
    font-weight: 600;
    font-size: 18px;
    color: var(--text);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-contacts {
    margin-top: auto;
}

.mobile-menu-contacts .btn {
    width: 100%;
    margin-bottom: 15px;
}

.mobile-social {
    display: flex;
    gap: 10px;
}

.mobile-social a {
    flex: 1;
    text-align: center;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-badge {
        bottom: -20px;
        right: -20px;
        padding: 20px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .cta-title {
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .header-contacts .phone-btn {
        display: none;
    }
    
    .hero {
        padding: 40px 0 60px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .services {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .why-choose, .cta-section {
        padding: 60px 0;
    }
    
    .cta-title {
        font-size: 28px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

/* Page Specific Styles */
.page-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, #FFF5F0 0%, #FFFFFF 100%);
    text-align: center;
}

.page-hero h1 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 800;
    font-size: 48px;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 0;
}

.services-list {
    display: grid;
    gap: 20px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    background: var(--bg-light);
    border-radius: 15px;
    transition: all 0.3s;
}

.service-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.service-name {
    font-weight: 600;
    font-size: 18px;
}

.service-price {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: var(--primary);
}

.reviews-grid {
    display: grid;
    gap: 30px;
}

.review-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.reviewer-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.review-service {
    color: var(--text-light);
    font-size: 14px;
}

.review-stars {
    color: var(--accent);
    font-size: 20px;
}

.review-text {
    line-height: 1.6;
    color: var(--text);
}

.about-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: start;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.about-text h2 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
}

.contact-card svg {
    margin: 0 auto 20px;
    color: var(--primary);
}

.contact-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 15px;
}

.contact-card a {
    color: var(--primary);
    font-weight: 600;
    font-size: 18px;
}

@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
}