:root {
    --primary: #06B6D4;
    --primary-dark: #8B5CF6;
    --primary-light: #E0E7FF;
    --accent: #3B82F6;
    --text-dark: #1F2937;
    --text-gray: #6B7280;
    --text-light: #9CA3AF;
    --bg-light: #F5F3FF;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--white);
    overflow-x: hidden;
}

.bg-pattern {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.4;
    background: 
        radial-gradient(circle at 20% 20%, var(--primary-light) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, var(--primary-light) 0%, transparent 50%);
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    z-index: 100;
    border-bottom: 1px solid rgba(16, 185, 129, 0.1);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo-icon {
    width: 42px;
    height: 42px;
}

.logo-text {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    letter-spacing: -0.5px;
}

.logo-text span:first-child {
    color: #8B5CF6;
}

.logo-text .logo-y {
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 4px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    border-radius: 50%;
    animation: yPlay 3s ease-in-out infinite;
}

.logo-text span:last-child {
    color: #06B6D4;
}

@keyframes yPlay {
    0%, 100% { 
        transform: translateY(0) rotate(0deg); 
    }
    25% { 
        transform: translateY(-3px) rotate(-5deg); 
    }
    50% { 
        transform: translateY(0) rotate(0deg); 
    }
    75% { 
        transform: translateY(-3px) rotate(5deg); 
    }
}

.logo:hover .logo-y {
    animation: yBounce 0.5s ease-in-out;
}

@keyframes yBounce {
    0%, 100% { transform: scale(1) rotate(0deg); }
    25% { transform: scale(1.2) rotate(-10deg); }
    50% { transform: scale(1.3) rotate(0deg); }
    75% { transform: scale(1.2) rotate(10deg); }
}

.nav-cta {
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
    color: white;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

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

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='100%25' height='100%25' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 300 Q 150 250, 300 300 T 600 300 T 900 300 T 1200 300 T 1500 300' stroke='%238B5CF6' stroke-width='1' fill='none' opacity='0.15'/%3E%3Cpath d='M0 400 Q 200 350, 400 400 T 800 400 T 1200 400 T 1600 400' stroke='%233B82F6' stroke-width='1' fill='none' opacity='0.12'/%3E%3Cpath d='M0 500 Q 180 450, 360 500 T 720 500 T 1080 500 T 1440 500' stroke='%2306B6D4' stroke-width='1' fill='none' opacity='0.1'/%3E%3Cpath d='M0 200 Q 120 170, 240 200 T 480 200 T 720 200 T 960 200 T 1200 200 T 1440 200' stroke='%238B5CF6' stroke-width='1' fill='none' opacity='0.08'/%3E%3C/svg%3E");
    background-size: 100% 100%;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: 10%;
    right: -5%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: left;
    animation: fadeInUp 1s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-block;
    background: var(--primary-light);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero h1 .brand-shop {
    color: #8B5CF6;
}

.hero h1 .brand-y {
    color: white;
    font-size: 0.8em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.3em;
    height: 1.3em;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    border-radius: 50%;
    margin: 0 3px;
    vertical-align: middle;
}

.hero h1 .brand-copy {
    color: #06B6D4;
}

.hero h1 .highlight {
    color: var(--text-dark);
    position: relative;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 1rem;
    max-width: 600px;
}

.hero-tagline {
    font-size: 1.3rem;
    font-weight: 600;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-demo {
    animation: fadeInUp 1s ease 0.3s both;
    padding-left: 2rem;
}

.browser-mockup {
    background: white;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.15);
    overflow: visible;
    max-width: 480px;
    position: relative;
}

.browser-header {
    background: linear-gradient(180deg, #f1f5f9 0%, #e2e8f0 100%);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e2e8f0;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots .dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ef4444; }
.dot.yellow { background: #f59e0b; }
.dot.green { background: #22c55e; }

.browser-url {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    color: var(--text-gray);
}

.url-icon {
    font-size: 0.7rem;
}

.browser-content {
    padding: 20px;
    display: flex;
    gap: 20px;
    position: relative;
    min-height: 280px;
    background: #f8fafc;
}

.demo-order {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    position: relative;
}

.order-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 1px solid #f1f5f9;
}

.order-badge {
    background: #f1f5f9;
    color: #64748b;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.order-status {
    color: #22c55e;
    font-size: 0.7rem;
    font-weight: 500;
}

.order-details {
    margin-bottom: 12px;
}

.order-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    padding: 4px 0;
}

.order-label {
    color: var(--text-gray);
}

.order-value {
    font-weight: 600;
    color: var(--text-dark);
}

.order-total {
    color: #8B5CF6;
}

.order-products {
    background: #f8fafc;
    border-radius: 6px;
    padding: 8px;
    margin-bottom: 12px;
}

.product-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.7rem;
    color: var(--text-gray);
    padding: 3px 0;
}

.shopycopy-btn {
    width: 100%;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    animation: btnPulse 6s ease-in-out infinite;
}

.shopycopy-btn .btn-icon {
    width: 16px;
    height: 16px;
}

@keyframes btnPulse {
    0%, 30%, 100% { transform: scale(1); box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3); }
    35%, 40% { transform: scale(1.02); box-shadow: 0 6px 25px rgba(139, 92, 246, 0.5); }
}

.demo-cursor {
    position: absolute;
    width: 24px;
    height: 24px;
    pointer-events: none;
    animation: cursorMove 6s ease-in-out infinite;
    opacity: 0;
    z-index: 10;
}

.demo-cursor svg {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

@keyframes cursorMove {
    0%, 20% { 
        bottom: 80px; 
        left: 30px; 
        opacity: 0;
    }
    25% { 
        bottom: 80px; 
        left: 30px; 
        opacity: 1;
    }
    30%, 35% { 
        bottom: 25px; 
        left: 80px; 
        opacity: 1;
    }
    40% {
        bottom: 25px;
        left: 80px;
        opacity: 1;
        transform: scale(0.9);
    }
    45%, 100% {
        opacity: 0;
    }
}

.data-particles {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.data-particle {
    position: absolute;
    font-size: 1rem;
    opacity: 0;
    animation: particleFly 6s ease-in-out infinite;
}

.data-particle.p1 { animation-delay: 0s; }
.data-particle.p2 { animation-delay: 0.15s; }
.data-particle.p3 { animation-delay: 0.3s; }
.data-particle.p4 { animation-delay: 0.45s; }

@keyframes particleFly {
    0%, 40% { 
        transform: translate(-80px, 0) scale(0.5);
        opacity: 0;
    }
    45% {
        transform: translate(-60px, 0) scale(1);
        opacity: 1;
    }
    55% {
        transform: translate(0, -10px) scale(1.2);
        opacity: 1;
    }
    65% {
        transform: translate(60px, 0) scale(1);
        opacity: 1;
    }
    70%, 100% {
        transform: translate(80px, 0) scale(0.5);
        opacity: 0;
    }
}

.demo-invoice {
    flex: 1;
    background: white;
    border-radius: 10px;
    padding: 16px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    border: 2px solid transparent;
    animation: invoiceAppear 6s ease-in-out infinite;
}

@keyframes invoiceAppear {
    0%, 45% { 
        border-color: transparent;
    }
    55%, 90% { 
        border-color: #22c55e;
    }
    100% {
        border-color: transparent;
    }
}

.invoice-data {
    opacity: 0;
    display: inline-block;
}

.invoice-data.d1 {
    animation: dataAppear 6s ease-in-out infinite;
    animation-delay: 0s;
}

.invoice-data.d2 {
    animation: dataAppear 6s ease-in-out infinite;
    animation-delay: 0.2s;
}

.invoice-data.d3 {
    animation: dataAppear 6s ease-in-out infinite;
    animation-delay: 0.4s;
}

.invoice-data.d4 {
    animation: dataAppear 6s ease-in-out infinite;
    animation-delay: 0.6s;
}

@keyframes dataAppear {
    0%, 50% { 
        opacity: 0;
        transform: translateX(-10px);
    }
    55% {
        opacity: 1;
        transform: translateX(0);
    }
    90% {
        opacity: 1;
        transform: translateX(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-10px);
    }
}

.invoice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 2px solid #10b981;
}

.invoice-title {
    font-weight: 700;
    font-size: 0.85rem;
    color: #10b981;
}

.invoice-number {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.invoice-body {
    font-size: 0.7rem;
}

.invoice-row {
    display: flex;
    justify-content: space-between;
    padding: 4px 0;
    color: var(--text-gray);
}

.invoice-row.highlight-row {
    font-weight: 600;
    color: var(--text-dark);
    padding-bottom: 8px;
    margin-bottom: 4px;
    border-bottom: 1px dashed #e2e8f0;
}

.invoice-total {
    display: flex;
    justify-content: space-between;
    padding-top: 8px;
    margin-top: 8px;
    border-top: 2px solid #10b981;
    font-weight: 700;
    color: var(--text-dark);
}

.invoice-stamp {
    text-align: center;
    margin-top: 12px;
    padding: 6px;
    background: linear-gradient(135deg, #dcfce7, #d1fae5);
    border-radius: 6px;
    color: #16a34a;
    font-weight: 700;
    font-size: 0.8rem;
    opacity: 0;
    animation: stampAppear 6s ease-in-out infinite;
}

@keyframes stampAppear {
    0%, 65% { opacity: 0; transform: scale(0.8); }
    70%, 90% { opacity: 1; transform: scale(1); }
    100% { opacity: 0; transform: scale(0.8); }
}

.time-badge {
    position: absolute;
    top: -15px;
    right: -50px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: white;
    padding: 6px 10px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.time-badge .time-old,
.time-badge .time-new {
    padding: 4px 8px;
    border-radius: 6px;
}

.time-badge .time-value {
    font-size: 0.75rem;
}

.time-badge .time-desc {
    font-size: 0.55rem;
}

.time-badge .time-arrow {
    font-size: 0.8rem;
}

.time-badge .time-x,
.time-badge .time-check {
    width: 14px;
    height: 14px;
    font-size: 0.5rem;
    top: -5px;
    right: -5px;
}

.time-old, .time-new {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 16px;
    border-radius: 10px;
    position: relative;
}

.time-old {
    background: #fef2f2;
    border: 2px solid #fecaca;
}

.time-new {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border: 2px solid #8B5CF6;
}

.time-value {
    font-size: 1.1rem;
    font-weight: 700;
}

.time-old .time-value {
    color: #dc2626;
    text-decoration: line-through;
}

.time-new .time-value {
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.time-desc {
    font-size: 0.7rem;
    color: var(--text-gray);
}

.time-x, .time-check {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
}

.time-x {
    background: #dc2626;
    color: white;
}

.time-check {
    background: #22c55e;
    color: white;
}

.time-arrow {
    font-size: 1.2rem;
    color: var(--text-gray);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-primary {
    background: #f1f5f9;
    color: var(--text-dark);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.btn-primary:hover {
    background: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    color: var(--text-dark);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--primary-light);
}

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

.btn-gradient {
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    color: white;
    border: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 92, 246, 0.4);
    color: white;
}

.what-is {
    padding: 5rem 2rem;
    background: linear-gradient(90deg, #f0fdf4 0%, #ffffff 100%);
}

.what-is-box {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

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

.what-is-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.what-is-left h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 2px;
}

.what-is-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.what-is-intro strong {
    color: var(--text-dark);
}

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

.what-is-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    font-size: 1.05rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.what-is-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5rem;
    width: 8px;
    height: 8px;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    border-radius: 50%;
}

.what-is-list li strong {
    color: var(--text-dark);
}

.what-is-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
}

.what-is-platforms {
    margin-top: 1rem;
    text-align: right;
}

.platforms-label {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.platforms-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: flex-end;
}

.platform-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-dark);
    border: 2px solid rgba(139, 92, 246, 0.3);
    transition: all 0.3s ease;
}

.platform-item:hover {
    border-color: rgba(6, 182, 212, 0.6);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.2);
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
}

.how-it-works {
    padding: 6rem 2rem;
    background: white;
}

.how-it-works-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-bottom: 3rem;
}

.how-it-works-left {
    order: 2;
    position: sticky;
    top: 120px;
}

.how-it-works-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
    white-space: nowrap;
}

.how-it-works-left h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 2px;
}

.how-it-works-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-top: 1.5rem;
    padding-left: 1rem;
}

.how-it-works-right {
    order: 1;
    display: flex;
    flex-direction: column;
}

.video-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05), rgba(6, 182, 212, 0.05));
    border: 2px dashed rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    padding: 4rem 3rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.video-placeholder:hover {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1), rgba(6, 182, 212, 0.1));
    border-color: rgba(139, 92, 246, 0.5);
}

.video-play-btn {
    transition: transform 0.3s ease;
}

.video-placeholder:hover .video-play-btn {
    transform: scale(1.1);
}

.video-label {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-gray);
}

.process-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.process-feature {
    text-align: center;
    position: relative;
}

.process-feature::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.process-feature:last-child::after {
    display: none;
}

.process-feature h4 {
    margin: 0 0 0.25rem 0;
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.process-feature p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.features {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #334155 0%, #1e293b 100%);
    color: white;
}

.features-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

.features-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    margin-top: 3rem;
    color: white;
}

.features-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4rem;
}

.features-stats {
    display: flex;
    gap: 2rem;
}

.feature-stat {
    text-align: center;
}

.feature-stat .stat-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.feature-stat .stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 0.5rem;
    line-height: 1.4;
}

.feature-stat .stat-label strong {
    color: white;
}

.features-right {
    position: relative;
}

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

.timeline::before {
    content: '';
    position: absolute;
    left: 8px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #8B5CF6, #3B82F6, #06B6D4);
    border-radius: 3px;
}

.timeline-item {
    position: relative;
    margin-bottom: 1.5rem;
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.6s ease;
}

.timeline-item.visible {
    opacity: 1;
    transform: translateX(0);
}

.timeline-item:nth-child(1) { transition-delay: 0.1s; }
.timeline-item:nth-child(2) { transition-delay: 0.2s; }
.timeline-item:nth-child(3) { transition-delay: 0.3s; }
.timeline-item:nth-child(4) { transition-delay: 0.4s; }
.timeline-item:nth-child(5) { transition-delay: 0.5s; }

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

.timeline-marker {
    position: absolute;
    left: -40px;
    top: 5px;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    border-radius: 50%;
    border: 3px solid #334155;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.5);
}

.timeline-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: #0f172a;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-content::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: radial-gradient(circle at bottom right, rgba(6, 182, 212, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.timeline-content:hover {
    background: #1e293b;
    border-color: rgba(6, 182, 212, 0.3);
    transform: translateX(5px);
}

.timeline-text h3 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.timeline-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

.for-who {
    padding: 6rem 2rem;
    background: #f8fafc;
}

.section-content {
    max-width: 1100px;
    margin: 0 auto;
}

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

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
    color: var(--text-dark);
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 2px;
}

.section-header p {
    color: var(--text-gray);
    font-size: 1.1rem;
    margin-top: 1rem;
}

.audience-grid {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 2rem;
}

.audience-item {
    text-align: center;
    max-width: 280px;
    position: relative;
}

.audience-item::after {
    content: '';
    position: absolute;
    right: -2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

.audience-item:last-child::after {
    display: none;
}

.audience-item .icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.audience-item h3 {
    color: var(--text-dark);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.audience-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    opacity: 0.85;
    line-height: 1.6;
}

.audience-item:nth-child(2) .icon {
    animation-delay: 0.5s;
}

.audience-item:nth-child(3) .icon {
    animation-delay: 1s;
}

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

.testimonials {
    padding: 5rem 2rem;
    background: white;
}

.testimonials-container {
    max-width: 1100px;
    margin: 0 auto;
}

.testimonials h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.testimonials h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 2px;
}

.testimonials-subtitle {
    text-align: left;
    font-size: 1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
    margin-top: 1rem;
    font-style: italic;
}

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

.testimonial-card {
    padding: 2rem;
    border-radius: 16px;
    position: relative;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
    border-color: rgba(6, 182, 212, 0.4);
}

.testimonial-content {
    position: relative;
}

.testimonial-stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.author-info strong {
    display: block;
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-gray);
    font-weight: 500;
}

.cta-section {
    padding: 4rem 2rem;
    text-align: center;
    background: #f8fafc;
}

.cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: #374151;
    padding: 2rem 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: visible;
}

.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem;
    margin-bottom: 0;
    color: white;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-size: 1.1rem;
    white-space: nowrap;
}

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

.cta-ribbon {
    position: absolute;
    top: -5px;
    left: -5px;
    background: linear-gradient(135deg, #8B5CF6, #06B6D4);
    color: white;
    padding: 0.5rem 2rem;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
    border-radius: 4px;
    z-index: 10;
}

.cta-box .btn-primary,
.btn-cyan {
    background: linear-gradient(135deg, #22d3ee, #06B6D4, #0891b2);
    color: white;
    white-space: nowrap;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-box .btn-primary:hover,
.btn-cyan:hover {
    background: linear-gradient(135deg, #06B6D4, #0891b2, #0e7490);
    transform: translateY(-2px);
    color: white;
}

footer {
    padding: 3rem 2rem 1.5rem;
    background: var(--text-dark);
    color: white;
}

.footer-content {
    max-width: 1100px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand {
    padding-right: 1rem;
}

.footer-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    display: flex;
    letter-spacing: -0.5px;
}

.footer-logo span:first-child {
    color: #8B5CF6;
}

.footer-logo .footer-logo-y {
    color: white;
    font-size: 0.8rem;
    font-weight: 700;
    margin: 0 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    border-radius: 50%;
}

.footer-logo span:last-child {
    color: #06B6D4;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.5;
}

.footer-links h4 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: white;
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: #06B6D4;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
    margin: 0;
}

.footer-bottom a {
    color: #06B6D4;
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}

.main-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 3rem 2rem;
    padding-top: 6rem;
}

.page-header {
    text-align: left;
    margin-bottom: 3rem;
}

.page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
    position: relative;
    display: inline-block;
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: 1.5rem;
}

.pricing-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured {
    border: 2px solid var(--primary-dark);
    background: linear-gradient(180deg, rgba(139, 92, 246, 0.03) 0%, var(--white) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    color: white;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 20px;
}

.price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price span {
    font-size: 0.9rem;
    font-weight: 500;
    background: none;
    -webkit-text-fill-color: var(--text-gray);
}

.free-trial-box {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    padding: 2.5rem;
    border-radius: 16px;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

.free-trial-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.free-trial-number {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #8B5CF6, #3B82F6, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.faq-item {
    background: var(--white);
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--primary-light);
}

.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: inherit;
}

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

.faq-icon {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

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

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

.faq-answer p {
    padding: 0 1.5rem 1.5rem;
    color: var(--text-gray);
}

.contact-card {
    background: white;
    padding: 1.25rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #8B5CF6, #06B6D4);
    border-radius: 12px 12px 0 0;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(139, 92, 246, 0.15);
}

.contact-icon {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

@media (max-width: 1100px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

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

    .hero-demo {
        display: flex;
        justify-content: center;
        padding-left: 0;
    }
}

@media (max-width: 900px) {
    .what-is-box {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .what-is-left {
        text-align: center;
    }

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

    .how-it-works-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .how-it-works-left {
        position: static;
        text-align: center;
    }

    .how-it-works-left h2::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .audience-grid {
        flex-direction: column;
        align-items: center;
        gap: 3rem;
    }

    .audience-item::after {
        display: none;
    }

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

    .process-features {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
    }

    .process-feature::after {
        display: none;
    }
}

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

@media (max-width: 768px) {
    header {
        padding: 0.75rem 1rem;
    }

    .header-content {
        flex-direction: row;
        position: relative;
    }

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

    .logo-text .logo-y {
        width: 28px;
        height: 28px;
        font-size: 0.9rem;
    }

    .mobile-menu-btn {
        display: block;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: -1rem;
        right: -1rem;
        background: var(--white);
        flex-direction: column;
        padding: 1rem;
        gap: 0.5rem;
        box-shadow: 0 4px 20px rgba(0,0,0,0.1);
        border-top: 1px solid #e2e8f0;
        z-index: 1000;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 0.75rem 1rem;
        border-radius: 8px;
        display: block;
    }

    .nav-link:hover {
        background: var(--bg-light);
    }

    .nav-cta {
        text-align: center;
        margin-top: 0.5rem;
        display: block;
    }

    .hero {
        padding: 6rem 1rem 3rem;
        min-height: auto;
    }

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

    .hero p {
        font-size: 1rem;
    }

    .hero-tagline {
        font-size: 1.1rem;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
        padding: 1rem 1.5rem;
    }

    .what-is {
        padding: 3rem 1rem;
    }

    .what-is-left h2 {
        font-size: 1.75rem;
    }

    .what-is-intro {
        font-size: 1rem;
    }

    .what-is-list li {
        font-size: 0.95rem;
    }

    .platform-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .how-it-works {
        padding: 3rem 1rem;
    }

    .how-it-works-left h2 {
        font-size: 1.75rem;
        white-space: normal;
    }

    .video-placeholder {
        padding: 2rem 1.5rem;
    }

    .features {
        padding: 3rem 1rem;
    }

    .features-left h2 {
        font-size: 1.75rem;
        margin-top: 0;
    }

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

    .feature-stat .stat-number {
        font-size: 2rem;
    }

    .timeline-content {
        padding: 1rem;
    }

    .timeline-text h3 {
        font-size: 0.95rem;
    }

    .timeline-text p {
        font-size: 0.85rem;
    }

    .for-who {
        padding: 3rem 1rem;
    }

    .section-header h2 {
        font-size: 1.75rem;
    }

    .testimonials {
        padding: 3rem 1rem;
    }

    .testimonials h2 {
        font-size: 1.5rem;
    }

    .testimonial-card {
        padding: 1.5rem;
    }

    .cta-section {
        padding: 2rem 1rem;
    }

    .cta-box {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }

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

    .cta-box h2 {
        font-size: 1.25rem;
    }

    .cta-box p {
        font-size: 0.95rem;
        white-space: normal;
    }

    .cta-ribbon {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
    }

    footer {
        padding: 2rem 1rem 1rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }

    .footer-brand {
        padding-right: 0;
    }

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

    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .page-header {
        padding-top: 5rem;
        text-align: center;
    }

    .page-header h1 {
        font-size: 1.75rem;
    }

    .page-header h1::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .page-header p {
        font-size: 1rem;
    }

    .pricing-card {
        padding: 1.5rem;
    }

    .price {
        font-size: 2rem;
    }

    .free-trial-box {
        padding: 1.5rem;
    }

    .free-trial-number {
        font-size: 3.5rem;
    }

    .faq-question {
        padding: 1rem;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 1rem 1rem;
        font-size: 0.95rem;
    }
}

@media (max-width: 520px) {
    .browser-content {
        flex-direction: column;
    }

    .browser-mockup {
        max-width: 100%;
    }

    .time-badge {
        right: -10px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}
