/* =============================================================================
   UNREAL SHOP - SQUISH LIGHT THEME
   Inspired by Squish Framer Template - Playful, Soft, Modern
   ============================================================================= */

/* ============ CSS VARIABLES ============ */
:root {
    /* Colors - Light Playful Theme */
    --bg-primary: #FFFFFF;
    --bg-secondary: #FAFAFA;
    --bg-tertiary: #F3F4F6;
    --bg-card: #FFFFFF;
    --bg-glass: rgba(0, 0, 0, 0.02);
    --bg-glass-hover: rgba(0, 0, 0, 0.04);

    --text-primary: #1D2029;
    --text-secondary: #4B5563;
    --text-tertiary: #9CA3AF;
    --text-muted: #D1D5DB;

    /* Lime Green Accent */
    --accent-primary: #e0f782;
    --accent-secondary: #e0f782;
    --accent-dark: #c9de5a;
    --accent-gradient: linear-gradient(135deg, #e0f782 0%, #e0f782 100%);
    --accent-light: #f5fce0;
    --accent-glow: rgba(224, 247, 130, 0.3);

    --success: #e0f782;
    --warning: #F59E0B;
    --error: #EF4444;

    --border-color: rgba(0, 0, 0, 0.06);
    --border-hover: rgba(0, 0, 0, 0.12);

    /* Typography */
    --font-primary: 'Geist', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Geist', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;

    /* Border Radius - Squish Style (Larger, Softer) */
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --radius-2xl: 36px;
    --radius-full: 9999px;

    /* Shadows - Squish Multi-layer Soft Shadows */
    --shadow-sm: 0px 1px 2px rgba(0, 0, 0, 0.04), 0px 2px 4px rgba(0, 0, 0, 0.04);
    --shadow-md: 0px 0.6px 1.5px -1.5px rgba(0, 0, 0, 0.12), 0px 2.3px 6px -3px rgba(0, 0, 0, 0.1), 0px 10px 26px -4.5px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0px 2px 4px rgba(0, 0, 0, 0.04), 0px 8px 16px rgba(0, 0, 0, 0.08), 0px 24px 48px rgba(0, 0, 0, 0.08);
    --shadow-glow: 0 8px 32px var(--accent-glow);

    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ UTILITY CLASSES ============ */
.card-bordered {
    background: #fff;
    border: 8px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
}

.title-lg {
    font-size: 48px;
    font-weight: 500;
    color: #000;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

.title-md {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.text-body {
    font-size: 16px;
    color: rgb(73, 80, 93);
    line-height: 1.6;
    margin: 0;
}

/* ============ FONTS ============ */
@font-face {
    font-family: 'Geist';
    src: url('https://fonts.gstatic.com/s/geist/v4/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('https://fonts.gstatic.com/s/geist/v4/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('https://fonts.gstatic.com/s/geist/v4/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geist';
    src: url('https://fonts.gstatic.com/s/geist/v4/gyBhhwUxId8gMGYQMKR3pzfaWI_Re-Q4mJPby1QNtA.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

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

html {
    height: 100%;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-primary);
    min-height: 100vh;
    overflow-x: hidden;
}

/* ============ BACKGROUND - Clean White ============ */
body::before {
    display: none;
}

/* Hide orbs - clean Squish style */
.bg-orb {
    display: none;
}

/* ============ CONTAINER ============ */
.container-fluid {
    padding: 0;
}

.container {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

#app {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* ============ TYPOGRAPHY ============ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    letter-spacing: -0.02em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    letter-spacing: -0.01em;
}

h4 {
    font-size: 1.25rem;
}

h5 {
    font-size: 1.125rem;
}

h6 {
    font-size: 1rem;
}

p {
    font-size: 1rem;
    color: var(--text-secondary);
    margin-bottom: 0;
    font-family: var(--font-primary);
}

a {
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

a:hover {
    color: var(--accent-secondary);
}

/* ============ HEADER - Squish Style ============ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 72px;
    padding: 0;
    background: var(--bg-primary);
    border-bottom: none;
    transition: var(--transition-base);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.header__inner {
    height: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--text-primary);
    transition: var(--transition-base);
}

.logo:hover {
    opacity: 0.8;
    color: var(--text-primary);
}

.logo-img {
    height: 36px;
    width: auto;
}

/* Navigation - Squish Style */
.header__nav {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-left: auto;
}

.header__nav a {
    padding: 8px 16px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.header__nav a:hover {
    color: var(--text-secondary);
    text-decoration: none;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-left: var(--space-xs);
}

.header__nav #auth-status {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
}

.header__nav #auth-status[hidden] {
    display: none !important;
}

.header__actions .btn-outline {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 500;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    margin-left: 0;
    text-decoration: none;
}

/* Legacy Navigation */
.header_navig {
    display: flex;
    align-items: center;
}

.header_ul {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    list-style: none;
    margin: 0;
}

.header_dv,
.header_div {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.header_ul li a {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-primary);
    border-radius: var(--radius-md);
    transition: var(--transition-base);
}

.header_ul li a:hover {
    color: var(--text-secondary);
}

.header_ul li a.active {
    color: var(--text-primary);
    font-weight: 500;
}

/* Header Buttons */
.btn-red {
    background: var(--accent-gradient) !important;
    color: var(--text-primary) !important;
    border: none;
    position: relative;
    overflow: hidden;
    font-weight: 600;
}

.btn-red::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

.btn-red:hover::before {
    opacity: 1;
}

.btn-red:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--text-primary) !important;
}

.btn-red.default {
    background: var(--bg-tertiary) !important;
    border: 1px solid var(--border-color);
    color: var(--text-secondary) !important;
}

.btn-red.default:hover {
    background: var(--bg-glass-hover) !important;
    border-color: var(--border-hover);
    box-shadow: none;
    color: var(--text-primary) !important;
}

.buy_models {
    background: var(--accent-gradient) !important;
}

/* Burger Menu */
.burger {
    display: none;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    cursor: pointer;
    position: relative;
    z-index: 1001;
}

.burger__line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    position: relative;
    transition: var(--transition-base);
}

.burger__line::before,
.burger__line::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    left: 0;
    transition: var(--transition-base);
}

.burger__line::before {
    top: -8px;
}

.burger__line::after {
    top: 8px;
}

.burger.active .burger__line {
    background: transparent;
}

.burger.active .burger__line::before {
    transform: rotate(45deg);
    top: 0;
    background: var(--text-primary);
}

.burger.active .burger__line::after {
    transform: rotate(-45deg);
    top: 0;
    background: var(--text-primary);
}

/* ============ HERO SECTION - Squish Style ============ */
.hero {
    padding: 140px 0 80px;
    position: relative;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.hero__content {
    max-width: 520px;
}

.hero__content .stat-badge {
    margin-bottom: var(--space-lg);
    animation: fadeInUp 0.6s ease-out;
}

/* Award Badge */
.hero__award {
    margin-bottom: var(--space-lg);
}

.award-badge {
    position: relative;
    display: inline-block;
}

.award-laurel {
    width: 200px;
    height: auto;
}

.award-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, calc(-50% + 5px)) scale(1.14);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    white-space: nowrap;
}

.award-title {
    font-size: 15px;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
}

.award-subtitle {
    font-size: 11px;
    color: #000;
    line-height: 1.2;
}

.award-stars {
    font-size: 12px;
    color: #000;
    letter-spacing: 2px;
    margin-top: 2px;
}

.hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: var(--space-lg);
    color: var(--text-primary);
    animation: fadeInUp 0.6s ease-out 0.1s both;
}

.hero__subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    margin-bottom: var(--space-xl);
    animation: fadeInUp 0.6s ease-out 0.3s both;
}

/* Black Button with Slide Effect */
.btn-black {
    display: inline-block;
    padding: 0 32px;
    background: #000;
    color: #fff;
    border-radius: 100px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: none;
    cursor: pointer;
    overflow: hidden;
    height: 54px;
    line-height: 54px;
}

.btn-black__text {
    display: block;
    transition: transform 0.15s ease;
}

.btn-black__text span {
    display: block;
    height: 54px;
    line-height: 54px;
    color: #fff;
}

.btn-black:hover .btn-black__text {
    transform: translateY(-54px);
}

/* Outline variant */
.btn-black--outline {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-black--outline .btn-black__text span {
    color: #000;
}

/* Outline Button - Squish Style */
.btn-outline,
.btn.btn-outline {
    background: transparent !important;
    color: var(--text-primary) !important;
    border: 1px solid rgba(0, 0, 0, 0.15) !important;
    border-radius: 100px !important;
    padding: 12px 24px !important;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline:hover,
.btn.btn-outline:hover {
    background: var(--accent-primary) !important;
    border-color: var(--accent-primary) !important;
    color: #000 !important;
}

.btn-outline:disabled,
.btn.btn-outline:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.btn-outline:disabled:hover,
.btn.btn-outline:disabled:hover {
    background: transparent !important;
    border-color: rgba(0, 0, 0, 0.15) !important;
    color: var(--text-primary) !important;
}

.btn-outline:focus,
.btn.btn-outline:focus {
    outline: none !important;
    box-shadow: none !important;
}

/* Social Proof */
.hero__social-proof {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero__avatars {
    display: flex;
}

.hero__avatars img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -10px;
    object-fit: cover;
}

.hero__avatars img:first-child {
    margin-left: 0;
}

.hero__rating {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.hero__stars {
    display: flex;
    gap: 2px;
    color: var(--text-primary);
}

.hero__rating span {
    font-size: 0.875rem;
    color: var(--text-secondary);
}

/* Hero Image */
.hero__image {
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero__image-wrapper {
    background: var(--bg-tertiary);
    border-radius: var(--radius-2xl);
    border: 8px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    aspect-ratio: 1/1;
}

.hero__image-wrapper img,
.hero__image-wrapper video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Search Box - Squish Style */
.search-box {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: 16px 24px;
    background: var(--bg-tertiary);
    border-radius: var(--radius-full);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

/* Search History Dropdown */
.search-history {
    position: absolute;
    top: calc(100% - 8px);
    left: 88px;
    width: 250px;
    background: #fff;
    border-radius: 8px;
    padding: 4px 0;
    display: none;
    z-index: 100;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.search-history::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #fff;
    filter: drop-shadow(0 -2px 2px rgba(0, 0, 0, 0.1));
}

.search-history.active {
    display: block;
}

.search-history__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 12px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
}

.search-history__item:hover {
    background: #f5f5f5;
}

.search-history__item span:first-child {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-history__delete {
    opacity: 0;
    width: 18px;
    height: 18px;
    display: grid;
    place-items: center;
    color: #999;
    cursor: pointer;
    border-radius: 50%;
    flex-shrink: 0;
}

.search-history__delete svg {
    width: 10px;
    height: 10px;
}

.search-history__item:hover .search-history__delete {
    opacity: 1;
}

.search-history__delete:hover {
    background: rgba(0, 0, 0, 0.08);
    color: #666;
}

.search-box__btn {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.search-box__btn svg {
    color: var(--text-tertiary);
    transition: color 0.2s;
}

.search-box__btn:hover svg {
    color: var(--text-primary);
}

.search-box input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    font-size: 1rem;
    color: var(--text-primary);
}

.search-box input::placeholder {
    color: var(--text-tertiary);
    transition: opacity 0.2s;
}

.search-box input:focus::placeholder {
    opacity: 0;
}

.search-box:focus-within {
    background: #fff !important;
    box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
}

.search-box input,
.search-box input:focus,
.search-box input:active {
    outline: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* ============ PRESETS SECTION - Squish Style ============ */
.presets-section {
    padding: var(--space-4xl) 0;
    background: var(--bg-primary);
}

.presets-header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.presets-section .stat-badge {
    margin-bottom: var(--space-lg);
}

.presets-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.presets-subtitle {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.6;
}

.presets-grid {
    display: flex;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
    margin-bottom: var(--space-2xl);
}

.preset-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    border: 8px solid rgba(0, 0, 0, 0.08);
    padding: var(--space-xl);
    width: 260px;
    text-align: center;
}

.preset-card:first-child {
    transform: rotate(-3deg);
}

.preset-card:last-child {
    transform: rotate(3deg);
}

.preset-image {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-lg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.preset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preset-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.preset-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.presets-cta {
    text-align: center;
}

/* ============ WHY SECTION - Squish Style ============ */
.why-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.why-main-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-2xl);
    background: var(--bg-card);
    border: 8px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    margin-bottom: var(--space-lg);
}

.why-main-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #E9D5FF;
    aspect-ratio: 1/1;
}

.why-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.why-main-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--space-lg) 0;
}

.why-label {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(0, 0, 0, 0.06);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    width: fit-content;
}

.why-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    line-height: 1.2;
}

.why-desc {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
}

.why-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-xl);
}

.why-feature h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
}

.why-feature p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Stats Cards */
.why-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.why-stat-card {
    padding: var(--space-xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    display: block;
    margin-bottom: var(--space-sm);
    min-height: 3.75rem;
}

.stat-number--compare {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.35rem 0.5rem;
    line-height: 1.1;
    min-height: 3.75rem;
}

.stat-number__part {
    white-space: nowrap;
}

.stat-number__arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--text-secondary);
    margin: 0 0.15rem;
}

.stat-number__arrow svg {
    display: block;
    width: 1.75rem;
    height: 1.75rem;
}

@media (min-width: 768px) {
    .stat-number__arrow svg {
        width: 2rem;
        height: 2rem;
    }
}

.stat-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-top: 0;
    margin-bottom: var(--space-sm);
}

.why-stat-card .stat-title + .stat-desc {
    margin-top: 0;
}

.stat-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: var(--space-lg);
}

.why-stat-card .stat-desc {
    min-height: 1.5em;
}

@media (min-width: 992px) {
    .why-stat-card .stat-desc {
        white-space: nowrap;
    }
}

.stat-badge {
    display: inline-block;
    padding: 6px 12px;
    background: #e0f782;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    color: #365314;
}

/* Why Section Responsive */
@media (max-width: 992px) {
    .why-main-card {
        grid-template-columns: 1fr;
    }

    .why-main-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .why-stats {
        grid-template-columns: 1fr;
    }

    .why-features {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Responsive */
@media (max-width: 992px) {
    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero__content {
        max-width: 100%;
        text-align: center;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__social-proof {
        justify-content: center;
    }

    .hero__image-wrapper {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* ============ BUTTONS - Squish Style ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 100px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition-base);
    text-decoration: none;
    white-space: nowrap;
    background: transparent;
}

/* ========== ЗЕЛЁНАЯ КНОПКА - ЕДИНЫЙ СТИЛЬ ========== */
/* Используй .btn-accent везде где нужна зелёная кнопка */
.btn-accent {
    padding: 14px 24px;
    background: var(--accent-primary);
    color: #000;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-accent:hover {
    background: var(--accent-dark);
    color: #000;
    transform: translateY(-1px);
}

.btn-accent--secondary {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.btn-accent--secondary:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: none;
}

.btn-accent:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    transform: none;
}

.btn-accent:disabled:hover {
    background: var(--accent-primary);
    transform: none;
}

/* Кнопка Buy Now в карточке - в углу */
.product-card__btn {
    padding: 14px 24px;
    background: var(--accent-primary);
    color: #000;
    border: none;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Компактная кнопка только на узких экранах */
@media (max-width: 480px) {
    .product-card__btn {
        padding: 12px 18px;
        font-size: 14px;
    }
}

.product-card__btn:hover {
    background: var(--accent-dark);
    color: #000;
}

.product-card__btn--secondary {
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.15);
}

.product-card__btn--secondary:hover {
    background: rgba(0, 0, 0, 0.05);
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--text-primary);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
    color: var(--text-primary);
}

.btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
}

.btn-secondary:hover {
    background: #E5E7EB;
    border-color: var(--border-hover);
    color: var(--text-primary);
}

.btn-bordered {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1.5px solid var(--border-color);
    padding: 12px 24px;
    font-family: var(--font-primary);
    font-weight: 600;
    border-radius: var(--radius-lg);
    transition: var(--transition-base);
}

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

.btn-bordered.sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 0.8125rem;
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: var(--space-sm);
}

.btn-ghost:hover {
    color: var(--accent-secondary);
    background: var(--accent-light);
}

.btn-icon {
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: var(--radius-md);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
    border-radius: var(--radius-xl);
}

/* ============ HOW IT WORKS SECTION ============ */
.how-it-works-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.how-images {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 0;
    margin-bottom: var(--space-2xl);
}

.how-image-card {
    width: 150px;
    height: 150px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 8px solid rgba(0, 0, 0, 0.08);
    background: #fff;
}

.how-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.how-image-1 {
    transform: rotate(-12deg) translateX(20px);
    z-index: 1;
}

.how-image-2 {
    transform: translateY(-10px);
    z-index: 2;
}

.how-image-3 {
    transform: rotate(12deg) translateX(-20px);
    z-index: 1;
}

.how-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.how-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 500px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.6;
}

.how-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.how-step-card {
    background: #fff;
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    border: 8px solid rgba(0, 0, 0, 0.08);
}

.step-number {
    display: inline-block;
    padding: 6px 12px;
    background: #e0f782;
    border-radius: var(--radius-md);
    font-size: 0.875rem;
    font-weight: 600;
    color: #365314;
    margin-bottom: var(--space-lg);
}

.step-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .how-steps-grid {
        grid-template-columns: 1fr;
    }

    .how-image-card {
        width: 100px;
        height: 120px;
    }
}

/* ============ USE CASES SECTION ============ */
.use-cases-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.badge-gray {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgb(247, 247, 247);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.use-cases-section .badge-gray {
    margin-bottom: var(--space-lg);
}

.use-cases-title {
    font-size: clamp(2rem, 4vw, 2.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
    max-width: 400px;
}

.use-cases-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
    line-height: 1.6;
    margin-bottom: var(--space-2xl);
}

.use-cases-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    align-items: stretch;
    background: rgb(242, 243, 247);
    border-radius: 40px;
    padding: 8px;
}

.use-cases-image {
    overflow: hidden;
    background: #e8e0f0;
    position: relative;
    border-radius: 32px;
    min-height: 400px;
}

.use-cases-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.use-cases-image img.active {
    opacity: 1;
}

.use-cases-accordion {
    display: flex;
    flex-direction: column;
    height: 520px;
}

.accordion-item {
    background: #fff;
    border-radius: 32px;
    padding: 24px;
    margin-bottom: 8px;
    cursor: pointer;
}

.accordion-item:last-child {
    margin-bottom: 0;
}

.accordion-item.active {
    padding-bottom: 46px;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.accordion-header h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.accordion-icon {
    width: 28px;
    height: 28px;
    position: relative;
    flex-shrink: 0;
}

.accordion-icon::before,
.accordion-icon::after {
    content: '';
    position: absolute;
    background: var(--text-primary);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion-icon::before {
    width: 18px;
    height: 2px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-icon::after {
    width: 2px;
    height: 18px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.accordion-item.active .accordion-icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
    opacity: 0;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease-out, opacity 0.3s ease;
}

.accordion-item.active .accordion-content {
    max-height: 280px;
    opacity: 1;
    padding-top: 24px;
}

.accordion-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.accordion-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
}

.accordion-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-primary);
    padding: 4px 0;
}

.accordion-list li svg {
    color: var(--text-secondary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.accordion-progress {
    height: 6px;
    background: rgb(242, 243, 247);
    border-radius: 100px;
    width: 100%;
    overflow: hidden;
    position: relative;
    margin-top: 32px;
}

.accordion-progress::after {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: rgb(224, 247, 130);
    border-radius: 100px;
    transition: width 0.1s linear;
}

.accordion-item.active .accordion-progress::after {
    animation: progressBar 12s linear forwards;
}

@keyframes progressBar {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .use-cases-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ PRESETS STICKY SECTION ============ */
.presets-sticky-section {
    padding: 80px 0;
    background: #fff;
}

.presets-sticky-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 48px;
    align-items: start;
}

.presets-sticky-sidebar {
    position: sticky;
    top: 120px;
}

.presets-sticky-title,
.core-features__title {
    font-size: 48px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.presets-sticky-desc,
.core-features__subtitle {
    font-size: 16px;
    color: rgb(73, 80, 93);
    line-height: 1.6;
}

.presets-sticky-desc {
    margin-bottom: 24px;
}

.presets-sticky-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.presets-sticky-card {
    padding: 24px;
}

.presets-sticky-card .preset-image {
    width: 160px;
    height: 160px;
    margin: 0 0 16px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.presets-sticky-card .preset-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.presets-sticky-card .stat-badge {
    margin-top: 0;
    margin-bottom: 24px;
}

.presets-sticky-card__title {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 8px;
}

.presets-sticky-card__desc {
    font-size: 16px;
    color: rgb(73, 80, 93);
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 992px) {
    .presets-sticky-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .presets-sticky-sidebar {
        position: static;
        text-align: center;
    }

    .presets-sticky-title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .presets-sticky-grid {
        grid-template-columns: 1fr;
    }
}

/* ============ CORE FEATURES SECTION ============ */
.core-features {
    padding: 80px 0;
    background: #fff;
}

.core-features__header {
    text-align: center;
    margin-bottom: 48px;
}

.core-features__header .badge-gray {
    margin-bottom: 24px;
}

.core-features__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.core-features__card {
    padding: 32px;
}

.core-features__card svg {
    color: #000;
    margin-bottom: 24px;
}

.core-features__card h4 {
    font-size: 28px;
    font-weight: 600;
    color: #000;
    margin-bottom: 12px;
}

.core-features__card p {
    font-size: 16px;
    color: rgb(73, 80, 93);
    line-height: 1.6;
    margin: 0;
}

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

    .core-features__title {
        font-size: 36px;
    }
}

@media (max-width: 576px) {
    .core-features__grid {
        grid-template-columns: 1fr;
    }

    .core-features__title {
        font-size: 28px;
    }
}

/* ============ TESTIMONIALS SECTION ============ */
.testimonials-section {
    padding: 80px 0;
    background: #fff;
}

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 48px;
    gap: 32px;
}

.testimonials-header__right {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonials-avatars {
    display: flex;
}

.testimonials-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    object-fit: cover;
}

.testimonials-avatars img:first-child {
    margin-left: 0;
}

.testimonials-stats {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.testimonials-stars {
    color: #000;
    font-size: 14px;
    letter-spacing: 2px;
}

.testimonials-count {
    font-size: 14px;
    color: var(--text-secondary);
}

/* Testimonials Slider */
.testimonials-slider {
    position: relative;
}

.testimonials-slide {
    display: none;
}

.testimonials-slide.active {
    display: block;
}

.testimonials-slide-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgb(242, 243, 247);
    border-radius: 40px;
    padding: 8px;
    gap: 8px;
}

.testimonials-image {
    border-radius: 32px;
    overflow: hidden;
    aspect-ratio: 1/1;
}

.testimonials-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-content {
    background: #fff;
    border-radius: 32px;
    padding: 48px;
    display: flex;
    flex-direction: column;
}

.testimonials-content .stat-badge {
    align-self: flex-end;
    margin-bottom: 32px;
}

.testimonials-rating {
    font-size: 18px;
    letter-spacing: 4px;
    margin-bottom: 24px;
}

.testimonials-quote {
    font-size: 28px;
    font-weight: 500;
    line-height: 1.3;
    color: #000;
    margin: 0 0 auto;
    letter-spacing: -0.02em;
}

.testimonials-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
}

.testimonials-author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonials-author span {
    font-size: 16px;
    font-weight: 500;
    color: #000;
}

.testimonials-nav {
    position: absolute;
    bottom: 56px;
    right: 56px;
    display: flex;
    gap: 8px;
}

.testimonials-nav__btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-base);
}

.testimonials-nav__btn:hover {
    background: #333;
}

@media (max-width: 992px) {
    .testimonials-slide-inner {
        grid-template-columns: 1fr;
    }

    .testimonials-content {
        padding: 32px;
    }

    .testimonials-nav {
        position: static;
        margin-top: 24px;
        justify-content: flex-end;
    }
}

@media (max-width: 768px) {
    .testimonials-header {
        flex-direction: column;
    }

    .testimonials-quote {
        font-size: 22px;
    }
}

/* ============ PRICING SECTION ============ */
.pricing-section {
    padding: 80px 0;
    background: #fff;
}

.pricing-header {
    margin-bottom: 48px;
}

.pricing-header .badge-gray {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.pricing-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.pricing-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.pricing-grid__tiers {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 24px;
}

.pricing-card {
    padding: 32px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.pricing-card--featured {
    overflow: visible;
}

.pricing-card--lifetime {
    display: grid;
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
    gap: 0 40px;
    align-items: center;
}

.pricing-card--lifetime .pricing-card__header {
    grid-column: 1;
    grid-row: 1 / 3;
    margin-bottom: 0;
}

.pricing-card--lifetime .pricing-card__price {
    grid-column: 2;
    grid-row: 1;
    margin-bottom: 32px;
    justify-self: start;
    flex-wrap: nowrap;
    white-space: nowrap;
    gap: 10px;
}

.pricing-card--lifetime .pricing-card__period {
    white-space: nowrap;
}

.pricing-card--lifetime .pricing-card__features--horizontal {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-wrap: nowrap;
    gap: 20px 28px;
    margin-bottom: 0;
    overflow-x: auto;
    scrollbar-width: thin;
}

.pricing-card--lifetime .pricing-card__features--horizontal li {
    text-align: left;
}

.pricing-card--lifetime .pricing-card__btn {
    grid-column: 3;
    grid-row: 1 / 3;
    width: auto;
    height: 54px;
    align-self: center;
}

.pricing-card--lifetime .pricing-card__badge {
    top: 24px;
    right: 24px;
}

.pricing-card__badge {
    position: absolute;
    top: 24px;
    right: 24px;
}

.pricing-card__header {
    margin-bottom: 24px;
    text-align: left;
}

.pricing-card__name {
    font-size: 32px;
    font-weight: 500;
    color: #000;
    margin-bottom: 8px;
}

.pricing-card__desc {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    min-height: 48px;
}

.pricing-card__price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 32px;
}

.pricing-card__amount {
    font-size: 64px;
    font-weight: 500;
    color: #000;
    line-height: 1;
}

.pricing-card__period {
    font-size: 18px;
    color: var(--text-secondary);
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
}

.pricing-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    color: #000;
    white-space: nowrap;
    max-width: 100%;
}

.pricing-card__features svg {
    flex-shrink: 0;
    color: var(--text-secondary);
}

.pricing-card__btn {
    width: 100%;
    margin-top: auto;
}

.btn-black.checkout-loading {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    overflow: hidden;
    height: 54px;
    pointer-events: none;
}

.btn-black.checkout-loading::before {
    content: '';
    width: 1rem;
    height: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-top-color: #fff;
    border-radius: 50%;
    animation: checkout-btn-spin 0.65s linear infinite;
    flex-shrink: 0;
}

.btn-black--outline.checkout-loading::before {
    border-color: rgba(0, 0, 0, 0.18);
    border-top-color: #000;
}

.btn-black.checkout-loading .btn-black__text {
    transform: none !important;
    transition: none;
}

.btn-black.checkout-loading:hover .btn-black__text {
    transform: none !important;
}

.btn-black.checkout-loading .btn-black__text span:nth-child(2) {
    display: none;
}

.btn-black.checkout-loading .btn-black__text span:first-child {
    height: 54px;
    line-height: 54px;
}

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

.pricing-card__decoration {
    position: absolute;
    top: calc(45% + 40px);
    right: 70px;
    width: 100px;
    height: auto;
    pointer-events: none;
    z-index: 1;
}

@media (max-width: 900px) {
    .pricing-card__decoration {
        display: none;
    }
}

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

    .pricing-title {
        font-size: 36px;
    }

    .pricing-card__amount {
        font-size: 48px;
    }

    .pricing-card--lifetime {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 24px;
    }

    .pricing-card--lifetime .pricing-card__header,
    .pricing-card--lifetime .pricing-card__price,
    .pricing-card--lifetime .pricing-card__features--horizontal,
    .pricing-card--lifetime .pricing-card__btn {
        grid-column: 1;
        grid-row: auto;
    }

    .pricing-card--lifetime .pricing-card__features--horizontal {
        flex-direction: column;
        flex-wrap: nowrap;
        gap: 12px;
        overflow-x: visible;
    }

    .pricing-card__features li {
        white-space: normal;
    }

    .pricing-card--lifetime .pricing-card__btn {
        width: 100%;
    }
}

/* ============ PLANS FEATURE COMPARE (Uniify.Space subscriptions) ============ */
.pricing-section .plans-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 48px;
    width: 100%;
}

.pricing-section .plans-compare-grid .compare-column {
    background: #fff;
    border: 8px solid rgba(0, 0, 0, 0.08);
    border-radius: var(--radius-2xl);
    padding: 28px 24px 24px;
    min-width: 0;
    transition: border-color var(--transition-fast), box-shadow var(--transition-base);
}

.pricing-section .plans-compare-grid .compare-column-highlight {
    border: 2px solid #111;
    box-shadow: var(--shadow-md);
}

.pricing-section .plans-compare-grid .compare-column-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    min-height: 36px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
}

.pricing-section .plans-compare-grid .compare-column-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin: 0;
}

.pricing-section .plans-compare-grid .compare-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.pricing-section .plans-compare-grid .feature-group-title {
    margin: 12px 0 4px;
    min-height: 22px;
    display: flex;
    align-items: center;
    color: var(--text-secondary);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pricing-section .plans-compare-grid .feature-group-title:first-child {
    margin-top: 0;
}

.pricing-section .plans-compare-grid .feature-row {
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    background: #fff;
    overflow: hidden;
    transition: border-color var(--transition-fast);
}

.pricing-section .plans-compare-grid .feature-row.available {
    border-color: rgba(201, 222, 90, 0.55);
    background: var(--accent-light);
}

.pricing-section .plans-compare-grid .feature-row.unavailable {
    border-color: rgba(239, 68, 68, 0.18);
    background: rgba(254, 242, 242, 0.45);
}

.pricing-section .plans-compare-grid .feature-toggle {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    display: grid;
    grid-template-columns: 22px 1fr 16px;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    text-align: left;
    border: none;
    background: transparent;
    font: inherit;
    color: inherit;
    transition: opacity var(--transition-fast);
}

.pricing-section .plans-compare-grid .feature-toggle:active {
    opacity: 0.92;
}

.pricing-section .plans-compare-grid .status-dot {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.pricing-section .plans-compare-grid .available .status-dot {
    color: #365314;
    background: var(--accent-primary);
}

.pricing-section .plans-compare-grid .unavailable .status-dot {
    color: #991b1b;
    background: #fee2e2;
}

.pricing-section .plans-compare-grid .feature-main {
    min-width: 0;
}

.pricing-section .plans-compare-grid .feature-title {
    color: var(--text-primary);
    font-size: 13px;
    line-height: 1.2;
    font-weight: 600;
    letter-spacing: -0.01em;
}

.pricing-section .plans-compare-grid .unavailable .feature-title {
    color: #991b1b;
}

.pricing-section .plans-compare-grid .feature-cost {
    display: block;
    margin-top: 4px;
    font-size: 11px;
    line-height: 1.2;
    color: var(--text-secondary);
}

.pricing-section .plans-compare-grid .available .feature-cost {
    color: #4d7c0f;
}

.pricing-section .plans-compare-grid .unavailable .feature-cost {
    color: #b91c1c;
}

.pricing-section .plans-compare-grid .chevron {
    width: 8px;
    height: 8px;
    border-right: 2px solid var(--text-tertiary);
    border-bottom: 2px solid var(--text-tertiary);
    transform: rotate(45deg);
    transition: transform var(--transition-fast);
    justify-self: end;
}

.pricing-section .plans-compare-grid .feature-row.open .chevron {
    transform: rotate(-135deg);
}

.pricing-section .plans-compare-grid .feature-body {
    display: none;
    padding: 0 12px 12px 42px;
}

.pricing-section .plans-compare-grid .feature-row.open .feature-body {
    display: block;
}

.pricing-section .plans-compare-grid .feature-body ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 6px;
}

.pricing-section .plans-compare-grid .feature-body li {
    color: var(--text-secondary);
    font-size: 12px;
    line-height: 1.35;
    display: flex;
    align-items: flex-start;
    gap: 6px;
}

.pricing-section .plans-compare-grid .feature-body li::before {
    content: "";
    flex: 0 0 5px;
    width: 5px;
    height: 5px;
    margin-top: 0.5em;
    border-radius: var(--radius-full);
    background: var(--text-muted);
}

.pricing-section .plans-compare-grid .available .feature-body li::before {
    background: var(--accent-dark);
}

.pricing-section .plans-compare-grid .unavailable .feature-body li::before {
    background: var(--error);
}

@media (max-width: 992px) {
    .pricing-section .plans-compare-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 32px;
    }
}

/* ============ FAQ SECTION ============ */
.faq-section {
    padding: 80px 0;
    background: #fff;
}

.faq-header {
    text-align: center;
    margin-bottom: 48px;
}

.faq-header .badge-gray {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.faq-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
    margin-bottom: 16px;
}

.faq-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.faq-list {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: rgb(242, 243, 247);
    border-radius: 32px;
    padding: 8px;
}

.faq-item {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    color: #000;
}

.faq-chevron {
    flex-shrink: 0;
    color: #000;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 24px 20px;
    margin: 0;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .faq-title {
        font-size: 36px;
    }

    .faq-list {
        max-width: 100%;
    }
}

/* ============ CTA SECTION ============ */
.cta-section {
    padding: 80px 0;
    background: #fff;
    text-align: center;
}

.cta-title {
    font-size: 48px;
    font-weight: 500;
    color: #000;
    margin-bottom: 16px;
}

.cta-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 32px;
}


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

/* ============ NEW MODELS SECTION ============ */
.models-section {
    padding: 80px 0;
    background: #fff;
}

.models-header {
    margin-bottom: 48px;
}

.models-header .badge-gray {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.models-header__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.models-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
    margin-bottom: 12px;
}

.models-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.models-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    transition: background 0.2s;
    white-space: nowrap;
}

.models-link:hover {
    background: #e0f782;
    border-color: #e0f782;
    color: #000;
}

.models-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

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

@media (max-width: 768px) {
    .models-title {
        font-size: 36px;
    }

    .models-header__row {
        flex-direction: column;
        align-items: flex-start;
    }

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

/* ============ GALLERY SECTION ============ */
.gallery-section {
    padding: 80px 0;
    background: #fff;
}

.gallery-header {
    margin-bottom: 48px;
}

.gallery-header .badge-gray {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.gallery-header__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.gallery-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
    margin-bottom: 12px;
}

.gallery-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.gallery-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.gallery-link:hover {
    background: #e0f782;
    border-color: #e0f782;
    color: #000;
}

@media (max-width: 768px) {
    .gallery-title {
        font-size: 36px;
    }

    .gallery-header__row {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Gallery Card */
.gallery-section .cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.gallery-card {
    position: relative;
    cursor: pointer;
    border: 8px solid rgb(242, 243, 247);
    border-radius: 32px;
    overflow: hidden;
    background: rgb(242, 243, 247);
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
}

.gallery-card__image {
    aspect-ratio: 4/3;
    background: #f5f5f5;
    position: relative;
    overflow: hidden;
    border-radius: 24px;
}

.gallery-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease, filter 0.3s ease;
}

.gallery-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-card__hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
}

.gallery-card__hover svg {
    color: #000;
}

.gallery-card:hover .gallery-card__image img {
    transform: scale(1.05);
}

.gallery-card:hover .gallery-card__image::after {
    opacity: 1;
}

.gallery-card:hover .gallery-card__hover {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.gallery-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px 24px;
    border-radius: 24px 24px 0 0;
    background: #fff;
    flex: 1;
}

.gallery-card__badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 14px;
    background: #e0f782;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.gallery-card__title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.3;
}

.gallery-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Public Gallery before/after comparison (ambassador only) */
.gallery-card--compare {
    cursor: default;
    gap: 0;
}

.gallery-card--compare:hover .gallery-card__image::after,
.gallery-card--compare:hover .gallery-card__hover {
    opacity: 0;
    transform: none;
    pointer-events: none;
}

.gallery-card__image--compare {
    background: #f5f5f5;
}

.gallery-card__image--compare .gallery-card-slider-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #f5f5f5;
    touch-action: pan-y;
    cursor: ew-resize;
}

.gallery-card-slider-wrapper .comparison-before,
.gallery-card-slider-wrapper .comparison-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    border-radius: 24px;
    background: #f5f5f5;
}

.gallery-card-slider-wrapper .comparison-before {
    z-index: 1;
}

.gallery-card-slider-wrapper .comparison-after {
    z-index: 2;
    clip-path: inset(0 0 0 50%);
}

.gallery-card-slider-wrapper .comparison-before img,
.gallery-card-slider-wrapper .comparison-after img {
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 0;
}

.gallery-card-slider-wrapper .comparison-slider {
    position: absolute;
    top: 0;
    left: 50%;
    width: 4px;
    height: 100%;
    background: rgba(17, 24, 39, 0.3);
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
    pointer-events: none;
}

.gallery-card-slider-wrapper .comparison-handle {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(17, 24, 39, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-card-slider-wrapper .comparison-handle-arrows {
    display: flex;
    gap: 2px;
    align-items: center;
}

.gallery-card-slider-wrapper .comparison-handle-arrows .chev {
    width: 8px;
    height: 8px;
    border-top: 2px solid #111827;
    border-left: 2px solid #111827;
}

.gallery-card-slider-wrapper .gallery-style-badge {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 16px;
    padding: 6px 14px;
    border-radius: 980px;
    background: rgba(29, 29, 31, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    z-index: 10;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

@media (max-width: 768px) {
    .gallery-section .cards {
        grid-template-columns: 1fr;
    }

    .gallery-card__title {
        font-size: 20px;
    }
}

/* ============ BLOG SECTION (Index Page) ============ */
.blog-section {
    padding: 80px 0;
    background: #fff;
}

.blog-header {
    margin-bottom: 48px;
}

.blog-header .badge-gray {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

.blog-header__row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 24px;
}

.blog-title {
    font-size: 48px;
    font-weight: 500;
    line-height: 1.1;
    color: #000;
    margin-bottom: 12px;
}

.blog-subtitle {
    font-size: 16px;
    color: var(--text-secondary);
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    padding: 12px 24px;
    border: 1px solid rgba(0, 0, 0, 0.15);
    border-radius: 100px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.blog-link:hover {
    background: #e0f782;
    border-color: #e0f782;
    color: #000;
}

/* Blog Cards Grid */
.blog-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    align-items: stretch;
}

.blog-card {
    position: relative;
    cursor: pointer;
    border: 8px solid rgb(242, 243, 247);
    border-radius: 32px;
    overflow: hidden;
    background: rgb(242, 243, 247);
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    text-decoration: none;
}

.blog-card__image {
    aspect-ratio: 16/9;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-card__image-placeholder {
    font-size: 48px;
    color: rgba(255,255,255,0.5);
}

.blog-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 24px;
}

.blog-card__hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 2;
}

.blog-card__hover svg {
    color: #000;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.05);
}

.blog-card:hover .blog-card__image::after {
    opacity: 1;
}

.blog-card:hover .blog-card__hover {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 24px 24px;
    border-radius: 24px;
    background: #fff;
    flex: 1;
}

.blog-card__badge {
    display: inline-block;
    width: fit-content;
    padding: 6px 14px;
    background: #e0f782;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
}

.blog-card__title {
    font-size: 24px;
    font-weight: 600;
    color: #000;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: auto;
    font-size: 14px;
    color: var(--text-tertiary);
}

.blog-card__author {
    display: flex;
    align-items: center;
    gap: 8px;
}

.blog-card__author-avatar {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: #eee;
}

@media (max-width: 768px) {
    .blog-cards {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: 32px;
    }

    .blog-card__title {
        font-size: 20px;
    }
}

/* Product Card - Переопределяем старые стили из style.css */
.product-card {
    position: relative;
    padding: 0;
    cursor: pointer;
    height: auto !important;
    width: 100% !important;
    box-shadow: none !important;
    margin-top: 0 !important;
    border-radius: 32px !important;
    background: rgb(242, 243, 247);
    border: 8px solid rgb(242, 243, 247) !important;
    overflow: visible;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card:hover {
    border-color: rgb(242, 243, 247);
}

.product-card__badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 6px 12px;
    background: #e0f782;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: #000;
    z-index: 2;
}

.product-card__badge--free {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.product-card__badge--vr {
    left: auto;
    right: 24px;
    background: #a78bfa;
    color: #fff;
}

/* Tech badges (bottom, near Buy button) */
.product-card__tech-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    align-items: center;
}

.product-card__tech-badge {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.product-card__tech-badge--vr {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 100%);
    color: #fff;
}

.product-card__tech-badge--baked {
    background: linear-gradient(135deg, #fb923c 0%, #ea580c 100%);
    color: #fff;
}

.product-card__tech-badge--lumen {
    background: linear-gradient(135deg, #38bdf8 0%, #0ea5e9 100%);
    color: #fff;
}

.product-card__tech-badge--free {
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.product-card__bookmark {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s;
}

.product-card__bookmark:hover {
    background: #fff;
}

.product-card__bookmark svg {
    color: #666;
}

.product-card__bookmark svg.active {
    fill: #000;
    color: #000;
}

.product-card__image {
    border-radius: 24px;
    overflow: hidden;
    margin-bottom: 0;
    aspect-ratio: 1/1;
    background: #f5f5f5;
    position: relative;
}

.product-card__image img,
.product-card__image picture {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card__image picture img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-card__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(5px);
    border-radius: 24px;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.product-card__image .blog-card__hover {
    z-index: 3;
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card:hover .product-card__image::after {
    opacity: 1;
}

.product-card:hover .blog-card__hover {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

/* Hover image (second image) */
img.product-card__image-hover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.card-hovered:hover img.product-card__image-hover {
    opacity: 1;
}

.product-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 16px 20px 20px;
    background: #fff;
    border-radius: 24px;
    flex-shrink: 0;
    min-height: fit-content;
}

.product-card__title {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    margin: 0;
    line-height: 1.4;
    flex: 1;
    min-height: calc(1.4em * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
    row-gap: 10px;
}

/* .product-card__btn стили объединены в .btn-accent выше */

/* ============ PRE-FOOTER SECTION ============ */
.pre-footer {
    padding: 76px 0 0;
    background: #fff;
    overflow: hidden;
    position: relative;
}

.pre-footer__content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    min-height: 250px;
}

.pre-footer__nav {
    display: flex;
    gap: 100px;
}

.pre-footer__menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.pre-footer__menu a {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s;
}

.pre-footer__menu a:hover {
    opacity: 0.6;
}

.pre-footer__logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 80px;
    width: 600px;
}

.pre-footer__logo img {
    width: 100%;
    height: auto;
    display: block;
}

.pre-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 24px;
}

.pre-footer__socials {
    display: flex;
    gap: 12px;
}

.pre-footer__social-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #d4e157;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: transform 0.2s;
}

.pre-footer__social-btn:hover {
    transform: scale(1.1);
}

.pre-footer__links {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 12px;
}

.pre-footer__links a {
    font-size: 15px;
    color: #000;
    text-decoration: none;
    transition: opacity 0.2s;
}

.pre-footer__links a:hover {
    opacity: 0.6;
}

@media (max-width: 1024px) {
    .pre-footer__content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        min-height: auto;
        padding-bottom: 300px;
    }

    .pre-footer__nav {
        order: 1;
    }

    .pre-footer__right {
        order: 2;
        align-items: center;
    }

    .pre-footer__logo {
        position: absolute;
        top: auto;
        bottom: -100px;
        width: 400px;
    }
}

@media (max-width: 768px) {
    .pre-footer__nav {
        gap: 60px;
    }

    .pre-footer__links {
        align-items: center;
    }

    .pre-footer__logo {
        width: 300px;
    }
}

/* ============ PROMPTS SECTION - Sticky Cards ============ */
.prompts-section {
    padding: var(--space-3xl) 0;
    background: var(--bg-primary);
}

.prompts-title {
    text-align: center;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.prompts-subtitle {
    text-align: center;
    font-size: 1rem;
    color: var(--text-secondary);
    max-width: 400px;
    margin: 0 auto var(--space-2xl);
    line-height: 1.6;
}

.prompts-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding-bottom: 150px;
}

.prompt-card {
    position: sticky;
    top: calc(100px + var(--card-index) * 20px);
    z-index: calc(10 + var(--card-index));
}

.prompt-card-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    background: rgb(242, 243, 247);
    border-radius: 40px;
    min-height: 380px;
    padding: 8px;
    gap: 8px;
}

.prompt-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 48px;
    background: #fff;
    border-radius: 32px;
}

.prompt-content h3 {
    font-size: 32px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.prompt-content p {
    font-size: 16px;
    color: rgb(73, 80, 93);
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 300px;
}

.prompt-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.prompt-image {
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    aspect-ratio: 1/1;
}

.prompt-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .prompt-card-inner {
        grid-template-columns: 1fr;
    }

    .prompt-content {
        border-radius: 32px 32px 0 0;
        padding: 32px;
    }

    .prompt-image {
        margin: 16px;
        margin-top: 0;
        aspect-ratio: 1/1;
    }

    .prompt-card {
        position: relative;
        top: auto;
    }
}

/* ============ SECTION TITLES ============ */
.block-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--accent-secondary);
    margin-bottom: var(--space-sm);
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
    gap: var(--space-md);
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 600;
    letter-spacing: -0.02em;
}

.section-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-tertiary);
    transition: var(--transition-base);
}

.section-link:hover {
    color: var(--accent-secondary);
}

.section-link svg {
    transition: var(--transition-base);
}

.section-link:hover svg {
    transform: translateX(4px);
}

/* ============ CARDS GRID ============ */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: var(--space-lg);
    padding: var(--space-md) 0;
}

/* ============ PRODUCT CARD - Squish Style ============ */
.card {
    position: relative;
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
    height: auto;
    box-shadow: var(--shadow-md);
}

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

.card-white {
    display: flex;
    flex-direction: column;
}

.card img.card-img-top,
.card picture img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    transition: var(--transition-slow);
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.card:hover img.card-img-top,
.card:hover picture img {
    transform: scale(1.03);
}

.card-body {
    padding: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    background: var(--bg-card);
}

.card-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card .author {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.card .author a {
    color: var(--accent-secondary);
    font-weight: 600;
}

.card .author a:hover {
    color: var(--accent-dark);
}

.card .btn {
    width: 100%;
    margin-top: auto;
}

/* Card Badges - Squish Style */
.free-banner,
.vr-banner {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 12px;
    background: var(--accent-light);
    border-radius: var(--radius-full);
    z-index: 10;
}

.free-banner span,
.vr-banner span {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--accent-dark);
}

.vr-banner {
    background: #E0E7FF;
    left: auto;
    right: var(--space-md);
}

.vr-banner span {
    color: #4338CA;
}

/* Bookmark */
.card .bookmark {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-full);
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.card .bookmark:hover {
    background: var(--bg-card);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

.card .bookmark img {
    width: 18px;
    height: 18px;
    opacity: 0.6;
    transition: var(--transition-base);
}

.card .bookmark:hover img,
.card .bookmark img.active {
    opacity: 1;
}

/* Card Hovered (Image swap) */
.card-hovered picture {
    display: block;
}

.card-hovered picture:not(:first-of-type) {
    display: none;
}

.card-hovered:hover picture:first-of-type {
    display: none;
}

.card-hovered:hover picture:first-of-type+picture {
    display: block;
}

/* ============ GALLERY CARD - Squish Style ============ */
.card-gallery {
    background: var(--bg-card);
    border: none;
    box-shadow: var(--shadow-md);
}

.card-gallery .card-body {
    background: var(--bg-card);
}

.card-gallery .rating-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.card-gallery .rating-wrapper span {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 0.875rem;
    color: var(--text-tertiary);
    cursor: pointer;
    transition: var(--transition-base);
}

.card-gallery .rating-wrapper span:hover {
    color: var(--accent-secondary);
}

.card-gallery .rating-wrapper img {
    width: 16px;
    height: 16px;
}

/* ============ BLOG CARD - Squish Style ============ */
.card-blog {
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.card-blog .card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    background: var(--bg-tertiary);
    border-bottom: none;
}

.card-blog .card-header .title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    transition: var(--transition-base);
}

.card-blog .card-header .title:hover {
    color: var(--accent-secondary);
}

.card-blog .card-body {
    padding: var(--space-lg);
    max-height: 200px;
    overflow: hidden;
    position: relative;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.card-blog .card-body::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(transparent, var(--bg-card));
    pointer-events: none;
}

.card-blog .card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) var(--space-lg);
    background: transparent;
    border-top: 1px solid var(--border-color);
}

.card-blog .card-footer .author {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.card-blog .card-footer .author a {
    color: var(--accent-secondary);
    font-weight: 600;
}

/* ============ SINGLE BLOG POST ============ */
#single-post {
    max-width: 800px;
    margin: 0 auto;
}

.blog-post {
    /* Article container */
}

.blog-post__header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.blog-post__badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--accent-primary);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: var(--space-lg);
}

.blog-post__title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: var(--space-md);
}

.blog-post__meta {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
}

.blog-post__image {
    margin-bottom: var(--space-2xl);
}

.blog-post__image img {
    width: 100%;
    border-radius: var(--radius-xl);
}

.blog-post__content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.blog-post__content h1,
.blog-post__content h2,
.blog-post__content h3 {
    color: var(--text-primary);
    margin-top: var(--space-2xl);
    margin-bottom: var(--space-lg);
    line-height: 1.3;
}

.blog-post__content h2 {
    font-size: 1.75rem;
}

.blog-post__content h3 {
    font-size: 1.5rem;
}

.blog-post__content p {
    margin-bottom: var(--space-lg);
}

.blog-post__content ul,
.blog-post__content ol {
    margin-bottom: var(--space-lg);
    padding-left: var(--space-xl);
}

.blog-post__content li {
    margin-bottom: var(--space-sm);
}

.blog-post__content img {
    max-width: 100%;
    border-radius: var(--radius-lg);
    margin: var(--space-xl) 0;
}

.blog-post__content blockquote {
    border-left: 4px solid var(--accent-primary);
    padding-left: var(--space-lg);
    margin: var(--space-xl) 0;
    font-style: italic;
    color: var(--text-tertiary);
}

.blog-post__content a {
    color: var(--accent-secondary);
    text-decoration: underline;
}

.blog-post__content a:hover {
    text-decoration: none;
}

.blog-post__content iframe,
.blog-post__content video,
.blog-post__content embed {
    display: block;
    max-width: 100%;
    margin: var(--space-xl) auto;
}

.blog-post__content p:has(iframe),
.blog-post__content p:has(video) {
    text-align: center;
}

/* ============ CATEGORY CARDS ============ */
.card-mini {
    position: relative;
    width: 180px;
    height: 180px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
}

.card-mini:hover {
    transform: scale(1.05);
}

.card-mini img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-mini::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent 60%);
}

.card-mini .title {
    position: absolute;
    bottom: var(--space-md);
    left: 0;
    right: 0;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    z-index: 1;
}

.top-menu-cards {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    justify-content: center;
    padding: var(--space-lg) 0;
}

/* ============ FILTERS - Squish Style ============ */
.filter-list {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    flex-wrap: wrap;
}

.filter-list a,
.filter-link {
    padding: 10px 18px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: var(--bg-tertiary);
    border: none;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

.filter-list a:hover,
.filter-link:hover {
    color: var(--text-primary);
    background: #E5E7EB;
}

.filter-list a.active,
.filter-link.active {
    color: var(--text-primary);
    background: var(--accent-gradient);
    box-shadow: var(--shadow-sm);
}

/* ============ SEARCH - Squish Style ============ */
.search-wrapper,
.right-menu {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    margin-top: 100px;
}

.right-menu input,
#global-search {
    flex: 1;
    padding: 14px 20px;
    background: var(--bg-tertiary);
    border: none;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    outline: none;
    transition: var(--transition-base);
}

.right-menu input:focus {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-light);
}

#global-search:focus {
    background: transparent;
    border: none;
    box-shadow: none;
}

.right-menu input::placeholder,
#global-search::placeholder {
    color: var(--text-tertiary);
}

#search-btn {
    padding: 14px;
    background: var(--accent-gradient);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: var(--transition-base);
}

#search-btn:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-glow);
}

#search-btn img {
    width: 20px;
    height: 20px;
}

/* ============ PAGINATION ============ */
.pagination-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    padding: var(--space-2xl) 0;
}

#page-info {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    padding: var(--space-sm) var(--space-md);
    background: var(--bg-glass);
    border-radius: var(--radius-md);
}

.pagination-nav .btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-nav .btn img {
    width: 16px;
    height: 16px;
    filter: invert(1);
}

/* ============ FOOTER - Squish Style ============ */
footer {
    margin-top: auto;
    padding: var(--space-3xl) 0 var(--space-xl);
    background: var(--bg-tertiary);
    border-top: 1px solid var(--border-color);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

footer p {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    text-align: center;
    max-width: 800px;
}

footer ul {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    justify-content: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

footer ul li a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: var(--transition-base);
}

footer ul li a:hover {
    color: var(--accent-secondary);
}

.terms {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.terms a {
    font-size: 0.8125rem;
    color: var(--text-tertiary);
    padding-right: var(--space-md);
    position: relative;
}

.terms a:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: 0;
    color: var(--text-muted);
}

.terms a:hover {
    color: var(--accent-secondary);
}

.socials {
    display: flex;
    gap: var(--space-sm);
}

.socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.socials a:hover {
    background: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.socials a img {
    width: 20px;
    height: 20px;
    opacity: 0.6;
}

.socials a:hover img {
    opacity: 1;
}

.pre-footer__bottom {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    text-align: center;
}

.copyright {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    letter-spacing: 0.02em;
}

.copyright sup {
    font-size: 0.65em;
    vertical-align: super;
    margin-left: 1px;
}

/* ============ MODALS - Squish Style ============ */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-lg);
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(29, 32, 41, 0.6);
    backdrop-filter: blur(8px);
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 420px;
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-2xl);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-lg);
    animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(10px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-glass);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--text-tertiary);
    font-size: 1.25rem;
    cursor: pointer;
    transition: var(--transition-base);
}

.modal-close:hover {
    background: var(--bg-glass-hover);
    color: var(--text-primary);
}

.modal-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.modal-header h2 {
    font-size: 1.5rem;
    font-weight: 600;
}

.modal-body {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

/* Cookie Modal */
.cookie-modal {
    position: fixed;
    bottom: var(--space-lg);
    right: var(--space-lg);
    max-width: 400px;
    background: var(--bg-card);
    border: none;
    border-radius: var(--radius-2xl);
    padding: var(--space-lg);
    z-index: 1500;
    animation: slideUp 0.5s ease-out;
    box-shadow: var(--shadow-lg);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cookie-content p {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin-bottom: var(--space-md);
}

#accept-cookies {
    width: 100%;
}

/* ============ PRELOADER - Squish Style ============ */
.preloader__wrapper {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease-out;
}

.preloader__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.preloader-logo__wrapper {
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-logo {
    width: 80px;
    height: auto;
}

@keyframes preloaderPulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

.logo-title-wrapper .logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.logo-title span {
    color: var(--accent-secondary);
}

/* Spinner */
.spinner-border {
    width: 24px;
    height: 24px;
    border: 2.5px solid var(--accent-light);
    border-top-color: var(--accent-primary);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

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

/* ============ SKELETON LOADING - Squish Style ============ */
.skeleton {
    background: linear-gradient(90deg, var(--bg-tertiary) 25%, #E5E7EB 50%, var(--bg-tertiary) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-lg);
}

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

    100% {
        background-position: -200% 0;
    }
}

.skeleton-card {
    pointer-events: none;
}

.skeleton-card .skeleton.card-img-top {
    height: 240px;
    border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.skeleton-card .card-body .skeleton {
    height: 20px;
    margin-bottom: var(--space-sm);
}

.card-skeleton-bg {
    background: var(--bg-tertiary);
}

/* ============ FORMS - Squish Style ============ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-control {
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border: 1.5px solid transparent;
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    outline: none;
    transition: var(--transition-base);
}

.form-control:focus {
    background: var(--bg-card);
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px var(--accent-light);
}

.form-control::placeholder {
    color: var(--text-tertiary);
}

input[type=checkbox].form-control {
    width: 22px;
    height: 22px;
    cursor: pointer;
    accent-color: var(--accent-primary);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

/* ============ ALERTS ============ */
.alert {
    padding: var(--space-md) var(--space-lg);
    border-radius: var(--radius-md);
    font-size: 0.875rem;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.3);
    color: var(--warning);
}

.alert-danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    color: var(--error);
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: var(--success);
}

/* ============ CONTENT SECTIONS ============ */
.content-right {
    flex-grow: 1;
    padding-top: 100px;
}

.double-column {
    padding: var(--space-xl) 0;
}

.pt-2 {
    padding-top: var(--space-sm);
}

.mt-4 {
    margin-top: var(--space-lg);
}

.mt-5 {
    margin-top: var(--space-xl);
}

.mb-0 {
    margin-bottom: 0;
}

.my-2 {
    margin-top: var(--space-sm);
    margin-bottom: var(--space-sm);
}

.my-3 {
    margin-top: var(--space-md);
    margin-bottom: var(--space-md);
}

.mx-3 {
    margin-left: var(--space-md);
    margin-right: var(--space-md);
}

.w-100 {
    width: 100%;
}

.h6 {
    font-size: 0.875rem;
}

.p-2 {
    padding: var(--space-sm);
}

/* ============ CHALLENGE BANNER ============ */
.challenge-banner {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    margin: var(--space-2xl) 0;
}

/* ============ TABS ============ */
.tabs {
    display: flex;
    gap: var(--space-lg);
}

.tabs .nav {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.tabs .nav-link {
    padding: var(--space-sm) var(--space-md);
    background: transparent;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    color: var(--text-tertiary);
    font-weight: 500;
    transition: var(--transition-base);
    text-decoration: none;
}

.tabs .nav-link:hover {
    color: var(--text-primary);
    background: var(--bg-glass);
}

.tabs .nav-link.active {
    background: var(--accent-gradient);
    color: white;
    border-color: transparent;
}

.tab-content {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: var(--space-lg);
}

/* ============ PROFILE ============ */
.profile {
    display: flex;
    gap: var(--space-xl);
}

.profile__main {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-md);
}

.profile__main img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--border-color);
}

.profile__main .name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
}

.profile__main .rating {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.profile__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.profile__info p {
    font-size: 0.875rem;
    color: var(--accent-secondary);
}

.profile__info p span {
    color: var(--text-primary);
    margin-right: var(--space-sm);
}

/* ============ TABLES ============ */
table {
    width: 100%;
    border-collapse: collapse;
}

th,
td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

th {
    font-weight: 600;
    color: var(--text-tertiary);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

td {
    color: var(--text-secondary);
    font-size: 0.875rem;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
    }
}

@media (max-width: 992px) {
    .header__nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-card);
        padding: 100px var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        transition: var(--transition-base);
        z-index: 999;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: var(--space-lg);
    }

    .header__nav.menu {
        transform: translateX(0);
    }

    .header__nav a {
        font-size: 1.25rem;
    }

    .header__actions {
        display: none;
    }

    .header_navig {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-card);
        padding: 100px var(--space-lg) var(--space-lg);
        transform: translateX(100%);
        transition: var(--transition-base);
        z-index: 999;
    }

    .header_navig.menu {
        transform: translateX(0);
    }

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

    .header_dv,
    .header_div {
        flex-direction: column;
        width: 100%;
    }

    .header_ul li a {
        width: 100%;
        justify-content: center;
        padding: var(--space-md);
    }

    .burger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .cards {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 16px;
        --space-xl: 24px;
        --space-2xl: 32px;
    }

    .header {
        height: 64px;
        padding: 0 var(--space-md);
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero__title {
        font-size: clamp(2rem, 10vw, 3rem);
    }

    .hero__subtitle {
        font-size: 1rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        width: 100%;
    }

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

    .top-menu-cards {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: var(--space-md);
        -webkit-overflow-scrolling: touch;
    }

    .card-mini {
        flex-shrink: 0;
        width: 140px;
        height: 140px;
    }

    footer ul {
        flex-direction: column;
        gap: var(--space-md);
    }

    .terms {
        flex-direction: column;
        align-items: center;
    }

    .terms a::after {
        display: none;
    }

    .cookie-modal {
        left: var(--space-md);
        right: var(--space-md);
        max-width: none;
    }

    .pagination-nav {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .btn-lg {
        padding: var(--space-sm) var(--space-lg);
        font-size: 0.875rem;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============ UTILITY CLASSES ============ */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.d-flex {
    display: flex;
}

.d-none {
    display: none;
}

.d-block {
    display: block;
}

.flex-column {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-wrap {
    flex-wrap: wrap;
}

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

.align-items-start {
    align-items: flex-start;
}

.align-items-end {
    align-items: flex-end;
}

.justify-content-center {
    justify-content: center;
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: flex-end;
}

.gap-1 {
    gap: var(--space-xs);
}

.gap-2 {
    gap: var(--space-sm);
}

.gap-3 {
    gap: var(--space-md);
}

.gap-4 {
    gap: var(--space-lg);
}

.list-unstyled {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ============ SCROLLBAR - Squish Style ============ */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-tertiary);
}

::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

/* ============ SELECTION ============ */
::selection {
    background: #e0f782;
    color: #000;
}

/* ============ FOCUS STYLES ============ */
:focus-visible {
    outline: 2px solid var(--accent-secondary);
    outline-offset: 2px;
}

/* ============ ANIMATIONS ============ */
.fade-in {
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.slide-up {
    animation: slideUp 0.5s ease-out;
}

.scale-in {
    animation: scaleIn 0.3s ease-out;
}

@keyframes scaleIn {
    from {
        transform: scale(0.95);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Stagger animation for cards */
.cards>* {
    animation: fadeInUp 0.5s ease-out backwards;
}

.cards>*:nth-child(1) {
    animation-delay: 0.05s;
}

.cards>*:nth-child(2) {
    animation-delay: 0.1s;
}

.cards>*:nth-child(3) {
    animation-delay: 0.15s;
}

.cards>*:nth-child(4) {
    animation-delay: 0.2s;
}

.cards>*:nth-child(5) {
    animation-delay: 0.25s;
}

.cards>*:nth-child(6) {
    animation-delay: 0.3s;
}

.cards>*:nth-child(7) {
    animation-delay: 0.35s;
}

.cards>*:nth-child(8) {
    animation-delay: 0.4s;
}

.cards>*:nth-child(9) {
    animation-delay: 0.45s;
}

/* ============ TOP MENU / CATEGORIES - Squish Style ============ */
.top-menu {
    padding: var(--space-md) 0;
    margin-top: 80px;
}

.top-menu.filter {
    background: var(--bg-tertiary);
    border-bottom: none;
    padding: var(--space-lg) 0;
}

.top-menu ul {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    justify-content: center;
}

.top-menu ul li {
    cursor: pointer;
}

.top-menu ul li a {
    padding: 10px 18px;
    color: var(--text-secondary);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-base);
    border-radius: var(--radius-full);
}

.top-menu ul li a:hover {
    color: var(--text-primary);
    background: #E5E7EB;
}

.top-menu ul li a.active {
    color: var(--text-primary);
    background: var(--accent-gradient);
}

.submenu-wrapper {
    background: var(--bg-secondary);
    padding: var(--space-md) 0;
    margin-top: var(--space-md);
    border-radius: var(--radius-xl);
}

.submenu {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    justify-content: center;
}

.submenu li a {
    font-size: 0.8125rem;
    color: var(--text-secondary);
}

.submenu li a:hover {
    color: var(--accent-secondary);
}

/* ============ STORE CATEGORIES - MEGA MENU ============ */
.store-categories {
    background: transparent;
    padding: 0;
    margin-top: 0;
}

/* Category Chips Navigation */
/* Categories Grid (3x3) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    background: rgb(242, 243, 247);
    border-radius: 32px;
    padding: 8px;
    margin-bottom: 0;
}

/* Когда subcategories-panel открыта - убираем нижнее скругление */
.categories-grid:has(+ .subcategories-panel[style*="display: block"]) {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.cat-grid-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: #fff;
    border: none;
    border-radius: 24px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cat-grid-btn:hover {
    background: rgba(0,0,0,0.02);
}

.cat-grid-btn__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: color 0.2s ease;
}

.cat-grid-btn__icon svg {
    width: 100%;
    height: 100%;
}

.cat-grid-btn__name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
}

.cat-grid-btn.active,
.cat-grid-btn.expanded {
    background: rgba(163, 230, 53, 0.15);
}

.cat-grid-btn.active .cat-grid-btn__icon,
.cat-grid-btn.expanded .cat-grid-btn__icon {
    color: #65a30d;
}

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

@media (max-width: 576px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .cat-grid-btn {
        padding: 16px 20px;
    }
    
    .cat-grid-btn__name {
        font-size: 15px;
    }
}

/* Old category nav - keeping for backward compat */
.category-nav {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

/* Category Chip Buttons */
.category-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #fff;
    border: 4px solid rgb(242, 243, 247);
    border-radius: 100px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
}

.category-btn__icon {
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.6;
    transition: all 0.25s ease;
}

.category-btn__icon svg {
    width: 100%;
    height: 100%;
}

.category-btn:hover {
    border-color: #000;
    color: #000;
}

.category-btn:hover .category-btn__icon {
    opacity: 1;
}

.category-btn.active,
.category-btn.expanded {
    background: var(--accent-primary);
    border-color: var(--accent-primary);
    color: #000;
}

.category-btn.active .category-btn__icon,
.category-btn.expanded .category-btn__icon {
    opacity: 1;
}

/* Mega Menu Panel */
.subcategories-panel {
    background: rgb(242, 243, 247);
    border: none;
    border-radius: 0 0 32px 32px;
    padding: 0 8px 8px 8px;
    margin-bottom: var(--space-xl);
    animation: megaMenuSlide 0.3s ease;
    box-sizing: border-box;
}

@keyframes megaMenuSlide {
    from {
        opacity: 0;
        transform: translateY(-16px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mega Menu Header */
.mega-menu__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 8px;
    padding: 20px 24px;
    background: #fff;
    border-radius: 24px;
}

.mega-menu__icon {
    border-radius: 14px;
}

.mega-menu__icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(163, 230, 53, 0.15);
    border-radius: 16px;
    color: #000;
}

.mega-menu__icon svg {
    width: 26px;
    height: 26px;
}

.mega-menu__title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #000;
    margin: 0;
}

.mega-menu__count {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    margin-left: auto;
    background: rgb(242, 243, 247);
    padding: 8px 16px;
    border-radius: 100px;
}

/* Subcategories Grid */
.subcategories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 8px;
}

/* Subcategory Card */
.subcategory-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 22px;
    background: #fff;
    border: none;
    border-radius: 18px;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s ease;
}

.subcategory-item__icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    opacity: 0.5;
    transition: all 0.2s ease;
}

.subcategory-item__icon svg {
    width: 100%;
    height: 100%;
}

.subcategory-item:hover {
    background: rgba(163, 230, 53, 0.15);
    color: #000;
}

.subcategory-item:hover .subcategory-item__icon {
    opacity: 1;
}

/* Active subcategory */
.subcategory-item.active {
    background: rgba(163, 230, 53, 0.15);
    color: #000;
    font-weight: 600;
}

.subcategory-item.active .subcategory-item__icon {
    opacity: 1;
}

/* "All Category" - same style as others, green only when active */
.subcategory-item--all {
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .category-nav {
        gap: 8px;
    }
    
    .category-btn {
        padding: 12px 18px;
        font-size: 0.875rem;
        border-width: 3px;
    }
    
    .category-btn__icon {
        width: 18px;
        height: 18px;
    }
    
    .subcategories-panel {
        padding: 8px;
        border-radius: 24px;
    }
    
    .subcategories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mega-menu__header {
        flex-wrap: wrap;
        padding: 16px 20px;
        border-radius: 20px;
    }
    
    .mega-menu__count {
        width: 100%;
        margin-left: 0;
        margin-top: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .category-btn__name {
        display: none;
    }
    
    .category-btn {
        padding: 14px;
        border-radius: 50%;
    }
    
    .subcategories-grid {
        grid-template-columns: 1fr;
    }
    
    .subcategory-item {
        padding: 16px 18px;
        font-size: 0.875rem;
        border-radius: 16px;
    }
    
    .mega-menu__header {
        border-radius: 16px;
    }
}

/* Block title styles */
.block-title__big {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.block-title-black {
    margin: var(--space-xl) 0;
}

/* ============ SQUISH ADDITIONAL STYLES ============ */

/* Feature Section - Squish Style */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-lg);
}

.feature-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-light);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-lg);
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--accent-secondary);
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.feature-card p {
    font-size: 0.9375rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: var(--space-lg);
    text-align: center;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--space-xs);
}

.stat-item p {
    font-size: 0.9375rem;
    color: var(--text-tertiary);
    font-weight: 500;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
}

.testimonial-content {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    object-fit: cover;
}

.testimonial-name {
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

/* CTA Banner - Squish Style */
.cta-banner {
    background: var(--accent-light);
    border-radius: var(--radius-2xl);
    padding: var(--space-3xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--accent-primary), transparent 70%);
    opacity: 0.2;
    filter: blur(60px);
}

.cta-banner h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: var(--space-md);
    position: relative;
}

.cta-banner p {
    color: var(--text-secondary);
    margin-bottom: var(--space-xl);
    position: relative;
}

/* Pricing Card - Squish Style */
.pricing-card {
    background: var(--bg-card);
    border-radius: var(--radius-2xl);
    padding: var(--space-xl);
    box-shadow: var(--shadow-md);
    text-align: left;
}

.pricing-card.featured {
    background: var(--accent-gradient);
    color: var(--text-primary);
}

.pricing-card.featured h3,
.pricing-card.featured p,
.pricing-card.featured li {
    color: var(--text-primary);
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    margin: var(--space-lg) 0;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-tertiary);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-xl) 0;
    text-align: left;
}

.pricing-features li {
    padding: var(--space-sm) 0;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-secondary);
}

.pricing-features li svg {
    color: var(--accent-secondary);
    flex-shrink: 0;
}

/* Logo styling for light theme */
.logo-img {
    filter: none;
}

/* SVG Icons in light theme */
.header_ul li a svg,
.section-link svg {
    stroke: currentColor;
}

/* Focus visible for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}
}