/* ============================================
   GLOBAL STYLES & RESET
   ============================================ */

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

:root {
    --primary-color: #c9a85c;
    --primary-dark: #a88a46;
    --secondary-color: #1a1a1a;
    --accent-color: #f5f5f5;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-white: #ffffff;
    --bg-light: #f8f8f8;
    --bg-white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #c9a85c 0%, #d4b870 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gradient-hero: linear-gradient(135deg, rgba(26, 26, 26, 0.97) 0%, rgba(60, 60, 60, 0.95) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.18);
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    background-color: var(--bg-white);
    background-image: 
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 35px,
            rgba(210, 180, 140, 0.03) 35px,
            rgba(210, 180, 140, 0.03) 70px
        ),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 35px,
            rgba(200, 170, 130, 0.02) 35px,
            rgba(200, 170, 130, 0.02) 70px
        );
}

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

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

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

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

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.container-fluid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.nav-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

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

.logo-text {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--secondary-color);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
}

.nav-link {
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    opacity: 0.7;
}

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

.nav-contact {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-phone {
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
}

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

.nav-btn {
    background: var(--secondary-color);
    color: var(--text-white);
    border: none;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(210, 180, 140, 0.04) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(200, 170, 130, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    max-width: 700px;
    margin-right: 400px;
    position: relative;
    z-index: 1;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bg-light);
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.hero-title {
    font-size: clamp(3.2rem, 6vw, 5.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 90%;
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin-bottom: 4rem;
}

.btn {
    padding: 1.2rem 3rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-primary:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    position: relative;
    transition: var(--transition);
}

.btn-link::after {
    content: '→';
    margin-left: 0.5rem;
    transition: var(--transition);
}

.btn-link:hover {
    color: var(--primary-color);
}

.btn-link:hover::after {
    margin-left: 1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid #e0e0e0;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
    line-height: 1;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.hero-carousel {
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-40%);
    width: 450px;
    height: 550px;
    z-index: 10;
}

.carousel-stack {
    position: relative;
    width: 100%;
    height: 100%;
    perspective: 1000px;
}

.stack-photo {
    position: absolute;
    width: 320px;
    height: 420px;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 30px;
    overflow: hidden;
}

.stack-photo.photo-back {
    top: 40px;
    right: 0;
    transform: rotate(8deg) translateZ(-100px);
    z-index: 1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.stack-photo.photo-middle {
    top: 20px;
    right: 40px;
    transform: rotate(-5deg) translateZ(-50px);
    z-index: 2;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.stack-photo.photo-front {
    top: 0;
    right: 80px;
    transform: rotate(3deg) translateZ(0);
    z-index: 3;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.stack-photo.active {
    transform: rotate(0deg) translateZ(20px) scale(1.05);
}

.photo-frame {
    position: absolute;
    inset: 0;
    border: 3px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.photo-frame::before {
    content: '';
    position: absolute;
    inset: 8px;
    border: 3px solid rgba(201, 168, 92, 0.8);
    border-radius: 25px;
}

.photo-content {
    width: 100%;
    height: 100%;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.photo-1 {
    background-image: url('images/hero/IMG_0748.JPG');
}

.photo-2 {
    background-image: url('images/hero/IMG_0751.JPG');
}

.photo-3 {
    background-image: url('images/hero/IMG_0753.JPG');
}

.stack-photo:hover {
    transform: rotate(0deg) translateZ(30px) scale(1.08) !important;
}

.stack-photo:hover .photo-frame {
    border-color: rgba(201, 168, 92, 0.5);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */

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

/* ============================================
   SECTION HEADER
   ============================================ */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   WHY US SECTION
   ============================================ */

.why-us {
    padding: 6rem 0;
    background: var(--bg-white);
}

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

.why-us .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.advantage-card {
    padding: 2.5rem 2rem;
    background: var(--bg-light);
    border-radius: 12px;
    transition: var(--transition);
    position: relative;
}

.advantage-card:hover {
    background: var(--secondary-color);
    transform: translateY(-5px);
}

.advantage-card:hover .adv-number,
.advantage-card:hover h3 {
    color: var(--primary-color);
}

.advantage-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

.adv-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1;
    margin-bottom: 1.5rem;
    opacity: 0.6;
    transition: var(--transition);
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.advantage-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
    transition: var(--transition);
}

/* ============================================
   SERVICES/COURSES SECTION
   ============================================ */

.services {
    padding: 8rem 0;
    background: var(--bg-white);
}

.courses-showcase {
    margin-top: 4rem;
}

.course-tabs {
    display: flex;
    gap: 2rem;
    justify-content: center;
    margin-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
    padding-bottom: 0;
}

.course-tab {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    position: relative;
    transition: var(--transition);
}

.course-tab::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.course-tab.active {
    color: var(--secondary-color);
}

.course-tab.active::after {
    transform: scaleX(1);
}

.course-tab:hover {
    color: var(--primary-color);
}

.courses-content {
    position: relative;
    min-height: 500px;
}

.course-detail {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    animation: fadeIn 0.6s ease;
}

.course-detail.active {
    display: grid;
}

.course-left {
    background: linear-gradient(135deg, rgba(226, 201, 173, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(226, 201, 173, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.course-left:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.course-duration {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: var(--bg-light);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.course-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.course-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.course-features {
    margin-bottom: 3rem;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.feature-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--text-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature-row span:last-child {
    color: var(--text-dark);
    font-size: 1.05rem;
}

.course-price {
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(226, 201, 173, 0.1) 0%, rgba(226, 201, 173, 0.05) 100%);
    border-radius: 12px;
    border: 1px solid rgba(226, 201, 173, 0.3);
}

.price-range {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.price-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.price-value-group {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-amount {
    font-size: 3rem;
    font-weight: 300;
    color: var(--secondary-color);
    font-family: 'Inter', sans-serif;
    line-height: 1;
}

.price-currency {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
}

.price-separator {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 300;
}

.price-description {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.price-label {
    font-size: 0.85rem;
    color: var(--text-light);
    text-transform: lowercase;
    letter-spacing: 0.5px;
    font-weight: 400;
    margin-top: 0.25rem;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--secondary-color);
    font-family: 'Inter', sans-serif;
}

.course-btn {
    padding: 1.2rem 3rem;
    background: var(--secondary-color);
    color: var(--text-white);
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.course-btn:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.course-image-placeholder {
    width: 100%;
    height: 500px;
    background-image: url('images/courses/IMG_0752.JPG');
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.course-image-placeholder::before {
    content: '';
    position: absolute;
    inset: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    opacity: 0.4;
}

.course-image-placeholder span {
    display: none;
}

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

.service-card {
    background: var(--bg-white);
    border: 2px solid #e0e0e0;
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-card.featured {
    border-color: var(--primary-color);
    background: linear-gradient(135deg, #fafafa 0%, #ffffff 100%);
    box-shadow: var(--shadow-md);
}

/* Удален старый дубликат featured-badge - см. строку 1495 */

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    border-radius: 20px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-white);
    transition: var(--transition);
}

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

.icon-basic::before { content: '1'; }
.icon-pro::before { content: 'PRO'; font-size: 1.5rem; }
.icon-diamond::before { content: '\25C6'; font-size: 3rem; }
.icon-rocket::before { content: 'VIP'; font-size: 1.5rem; }
.icon-chart::before { content: '\2191'; font-size: 3rem; }
.icon-target::before { content: '1:1'; font-size: 1.5rem; }

.service-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.service-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    margin-bottom: 2rem;
}

.service-list li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-dark);
}

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

.service-button {
    width: 100%;
    padding: 1rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
}

.service-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   PROGRAM SECTION
   ============================================ */

.program {
    padding: 5rem 0;
    background: var(--bg-light);
}

.program-tabs {
    display: flex;
    gap: 1rem;
    margin: 3rem 0 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding-bottom: 0.5rem;
    justify-content: center;
}

.program-tabs::-webkit-scrollbar {
    display: none;
}

.program-tab {
    background: none;
    border: none;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    white-space: nowrap;
    flex-shrink: 0;
    position: relative;
}

.program-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.program-tab.active {
    color: var(--secondary-color);
    font-weight: 600;
}

.program-tab.active::after {
    width: 100%;
}

.program-tab:hover {
    color: var(--secondary-color);
}

.program-content-wrapper {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 3rem;
}

.program-content {
    position: relative;
}

.day-content {
    display: none;
    animation: fadeIn 0.6s ease;
}

.day-content.active {
    display: block;
}

.day-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.day-description {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.day-modules {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.module-item {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 1.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: var(--transition);
}

.module-item:last-child {
    border-bottom: none;
}

.module-item:hover {
    padding-left: 1rem;
}

.module-time {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 300;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    flex-shrink: 0;
    width: 50px;
}

.module-content {
    flex: 1;
}

.module-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.module-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery {
    padding: 6rem 0;
    background: var(--secondary-color);
    position: relative;
    overflow: hidden;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4rem;
}

.gallery-header .section-label {
    color: var(--primary-color);
}

.gallery-header .section-title {
    color: var(--text-white);
}

.gallery-header .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.gallery-showcase {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.showcase-main {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    margin-bottom: 4rem;
    align-items: center;
}

.comparison-slider {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    cursor: col-resize;
    height: 500px;
}

.comparison-before,
.comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.comparison-before img,
.comparison-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.comparison-after {
    width: 50%;
    overflow: hidden;
    border-right: 3px solid var(--primary-color);
}

.comparison-slider-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: 3px solid white;
    border-radius: 50%;
    cursor: col-resize;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.handle-arrow-left,
.handle-arrow-right {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.handle-arrow-left {
    left: 8px;
    border-width: 6px 8px 6px 0;
    border-color: transparent white transparent transparent;
}

.handle-arrow-right {
    right: 8px;
    border-width: 6px 0 6px 8px;
    border-color: transparent transparent transparent white;
}

.showcase-info {
    color: white;
}

.showcase-day {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.showcase-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.showcase-description {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.showcase-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    padding: 0.5rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.gallery-carousel {
    position: relative;
    padding: 2rem 0;
}

.carousel-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.carousel-track::-webkit-scrollbar {
    height: 0;
}

.carousel-item {
    flex: 0 0 200px;
    cursor: pointer;
    transition: var(--transition);
}

.carousel-item.active {
    transform: scale(1.05);
}

.carousel-thumb {
    display: flex;
    height: 120px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.carousel-item:hover .carousel-thumb {
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.carousel-item.active .carousel-thumb {
    box-shadow: 0 0 0 3px var(--primary-color);
}

.thumb-before,
.thumb-after {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 600;
}

.thumb-before {
    background: #f5f5f5;
    color: #999;
}

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

.carousel-label {
    display: block;
    text-align: center;
    margin-top: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.carousel-nav:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.carousel-nav.prev {
    left: 10px;
}

.carousel-nav.next {
    right: 10px;
}

.gallery-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 4rem auto 0;
}

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

.gallery-stats .stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.gallery-stats .stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing {
    padding: 6rem 0;
    background: var(--bg-white);
}

.pricing-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-toggle {
    display: flex;
    justify-content: center;
    gap: 0;
    margin: 3rem 0;
    background: var(--bg-light);
    padding: 0.5rem;
    border-radius: 50px;
    max-width: 400px;
    margin: 3rem auto;
}

.toggle-btn {
    flex: 1;
    padding: 0.75rem 2rem;
    background: none;
    border: none;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.toggle-btn.active {
    background: var(--secondary-color);
    color: white;
}

.toggle-text-short {
    display: none;
}

.toggle-text-full {
    display: inline;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 4rem 0;
}

.price-card {
    background: var(--bg-white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.price-card.featured {
    background: var(--secondary-color);
    border-color: var(--primary-color);
    color: white;
}

.price-card.featured .card-label {
    color: var(--primary-color);
}

.price-card.featured .card-duration,
.price-card.featured .price-features li {
    color: rgba(255, 255, 255, 0.8);
}

.price-card.featured .card-title {
    color: white;
}

.price-card.featured .price-full,
.price-card.featured .price-installment {
    color: var(--primary-color);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.card-title {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.card-duration {
    font-size: 0.95rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.price-amount {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: relative;
}

.price-card.featured .price-amount {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.price-full,
.price-installment {
    font-size: 3rem;
    font-weight: 300;
    color: var(--secondary-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    display: none;
}

.price-full.active,
.price-installment.active {
    display: block;
}

.price-installment small {
    font-size: 1.5rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Group Pricing Styles */
.group-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.group-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1rem;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.price-card.featured .group-price-item {
    background: rgba(255, 255, 255, 0.05);
}

.group-price-item:hover {
    background: rgba(0, 0, 0, 0.06);
    transform: translateX(4px);
}

.price-card.featured .group-price-item:hover {
    background: rgba(255, 255, 255, 0.08);
}

.group-size {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.price-card.featured .group-size {
    color: rgba(255, 255, 255, 0.9);
}

.group-cost {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--secondary-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.price-card.featured .group-cost {
    color: var(--accent-color);
}

.price-features {
    list-style: none;
    margin-bottom: auto;
    flex: 1;
}

.price-features li {
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.price-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.price-button {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 2rem;
}

.price-button:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.price-card.featured .price-button {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.price-card.featured .price-button:hover {
    background: white;
    color: var(--secondary-color);
}

.pricing-benefits {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    padding: 3rem;
    background: var(--bg-light);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.pricing-benefits::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.benefit-item {
    text-align: center;
}

.benefit-icon {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.benefit-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.benefit-item p {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* ============================================
   ABOUT INSTRUCTOR SECTION
   ============================================ */

.about-instructor {
    padding: 6rem 0;
    background: var(--bg-light);
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 5rem;
    align-items: start;
}

.about-left {
    position: sticky;
    top: 120px;
}

.instructor-image {
    width: 100%;
    aspect-ratio: 3/4;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 2rem;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2d2d 0%, #1a1a1a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder span {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    letter-spacing: 3px;
}

.instructor-quote {
    background: var(--secondary-color);
    padding: 2rem;
    border-radius: 12px;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-family: Georgia, serif;
}

.instructor-quote p {
    color: white;
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.about-right {
    padding-top: 2rem;
}

.about-header {
    margin-bottom: 3rem;
}

.instructor-name {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.instructor-title {
    font-size: 1.15rem;
    color: var(--text-light);
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
}

.experience-item {
    text-align: center;
}

.exp-number {
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.exp-label {
    font-size: 0.9rem;
    color: var(--text-light);
}

.about-story {
    margin-bottom: 3rem;
}

.about-story h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
}

.about-story p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.25rem;
}

.credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.credential-item {
    display: flex;
    gap: 1.5rem;
    align-items: center;
    padding: 1.5rem;
    background: var(--bg-white);
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.credential-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    flex-shrink: 0;
}

.credential-text {
    font-size: 0.95rem;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Old instructor styles removed */

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
    padding: 8rem 0;
    background: var(--secondary-color);
    color: white;
    text-align: center;
}

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

.contact .section-label {
    color: var(--primary-color);
}

.contact-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.contact-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
}

.instagram-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem 4rem;
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
    color: white;
    text-decoration: none;
    border-radius: 16px;
    font-size: 1.5rem;
    font-weight: 600;
    transition: var(--transition);
    margin-bottom: 4rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.instagram-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.instagram-button svg {
    flex-shrink: 0;
}

.contact-info-simple {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-item a {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: var(--transition);
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
}

.contact-form-container {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: var(--secondary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    padding: 1.25rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.form-notice {
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.info-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    border-radius: 12px;
    background: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.icon-location::before { content: '\2022'; font-size: 2rem; }
.icon-phone::before { content: '\260E'; font-size: 1.8rem; }
.icon-clock::before { content: '\23F0'; font-size: 1.8rem; }
.icon-chat::before { content: '\2709'; font-size: 1.8rem; }

.info-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.info-card small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.social-link {
    padding: 0.5rem 1rem;
    background: var(--accent-color);
    color: var(--primary-dark);
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--text-white);
}

.info-highlight {
    background: var(--gradient-primary);
    color: var(--text-white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.highlight-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
}

.info-highlight h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--bg-light);
    padding: 4rem 0 2rem;
}

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

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    margin-bottom: 2rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 3px;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.footer-tagline {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-phone {
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-socials {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-socials .social-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-socials .social-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    color: var(--text-light);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-light);
    text-decoration: none;
    transition: var(--transition);
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    transition: var(--transition);
}

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

/* ============================================
   MODAL
   ============================================ */

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 500px;
    animation: fadeIn 0.3s ease-out;
}

.modal-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--text-white);
    font-size: 3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.icon-check::before {
    content: '\2713';
    font-size: 3.5rem;
}

.modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.modal-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.modal-button {
    padding: 1rem 3rem;
    background: var(--gradient-primary);
    color: var(--text-white);
    border: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .price-card.popular {
        transform: scale(1);
    }
}

@media (max-width: 1024px) {
    .showcase-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .comparison-slider {
        height: 400px;
    }
    
    .gallery-stats {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pricing-benefits {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-left {
        position: static;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .credentials {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .hero-content {
        margin-right: 0;
    }
    
    .hero-carousel {
        right: 2%;
    }
}

@media (max-width: 768px) {
    /* Disable heavy effects on mobile */
    .navbar {
        backdrop-filter: none;
        background: rgba(255, 255, 255, 0.98);
    }
    
    .carousel-stack {
        perspective: none;
    }
    
    .stack-photo {
        backdrop-filter: none;
    }
    
    .container-fluid {
        padding: 0 20px;
    }
    
    .nav-wrapper {
        height: 70px;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-white);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding: 3rem 0;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-md);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-contact {
        display: none;
    }
    
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-carousel {
        display: none !important;
    }
    
    .carousel-stack {
        position: relative;
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        perspective: none;
    }
    
    .stack-photo {
        position: relative;
        width: 200px;
        height: 260px;
        margin: 0 -15px;
        transform: none !important;
    }
    
    .stack-photo.active {
        transform: scale(1.05) !important;
    }
    
    .hero-label {
        padding: 0.4rem 1rem;
        font-size: 0.75rem;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
        line-height: 1.6;
        max-width: 100%;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
        margin-bottom: 2.5rem;
    }
    
    .btn-primary {
        width: 100%;
        justify-content: center;
        padding: 1.1rem 2rem;
        font-size: 1rem;
    }
    
    .btn-link {
        width: 100%;
        text-align: center;
        padding: 0.75rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 1rem;
        padding-top: 1.5rem;
        justify-content: space-between;
    }
    
    .stat {
        flex: 0 0 calc(50% - 0.5rem);
        text-align: center;
        min-width: 0;
    }
    
    .hero-content {
        margin-right: 0;
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .stat-number {
        font-size: 1.6rem;
        margin-bottom: 0.25rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .why-us {
        padding: 4rem 0;
    }
    
    .why-us .section-header {
        margin-bottom: 2.5rem;
    }
    
    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .advantage-card {
        padding: 1.5rem 1.25rem;
        transition: none;
    }
    
    .advantage-card:hover {
        transform: none;
        background: var(--bg-light);
    }
    
    .adv-number {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .advantage-card h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .advantage-card p {
        font-size: 0.9rem;
    }
    
    .courses-showcase {
        padding: 0;
    }
    
    .course-tabs {
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        margin-bottom: 2rem;
        padding: 0 0 1rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        scrollbar-width: none;
    }
    
    .course-tabs::-webkit-scrollbar {
        display: none;
    }
    
    .course-tab {
        font-size: 0.85rem;
        padding: 0.75rem 1.25rem;
        flex-shrink: 0;
    }
    
    .courses-content {
        min-height: auto;
    }
    
    .course-detail {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .course-left {
        order: 2;
        padding: 2rem;
    }
    
    .course-right {
        order: 1;
    }
    
    .course-duration {
        font-size: 0.75rem;
        padding: 0.4rem 0.9rem;
        margin-bottom: 1rem;
    }
    
    .course-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .course-description {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .course-image-placeholder {
        height: 220px;
        border-radius: 10px;
    }
    
    .course-features {
        margin-bottom: 2rem;
    }
    
    .feature-row {
        padding: 0.75rem 0;
        gap: 0.75rem;
    }
    
    .feature-icon {
        font-size: 1rem;
    }
    
    .course-price {
        margin: 2rem 0 1.5rem;
        padding: 1.5rem;
    }
    
    .price-range {
        gap: 1rem;
    }
    
    .price-amount {
        font-size: 2.2rem;
    }
    
    .price-currency {
        font-size: 1rem;
    }
    
    .price-separator {
        font-size: 1.5rem;
    }
    
    .price-description {
        font-size: 0.85rem;
    }
    
    .price-label {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        color: var(--text-light);
    }
    
    .price-value {
        font-size: 1.3rem;
        line-height: 1.3;
        font-weight: 400;
        white-space: nowrap;
    }
    
    .course-btn {
        width: 100%;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .why-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .why-left {
        position: static;
    }
    
    .advantage-item {
        grid-template-columns: 60px 1fr;
        gap: 2rem;
        padding: 2rem 0;
    }
    
    .advantage-number {
        font-size: 1.8rem;
    }
    
    .advantage-content h3 {
        font-size: 1.4rem;
    }
    
    .instructor-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .instructor-photo {
        position: static;
    }
    
    .photo-placeholder {
        height: 400px;
    }
    
    .instructor-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .program-tabs {
        gap: 0.5rem;
        margin: 1.5rem 0;
        justify-content: flex-start;
    }
    
    .program-tab {
        padding: 0.65rem 1rem;
        font-size: 0.85rem;
    }
    
    .program-content-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .day-title {
        font-size: 1.5rem;
    }
    
    .day-description {
        font-size: 0.9rem;
    }
    
    .module-item {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1.25rem 0;
    }
    
    .module-time {
        font-size: 1.2rem;
        width: auto;
    }
    
    .module-content h4 {
        font-size: 1.05rem;
    }
    
    .module-content p {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .comparison-slider {
        height: 300px;
    }
    
    .showcase-title {
        font-size: 1.8rem;
    }
    
    .carousel-item {
        flex: 0 0 150px;
    }
    
    .carousel-nav {
        display: none;
    }
    
    .gallery-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .gallery-stats .stat-card {
        padding: 1.5rem;
    }
    
    .gallery-stats .stat-number {
        font-size: 2.5rem;
    }
    
    .pricing-toggle {
        max-width: 100%;
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .toggle-btn {
        font-size: 0.8rem;
        padding: 0.8rem 1rem;
    }
    
    .toggle-text-full {
        display: none;
    }
    
    .toggle-text-short {
        display: inline;
    }
    
    .card-title {
        font-size: 2rem;
    }
    
    .price-full,
    .price-installment {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .pricing-benefits {
        grid-template-columns: repeat(2, 1fr);
        padding: 2rem;
    }
    
    .instructor-name {
        font-size: 2rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .about-story p {
        font-size: 1rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .instagram-button {
        padding: 1.5rem 3rem;
        font-size: 1.2rem;
        gap: 1rem;
    }
    
    .instagram-button svg {
        width: 30px;
        height: 30px;
    }
    
    .contact-info-simple {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Further optimize for small devices */
    * {
        transition-duration: 0.2s !important;
    }
    
    .hero {
        padding: 90px 0 40px;
    }
    
    .hero-label {
        font-size: 0.65rem;
        padding: 0.3rem 0.75rem;
        letter-spacing: 0.5px;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.25;
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }
    
    .hero-carousel {
        display: none !important;
    }
    
    .hero-buttons {
        gap: 0.65rem;
        margin-bottom: 2rem;
    }
    
    .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn-link {
        font-size: 0.9rem;
    }
    
    .hero-stats {
        gap: 0.5rem;
        padding-top: 1.25rem;
    }
    
    .stat {
        flex: 0 0 calc(50% - 0.25rem);
    }
    
    .stat-number {
        font-size: 1.4rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        line-height: 1.2;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .course-tab {
        font-size: 0.75rem;
        padding: 0.7rem 1rem;
    }
    
    .course-title {
        font-size: 1.5rem;
    }
    
    .course-description {
        font-size: 0.9rem;
    }
    
    .course-image-placeholder {
        height: 180px;
    }
    
    .feature-row {
        font-size: 0.85rem;
        padding: 0.6rem 0;
    }
    
    .price-value {
        font-size: 1.1rem;
        line-height: 1.4;
        white-space: nowrap;
    }
    
    .price-label {
        font-size: 0.75rem;
    }
    
    .course-btn {
        font-size: 0.95rem;
        padding: 0.9rem 1.5rem;
    }
    
    .service-card,
    .price-card {
        padding: 1.5rem;
    }
    
    .why-us {
        padding: 3rem 0;
    }
    
    .why-us .section-header {
        margin-bottom: 2rem;
    }
    
    .section-header .section-label {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .advantages-grid {
        gap: 0.75rem;
    }
    
    .adv-number {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .advantage-card {
        padding: 1.25rem 1rem;
    }
    
    .advantage-card h3 {
        font-size: 1rem;
        margin-bottom: 0.35rem;
    }
    
    .advantage-card p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .card-title {
        font-size: 1.6rem;
    }
    
    .card-label {
        font-size: 0.75rem;
    }
    
    .card-duration {
        font-size: 0.85rem;
    }
    
    .pricing-toggle {
        gap: 0.4rem;
    }
    
    .toggle-btn {
        font-size: 0.75rem;
        padding: 0.75rem 0.85rem;
        line-height: 1.3;
    }
    
    .toggle-text-full {
        display: none;
    }
    
    .toggle-text-short {
        display: inline;
    }
    
    .price-full,
    .price-installment {
        font-size: 1.8rem;
        line-height: 1.4;
    }
    
    .pricing-benefits {
        grid-template-columns: repeat(2, 1fr);
        padding: 1.5rem 1rem;
        gap: 1rem;
        margin-top: 2rem;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, var(--bg-light) 100%);
    }
    
    .benefit-item {
        background: var(--bg-white);
        padding: 1.25rem 1rem;
        border-radius: 12px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
        transition: all 0.3s ease;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    .benefit-item:hover {
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    .benefit-item:active {
        transform: translateY(0);
    }
    
    .benefit-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-item h4 {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
        font-weight: 600;
    }
    
    .benefit-item p {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .instructor-name {
        font-size: 1.75rem;
    }
    
    .instructor-title {
        font-size: 1rem;
    }
    
    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 1.5rem;
    }
    
    .exp-number {
        font-size: 2rem;
    }
    
    .exp-label {
        font-size: 0.8rem;
    }
    
    .about-story h3 {
        font-size: 1.5rem;
    }
    
    .about-story p {
        font-size: 0.95rem;
    }
    
    .credentials {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .credential-year {
        font-size: 1.2rem;
    }
    
    .credential-text {
        font-size: 0.9rem;
    }
    
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .instagram-button {
        padding: 1.25rem 2.5rem;
        font-size: 1.1rem;
        gap: 1rem;
    }
    
    .instagram-button svg {
        width: 28px;
        height: 28px;
    }
    
    .contact-info-simple {
        gap: 1.25rem;
        padding: 1rem 0;
    }
    
    .info-item {
        padding: 1rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
    }
    
    .info-label {
        font-size: 0.75rem;
    }
    
    .info-item a {
        font-size: 1rem;
    }
    
    .footer-logo {
        font-size: 1.2rem;
    }
    
    .footer-tagline {
        font-size: 0.85rem;
    }
    
    .footer-phone {
        font-size: 1.1rem;
    }
    
    .contact-form-container {
        padding: 2rem;
    }
    
    .modal-content {
        margin: 1rem;
        padding: 2rem;
    }
    
    .pricing-benefits {
        grid-template-columns: 1fr;
        padding: 1.25rem;
        gap: 0.875rem;
        margin-top: 2rem;
    }
    
    .benefit-item {
        padding: 1.1rem 0.875rem;
        border-radius: 10px;
    }
    
    .benefit-icon {
        font-size: 1.6rem;
        margin-bottom: 0.65rem;
    }
    
    .benefit-item h4 {
        font-size: 0.9rem;
        margin-bottom: 0.35rem;
    }
    
    .benefit-item p {
        font-size: 0.8rem;
    }
}

/* ============================================
   WORKSPACE RENTAL SECTION
   ============================================ */

.workspace-rental {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.rental-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    position: relative;
}

.rental-card.featured {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a1a1a 100%);
    color: white;
    border: none;
    transform: scale(1.02);
}

.rental-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.rental-card.featured:hover {
    transform: scale(1.02) translateY(-8px);
}

.featured-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rental-badge {
    display: inline-block;
    background: rgba(226, 201, 173, 0.2);
    color: var(--secondary-color);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

.rental-card.featured .rental-badge {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent-color);
}

.rental-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: var(--secondary-color);
    font-family: 'Raleway', sans-serif;
}

.rental-card.featured .rental-title {
    color: var(--accent-color);
}

.rental-features {
    list-style: none;
    margin-bottom: 2rem;
}

.rental-features li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-light);
}

.rental-card.featured .rental-features li {
    color: rgba(255, 255, 255, 0.9);
}

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

.rental-card.featured .rental-features li::before {
    color: var(--accent-color);
}

.rental-price-block {
    padding: 1.5rem;
    background: rgba(226, 201, 173, 0.1);
    border-radius: 12px;
    text-align: center;
    margin-bottom: 2rem;
}

.rental-card.featured .rental-price-block {
    background: rgba(255, 255, 255, 0.1);
}

.rental-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.rental-amount {
    font-size: 3rem;
    font-weight: 300;
    color: var(--secondary-color);
    font-family: 'Inter', sans-serif;
}

.rental-card.featured .rental-amount {
    color: white;
}

.rental-currency {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--primary-color);
}

.rental-card.featured .rental-currency {
    color: var(--accent-color);
}

.rental-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.rental-card.featured .rental-period {
    color: rgba(255, 255, 255, 0.8);
}

.rental-btn {
    width: 100%;
    padding: 1.2rem 2rem;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.rental-card.featured .rental-btn {
    background: var(--accent-color);
    color: var(--secondary-color);
}

.rental-card.featured .rental-btn:hover {
    background: white;
}

.rental-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    position: relative;
    text-align: center;
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 12px;
    transition: var(--transition);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 12px 12px 0 0;
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.info-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

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

/* Responsive для аренды */

@media (max-width: 992px) {
    .rental-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .rental-info {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .workspace-rental {
        padding: 4rem 0;
    }
    
    .rental-card {
        padding: 2rem;
    }
    
    .rental-amount {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .rental-card {
        padding: 1.5rem;
    }
    
    .rental-title {
        font-size: 1.2rem;
    }
    
    .rental-features li {
        font-size: 0.9rem;
    }
    
    .rental-amount {
        font-size: 2rem;
    }
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 6rem 0;
    background: var(--bg-white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.faq-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-left-color: var(--accent-color);
}

.faq-question {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-family: 'Raleway', sans-serif;
}

.faq-answer {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 5rem;
    font-family: serif;
    color: var(--primary-color);
    opacity: 0.1;
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffc107;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding-top: 1rem;
}

.author-name {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 0.25rem;
}

.author-info {
    font-size: 0.85rem;
    color: var(--text-light);
}

/* Responsive для FAQ и отзывов */

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 4rem 0;
    }
    
    .testimonials {
        padding: 4rem 0;
    }
    
    .faq-item {
        padding: 1.5rem;
    }
    
    .faq-question {
        font-size: 1.05rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .faq-item {
        padding: 1.25rem;
    }
    
    .faq-question {
        font-size: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
    .testimonial-card {
        padding: 1.25rem;
    }
    
    .testimonial-text {
        font-size: 0.9rem;
    }
}

