/* ===================================
   NeuroPro - Bento Style Design
   GSAP Animated Website
   =================================== */

/* CSS Variables */
:root {
    --bg: #050505;
    --bg-secondary: #0c0c0c;
    --bg-card: #141414;
    --bg-card-light: #1a1a1a;
    --border: #2a2a2a;
    --border-light: #3a3a3a;

    --accent: #CCFF00;
    --accent-dark: #a8d600;
    --accent-glow: rgba(204, 255, 0, 0.3);

    --text: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #808080;

    --blue: #4096FF;
    --green: #52c41a;
    --yellow: #faad14;

    --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --radius: 24px;
    --radius-sm: 12px;
    --radius-xs: 8px;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

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

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

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

button {
    font-family: inherit;
    cursor: none;
    border: none;
    background: none;
}

/* ===================================
   CUSTOM CURSOR
   =================================== */
.cursor {
    pointer-events: none;
    position: fixed;
    z-index: 9999;
    mix-blend-mode: difference;
}

.cursor__dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s ease, width 0.2s ease, height 0.2s ease;
}

.cursor__outline {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--accent);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.15s ease-out, width 0.2s ease, height 0.2s ease, border-color 0.2s ease;
}

body.cursor-hover .cursor__dot {
    width: 12px;
    height: 12px;
}

body.cursor-hover .cursor__outline {
    width: 60px;
    height: 60px;
    border-color: var(--accent);
}

body.cursor-active .cursor__dot {
    transform: translate(-50%, -50%) scale(0.5);
}

/* Hide cursor on touch devices */
@media (hover: none) {
    .cursor { display: none; }
    body { cursor: auto; }
    button, a { cursor: pointer; }
}

/* ===================================
   LAYOUT
   =================================== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: 120px 0;
}

.section--dark {
    background: var(--bg-secondary);
}

.section--light {
    background: var(--bg-card-light);
}

.section__header {
    text-align: center;
    margin-bottom: 60px;
}

.section__tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(204, 255, 0, 0.1);
    border: 1px solid rgba(204, 255, 0, 0.2);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--accent);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section__title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
}

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

.accent {
    color: var(--accent);
}

/* ===================================
   BUTTONS
   =================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 500;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.btn--accent {
    background: var(--accent);
    color: #000;
}

.btn--accent:hover {
    background: var(--accent-dark);
    box-shadow: 0 0 30px var(--accent-glow);
}

.btn--ghost {
    background: transparent;
    color: var(--text);
    border: 1px solid var(--border-light);
}

.btn--ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.btn--outline {
    background: transparent;
    color: var(--accent);
    border: 2px solid var(--accent);
}

.btn--outline:hover {
    background: var(--accent);
    color: var(--bg);
}

.btn--sm {
    font-size: 14px;
    padding: 10px 20px;
}

.btn--lg {
    font-size: 16px;
    padding: 18px 36px;
}

.btn--full {
    width: 100%;
}

/* ===================================
   HEADER
   =================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--transition);
    background: transparent;
}

.header.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-light);
    padding: 12px 0;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo:hover {
    color: var(--accent);
}

.logo__img {
    display: block;
    height: 32px;
    width: auto;
}

.nav__list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color var(--transition);
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width var(--transition);
}

.nav__link:hover {
    color: var(--text);
}

.nav__link:hover::after {
    width: 100%;
}

.header__actions {
    display: flex;
    gap: 12px;
}

.burger {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 32px;
    padding: 6px;
}

.burger span {
    height: 2px;
    background: var(--text);
    transition: all var(--transition);
}

.burger.active span:first-child {
    transform: rotate(45deg) translate(4px, 4px);
}

.burger.active span:last-child {
    transform: rotate(-45deg) translate(4px, -4px);
}

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

.hero--simple {
    min-height: auto;
    padding: 140px 0 80px;
}

.hero--simple .hero__content {
    max-width: 700px;
}

/* Hero Split Layout */
.hero--split {
    min-height: auto;
    padding: 140px 0 80px;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero--split .hero__content {
    max-width: 600px;
}

/* Hero Visual - Star */
.hero__visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero__star {
    position: relative;
    width: 320px;
    height: 320px;
}

.star-3d {
    width: 100%;
    height: 100%;
    transform: perspective(600px) rotateX(10deg) rotateY(-15deg);
    animation: starFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(64, 150, 255, 0.3));
}

@keyframes starFloat {
    0%, 100% {
        transform: perspective(600px) rotateX(10deg) rotateY(-15deg) translateY(0);
    }
    50% {
        transform: perspective(600px) rotateX(10deg) rotateY(-15deg) translateY(-15px);
    }
}

.hero__star-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(64, 150, 255, 0.2) 0%, transparent 70%);
    pointer-events: none;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(204, 255, 0, 0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(64, 150, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(255, 255, 255, 0.02) 0%, transparent 40%),
        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.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
    pointer-events: none;
}

.hero__tag {
    display: inline-block;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
    margin-top: 0;
    margin-bottom: 28px;
}

.hero__title {
    font-size: clamp(28px, 5.5vw, 52px);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-top: 0;
    margin-bottom: 24px;
}

.hero__title .line {
    display: block;
    overflow: hidden;
}

.hero__desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-top: 0;
    margin-bottom: 40px;
}

.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 20px;
    max-width: 500px;
}

.hero__stats {
    display: flex;
    gap: 40px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.hero__stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero__stat-value {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
}

.hero__stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

.hero__channels {
    margin-top: 32px;
}

.hero__channels-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.hero__channels-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.hero__channel {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text);
    transition: all var(--transition);
}

.hero__channel:hover {
    border-color: var(--accent);
    background: rgba(203, 255, 0, 0.1);
}

.hero__channel svg {
    color: var(--accent);
    flex-shrink: 0;
}

/* ===================================
   BENTO GRID
   =================================== */
.bento-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 20px;
}

.bento-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.bento-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 20px;
}

.bento-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
}

.bento-card:hover {
    transform: translateY(-4px);
}

/* Main Card */
.bento-card--main {
    background: linear-gradient(145deg, #1c1c1c 0%, #0f0f0f 100%);
    border: 1px solid var(--border-light);
    padding: 40px;
    min-height: 500px;
    display: flex;
    flex-direction: column;
}

.bento-card--main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
}

.bento-card__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.bento-card__icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
}

.bento-card__arrow {
    width: 48px;
    height: 48px;
    background: var(--border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
}

.bento-card__arrow:hover {
    background: var(--accent);
    color: #000;
}

.bento-card__body {
    flex: 1;
    display: flex;
    align-items: flex-end;
}

@media (max-width: 768px) {
    .logo__img {
        height: 28px;
        min-width: 120px;
    }
    .bento-card__body {
        display: block !important;
    }

    .bento-card__body .hero__title {
        margin-bottom: 16px;
    }

    .bento-card__body .hero__subtitle {
        font-size: 14px;
        line-height: 1.5;
    }
}

.bento-card__visual {
    position: absolute;
    bottom: 40px;
    right: 40px;
    width: 180px;
    height: 180px;
}

.shape-3d {
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse at 30% 30%, rgba(100, 100, 100, 0.6) 0%, transparent 50%),
        linear-gradient(145deg, #252525 0%, #0a0a0a 100%);
    border-radius: 20px;
    transform: perspective(600px) rotateX(12deg) rotateY(-12deg);
    box-shadow:
        25px 25px 50px rgba(0, 0, 0, 0.5),
        -5px -5px 15px rgba(255, 255, 255, 0.02);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: perspective(600px) rotateX(12deg) rotateY(-12deg) translateY(0); }
    50% { transform: perspective(600px) rotateX(12deg) rotateY(-12deg) translateY(-10px); }
}

/* Accent Card (Green) */
.bento-card--accent {
    background: var(--accent);
    padding: 28px;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.wave-visual {
    position: absolute;
    top: 20px;
    left: 20px;
    right: 80px;
    height: 50px;
}

.wave-visual svg {
    width: 100%;
    height: 100%;
}

.wave-path {
    stroke-dasharray: 400;
    animation: waveDash 3s ease-in-out infinite;
}

@keyframes waveDash {
    0%, 100% { stroke-dashoffset: 0; }
    50% { stroke-dashoffset: 50; }
}

.sphere-visual {
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    width: 70px;
    height: 70px;
    background: radial-gradient(circle at 30% 30%, #444 0%, #000 100%);
    border-radius: 50%;
    box-shadow:
        inset -8px -8px 20px rgba(255, 255, 255, 0.05),
        8px 8px 20px rgba(0, 0, 0, 0.4);
}

.bento-card__label {
    font-size: 28px;
    font-weight: 700;
    color: #000;
}

/* Dark Cards */
.bento-card--dark {
    background: linear-gradient(145deg, #1a1a1a 0%, #0e0e0e 100%);
    border: 1px solid var(--border);
    padding: 24px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.bento-card--square {
    display: flex;
    align-items: center;
    justify-content: center;
}

.arrow-btn {
    width: 64px;
    height: 64px;
    background: var(--accent);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all var(--transition);
}

.arrow-btn:hover {
    transform: scale(1.1) rotate(-5deg);
}

.object-3d {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 90px;
    height: 90px;
    background: radial-gradient(circle at 30% 30%, #333 0%, #111 100%);
    border-radius: 12px;
    transform: perspective(300px) rotateX(15deg) rotateY(-15deg);
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.5);
}

.bento-card__label-light {
    font-size: 20px;
    font-weight: 600;
    color: var(--text);
}

/* Stat Big (for product pages) */
.bento-card__stat-big {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 8px;
}

.bento-card__stat-number {
    font-family: var(--font-mono);
    font-size: 56px;
    font-weight: 700;
    color: var(--bg);
    line-height: 1;
}

.bento-card__stat-suffix {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 600;
    color: var(--bg);
}

.bento-card__stat-text {
    font-size: 16px;
    font-weight: 500;
    color: var(--bg);
}

.stat__label {
    font-size: 13px;
    color: var(--text-muted);
}

/* Stats Card */
.bento-card--stats {
    justify-content: space-between;
}

.chart {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}

.chart__bar {
    flex: 1;
    height: var(--height);
    background: var(--border-light);
    border-radius: 3px;
    transition: height 1s ease-out;
}

.chart__bar--accent {
    background: var(--accent);
}

.stat {
    display: flex;
    align-items: center;
    gap: 4px;
}

.stat__icon {
    color: var(--accent);
    font-size: 14px;
}

.stat__value {
    font-family: var(--font-mono);
    font-size: 20px;
    font-weight: 600;
    color: var(--accent);
}

.stat__percent {
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--accent);
}

/* ===================================
   PRODUCTS GRID
   =================================== */
.products-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.products-bento--4col {
    grid-template-columns: repeat(4, 1fr);
}

.products-bento--2col {
    grid-template-columns: repeat(2, 1fr);
}

.product-card {
    position: relative;
    background: linear-gradient(145deg, #181818 0%, #101010 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
    overflow: hidden;
}

.product-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
    background: linear-gradient(145deg, #1e1e1e 0%, #141414 100%);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
}

.product-card__glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: radial-gradient(ellipse at top, rgba(204, 255, 0, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity var(--transition);
    pointer-events: none;
}

/* ===================================
   PRICING CARDS
   =================================== */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: #111;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
}

.pricing-card--popular {
    border-color: var(--accent);
}

.pricing-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--accent);
    color: #000;
    font-size: 10px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.pricing-card__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
}

.pricing-card__subtitle {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 24px;
}

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

.pricing-card__list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-light);
    font-size: 15px;
    color: var(--text-secondary);
}

.pricing-card__list li:last-child {
    border-bottom: none;
}

.pricing-card__check {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}

.pricing-footer {
    text-align: center;
    margin-top: 48px;
}

.pricing-footer__text {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.btn--outline {
    background: transparent;
    border: 1px solid var(--accent);
    color: var(--accent);
}

.btn--outline:hover {
    background: var(--accent);
    color: #000;
}

/* ===================================
   NICHES GRID
   =================================== */
.niches-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}

.niche-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.niche-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #a3e635);
    opacity: 0;
    transition: opacity var(--transition);
}

.niche-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(204, 255, 0, 0.1);
}

.niche-card:hover::before {
    opacity: 1;
}

.niche-card__icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.2) 0%, rgba(204, 255, 0, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent);
    border: 1px solid rgba(204, 255, 0, 0.2);
}

.niche-card__title {
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.niche-card__desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

.niches-note {
    text-align: center;
    color: var(--text);
    font-size: 16px;
    padding: 28px 40px;
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.08) 0%, rgba(204, 255, 0, 0.02) 100%);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(204, 255, 0, 0.2);
    position: relative;
}

.niches-note::before {
    content: '48h';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: #000;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
}

/* ===================================
   MIMICRY SECTION
   =================================== */
.mimicry-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.mimicry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all var(--transition);
}

.mimicry-card:hover {
    border-color: rgba(203, 255, 0, 0.3);
    transform: translateY(-4px);
}

.mimicry-card__icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    background: rgba(203, 255, 0, 0.1);
    border-radius: 12px;
    color: var(--accent);
    margin-bottom: 20px;
}

.mimicry-card__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.mimicry-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.mimicry-note {
    text-align: center;
    padding: 24px 32px;
    background: linear-gradient(135deg, rgba(203, 255, 0, 0.08) 0%, rgba(203, 255, 0, 0.02) 100%);
    border: 1px solid rgba(203, 255, 0, 0.2);
    border-radius: var(--radius);
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   RESULTS SECTION
   =================================== */
.results-hero {
    text-align: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, rgba(204, 255, 0, 0.15) 0%, rgba(204, 255, 0, 0.02) 100%);
    border: 2px solid var(--accent);
    border-radius: var(--radius-lg);
    margin-bottom: 48px;
    position: relative;
    overflow: hidden;
}

.results-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.results-hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(204, 255, 0, 0.2) 0%, transparent 70%);
    pointer-events: none;
}

.results-hero__main {
    margin-bottom: 32px;
    position: relative;
    z-index: 1;
}

.results-hero__value {
    display: block;
    font-family: var(--font-mono);
    font-size: 72px;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -3px;
    margin-bottom: 16px;
    text-shadow: 0 0 60px rgba(204, 255, 0, 0.5);
}

.results-hero__label {
    display: block;
    font-size: 20px;
    color: var(--text);
    font-weight: 500;
}

.results-hero__desc {
    max-width: 700px;
    margin: 0 auto;
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    position: relative;
    z-index: 1;
}

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

.result-card {
    background: linear-gradient(145deg, #151515 0%, #0a0a0a 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all var(--transition);
}

.result-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), #a3e635);
}

.result-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
}

.result-card__value {
    display: block;
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 16px;
}

.result-card__label {
    display: block;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===================================
   TIMELINE SECTION
   =================================== */
.timeline-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 100px;
    align-items: start;
}

.timeline-left {
    position: sticky;
    top: 120px;
}

.timeline-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: -1px;
}

.timeline-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
}

.timeline-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: 60px;
    font-size: 15px;
    color: var(--text);
    font-weight: 500;
}

.timeline-badge svg {
    color: var(--accent);
}

.timeline-right {
    position: relative;
    padding-left: 50px;
}

.timeline-line {
    position: absolute;
    left: 9px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, #cbff00 0%, #a8d900 50%, #8ab300 100%);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 20px;
}

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

.timeline-dot {
    position: absolute;
    left: -50px;
    top: 28px;
    width: 20px;
    height: 20px;
    background: #cbff00;
    border-radius: 50%;
    border: 4px solid #0a0a0a;
    box-shadow: 0 0 20px rgba(203, 255, 0, 0.5);
    transition: all var(--transition);
}

.timeline-item:hover .timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 30px rgba(203, 255, 0, 0.7);
}

.timeline-content {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 28px;
    transition: all var(--transition);
}

.timeline-item:hover .timeline-content {
    border-color: rgba(203, 255, 0, 0.5);
    background: linear-gradient(145deg, rgba(203, 255, 0, 0.08) 0%, rgba(203, 255, 0, 0.02) 100%);
}

.timeline-day {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.timeline-item-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text);
}

.timeline-item-desc {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.6;
}

.product-card:hover .product-card__glow {
    opacity: 1;
}

.product-card__icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.product-card__icon--green {
    background: rgba(82, 196, 26, 0.15);
    color: var(--green);
}

.product-card__icon--blue {
    background: rgba(64, 150, 255, 0.15);
    color: var(--blue);
}

.product-card__icon--yellow {
    background: rgba(250, 173, 20, 0.15);
    color: var(--yellow);
}

.product-card__tag {
    display: block;
    font-size: 12px;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
}

.product-card__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    line-height: 1.3;
}

.product-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-card__footer {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

.product-card__stat-value {
    font-family: var(--font-mono);
    font-size: 24px;
    font-weight: 600;
    color: var(--accent);
    display: block;
}

.product-card__stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.product-card__arrow {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    transition: all var(--transition);
}

.product-card__arrow:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg);
}

/* Stat Card 24/7 */
.stat-card-accent {
    background: var(--accent);
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.stat-card-accent__big {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-bottom: 12px;
}

.stat-card-accent__number {
    font-family: var(--font-mono);
    font-size: 72px;
    font-weight: 700;
    color: var(--bg);
    line-height: 1;
}

.stat-card-accent__suffix {
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 600;
    color: var(--bg);
}

.stat-card-accent__text {
    font-size: 16px;
    font-weight: 500;
    color: var(--bg);
}

/* ===================================
   CASES
   =================================== */
.cases-bento {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 20px;
}

.case-card {
    position: relative;
    background: linear-gradient(145deg, #181818 0%, #101010 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    overflow: hidden;
    transition: all var(--transition);
}

.case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 20%;
    right: 20%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.08), transparent);
    z-index: 1;
}

.case-card:hover {
    border-color: var(--border-light);
    transform: translateY(-4px);
}

.case-card--featured {
    grid-row: span 2;
    display: flex;
    flex-direction: column;
}

.case-card__bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at bottom right, rgba(204, 255, 0, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.case-card__content {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.case-card__tag {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: #000;
    font-size: 12px;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 16px;
    width: fit-content;
}

.case-card__title {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

.case-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 24px;
}

.case-card__metrics {
    margin-top: auto;
    display: flex;
    gap: 32px;
}

.case-metric__value {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.case-metric__symbol {
    font-family: var(--font-mono);
    font-size: 24px;
    color: var(--accent);
}

.case-metric__label {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 8px;
}

.case-card__row {
    margin-top: auto;
}

.case-card__stat {
    display: block;
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.case-card__stat-label {
    font-size: 14px;
    color: var(--text-muted);
}

/* ===================================
   PROCESS
   =================================== */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.process-step {
    background: linear-gradient(145deg, #181818 0%, #101010 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
    transition: all var(--transition);
}

.process-step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.process-step__num {
    display: block;
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
}

.process-step:hover .process-step__num {
    opacity: 1;
}

.process-step__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
}

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

/* ===================================
   INTEGRATIONS MARQUEE
   =================================== */
.integrations-marquee {
    overflow: hidden;
    padding: 40px 0;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

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

.marquee-content {
    display: flex;
    gap: 40px;
    padding: 0 20px;
}

.integration {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-muted);
    white-space: nowrap;
    transition: color var(--transition);
}

.integration:hover {
    color: var(--accent);
}

/* ===================================
   FAQ
   =================================== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border);
}

.faq-item__question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 28px 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text);
    text-align: left;
    transition: color var(--transition);
}

.faq-item__question:hover {
    color: var(--accent);
}

.faq-item__icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
}

.faq-item__icon span {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 2px;
    background: currentColor;
    transform: translate(-50%, -50%);
    transition: transform var(--transition);
}

.faq-item__icon span:last-child {
    transform: translate(-50%, -50%) rotate(90deg);
}

.faq-item.active .faq-item__icon span:last-child {
    transform: translate(-50%, -50%) rotate(0);
}

.faq-item__answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-slow);
}

.faq-item.active .faq-item__answer {
    max-height: 300px;
}

.faq-item__answer p {
    padding-bottom: 28px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===================================
   CTA
   =================================== */
.cta-section {
    padding: 80px 0 120px;
}

.cta-card {
    position: relative;
    background: linear-gradient(145deg, #1a1a1a 0%, #0c0c0c 100%);
    border: 1px solid var(--border-light);
    border-radius: var(--radius);
    padding: 80px;
    text-align: center;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 15%;
    right: 15%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
    z-index: 1;
}

.cta-card__bg {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(204, 255, 0, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 100%, rgba(64, 150, 255, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-card__content {
    position: relative;
}

.cta-card__title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
}

.cta-card__text {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.cta-card__buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 0 30px;
    border-top: 1px solid var(--border-light);
    background: linear-gradient(180deg, var(--bg) 0%, #0a0a0a 100%);
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer__brand .logo {
    font-size: 24px;
    margin-bottom: 12px;
    display: block;
}

.footer__brand p {
    font-size: 14px;
    color: var(--text-muted);
}

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

.footer__col h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text);
}

.footer__col a {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 10px;
    transition: color var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.footer__bottom span {
    font-size: 14px;
    color: var(--text-muted);
}

.footer__socials {
    display: flex;
    gap: 16px;
}

.footer__socials a {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-muted);
    transition: color var(--transition);
}

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

/* ===================================
   MODAL
   =================================== */
.modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.modal.active {
    opacity: 1;
    visibility: visible;
}

.modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
}

.modal__content {
    position: relative;
    width: 100%;
    max-width: 400px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    transform: scale(0.9) translateY(20px);
    transition: transform var(--transition);
}

.modal.active .modal__content {
    transform: scale(1) translateY(0);
}

.modal__close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: color var(--transition);
}

.modal__close:hover {
    color: var(--text);
}

.modal__title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 24px;
    text-align: center;
}

.modal__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modal__form input[type="text"],
.modal__form input[type="tel"] {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--text);
    font-size: 16px;
    outline: none;
    transition: border-color var(--transition);
}

.modal__form input:focus {
    border-color: var(--accent);
}

.checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 13px;
    color: var(--text-muted);
}

.checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--accent);
    margin-top: 2px;
}

/* ===================================
   PRODUCT PAGES
   =================================== */
.product-hero {
    padding: 140px 0 80px;
}

.product-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.product-hero__tag {
    display: inline-block;
    padding: 8px 16px;
    background: var(--accent);
    color: var(--bg);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 100px;
    margin-bottom: 24px;
}

.product-hero__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
}

.product-hero__desc {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 32px;
}

.product-hero__stats {
    display: flex;
    gap: 32px;
    margin-bottom: 40px;
}

.product-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-hero__stat-value {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
}

.product-hero__stat-label {
    font-size: 13px;
    color: var(--text-muted);
}

.product-hero__card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
    text-align: center;
}

.product-hero__icon {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.product-hero__icon--green {
    background: rgba(82, 196, 26, 0.15);
    color: var(--green);
}

.product-hero__icon--blue {
    background: rgba(64, 150, 255, 0.15);
    color: var(--blue);
}

.product-hero__icon--yellow {
    background: rgba(250, 173, 20, 0.15);
    color: var(--yellow);
}

.product-hero__calc-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.product-hero__calc-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 40px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.product-hero__calc-formula {
    font-size: 13px;
    color: var(--text-muted);
}

/* Problem Grid */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.problem-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    text-align: center;
}

.problem-card__number {
    display: block;
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.problem-card__label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.problem-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Tech Grid */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
}

.tech-card__num {
    display: block;
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--accent);
    margin-bottom: 16px;
}

.tech-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.tech-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.tech-card__stat {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(204, 255, 0, 0.1);
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    border-radius: 100px;
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.timeline__item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    position: relative;
}

.timeline__day {
    display: inline-block;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--bg);
    font-size: 12px;
    font-weight: 600;
    border-radius: 100px;
    margin-bottom: 16px;
}

.timeline__title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.timeline__desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.timeline__time {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: var(--accent);
}

/* Case Study */
.case-study {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 48px;
}

.case-study__metrics {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border);
}

.case-study__metric {
    text-align: center;
}

.case-study__metric-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 8px;
}

.case-study__metric-label {
    font-size: 14px;
    color: var(--text-muted);
}

.case-study__comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.case-study__label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    color: var(--text-muted);
}

.case-study__before ul,
.case-study__after ul {
    list-style: none;
}

.case-study__before li,
.case-study__after li {
    padding: 8px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

.case-study__after .case-study__label {
    color: var(--accent);
}

/* Case Detailed */
.case-detailed {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.case-detailed__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 32px 40px;
    border-bottom: 1px solid var(--border);
    background: linear-gradient(135deg, rgba(203, 255, 0, 0.05) 0%, transparent 50%);
}

.case-detailed__title-block {
    flex: 1;
}

.case-detailed__name {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.case-detailed__subtitle {
    font-size: 15px;
    color: var(--text-secondary);
}

.case-detailed__roi {
    text-align: center;
    padding: 16px 24px;
    background: rgba(203, 255, 0, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(203, 255, 0, 0.3);
}

.case-detailed__roi-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.case-detailed__roi-label {
    display: block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-top: 4px;
}

.case-detailed__body {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    padding: 40px;
}

.case-detailed__metrics {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.case-detailed__metric {
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border);
}

.case-detailed__metric-value {
    display: block;
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.case-detailed__metric-label {
    font-size: 14px;
    color: var(--text-muted);
}

.case-detailed__table {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

.case-detailed__table-header {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.case-detailed__table-header span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.case-detailed__table-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 16px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.case-detailed__table-row:last-child {
    border-bottom: none;
}

.case-detailed__table-row span:first-child {
    color: var(--text-secondary);
}

.case-detailed__was {
    color: var(--text-muted);
}

.case-detailed__now {
    color: var(--accent);
    font-weight: 600;
}

.case-detailed__quote {
    padding: 32px 40px;
    background: linear-gradient(135deg, rgba(203, 255, 0, 0.03) 0%, transparent 100%);
    border-top: 1px solid var(--border);
    position: relative;
}

.case-detailed__quote-icon {
    color: var(--accent);
    opacity: 0.3;
    margin-bottom: 16px;
}

.case-detailed__quote-text {
    font-size: 18px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0 0 16px 0;
}

.case-detailed__quote-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
    font-style: normal;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    position: relative;
}

.pricing-card__name {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pricing-card__desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.pricing-card__features {
    list-style: none;
}

.pricing-card__features li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--border);
    padding-left: 24px;
    position: relative;
}

.pricing-card__features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent);
}

.pricing-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    padding: 4px 12px;
    background: var(--accent);
    color: var(--bg);
    font-size: 11px;
    font-weight: 600;
    border-radius: 100px;
}

/* Fit Grid */
.fit-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.fit-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 40px;
}

.fit-card__icon {
    display: flex;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border-radius: 50%;
    margin-bottom: 20px;
}

.fit-card--yes .fit-card__icon {
    background: rgba(82, 196, 26, 0.15);
    color: var(--green);
}

.fit-card--no .fit-card__icon {
    background: rgba(255, 77, 79, 0.15);
    color: #ff4d4f;
}

.fit-card__title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.fit-card__list {
    list-style: none;
}

.fit-card__list li {
    padding: 10px 0;
    font-size: 15px;
    border-bottom: 1px solid var(--border);
}

/* Integration Grid */
.integrations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.integration-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
}

.integration-card__name {
    display: block;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}

.integration-card__desc {
    font-size: 13px;
    color: var(--text-secondary);
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .products-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .bento-card--large {
        grid-column: 1;
        grid-row: span 1;
    }

    .cases-bento {
        grid-template-columns: 1fr 1fr;
    }

    .case-card--featured {
        grid-column: span 2;
        grid-row: span 1;
    }

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

@media (max-width: 768px) {
    .logo__img {
        height: 28px;
        min-width: 120px;
    }
    .section {
        padding: 80px 0;
    }

    /* Hero responsive */
    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero--simple,
    .hero--split {
        padding: 120px 0 60px;
    }

    .hero--simple .hero__content,
    .hero--split .hero__content {
        max-width: 100%;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero__visual {
        order: -1;
    }

    .hero__star {
        width: 200px;
        height: 200px;
    }

    .hero__star-glow {
        width: 150px;
        height: 150px;
    }

    .hero__tag {
        font-size: 11px;
        padding: 8px 16px;
        margin-bottom: 20px;
    }

    .hero__title {
        font-size: 32px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero__desc {
        font-size: 16px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .hero__buttons {
        justify-content: center;
    }

    .hero__channels {
        margin-top: 24px;
    }

    .hero__channels-label {
        font-size: 12px;
        text-align: center;
    }

    .hero__channels-list {
        justify-content: center;
        gap: 8px;
    }

    .hero__channel {
        padding: 8px 14px;
        font-size: 12px;
    }

    .hero__channel svg {
        width: 18px;
        height: 18px;
    }

    .nav {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100vw !important;
        height: 100vh !important;
        background: #0a0a0a !important;
        display: none;
        align-items: center;
        justify-content: center;
        z-index: 9998;
    }

    .nav.active {
        display: flex !important;
    }

    .nav__list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .nav__link {
        font-size: 20px;
        font-weight: 500;
    }

    .header {
        z-index: 9999;
    }

    .header__actions {
        display: none;
    }

    .burger {
        display: flex;
        z-index: 10000;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .pricing-card {
        padding: 24px;
    }

    .niches-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .niche-card {
        padding: 20px;
    }

    .niches-note {
        padding: 24px 20px;
        font-size: 14px;
    }

    .niches-note::before {
        top: -10px;
        font-size: 10px;
        padding: 3px 10px;
    }

    .mimicry-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .mimicry-card {
        padding: 20px;
    }

    .mimicry-card__icon {
        width: 40px;
        height: 40px;
        margin-bottom: 16px;
    }

    .mimicry-card__title {
        font-size: 16px;
    }

    .mimicry-note {
        padding: 20px;
        font-size: 14px;
    }

    .results-hero {
        padding: 40px 24px;
    }

    .results-hero__value {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .results-hero__label {
        font-size: 15px;
    }

    .results-hero__desc {
        font-size: 14px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .result-card {
        padding: 28px 24px;
    }

    .result-card__value {
        font-size: 28px;
    }

    .timeline-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .timeline-left {
        position: static;
    }

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

    .timeline-subtitle {
        font-size: 16px;
        margin-bottom: 24px;
    }

    .timeline-badge {
        padding: 12px 18px;
        font-size: 13px;
    }

    .timeline-right {
        padding-left: 36px;
    }

    .timeline-line {
        left: 6px;
        width: 2px;
    }

    .timeline-dot {
        left: -36px;
        width: 14px;
        height: 14px;
        border-width: 3px;
    }

    .timeline-content {
        padding: 20px;
    }

    .case-detailed__header {
        flex-direction: column;
        gap: 20px;
        padding: 24px;
    }

    .case-detailed__name {
        font-size: 22px;
    }

    .case-detailed__subtitle {
        font-size: 14px;
    }

    .case-detailed__roi {
        align-self: flex-start;
        padding: 12px 20px;
    }

    .case-detailed__roi-value {
        font-size: 28px;
    }

    .case-detailed__body {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 24px;
    }

    .case-detailed__metrics {
        flex-direction: row;
        gap: 16px;
    }

    .case-detailed__metric {
        flex: 1;
        padding: 16px;
    }

    .case-detailed__metric-value {
        font-size: 24px;
    }

    .case-detailed__metric-label {
        font-size: 12px;
    }

    .case-detailed__table-header,
    .case-detailed__table-row {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 8px;
        padding: 12px 16px;
        font-size: 13px;
    }

    .case-detailed__table-header span {
        font-size: 10px;
    }

    .case-detailed__quote {
        padding: 24px;
    }

    .case-detailed__quote-text {
        font-size: 16px;
    }

    .timeline-item-title {
        font-size: 17px;
    }

    .timeline-item-desc {
        font-size: 14px;
    }

    .bento-row {
        grid-template-columns: 1fr 1fr;
    }

    .bento-card--main {
        min-height: 400px;
        padding: 30px;
    }

    .bento-card__visual {
        width: 120px;
        height: 120px;
        bottom: 30px;
        right: 30px;
    }

    .products-bento,
    .products-bento--4col,
    .products-bento--2col,
    .cases-bento,
    .process-grid {
        grid-template-columns: 1fr !important;
    }

    .bento-card--large,
    .case-card--featured {
        grid-column: span 1;
        grid-row: span 1;
    }

    .bento-card__stat-number {
        font-size: 40px;
    }

    .bento-card__stat-suffix {
        font-size: 24px;
    }

    .case-card__metrics {
        flex-direction: column;
        gap: 20px;
    }

    .case-metric__value {
        font-size: 36px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

    .cta-card {
        padding: 40px 24px;
    }

    /* Product Pages Responsive */
    .product-hero__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .product-hero__stats {
        flex-wrap: wrap;
        gap: 20px;
    }

    .tech-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

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

    .case-study__metrics {
        flex-wrap: wrap;
        gap: 30px;
    }

    .case-study__metric-value {
        font-size: 36px;
    }

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

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

    /* Product pages bento hero */
    .hero .bento-grid {
        grid-template-columns: 1fr;
    }

    .hero .bento-col {
        display: flex;
        flex-direction: column;
    }

    .hero .bento-row {
        grid-template-columns: 1fr 1fr;
    }

    .hero .bento-card--main {
        min-height: auto;
        padding: 28px;
    }

    .hero .bento-card--main .hero__title {
        font-size: 28px;
    }

    .hero .bento-card--main .hero__subtitle {
        font-size: 15px;
    }

    .bento-card__body {
        flex-direction: column;
        align-items: flex-start;
    }

    .products-bento--4col {
        grid-template-columns: 1fr !important;
    }
}

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

    .section {
        padding: 50px 0;
    }

    .section__header {
        margin-bottom: 32px;
    }

    .section__title {
        font-size: 24px;
        line-height: 1.2;
    }

    .section__subtitle {
        font-size: 14px;
    }

    .section__tag {
        font-size: 10px;
        padding: 4px 10px;
    }

    .hero {
        padding: 100px 0 40px;
        min-height: auto;
    }

    .hero--simple,
    .hero--split {
        padding: 110px 0 60px;
    }

    .hero--simple .hero__content,
    .hero--split .hero__content {
        max-width: 100%;
        text-align: left;
    }

    .hero__grid {
        gap: 24px;
    }

    .hero__visual {
        display: none;
    }

    .hero__tag {
        font-size: 11px;
        padding: 8px 16px;
        margin-top: 0;
        margin-bottom: 20px;
        display: inline-block;
    }

    .hero__title {
        font-size: 28px;
        line-height: 1.25;
        margin-top: 0;
        margin-bottom: 16px;
        letter-spacing: -0.5px;
    }

    .hero__desc {
        font-size: 15px;
        line-height: 1.6;
        margin-top: 0;
        margin-bottom: 24px;
        color: var(--text-secondary);
    }

    .hero__buttons {
        margin-top: 0;
    }

    .hero__buttons .btn {
        width: auto;
        display: inline-flex;
    }

    .hero__stats {
        gap: 24px;
        margin-bottom: 24px;
    }

    .hero__stat-value {
        font-size: 24px;
    }

    .hero__stat-label {
        font-size: 12px;
    }

    .hero__channels {
        margin-top: 20px;
    }

    .hero__channels-label {
        font-size: 11px;
        text-align: left;
        margin-bottom: 12px;
    }

    .hero__channels-list {
        justify-content: flex-start;
        gap: 6px;
    }

    .hero__channel {
        padding: 6px 10px;
        font-size: 11px;
        gap: 5px;
    }

    .hero__channel svg {
        width: 16px;
        height: 16px;
    }

    .bento-grid {
        gap: 12px;
        grid-template-columns: 1fr !important;
    }

    .bento-col {
        gap: 12px;
    }

    .bento-row {
        gap: 12px;
        grid-template-columns: 1fr !important;
    }

    .hero__subtitle {
        font-size: 14px;
        margin-top: 12px;
        line-height: 1.5;
    }

    .bento-card--main {
        min-height: auto;
        padding: 20px;
    }

    .hero .bento-card--main .hero__title {
        font-size: 24px;
        line-height: 1.2;
    }

    .bento-card__body {
        flex-direction: column;
        align-items: flex-start;
    }

    .bento-card__body .hero__title {
        margin-bottom: 16px;
    }

    .bento-card__body .hero__subtitle {
        font-size: 14px;
        line-height: 1.5;
    }

    .bento-card--accent,
    .bento-card--dark {
        min-height: 100px;
        padding: 16px;
    }

    .bento-card--square {
        min-height: 80px;
    }

    .bento-card--stats {
        min-height: 100px;
    }

    .bento-card__stat-number {
        font-size: 28px;
    }

    .bento-card__stat-suffix {
        font-size: 16px;
    }

    .bento-card__stat-text {
        font-size: 12px;
    }

    .bento-card__label {
        font-size: 14px;
    }

    .bento-card__label-light {
        font-size: 14px;
    }

    .bento-card__icon {
        width: 40px;
        height: 40px;
    }

    .bento-card__icon svg {
        width: 24px;
        height: 24px;
    }

    .bento-card__visual {
        display: none;
    }

    .bento-card__header {
        margin-bottom: 16px;
    }

    .bento-card__arrow {
        width: 36px;
        height: 36px;
    }

    .chart {
        height: 40px;
        gap: 4px;
    }

    .chart__bar {
        width: 12px;
    }

    .stat {
        gap: 4px;
    }

    .stat__value {
        font-size: 14px;
    }

    .stat__label {
        font-size: 10px;
    }

    .stat__icon {
        font-size: 12px;
    }

    .stat__percent {
        font-size: 12px;
    }

    /* Products */
    .products-bento {
        gap: 12px;
    }

    .product-card {
        padding: 20px;
    }

    .product-card__icon {
        width: 44px;
        height: 44px;
        margin-bottom: 12px;
    }

    .product-card__tag {
        font-size: 10px;
        margin-bottom: 8px;
    }

    .product-card__title {
        font-size: 18px;
        margin-bottom: 8px;
    }

    .product-card__desc {
        font-size: 13px;
        margin-bottom: 16px;
        line-height: 1.5;
    }

    .product-card__footer {
        padding-top: 12px;
    }

    .product-card__stat-value {
        font-size: 16px;
    }

    .product-card__stat-label {
        font-size: 11px;
    }

    .product-card__arrow {
        width: 36px;
        height: 36px;
    }

    /* Cases */
    .cases-bento {
        gap: 12px;
    }

    .case-card {
        padding: 20px;
    }

    .case-card__tag {
        font-size: 10px;
        padding: 3px 10px;
        margin-bottom: 12px;
    }

    .case-card__title {
        font-size: 20px;
        margin-bottom: 6px;
    }

    .case-card__desc {
        font-size: 13px;
        line-height: 1.5;
    }

    .case-card__metrics {
        gap: 16px;
    }

    .case-metric__value {
        font-size: 28px;
    }

    .case-metric__symbol {
        font-size: 14px;
    }

    .case-metric__label {
        font-size: 11px;
    }

    .case-card__stat {
        font-size: 20px;
    }

    .case-card__stat-label {
        font-size: 11px;
    }

    .case-card__row {
        padding-top: 12px;
        margin-top: 12px;
    }

    /* Process */
    .process-grid {
        gap: 12px;
    }

    .process-step {
        padding: 20px;
    }

    .process-step__num {
        font-size: 32px;
        margin-bottom: 10px;
    }

    .process-step__title {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .process-step__text {
        font-size: 13px;
        line-height: 1.5;
    }

    /* FAQ */
    .faq-list {
        gap: 0;
    }

    .faq-item {
        border-bottom: 1px solid var(--border);
    }

    .faq-item__question {
        padding: 16px 0;
        font-size: 14px;
        gap: 12px;
    }

    .faq-item__question span {
        flex: 1;
    }

    .faq-item__icon {
        width: 20px;
        height: 20px;
        flex-shrink: 0;
    }

    .faq-item__answer p {
        font-size: 13px;
        padding-bottom: 16px;
        line-height: 1.6;
    }

    /* CTA */
    .cta-section {
        padding: 50px 0 60px;
    }

    .cta-card {
        padding: 28px 20px;
    }

    .cta-card__title {
        font-size: 20px;
        line-height: 1.3;
        margin-bottom: 12px;
    }

    .cta-card__text {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .cta-card__buttons {
        flex-direction: column;
        gap: 10px;
    }

    .cta-card__buttons .btn {
        width: 100%;
    }

    /* Buttons */
    .btn--lg {
        font-size: 14px;
        padding: 14px 24px;
    }

    .btn--sm {
        font-size: 12px;
        padding: 8px 14px;
    }

    .btn--full {
        padding: 14px 20px;
    }

    /* Footer */
    .footer {
        padding: 32px 0 20px;
    }

    .footer__top {
        gap: 24px;
        margin-bottom: 24px;
    }

    .footer__brand .logo {
        font-size: 18px;
    }

    .footer__brand p {
        font-size: 12px;
        margin-top: 8px;
        line-height: 1.5;
    }

    .footer__col h5 {
        font-size: 12px;
        margin-bottom: 10px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .footer__col a {
        font-size: 13px;
        padding: 4px 0;
    }

    .footer__links {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 12px;
        padding-top: 20px;
        text-align: center;
    }

    .footer__bottom span {
        font-size: 11px;
    }

    .footer__socials {
        gap: 16px;
    }

    .footer__socials a {
        font-size: 12px;
    }

    /* Modal */
    .modal__content {
        margin: 16px;
        padding: 28px 20px;
        max-width: calc(100% - 32px);
    }

    .modal__title {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .modal__form input[type="text"],
    .modal__form input[type="tel"] {
        padding: 12px 14px;
        font-size: 15px;
    }

    .checkbox {
        font-size: 12px;
    }

    /* Header mobile menu */
    .nav.active {
        z-index: 999;
    }

    .burger {
        z-index: 1001;
    }

    /* Integrations */
    .integrations-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .integration-card {
        padding: 16px;
    }

    .integration-card__name {
        font-size: 15px;
    }

    .integration-card__desc {
        font-size: 12px;
    }

    /* Marquee */
    .integration {
        font-size: 18px;
    }

    /* Fit grid */
    .fit-card {
        padding: 24px;
    }

    .fit-card__icon {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }

    .fit-card__title {
        font-size: 18px;
    }

    .fit-card__list li {
        font-size: 14px;
        padding: 8px 0;
    }

    /* Pricing */
    .pricing-card {
        padding: 24px;
    }

    .pricing-card__name {
        font-size: 20px;
    }

    .pricing-card__features li {
        font-size: 13px;
        padding: 8px 0;
        padding-left: 20px;
    }

    /* Tech grid */
    .tech-card {
        padding: 24px;
    }

    .tech-card__title {
        font-size: 18px;
    }

    .tech-card__desc {
        font-size: 13px;
    }

    .tech-card__stat {
        font-size: 12px;
        padding: 5px 10px;
    }

    /* Problem cards on product pages */
    .problem-card {
        padding: 24px;
    }

    .problem-card__number {
        font-size: 28px;
    }

    .problem-card__label {
        font-size: 12px;
    }

    .problem-card__desc {
        font-size: 13px;
    }

    /* Case study */
    .case-study {
        padding: 24px;
    }

    .case-study__metrics {
        gap: 20px;
        margin-bottom: 24px;
        padding-bottom: 24px;
    }

    .case-study__metric-value {
        font-size: 28px;
    }

    .case-study__comparison {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    /* Timeline */
    .timeline {
        grid-template-columns: 1fr;
    }

    .timeline__item {
        padding: 20px;
    }

    .timeline__title {
        font-size: 16px;
    }

    .timeline__desc {
        font-size: 13px;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .hero__title {
        font-size: 24px;
    }

    .section__title {
        font-size: 24px;
    }

    .bento-card__stat-number {
        font-size: 32px;
    }

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

    .case-metric__value {
        font-size: 28px;
    }

    .product-card__title {
        font-size: 18px;
    }
}

/* ===================================
   ANIMATIONS (GSAP helpers)
   =================================== */
.split-char {
    display: inline-block;
}

/* Messenger Select in Modal */
.messenger-select {
    margin: 16px 0;
}

.messenger-label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.messenger-options {
    display: flex;
    gap: 12px;
}

.messenger-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    transition: all 0.2s ease;
    flex: 1;
    justify-content: center;
}

.messenger-option:hover {
    border-color: rgba(203, 255, 0, 0.5);
}

.messenger-option:has(input:checked) {
    border-color: var(--accent, #cbff00);
    background: rgba(203, 255, 0, 0.1);
}

.messenger-option input[type="radio"] {
    accent-color: var(--accent, #cbff00);
    width: 16px;
    height: 16px;
}

.messenger-option span {
    font-size: 14px;
    color: #fff;
}

/* Success Screen */
.success-screen {
    text-align: center;
    padding: 20px 0;
}

.success-screen__icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.success-screen__title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.success-screen__text {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.success-screen__subtext {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.success-screen__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.success-screen__btn svg {
    width: 24px;
    height: 24px;
}

.btn--whatsapp {
    background: #25D366 !important;
}

.btn--whatsapp:hover {
    background: #20bd5a !important;
}

.btn--telegram {
    background: #0088cc !important;
}

.btn--telegram:hover {
    background: #0077b5 !important;
}
