@charset "UTF-8";

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Цветовая палитра - мягкие, эстетичные тона */
    --color-primary: #9B7EDE;
    --color-primary-light: #B8A5E8;
    --color-primary-dark: #7B5FC4;
    --color-secondary: #E8B4CB;
    --color-accent: #F4D03F;
    --color-gold: #D4AF37;
    
    /* Нейтральные цвета */
    --color-bg: #FEFCFB;
    --color-bg-light: #FFF9F5;
    --color-text: #3D3D3D;
    --color-text-light: #6B6B6B;
    --color-white: #FFFFFF;
    
    /* Градиенты */
    --gradient-primary: linear-gradient(135deg, #9B7EDE 0%, #E8B4CB 100%);
    --gradient-soft: linear-gradient(135deg, #FEFCFB 0%, #FFF9F5 100%);
    --gradient-gold: linear-gradient(135deg, #F4D03F 0%, #D4AF37 100%);
    
    /* Тени */
    --shadow-soft: 0 4px 20px rgba(155, 126, 222, 0.1);
    --shadow-medium: 0 8px 30px rgba(155, 126, 222, 0.15);
    --shadow-strong: 0 12px 40px rgba(155, 126, 222, 0.2);
    
    /* Отступы */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Радиусы */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 50%;
}

html {
    /* scroll-behavior removed - using native browser behavior */
    scroll-behavior: auto !important; /* Принудительно отключаем плавный скролл */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--color-text);
    background: var(--color-bg);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-text);
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: var(--spacing-sm);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--color-text-light);
    margin-bottom: var(--spacing-lg);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-note {
    text-align: center;
    font-size: 1rem;
    color: var(--color-text);
    margin: -0.5rem auto var(--spacing-lg);
    max-width: 720px;
}

/* Hero Section */
.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    background: var(--gradient-soft);
    position: relative;
    overflow: hidden;
    padding: 4rem 0;
}

/* ВРЕМЕННО ЗАКОММЕНТИРОВАНО - Firefox mobile transform bug
.hero::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(155, 126, 222, 0.08) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: float 20s ease-in-out infinite;
    will-change: transform;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -25%;
    left: -8%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(232, 180, 203, 0.08) 0%, transparent 70%);
    border-radius: var(--radius-full);
    animation: float 15s ease-in-out infinite reverse;
    will-change: transform;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(3deg); }
}
*/

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after {
        animation: none;
    }
    
    .cover-wrapper {
        animation: fadeInRight 0.8s ease-out 0.3s both !important;
    }
    
    .cover-glow,
    .cover-shine {
        animation: none !important;
    }
}

/* Новогодний фон позади всего контента */
/* ВРЕМЕННО ЗАКОММЕНТИРОВАНО
.xmas-header-bg {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
}

.xmas-header-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

/* На мобильных - по ширине экрана */
@media (max-width: 768px) {
    .xmas-header-bg {
        height: auto;
        min-height: 100%;
    }
    
    .xmas-header-img {
        width: 100%;
        height: auto;
        object-fit: contain;
        object-position: top center;
    }
}
*/

/* Все секции должны быть выше фона */
section, .container {
    position: relative;
    z-index: 1;
}

/* Hero контент должен быть выше фона */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
    max-width: 1200px;
    padding: 0 2rem;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
    will-change: transform, opacity;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gradient-primary);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-soft);
    animation: fadeInDown 0.6s ease-out 0.2s both;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    line-height: 1.1;
}

.title-main {
    font-size: 3.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.title-year {
    font-size: 4.5rem;
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1;
    margin: 0.5rem 0;
    text-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.title-subtitle {
    font-size: 1.5rem;
    color: var(--color-text-light);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
    margin-top: 0.5rem;
}

.hero-description {
    font-size: 1.5rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.8;
    max-width: 95%;
    font-weight: 400;
}

.hero-cta-block {
    margin-top: 2rem;
}

.hero-sale-badge {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: var(--color-white);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
    animation: pulse 2s ease-in-out infinite;
    text-decoration: none;
    cursor: pointer;
}

.hero-warning {
    background: rgba(255, 193, 7, 0.15);
    border-left: 3px solid #ffc107;
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    margin: 1rem 0;
    color: #856404;
    font-size: 0.9375rem;
    font-weight: 500;
    text-align: center;
}

.hero-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.price-old {
    font-size: 1.5rem;
    color: var(--color-text-light);
    text-decoration: line-through;
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
}

.price-new {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    font-family: 'Playfair Display', serif;
    white-space: nowrap;
    display: inline-flex;
    align-items: baseline;
}

.price-amount {
    white-space: nowrap;
}

.price-currency {
    white-space: nowrap;
    display: inline-block;
    margin-left: 0.25rem;
}

.price-badge {
    background: var(--gradient-gold);
    color: var(--color-white);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
}

.hero-stock {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
    font-size: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
}

.hero-stock .stock-icon,
.hero-stock .stock-text,
.hero-stock .stock-ticking,
.hero-stock strong,
.hero-stock span {
    font-size: 2rem;
    line-height: 1.2;
}

.stock-icon {
    font-size: 1.1rem;
}

.stock-ticking {
    font-size: 1rem;
    animation: tick 1.2s infinite ease-in-out;
    opacity: 0.8;
}

@keyframes tick {
    0%, 100% { opacity: 0.2; transform: scale(0.95); }
    50% { opacity: 1; transform: scale(1.1); }
}

.btn-hero {
    width: 100%;
    max-width: 400px;
    padding: 1.25rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
    box-shadow: 0 8px 24px rgba(155, 126, 222, 0.3);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(155, 126, 222, 0.4);
}

.stock-icon {
    font-size: 1.25rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.125rem;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-strong);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-secondary {
    background: var(--color-white);
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.25rem;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.6s ease-out;
    position: relative;
    z-index: 2;
    will-change: transform, opacity;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    z-index: 2;
}

.cover-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    /* ВРЕМЕННО ЗАКОММЕНТИРОВАНО floatCover - Firefox mobile transform bug */
    animation: fadeInRight 0.8s ease-out 0.3s both; /* , floatCover 6s ease-in-out infinite; */
    /* will-change: transform; */
}

/* ВРЕМЕННО ЗАКОММЕНТИРОВАНО - Firefox mobile transform bug
@keyframes floatCover {
    0%, 100% { 
        transform: translateY(0) rotateY(-2deg) rotateX(2deg);
    }
    50% { 
        transform: translateY(-15px) rotateY(2deg) rotateX(-2deg);
    }
}
*/

.cover-glow {
    position: absolute;
    inset: -20px;
    background: radial-gradient(circle, rgba(155, 126, 222, 0.3) 0%, rgba(232, 180, 203, 0.2) 50%, transparent 70%);
    border-radius: var(--radius-lg);
    filter: blur(20px);
    z-index: -1;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { 
        opacity: 0.6;
        transform: scale(1);
    }
    50% { 
        opacity: 0.9;
        transform: scale(1.05);
    }
}

/* ВРЕМЕННО ЗАКОММЕНТИРОВАНО - Firefox mobile transform bug
.cover-shine {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 70%
    );
    border-radius: var(--radius-lg);
    animation: shine 4s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}
*/

.hero-image img,
.cover-image {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 
        0 20px 60px rgba(155, 126, 222, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset;
    width: 100%;
    max-width: 520px;
    object-fit: cover;
    position: relative;
    z-index: 2;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cover-wrapper:hover .cover-image {
    transform: scale(1.05) rotateY(5deg);
}

.cover-wrapper:hover .cover-glow {
    opacity: 1;
    transform: scale(1.1);
}

.hero-image picture {
    width: 100%;
    max-width: 520px;
    display: block;
    position: relative;
    z-index: 2;
}

/* Trust / Value */
.trust {
    background: var(--color-bg-light);
    padding: var(--spacing-xl) 0 var(--spacing-lg);
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
}

.trust-text .section-title {
    text-align: left;
}

.trust-text .section-subtitle {
    text-align: left;
    margin-left: 0;
    margin-right: 0;
}

.trust-points {
    list-style: none;
    display: grid;
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.trust-points li {
    padding: 0.75rem 1rem;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.trust-visual {
    display: flex;
    justify-content: center;
}

.trust-image {
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

.trust-reviews .section-title {
    margin-bottom: var(--spacing-md);
}

.reviews-grid {
    display: grid;
    gap: var(--spacing-md);
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.review-card {
    background: var(--color-white);
    padding: 1.2rem 1.4rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    color: var(--color-text);
    line-height: 1.5;
    font-size: 0.98rem;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }
    
    .trust-text .section-title,
    .trust-text .section-subtitle {
        text-align: left;
    }
}

/* Inline CTA blocks */
.cta-inline {
    padding: var(--spacing-lg) 0;
    background: var(--color-bg-light);
}

.cta-inline-card {
    background: var(--gradient-soft);
    border: 1px solid rgba(155, 126, 222, 0.25);
    border-radius: var(--radius-lg);
    padding: var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-md);
    box-shadow: var(--shadow-soft);
}

.cta-inline-text h3 {
    margin: 0 0 0.25rem;
    color: var(--color-text);
}

.cta-inline-text p {
    margin: 0;
    color: var(--color-text-light);
}

.cta-inline .btn {
    flex-shrink: 0;
}

@media (max-width: 768px) {
    .cta-inline-card {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 calc(var(--spacing-sm) - 3px);
    }
}

@media (max-width: 768px) {
    .hero-cover-preview {
        margin-top: 1rem;
    }
    
    .cover-image {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-cover-preview {
        margin-top: 1rem;
    }
    
    .cover-image {
        max-width: 100%;
        border-radius: var(--radius-md);
    }
}

.mandala-preview {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    position: relative;
    box-shadow: var(--shadow-strong);
    animation: rotate 20s linear infinite;
    overflow: hidden;
}

.mandala-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    max-width: 100%;
}

.mandala-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 3px solid var(--color-white);
    border-radius: var(--radius-full);
    opacity: 0.3;
}

.mandala-preview::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60%;
    height: 60%;
    border: 2px solid var(--color-white);
    border-radius: var(--radius-full);
    opacity: 0.5;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* About Section */
.about {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--spacing-lg) 0;
}

.about-mandala-image {
    max-width: 400px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.about-mandala-image:hover {
    transform: scale(1.05);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.about-card {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary-light);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.about-card p {
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Mandalas Section */
.mandalas {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-soft);
}

.mandalas-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--spacing-lg) 0 var(--spacing-xl);
}

.mandalas-preview-image {
    max-width: 350px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.mandalas-preview-image:hover {
    transform: scale(1.05) rotate(2deg);
}

.mandalas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.mandala-item {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
}

.mandala-item::before {
    content: "🜚";
    position: absolute;
    top: 10px;
    right: 12px;
    font-size: 1.1rem;
    opacity: 0.8;
}

.mandala-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.mandala-shape {
    width: 120px;
    height: 120px;
    margin: 0 auto var(--spacing-sm);
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
}

.mandala-item:hover .mandala-shape {
    transform: scale(1.1) rotate(5deg);
}

.shape-circle {
    border-radius: var(--radius-full);
}

.shape-hexagon {
    clip-path: polygon(30% 0%, 70% 0%, 100% 50%, 70% 100%, 30% 100%, 0% 50%);
}

.shape-oval {
    border-radius: 50%;
    width: 120px;
    height: 80px;
}

.shape-heart {
    clip-path: path('M12,21.35l-1.45-1.32C5.4,15.36,2,12.28,2,8.5 C2,5.42,4.42,3,7.5,3c1.74,0,3.41,0.81,4.5,2.09C13.09,3.81,14.76,3,16.5,3 C19.58,3,22,5.42,22,8.5c0,3.78-3.4,6.86-8.55,11.54L12,21.35z');
    transform: scale(0.8);
}

.shape-heptagon {
    clip-path: polygon(50% 0%, 90% 20%, 100% 60%, 75% 100%, 25% 100%, 0% 60%, 10% 20%);
}

.shape-octagon {
    clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
}

.shape-dodecagon {
    clip-path: polygon(50% 0%, 93.3% 25%, 100% 50%, 93.3% 75%, 50% 100%, 6.7% 75%, 0% 50%, 6.7% 25%);
}

.shape-spiral {
    background: conic-gradient(from 0deg, var(--color-primary), var(--color-secondary), var(--color-primary));
    border-radius: var(--radius-full);
    animation: rotate 10s linear infinite;
}

.mandala-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.affirmation {
    font-size: 0.875rem;
    color: var(--color-text-light);
    font-style: italic;
    line-height: 1.6;
}

/* How to Use Section */
.how-to-use {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.use-tabs {
    display: flex;
    justify-content: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
}

.tab-btn {
    padding: var(--spacing-sm) var(--spacing-md);
    border: 2px solid var(--color-primary-light);
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.tab-btn:hover {
    background: var(--color-primary-light);
    color: var(--color-white);
}

.tab-btn.active {
    background: #f5edff;
    color: var(--color-primary-dark);
    border-color: var(--color-primary-light);
}

.tab-content {
    display: none;
    animation: fadeInUp 0.5s ease-out;
}

.tab-content.active {
    display: block;
}

.use-content {
    display: grid;
    grid-template-columns: 1fr 200px;
    gap: var(--spacing-md);
    align-items: center;
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
}

.use-text h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.use-text ul {
    list-style: none;
    padding: 0;
}

.use-text li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--color-text-light);
}

.use-text li::before {
    content: '✨';
    position: absolute;
    left: 0;
}

.use-image {
    font-size: 6rem;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.use-mandala-image {
    max-width: 200px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.use-mandala-image:hover {
    transform: scale(1.1);
}

/* Benefits Section */
.benefits {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-soft);
}

.benefits-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: var(--spacing-lg) 0 var(--spacing-xl);
}

.benefits-mandala-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-medium);
    transition: transform 0.3s ease;
}

.benefits-mandala-image:hover {
    transform: scale(1.05);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.benefit-item {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.benefit-item h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.benefit-item p {
    color: var(--color-text-light);
    font-size: 0.875rem;
}

/* Experience Section */
.experience {
    padding: var(--spacing-lg) 0;
    background: var(--color-white);
}

.experience-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    border-left: 4px solid var(--color-primary);
}

.experience-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: var(--spacing-md);
}

.experience-mandala-image {
    max-width: 250px;
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform 0.3s ease;
}

.experience-mandala-image:hover {
    transform: scale(1.05);
}

.experience-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.experience-card h3 {
    font-size: 1.5rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
}

.experience-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    font-style: italic;
}

/* Print Info Section */
.print-info {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.print-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.print-item {
    background: var(--color-bg-light);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    border-top: 3px solid var(--color-primary);
}

.print-item h4 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-xs);
    color: var(--color-primary);
}

.print-item p {
    color: var(--color-text-light);
    line-height: 1.7;
}

.print-note {
    margin-top: var(--spacing-md);
    padding: var(--spacing-md);
    background: var(--color-bg-light);
    border-radius: var(--radius-md);
    border-left: 4px solid var(--color-gold);
}

.print-note p {
    color: var(--color-text-light);
    line-height: 1.8;
}

/* Order Section */
.order {
    padding: var(--spacing-xl) 0;
    background: var(--gradient-soft);
    position: relative;
    /* Добавляем отступ сверху для скролла */
    scroll-margin-top: 100px;
    /* Добавляем нижний отступ чтобы кнопки были видны */
    padding-bottom: calc(var(--spacing-xl) + 80px);
}

/* Мобильная версия - увеличиваем отступ для скролла */
@media (max-width: 768px) {
    .order {
        scroll-margin-top: 150px;
        padding-bottom: calc(var(--spacing-xl) + 120px);
    }
}

/* Отступы для скролла к Premium Plan */
#premium-plan {
    scroll-margin-top: 100px;
}

/* Мобильная версия для Premium Plan */
@media (max-width: 768px) {
    #premium-plan {
        scroll-margin-top: 150px;
    }
}

.sale-notice {
    display: block;
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(238, 90, 111, 0.1) 100%);
    border: 2px solid rgba(255, 107, 107, 0.3);
    border-radius: var(--radius-lg);
    text-align: center;
    color: #c92a2a;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.sale-notice:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 107, 107, 0.2);
    border-color: rgba(255, 107, 107, 0.45);
}

.order-tariffs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.tariff-card {
    background: var(--color-white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    border: 2px solid rgba(155, 126, 222, 0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.tariff-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-primary);
}

.tariff-premium {
    border-color: var(--color-gold);
}

.tariff-badge-premium,
.price-badge,
.tariff-badge {
    display: inline-block;
    margin-top: var(--spacing-xs);
}

.order-card {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-white);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-strong);
    text-align: center;
}

.order-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.order-price {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-sm);
    flex-wrap: wrap;
}

.order-stock {
    margin: var(--spacing-lg) auto;
    text-align: center;
    color: var(--color-text-light);
    font-size: 2rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    max-width: 600px;
}

.order-stock span,
.order-stock strong {
    font-size: 2rem;
    line-height: 1.2;
}

.order-stock .stock-ticking {
    font-size: 2rem;
}

.order-includes {
    text-align: left;
    margin-bottom: var(--spacing-md);
}

.order-includes h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-primary);
    text-align: center;
}

.order-includes ul {
    list-style: none;
    padding: 0;
}

.order-includes li {
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
    color: var(--color-text-light);
}

.order-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
}

.order-note {
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background: var(--color-bg-light);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* Course Section */
.course {
    padding: var(--spacing-xl) 0;
    background: var(--color-white);
}

.course-card {
    max-width: 800px;
    margin: 0 auto;
    background: var(--gradient-soft);
    padding: var(--spacing-lg);
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--color-primary-light);
}

.course-title {
    font-size: 2rem;
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.course-text {
    font-size: 1.125rem;
    color: var(--color-text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.course-visual {
    margin: var(--spacing-md) auto;
    max-width: 520px;
}

.course-visual picture,
.course-visual img {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-medium);
    object-fit: cover;
}

/* Footer */
.footer {
    padding: var(--spacing-md) 0;
    background: var(--color-text);
    color: var(--color-white);
    text-align: center;
}

.footer p {
    margin: var(--spacing-xs) 0;
}

.footer-link a {
    color: var(--color-primary-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link a:hover {
    color: var(--color-white);
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }
    
    .title-main {
        font-size: 2.5rem;
    }
    
    .title-year {
        font-size: 3rem;
    }
    
    .hero-image {
        margin-top: 1rem;
    }
    
    .hero-image img {
        max-width: 100%;
        width: 100%;
        max-width: 400px;
        height: auto;
    }
    
    .mandala-preview {
        width: 300px;
        height: 300px;
    }
    
    .use-content {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .use-image {
        display: none;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero {
        padding: 2rem 0;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .title-main {
        font-size: 2rem;
    }
    
    .title-year {
        font-size: 2.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-price {
        gap: 0.75rem;
    }
    
    .mandalas-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .print-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hero-image img {
        max-width: 100%;
        width: 100%;
        max-width: 350px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        min-height: auto;
        padding: 1.5rem 0;
    }
    
    .hero .container {
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .title-main {
        font-size: 1.75rem;
    }
    
    .title-year {
        font-size: 2rem;
    }
    
    .title-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-description {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero-price {
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .price-old {
        font-size: 1.25rem;
    }
    
    .price-new {
        font-size: 1.75rem;
    }
    
    .price-badge {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero-stock {
        margin-bottom: 1rem;
        font-size: 1.75rem;
    }
    
    .hero-stock .stock-icon,
    .hero-stock .stock-text,
    .hero-stock .stock-ticking,
    .hero-stock strong,
    .hero-stock span {
        font-size: 1.75rem;
    }
    
    .order-stock {
        font-size: 1.75rem;
    }
    
    .order-stock span,
    .order-stock strong,
    .order-stock .stock-ticking {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    .btn-large {
        padding: 1rem 2rem;
        font-size: 1.125rem;
        width: 100%;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .use-tabs {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .tab-btn {
        width: 100%;
        padding: 0.75rem 1rem;
    }
    
    .about-grid {
        gap: 1rem;
    }
    
    .mandalas-grid {
        gap: 1rem;
    }
    
    .mandala-item {
        padding: 1rem;
    }
    
    .about-card {
        padding: 1rem;
    }
    
    .benefit-item {
        padding: 1rem;
    }
    
    .print-grid {
        gap: 1rem;
    }
    
    .order-card {
        padding: 1.5rem;
    }
    
    .course-card {
        padding: 1.5rem;
    }
    
    .experience-card {
        padding: 1rem;
    }
    
    .hero-image {
        margin-top: 1rem;
    }
    
    .mandala-preview {
        width: 100%;
        max-width: 300px;
        height: auto;
        aspect-ratio: 1;
    }
    
    .mandala-preview-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        border-radius: var(--radius-md);
    }
    
    /* Минимизация отступов на мобильных */
    section {
        padding: 1.5rem 0 !important;
    }
    
    .about, .mandalas, .benefits, .how-to-use, .print-info, .order, .course, .experience {
        padding: 1.5rem 0 !important;
    }
    
    .about-grid, .mandalas-grid, .benefits-grid, .print-grid {
        gap: 1rem !important;
    }
    
    .about-card, .mandala-item, .benefit-item, .print-item {
        padding: 1rem !important;
        margin: 0 !important;
    }
    
    .order-card, .course-card, .experience-card {
        padding: 1.5rem !important;
        margin: 0 !important;
    }
}

/* Smooth scroll removed - using native browser behavior */

/* Payment Modal Styles */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 30px;
    cursor: pointer;
    color: #999;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.close:hover {
    color: #333;
    background: #f5f5f5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-primary);
}

#card-element {
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 10px;
}

#card-errors {
    color: #dc3545;
    margin-top: 10px;
    font-size: 14px;
    min-height: 20px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--gradient-primary);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(155, 126, 222, 0.4);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.guarantee-box {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    border: 2px solid #4caf50;
}

.guarantee-box h3 {
    color: #2e7d32;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.guarantee-box p {
    color: #2e7d32;
    font-size: 1.1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .modal-content {
        padding: 30px 20px;
        max-width: 95%;
    }
    
    .close {
        top: 10px;
        right: 15px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
}

