/* Mappstore Marketing Site - CSS */
/* Brand Colors: Blue/Purple theme matching logo */

:root {
    --primary: #5B6EE1;
    --primary-dark: #4A5BC7;
    --primary-light: #7B8BE8;
    --primary-lighter: #E8EBFF;
    --secondary: #1a1a2e;
    --accent: #25D366;
    --text-primary: #1a1a2e;
    --text-secondary: #5a5a7a;
    --text-light: #8888a4;
    --bg-white: #ffffff;
    --bg-light: #f8f9ff;
    --bg-dark: #1a1a2e;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px rgba(91, 110, 225, 0.05);
    --shadow-md: 0 4px 12px rgba(91, 110, 225, 0.1);
    --shadow-lg: 0 10px 40px rgba(91, 110, 225, 0.15);
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: all 0.3s ease;
}

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

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    width: 100%;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

@media (max-width: 768px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.25rem; }
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    gap: 8px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-white:hover {
    background: var(--primary-lighter);
}

.btn-outline-white {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100px;
}

.logo img {
    height: 144px;
    width: auto;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: var(--transition);
}

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

.nav-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.mobile-nav-right {
    display: none;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.mobile-cta-btn {
    display: inline-flex;
    align-items: center;
    background: var(--primary);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    white-space: nowrap;
    transition: var(--transition);
}

.mobile-cta-btn:hover {
    background: var(--primary-dark, #4a5bc0);
    color: #fff;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition);
}

@media (max-width: 1024px) {
    .nav-links, .nav-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }

    .mobile-nav-right {
        display: flex;
    }
    
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: white;
        padding: 24px;
        gap: 16px;
        border-bottom: 1px solid var(--border-color);
    }
}

/* Hero Section */
.hero {
    padding: 110px 0 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    overflow: hidden;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-carousel {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hero-slides {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
}

.hero-slide {
    display: none;
    padding-bottom: 16px;
    width: 100%;
}

.hero-slide.active {
    display: block;
    animation: heroFadeIn 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero-slide .container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.hero-badge-vibeflow {
    background: linear-gradient(135deg, #e8ebff 0%, #f0e6ff 100%);
    color: #7c3aed;
}

.hero-badge-mapps {
    background: linear-gradient(135deg, #dcfce7 0%, #e8ebff 100%);
    color: #059669;
}

.hero h1 {
    margin-bottom: 24px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.hero-title .title-accent {
    color: var(--primary);
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.75rem;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 20px;
    max-width: 540px;
}

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

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

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

.stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

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

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 340px;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Vibe Flow Animated Graphic */
.vibeflow-graphic {
    width: 100%;
    height: 340px;
}

.vf-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(91, 110, 225, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.vf-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #f8f9fc;
    border-bottom: 1px solid #eef0f6;
}

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

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

.vf-dot-red { background: #ff5f57; }
.vf-dot-yellow { background: #ffbd2e; }
.vf-dot-green { background: #28c840; }

.vf-title-bar {
    font-size: 0.8rem;
    font-weight: 600;
    color: #5B6EE1;
    letter-spacing: 0.02em;
}

.vf-prompt {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 16px;
    background: linear-gradient(135deg, #f0f1ff 0%, #f8f0ff 100%);
    border-bottom: 1px solid #eef0f6;
}

.vf-sparkle {
    width: 16px;
    height: 16px;
    color: #7c3aed;
    animation: vfPulse 1.5s ease-in-out infinite;
}

@keyframes vfPulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.85); }
}

.vf-prompt span {
    font-size: 0.85rem;
    font-weight: 600;
    color: #5B6EE1;
}

.vf-nodes-window {
    position: relative;
    flex: 1;
    overflow: hidden;
    padding: 0 16px;
}

.vf-fade-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(to bottom, #ffffff, transparent);
    z-index: 2;
}

.vf-fade-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 32px;
    background: linear-gradient(to top, #ffffff, transparent);
    z-index: 2;
}

.vf-nodes-scroll {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 12px 0;
    animation: vfScroll 8s linear infinite;
}

@keyframes vfScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.vf-node {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 8px;
    border: 1px solid #e8ebf4;
    background: #fafaff;
    font-size: 0.8rem;
    font-weight: 500;
    color: #4a5568;
    white-space: nowrap;
    transition: border-color 0.3s;
}

.vf-node:hover {
    border-color: #5B6EE1;
}

.vf-node-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #5B6EE1;
    opacity: 0.5;
    flex-shrink: 0;
}

.vf-progress-bar {
    height: 3px;
    background: #eef0f6;
    overflow: hidden;
}

.vf-progress-fill {
    height: 100%;
    width: 65%;
    background: linear-gradient(90deg, #5B6EE1, #7c3aed);
    border-radius: 3px;
    animation: vfProgress 3s ease-in-out infinite;
}

@keyframes vfProgress {
    0% { width: 15%; }
    50% { width: 75%; }
    100% { width: 15%; }
}

/* Mapps > Apps Animated Graphic */
.mapps-graphic {
    width: 100%;
    height: 340px;
}

.mapps-card {
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid rgba(91, 110, 225, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.mapps-header {
    display: flex;
    align-items: center;
    padding: 10px 16px;
    background: #075e54;
    border-bottom: 1px solid #064d44;
}

.mapps-header-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.mapps-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, #5B6EE1, #7c3aed);
    color: #fff;
    font-weight: 700;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapps-header-text {
    display: flex;
    flex-direction: column;
}

.mapps-biz-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.mapps-status {
    font-size: 0.65rem;
    color: rgba(255,255,255,0.7);
}

.mapps-body {
    display: flex;
    align-items: stretch;
    flex: 1;
    overflow: hidden;
}

.mapps-apps-side {
    flex: 0 0 38%;
    padding: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    background: #f9fafb;
    border-right: 1px solid #eef0f6;
}

.mapps-phone-label {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ef4444;
    margin-bottom: 10px;
    opacity: 0.8;
}

.mapps-label-new {
    color: #22c55e;
}

.mapps-app-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 6px;
    width: 100%;
}

.mapps-app-icon {
    border-radius: 14px;
    background: var(--bg, #eef0f6);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    padding: 8px 2px 4px;
    position: relative;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15), inset 0 1px 0 rgba(255,255,255,0.25);
}

.mapps-app-icon svg {
    width: 20px;
    height: 20px;
    opacity: 0.55;
    filter: grayscale(0.3);
}

.mapps-app-name {
    font-size: 0.5rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    line-height: 1;
}

.mapp-fade {
    animation: mappsIconFade 4s ease-in-out infinite;
    animation-delay: var(--delay, 0s);
}

@keyframes mappsIconFade {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.35; transform: scale(0.92); }
}

.mapps-strike {
    position: absolute;
    inset: 30px 12px 12px;
    pointer-events: none;
    animation: mappsStrikeIn 2s ease-in-out infinite;
}

.mapps-strike svg {
    width: 100%;
    height: 100%;
}

@keyframes mappsStrikeIn {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.mapps-arrow-col {
    flex: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mapps-arrow-container {
    width: 40px;
    height: 80px;
}

.mapps-arrow-svg {
    width: 100%;
    height: 100%;
}

.mapps-arrow-line {
    stroke-dasharray: 24;
    stroke-dashoffset: 24;
    animation: mappsArrowDraw 2s ease-in-out infinite;
}

.mapps-arrow-head {
    opacity: 0;
    animation: mappsArrowHeadIn 2s ease-in-out infinite;
}

@keyframes mappsArrowDraw {
    0% { stroke-dashoffset: 24; }
    40%, 100% { stroke-dashoffset: 0; }
}

@keyframes mappsArrowHeadIn {
    0%, 35% { opacity: 0; }
    50%, 100% { opacity: 1; }
}

.mapps-chat-side {
    flex: 1;
    padding: 12px;
    display: flex;
    flex-direction: column;
    background: #efeae2;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23d5cfbf' fill-opacity='0.2'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.mapps-chat-window {
    flex: 1;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.mapps-chat-scroll {
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: mappsChatScroll 10s linear infinite;
}

@keyframes mappsChatScroll {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.mapps-msg {
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.7rem;
    line-height: 1.4;
    max-width: 95%;
    position: relative;
}

.mapps-msg-in {
    background: #ffffff;
    color: #1a1a1a;
    align-self: flex-start;
    border-top-left-radius: 2px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}

.mapps-msg-out {
    background: #d9fdd3;
    color: #1a1a1a;
    align-self: flex-end;
    border-top-right-radius: 2px;
    box-shadow: 0 1px 1px rgba(0,0,0,0.06);
}

.mapps-msg-a1 { animation: mappsMsgIn 10s ease infinite; animation-delay: 0s; }
.mapps-msg-a2 { animation: mappsMsgIn 10s ease infinite; animation-delay: 0.5s; }
.mapps-msg-a3 { animation: mappsMsgIn 10s ease infinite; animation-delay: 1s; }
.mapps-msg-a4 { animation: mappsMsgIn 10s ease infinite; animation-delay: 1.5s; }
.mapps-msg-a5 { animation: mappsMsgIn 10s ease infinite; animation-delay: 2s; }

@keyframes mappsMsgIn {
    0%, 5% { opacity: 0.6; }
    10%, 90% { opacity: 1; }
    95%, 100% { opacity: 0.6; }
}

.mapps-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 6px;
}

.mapps-btn-opt {
    padding: 3px 8px;
    border-radius: 100px;
    font-size: 0.6rem;
    font-weight: 600;
    background: rgba(91, 110, 225, 0.1);
    color: #5B6EE1;
    border: 1px solid rgba(91, 110, 225, 0.2);
}

.mapps-order-card {
    margin-top: 6px;
    padding: 6px 8px;
    background: #f0fdf4;
    border-radius: 6px;
    border: 1px solid #bbf7d0;
}

.mapps-order-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.6rem;
    color: #4a5568;
    padding: 2px 0;
}

.mapps-order-total {
    font-weight: 700;
    color: #166534;
    border-top: 1px solid #bbf7d0;
    margin-top: 2px;
    padding-top: 4px;
}

.mapps-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 16px;
    background: #f8f9fc;
    border-top: 1px solid #eef0f6;
}

.mapps-footer-text {
    font-size: 0.65rem;
    font-weight: 600;
    color: #5B6EE1;
    letter-spacing: 0.02em;
}

.mapps-footer-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #5B6EE1;
    opacity: 0.4;
}

@media (max-width: 968px) {
    .mapps-body {
        min-height: auto;
    }
    .mapps-app-icon {
        padding: 4px 1px 2px;
        border-radius: 8px;
        gap: 1px;
    }
    .mapps-app-icon svg {
        width: 12px;
        height: 12px;
    }
    .mapps-app-name {
        font-size: 0.35rem;
    }
    .mapps-app-grid {
        gap: 3px;
    }
    .mapps-arrow-col {
        flex: 0 0 20px;
    }
    .mapps-header {
        padding: 6px 10px;
    }
    .mapps-avatar {
        width: 22px;
        height: 22px;
        font-size: 0.65rem;
    }
    .mapps-biz-name {
        font-size: 0.7rem;
    }
    .mapps-status {
        font-size: 0.55rem;
    }
    .mapps-apps-side {
        padding: 6px;
    }
    .mapps-chat-side {
        padding: 6px;
    }
    .mapps-phone-label {
        font-size: 0.5rem;
        margin-bottom: 4px;
    }
    .mapps-msg {
        font-size: 0.55rem;
        padding: 4px 6px;
        max-width: 95%;
    }
    .mapps-btn-opt {
        font-size: 0.5rem;
        padding: 2px 5px;
    }
    .mapps-order-card {
        font-size: 0.5rem;
    }
    .mapps-footer {
        padding: 4px 8px;
        font-size: 0.5rem;
    }
    .mapps-strike svg line {
        stroke-width: 4;
    }
}

/* Hero Carousel Indicators */
.hero-indicators {
    display: flex;
    justify-content: center;
    gap: 4px;
    padding: 0;
}

.hero-indicator {
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: rgba(91, 110, 225, 0.15);
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
    display: none;
}

.hero-indicator:hover {
    background: rgba(91, 110, 225, 0.3);
}

.hero-indicator .indicator-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--primary);
    border-radius: 2px;
    transition: none;
}

.hero-indicator.active .indicator-progress {
    animation: indicatorFill 9s linear forwards;
}

@keyframes indicatorFill {
    from { width: 0; }
    to { width: 100%; }
}

/* Hero Slide Labels */
.hero-slide-labels {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 16px 0 12px;
}

.slide-label {
    background: none;
    border: none;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    cursor: pointer;
    padding: 8px 16px 6px;
    border-radius: 100px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
}

.slide-label::before {
    content: '';
    display: block;
    width: 48px;
    height: 4px;
    border-radius: 2px;
    background: rgba(91, 110, 225, 0.15);
    transition: background 0.3s ease;
}

.slide-label .label-progress {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 4px;
    border-radius: 2px;
    overflow: hidden;
}

.slide-label .label-progress-fill {
    width: 0;
    height: 100%;
    background: var(--primary);
    border-radius: 2px;
}

.slide-label.active .label-progress-fill {
    animation: indicatorFill 9s linear forwards;
}

.slide-label.active::before {
    background: transparent;
}

.slide-label:hover {
    color: var(--primary);
}

.slide-label.active {
    color: var(--primary);
    background: var(--primary-lighter);
}

@media (max-width: 968px) {
    .hero {
        padding: 70px 0 0;
        min-height: auto;
        height: auto;
        max-height: none;
        overflow: hidden;
        justify-content: flex-start;
    }

    .hero-carousel {
        flex: 1;
        min-height: 0;
        justify-content: space-between;
    }

    .hero-slides {
        flex: 1;
        min-height: 0;
    }
    
    .hero-slide .container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 6px;
        padding-top: 4px;
        padding-bottom: 0;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-slide {
        padding-bottom: 0;
    }

    .hero-badge {
        font-size: 0.65rem;
        padding: 4px 10px;
        margin-bottom: 4px;
    }

    .hero-title {
        font-size: 1.8rem;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        margin: 0 auto 8px;
        line-height: 1.35;
    }
    
    .hero-buttons {
        justify-content: center;
        margin-bottom: 6px;
        gap: 8px;
    }

    .hero-buttons .btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
    
    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 6px 20px;
        margin-bottom: 0;
    }

    .hero-stats .stat-number {
        font-size: 1rem;
    }

    .hero-stats .stat-label {
        font-size: 0.6rem;
    }
    
    .hero-image {
        max-width: 100%;
        margin: 0 auto;
        padding: 0;
        flex: 1;
        min-height: 0;
        max-height: 180px;
    }
    
    .hero-image img {
        max-width: 100%;
        height: 100%;
    }

    .vibeflow-graphic,
    .mapps-graphic {
        height: 100%;
        max-height: 180px;
        overflow: hidden;
        border-radius: var(--radius-lg);
    }

    .mapps-card,
    .vf-card {
        overflow: hidden;
    }

    .hero-indicator {
        width: 36px;
    }

    .slide-label {
        font-size: 0.7rem;
        padding: 6px 10px 4px;
    }

    .slide-label::before,
    .slide-label .label-progress {
        width: 36px;
    }
}

/* Trust Section */
.trust-section {
    padding: 40px 0;
    border-bottom: 1px solid var(--border-color);
}

.trust-section .container {
    text-align: center;
}

.trust-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trust-badges {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.badge-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
}

.badge-item svg {
    width: 24px;
    height: 24px;
    color: var(--primary);
}

/* Integrations Section */
.integrations-section {
    padding: 48px 0;
    background: var(--bg-light);
}

.integrations-text {
    font-size: 0.875rem;
    color: var(--text-light);
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 16px 24px;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    min-width: 100px;
}

.integration-item:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.integration-item svg {
    width: 36px;
    height: 36px;
    color: var(--primary);
}

.integration-logo {
    height: 36px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .integrations-grid {
        gap: 20px;
    }
    
    .integration-item {
        padding: 12px 16px;
        min-width: 80px;
    }
    
    .integration-item svg {
        width: 28px;
        height: 28px;
    }
    
    .integration-logo {
        height: 30px;
        max-width: 90px;
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

.section-badge {
    display: inline-block;
    padding: 6px 14px;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}

/* Features Section */
.features-section {
    padding: 100px 0;
}

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

.feature-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-lighter);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary);
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.feature-screenshot {
    width: 100%;
    height: 200px;
    object-fit: cover;
    object-position: top left;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-color);
    margin-top: auto;
}

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

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

/* Chatbot Demo Section */
.chatbot-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.chatbot-text h2 {
    margin-bottom: 20px;
}

.chatbot-text > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

.chatbot-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    font-weight: 500;
}

.chatbot-features svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
    flex-shrink: 0;
}

.video-container {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.video-container video {
    width: 100%;
    display: block;
}

.video-caption {
    text-align: center;
    margin-top: 16px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .chatbot-content {
        grid-template-columns: 1fr;
    }
    
    .chatbot-video {
        order: -1;
    }
}

/* Use Cases Section */
.use-cases-section {
    padding: 100px 0;
}

.use-cases-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 24px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
}

.tab-btn:hover {
    border-color: var(--primary-light);
    color: var(--primary);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.use-case {
    display: none;
    grid-template-columns: 1fr 400px;
    gap: 60px;
    align-items: center;
}

.use-case.active {
    display: grid;
}

.use-case-info h3 {
    font-size: 1.75rem;
    margin-bottom: 16px;
}

.use-case-info > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 32px;
}

.use-case-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.uc-feature {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.uc-feature strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.uc-feature span {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Phone Mockup */
.phone-mockup {
    background: #1f1f1f;
    border-radius: 40px;
    padding: 12px;
    box-shadow: var(--shadow-lg);
}

.phone-screen {
    background: #0b141a;
    border-radius: 32px;
    overflow: hidden;
    min-height: 500px;
}

.wa-header {
    background: #1f2c34;
    padding: 16px 20px;
    color: white;
    font-weight: 600;
}

.wa-messages {
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.wa-msg {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.wa-msg.received {
    background: #1f2c34;
    color: white;
    align-self: flex-start;
    border-bottom-left-radius: 0;
}

.wa-msg.sent {
    background: #005c4b;
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 0;
}

.wa-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 80%;
}

.wa-buttons button {
    background: transparent;
    border: 1px solid #00a884;
    color: #00a884;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.85rem;
    cursor: pointer;
}

@media (max-width: 968px) {
    .use-case {
        grid-template-columns: 1fr;
    }
    
    .use-case-visual {
        max-width: 360px;
        margin: 0 auto;
    }
    
    .use-case-features {
        grid-template-columns: 1fr;
    }
}

/* Reseller Section */
.reseller-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.reseller-info h2 {
    margin-bottom: 20px;
}

.reseller-info > p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.reseller-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

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

.benefit-icon {
    width: 32px;
    height: 32px;
    background: var(--primary-lighter);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    width: 18px;
    height: 18px;
    color: var(--primary);
}

.benefit-text strong {
    display: block;
    margin-bottom: 4px;
}

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

.reseller-visual img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

@media (max-width: 968px) {
    .reseller-content {
        grid-template-columns: 1fr;
    }
    
    .reseller-visual {
        order: -1;
    }
}

/* Pricing Section */
.pricing-section {
    padding: 100px 0;
}

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

.pricing-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

.reseller-badge {
    background: linear-gradient(135deg, #10b981, #059669) !important;
}

.pricing-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.pricing-card:hover {
    box-shadow: var(--shadow-md);
}

.pricing-card.featured {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: white;
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-header h3 {
    margin-bottom: 8px;
}

.pricing-header p {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.pricing-price {
    padding: 32px 0;
}

.pricing-price .currency {
    font-size: 1.25rem;
    font-weight: 600;
    vertical-align: top;
}

.pricing-price .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
}

.pricing-price .period {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.95rem;
    color: var(--text-secondary);
}

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

@media (max-width: 968px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
}

/* Webinar Section */
.webinar-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

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

.webinar-info {
    color: white;
}

.webinar-info .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.webinar-info h2 {
    margin-bottom: 20px;
}

.webinar-info > p {
    opacity: 0.9;
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

.highlight {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.highlight svg {
    width: 20px;
    height: 20px;
    color: var(--accent);
}

.webinar-form {
    background: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-lg);
}

.webinar-form h3 {
    margin-bottom: 24px;
    text-align: center;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--text-primary);
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: var(--transition);
    background-color: white;
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%235B6EE1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
    padding-right: 40px;
    cursor: pointer;
}

.form-group select option {
    padding: 12px 16px;
    background-color: white;
    color: var(--text-primary);
}

.form-group select option:first-child {
    color: var(--text-secondary);
}

.form-group select option:checked,
.form-group select option:hover {
    background-color: var(--primary-lighter);
    color: var(--primary);
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-lighter);
}

.form-note {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 16px;
}

@media (max-width: 968px) {
    .webinar-content {
        grid-template-columns: 1fr;
    }
    
    .webinar-highlights {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-sm);
}

.testimonial-content p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 24px;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--primary-lighter);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

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

.author-info strong {
    display: block;
    margin-bottom: 4px;
}

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

@media (max-width: 968px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: var(--bg-dark);
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    margin-bottom: 32px;
}

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

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.footer-brand img {
    height: 40px;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 16px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
}

.social-links svg {
    width: 18px;
    height: 18px;
    fill: white;
}

.footer-links h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: white;
}

.footer-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

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

@media (max-width: 968px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-brand {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-brand {
        grid-column: span 1;
    }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: var(--bg-dark);
    color: white;
    padding: 16px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    transition: var(--transition);
    z-index: 10000;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-icon {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.faq-item {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
}

.faq-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 60px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .faq-item {
        padding: 20px;
    }
    
    .faq-item h3 {
        font-size: 1rem;
    }
}

/* VibeFlow Section */
.vibeflow-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f5ff 0%, var(--bg-white) 100%);
    position: relative;
    overflow: hidden;
}

.vibeflow-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(91, 110, 225, 0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.vibeflow-showcase {
    margin-top: 48px;
}

.vibeflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 60px;
}

.vf-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.vf-step-number {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, #7c4dff 100%);
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vf-step-content h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
}

.vf-step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.vibeflow-capabilities {
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.vf-cap-row {
    display: flex;
    gap: 12px;
}

.vf-cap-item {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: white;
    border-radius: 14px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    cursor: default;
}

.vf-cap-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    border-color: transparent;
}

.vf-cap-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.vf-cap-text strong {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.vf-cap-text span {
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.3;
}

@media (max-width: 968px) {
    .vibeflow-steps {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .vf-cap-row {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .vibeflow-capabilities {
        gap: 8px;
    }

    .vibeflow-section {
        padding: 60px 0;
    }
}
