/* Reset and Base Styles */
/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.5px;
}

.nav {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav a {
    color: var(--medium-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
}

/* Скрываем SVG иконки в десктопном меню */
.nav-menu svg {
    display: none;
}

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

.nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

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

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: 20px;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1001;
}

.hamburger:hover {
    background: rgba(71, 255, 255, 0.1);
    transform: scale(1.05);
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    border-radius: 3px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.hamburger.active {
    background: rgba(71, 255, 255, 0.15);
    transform: scale(1.1);
}

.hamburger.active span {
    background: var(--accent);
    box-shadow: 0 0 10px rgba(71, 255, 255, 0.5);
}

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

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark-bg: #1a1a1a;
    --darker-bg: #121212;
    --lighter-bg: #2a2a2a;
    --accent: #47ffff;
    --accent-glow: rgba(71, 255, 255, 0.5);
    --accent-light: #6affff;
    --white: #ffffff;
    --light-gray: #e0e0e0;
    --medium-gray: #888888;
    --dark-gray: #333333;
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-highlight: rgba(255, 255, 255, 0.2);
    --shadow-color: rgba(0, 0, 0, 0.5);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    --gradient-accent: linear-gradient(135deg, #47ffff 0%, #34d4ff 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
    color: var(--white);
    background: var(--dark-bg);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Glossy Effects */
.glossy {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.glossy::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        var(--glass-highlight), 
        transparent
    );
    transform: skewX(-15deg);
    animation: glossyShine 6s infinite;
}

@keyframes glossyShine {
    0% { left: -100%; }
    20% { left: 100%; }
    100% { left: 100%; }
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

/* Desktop break - скрыт на мобильных */
.desktop-break {
    display: inline;
}

@media (max-width: 768px) {
    .desktop-break {
        display: none;
    }
}

    /* Hero Section */
.hero {
    min-height: 100vh;
    padding: 120px 0 80px;
    background: var(--gradient-dark);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 229, 199, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 199, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    position: relative;
}

.hero-text::before {
    display: none;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    position: relative;
}

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

.hero-title .highlight::after {
    display: none;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    color: var(--light-gray);
}

.hero-description {
    font-size: 1.1rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 90%;
}

/* Hero Address */
.hero-address {
    margin-bottom: 30px;
}

.hero-address-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(71, 255, 255, 0.1);
}

.hero-address-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
    transition: all 0.6s ease;
}

.hero-address-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 255, 255, 0.2);
    border-color: var(--accent);
    color: var(--accent);
}

.hero-address-link:hover::before {
    left: 100%;
}

.hero-location-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(71, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.hero-address-link:hover .hero-location-icon {
    transform: scale(1.1);
}

.hero-address-text {
    transition: color 0.3s ease;
}

.hero-address-link:hover .hero-address-text {
    color: var(--accent);
}

/* Button Styles */
.button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--gradient-accent);
    color: var(--dark-bg);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 229, 199, 0.3);
}

.button::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: all 0.6s ease;
}

.button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 229, 199, 0.5);
}

.button:hover::before {
    left: 100%;
}

.button-outline {
    background: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    box-shadow: 0 5px 20px rgba(0, 229, 199, 0.1);
}

.button-outline:hover {
    background: var(--accent);
    color: var(--dark-bg);
    box-shadow: 0 8px 25px rgba(0, 229, 199, 0.3);
}

/* Hero Image */
.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: var(--glass-bg);
    border: 1px solid var(--accent);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(0, 229, 199, 0.1),
        transparent
    );
    transform: rotate(45deg);
    animation: reflectionEffect 6s infinite;
}

@keyframes reflectionEffect {
    0% { transform: rotate(45deg) translateY(-100%); }
    50% { transform: rotate(45deg) translateY(100%); }
    100% { transform: rotate(45deg) translateY(100%); }
}

.diamond-icon {
    width: 80px;
    height: 80px;
    color: #47ffff;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 15px rgba(71, 255, 255, 0.5));
}

.image-placeholder p {
    color: var(--medium-gray);
    text-align: center;
    font-weight: 300;
    font-size: 0.9rem;
    padding: 0 20px;
    max-width: 80%;
}

.hero-photo-container {
    width: 100%;
    max-width: 500px;
    aspect-ratio: 1;
    background: var(--glass-bg);
    border: 1px solid var(--accent);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

.hero-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 20px;
    display: block;
    transition: transform 0.3s ease;
}

.hero-photo:hover {
    transform: scale(1.05);
}

/* Info Section */
.info-section {
    padding: 120px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.info-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 229, 199, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 229, 199, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 50px;
    text-align: center;
    position: relative;
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.info-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.info-text {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 60px;
}

/* Benefits */
.benefits {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.benefit-item {
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
    transition: all 0.6s ease;
}

.benefit-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.benefit-item:hover::before {
    left: 100%;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    color: #47ffff;
    margin-bottom: 25px;
    filter: drop-shadow(0 0 15px rgba(71, 255, 255, 0.5));
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: scale(1.1);
    filter: drop-shadow(0 0 25px rgba(71, 255, 255, 0.7));
}

.benefit-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.benefit-item:hover h3 {
    color: var(--accent);
}

.benefit-item p {
    color: var(--medium-gray);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.7;
    transition: all 0.3s ease;
}

.benefit-item:hover p {
    color: var(--light-gray);
}

/* Client Photos Section */
.client-photos-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.client-photos-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 229, 199, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(0, 229, 199, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.photos-subtitle {
    text-align: center;
    font-size: 18px;
    color: var(--light-gray);
    margin-bottom: 40px;
    font-weight: 400;
}

/* Отзывы и материалы */
.reviews-materials {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 40px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.materials-title {
    text-align: center;
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 25px;
}

.materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.material-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.material-item:hover {
    transform: translateY(-3px);
}

.material-placeholder {
    background: linear-gradient(135deg, #47ffff 0%, #34d399 100%);
    border-radius: 15px;
    padding: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 25px rgba(71, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.material-placeholder:hover {
    box-shadow: 0 15px 40px rgba(71, 255, 255, 0.3);
    transform: scale(1.02);
}

.material-icon {
    width: 50px;
    height: 50px;
    color: white;
    margin-bottom: 15px;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.material-placeholder p {
    color: white;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.review-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: 15px;
    display: block;
}

.review-photo-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: linear-gradient(135deg, #47ffff 0%, #34d399 100%);
    border-radius: 15px;
}

/* Photo Modal */
.photo-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.photo-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.modal-content {
    background: transparent;
    border-radius: 0;
    max-width: 100vw;
    max-height: 100vh;
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.modal-image {
    width: 100%;
    height: 100vh;
    object-fit: contain;
    object-position: center;
    background: rgba(0, 0, 0, 0.9);
    display: block;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.modal-image:hover {
    transform: scale(1.02);
}

.modal-caption {
    padding: 25px;
    text-align: center;
}

.modal-client-name {
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    margin: 0 0 10px 0;
}

.modal-procedure {
    background: linear-gradient(135deg, #47ffff 0%, #34d399 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin: 0;
}

.modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
}

.modal-prev,
.modal-next {
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    pointer-events: all;
}

.modal-prev:hover,
.modal-next:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

/* Responsive для модального окна */
@media (max-width: 768px) {
    .modal-content {
        max-width: 95%;
        max-height: 95vh;
        margin: 20px;
        padding: 0;
    }
    
    .modal-image {
        max-height: 85vh;
        width: 100%;
        object-fit: contain;
    }
    
    .modal-caption {
        padding: 20px;
    }
    
    .modal-client-name {
        font-size: 20px;
    }
    
    .modal-nav {
        padding: 0 10px;
    }
    
    .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 1.8rem;
        background: rgba(0, 0, 0, 0.8);
        color: white;
        border-radius: 50%;
        border: 2px solid var(--accent);
    }
    
    .modal-overlay {
        padding: 10px;
    }
    
    .modal-prev,
    .modal-next {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .modal-close {
        top: 10px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
    
    .modal-overlay {
        padding: 5px;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 50%, #1a1a1a 100%);
    position: relative;
    overflow: hidden;
}

.pricing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(0, 229, 199, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 229, 199, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.pricing-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--medium-gray);
    font-weight: 300;
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-info {
    text-align: center;
    margin-bottom: 40px;
}

.pricing-description {
    font-size: 1rem;
    color: var(--white);
    opacity: 0.8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    margin-bottom: 40px;
}

.vip-pricing {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.vip-pricing .pricing-card {
    max-width: 500px;
    width: 100%;
}

.vip-pricing .card-header {
    text-align: center;
}

.vip-pricing .package-name {
    text-align: center;
}

.vip-pricing .package-subtitle {
    text-align: center;
}

.vip-pricing .card-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.vip-pricing .price {
    text-align: center;
    margin-bottom: 15px;
}

.vip-pricing .features-list {
    margin: 0;
    text-align: center;
    max-width: 300px;
}

.vip-pricing .features-list li {
    justify-content: space-between;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.vip-pricing .vip-bonuses {
    margin: 0;
    text-align: center;
    max-width: 300px;
}

.vip-pricing .vip-bonuses li {
    text-align: center;
    padding-left: 0;
}

.vip-pricing .vip-bonuses li::before {
    position: static;
    margin-right: 8px;
}

.vip-pricing .card-footer {
    text-align: center;
}



.pricing-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
    transition: all 0.6s ease;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: var(--accent);
}

.pricing-card:hover::before {
    left: 100%;
}

.card-header {
    padding: 15px;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.package-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.package-subtitle {
    font-size: 0.8rem;
    color: var(--medium-gray);
    font-weight: 300;
}

.card-body {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
}

.price::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 1px;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent-glow);
}

.price-amount {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    display: inline;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.price-currency {
    font-size: 1.8rem;
    color: var(--white);
    font-weight: 700;
    margin-left: 2px;
}

.features-list {
    list-style: none;
    margin-bottom: 15px;
    flex: 1;
}

.features-list li {
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    color: var(--medium-gray);
    font-size: 0.8rem;
}

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

.feature-label {
    font-weight: 500;
    color: var(--light-gray);
}

.vip-card {
    background: linear-gradient(135deg, rgba(0, 229, 199, 0.15) 0%, rgba(0, 229, 199, 0.05) 100%);
    border: 2px solid var(--accent);
    position: relative;
    z-index: 2;
    box-shadow: 0 25px 50px rgba(0, 229, 199, 0.3);
}

.vip-card:hover {
    transform: translateY(-10px);
}

.vip-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #000;
    padding: 8px 15px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
    transform: rotate(5deg);
}

.vip-bonuses {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.vip-bonuses h4 {
    font-size: 0.8rem;
    margin-bottom: 8px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.vip-bonuses ul {
    list-style: none;
}

.vip-bonuses li {
    padding: 4px 0;
    color: var(--light-gray);
    font-size: 0.7rem;
    position: relative;
    padding-left: 15px;
}

.vip-bonuses li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
}

.card-footer {
    padding: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-button {
    width: 100%;
    padding: 8px 15px;
    font-size: 0.8rem;
}

.vip-button {
    background: var(--gradient-accent);
    border: none;
    color: var(--dark-bg);
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background: var(--darker-bg);
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(0, 229, 199, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(0, 229, 199, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.gallery-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--medium-gray);
    font-weight: 300;
    margin-top: 25px;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    background: var(--glass-bg);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.gallery-carousel {
    position: relative;
    overflow: hidden;
}

.gallery-track {
    display: flex;
    transition: transform 0.5s ease;
}

.gallery-slide {
    min-width: 100%;
    padding: 0 10px;
}

.before-after {
    display: flex;
    gap: 20px;
}

.before-image,
.after-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

.teeth-before {
    background: linear-gradient(135deg, rgba(60, 60, 60, 0.9), rgba(30, 30, 30, 0.9));
}

.teeth-after {
    background: linear-gradient(135deg, rgba(0, 229, 199, 0.2), rgba(0, 229, 199, 0.05));
}

.teeth-before::after,
.teeth-after::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 50 L50 0 C70 0 80 10 80 30 C80 50 70 50 50 50 Z M50 50 L50 0 C30 0 20 10 20 30 C20 50 30 50 50 50 Z M50 50 L50 100 C30 100 20 90 20 70 C20 50 30 50 50 50 Z M50 50 L50 100 C70 100 80 90 80 70 C80 50 70 50 50 50 Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E") center no-repeat;
    background-size: 70% 70%;
    opacity: 0.3;
}

/* Стили для реальных фотографий результатов */
.result-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
}

.photo-label {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 2;
}

.gallery-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0 0;
}

.gallery-prev,
.gallery-next {
    background: var(--glass-bg);
    color: var(--accent);
    border: 1px solid var(--glass-border);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.gallery-prev:hover,
.gallery-next:hover {
    background: var(--accent);
    color: var(--dark-bg);
}

.gallery-dots {
    display: flex;
    gap: 10px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: var(--accent);
    transform: scale(1.2);
}

@keyframes glossyGallery {
    0% {
        background-position: 0% 0%;
    }
    50% {
        background-position: 100% 100%;
    }
    100% {
        background-position: 0% 0%;
    }
}

.gallery-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 0%,
        rgba(0, 229, 199, 0.1) 25%,
        transparent 50%,
        rgba(0, 229, 199, 0.1) 75%,
        transparent 100%
    );
    transform: rotate(30deg);
    animation: glossyGallery 8s linear infinite;
    pointer-events: none;
    z-index: 1;
}

/* Footer Contact Section */
.footer-contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--darker-bg) 0%, rgba(71, 255, 255, 0.08) 100%);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(71, 255, 255, 0.2);
}

.footer-contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 30%, rgba(71, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 70%, rgba(71, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

/* CTA Block */
.footer-cta-block {
    position: relative;
    z-index: 2;
    margin-bottom: 50px;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--white);
    line-height: 1.1;
}

.footer-subtitle {
    font-size: 1.2rem;
    color: var(--medium-gray);
    font-weight: 400;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.footer-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.footer-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-weight: 500;
    font-size: 1rem;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(71, 255, 255, 0.3));
}

.footer-main-cta {
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    min-height: 56px;
}

/* Divider */
.footer-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    margin: 40px 0;
    box-shadow: 0 0 10px rgba(71, 255, 255, 0.3);
}

/* Contact Info Block */
.contact-info-block {
    position: relative;
    z-index: 2;
    text-align: center;
}

.contact-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--white);
}

.contact-description {
    font-size: 1.1rem;
    color: var(--medium-gray);
    margin-bottom: 25px;
    font-weight: 400;
}

.footer-address {
    margin-bottom: 30px;
}

.footer-address-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 15px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--accent);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 5px 20px rgba(71, 255, 255, 0.15);
}

.footer-address-link:hover {
    background: rgba(71, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 255, 255, 0.25);
    color: var(--accent);
}

.footer-location-icon {
    width: 20px;
    height: 20px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(71, 255, 255, 0.3));
}

.footer-address-text {
    font-weight: 600;
}

.footer-social {
    text-align: center;
}

.social-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--white);
}



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

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    min-height: 48px;
}

.social-link:hover {
    background: rgba(71, 255, 255, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(71, 255, 255, 0.2);
}

.social-icon {
    width: 18px;
    height: 18px;
    color: var(--accent);
    filter: drop-shadow(0 2px 4px rgba(71, 255, 255, 0.3));
}



/* Address Link */
.address-container {
    margin: 40px 0;
    display: flex;
    justify-content: center;
}

.address-link {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 30px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    max-width: 500px;
    box-shadow: 0 8px 32px rgba(71, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.address-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, var(--glass-highlight), transparent);
    transition: all 0.6s ease;
}

.address-link:hover {
    background: rgba(71, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(71, 255, 255, 0.25);
    border-color: var(--accent);
    color: var(--accent);
}

.address-link:hover::before {
    left: 100%;
}

.location-icon {
    width: 28px;
    height: 28px;
    color: var(--accent);
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(71, 255, 255, 0.3));
    transition: all 0.3s ease;
}

.address-link:hover .location-icon {
    transform: scale(1.1);
}

.address-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    gap: 4px;
}

.address-title {
    font-size: 0.9rem;
    color: var(--medium-gray);
    font-weight: 400;
    transition: color 0.3s ease;
}

.address-text {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 600;
    transition: color 0.3s ease;
}

.address-link:hover .address-title {
    color: var(--accent);
}

.address-link:hover .address-text {
    color: var(--accent);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Header & Navigation */
    .header {
        padding: 10px 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        background: rgba(13, 17, 23, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-bottom: 1px solid rgba(71, 255, 255, 0.1);
    }
    
    .container {
        padding: 0 15px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: rgba(13, 17, 23, 0.95);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        z-index: 999;
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-top: 1px solid rgba(71, 255, 255, 0.2);
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        display: flex;
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.4s ease;
        transition-delay: calc(0.1s * var(--item-index, 0));
    }
    
    .nav-menu.active li {
        opacity: 1;
        transform: translateY(0);
    }
    
    .nav-menu li:nth-child(1) { --item-index: 1; }
    .nav-menu li:nth-child(2) { --item-index: 2; }
    .nav-menu li:nth-child(3) { --item-index: 3; }
    .nav-menu li:nth-child(4) { --item-index: 4; }
    
    .nav-menu a {
        font-size: 1.3rem;
        color: var(--white);
        padding: 18px 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 12px;
        border-radius: 15px;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        background: rgba(71, 255, 255, 0.05);
        border: 1px solid rgba(71, 255, 255, 0.1);
        margin: 0 30px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        overflow: hidden;
    }
    
    .nav-menu a::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(71, 255, 255, 0.1), transparent);
        transition: all 0.6s ease;
    }
    
    .nav-menu a:hover {
        background: rgba(71, 255, 255, 0.15);
        color: var(--accent);
        border-color: rgba(71, 255, 255, 0.4);
        transform: translateY(-3px);
        box-shadow: 0 10px 30px rgba(71, 255, 255, 0.3);
    }
    
    .nav-menu a:hover::before {
        left: 100%;
    }
    
    .nav-menu a svg {
        display: flex; /* Показываем SVG только в мобильном меню */
        width: 22px;
        height: 22px;
        color: var(--accent);
        filter: drop-shadow(0 2px 4px rgba(71, 255, 255, 0.3));
        transition: all 0.3s ease;
    }
    
    .nav-menu a:hover svg {
        transform: scale(1.1) rotate(5deg);
        filter: drop-shadow(0 4px 8px rgba(71, 255, 255, 0.5));
    }
    
    .hamburger {
        display: flex;
    }
    
    .logo {
        font-size: 1.5rem;
        white-space: nowrap;
    }
    
    /* Hero Section */
    .hero {
        padding: 80px 0 50px 0;
        min-height: auto;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        align-items: center;
    }
    
    .hero-text {
        order: 1;
        padding: 0 10px;
    }
    
    .hero-image {
        order: 2;
        margin-bottom: 20px;
    }
    
    .hero-text::before {
        display: none;
    }
    
    .hero-title {
        font-size: 1.35rem;
        line-height: 1.15;
        margin-bottom: 10px;
        font-weight: 700;
        letter-spacing: -0.02em;
    }
    
    .hero-title .highlight {
        display: block;
        margin-top: 3px;
        font-size: 1.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 10px;
        line-height: 1.25;
        font-weight: 400;
    }
    
    .hero-description {
        font-size: 0.9rem;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
        max-width: 100%;
        line-height: 1.4;
        color: var(--medium-gray);
    }
    
    .hero-address-link {
        padding: 8px 14px;
        gap: 6px;
        font-size: 0.8rem;
        margin-bottom: 20px;
        border-radius: 25px;
    }
    
    .hero-location-icon {
        width: 14px;
        height: 14px;
    }
    
    .hero-photo-container {
        max-width: 350px;
        margin: 0 auto;
        aspect-ratio: 1;
    }
    
    .button {
        padding: 14px 35px;
        font-size: 1rem;
        font-weight: 600;
        border-radius: 30px;
        min-height: 50px;
    }
    
    /* Info Section */
    .info-section {
        padding: 35px 0;
    }
    
    .info-text {
        font-size: 0.95rem;
        margin-bottom: 25px;
        padding: 0 15px;
        line-height: 1.45;
    }
    
    .benefits {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .benefit-item {
        padding: 15px 12px;
        text-align: center;
        border-radius: 12px;
        background: var(--glass-bg);
        border: 1px solid var(--accent);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        transition: all 0.3s ease;
        box-shadow: 0 3px 15px rgba(71, 255, 255, 0.15);
    }
    
    .benefit-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 25px rgba(71, 255, 255, 0.2);
        border-color: var(--accent);
    }
    
    .benefit-icon {
        width: 35px;
        height: 35px;
        margin-bottom: 8px;
        color: var(--accent);
        filter: drop-shadow(0 2px 4px rgba(71, 255, 255, 0.3));
    }
    
    .benefit-item h3 {
        font-size: 1.05rem;
        margin-bottom: 5px;
        color: var(--white);
        font-weight: 600;
        line-height: 1.2;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
        color: var(--medium-gray);
        line-height: 1.35;
        margin: 0;
    }
    
    /* Gallery Section */
    .gallery-section {
        padding: 60px 0;
    }
    
    .gallery-container {
        padding: 30px 20px;
    }
    
    .before-after {
        flex-direction: column;
        gap: 15px;
    }
    
    .result-photo {
        height: 200px;
        object-fit: cover;
    }
    
    .gallery-nav {
        margin-top: 25px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .gallery-subtitle {
        margin-top: 20px;
        margin-bottom: 30px;
        font-size: 1rem;
    }
    
    /* Reviews Section */
    .client-photos-section {
        padding: 50px 0;
    }
    
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .material-placeholder {
        height: 110px;
        border-radius: 10px;
    }
    
    .materials-title {
        font-size: 1.3rem;
        margin-bottom: 20px;
    }
    
    .photos-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    /* Pricing Section */
    .pricing-section {
        padding: 40px 0;
    }
    
    .pricing-subtitle {
        font-size: 1rem;
        margin-bottom: 25px;
        padding: 0 15px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 30px;
    }
    
    .vip-pricing {
        margin-top: 20px;
    }
    
    .vip-pricing .pricing-card {
        max-width: 100%;
    }
    
    .vip-pricing .card-body {
        gap: 15px;
    }
    
    .pricing-card {
        padding: 18px 15px;
        border-radius: 12px;
    }
    
    .card-header {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .package-name {
        font-size: 1.1rem;
        margin-bottom: 3px;
    }
    
    .package-subtitle {
        font-size: 0.8rem;
        margin-bottom: 0;
    }
    
    .card-body {
        padding: 10px;
        margin-bottom: 10px;
    }
    
    .price {
        margin-bottom: 12px;
    }
    
    .price-amount {
        font-size: 2rem;
        display: inline;
    }
    
    .price-currency {
        font-size: 2rem;
        font-weight: 700;
        color: var(--white);
        margin-left: 2px;
    }
    
    .features-list {
        margin-bottom: 12px;
    }
    
    .features-list li {
        font-size: 0.85rem;
        margin-bottom: 4px;
        line-height: 1.3;
    }
    
    .card-footer {
        padding: 10px;
    }
    
    .pricing-button {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .vip-card {
        transform: none;
        order: -1;
    }
    
    .vip-card:hover {
        transform: translateY(-3px);
    }
    
    .vip-bonuses {
        margin-top: 10px;
    }
    
    .vip-bonuses h4 {
        font-size: 0.95rem;
        margin-bottom: 6px;
    }
    
    .vip-bonuses li {
        font-size: 0.8rem;
        margin-bottom: 3px;
    }
    
    /* Footer Contact Section */
    .footer-contact-section {
        padding: 50px 0;
    }
    
    .footer-cta-block {
        margin-bottom: 35px;
    }
    
    .footer-title {
        font-size: 1.6rem;
        margin-bottom: 10px;
        line-height: 1.1;
    }
    
    .footer-subtitle {
        font-size: 1.1rem;
        margin-bottom: 20px;
        padding: 0 20px;
        line-height: 1.3;
    }
    
    .footer-features {
        flex-direction: column;
        gap: 15px;
        margin-bottom: 25px;
        align-items: center;
    }
    
    .footer-feature {
        font-size: 0.95rem;
        gap: 10px;
    }
    
    .footer-icon {
        width: 18px;
        height: 18px;
    }
    
    .footer-main-cta {
        padding: 14px 30px;
        font-size: 1rem;
        min-height: 50px;
        font-weight: 600;
    }
    
    .footer-divider {
        margin: 30px 0;
    }
    
    .contact-title {
        font-size: 1.6rem;
        margin-bottom: 8px;
    }
    
    .contact-description {
        font-size: 1rem;
        margin-bottom: 20px;
        padding: 0 15px;
    }
    
    .footer-address {
        margin-bottom: 25px;
    }
    
    .footer-address-link {
        padding: 12px 20px;
        gap: 10px;
        font-size: 0.9rem;
        max-width: 90%;
    }
    
    .footer-location-icon {
        width: 18px;
        height: 18px;
    }
    
    .social-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .social-link {
        padding: 12px 20px;
        max-width: 280px;
        text-align: center;
        font-size: 0.9rem;
        min-height: 48px;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Header */
    .header {
        padding: 12px 0;
    }
    
    .logo {
        font-size: 1.3rem;
        white-space: nowrap;
    }
    
    /* Hero Section */
    .hero {
        padding: 30px 0 40px 0;
    }
    
    .hero-content {
        gap: 25px;
    }
    
    .hero-text {
        padding: 0 5px;
    }
    
    .hero-title {
        font-size: 1.2rem;
        line-height: 1.1;
        margin-bottom: 8px;
        font-weight: 700;
    }
    
    .hero-title .highlight {
        display: block;
        margin-top: 2px;
        font-size: 1.1rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 8px;
        line-height: 1.2;
    }
    
    .hero-description {
        font-size: 0.85rem;
        margin-bottom: 18px;
        line-height: 1.35;
        padding: 0 10px;
    }
    
    .hero-address-link {
        padding: 6px 12px;
        gap: 5px;
        font-size: 0.75rem;
        margin-bottom: 18px;
        border-radius: 20px;
    }
    
    .hero-location-icon {
        width: 12px;
        height: 12px;
    }
    
    .hero-photo-container {
        max-width: 280px;
    }
    
    .button {
        padding: 12px 30px;
        font-size: 0.9rem;
        font-weight: 600;
        min-height: 48px;
    }
    
    /* Sections */
    .info-section,
    .gallery-section,
    .client-photos-section,
    .pricing-section,
    .footer-cta,
    .contact-section {
        padding: 40px 0;
    }
    
    .section-title {
        font-size: 1.2rem;
        margin-bottom: 35px;
        line-height: 1.2;
    }
    
    .section-title::after {
        bottom: -20px;
        width: 60px;
    }
    
    /* Info Section */
    .info-section {
        padding: 30px 0;
    }
    
    .info-text {
        font-size: 0.85rem;
        margin-bottom: 20px;
        padding: 0 10px;
        line-height: 1.4;
    }
    
    /* Benefits */
    .benefits {
        gap: 18px;
    }
    
    .benefit-item {
        padding: 12px 10px;
        border-radius: 10px;
    }
    
    .benefit-item h3 {
        font-size: 1rem;
        margin-bottom: 4px;
        font-weight: 600;
        line-height: 1.15;
    }
    
    .benefit-item p {
        font-size: 0.8rem;
        line-height: 1.3;
    }
    
    .benefit-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }
    
    /* Gallery */
    .gallery-container {
        padding: 20px 15px;
    }
    
    .result-photo {
        height: 180px;
    }
    
    .photo-label {
        font-size: 0.8rem;
        padding: 5px 10px;
    }
    
    .gallery-prev,
    .gallery-next {
        width: 44px;
        height: 44px;
        font-size: 1.1rem;
        /* Увеличенная область касания для мобильных */
    }
    
    .gallery-subtitle {
        margin-top: 18px;
        margin-bottom: 25px;
        font-size: 0.9rem;
    }
    
    .gallery-dots {
        gap: 10px;
    }
    
    .gallery-dot {
        width: 12px;
        height: 12px;
        /* Увеличенные точки для лучшего касания */
    }
    
    /* Reviews */
    .client-photos-section {
        padding: 30px 0;
    }
    
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        max-width: 100%;
    }
    
    .material-placeholder {
        height: 100px;
        border-radius: 8px;
    }
    
    .materials-title {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .photos-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }
    
    /* Pricing */
    .pricing-section {
        padding: 30px 0;
    }
    
    .pricing-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
        padding: 0 10px;
    }
    
    .pricing-grid {
        gap: 12px;
    }
    
    .pricing-card {
        padding: 15px 12px;
        border-radius: 10px;
    }
    
    .card-header {
        padding: 8px;
        margin-bottom: 8px;
    }
    
    .package-name {
        font-size: 1rem;
        margin-bottom: 2px;
    }
    
    .package-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0;
    }
    
    .card-body {
        padding: 8px;
        margin-bottom: 8px;
    }
    
    .price {
        margin-bottom: 10px;
    }
    
    .price-amount {
        font-size: 1.8rem;
        display: inline;
    }
    
    .price-currency {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--white);
        margin-left: 2px;
    }
    
    .features-list {
        margin-bottom: 10px;
    }
    
    .features-list li {
        font-size: 0.8rem;
        margin-bottom: 3px;
        line-height: 1.25;
    }
    
    .card-footer {
        padding: 8px;
    }
    
    .pricing-button {
        padding: 8px 16px;
        font-size: 0.85rem;
        min-height: 40px;
    }
    
    .vip-bonuses {
        margin-top: 8px;
    }
    
    .vip-bonuses h4 {
        font-size: 0.9rem;
        margin-bottom: 5px;
    }
    
    .vip-bonuses li {
        font-size: 0.75rem;
        margin-bottom: 2px;
    }
    
    /* Footer Contact Section */
    .footer-contact-section {
        padding: 40px 0;
    }
    
    .footer-cta-block {
        margin-bottom: 30px;
    }
    
    .footer-title {
        font-size: 1.7rem;
        margin-bottom: 8px;
        line-height: 1.05;
    }
    
    .footer-subtitle {
        font-size: 1rem;
        margin-bottom: 18px;
        padding: 0 15px;
        line-height: 1.25;
    }
    
    .footer-features {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .footer-feature {
        font-size: 0.9rem;
        gap: 8px;
    }
    
    .footer-icon {
        width: 16px;
        height: 16px;
    }
    
    .footer-main-cta {
        padding: 12px 25px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .footer-divider {
        margin: 25px 0;
    }
    
    .contact-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
    }
    
    .contact-description {
        font-size: 0.9rem;
        margin-bottom: 18px;
        padding: 0 10px;
    }
    
    .footer-address {
        margin-bottom: 20px;
    }
    
    .footer-address-link {
        padding: 10px 15px;
        gap: 8px;
        font-size: 0.85rem;
        max-width: 95%;
    }
    
    .footer-location-icon {
        width: 16px;
        height: 16px;
    }
    
    .social-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .social-link {
        padding: 10px 18px;
        font-size: 0.85rem;
        max-width: 260px;
        min-height: 44px;
        gap: 8px;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    /* Увеличиваем размеры кликабельных элементов для сенсорных устройств */
    .button {
        min-height: 48px;
        padding: 14px 35px;
    }
    
    .social-link {
        min-height: 48px;
        padding: 14px 30px;
    }
    
    .address-link {
        min-height: 48px;
        padding: 16px 25px;
    }
    
    .hero-address-link {
        min-height: 44px;
        padding: 12px 20px;
    }
    
    .material-item {
        min-height: 48px;
    }
    
    .pricing-button {
        min-height: 48px;
        padding: 14px 30px;
    }
    
    .gallery-prev,
    .gallery-next {
        min-width: 48px;
        min-height: 48px;
    }
    
    .gallery-dot {
        min-width: 16px;
        min-height: 16px;
    }
    
    /* Убираем hover эффекты на сенсорных устройствах */
    .button:hover,
    .social-link:hover,
    .address-link:hover,
    .hero-address-link:hover,
    .pricing-button:hover {
        transform: none;
    }
    
    /* Добавляем активные состояния */
    .button:active,
    .social-link:active,
    .address-link:active,
    .hero-address-link:active,
    .pricing-button:active {
        transform: scale(0.95);
        opacity: 0.8;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }
    
    .logo {
        font-size: 1.1rem;
        white-space: nowrap;
    }
    
    .hero {
        padding: 20px 0 30px 0;
    }
    
    .hero-content {
        gap: 20px;
    }
    
    .hero-text {
        padding: 0;
    }
    
    .hero-title {
        font-size: 1.05rem;
        line-height: 1.05;
        margin-bottom: 6px;
        font-weight: 700;
    }
    
    .hero-title .highlight {
        display: block;
        margin-top: 1px;
        font-size: 0.95rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
        margin-bottom: 6px;
        line-height: 1.15;
    }
    
    .hero-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
        line-height: 1.3;
        padding: 0 5px;
    }
    
    .hero-address-link {
        padding: 5px 10px;
        gap: 4px;
        font-size: 0.7rem;
        margin-bottom: 15px;
        border-radius: 15px;
        min-height: 36px;
    }
    
    .hero-location-icon {
        width: 10px;
        height: 10px;
    }
    
    .hero-photo-container {
        max-width: 240px;
    }
    
    .section-title {
        font-size: 1.1rem;
        line-height: 1.15;
        margin-bottom: 30px;
    }
    
    .section-title::after {
        bottom: -18px;
        width: 50px;
    }
    
    .info-section {
        padding: 25px 0;
    }
    
    .info-text {
        font-size: 0.75rem;
        margin-bottom: 18px;
        padding: 0;
        line-height: 1.35;
    }
    
    .benefits {
        gap: 15px;
    }
    
    .benefit-item {
        padding: 10px 8px;
        border-radius: 8px;
    }
    
    .benefit-item h3 {
        font-size: 0.9rem;
        margin-bottom: 3px;
        font-weight: 600;
        line-height: 1.1;
    }
    
    .benefit-item p {
        font-size: 0.75rem;
        line-height: 1.25;
    }
    
    .benefit-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 5px;
    }
    
    .materials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .material-placeholder {
        height: 80px;
        border-radius: 6px;
    }
    
    .client-photos-section {
        padding: 25px 0;
    }
    
    .materials-title {
        font-size: 1rem;
        margin-bottom: 12px;
    }
    
    .photos-subtitle {
        font-size: 0.85rem;
        margin-bottom: 15px;
    }
    
    .pricing-section {
        padding: 25px 0;
    }
    
    .pricing-subtitle {
        font-size: 0.8rem;
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .pricing-grid {
        gap: 10px;
    }
    
    .pricing-card {
        padding: 12px 10px;
        border-radius: 8px;
    }
    
    .card-header {
        padding: 6px;
        margin-bottom: 6px;
    }
    
    .package-name {
        font-size: 0.9rem;
        margin-bottom: 1px;
        line-height: 1.1;
    }
    
    .package-subtitle {
        font-size: 0.7rem;
        margin-bottom: 0;
    }
    
    .card-body {
        padding: 6px;
        margin-bottom: 6px;
    }
    
    .price {
        margin-bottom: 8px;
    }
    
    .price-amount {
        font-size: 1.6rem;
        display: inline;
    }
    
    .price-currency {
        font-size: 1.6rem;
        font-weight: 700;
        color: var(--white);
        margin-left: 2px;
    }
    
    .features-list {
        margin-bottom: 8px;
    }
    
    .features-list li {
        font-size: 0.75rem;
        margin-bottom: 2px;
        line-height: 1.2;
    }
    
    .card-footer {
        padding: 6px;
    }
    
    .pricing-button {
        padding: 6px 14px;
        font-size: 0.8rem;
        min-height: 36px;
    }
    
    .vip-bonuses {
        margin-top: 6px;
    }
    
    .vip-bonuses h4 {
        font-size: 0.85rem;
        margin-bottom: 4px;
    }
    
    .vip-bonuses li {
        font-size: 0.7rem;
        margin-bottom: 1px;
    }
    
    .result-photo {
        height: 150px;
    }
    
    .gallery-container {
        padding: 15px 10px;
    }
    
    .gallery-subtitle {
        margin-top: 15px;
        margin-bottom: 20px;
        font-size: 0.85rem;
    }
    
    /* Footer Contact Section */
    .footer-contact-section {
        padding: 35px 0;
    }
    
    .footer-cta-block {
        margin-bottom: 25px;
    }
    
    .footer-title {
        font-size: 1.4rem;
        margin-bottom: 6px;
        line-height: 1.05;
    }
    
    .footer-subtitle {
        font-size: 0.9rem;
        margin-bottom: 15px;
        padding: 0 10px;
        line-height: 1.2;
    }
    
    .footer-features {
        gap: 10px;
        margin-bottom: 18px;
    }
    
    .footer-feature {
        font-size: 0.8rem;
        gap: 6px;
    }
    
    .footer-icon {
        width: 14px;
        height: 14px;
    }
    
    .footer-main-cta {
        padding: 10px 20px;
        font-size: 0.9rem;
        min-height: 44px;
    }
    
    .footer-divider {
        margin: 20px 0;
    }
    
    .contact-title {
        font-size: 1.2rem;
        margin-bottom: 5px;
    }
    
    .contact-description {
        font-size: 0.8rem;
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    .footer-address {
        margin-bottom: 18px;
    }
    
    .footer-address-link {
        padding: 8px 12px;
        gap: 6px;
        font-size: 0.75rem;
        max-width: 98%;
    }
    
    .footer-location-icon {
        width: 14px;
        height: 14px;
    }
    
    .social-title {
        font-size: 0.9rem;
        margin-bottom: 10px;
    }
    
    .social-links {
        gap: 8px;
    }
    
    .social-link {
        padding: 8px 15px;
        font-size: 0.8rem;
        max-width: 240px;
        min-height: 40px;
        gap: 6px;
    }
    
    .button {
        min-height: 44px;
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    .gallery-prev,
    .gallery-next {
        min-width: 44px;
        min-height: 44px;
    }
}

.user-icon {
    width: 50px;
    height: 50px;
    color: white;
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.zoom-icon {
    width: 24px;
    height: 24px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Show More Button */
.show-more-container {
    display: none; /* Скрыто на десктопе */
    text-align: center;
    margin-top: 20px;
}

.show-more-btn {
    padding: 12px 25px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.show-more-btn:hover {
    background: rgba(71, 255, 255, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}

.show-more-btn:active {
    transform: scale(0.95);
}

/* Дополнительные фотографии - скрыты на мобильных */
@media (max-width: 768px) {
    .show-more-container {
        display: block;
    }
    
    .additional-photos {
        display: none;
    }
    
    .additional-photos.show {
        display: block;
    }
}