:root {
    --duration-fast: 0.2s;
    --duration-normal: 0.4s;
    --duration-slow: 0.8s;
    --duration-slower: 1.2s;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

    --color-accent: #8DB1D9;
    --color-secondary: #B59C98;
    --color-tertiary: #91657E;
    --color-dark: #2c3e50;
    --color-text: #666;
    --color-bg: #f8f9fa;
    --color-white: #ffffff;

    --shadow-sm: 0 4px 15px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 15px 50px rgba(0,0,0,0.1);

    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 30px;
}

/* Airflow Canvas - фоновая анимация внутри секций */
.about-show,
.features-section {
    position: relative;
}

.airflow-bg-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* Контент выше canvas */
.about-show .landing-container,
.features-section .landing-container {
    position: relative;
    z-index: 1;
}

/* Отключаем на мобильных */
@media (max-width: 768px) {
    .airflow-bg-canvas {
        display: none;
    }
}

.landing-page {
    height: auto !important;
    overflow-y: auto !important;
    overflow-x: hidden;
}

.landing-page .hero {
    position: relative;
}

.landing-content {
    position: relative;
    z-index: 10;
    background: var(--color-bg);
}

.landing-section {
    position: relative;
    padding: 6rem 2rem;
    overflow: hidden;
}

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

.section-title {
    font-family: "Manasco", sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--color-dark);
    text-align: center;
    margin-bottom: 3rem;
}


/* Переходный блок с мягким анимированным градиентом */
.gradient-transition {
    position: relative;
    height: 120px;
    overflow: hidden;
    background: linear-gradient(180deg, var(--color-bg) 0%, #fff 50%, var(--color-bg) 100%);
    z-index: 5;
}

/* Анимированная волна градиента */
.gradient-wave {
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 200px;
    transform: translateY(-50%);
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(141,177,217,0.3) 15%,
        rgba(185,156,152,0.25) 30%,
        rgba(141,177,217,0.35) 45%,
        rgba(255,255,255,0.4) 55%,
        rgba(141,177,217,0.35) 65%,
        rgba(185,156,152,0.25) 80%,
        transparent 100%
    );
    filter: blur(30px);
    animation: gradientFlow 15s ease-in-out infinite;
    will-change: transform;
}

/* Дополнительный мягкий слой для глубины */
.gradient-transition::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(141,177,217,0.15) 0%, transparent 50%),
                radial-gradient(ellipse at 70% 50%, rgba(185,156,152,0.12) 0%, transparent 50%);
    pointer-events: none;
}

/* Анимация плавного движения градиента */
@keyframes gradientFlow {
    0%, 100% {
        transform: translateY(-50%) translateX(0);
    }
    50% {
        transform: translateY(-50%) translateX(-25%);
    }
}

/* Мобильная адаптация */
@media (max-width: 768px) {
    .gradient-transition {
        height: 80px;
    }

    .gradient-wave {
        height: 150px;
        filter: blur(20px);
    }
}

/* about-show с фоновым canvas */
.about-show {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--color-bg);
}

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

.show-title {
    font-family: "Manasco", sans-serif;
    font-size: clamp(2rem, 6vw, 4rem);
    color: var(--color-dark);
    perspective: 1000px;
    margin-bottom: 1rem;
}

.show-title span {
    display: inline-block;
    opacity: 0;
    transform: rotateX(90deg) translateY(50px);
    transition: all 1s var(--ease-out);
}

.show-title.revealed span {
    opacity: 1;
    transform: rotateX(0) translateY(0);
}

.show-title span:nth-child(1) { transition-delay: 0s; color: var(--color-accent); }
.show-title span:nth-child(2) { transition-delay: 0.1s; }
.show-title span:nth-child(3) { transition-delay: 0.2s; color: var(--color-secondary); }
.show-title span:nth-child(4) { transition-delay: 0.3s; }
.show-title span:nth-child(5) { transition-delay: 0.4s; color: var(--color-tertiary); }

.show-subtitle {
    font-family: "Poiret One", sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 1.8rem);
    color: var(--color-text);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s var(--ease-out) 0.5s;
}

.show-header.revealed .show-subtitle {
    opacity: 1;
    transform: translateY(0);
}

.mini-planes-container {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.mini-plane {
    position: absolute;
    width: 40px;
    height: 40px;
    opacity: 0.6;
}

.mini-plane svg {
    width: 100%;
    height: 100%;
    fill: var(--color-accent);
}

.mini-plane-1 {
    top: 20%;
    left: -50px;
    animation: flyPath1 15s linear infinite;
}

.mini-plane-2 {
    top: 60%;
    right: -50px;
    animation: flyPath2 18s linear infinite;
    animation-delay: -5s;
}

.mini-plane-3 {
    top: 40%;
    left: -50px;
    animation: flyPath3 20s linear infinite;
    animation-delay: -10s;
}

@keyframes flyPath1 {
    0% { left: -50px; top: 20%; transform: rotate(15deg); }
    50% { top: 30%; }
    100% { left: calc(100% + 50px); top: 25%; transform: rotate(15deg); }
}

@keyframes flyPath2 {
    0% { right: -50px; top: 60%; transform: rotate(-165deg); }
    50% { top: 45%; }
    100% { right: calc(100% + 50px); top: 50%; transform: rotate(-165deg); }
}

@keyframes flyPath3 {
    0% { left: -50px; top: 40%; transform: rotate(10deg) scale(0.8); }
    30% { top: 20%; }
    70% { top: 55%; }
    100% { left: calc(100% + 50px); top: 35%; transform: rotate(10deg) scale(0.8); }
}

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

.value-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transform-style: preserve-3d;
    transition: all 0.4s var(--ease-out);
    opacity: 0;
    transform: translateY(40px);
}

.value-card.revealed {
    opacity: 1;
    transform: translateY(0);
}

.value-card:nth-child(1) { transition-delay: 0.6s; }
.value-card:nth-child(2) { transition-delay: 0.7s; }
.value-card:nth-child(3) { transition-delay: 0.8s; }

.value-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(-5deg);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s var(--ease-spring);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-title {
    font-family: "Poiret One", sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.value-desc {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

.stats-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(180deg, var(--color-bg) 0%, #fff 50%, var(--color-bg) 100%);
}

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

.stat-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
    animation: gentleFloat 6s ease-in-out infinite;
}

.stat-card:nth-child(2) { animation-delay: -2s; }
.stat-card:nth-child(3) { animation-delay: -4s; }

@keyframes gentleFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(0.5deg); }
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-secondary), var(--color-tertiary));
    transform: scaleX(0);
    transition: transform 1s var(--ease-out);
}

.stat-card.revealed::before {
    transform: scaleX(1);
}

.stat-number {
    font-family: "Manasco", sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-tertiary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: "Poiret One", sans-serif;
    font-size: 1.2rem;
    color: var(--color-text);
}

.destinations-section {
    padding: 6rem 0;
}

.destinations-header {
    text-align: center;
    padding: 0 2rem;
    margin-bottom: 3rem;
}

.destinations-track {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding: 2rem;
    perspective: 1000px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.destinations-track::-webkit-scrollbar {
    display: none;
}

.destination-card {
    scroll-snap-align: center;
    flex-shrink: 0;
    width: 320px;
    height: 420px;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: all 0.5s var(--ease-out);
    cursor: pointer;
}

.destination-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.destination-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.destination-card:hover .destination-image {
    transform: scale(1.1);
}

.destination-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    z-index: 2;
    color: white;
    transform: translateY(20px);
    transition: transform 0.4s var(--ease-out);
}

.destination-card:hover .destination-content {
    transform: translateY(0);
}

.destination-city {
    font-family: "Manasco", sans-serif;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.destination-country {
    font-family: "Poiret One", sans-serif;
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

.destination-price {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.destination-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: white;
    color: var(--color-dark);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s var(--ease-out);
}

.destination-card:hover .destination-btn {
    opacity: 1;
    transform: translateY(0);
}

.destination-btn:hover {
    background: var(--color-accent);
    color: white;
}

.gallery-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid var(--color-accent);
    background: transparent;
    color: var(--color-accent);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease-out);
}

.gallery-nav-btn:hover {
    background: var(--color-accent);
    color: white;
    transform: scale(1.1);
}

.features-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    background: var(--color-bg);
    overflow: visible;
}

.orbit-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    isolation: isolate;
}

.orbit-container {
    position: relative;
    width: 500px;
    height: 500px;
    will-change: transform;
}

.center-plane {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-tertiary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    box-shadow: 0 10px 40px rgba(141,177,217,0.4), 0 0 0 4px rgba(255,255,255,0.3);
    animation: gentlePulse 3s ease-in-out infinite;
    z-index: 100;
}

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

.orbit-item {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 90px;
    height: 90px;
    margin-left: -45px;
    margin-top: -45px;
    cursor: pointer;
    animation: orbit 25s linear infinite;
    will-change: transform;
    z-index: 10;
}

.orbit-item-inner {
    position: relative;
    width: 100%;
    height: 100%;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s;
    will-change: transform;
    transform-origin: center center;
}

.orbit-item:hover {
    animation-play-state: paused;
    z-index: 50;
}

.orbit-item:hover .orbit-item-inner {
    animation-play-state: paused;
    transform: scale(1.12);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15), 0 0 0 1px rgba(141,177,217,0.2);
    background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
}

.orbit-item-inner svg {
    width: 32px;
    height: 32px;
    margin-bottom: 0.3rem;
    flex-shrink: 0;
}

.orbit-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-dark);
    text-align: center;
    line-height: 1.2;
}

.orbit-item:nth-child(1) { animation-delay: 0s; }
.orbit-item:nth-child(2) { animation-delay: -4.16s; }
.orbit-item:nth-child(3) { animation-delay: -8.33s; }
.orbit-item:nth-child(4) { animation-delay: -12.5s; }
.orbit-item:nth-child(5) { animation-delay: -16.66s; }
.orbit-item:nth-child(6) { animation-delay: -20.83s; }

@keyframes orbit {
    from { transform: rotate(0deg) translateX(200px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(200px) rotate(-360deg); }
}

@keyframes counterRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.orbit-info {
    margin-left: 4rem;
    max-width: 300px;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.5s var(--ease-out);
}

.orbit-info.active {
    opacity: 1;
    transform: translateX(0);
}

.orbit-info h3 {
    font-family: "Manasco", sans-serif;
    font-size: 1.8rem;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.orbit-info p {
    color: var(--color-text);
    line-height: 1.7;
}

.testimonials-section {
    min-height: 80vh;
    background: linear-gradient(180deg, var(--color-bg) 0%, #fff 100%);
    position: relative;
}

.testimonials-clouds {
    position: relative;
    height: 500px;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonial-cloud {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    max-width: 280px;
    animation: cloudFloat var(--float-duration, 8s) ease-in-out infinite;
    animation-delay: var(--float-delay, 0s);
}

.testimonial-cloud:nth-child(1) {
    top: 5%;
    left: 5%;
    --float-duration: 10s;
    --float-delay: 0s;
}

.testimonial-cloud:nth-child(2) {
    top: 15%;
    right: 10%;
    --float-duration: 12s;
    --float-delay: -3s;
}

.testimonial-cloud:nth-child(3) {
    top: 45%;
    left: 20%;
    --float-duration: 9s;
    --float-delay: -5s;
}

.testimonial-cloud:nth-child(4) {
    top: 55%;
    right: 15%;
    --float-duration: 11s;
    --float-delay: -7s;
}

@keyframes cloudFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(10px, -15px) rotate(0.5deg); }
    50% { transform: translate(-5px, -10px) rotate(-0.3deg); }
    75% { transform: translate(-10px, 5px) rotate(0.3deg); }
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-accent), var(--color-secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.testimonial-author {
    font-weight: 600;
    color: var(--color-dark);
}

.testimonial-stars {
    color: #f5a623;
    font-size: 0.9rem;
}

.testimonial-text {
    color: var(--color-text);
    line-height: 1.6;
    font-size: 0.95rem;
    font-style: italic;
}

.testimonial-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #27ae60;
    font-weight: 500;
}

.faq-section {
    background: var(--color-bg);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--color-white);
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s var(--ease-out);
}

.faq-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.faq-question:hover {
    background: rgba(141,177,217,0.05);
}

.faq-question h4 {
    font-family: "Poiret One", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
}

.faq-icon {
    width: 24px;
    height: 24px;
    position: relative;
    transition: transform 0.4s var(--ease-spring);
}

.faq-icon::before,
.faq-icon::after {
    content: '';
    position: absolute;
    background: var(--color-accent);
    transition: all 0.3s var(--ease-out);
}

.faq-icon::before {
    width: 2px;
    height: 16px;
    top: 4px;
    left: 11px;
}

.faq-icon::after {
    width: 16px;
    height: 2px;
    top: 11px;
    left: 4px;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease-spring);
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer-content {
    padding: 0 1.5rem 1.5rem;
    color: var(--color-text);
    line-height: 1.7;
}

.cta-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e2a3a 0%, #162236 50%, #0f1928 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.glitch-title {
    font-family: "Manasco", sans-serif;
    font-size: clamp(2.5rem, 8vw, 5rem);
    color: white;
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.glitch-title::before,
.glitch-title::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.glitch-title::before {
    color: var(--color-accent);
    animation: glitch-1 2s infinite linear alternate-reverse;
    clip-path: polygon(0 0, 100% 0, 100% 35%, 0 35%);
}

.glitch-title::after {
    color: var(--color-tertiary);
    animation: glitch-2 3s infinite linear alternate-reverse;
    clip-path: polygon(0 65%, 100% 65%, 100% 100%, 0 100%);
}

@keyframes glitch-1 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(-2px, 2px); }
    40% { transform: translate(-2px, -2px); }
    60% { transform: translate(2px, 2px); }
    80% { transform: translate(2px, -2px); }
}

@keyframes glitch-2 {
    0%, 100% { transform: translate(0); }
    20% { transform: translate(2px, -2px); }
    40% { transform: translate(2px, 2px); }
    60% { transform: translate(-2px, -2px); }
    80% { transform: translate(-2px, 2px); }
}

.cta-subtitle {
    font-family: "Poiret One", sans-serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 2rem;
}

.cta-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 700px;
    margin: 0 auto 2rem;
}

.cta-input {
    padding: 1rem 1.5rem;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    font-size: 1rem;
    min-width: 180px;
    transition: all 0.3s var(--ease-out);
}

.cta-input::placeholder {
    color: rgba(255,255,255,0.5);
}

.cta-input:focus {
    outline: none;
    border-color: var(--color-accent);
    background: rgba(255,255,255,0.15);
}

.cta-btn {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-secondary) 100%);
    border: none;
    border-radius: 50px;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s var(--ease-out);
}

.cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(141,177,217,0.4);
}

.cta-btn svg {
    width: 20px;
    height: 20px;
}

.cta-alt {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
}

.cta-alt a {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1px dashed;
    transition: color 0.2s;
}

.cta-alt a:hover {
    color: white;
}


.reveal-fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s var(--ease-out);
}

.reveal-fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-fade-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s var(--ease-out);
}

.reveal-fade-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s var(--ease-out);
}

.reveal-stagger.revealed > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.revealed > *:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger.revealed > *:nth-child(3) { transition-delay: 0.2s; }
.reveal-stagger.revealed > *:nth-child(4) { transition-delay: 0.3s; }
.reveal-stagger.revealed > *:nth-child(5) { transition-delay: 0.4s; }
.reveal-stagger.revealed > *:nth-child(6) { transition-delay: 0.5s; }

.reveal-stagger.revealed > * {
    opacity: 1;
    transform: translateY(0);
}


@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .orbit-container {
        width: 350px;
        height: 350px;
    }

    .orbit-item {
        width: 80px;
        height: 80px;
        margin-left: -40px;
        margin-top: -40px;
    }

    @keyframes orbit {
        from { transform: rotate(0deg) translateX(135px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(135px) rotate(-360deg); }
    }

    .orbit-info {
        display: none;
    }
}

@media (max-width: 768px) {
    .landing-section {
        padding: 4rem 1rem;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-card {
        animation: none;
    }

    .orbit-wrapper {
        flex-direction: column;
        min-height: auto;
        padding: 2rem 0;
    }

    .orbit-container {
        width: 280px;
        height: 280px;
        margin: 0 auto;
        transform: scale(0.9);
    }

    .center-plane {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .orbit-item {
        width: 60px;
        height: 60px;
        margin-left: -30px;
        margin-top: -30px;
        animation: orbit 20s linear infinite;
    }

    .orbit-item-inner {
        border-radius: 12px;
    }

    .orbit-item svg {
        width: 20px;
        height: 20px;
        margin-bottom: 0.25rem;
    }

    .orbit-label {
        font-size: 0.55rem;
    }

    /* Скрываем 6-й спутник на мобильных чтобы не накладывался */
    .orbit-item:nth-child(7) {
        display: none;
    }

    @keyframes orbit {
        from { transform: rotate(0deg) translateX(100px) rotate(0deg); }
        to { transform: rotate(360deg) translateX(100px) rotate(-360deg); }
    }

    .testimonials-clouds {
        height: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
    }

    .testimonial-cloud {
        position: relative;
        max-width: 100%;
        animation: none;
        top: auto !important;
        left: auto !important;
        right: auto !important;
    }

    .cta-form {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-input,
    .cta-btn {
        width: 100%;
        justify-content: center;
    }

    .mini-plane,
    .cloud-layer {
        animation-duration: 30s !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .landing-section > * {
        opacity: 1 !important;
        transform: none !important;
    }
}
