/* ============================================
   QUANTUM ORACLE LANDING PAGE STYLES
   Version: 2.0
   ============================================ */

/* CSS Variables */
:root {
    --primary: #8b5cf6;
    --primary-dark: #7c3aed;
    --secondary: #10b981;
    --secondary-dark: #059669;
    --dark: #1f2937;
    --darker: #111827;
    --light: #f9fafb;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1);
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--secondary));
    --gradient-dark: linear-gradient(135deg, var(--dark), var(--darker));
}

/* Container */
.container {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 40px;
}

@media (max-width: 1200px) {
    .container {
        padding: 0 32px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Header */
.header-landing {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-landing.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-container {
    max-width: 80%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 2rem;
}

@media (max-width: 1200px) {
    .header-container {
        max-width: 90%;
        padding: 0 16px;
    }
}

@media (max-width: 768px) {
    .header-container {
        max-width: 100%;
        padding: 0 16px;
    }
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 1.6rem;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.logo-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3), transparent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

.logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
}

.logo-text span {
    color: var(--primary);
}

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

/* Navigation */
.nav {
    display: flex;
    gap: 2rem;
    margin: 0 auto;
}

.nav-link {
    text-decoration: none;
    color: var(--gray);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

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

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
}

.btn-outline {
    padding: 0.5rem 1.25rem;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--gray);
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-outline:hover {
    background: var(--light);
    color: var(--primary);
    border-color: var(--primary);
}

.btn-primary-small {
    padding: 0.5rem 1.25rem;
    background: var(--gradient-primary);
    border-radius: 40px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    color: white;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.btn-primary-small:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 40px 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(16, 185, 129, 0.01));
    overflow: hidden;
    border-radius: 32px 32px 0 0;
}

@media (max-width: 1200px) {
    .hero {
        padding: 80px 32px 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 60px 20px 40px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

@media (max-width: 968px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 100px 40px 80px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.03), rgba(16, 185, 129, 0.01));
    overflow: hidden;
    border-radius: 32px 32px 0 0;
}

@media (max-width: 1200px) {
    .hero {
        padding: 80px 32px 60px;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 80px 20px 40px;
    }
}

.hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08), transparent);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.hero-container {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    position: relative;
    z-index: 2;
}

/* Hero Content - 60% ширины */
.hero-content {
    flex: 0 0 60%;
    width: 60%;
    text-align: left;
}

/* Hero Image - 40% ширины */
.hero-image {
    flex: 0 0 40%;
    width: 40%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (max-width: 968px) {
    .hero-container {
        flex-direction: column;
        gap: 3rem;
    }
    
    .hero-content {
        flex: 0 0 100%;
        width: 100%;
        text-align: center;
    }
    
    .hero-image {
        flex: 0 0 100%;
        width: 100%;
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    backdrop-filter: blur(4px);
    padding: 0.35rem 1.2rem;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
    color: var(--primary);
}

.hero-badge i {
    color: var(--primary);
    font-size: 0.8rem;
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: var(--dark);
}

.hero-title-light {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--gray);
    line-height: 1.5;
    margin-bottom: 1.25rem;
}

.hero-sub-description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.hero-sub-description-highlight {
    color: var(--dark);
    font-weight: 500;
    background: rgba(139, 92, 246, 0.08);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border-left: 3px solid var(--primary);
}

@media (max-width: 968px) {
    .hero-sub-description-highlight {
        text-align: left;
    }
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .hero-actions {
        justify-content: center;
    }
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 0.85rem 2rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.hero-btn-primary:hover {
    transform: translateY(-2px);
    gap: 15px;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

@media (max-width: 968px) {
    .hero-stats {
        justify-content: center;
    }
}

.hero-stat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--gray);
}

.hero-stat i {
    color: var(--primary);
    font-size: 1rem;
}

.hero-stat-divider {
    width: 1px;
    height: 16px;
    background: var(--gray-light);
}

/* Hero Illustration */
.hero-illustration {
    width: 100%;
    max-width: 400px;
}

.rotating-icon {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

@media (max-width: 1200px) {
    .rotating-icon {
        width: 260px;
        height: 260px;
    }
}

@media (max-width: 768px) {
    .rotating-icon {
        width: 220px;
        height: 220px;
    }
}

.icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2), transparent);
    border-radius: 50%;
    animation: pulseGlow 3s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.05); }
}

.rotating-icon i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 6rem;
    color: var(--primary);
    z-index: 2;
    animation: slowRotate 12s linear infinite;
}

@media (max-width: 768px) {
    .rotating-icon i {
        font-size: 4rem;
    }
}

.rotating-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px dashed rgba(139, 92, 246, 0.3);
    animation: slowRotateReverse 15s linear infinite;
}

@keyframes slowRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

.floating-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 4s ease-in-out infinite;
}

.particle:nth-child(1) { top: 0%; left: 50%; animation-delay: 0s; }
.particle:nth-child(2) { top: 25%; left: 100%; animation-delay: 1s; }
.particle:nth-child(3) { top: 75%; left: 100%; animation-delay: 2s; }
.particle:nth-child(4) { top: 100%; left: 50%; animation-delay: 0.5s; }
.particle:nth-child(5) { top: 25%; left: 0%; animation-delay: 1.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.3; }
    50% { transform: translateY(-15px) scale(1.5); opacity: 0.8; }
}

/* Period Section */
.period {
    padding: 80px 0;
    background: white;
}

@media (max-width: 1200px) {
    .period {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .period {
        padding: 40px 0;
    }
}

.period-wrapper {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

/* Левая колонка с картинкой - 40% */
.period-image {
    flex: 0 0 40%;
    width: 40%;
}

.period-image-placeholder {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(16, 185, 129, 0.05));
    border-radius: 32px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.period-image-placeholder i {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.8;
}

/* Правая колонка с контентом - 60% */
.period-content {
    flex: 0 0 60%;
    width: 60%;
}

.period-header {
    margin-bottom: 2rem;
}

.period-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Цитаты как на картинке */
.period-quotes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.period-quote {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0;
    background: transparent;
    font-size: 1rem;
    color: var(--dark);
    border-radius: 0;
}

.period-quote i {
    color: var(--primary);
    font-size: 1rem;
    opacity: 0.8;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.period-quote span {
    font-style: italic;
    line-height: 1.4;
}

.period-description {
    margin-bottom: 2rem;
}

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

.period-footer {
    margin-top: 1rem;
}

.period-footer-text {
    font-size: 1.1rem;
    color: var(--dark);
}

.period-footer-text strong {
    color: var(--primary);
}

/* Адаптивность */
@media (max-width: 968px) {
    .period-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .period-image {
        flex: 0 0 auto;
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .period-content {
        flex: 0 0 auto;
        width: 100%;
        text-align: center;
    }
    
    .period-quote {
        justify-content: center;
    }
    
    .period-description p {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .period-title {
        font-size: 1.5rem;
    }
    
    .period-quote {
        font-size: 0.85rem;
        gap: 8px;
    }
    
    .period-quote i {
        font-size: 0.8rem;
    }
    
    .period-description p {
        font-size: 0.9rem;
    }
    
    .period-footer-text {
        font-size: 1rem;
    }
    
    .period-image-placeholder i {
        font-size: 3rem;
    }
}

/* Not Fortune Section - "Это не гадание и не гороскоп" */
.not-fortune-section {
    padding: 80px 0;
    background: var(--light);
}

@media (max-width: 1200px) {
    .not-fortune-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .not-fortune-section {
        padding: 40px 0;
    }
}

.not-fortune-header {
    text-align: center;
    margin-bottom: 3rem;
}

.not-fortune-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.3;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Две колонки */
.not-fortune-wrapper {
    display: flex;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.not-fortune-column {
    flex: 1;
    width: 50%;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease;
}

.not-fortune-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

/* Блок для картинки */
.not-fortune-image {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.not-fortune-image i {
    font-size: 2.5rem;
    color: white;
}

/* Блок для текста */
.not-fortune-text {
    text-align: left;
}

.not-fortune-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray);
    margin: 0;
}

.not-fortune-text strong {
    color: var(--dark);
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 768px) {
    .not-fortune-wrapper {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .not-fortune-column {
        width: 100%;
        padding: 1.5rem;
    }
    
    .not-fortune-title {
        font-size: 1.6rem;
    }
    
    .not-fortune-image {
        width: 60px;
        height: 60px;
    }
    
    .not-fortune-image i {
        font-size: 1.8rem;
    }
    
    .not-fortune-text p {
        font-size: 0.9rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .not-fortune-text p {
        text-align: center;
    }
}

/* How It Works Section */
.how-it-works {
    padding: 80px 0;
    background: var(--light);
}

@media (max-width: 1200px) {
    .how-it-works {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .how-it-works {
        padding: 40px 0;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-badge {
    display: inline-block;
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
    padding: 0.3rem 1rem;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.5rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Сетка в один ряд (4 колонки) */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.how-it-works-item {
    background: white;
    border-radius: 24px;
    padding: 1.75rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.how-it-works-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.how-it-works-number {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    font-weight: 700;
    color: rgba(139, 92, 246, 0.1);
    line-height: 1;
}

.how-it-works-icon {
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
}

.how-it-works-icon i {
    font-size: 2rem;
    color: white;
}

.how-it-works-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.how-it-works-description {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.5;
}

.how-it-works-footer {
    text-align: center;
    margin-top: 3rem;
}

/* Увеличенный текст на 40% (базовый размер 1rem = 16px, увеличенный 1.4rem = 22.4px) */
.how-it-works-note {
    color: var(--gray);
    font-size: 1.4rem;
    line-height: 1.5;
    font-weight: normal;
    font-style: normal;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .how-it-works-note {
        font-size: 1.2rem;
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .how-it-works-item {
        padding: 1.5rem;
    }
    
    .how-it-works-icon {
        width: 60px;
        height: 60px;
    }
    
    .how-it-works-icon i {
        font-size: 1.5rem;
    }
    
    .how-it-works-title {
        font-size: 1rem;
    }
    
    .how-it-works-note {
        font-size: 1rem;
    }
}

/* Express Form Section - форма экспресс-анализа */
.express-form-section {
    padding: 80px 0;
    background: white;
}

@media (max-width: 1200px) {
    .express-form-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .express-form-section {
        padding: 40px 0;
    }
}

.express-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.express-form-header {
    margin-bottom: 2.5rem;
}

.express-form-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.express-form-description {
    font-size: 1rem;
    color: var(--gray);
    line-height: 1.5;
}

/* Форма выбора даты */
.express-form-date {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.date-field {
    flex: 1;
    text-align: left;
}

.date-field label {
    display: block;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.date-field select {
    width: 100%;
    padding: 12px 16px;
    background: white;
    border: 2px solid var(--gray-light);
    border-radius: 16px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--dark);
    cursor: pointer;
    transition: all 0.3s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.date-field select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.express-form-actions {
    margin-bottom: 1.5rem;
}

.express-form-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 28px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.express-form-btn:hover {
    transform: translateY(-2px);
    gap: 15px;
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

.express-form-footer {
    text-align: center;
}

.express-form-footer p {
    font-size: 0.85rem;
    color: var(--gray);
}

/* Адаптивность */
@media (max-width: 640px) {
    .express-form-title {
        font-size: 1.6rem;
    }
    
    .express-form-description {
        font-size: 0.9rem;
    }
    
    .express-form-date {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .date-field select {
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    
    .express-form-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

@media (max-width: 1200px) {
    .pricing {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .pricing {
        padding: 40px 0;
    }
}

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

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

.pricing-card {
    background: white;
    border-radius: 32px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--gray-light);
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

@media (max-width: 768px) {
    .pricing-card {
        padding: 1.5rem;
    }
}

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

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .pricing-card.featured {
        transform: scale(1);
    }
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.pricing-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 1rem;
}

.pricing-description {
    color: var(--gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--dark);
}

.pricing-features li i {
    color: var(--secondary);
    font-size: 0.8rem;
}

.pricing-btn {
    display: inline-block;
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-light);
    border-radius: 50px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
    background: white;
    cursor: pointer;
    text-align: center;
}

.pricing-btn.primary {
    background: var(--gradient-primary);
    color: white;
    border: none;
}

.pricing-btn:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

/* Result Preview Section */
.result-preview-section {
    padding: 80px 0;
    background: var(--light);
}

@media (max-width: 1200px) {
    .result-preview-section {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .result-preview-section {
        padding: 40px 0;
    }
}

/* Две колонки 50/50 */
.result-preview-wrapper {
    display: flex;
    gap: 4rem;
    align-items: center;
}

/* Левая колонка - 50% */
.result-preview-header {
    flex: 1;
    width: 50%;
}

.result-preview-header .section-title {
    text-align: left;
    margin-bottom: 1.5rem;
    font-size: 2rem;
}

/* Увеличенный текст на 40% (базовый размер 1rem = 16px, увеличенный 1.4rem = 22.4px) */
.result-preview-text-large {
    font-size: 1.4rem !important;
    line-height: 1.5;
    font-weight: 500;
    color: #1f2937;
    margin-bottom: 1.25rem;
}

.result-preview-text {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.result-preview-btn-wrapper {
    margin-top: 2rem;
}

.result-preview-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    background: var(--gradient-primary);
    color: white;
    text-decoration: none;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.25);
}

.result-preview-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(139, 92, 246, 0.35);
}

/* Правая колонка - 50% с карточкой */
.result-example-card {
    flex: 1;
    width: 50%;
    background: white;
    border-radius: 32px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

.result-example-header {
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.result-example-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.result-example-user {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.result-example-user strong {
    color: var(--dark);
}

.result-example-request {
    color: var(--primary);
    font-size: 0.85rem;
    font-style: italic;
}

.result-example-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.result-example-section {
    line-height: 1.6;
}

.result-example-section-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 0.75rem;
}

.result-example-section p {
    color: var(--gray);
    font-size: 0.85rem;
    margin-bottom: 0.75rem;
    line-height: 1.5;
}

.result-example-section strong {
    color: var(--dark);
    font-weight: 600;
}

/* Адаптивность */
@media (max-width: 968px) {
    .result-preview-wrapper {
        flex-direction: column;
        gap: 2rem;
    }
    
    .result-preview-header,
    .result-example-card {
        width: 100%;
    }
    
    .result-preview-header .section-title {
        text-align: center;
    }
    
    .result-preview-text {
        text-align: center;
    }
    
    .result-preview-text-large {
        text-align: center;
    }
    
    .result-preview-btn-wrapper {
        text-align: center;
    }
}

@media (max-width: 640px) {
    .result-example-card {
        padding: 1.25rem;
    }
    
    .result-example-title {
        font-size: 1.1rem;
    }
    
    .result-example-section p {
        font-size: 0.8rem;
    }
    
    .result-preview-text-large {
        font-size: 1.1rem !important;
    }
}

/* Reviews Section */
.reviews {
    padding: 80px 0;
    background: white;
}

@media (max-width: 1200px) {
    .reviews {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .reviews {
        padding: 40px 0;
    }
}

.reviews-swiper {
    padding: 20px 10px 50px;
}

.review-card {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
}

@media (max-width: 768px) {
    .review-card {
        padding: 1.5rem;
    }
}

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

.review-stars {
    color: #fbbf24;
    margin-bottom: 1rem;
}

.review-text {
    line-height: 1.6;
    color: var(--gray);
    margin-bottom: 1.5rem;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 1.2rem;
}

.review-info {
    display: flex;
    flex-direction: column;
}

.review-name {
    font-weight: 600;
    color: var(--dark);
}

.review-age {
    font-size: 0.8rem;
    color: var(--gray);
}

.review-request {
    font-size: 0.7rem;
    color: var(--primary);
}

/* Swiper */
.swiper-button-next,
.swiper-button-prev {
    color: var(--primary) !important;
}

.swiper-pagination-bullet-active {
    background: var(--primary) !important;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: var(--light);
}

@media (max-width: 1200px) {
    .faq {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .faq {
        padding: 40px 0;
    }
}

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

.faq-item {
    background: white;
    border-radius: 20px;
    margin-bottom: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--dark);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    padding: 0 1.5rem;
    color: var(--gray);
    line-height: 1.6;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 1.5rem 1.25rem;
}

/* CTA Section */
.cta {
    padding: 80px 0;
    background: white;
}

@media (max-width: 1200px) {
    .cta {
        padding: 60px 0;
    }
}

@media (max-width: 768px) {
    .cta {
        padding: 40px 0;
    }
}

.cta-card {
    text-align: center;
    background: var(--gradient-dark);
    border-radius: 40px;
    padding: 4rem;
    color: white;
}

@media (max-width: 768px) {
    .cta-card {
        padding: 2rem;
        border-radius: 24px;
    }
}

.cta-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.cta-title {
    font-size: 2rem;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 1.5rem;
    }
}

.cta-text {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2rem;
    background: var(--gradient-primary);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    color: white;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    transform: translateY(-2px);
    gap: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.cta-note {
    margin-top: 1rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.cta-note i {
    margin-right: 5px;
}

/* Footer */
.footer {
    background: #fff;
    padding: 60px 0 50px;
    border-top: 1px solid #e5e7eb;
    border-radius: 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 4rem;
}

/* Левая часть */
.footer-left {
    flex-shrink: 0;
    width: 320px;
}

.footer-copyright {
    color: #6b7280;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

/* Вертикальные ссылки с иконками */
.footer-links-horizontal {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.footer-links-horizontal a {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-horizontal a i {
    width: 18px;
    font-size: 0.85rem;
    color: #8b5cf6;
}

.footer-links-horizontal a:hover {
    color: #8b5cf6;
}

.footer-disclaimer {
    color: #9ca3af;
    font-size: 0.7rem;
    line-height: 1.5;
}

/* Правая часть - выравнивание по правой стороне */
.footer-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    min-height: 100%;
}

/* Горизонтальные ссылки - выравнивание по правому краю, прижаты к верху */
.footer-nav {
    display: flex;
    gap: 2rem;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: flex-end;
}

.footer-nav a {
    color: #1f2937;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-nav a:hover {
    color: #8b5cf6;
}

/* Блок контактов - выравнивание по правому краю и прижат к низу */
.footer-contacts {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin-top: auto;
}

.contacts-title {
    color: #6b7280;
    font-size: 0.8rem;
}

.contacts-email,
.contacts-tg {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #1f2937;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.contacts-email i,
.contacts-tg i {
    font-size: 0.9rem;
    color: #8b5cf6;
}

.contacts-email:hover,
.contacts-tg:hover {
    color: #8b5cf6;
}

/* Адаптивность */
@media (max-width: 1024px) {
    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-left {
        width: 100%;
    }
    
    .footer-right {
        align-items: flex-start;
        min-height: auto;
    }
    
    .footer-nav {
        justify-content: flex-start;
        flex-wrap: wrap;
        white-space: normal;
    }
    
    .footer-contacts {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 640px) {
    .footer {
        padding: 40px 0 30px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .footer-contacts {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* For mobile devices, disable hover effects */
@media (max-width: 768px) {
    .step-card:hover,
    .pricing-card:hover,
    .review-card:hover,
    .thought-card:hover {
        transform: none;
    }
    
    .hero-btn-primary:hover,
    .hero-btn-secondary:hover,
    .cta-btn:hover,
    .pricing-btn:hover {
        transform: none;
    }
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Body overflow fix */
body {
    overflow-x: hidden;
}