/* ===== BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Colors */
    --color-bg: #000000;
    --color-bg-dark: #000000;
    --color-text: #FFFFFF;
    --color-text-secondary: rgba(255, 255, 255, 0.6);
    --color-text-muted: rgba(255, 255, 255, 0.4);

    /* Primary Brand Colors */
    --color-primary: #001761;
    --color-primary-light: #002891;
    --color-primary-dark: #000d3d;
    --color-accent: #BCBFFF;
    --color-accent-light: #d4d6ff;
    --color-accent-lighter: #e8e9ff;
    --color-accent-dark: #9a9eff;
    --color-accent-darker: #7a7fdf;

    --color-border: rgba(255, 255, 255, 0.1);

    /* Grain texture opacity - adjust globally */
    --grain-opacity: 0.22;

    /* Typography - Inter only */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Typography Scale - Systematic font sizes */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.5rem;       /* 24px */
    --font-size-2xl: 2rem;        /* 32px */
    --font-size-3xl: 2.5rem;      /* 40px */

    /* Spacing Scale - Systematic spacing values */
    --spacing-xs: 0.5rem;         /* 8px */
    --spacing-sm: 0.75rem;        /* 12px */
    --spacing-base: 1rem;         /* 16px */
    --spacing-lg: 1.5rem;         /* 24px */
    --spacing-xl: 2rem;           /* 32px */
    --spacing-2xl: 3rem;          /* 48px */

    /* Border Radius Scale */
    --radius-sm: 12px;            /* inputs, small elements */
    --radius-md: 20px;            /* cards, modals */
    --radius-lg: 24px;            /* large cards */
    --radius-full: 100px;         /* pills, buttons */

    /* Transitions - slower for smoothness */
    --transition-fast: 0.3s ease;
    --transition-base: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

/* ===== CONTAINER ===== */
.container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 3rem;
    width: 100%;
}

/* ===== NOISE OVERLAY (Grain effect) ===== */
.noise-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.5rem 0;
    transition: var(--transition-base);
    background: var(--color-bg-dark);
    pointer-events: auto;
}

.header * {
    pointer-events: auto;
}

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

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition-fast);
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 64px;
    height: 40px;
    color: var(--color-text);
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-icon .logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.logo-divider {
    width: 1px;
    height: 36px;
    background: linear-gradient(180deg, transparent 0%, var(--color-border) 20%, var(--color-border) 80%, transparent 100%);
}

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

.logo-name {
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: -0.02em;
}

.logo-tagline {
    font-size: 0.6875rem;
    color: var(--color-text-secondary);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

/* Navigation */
.nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 100px;
    cursor: pointer;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.nav-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.dropdown-icon {
    opacity: 0.5;
    transition: var(--transition-fast);
}

.nav-item:hover .dropdown-icon {
    opacity: 0.8;
}

.button-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 1.25rem 0.625rem 0.625rem;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    border-radius: 100px;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(188, 191, 255, 0.3);
    text-decoration: none;
    position: relative;
    z-index: 10;
}

.button-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(188, 191, 255, 0.5);
}

.button-contact .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--color-accent);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.button-contact:hover .button-icon {
    transform: rotate(45deg);
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 8rem 0 4rem;
    position: relative;
}

/* Product badge */
.product-badge {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    text-transform: uppercase;
    padding: 0.5rem 1rem;
    border: 1px solid rgba(188, 191, 255, 0.3);
    border-radius: 100px;
    margin-bottom: 1.25rem;
    background: rgba(188, 191, 255, 0.05);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    align-items: center;
}

/* Hero Visual with Three.js */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
}

.video-wrapper {
    position: relative;
    width: 630px;
    height: 630px;
    background: transparent;
    border: none;
    outline: none;
    box-shadow: none;
    /* Защита от скачивания */
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    background: #000000;
    border: none;
    outline: none;
    box-shadow: none;
    /* Мягкая маска для бесшовного перехода в чёрный фон */
    mask-image: radial-gradient(ellipse 70% 70% at center, black 40%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 40%, transparent 70%);
}

/* Vertical Divider */
.hero-divider {
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
}

.divider-line {
    width: 1px;
    min-width: 1px;
    height: 100%;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(188, 191, 255, 0.3) 15%,
        rgba(188, 191, 255, 0.5) 50%,
        rgba(188, 191, 255, 0.3) 85%,
        transparent 100%
    );
}

/* Hero Content */
.hero-content {
    padding-left: 4rem;
    padding-right: 2rem;
}

.hero-subtitle {
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--color-accent);
    margin-bottom: 1.25rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.hero-title {
    font-family: var(--font-main);
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 3.5rem;
}

.title-line {
    display: block;
}

.hero-descriptions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    padding-top: 2rem;
}

.hero-desc-left,
.hero-desc-right {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
}

.hero-desc-left {
    color: var(--color-text);
    font-weight: 400;
}

/* ===== CLIENTS SECTION ===== */
.clients-section {
    padding: 4rem 0 6rem;
    overflow: hidden;
}

.clients-title {
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 3rem;
}

.clients-marquee {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    padding: 0 3rem;
}

.clients-marquee::before,
.clients-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.clients-marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--color-bg-dark) 0%, transparent 100%);
}

.clients-marquee::after {
    right: 0;
    background: linear-gradient(90deg, transparent 0%, var(--color-bg-dark) 100%);
}

.clients-track {
    display: flex;
    align-items: center;
    gap: 4rem;
    animation: marquee 35s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-text);
    opacity: 0.5;
    letter-spacing: -0.01em;
    white-space: nowrap;
    transition: var(--transition-base);
}

.client-logo:hover {
    opacity: 1;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.33%);
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .clients-track {
        gap: 3rem;
    }

    .client-logo {
        font-size: 1.25rem;
    }
}

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

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

    .clients-track {
        gap: 2.5rem;
    }

    .client-logo {
        font-size: 1.125rem;
    }

    .clients-marquee {
        padding: 0 1.5rem;
    }

    .clients-marquee::before,
    .clients-marquee::after {
        width: 80px;
    }
}

@media (max-width: 480px) {
    .clients-track {
        gap: 2rem;
    }

    .client-logo {
        font-size: 1rem;
    }

    .clients-marquee {
        padding: 0 1rem;
    }

    .clients-marquee::before,
    .clients-marquee::after {
        width: 40px;
    }
}

/* ===== CONTACT FORM SECTION ===== */
.contact-section {
    padding: 8rem 0;
    position: relative;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-content {
    padding-right: 2rem;
}

.contact-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
}

/* Demo Card in Contact Section */
.contact-demo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 1.75rem;
    margin-top: 0.5rem;
}

.contact-demo-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.25rem;
}

.contact-demo-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-demo-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}

.contact-demo-list .demo-icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    color: var(--color-accent);
    margin-top: 2px;
}

.contact-demo-list .demo-icon svg {
    width: 100%;
    height: 100%;
}

.contact-demo-note {
    font-size: 0.875rem;
    color: var(--color-accent);
    font-weight: 500;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin: 0;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: linear-gradient(135deg,
        rgba(188, 191, 255, 0.08) 0%,
        rgba(0, 23, 97, 0.15) 100%);
    border: 1px solid rgba(188, 191, 255, 0.2);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    overflow: visible;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: var(--grain-opacity);
    mix-blend-mode: overlay;
    pointer-events: none;
    border-radius: 24px;
}

/* AI Video for Contact Form (desktop only) */
.contact-ai-video-wrapper {
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    z-index: 10;
    display: none;
}

.contact-ai-video-wrapper.visible {
    opacity: 1;
    transform: translateX(-50%) scale(1);
}

.contact-ai-video-wrapper.hidden {
    opacity: 0;
    transform: translateX(-50%) scale(0.5);
}

.contact-ai-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Show only on desktop */
@media (min-width: 1025px) {
    .contact-ai-video-wrapper {
        display: block;
    }
}

/* Typing effect for placeholders */
.contact-form input.ai-typing {
    color: var(--color-accent);
}

.contact-form input.ai-typing::placeholder {
    color: var(--color-accent);
    opacity: 1;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

.form-group input {
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-family: var(--font-main);
    color: var(--color-text);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    outline: none;
    transition: all 0.3s ease;
}

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

.form-group input:focus {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(188, 191, 255, 0.1);
}

.contact-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.125rem 2rem;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-main);
    color: var(--color-primary);
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    box-shadow: 0 4px 20px rgba(188, 191, 255, 0.3);
}

.contact-submit:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(188, 191, 255, 0.5);
}

.contact-submit svg {
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-submit:hover svg {
    transform: rotate(45deg);
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-top: 0.5rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-section {
        padding: 6rem 0;
    }

    .contact-wrapper {
        gap: 3rem;
    }

    .contact-content {
        padding-right: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 5rem 0;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-content {
        padding-right: 0;
        text-align: center;
    }

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

    .contact-title {
        font-size: 2rem;
    }

    .contact-description {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        padding: 2rem;
    }

    .contact-demo-card {
        text-align: left;
    }

    .contact-demo-list li {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 4rem 0;
    }

    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .form-group input {
        padding: 0.875rem 1rem;
    }

    .contact-submit {
        padding: 1rem 1.5rem;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
    .video-wrapper {
        width: 560px;
        height: 560px;
    }

    .hero-visual {
        padding-right: 3rem;
    }

    .hero-content {
        padding-left: 3rem;
    }
}

@media (max-width: 1200px) {
    .hero-grid {
        gap: 0;
    }

    .video-wrapper {
        width: 490px;
        height: 490px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 5vw, 4rem);
    }

    .hero-divider {
        padding: 0 1rem;
    }

    .hero-content {
        padding-left: 2rem;
    }
}

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .header {
        padding: 1rem 0;
    }

    .hero {
        padding: 7rem 0 3rem;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        justify-content: center;
        padding-right: 0;
        order: -1;
    }

    .video-wrapper {
        width: 490px;
        height: 490px;
    }

    .hero-video {
        mask-image: radial-gradient(ellipse 65% 65% at center, black 35%, transparent 65%);
        -webkit-mask-image: radial-gradient(ellipse 65% 65% at center, black 35%, transparent 65%);
    }

    .hero-divider {
        display: none;
    }

    .hero-content {
        padding: 0 1rem;
        text-align: center;
    }

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

@media (max-width: 768px) {
    .nav-item:not(.button-contact) {
        display: none;
    }

    .video-wrapper {
        width: 420px;
        height: 420px;
    }

    .hero-video {
        mask-image: radial-gradient(ellipse 60% 60% at center, black 30%, transparent 60%);
        -webkit-mask-image: radial-gradient(ellipse 60% 60% at center, black 30%, transparent 60%);
    }

    .hero-title {
        font-size: 2.25rem;
    }

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

@media (max-width: 480px) {
    .logo-text {
        display: none;
    }

    .logo-divider {
        display: none;
    }

    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 0.8125rem;
    }

    .video-wrapper {
        width: 320px;
        height: 320px;
    }

    .hero-video {
        mask-image: radial-gradient(ellipse 55% 55% at center, black 25%, transparent 55%);
        -webkit-mask-image: radial-gradient(ellipse 55% 55% at center, black 25%, transparent 55%);
    }
}

/* ===== PRODUCT FEATURES SECTION ===== */
.product-features-section {
    padding: 8rem 0;
    position: relative;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 4rem;
    text-align: center;
}

/* Wobble Cards Grid */
.wobble-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* Wobble Card Base */
.wobble-card {
    position: relative;
    border-radius: 20px;
    padding: var(--spacing-xl);
    overflow: visible;
    display: flex;
    flex-direction: column;
    transition: none;
}

/* Large card with more padding */
.wobble-card-large {
    padding: var(--spacing-xl);
}

/* Small card padding */
.wobble-card-small {
    padding: var(--spacing-lg);
}

/* Medium card padding */
.wobble-card-medium {
    padding: var(--spacing-xl);
}

/* Grainy Texture Overlay */
.wobble-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: var(--grain-opacity);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

/* Card Sizes */
.wobble-card-large {
    grid-column: span 2;
    grid-row: span 1;
}

.wobble-card-medium {
    grid-column: span 1;
}

.wobble-card-small {
    grid-column: span 1;
}

.wobble-card-full {
    grid-column: span 3;
}

/* Dark cards with vibrant color accents */
.wobble-card-pink {
    background: linear-gradient(135deg,
        rgba(219, 39, 119, 0.5) 0%,
        rgba(157, 23, 77, 0.25) 100%);
    border: 1px solid rgba(219, 39, 119, 0.6);
}

.wobble-card-blue {
    background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.5) 0%,
        rgba(67, 56, 202, 0.25) 100%);
    border: 1px solid rgba(99, 102, 241, 0.6);
}

.wobble-card-cyan {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.5) 0%,
        rgba(30, 58, 138, 0.25) 100%);
    border: 1px solid rgba(59, 130, 246, 0.6);
}

.wobble-card-purple {
    background: linear-gradient(135deg,
        rgba(139, 92, 246, 0.5) 0%,
        rgba(91, 33, 182, 0.25) 100%);
    border: 1px solid rgba(139, 92, 246, 0.6);
}

.wobble-card-orange {
    background: linear-gradient(135deg,
        rgba(249, 115, 22, 0.5) 0%,
        rgba(194, 65, 12, 0.25) 100%);
    border: 1px solid rgba(249, 115, 22, 0.6);
}

.wobble-card-dark {
    background: linear-gradient(135deg,
        rgba(188, 191, 255, 0.4) 0%,
        rgba(0, 23, 97, 0.3) 100%);
    border: 1px solid rgba(188, 191, 255, 0.5);
}

/* Wide card (spans 2 columns) */
.wobble-card-wide {
    grid-column: span 2;
    padding: var(--spacing-xl);
}

.wobble-card-wide .wobble-card-content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: var(--spacing-xl);
}

.wobble-card-wide .wobble-card-text {
    flex: 1;
    max-width: none;
}

/* Grid layout for wide card */
.wobble-card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    column-gap: var(--spacing-xl);
    row-gap: var(--spacing-base);
    position: relative;
    z-index: 3;
}

/* Simplified 2-column grid */
.wobble-card-grid-simple {
    grid-template-columns: 1.2fr 1fr;
    grid-template-rows: auto;
    gap: var(--spacing-2xl);
    align-items: start;
}

.wobble-card-cell {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.wobble-card-cell-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    min-height: 140px;
}

.static-icon {
    width: 200px;
    height: 120px;
    position: absolute;
}

.wobble-card-cell-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wobble-card-cell-image .wobble-card-image-wrapper {
    width: 100%;
}

/* Equal height images in wide card grid */
.wobble-card-grid-simple .wobble-card-cell .wobble-card-image-wrapper {
    height: 220px;
}

/* Image spacing utilities */
.wobble-card-image-mt {
    margin-top: 1.5rem;
}

.wobble-card-image-mb {
    margin-bottom: 1.5rem;
}

.wobble-card-grid-simple .wobble-card-cell .wobble-card-img {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.wobble-card-cell-cta {
    justify-content: center;
}

/* Static Icon */
.static-icon svg {
    width: 100%;
    height: 100%;
}

/* Divider between text blocks */
.wobble-card-divider {
    width: 1px;
    min-height: 100px;
    align-self: stretch;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(255, 255, 255, 0.3) 20%,
        rgba(255, 255, 255, 0.3) 80%,
        transparent 100%);
}


/* Card Content */
.wobble-card-content {
    position: relative;
    z-index: 3;
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: var(--spacing-lg);
    transform-style: preserve-3d;
}

.wobble-card-large .wobble-card-content {
    gap: var(--spacing-xl);
    align-items: flex-start;
}

.wobble-card-full .wobble-card-content {
    gap: var(--spacing-2xl);
    align-items: flex-start;
}

.wobble-card-medium .wobble-card-content {
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--spacing-lg);
}

.wobble-card-small .wobble-card-content {
    flex-direction: column;
    justify-content: flex-start;
    gap: var(--spacing-base);
}

.wobble-card-text {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
    max-width: 100%;
}

.wobble-card-large .wobble-card-text {
    max-width: 380px;
    flex-shrink: 0;
}

.wobble-card-small .wobble-card-text {
    max-width: 100%;
}

.wobble-card-medium .wobble-card-text {
    max-width: 100%;
}

.wobble-card-full .wobble-card-text {
    max-width: 480px;
}

.wobble-card-title {
    font-size: clamp(1.375rem, 2vw, 1.75rem);
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 0;
}

.wobble-card-description {
    font-size: var(--font-size-base);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

/* Better text contrast for large card */
.wobble-card-large .wobble-card-title {
    font-size: clamp(var(--font-size-2xl), 2.5vw, 2.25rem);
    margin-bottom: 0;
    line-height: 1.2;
    word-spacing: 0.05em;
    font-weight: 600;
}

.wobble-card-large .wobble-card-description {
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

/* Specific styling for small cards */
.wobble-card-small .wobble-card-title {
    font-size: clamp(var(--font-size-xl), 1.8vw, 1.625rem);
    margin-bottom: 0;
    line-height: 1.2;
}

.wobble-card-small .wobble-card-description {
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Medium card typography */
.wobble-card-medium .wobble-card-title {
    font-size: clamp(var(--font-size-xl), 2vw, 1.875rem);
    margin-bottom: 0;
    line-height: 1.2;
}

.wobble-card-medium .wobble-card-description {
    font-size: var(--font-size-base);
    line-height: 1.6;
}

/* Card Images */
.wobble-card-image-wrapper {
    position: relative;
    flex-shrink: 0;
    width: auto;
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    overflow: visible;
}

/* Large card images - take remaining space */
.wobble-card-large .wobble-card-image-wrapper {
    flex: 1;
    min-width: 0;
}

/* Screenshot - smooth forward expansion */
.wobble-card-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.15),
                0 0 40px rgba(139, 92, 246, 0.05);
    transition: transform 2.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 2.4s cubic-bezier(0.22, 1, 0.36, 1);
}

/* Desktop: Slow forward expansion effect */
@media (min-width: 1025px) {
    .wobble-card-image-wrapper {
        cursor: pointer;
    }

    .wobble-card-image-wrapper:hover .wobble-card-img {
        transform: scale(1.25);
        box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
    }

    /* Compact pink card on desktop */
    .wobble-card-large.wobble-card-pink {
        padding: var(--spacing-lg);
    }

    .wobble-card-large.wobble-card-pink .wobble-card-content {
        align-items: center;
    }
}

/* Full-width and Medium card images take available width */
.wobble-card-full .wobble-card-image-wrapper,
.wobble-card-medium .wobble-card-image-wrapper {
    width: 100%;
}

.wobble-card-medium .wobble-card-img {
    max-height: 220px;
    object-fit: cover;
    object-position: top left;
}

/* Small card images */
.wobble-card-small .wobble-card-image-wrapper {
    width: 100%;
}

/* Features list in Card */
.wobble-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: var(--spacing-base) 0;
}

.wobble-card-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: var(--font-size-sm);
    color: rgba(255, 255, 255, 0.9);
}

.wobble-card-features svg {
    flex-shrink: 0;
    color: rgba(188, 191, 255, 0.9);
}

/* CTA Button in Card */
.wobble-card-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #FFFFFF;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    margin-top: auto;
}

.wobble-card-cta:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.wobble-card-cta svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.wobble-card-cta:hover svg {
    transform: translate(2px, -2px);
}

/* ===== RESPONSIVE - PRODUCT FEATURES ===== */
@media (max-width: 1200px) {
    .wobble-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .wobble-card-large {
        grid-column: span 2;
    }

    .wobble-card-medium {
        grid-column: span 1;
    }

    .wobble-card-small {
        grid-column: span 1;
    }

    .wobble-card-full,
    .wobble-card-wide {
        grid-column: span 2;
    }

    .wobble-card-large .wobble-card-content,
    .wobble-card-medium .wobble-card-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .wobble-card-image-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .wobble-card-text {
        max-width: 100%;
    }
}

@media (max-width: 1024px) {
    .product-features-section {
        padding: 6rem 0;
    }

    .section-title {
        margin-bottom: var(--spacing-2xl);
    }

    .wobble-cards-grid {
        gap: var(--spacing-base);
    }

    .wobble-card {
        padding: var(--spacing-lg);
    }

    .wobble-card-grid {
        gap: var(--spacing-base);
    }

    .static-icon {
        width: 120px;
        height: 120px;
    }

    .wobble-card-cell-icon {
        min-height: 120px;
    }
}

@media (max-width: 768px) {
    .product-features-section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
    }

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

    .wobble-card-large,
    .wobble-card-medium,
    .wobble-card-small,
    .wobble-card-full,
    .wobble-card-wide {
        grid-column: span 1;
        min-height: auto;
    }

    .wobble-card-wide .wobble-card-content {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .wobble-card-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: var(--spacing-base);
    }

    .wobble-card-grid-simple {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
    }

    .wobble-card-grid-simple .wobble-card-cell .wobble-card-image-wrapper {
        height: 200px;
        width: 100%;
    }

    .wobble-card-grid-simple .wobble-card-cell .wobble-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: top left;
    }

    .wobble-card-cell-icon {
        order: 2;
        min-height: 120px;
        padding: var(--spacing-base);
    }

    .wobble-card-cell-icon .static-icon {
        width: 100px;
        height: 100px;
    }

    .wobble-card-cell-image {
        order: 1;
    }

    .wobble-card-cell-cta {
        order: 3;
    }


    .wobble-card-divider {
        width: 100%;
        height: 1px;
        min-height: 1px;
        background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.3) 20%,
            rgba(255, 255, 255, 0.3) 80%,
            transparent 100%);
    }

    .wobble-card {
        padding: var(--spacing-lg);
    }

    .wobble-card-title {
        font-size: var(--font-size-xl);
    }

    .wobble-card-description {
        font-size: var(--font-size-sm);
    }

    .wobble-card-content {
        gap: var(--spacing-base);
    }
}

@media (max-width: 480px) {
    .wobble-card {
        padding: var(--spacing-base);
        min-height: auto;
        overflow: hidden;
    }

    .wobble-card-image-wrapper {
        width: 100%;
        overflow: hidden;
    }

    .wobble-card-img {
        width: 100%;
        height: auto;
        max-width: 100%;
        object-fit: contain;
    }

    .wobble-card-title {
        font-size: var(--font-size-lg);
    }

    .wobble-card-description {
        font-size: var(--font-size-sm);
    }

    .wobble-card-cta {
        padding: var(--spacing-xs) var(--spacing-base);
        font-size: var(--font-size-sm);
    }
}

/* ===== MINIMAL MODE - Product Features ===== */
/* Добавьте класс .minimal к секции для упрощённых стилей */
/* <section class="product-features-section minimal"> */

.product-features-section.minimal .wobble-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-features-section.minimal .wobble-card:hover {
    transform: none;
    border-color: rgba(255, 255, 255, 0.15);
}

.product-features-section.minimal .wobble-card-divider {
    background: rgba(255, 255, 255, 0.1);
}

/* ===== MINIMAL MODE - Steps Section ===== */
.steps-section.minimal .step-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-section.minimal .step-pill-1,
.steps-section.minimal .step-pill-2,
.steps-section.minimal .step-pill-3 {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.steps-section.minimal .step-pill:hover {
    background: #0a0a0a;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.steps-section.minimal .step-pill .expanded-inner {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.steps-section.minimal .step-pill .expanded-features li::before {
    background: rgba(255, 255, 255, 0.5);
}

/* ===== HOW IT WORKS SECTION - Floating Pills Style ===== */
.steps-section {
    padding: 8rem 0;
    margin-top: 0;
    position: relative;
    min-height: 600px;
    overflow: visible;
    background: transparent;
}

/* Animated Background Circles */
.steps-bg-circles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.steps-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.04);
}

.steps-circle-1 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateStepsCircle 60s linear infinite;
}

.steps-circle-2 {
    width: 700px;
    height: 700px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateStepsCircle 90s linear infinite reverse;
}

.steps-circle-3 {
    width: 900px;
    height: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: rotateStepsCircle 120s linear infinite;
}

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

.steps-section .section-title {
    position: relative;
    z-index: 2;
}

/* Floating Pills Container */
.steps-pills-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 2;
}

/* Step Pills - Wobble Card Style */
.step-pill {
    position: absolute;
    display: flex;
    flex-direction: column;
    border-radius: 20px;
    cursor: pointer;
    transition: all 2s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 1.5s ease;
    animation: floatStepPill 6s ease-in-out infinite;
    will-change: transform;
    overflow: hidden;
    z-index: 1;
    max-width: 380px;
}

/* Grainy texture - same as wobble-cards */
.step-pill::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: var(--grain-opacity);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.step-pill:hover {
    z-index: 100;
    animation-play-state: paused;
    max-width: 420px;
}

/* Step Pill Header */
.step-pill .pill-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 28px 20px 20px;
    position: relative;
    z-index: 2;
}

.step-pill .pill-text {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: #FFFFFF;
}

/* Step Number Circle */
.step-pill-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: transform 1s ease, background 1s ease;
    background: #0a0a0a;
    color: #FFFFFF;
}

.step-pill:hover .step-pill-number {
    transform: scale(1.1);
}

/* Step Pill Colors - Same as Wobble Cards */
/* Step 1: Pink (top center) */
.step-pill-1 {
    background: linear-gradient(135deg,
        rgba(219, 39, 119, 0.5) 0%,
        rgba(157, 23, 77, 0.25) 100%);
    border: 1px solid rgba(219, 39, 119, 0.6);
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.step-pill-1:hover {
    box-shadow: 0 20px 60px rgba(219, 39, 119, 0.3);
    border-color: rgba(219, 39, 119, 0.8);
}

.step-pill-1 .expanded-features li::before {
    background: rgba(255, 255, 255, 0.8);
}

/* Step 2: Blue (bottom left) */
.step-pill-2 {
    background: linear-gradient(135deg,
        rgba(99, 102, 241, 0.5) 0%,
        rgba(67, 56, 202, 0.25) 100%);
    border: 1px solid rgba(99, 102, 241, 0.6);
    bottom: 40px;
    left: 3%;
    animation-delay: -2s;
    animation-name: floatStepPillLeft;
}

.step-pill-2:hover {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.3);
    border-color: rgba(99, 102, 241, 0.8);
}

.step-pill-2 .expanded-features li::before {
    background: rgba(255, 255, 255, 0.8);
}

/* Step 3: Cyan (bottom right) */
.step-pill-3 {
    background: linear-gradient(135deg,
        rgba(59, 130, 246, 0.5) 0%,
        rgba(30, 58, 138, 0.25) 100%);
    border: 1px solid rgba(59, 130, 246, 0.6);
    bottom: 40px;
    right: 3%;
    animation-delay: -4s;
    animation-name: floatStepPillRight;
}

.step-pill-3:hover {
    box-shadow: 0 20px 60px rgba(59, 130, 246, 0.3);
    border-color: rgba(59, 130, 246, 0.8);
}

.step-pill-3 .expanded-features li::before {
    background: rgba(255, 255, 255, 0.8);
}

/* Floating animations */
@keyframes floatStepPill {
    0%, 100% { transform: translateY(0) translateX(-50%); }
    50% { transform: translateY(-18px) translateX(-50%); }
}

@keyframes floatStepPillRight {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}

@keyframes floatStepPillLeft {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-14px); }
}

/* Expanded Content - larger for bigger pills */
.step-pill .pill-expanded-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 2.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 2s ease,
                padding 2s ease;
    padding: 0 24px;
}

.step-pill:hover .pill-expanded-content {
    max-height: 600px;
    opacity: 1;
    padding: 0 24px 24px 24px;
}

.step-pill .expanded-inner {
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.step-pill .expanded-description {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.95);
}

.step-pill .expanded-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.step-pill .expanded-features li {
    font-size: 0.9375rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
}

.step-pill .expanded-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== TRUST SECTION V2 - AI Generation Style (Hero-Like) ===== */
.trust-v2-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.trust-v2-section .section-title {
    margin-bottom: 1rem;
}

.trust-v2-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Side - AI Generation (Hero style) */
.trust-v2-left {
    position: relative;
    padding-top: 220px; /* Space for absolutely positioned video */
}

/* AI Video Wrapper - Absolutely positioned above text */
.trust-v2-ai-video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.trust-v2-ai-video-wrapper.visible {
    opacity: 1;
    transform: scale(1);
}

.trust-v2-ai-video-wrapper.hidden {
    opacity: 0;
    transform: scale(0.5);
}

.trust-v2-ai-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.trust-v2-text-container {
    /* No extra spacing */
}

/* Hero-style text - larger and bolder */
.trust-v2-generated-text {
    font-size: 1.375rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    white-space: pre-wrap;
    font-weight: 400;
}

.trust-v2-generated-text .cursor {
    display: inline-block;
    width: 3px;
    height: 1.2em;
    background: rgba(139, 92, 246, 0.9);
    margin-left: 3px;
    animation: cursorBlink 0.8s infinite;
    vertical-align: text-bottom;
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Right Side - Cards Grid (smaller) */
.trust-v2-right {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding-top: 220px; /* Align with text start (below video) */
}

.trust-v2-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr) auto;
    gap: 1rem;
    height: 100%;
}

/* Card Base Styles - Horizontal layout */
.trust-v2-card {
    position: relative;
    border-radius: 20px;
    padding: 2rem 2rem;
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
    min-height: 110px;
}

/* Grainy texture for trust cards */
.trust-v2-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: var(--grain-opacity);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    border-radius: 20px;
}

.trust-v2-card > * {
    position: relative;
    z-index: 2;
}

.trust-v2-card.visible {
    opacity: 1;
    transform: translateY(0);
}

/* All cards - Nav-item style (like header buttons) */
.trust-v2-card:nth-child(1),
.trust-v2-card:nth-child(2),
.trust-v2-card:nth-child(3),
.trust-v2-card:nth-child(4) {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
}

.trust-v2-card:nth-child(1).visible,
.trust-v2-card:nth-child(2).visible,
.trust-v2-card:nth-child(3).visible,
.trust-v2-card:nth-child(4).visible {
    box-shadow: none;
}


/* Standalone CTA Button */
.trust-v2-cta-standalone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    justify-self: center;
    width: fit-content;
    gap: 1rem;
    padding: 1rem 2rem 1rem 1rem;
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    border: none;
    border-radius: 100px;
    color: var(--color-primary);
    font-size: 1.125rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.6s ease;
    box-shadow: 0 4px 20px rgba(188, 191, 255, 0.3);
    margin-top: 0.5rem;
    align-self: center;
    opacity: 0;
}

.trust-v2-cta-standalone.visible {
    opacity: 1;
}

.trust-v2-cta-standalone:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(188, 191, 255, 0.5);
}

.trust-v2-cta-standalone .button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--color-primary);
    border-radius: 50%;
    color: var(--color-accent);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.trust-v2-cta-standalone:hover .button-icon {
    transform: rotate(45deg);
}

.trust-v2-cta-standalone .button-icon svg {
    width: 18px;
    height: 18px;
}

/* Card Icons - Larger, no borders */
.trust-v2-card-icon {
    width: 56px;
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.trust-v2-card-icon svg {
    width: 100%;
    height: 100%;
}

/* All icons - accent color */
.trust-v2-card:nth-child(1) .trust-v2-card-icon,
.trust-v2-card:nth-child(2) .trust-v2-card-icon,
.trust-v2-card:nth-child(3) .trust-v2-card-icon {
    color: var(--color-accent);
}

/* Skolkovo image icon - larger */
.trust-v2-card-icon-skolkovo {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    overflow: hidden;
}

.trust-v2-card-icon-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Card text container */
.trust-v2-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.trust-v2-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0;
}

.trust-v2-card-desc {
    font-size: 0.9375rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}


/* ===== RESPONSIVE - Trust Section V2 ===== */
@media (max-width: 1200px) {
    .trust-v2-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 1024px) {
    .trust-v2-section {
        padding: 6rem 0;
    }

    .trust-v2-section .section-title {
        margin-bottom: 4rem;
    }

    .trust-v2-wrapper {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .trust-v2-left {
        position: relative;
        top: auto;
        padding-top: 220px;
    }

    .trust-v2-right {
        padding-top: 0;
    }

    .trust-v2-text-container {
        min-height: auto;
    }
}

@media (max-width: 768px) {
    .trust-v2-section {
        padding: 4rem 0;
    }

    .trust-v2-section .section-title {
        margin-bottom: 2.5rem;
    }

    .trust-v2-wrapper {
        gap: 2rem;
    }

    .trust-v2-left {
        padding: 180px 1.5rem 1.5rem 1.5rem;
    }

    .trust-v2-ai-video-wrapper {
        width: 140px;
        height: 140px;
    }

    .trust-v2-generated-text {
        font-size: 0.9375rem;
    }

    .trust-v2-cards-grid {
        gap: 0.875rem;
    }

    .trust-v2-card {
        padding: 1.5rem 1.5rem;
        gap: 1rem;
        min-height: 100px;
        box-sizing: border-box;
    }

    .trust-v2-card-icon {
        width: 44px;
        height: 44px;
    }

    .trust-v2-card-icon-skolkovo {
        width: 44px;
        height: 44px;
    }

    .trust-v2-card-title {
        font-size: 1rem;
    }

    .trust-v2-card-desc {
        font-size: 0.875rem;
    }

    .trust-v2-cta-standalone {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 480px) {
    .trust-v2-section {
        padding: 3rem 0;
    }

    .trust-v2-section .section-title {
        margin-bottom: 2rem;
    }

    .trust-v2-left {
        padding: 140px 1.25rem 1.25rem 1.25rem;
    }

    .trust-v2-ai-video-wrapper {
        width: 120px;
        height: 120px;
    }

    .trust-v2-label {
        font-size: 0.6875rem;
    }

    .trust-v2-card {
        padding: 1.25rem 1.25rem;
        gap: 0.875rem;
        min-height: 95px;
        box-sizing: border-box;
    }

    .trust-v2-card-icon {
        width: 40px;
        height: 40px;
    }

    .trust-v2-card-icon-skolkovo {
        width: 40px;
        height: 40px;
    }

    .trust-v2-card-title {
        font-size: 0.9375rem;
    }

    .trust-v2-card-desc {
        font-size: 0.8125rem;
    }

    .trust-v2-cta-standalone {
        width: 100%;
        justify-self: stretch;
        justify-content: center;
        padding: 0.875rem 1.5rem 0.875rem 0.875rem;
        font-size: 1rem;
    }

    .trust-v2-cta-standalone .button-icon {
        width: 38px;
        height: 38px;
    }
}

/* ===== RESPONSIVE - STEPS SECTION ===== */
@media (max-width: 1024px) {
    .steps-section {
        padding: 6rem 0 5rem;
        margin-top: 2rem;
        min-height: 550px;
    }

    .steps-pills-container {
        min-height: 480px;
        max-width: 900px;
    }

    .step-pill {
        max-width: 340px;
    }

    .step-pill:hover {
        max-width: 380px;
    }

    .step-pill-1 {
        top: 0;
    }

    .step-pill-2 {
        left: 2%;
        bottom: 30px;
    }

    .step-pill-3 {
        right: 2%;
        bottom: 30px;
    }

    .step-pill-number {
        width: 44px;
        height: 44px;
    }

    .step-pill .pill-text {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .steps-section {
        padding: 4rem 0;
        margin-top: 1rem;
        min-height: auto;
    }

    .steps-bg-circles {
        display: none;
    }

    .steps-pills-container {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
        min-height: auto;
        padding: 1rem 0;
    }

    .step-pill {
        position: relative;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        transform: none !important;
        animation: none;
        width: 100%;
        max-width: 100%;
        border-radius: 20px;
        min-height: 100px;
    }

    .step-pill::before {
        border-radius: 20px;
    }

    .step-pill:hover {
        transform: none !important;
        max-width: 100%;
    }

    .step-pill .pill-header {
        padding: 1.5rem;
        gap: 1rem;
        min-height: 100px;
        box-sizing: border-box;
    }

    .step-pill-number {
        width: 44px;
        height: 44px;
        font-size: 1.125rem;
    }

    .step-pill .pill-text {
        font-size: 1rem;
    }

    .step-pill .pill-expanded-content {
        padding: 0 18px;
    }

    .step-pill:hover .pill-expanded-content {
        padding: 0 18px 18px 18px;
    }

    .step-pill .expanded-description {
        font-size: 0.9375rem;
    }

    .step-pill .expanded-features li {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .steps-section {
        padding: 3rem 0;
        margin-top: 0;
    }

    .steps-pills-container {
        gap: 0.875rem;
    }

    .step-pill {
        border-radius: 18px;
        min-height: 95px;
    }

    .step-pill::before {
        border-radius: 18px;
    }

    .step-pill .pill-header {
        padding: 1.25rem;
        gap: 0.875rem;
        min-height: 95px;
        box-sizing: border-box;
    }

    .step-pill-number {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .step-pill .pill-text {
        font-size: 0.9375rem;
    }

    .step-pill .expanded-description {
        font-size: 0.875rem;
        margin-bottom: 14px;
    }

    .step-pill .expanded-features li {
        font-size: 0.8125rem;
    }
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 8rem 0;
    position: relative;
}

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

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

/* Pricing Cards Grid */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: stretch;
}

/* Pricing Card Base */
.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    overflow: hidden;
}

/* Grainy texture */
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.0' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    opacity: var(--grain-opacity);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: 1;
    border-radius: 24px;
}

.pricing-card > * {
    position: relative;
    z-index: 2;
}

/* Hover effects ONLY for devices with mouse/trackpad */
@media (hover: hover) {
    .pricing-card:hover {
        border-color: rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.04);
        transform: translateY(-4px);
    }
}

/* Featured Card (Business) */
.pricing-card-featured {
    background: linear-gradient(135deg,
        rgba(188, 191, 255, 0.12) 0%,
        rgba(0, 23, 97, 0.2) 100%);
    border: 1px solid rgba(188, 191, 255, 0.3);
    transform: scale(1.02);
}

@media (hover: hover) {
    .pricing-card-featured:hover {
        border-color: rgba(188, 191, 255, 0.5);
        background: linear-gradient(135deg,
            rgba(188, 191, 255, 0.18) 0%,
            rgba(0, 23, 97, 0.25) 100%);
        transform: scale(1.02) translateY(-4px);
    }
}

/* Badge */
.pricing-card-badge {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    padding: 0.5rem 1.25rem;
    border-radius: 0 0 12px 12px;
    z-index: 10;
}

/* Card Header */
.pricing-card-header {
    text-align: center;
    padding-bottom: 1.5rem;
}

.pricing-card-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.pricing-card-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.03em;
    line-height: 1;
}

.price-currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-accent);
}

.price-period {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-left: 0.25rem;
}

.pricing-card-price-custom .price-value {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--color-accent);
}

.pricing-card-limit {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin: 0;
}

/* Card Divider */
.pricing-card-divider {
    height: 1px;
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(255, 255, 255, 0.1) 20%,
        rgba(255, 255, 255, 0.1) 80%,
        transparent 100%);
    margin: 0 -0.5rem;
}

.pricing-card-featured .pricing-card-divider {
    background: linear-gradient(90deg,
        transparent 0%,
        rgba(188, 191, 255, 0.3) 20%,
        rgba(188, 191, 255, 0.3) 80%,
        transparent 100%);
}

/* Features */
.pricing-card-features {
    flex: 1;
    padding: 1.5rem 0;
}

.features-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 1rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--color-accent);
    margin-top: 1px;
}

.pricing-card-featured .feature-icon {
    color: var(--color-accent-light);
}

/* Card Footer */
.pricing-card-footer {
    padding-top: 1.5rem;
    margin-top: auto;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.pricing-card-featured .pricing-card-footer {
    border-top-color: rgba(188, 191, 255, 0.15);
}

.pricing-card-audience {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    text-align: center;
}

/* Card Buttons */
.pricing-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 500;
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.pricing-card-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
}

.pricing-card-btn-primary {
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
    color: var(--color-primary);
    border: none;
    box-shadow: 0 4px 20px rgba(188, 191, 255, 0.3);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 32px rgba(188, 191, 255, 0.5);
    background: linear-gradient(135deg, var(--color-accent-light) 0%, var(--color-accent) 100%);
}

.pricing-card-btn-primary svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.pricing-card-btn-primary:hover svg {
    transform: rotate(45deg);
}

/* ===== RESPONSIVE - PRICING ===== */
@media (max-width: 1024px) {
    .pricing-section {
        padding: 5rem 0;
    }

    .pricing-cards {
        gap: 1.25rem;
    }

    .pricing-card {
        padding: 1.75rem;
    }

    .pricing-card-featured {
        transform: scale(1);
    }

    .price-value {
        font-size: 2.5rem;
    }
}

@media (max-width: 900px) {
    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

    .pricing-card-featured {
        order: -1;
    }

    .pricing-header {
        margin-bottom: 3rem;
    }

    /* Mobile: cards always in "active" state (like hover on desktop) */
    .pricing-card {
        border-color: rgba(255, 255, 255, 0.15);
        background: rgba(255, 255, 255, 0.04);
    }

    .pricing-card-featured {
        border-color: rgba(188, 191, 255, 0.5);
        background: linear-gradient(135deg,
            rgba(188, 191, 255, 0.18) 0%,
            rgba(0, 23, 97, 0.25) 100%);
    }
}

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

    .pricing-subtitle {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .pricing-card::before {
        border-radius: 20px;
    }

    .pricing-card-featured .pricing-card-header {
        padding-top: 2rem;
    }

    .pricing-card-name {
        font-size: 1.375rem;
    }

    .price-value {
        font-size: 2.25rem;
    }

    .features-list li {
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .pricing-section {
        padding: 3rem 0;
    }

    .pricing-card {
        padding: 1.25rem;
        border-radius: 18px;
    }

    .pricing-card::before {
        border-radius: 18px;
    }

    .pricing-card-featured .pricing-card-header {
        padding-top: 1.5rem;
    }

    .pricing-card-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 1rem;
    }

    .pricing-card-name {
        font-size: 1.25rem;
    }

    .price-value {
        font-size: 2rem;
    }

    .pricing-card-price-custom .price-value {
        font-size: 1.5rem;
    }

    .price-currency {
        font-size: 1.25rem;
    }

    .price-period {
        font-size: 0.875rem;
    }

    .features-list {
        gap: 0.75rem;
    }

    .features-list li {
        font-size: 0.8125rem;
    }

    .feature-icon {
        width: 18px;
        height: 18px;
    }

    .pricing-card-btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.9375rem;
    }

    .pricing-card-audience {
        font-size: 0.75rem;
    }
}

/* ===== FOOTER ===== */
.footer {
    padding: 2rem 0;
    border-top: 1px solid var(--color-border);
}

.footer-content {
    text-align: center;
}

.footer-copyright {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

/* ===== GSAP Animation Initial States ===== */
/* Ensure elements are visible by default (graceful degradation) */
.header,
.logo,
.nav,
.nav-item,
.button-contact,
.hero-subtitle,
.hero-title,
.title-line,
.hero-desc-left,
.hero-desc-right,
.capsule,
.divider-line,
.clients-section,
.footer,
.product-features-section,
.section-title,
.wobble-card,
.trust-pill {
    opacity: 1;
    visibility: visible;
}

