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

:root {
    --bg-primary: #fafafa;
    --bg-secondary: #ffffff;
    --bg-tertiary: #f4f4f5;
    --bg-card: rgba(255,255,255,0.8);
    --bg-card-hover: rgba(255,255,255,1);
    --border: rgba(0,0,0,0.06);
    --border-strong: rgba(0,0,0,0.1);
    --text-primary: #09090b;
    --text-secondary: #52525b;
    --text-muted: #a1a1aa;
    --accent: #B800FF;
    --accent-light: #D966FF;
    --accent-dark: #8800BB;
    --accent-glow: rgba(184, 0, 255, 0.25);
    --gradient-primary: linear-gradient(135deg, #B800FF 0%, #D966FF 100%);
    --gradient-hero: linear-gradient(135deg, #B800FF 0%, #db2777 50%, #f59e0b 100%);
    --gradient-mesh: radial-gradient(at 40% 20%, rgba(184, 0, 255, 0.15) 0px, transparent 50%),
                    radial-gradient(at 80% 0%, rgba(217, 102, 255, 0.1) 0px, transparent 50%),
                    radial-gradient(at 0% 50%, rgba(219, 39, 119, 0.1) 0px, transparent 50%);
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.05);
    --shadow-lg: 0 20px 40px rgba(0,0,0,0.08);
    --shadow-glow: 0 0 60px var(--accent-glow);
}

@media (prefers-color-scheme: dark) {
    :root {
        --bg-primary: #09090b;
        --bg-secondary: #18181b;
        --bg-tertiary: #27272a;
        --bg-card: rgba(39,39,42,0.6);
        --bg-card-hover: rgba(39,39,42,0.9);
        --border: rgba(255,255,255,0.06);
        --border-strong: rgba(255,255,255,0.1);
        --text-primary: #fafafa;
        --text-secondary: #a1a1aa;
        --text-muted: #71717a;
        --accent: #D966FF;
        --accent-light: #E899FF;
        --accent-dark: #B800FF;
        --accent-glow: rgba(217, 102, 255, 0.3);
        --gradient-mesh: radial-gradient(at 40% 20%, rgba(184, 0, 255, 0.2) 0px, transparent 50%),
                        radial-gradient(at 80% 0%, rgba(217, 102, 255, 0.15) 0px, transparent 50%),
                        radial-gradient(at 0% 50%, rgba(219, 39, 119, 0.12) 0px, transparent 50%);
        --shadow-sm: 0 1px 2px rgba(0,0,0,0.2);
        --shadow-md: 0 4px 12px rgba(0,0,0,0.3);
        --shadow-lg: 0 20px 40px rgba(0,0,0,0.4);
    }
}

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav.scrolled {
    padding: 12px 0;
    background: var(--bg-secondary);
    border-bottom: 1px solid var(--border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

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

.logo {
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: -0.5px;
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px var(--accent-glow);
}

.logo-text span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    border-radius: 8px;
    transition: all 0.2s;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gradient-primary);
    color: #fff;
    box-shadow: 0 4px 16px var(--accent-glow);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px var(--accent-glow);
}

.btn-secondary {
    background: var(--bg-card);
    color: var(--text-primary);
    border: 1px solid var(--border-strong);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.btn-ghost {
    background: transparent;
    color: var(--text-secondary);
    padding: 10px 16px;
}

.btn-ghost:hover {
    color: var(--text-primary);
    background: var(--bg-tertiary);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

/* ═══════════════════════════════════════════════════════════════
   MOBILE MENU
═══════════════════════════════════════════════════════════════ */

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    cursor: pointer;
    padding: 12px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
}

.mobile-menu-btn span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 380px;
    height: 100vh;
    background: var(--bg-secondary);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -10px 0 40px rgba(0,0,0,0.2);
}

.mobile-menu.open {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border);
}

.mobile-menu-close {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-tertiary);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    color: var(--text-primary);
    transition: all 0.2s;
}

.mobile-menu-close:hover {
    background: var(--accent);
    color: #fff;
}

.mobile-menu-nav {
    flex: 1;
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.mobile-menu-link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    background: var(--bg-card-hover);
    border-color: var(--accent);
    transform: translateX(4px);
}

.mobile-menu-icon {
    font-size: 20px;
}

.mobile-menu-footer {
    padding: 24px;
    border-top: 1px solid var(--border);
    background: var(--bg-tertiary);
}

.mobile-menu-contact {
    margin-top: 16px;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}

.mobile-menu-contact a {
    color: var(--accent);
    font-weight: 600;
}

.mobile-menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}

.mobile-menu-overlay.open {
    opacity: 1;
    visibility: visible;
}

@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
	.nomobile { display:none;}
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════ */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 140px 0 100px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--gradient-mesh);
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--border) 1px, transparent 1px),
        linear-gradient(90deg, var(--border) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 50% at 50% 0%, black 70%, transparent 100%);
    opacity: 0.5;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 20s ease-in-out infinite;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--accent);
    opacity: 0.15;
    top: -200px;
    right: -100px;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: #2563eb;
    opacity: 0.1;
    bottom: -100px;
    left: -100px;
    animation-delay: -10s;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: #db2777;
    opacity: 0.08;
    top: 40%;
    left: 60%;
    animation-delay: -5s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 10px;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    margin-bottom: 28px;
    backdrop-filter: blur(10px);
}

.hero-badge-icon {
    width: 24px;
    height: 24px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-badge-icon svg {
    width: 14px;
    height: 14px;
}

.hero-title {
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.hero-title-gradient {
    background: var(--gradient-hero);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 48px;
}

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

.hero-stat-value {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -1px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero Demo */
.hero-demo {
    position: relative;
}

.demo-window {
    background: var(--bg-secondary);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    box-shadow: var(--shadow-lg), var(--shadow-glow);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.demo-window:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.demo-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px;
    background: var(--bg-tertiary);
    border-bottom: 1px solid var(--border);
}

.demo-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

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

.demo-title {
    flex: 1;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.demo-content {
    padding: 24px;
    min-height: 400px;
    max-height: 400px;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
    scroll-behavior: smooth;
}

.demo-content::-webkit-scrollbar {
    width: 6px;
}

.demo-content::-webkit-scrollbar-track {
    background: transparent;
}

.demo-content::-webkit-scrollbar-thumb {
    background: var(--border-strong);
    border-radius: 3px;
}

.demo-message {
    max-width: 85%;
    padding: 14px 18px;
    border-radius: 16px;
    font-size: 14px;
    line-height: 1.5;
}

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

.demo-message-bot {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}

.demo-message-user {
    background: var(--gradient-primary);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.demo-typing {
    display: flex;
    gap: 4px;
    padding: 14px 18px;
    background: var(--bg-tertiary);
    border-radius: 16px;
    width: fit-content;
}

/* Demo Lead Form */
.demo-lead-form {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 16px;
    max-width: 85%;
    animation: messageIn 0.5s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.demo-lead-form-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.demo-lead-form-field {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
    font-size: 12px;
    color: var(--text-muted);
}

.demo-lead-form-btn {
    width: 100%;
    padding: 10px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 8px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    margin-top: 4px;
}

/* Demo Maps Link */
.demo-maps-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: linear-gradient(135deg, #4285f4 0%, #34a853 100%);
    border-radius: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
    text-decoration: none;
}

.demo-maps-link svg {
    width: 16px;
    height: 16px;
}

/* Demo Menu Card (Lounasravintola) */
.demo-menu-card {
    background: var(--bg-tertiary);
    border-radius: 16px;
    padding: 16px;
    max-width: 90%;
}

.demo-menu-title {
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.demo-menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--bg-secondary);
    border-radius: 8px;
    margin-bottom: 6px;
}

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

.demo-menu-item-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-menu-item-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.demo-menu-item-tags {
    font-size: 11px;
    color: var(--accent);
    font-weight: 500;
}

.demo-menu-item-price {
    font-size: 13px;
    font-weight: 700;
    color: var(--text-primary);
}

/* Demo Products Card (Kukkakauppa) */
.demo-products-card {
    display: flex;
    flex-direction: column;
    gap: 8px;
    max-width: 90%;
}

.demo-product-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--bg-tertiary);
    border-radius: 12px;
    border-left: 3px solid var(--accent);
}

.demo-product-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.demo-product-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
}

.demo-product-desc {
    font-size: 11px;
    color: var(--text-muted);
}

.demo-product-price {
    font-size: 14px;
    font-weight: 700;
    color: var(--accent);
}

.demo-typing-dot {
    width: 8px;
    height: 8px;
    background: var(--text-muted);
    border-radius: 50%;
    animation: typingBounce 1.4s ease-in-out infinite;
}

.demo-typing-dot:nth-child(2) { animation-delay: 0.2s; }
.demo-typing-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingBounce {
    0%, 60%, 100% { transform: translateY(0); }
    30% { transform: translateY(-4px); }
}

.demo-input {
    display: flex;
    gap: 12px;
    padding: 16px;
    border-top: 1px solid var(--border);
    background: var(--bg-tertiary);
}

.demo-input-field {
    flex: 1;
    padding: 12px 16px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

.demo-input-btn {
    width: 44px;
    height: 44px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Floating elements */
.hero-float {
    position: absolute;
    background: var(--bg-card);
    border: 1px solid var(--border-strong);
    border-radius: 12px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    backdrop-filter: blur(10px);
    animation: floatBadge 6s ease-in-out infinite;
}

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

.hero-float-1 {
    top: 20%;
    right: -40px;
    animation-delay: 0s;
}

.hero-float-2 {
    bottom: 25%;
    right: 10%;
    animation-delay: -2s;
}

.hero-float-3 {
    top: 60%;
    left: -20px;
    animation-delay: -4s;
}

.hero-float-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
}

.hero-float-icon.green { background: rgba(34, 197, 94, 0.15); }
.hero-float-icon.blue { background: rgba(59, 130, 246, 0.15); }
.hero-float-icon.purple { background: rgba(124, 58, 237, 0.15); }

/* ═══════════════════════════════════════════════════════════════
   LOGOS / SOCIAL PROOF
═══════════════════════════════════════════════════════════════ */

.logos {
    padding: 80px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-secondary);
}

.logos-title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.logos-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 60px;
    flex-wrap: wrap;
    opacity: 0.6;
}

.logo-item {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: -0.5px;
}

/* ═══════════════════════════════════════════════════════════════
   FEATURES SECTION
═══════════════════════════════════════════════════════════════ */

.features {
    padding: 140px 0;
    position: relative;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 80px;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: var(--accent-glow);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 20px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
}

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

.feature-card {
    position: relative;
    padding: 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    background: var(--bg-card-hover);
    border-color: var(--border-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

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

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--bg-tertiary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.feature-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    margin-top: 16px;
    padding: 4px 10px;
    background: var(--accent-glow);
    color: var(--accent);
    font-size: 11px;
    font-weight: 600;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ═══════════════════════════════════════════════════════════════
   INTEGRATIONS
═══════════════════════════════════════════════════════════════ */

.integrations {
    padding: 140px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.integrations-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.integrations-text {
    max-width: 500px;
}

.integrations-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all 0.3s;
}

.integration-item:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
}

.integration-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
}

.integration-icon.whatsapp { background: rgba(37, 211, 102, 0.15); }
.integration-icon.messenger { background: rgba(0, 132, 255, 0.15); }
.integration-icon.instagram { background: rgba(225, 48, 108, 0.15); }
.integration-icon.email { background: rgba(234, 179, 8, 0.15); }

.integration-info h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 2px;
}

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

.integrations-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.integrations-hub {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-glow);
    position: relative;
    z-index: 2;
}

.integrations-hub svg {
    width: 48px;
    height: 48px;
    color: #fff;
}

.integration-orbit {
    position: absolute;
    width: 320px;
    height: 320px;
    border: 1px dashed var(--border-strong);
    border-radius: 50%;
    animation: spin 30s linear infinite;
}

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

.orbit-item {
    position: absolute;
    width: 56px;
    height: 56px;
    background: var(--bg-secondary);
    border: 1px solid var(--border-strong);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    box-shadow: var(--shadow-md);
    animation: counterSpin 30s linear infinite;
}

@keyframes counterSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(-360deg); }
}

.orbit-item:nth-child(1) { top: -28px; left: 50%; margin-left: -28px; }
.orbit-item:nth-child(2) { right: -28px; top: 50%; margin-top: -28px; }
.orbit-item:nth-child(3) { bottom: -28px; left: 50%; margin-left: -28px; }
.orbit-item:nth-child(4) { left: -28px; top: 50%; margin-top: -28px; }

/* ═══════════════════════════════════════════════════════════════
   HOW IT WORKS
═══════════════════════════════════════════════════════════════ */

.how-it-works {
    padding: 140px 0;
}

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

.steps::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 50%, #2563eb 100%);
    opacity: 0.3;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background: var(--bg-secondary);
    border: 2px solid var(--border-strong);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.step-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.step-description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 280px;
    margin: 0 auto;
}

/* ═══════════════════════════════════════════════════════════════
   ANALYTICS PREVIEW
═══════════════════════════════════════════════════════════════ */

.analytics-section {
    padding: 140px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.analytics-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: center;
}

.analytics-preview {
    background: var(--bg-primary);
    border: 1px solid var(--border-strong);
    border-radius: 20px;
    padding: 32px;
    box-shadow: var(--shadow-lg);
}

.analytics-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 32px;
}

.analytics-header h4 {
    font-size: 16px;
    font-weight: 600;
}

.analytics-period {
    padding: 6px 12px;
    background: var(--bg-tertiary);
    border-radius: 6px;
    font-size: 12px;
    color: var(--text-muted);
}

.analytics-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.analytics-stat {
    text-align: center;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.analytics-stat-value {
    font-size: 28px;
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 4px;
}

.analytics-stat-value.up { color: #22c55e; }
.analytics-stat-value.accent { color: var(--accent); }

.analytics-stat-label {
    font-size: 12px;
    color: var(--text-muted);
}

.analytics-chart {
    height: 180px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 8px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: 12px;
}

.chart-bar {
    flex: 1;
    background: var(--gradient-primary);
    border-radius: 4px 4px 0 0;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.chart-bar:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   PRICING
═══════════════════════════════════════════════════════════════ */

.pricing {
    padding: 140px 0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1100px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    padding: 40px 36px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 24px;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: var(--border-strong);
    box-shadow: var(--shadow-lg);
}

.pricing-card.featured {
    background: var(--gradient-primary);
    border: none;
    transform: scale(1.05);
}

.pricing-card.featured * {
    color: #fff;
}

.pricing-card.featured .pricing-feature::before {
    color: #fff;
}

.pricing-popular {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 6px 16px;
    background: #fff;
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pricing-name {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
}

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

.pricing-card.featured .pricing-description {
    color: rgba(255,255,255,0.8);
}

.pricing-price {
    margin-bottom: 32px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: 800;
    letter-spacing: -2px;
}

.pricing-period {
    font-size: 16px;
    color: var(--text-muted);
}

.pricing-card.featured .pricing-period {
    color: rgba(255,255,255,0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
}

.pricing-card.featured .pricing-feature {
    color: rgba(255,255,255,0.9);
}

.pricing-feature::before {
    content: '✓';
    color: var(--accent);
    font-weight: 700;
}

.pricing-card .btn {
    width: 100%;
}

.pricing-card.featured .btn-primary {
    background: #fff;
    color: var(--accent);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════════════
   FAQ
═══════════════════════════════════════════════════════════════ */

.faq {
    padding: 140px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    padding: 28px 32px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 16px;
    transition: all 0.3s;
}

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

.faq-question {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════════════════════
   CTA
═══════════════════════════════════════════════════════════════ */

.cta {
    padding: 140px 0;
}

.cta-box {
    position: relative;
    padding: 80px;
    background: var(--gradient-primary);
    border-radius: 32px;
    text-align: center;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    color: #fff;
    letter-spacing: -1.5px;
    margin-bottom: 16px;
}

.cta-description {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta .btn-secondary {
    background: rgba(255,255,255,0.15);
    color: #fff;
    border-color: rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.cta .btn-secondary:hover {
    background: rgba(255,255,255,0.25);
    border-color: rgba(255,255,255,0.5);
}

.cta .btn-primary {
    background: #fff;
    color: var(--accent);
}

.cta .btn-primary:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */

.footer {
    padding: 60px 0 40px;
    border-top: 1px solid var(--border);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
}

.footer-links {
    display: flex;
    gap: 32px;
}

.footer-link {
    font-size: 14px;
    color: var(--text-muted);
    transition: color 0.2s;
}

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

.footer-bottom {
    margin-top: 40px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
    text-align: center;
}

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

.footer-copyright a {
    color: var(--accent);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-demo {
        margin-top: 48px;
    }
    
    .demo-window {
        transform: none;
    }
    
    .demo-window:hover {
        transform: none;
    }
    
    .hero-float {
        display: none;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .integrations-content,
    .analytics-content {
        grid-template-columns: 1fr;
    }
    
    .integrations-visual {
        order: -1;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 768px) {
    .nav-link {
        display: none;
    }
    
    .hero {
        padding: 120px 0 80px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .demo-content {
        min-height: 320px;
        max-height: 320px;
    }
    
    .demo-message {
        font-size: 13px;
        padding: 12px 14px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .steps::before {
        display: none;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .analytics-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-box {
        padding: 48px 24px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 24px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}