/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #FFB627;
    --dark-color: #FFA000;
    --light-color: #FFCA28;
    --accent-color: #FFC107;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray: #333333;
    --light-gray: #F5F5F5;
    --bg-light: #FFFCF5;
    --bg-gradient: linear-gradient(135deg, #FFFDF8 0%, #FFFEF9 50%, #FFFDF8 100%);
    --shadow: 0 10px 50px rgba(255, 182, 39, 0.15);
    --shadow-hover: 0 15px 60px rgba(255, 182, 39, 0.25);
}

html {
    scroll-behavior: smooth;
}

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

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

.section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 60px;
    color: var(--black);
    position: relative;
    letter-spacing: -1px;
}

.section-title::after {
    content: '';
    display: block;
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--light-color));
    margin: 20px auto 0;
    border-radius: 3px;
    animation: expand 2s ease-in-out infinite;
}

@keyframes expand {
    0%, 100% { width: 100px; }
    50% { width: 150px; }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--black);
    letter-spacing: -1px;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 50px;
    width: auto;
}

.logo-text {
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link:hover {
    color: var(--dark-color);
}

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

.lang-switcher {
    display: flex;
    gap: 5px;
    background: var(--light-gray);
    padding: 5px;
    border-radius: 25px;
}

.lang-btn {
    padding: 8px 16px;
    border: none;
    background: transparent;
    color: var(--gray);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    color: var(--white);
    font-weight: 700;
}

.lang-btn:hover:not(.active) {
    color: var(--black);
}

.login-btn {
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--dark-color));
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 182, 39, 0.3);
}

.login-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 182, 39, 0.4);
}

.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.burger span {
    width: 25px;
    height: 3px;
    background: var(--black);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 80%, rgba(255, 202, 40, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 182, 39, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 193, 7, 0.08) 0%, transparent 40%),
        linear-gradient(135deg, #FFFFFA 0%, #FFFEF5 25%, #FFFFFA 50%, #FFFDF0 75%, #FFFFFA 100%);
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    border-radius: 50%;
    opacity: 0.08;
    animation: float 6s ease-in-out infinite;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    top: 60%;
    right: 15%;
    animation-delay: 1s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    bottom: 20%;
    left: 20%;
    animation-delay: 2s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    top: 30%;
    right: 10%;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-30px) rotate(10deg);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, rgba(255, 202, 40, 0.15), rgba(255, 193, 7, 0.15));
    border: 2px solid rgba(255, 182, 39, 0.3);
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-top: 20px;
    margin-bottom: 30px;
    animation: pulse 2s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.hero-logo {
    display: flex;
    justify-content: center;
    margin: 30px 0;
}

.hero-logo-icon {
    width: 120px;
    height: auto;
    animation: float 3s ease-in-out infinite;
}

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

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -3px;
}

.hero-title .word {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--light-color) 50%, var(--dark-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideIn 0.8s ease-out backwards;
    text-shadow: 0 4px 20px rgba(255, 182, 39, 0.3);
}

.hero-title .word:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title .word:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-description {
    font-size: 1.3rem;
    color: var(--gray);
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 1s ease-out 0.5s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease-out 0.7s backwards;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 182, 39, 0.4);
    font-weight: 600;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 182, 39, 0.5);
    background: linear-gradient(135deg, var(--light-color), var(--primary-color));
}

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

.btn-secondary:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-3px);
}

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

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    z-index: 10;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.scroll-indicator:hover {
    opacity: 1;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-15px);
    }
}

.mouse {
    width: 28px;
    height: 48px;
    border: 2.5px solid var(--black);
    border-radius: 20px;
    position: relative;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

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

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ========== ABOUT SECTION ========== */
.about {
    background: var(--white);
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--black);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.8;
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--black);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.feature-card p {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
}

/* ========== PRINCIPLES SECTION ========== */
.principles {
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
}

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

.principle-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.principle-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--light-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.principle-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.principle-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(255, 182, 39, 0.1);
}

.principle-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.principle-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
}

.principle-card p {
    color: var(--gray);
    line-height: 1.7;
}

/* ========== TARIFFS SECTION ========== */
.tariffs {
    background: var(--white);
}

.tariff-badge {
    text-align: center;
    padding: 20px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 auto 60px;
    display: block;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 10px 30px rgba(255, 182, 39, 0.4);
}

.badge-icon {
    font-size: 1.5rem;
    margin-right: 10px;
}

.tariffs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 40px;
}

.tariff-box {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.tariff-box:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.tariff-box.featured {
    border-color: var(--primary-color);
    transform: scale(1.05);
}

.tariff-box.featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    color: var(--white);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(255, 182, 39, 0.4);
}

.tariff-header {
    text-align: center;
    margin-bottom: 30px;
}

.tariff-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.tariff-header h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--black);
}

.tariff-price {
    text-align: center;
    margin-bottom: 30px;
}

.price-label {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--black);
}

.tariff-features {
    list-style: none;
}

.tariff-features li {
    padding: 12px 0;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
}

.tariff-features .check {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.important-note {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background: rgba(255, 182, 39, 0.1);
    border-left: 5px solid var(--primary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.note-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.important-note p {
    color: var(--gray);
    line-height: 1.7;
}

/* ========== SERVICES SECTION ========== */
.services {
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
}

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

.service-item {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-item:hover::before {
    opacity: 0.1;
}

.service-item:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: var(--shadow-hover);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.service-item h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--black);
    position: relative;
    z-index: 1;
}

.service-item p {
    color: var(--gray);
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.services-note {
    text-align: center;
    font-size: 1.1rem;
    color: var(--gray);
    font-style: italic;
    max-width: 700px;
    margin: 0 auto;
}

/* ========== STAFF SECTION ========== */
.staff {
    background: var(--white);
}

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

.staff-category {
    background: var(--white);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.staff-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.staff-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 3px solid var(--primary-color);
}

.staff-icon {
    font-size: 2.5rem;
}

.staff-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
}

.staff-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.staff-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--light-gray);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.staff-item:hover {
    background: rgba(255, 182, 39, 0.1);
    transform: translateX(5px);
}

.staff-item .role {
    color: var(--gray);
    font-weight: 500;
}

.staff-item .count {
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    color: var(--white);
    font-weight: 700;
    padding: 5px 15px;
    border-radius: 20px;
    min-width: 40px;
    text-align: center;
}

.schedule-info {
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.schedule-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    text-align: center;
    color: var(--black);
}

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

.schedule-item {
    background: rgba(255, 255, 255, 0.9);
    padding: 20px;
    border-radius: 15px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.schedule-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.schedule-item strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--black);
}

.schedule-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* ========== CONTACTS SECTION ========== */
.contacts {
    background: linear-gradient(135deg, var(--bg-light) 0%, #FFFFFF 100%);
}

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

.contact-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-feature {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}

.contact-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-hover);
}

.contact-feature .feature-icon {
    font-size: 2.5rem;
    width: auto;
    height: auto;
    background: none;
}

.contact-feature h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--black);
}

.contact-info {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow);
}

.contact-info h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--black);
    text-align: center;
}

.phone-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.phone-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: var(--light-gray);
    border-radius: 10px;
    text-decoration: none;
    color: var(--black);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-item:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    color: var(--white);
    transform: translateX(5px);
}

.phone-icon {
    font-size: 1.5rem;
}

/* ========== CTA SECTION ========== */
.cta {
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    position: relative;
    overflow: hidden;
    padding: 120px 0;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(0,0,0,0.05)"/></svg>');
    opacity: 0.3;
}

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

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--white);
    line-height: 1.3;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-content .btn-primary {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.cta-content .btn-primary:hover {
    background: var(--white);
    color: var(--dark-color);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.cta-tagline {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid rgba(255, 255, 255, 0.2);
}

.cta-tagline h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
}

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

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

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-logo {
    width: 60px;
    height: auto;
}

.footer-brand h3 {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--light-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 15px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

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

/* ========== ANIMATIONS ========== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.9);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-20deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .lang-switcher {
        margin-left: auto;
        margin-right: 20px;
    }

    .burger {
        display: flex;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-logo-icon {
        width: 100px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
    }

    .hero-description {
        font-size: 1.1rem;
        padding: 0 10px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .container {
        padding: 0 15px;
    }

    /* Карточки в одну колонку на планшетах */
    .about-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .principles-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

    .tariff-box.featured {
        transform: scale(1);
    }

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

    .staff-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

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

    /* Скрываем scroll indicator на планшетах и меньше */
    .scroll-indicator {
        bottom: 20px;
    }

    .mouse {
        width: 24px;
        height: 40px;
        border-width: 2px;
    }

    .wheel {
        height: 10px;
        top: 10px;
    }

    /* Уменьшаем отступы для CTA секции */
    .cta {
        padding: 80px 0;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    /* Навигация */
    .logo-image {
        height: 40px;
    }

    .navbar .container {
        padding: 15px;
    }

    /* Hero секция */
    .hero {
        padding-top: 80px;
        min-height: 100vh;
        padding-bottom: 80px;
        display: flex;
        align-items: center;
    }

    .hero-logo-icon {
        width: 90px;
        margin-bottom: 10px;
    }

    .hero-title {
        font-size: 3rem;
        letter-spacing: -2px;
        margin-bottom: 25px;
    }

    .hero-badge {
        font-size: 0.85rem;
        padding: 10px 20px;
        margin-top: 15px;
        margin-bottom: 25px;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 35px;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        gap: 15px;
        flex-direction: column;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .btn {
        padding: 14px 28px;
        font-size: 1rem;
        width: 100%;
    }

    .scroll-indicator {
        bottom: 25px;
    }

    .mouse {
        width: 26px;
        height: 44px;
    }

    /* Секции */
    .section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 35px;
        letter-spacing: -0.5px;
    }

    .section-title::after {
        width: 70px;
        height: 4px;
        margin-top: 18px;
    }

    /* About секция */
    .lead {
        font-size: 1.3rem;
        line-height: 1.5;
        margin-bottom: 20px;
    }

    .about-text p {
        font-size: 1.05rem;
        line-height: 1.7;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-icon {
        width: 65px;
        height: 65px;
    }

    .feature-card h3 {
        font-size: 1.15rem;
        line-height: 1.4;
    }

    .feature-card p {
        font-size: 0.95rem;
    }

    /* Принципы */
    .principle-card {
        padding: 35px 25px;
    }

    .principle-number {
        font-size: 2.2rem;
    }

    .principle-icon {
        font-size: 2.8rem;
    }

    .principle-card h3 {
        font-size: 1.25rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }

    .principle-card p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Тарифы */
    .tariff-badge {
        font-size: 1.05rem;
        padding: 16px 28px;
        margin-bottom: 45px;
        line-height: 1.5;
    }

    .tariff-box {
        padding: 35px 25px;
    }

    .tariff-icon {
        font-size: 2.8rem;
    }

    .tariff-header h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .price-label {
        font-size: 1.6rem;
    }

    .tariff-features li {
        font-size: 0.98rem;
        line-height: 1.6;
        padding: 12px 0;
    }

    .important-note {
        padding: 25px 20px;
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .important-note strong {
        font-size: 1.05rem;
    }

    .important-note p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Услуги */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .service-item {
        padding: 35px 25px;
    }

    .service-icon {
        font-size: 2.8rem;
    }

    .service-item h3 {
        font-size: 1.2rem;
        line-height: 1.4;
        margin-bottom: 10px;
    }

    .service-item p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Персонал */
    .staff-header {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .staff-header h3 {
        font-size: 1.3rem;
    }

    .staff-item {
        padding: 12px;
    }

    .schedule-info {
        padding: 30px 20px;
    }

    .schedule-info h3 {
        font-size: 1.5rem;
    }

    .schedule-items {
        grid-template-columns: 1fr;
    }

    /* Контакты */
    .contact-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        padding: 20px 15px;
    }

    .contact-feature h3 {
        font-size: 1.15rem;
        line-height: 1.4;
    }

    .contact-feature p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .contact-info {
        padding: 35px 25px;
    }

    .phone-item {
        font-size: 1.05rem;
        padding: 14px 18px;
    }

    .phone-item a {
        font-size: 1.1rem;
    }

    /* CTA */
    .cta {
        padding: 70px 0;
    }

    .cta-content h2 {
        font-size: 1.8rem;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .cta-content p {
        font-size: 1.05rem;
        margin-bottom: 35px;
        line-height: 1.7;
    }

    .cta-tagline {
        margin-top: 45px;
        padding-top: 30px;
    }

    .cta-tagline h3 {
        font-size: 1.4rem;
        line-height: 1.4;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-logo {
        width: 50px;
    }

    .footer-brand h3 {
        font-size: 1.5rem;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.1rem;
    }

    .footer-links a {
        padding: 8px 0;
        font-size: 0.95rem;
    }

    /* Улучшенные touch targets */
    .nav-link {
        padding: 15px 10px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .lang-btn {
        min-width: 50px;
        min-height: 44px;
        padding: 10px 15px;
    }
}

/* Экстра маленькие экраны */
@media (max-width: 375px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .btn {
        padding: 12px 24px;
        font-size: 0.95rem;
        min-height: 48px;
    }

    .container {
        padding: 0 15px;
    }

    .feature-card,
    .principle-card,
    .service-item {
        padding: 30px 20px;
    }
}
