/* ========================================
   MUNO ABA — Creative Landing Page
   Центр развития ребенка
   ======================================== */

:root {
    --primary: #415244;
    --primary-light: #A3CCAA;
    --primary-dark: #2d3a2f;
    --primary-glow: rgba(163, 204, 170, 0.4);
    --bg-warm: #F5F5F0;
    --bg-white: #FFFFFF;
    --bg-light: #FAFAF8;
    --text-dark: #333333;
    --text-gray: #666666;
    --text-light: #999999;
    --border: #E0E0E0;
    --border-light: #F0F0EC;
    --shadow: 0 4px 24px rgba(65, 82, 68, 0.08);
    --shadow-lg: 0 20px 60px rgba(65, 82, 68, 0.12);
    --shadow-xl: 0 30px 80px rgba(65, 82, 68, 0.16);
    --radius: 20px;
    --radius-lg: 28px;
    --radius-xl: 36px;
    --transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --font: 'Onest', -apple-system, BlinkMacSystemFont, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font);
    color: var(--text-dark);
    background: var(--bg-warm);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* ========================================
   SCROLL PROGRESS
   ======================================== */
.scroll-progress {
    position: fixed;
    top: 0; left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    z-index: 10001;
    width: 0%;
    transition: width 0.1s linear;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font);
    font-size: 15px;
    font-weight: 600;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    box-shadow: 0 8px 24px rgba(65, 82, 68, 0.25);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(65, 82, 68, 0.35);
}

.btn-accent {
    background: linear-gradient(135deg, var(--primary-light) 0%, #8FBA96 100%);
    color: var(--primary-dark);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid rgba(65, 82, 68, 0.3);
}

.btn-outline:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-3px);
}

.btn-sm { padding: 12px 24px; font-size: 14px; }

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    z-index: 1000;
    border-bottom: 1px solid rgba(224, 224, 224, 0.5);
    transition: var(--transition);
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(65, 82, 68, 0.1);
}

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

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

.logo-img {
    height: 46px;
    width: auto;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(65, 82, 68, 0.15);
}

.logo-text { display: flex; flex-direction: column; }

.logo-name {
    font-size: 21px;
    font-weight: 900;
    color: var(--primary);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-gray);
    letter-spacing: 0.5px;
}

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

.nav-link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-gray);
    transition: var(--transition);
    position: relative;
    padding: 6px 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
}

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

.header-right { display: flex; align-items: center; gap: 20px; }

.header-phone {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    transition: var(--transition);
}

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

.header-btn { padding: 12px 26px; font-size: 14px; }

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

.menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background: var(--primary);
    transition: var(--transition);
    border-radius: 2px;
}

.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========================================
   MOBILE MENU
   ======================================== */
.mobile-menu {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transform: translateY(-20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
}

.mobile-menu.active {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-link {
    padding: 14px 18px;
    font-size: 17px;
    font-weight: 500;
    color: var(--text-dark);
    border-radius: 14px;
    transition: var(--transition);
}

.mobile-nav-link:hover {
    background: var(--bg-warm);
    color: var(--primary);
}

.mobile-phone {
    display: block;
    margin-top: 16px;
    padding: 14px 18px;
    font-weight: 600;
    color: var(--primary);
    text-align: center;
    border-top: 1px solid var(--border-light);
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary) 0%, #4a6350 40%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 76px;
}

.hero-bg-img {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('../images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.25;
    mix-blend-mode: overlay;
}

.hero-particles {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero-particles span {
    position: absolute;
    width: 8px; height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.hero-particles span:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; width: 12px; height: 12px; }
.hero-particles span:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { left: 30%; top: 30%; animation-delay: 2s; width: 6px; height: 6px; }
.hero-particles span:nth-child(4) { left: 50%; top: 80%; animation-delay: 0.5s; width: 10px; height: 10px; }
.hero-particles span:nth-child(5) { left: 70%; top: 40%; animation-delay: 1.5s; }
.hero-particles span:nth-child(6) { left: 80%; top: 70%; animation-delay: 3s; width: 14px; height: 14px; }
.hero-particles span:nth-child(7) { left: 90%; top: 20%; animation-delay: 2.5s; }
.hero-particles span:nth-child(8) { left: 15%; top: 85%; animation-delay: 4s; width: 8px; height: 8px; }
.hero-particles span:nth-child(9) { left: 60%; top: 15%; animation-delay: 1s; width: 6px; height: 6px; }
.hero-particles span:nth-child(10) { left: 40%; top: 50%; animation-delay: 3.5s; }
.hero-particles span:nth-child(11) { left: 85%; top: 55%; animation-delay: 2s; }
.hero-particles span:nth-child(12) { left: 5%; top: 45%; animation-delay: 5s; width: 10px; height: 10px; }
.hero-particles span:nth-child(13) { left: 55%; top: 65%; animation-delay: 0.8s; }
.hero-particles span:nth-child(14) { left: 75%; top: 25%; animation-delay: 4.5s; width: 8px; height: 8px; }
.hero-particles span:nth-child(15) { left: 25%; top: 75%; animation-delay: 3s; }

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 680px;
    padding: 80px 0;
}

.hero-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-label-dot {
    width: 8px; height: 8px;
    background: var(--primary-light);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

.hero-title {
    font-size: 60px;
    font-weight: 900;
    color: #fff;
    line-height: 1.05;
    margin-bottom: 24px;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 44px;
    max-width: 520px;
}

.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

.hero .btn-primary {
    background: #fff;
    color: var(--primary);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}

.hero .btn-primary:hover {
    background: var(--bg-warm);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.hero .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.hero .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
}

.hero-stats {
    display: flex;
    gap: 56px;
    margin-top: 72px;
    padding-top: 36px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat { text-align: center; }

.hero-stat-value {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 6px;
}

.hero-scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    width: 52px; height: 52px;
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    transition: var(--transition);
    animation: float 2.5s ease-in-out infinite;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-scroll:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ========================================
   SECTIONS
   ======================================== */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-white); }

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, rgba(163, 204, 170, 0.2) 0%, rgba(163, 204, 170, 0.35) 100%);
    color: var(--primary);
    font-size: 13px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 46px;
    font-weight: 900;
    color: var(--text-dark);
    line-height: 1.12;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-desc {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   ABOUT SECTION
   ======================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-content .section-label { margin-bottom: 18px; }

.about-content .section-title {
    text-align: left;
    margin-bottom: 28px;
}

.about-text {
    font-size: 17px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 18px;
}

.about-visual { position: relative; }

.about-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    position: relative;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(65, 82, 68, 0.05) 0%, rgba(163, 204, 170, 0.1) 100%);
    pointer-events: none;
}

.about-floating-card {
    position: absolute;
    bottom: 30px;
    right: -24px;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 18px 24px;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1px solid var(--border-light);
    animation: float 4s ease-in-out infinite;
    z-index: 3;
}

.about-floating-icon {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #8FBA96 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.about-floating-text { display: flex; flex-direction: column; gap: 2px; }

.about-floating-text strong {
    font-size: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.about-floating-text span {
    font-size: 13px;
    color: var(--text-gray);
}

.about-quote {
    margin-top: 36px;
    padding: 28px 32px;
    background: linear-gradient(135deg, rgba(163, 204, 170, 0.12) 0%, rgba(163, 204, 170, 0.2) 100%);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--primary-light);
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 16px;
    position: relative;
}

.about-quote::before {
    content: '"';
    position: absolute;
    top: 8px;
    left: 16px;
    font-size: 48px;
    color: var(--primary-light);
    font-family: Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

.about-quote-author {
    margin-top: 14px;
    font-style: normal;
    font-weight: 600;
    color: var(--primary);
    font-size: 14px;
}

/* ========================================
   CARDS / SERVICES
   ======================================== */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    transition: height 0.35s ease;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.card:hover::before { height: 4px; }

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

.card-icon {
    width: 60px; height: 60px;
    background: linear-gradient(135deg, rgba(163, 204, 170, 0.25) 0%, rgba(163, 204, 170, 0.4) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary);
    transition: var(--transition);
}

.card:hover .card-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    transform: scale(1.1) rotate(-5deg);
}

.card-icon svg { width: 28px; height: 28px; }

.card-title {
    font-size: 21px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.card-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   FOR WHOM
   ======================================== */
.forwhom-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.forwhom-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
}

.forwhom-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.forwhom-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.forwhom-card-image-placeholder {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light) 0%, #8FBA96 50%, var(--primary) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
}

.forwhom-card-body { padding: 32px; }

.forwhom-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(163, 204, 170, 0.2);
    color: var(--primary);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 14px;
    transition: var(--transition);
}

.forwhom-card:hover .forwhom-badge {
    background: var(--primary);
    color: #fff;
}

.forwhom-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.forwhom-text {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   STEPS
   ======================================== */
.steps-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 36px;
    left: 15%; right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary), var(--primary-light));
    background-size: 200% 100%;
    animation: shimmer 3s linear infinite;
    z-index: 0;
}

.step {
    flex: 1;
    max-width: 320px;
    text-align: center;
    position: relative;
    z-index: 1;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.step.visible {
    opacity: 1;
    transform: translateY(0);
}

.step-num {
    width: 72px; height: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin: 0 auto 24px;
    box-shadow: 0 8px 24px rgba(65, 82, 68, 0.2);
    transition: var(--transition);
    position: relative;
}

.step-num::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(163, 204, 170, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.step:hover .step-num {
    transform: scale(1.12);
    box-shadow: 0 12px 32px rgba(65, 82, 68, 0.3);
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.step-text {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.7;
}

/* ========================================
   WHY US / FEATURES
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature {
    text-align: center;
    padding: 40px 28px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.feature-icon {
    width: 80px; height: 80px;
    background: linear-gradient(135deg, rgba(163, 204, 170, 0.2) 0%, rgba(163, 204, 170, 0.35) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary);
    transition: var(--transition);
}

.feature:hover .feature-icon {
    transform: scale(1.15) rotate(8deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
}

.feature-icon svg { width: 32px; height: 32px; }

.feature-title {
    font-size: 19px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.feature-text {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.65;
}

/* ========================================
   PARTNERS
   ======================================== */
.partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.partner-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 44px 36px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.partner-card:hover::after { transform: scaleX(1); }

.partner-card.featured::after { transform: scaleX(1); }

.partner-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.partner-card.featured {
    border-color: var(--primary-light);
    background: linear-gradient(135deg, var(--bg-white) 0%, rgba(163, 204, 170, 0.06) 100%);
}

.partner-tag {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 18px;
}

.partner-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 14px;
}

.partner-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.75;
    margin-bottom: 24px;
}

.partner-steps {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.partner-step {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 15px;
    color: var(--text-dark);
}

.partner-step-num {
    width: 32px; height: 32px;
    background: linear-gradient(135deg, rgba(163, 204, 170, 0.25) 0%, rgba(163, 204, 170, 0.4) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: var(--primary);
    flex-shrink: 0;
    transition: var(--transition);
}

.partner-card:hover .partner-step-num {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
}

/* ========================================
   CTA / FORM
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, var(--primary) 0%, #3d4f40 50%, var(--primary-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 80px 64px;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(163, 204, 170, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -50%; left: -20%;
    width: 60%; height: 150%;
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-title {
    font-size: 40px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}

.cta-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 44px;
}

/* ========================================
   FORMS
   ======================================== */
.form { display: flex; flex-direction: column; gap: 20px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
    text-align: left;
}

.form-group label {
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.form-input {
    padding: 16px 22px;
    border: 2px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-family: var(--font);
    font-size: 15px;
    transition: var(--transition);
    outline: none;
}

.form-input::placeholder { color: rgba(255, 255, 255, 0.45); }

.form-input:focus {
    border-color: var(--primary-light);
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-input option { color: var(--text-dark); }

textarea.form-input { min-height: 110px; resize: vertical; }

.form-light .form-input {
    border-color: var(--border);
    background: var(--bg-white);
    color: var(--text-dark);
}

.form-light .form-input::placeholder { color: var(--text-light); }

.form-light .form-input:focus { border-color: var(--primary-light); }

.form-light label { color: var(--text-gray); }

.form-success {
    padding: 16px;
    background: rgba(163, 204, 170, 0.25);
    border-radius: var(--radius);
    color: var(--primary-dark);
    font-weight: 600;
    text-align: center;
}

.form-error {
    padding: 16px;
    background: rgba(244, 67, 54, 0.1);
    border-radius: var(--radius);
    color: #c62828;
    font-weight: 600;
    text-align: center;
}

/* ========================================
   CONTACTS
   ======================================== */
.contacts-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.contacts-info {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 22px 24px;
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

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

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
}

.contact-icon {
    width: 52px; height: 52px;
    min-width: 52px;
    background: linear-gradient(135deg, rgba(163, 204, 170, 0.2) 0%, rgba(163, 204, 170, 0.35) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.contact-icon svg { width: 22px; height: 22px; }

.contact-label {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 3px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.5;
}

.contact-value a {
    color: var(--primary);
    transition: var(--transition);
}

.contact-value a:hover { color: var(--primary-dark); }

.contacts-map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.contacts-map iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border: none;
    display: block;
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    padding: 72px 0 36px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.3fr 1fr;
    gap: 56px;
    margin-bottom: 52px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo-img {
    height: 46px;
    width: auto;
    border-radius: 50%;
    background: #fff;
    padding: 4px;
}

.footer-logo-name {
    font-size: 21px;
    font-weight: 900;
    color: #fff;
}

.footer-logo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.75;
}

.footer-title {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 22px;
    color: #fff;
}

.footer-nav { display: flex; flex-direction: column; gap: 11px; }

.footer-nav a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-nav a:hover {
    color: var(--primary-light);
    padding-left: 8px;
}

.footer-contacts { display: flex; flex-direction: column; gap: 14px; }

.footer-contact {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact:hover { color: #fff; }

.footer-social { display: flex; gap: 12px; }

.social-link {
    width: 42px; height: 42px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
    transform: translateY(-3px);
}

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

/* ========================================
   REVEAL ANIMATIONS
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ========================================
   TOAST
   ======================================== */
.toast {
    position: fixed;
    bottom: 28px;
    right: 28px;
    padding: 16px 28px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border-radius: var(--radius);
    font-size: 15px;
    font-weight: 500;
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transform: translateY(120px);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.error { background: linear-gradient(135deg, #c62828 0%, #b71c1c 100%); }

/* ========================================
   BUTTON LOADING
   ======================================== */
.btn-loading {
    pointer-events: none;
    opacity: 0.75;
}

.btn-loading::before {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin-right: 8px;
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ========================================
   KEYFRAMES
   ======================================== */
@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

/* ========================================
   ADMIN PANEL STYLES
   ======================================== */
.admin-body {
    display: flex;
    min-height: 100vh;
    background: var(--bg-warm);
}

.admin-sidebar {
    width: 270px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; bottom: 0;
    z-index: 100;
    overflow-y: auto;
}

.admin-sidebar-header {
    padding: 28px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-sidebar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.admin-sidebar-logo img {
    height: 38px;
    width: auto;
    border-radius: 50%;
    background: #fff;
    padding: 3px;
}

.admin-nav {
    flex: 1;
    padding: 16px 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 14px;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    transition: var(--transition);
}

.admin-nav a:hover,
.admin-nav a.active {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

.admin-nav a.active {
    background: rgba(163, 204, 170, 0.25);
}

.admin-nav-bottom {
    padding: 16px 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.admin-main {
    flex: 1;
    margin-left: 270px;
    padding: 36px;
    min-height: 100vh;
}

.admin-page-title {
    font-size: 30px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.stat-card {
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 24px;
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.stat-card:hover { box-shadow: var(--shadow); }

.stat-label { font-size: 13px; color: var(--text-light); margin-bottom: 8px; }

.stat-value {
    font-size: 34px;
    font-weight: 900;
    color: var(--primary);
}

.data-table-wrapper {
    background: var(--bg-white);
    border-radius: var(--radius);
    border: 1px solid var(--border-light);
    overflow: hidden;
}

.data-table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    padding: 16px 22px;
    text-align: left;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-light);
}

.data-table td {
    padding: 16px 22px;
    font-size: 14px;
    color: var(--text-dark);
    border-bottom: 1px solid var(--border-light);
}

.data-table tr:hover td { background: var(--bg-light); }

.badge {
    display: inline-block;
    padding: 5px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
}

.badge-new { background: rgba(163, 204, 170, 0.25); color: var(--primary); }
.badge-processed { background: rgba(255, 193, 7, 0.15); color: #856404; }
.badge-completed { background: rgba(76, 175, 80, 0.15); color: #2e7d32; }
.badge-cancelled { background: rgba(244, 67, 54, 0.1); color: #c62828; }

.filters { display: flex; gap: 12px; margin-bottom: 20px; flex-wrap: wrap; }

.filter-select, .filter-input {
    padding: 10px 18px;
    border: 1px solid var(--border);
    border-radius: 12px;
    font-family: var(--font);
    font-size: 14px;
    background: var(--bg-white);
    color: var(--text-dark);
    outline: none;
    transition: var(--transition);
}

.filter-select:focus, .filter-input:focus { border-color: var(--primary-light); }

.pagination {
    display: flex;
    gap: 8px;
    justify-content: center;
    margin-top: 20px;
}

.page-link {
    padding: 8px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: var(--transition);
}

.page-link:hover, .page-link.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* Login */
.login-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary) 0%, #4a6350 50%, var(--primary-light) 100%);
    position: relative;
    overflow: hidden;
}

.login-page::before {
    content: '';
    position: absolute;
    top: -50%; right: -30%;
    width: 80%; height: 200%;
    background: radial-gradient(ellipse, rgba(163, 204, 170, 0.2) 0%, transparent 60%);
    pointer-events: none;
}

.login-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 52px;
    width: 100%;
    max-width: 440px;
    box-shadow: var(--shadow-xl);
    position: relative;
    z-index: 1;
}

.login-logo { text-align: center; margin-bottom: 36px; }

.login-logo img { height: 60px; margin-bottom: 14px; }

.login-title { font-size: 26px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.login-subtitle { font-size: 14px; color: var(--text-gray); }

.login-form .form-group { margin-bottom: 18px; }

.login-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.login-form .form-input {
    border-color: var(--border);
    background: var(--bg-light);
    color: var(--text-dark);
    width: 100%;
}

.login-form .form-input:focus { border-color: var(--primary-light); }

.login-form .btn { width: 100%; margin-top: 8px; }

.login-error {
    padding: 14px;
    background: rgba(244, 67, 54, 0.08);
    border-radius: var(--radius);
    color: #c62828;
    font-size: 14px;
    text-align: center;
    margin-bottom: 18px;
}

/* Settings */
.settings-form {
    max-width: 720px;
    background: var(--bg-white);
    border-radius: var(--radius);
    padding: 36px;
    border: 1px solid var(--border-light);
}

.settings-form .form-group { margin-bottom: 22px; }

.settings-form label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-gray);
    margin-bottom: 6px;
}

.settings-form .form-input {
    border-color: var(--border);
    background: var(--bg-light);
    color: var(--text-dark);
    width: 100%;
}

.settings-form .form-input:focus { border-color: var(--primary-light); }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1199px) {
    .nav { gap: 24px; }
    .nav-link { font-size: 14px; }
    .hero-title { font-size: 52px; }
    .section-title { font-size: 40px; }
    .about-grid { gap: 48px; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .header-right .header-phone, .header-right .header-btn { display: none; }
    .nav { display: none; }
    .menu-toggle { display: flex; }
    .hero-title { font-size: 44px; }
    .section-title { font-size: 34px; }
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-visual { order: -1; }
    .about-floating-card { display: none; }
    .forwhom-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .contacts-grid { grid-template-columns: 1fr; }
    .partners-grid { grid-template-columns: 1fr; }
    .steps-grid { flex-direction: column; align-items: center; }
    .steps-grid::before { display: none; }
    .step { max-width: 100%; }
    .cta-section { padding: 56px 36px; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-sidebar { transform: translateX(-100%); transition: var(--transition); }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .hero-scroll { display: none; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 34px; }
    .hero-subtitle { font-size: 16px; }
    .hero-stats { gap: 28px; }
    .hero-stat-value { font-size: 32px; }
    .section { padding: 72px 0; }
    .section-title { font-size: 28px; }
    .container { padding: 0 20px; }
    .form-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .page-header { padding: 120px 0 48px; }
    .cta-title { font-size: 30px; }
    .login-card { padding: 36px 24px; margin: 16px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .cta-section { padding: 48px 24px; }
    .partner-title { font-size: 22px; }
}
