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

:root {
    --black: #000000;
    --dark: #0A0E1A;
    --dark2: #111827;
    --green: #2ac21a;
    --dark3: #1F2937;
    --gray: #6B7280;
    --gray-light: #9CA3AF;
    --light: #F9FAFB;
    --white: #ffffff;
    --border: rgba(255, 255, 255, 0.08);
    --border2: #E5E7EB;
    --radius: 16px;
    --radius-sm: 10px;
    --font: 'Plus Jakarta Sans', sans-serif;
    --font2: 'Manrope', sans-serif;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --s: 70px;
    /* control the size*/
    --c1: #ffffff;
    --c2: #f6fff0;
    --_c: 5%, #0000 75%, var(--c1) 0;
    --_g: /var(--s) var(--s) conic-gradient(at var(--_c));
    --_l: /var(--s) var(--s) conic-gradient(at 50% var(--_c));
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    background: var(--white);
    color: var(--black);
    overflow-x: hidden;
}

.btn-primary {
    width: 210px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: rgb(131 255 203);
    border-radius: 30px;
    color: rgb(0 0 0);
    font-weight: 600;
    font-size: 18px;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
    padding-left: 16px;
    transition-duration: .5s;
    text-decoration: none;
}

.btn-primary:hover {
    background-color: rgb(233 225 255);
    color: #000;
    transition-duration: .5s;
}

.btn-primary:active {
    transform: scale(0.97);
    transition-duration: .2s;
}

.btn-primary:hover .svgIcon {
    transform: rotate(250deg);
    transition-duration: 1.5s;
}

/* ===== HERO SECTION ===== */
.hero {
    background: repeating-linear-gradient(0deg, rgb(118 220 173) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(117 211 168) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 20%, #95ffce 60%, #f0f0f0 100%)
}


.hero-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 100px 0px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 620px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: clamp(36px, 4.5vw, 60px);
    font-weight: 800;
    line-height: 1.1;
    color: var(--black);
    letter-spacing: -1.5px;
    margin-bottom: 24px;
    font-family: var(--font);
}

.hero p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 36px;
    font-weight: 400;
}

.button {
    width: 200px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: rgb(131 255 203);
    border-radius: 30px;
    color: rgb(0 0 0);
    font-weight: 600;
    font-size: 18px;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
    padding-left: 16px;
    transition-duration: .5s;
}

.svgIcon {
    height: 30px;
    transition-duration: 1.5s;
}

.bell path {
    fill: rgb(19, 19, 19);
}

.button:hover {
    background-color: rgb(233 225 255);
    transition-duration: .5s;
}

.button:active {
    transform: scale(0.97);
    transition-duration: .2s;
}

.button:hover .svgIcon {
    transform: rotate(250deg);
    transition-duration: 1.5s;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 520px;
    display: flex;
    justify-content: center;
}

.hero-phone-mockup {
    width: 320px;
    height: 480px;
    background: linear-gradient(145deg, #1a2236, #0f1625);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255, 255, 255, 0.05);
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
}

.phone-header {
    background: rgba(37, 99, 235, 0.15);
    border-bottom: 1px solid rgba(37, 99, 235, 0.2);
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.phone-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--black), #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: white;
}

.phone-header-text {
    flex: 1;
}

.phone-header-text strong {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: white;
}

.phone-header-text span {
    font-size: 11px;
    color: #10B981;
    font-weight: 500;
}

.phone-body {
    flex: 1;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.chat-bubble {
    max-width: 80%;
    padding: 10px 14px;
    border-radius: 14px;
    font-size: 12px;
    line-height: 1.5;
    font-weight: 500;
}

.chat-bubble.ai {
    background: rgba(37, 99, 235, 0.2);
    border: 1px solid rgba(37, 99, 235, 0.25);
    color: rgba(255, 255, 255, 0.85);
    border-bottom-left-radius: 4px;
}

.chat-bubble.user {
    background: var(--black);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
}

.typing-indicator {
    display: flex;
    gap: 4px;
    align-items: center;
    padding: 10px 14px;
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.2);
    border-radius: 14px;
    border-bottom-left-radius: 4px;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    background: #93C5FD;
    border-radius: 50%;
    animation: typingBounce 1.2s infinite ease-in-out;
}

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

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

@keyframes typingBounce {

    0%,
    100% {
        transform: translateY(0);
        opacity: 0.5
    }

    50% {
        transform: translateY(-4px);
        opacity: 1
    }
}

/* ===== MARQUEE SECTION ===== */
.marquee-section {
    padding: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border2);
    overflow: hidden;
}

.marquee-wrapper {
    display: flex;
}

.marquee-track {
    display: flex;
    gap: 0;
    align-items: center;
    animation: marqueeScroll 25s linear infinite;
    white-space: nowrap;
}

.marquee-item {
    display: flex;
    align-items: center;
    /* padding: 20px 0; */
    /* border-right: 1px solid var(--border2); */
    gap: 5px;
    flex-shrink: 0;
}

.marquee-item .logo-placeholder {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #9CA3AF;
    letter-spacing: -0.3px;
}

.logo-icon {
    width: 100%;
    height: auto;
    border-radius: 6px;
    background: linear-gradient(135deg, #E5E7EB, #D1D5DB);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

@keyframes marqueeScroll {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ===== SECTION COMMONS ===== */
.section {
    padding: 100px 40px;
}

.section-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--black);
    margin-bottom: 16px;
}


.section-tag::before {
    content: '';
    width: 20px;
    height: 2px;
    background: linear-gradient(120deg, #a0fdd2 0%, #ab8bff 100%);
    border-radius: 2px;
}

.section-h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -1px;
    color: var(--black);
    margin-bottom: 20px;
}

.section-p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray);
    max-width: 600px;
}

/* ===== DEMO SECTION ===== */
.demo-section {
    background: var(--white);
    padding: 100px 40px;
}

.demo-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.demo-left .section-tag {
    color: var(--black);
}

.demo-tabs {
    display: flex;
    gap: 10px;
    margin: 32px 0;
}

.demo-tab {
    padding: 9px 18px;
    border-radius: 8px;
    font-size: 13.5px;
    font-weight: 600;
    transition: all 0.2s;
    background: var(--light);
    color: var(--gray);
    border: 1px solid var(--border2);
}

.demo-visual {
    background: repeating-linear-gradient(0deg, rgb(118 220 173) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(117 211 168) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 20%, #95ffce 60%, #f0f0f0 100%);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
    min-height: fit-content;
    max-width: fit-content;
    padding: 28px;
}

.demo-visual-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 24px;
}

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

.demo-visual-dot:nth-child(1) {
    background: #ef4444;
}

.demo-visual-dot:nth-child(2) {
    background: #f59e0b;
}

.demo-visual-dot:nth-child(3) {
    background: #10b981;
}

.demo-chat {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.demo-chat-msg {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.demo-chat-msg.user {
    flex-direction: row-reverse;
}

.demo-chat-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
}

.demo-chat-avatar.ai {
    background: var(--black);
    color: white;
}

.demo-chat-avatar.user-av {
    background: linear-gradient(135deg, #8B5CF6, #EC4899);
    color: white;
}

.demo-bubble {
    max-width: 75%;
    padding: 11px 15px;
    border-radius: 14px;
    font-size: 13px;
    line-height: 1.55;
    font-weight: 500;
}

.demo-bubble.ai-b {
    background: rgba(37, 99, 235, 0.15);
    border: 1px solid rgba(37, 99, 235, 0.2);
    color: rgba(255, 255, 255, 0.85);
    border-bottom-left-radius: 4px;
}

.demo-bubble.user-b {
    background: var(--black);
    color: white;
    border-bottom-right-radius: 4px;
}

.demo-input-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    background: rgba(255, 255, 255, 0.36);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
}

.demo-input-row span {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.3);
    flex: 1;
}

.demo-send {
    width: 32px;
    height: 32px;
    background: var(--black);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.demo-send svg {
    width: 14px;
    height: 14px;
    color: white;
}

/* ===== WHY CHOOSE US ===== */
.why-section {
    background: repeating-linear-gradient(0deg, rgb(118 220 173) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(117 211 168) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(240deg, #ab8bff 50%, #95ffce 60%, #f0f0f0 100%);
    padding: 100px 40px;
}

.why-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.why-grid img {
    width: 100%;
}

.why-image-wrap {
    position: relative;
}

.why-main-image {
    width: 100%;
    border-radius: 24px;
    background: linear-gradient(145deg, #0f172a, #1e293b);
    height: 480px;
    overflow: hidden;
    position: relative;
    box-shadow: var(--shadow-lg);
}

.why-img-inner {
    width: 100%;
    height: 100%;
    background: linear-gradient(160deg, #1e3a8a 0%, #1e293b 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-dashboard {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 20px;
    width: 85%;
}

.why-db-header {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 16px;
}

.why-db-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.why-db-title {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.why-db-bar-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.why-db-bar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.why-db-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    width: 60px;
    flex-shrink: 0;
}

.why-db-bar-bg {
    flex: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    overflow: hidden;
}

.why-db-bar-fill {
    height: 100%;
    border-radius: 4px;
}

.why-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 32px;
}

.why-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s;
    border: 1px solid transparent;
}

.why-item:hover {
    background: var(--white);
    border-color: var(--border2);
}

.why-item-icon {
    width: 40px;
    height: 40px;
    background: #EFF6FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-item-icon svg {
    width: 18px;
    height: 18px;
    color: var(--black);
}

.why-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 6px;
}

.why-item p {
    font-size: 14px;
    color: #000;
    line-height: 1.6;
}

.why-arrow {
    margin-left: auto;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.why-arrow svg {
    width: 12px;
    height: 12px;
    color: var(--black);
}

/* ===== USECASE SECTION ===== */
.usecases-section {
    padding: 0 40px 100px 40px;
    background: var(--white);
}

.usecases-inner {
    max-width: 1180px;
    margin: 0 auto;
}

/* Segment toggle */
.usecases-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 56px;
}

.uc-tab {
    padding: 10px 28px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    font-family: var(--font);
    cursor: pointer;
    border: 1.5px solid var(--border2);
    background: var(--white);
    color: var(--gray);
    transition: all 0.25s;
    letter-spacing: 0.2px;
}

.uc-tab.active {
    background: var(--dark);
    color: var(--white);
    border-color: var(--dark);
}

.uc-tab:hover:not(.active) {
    border-color: #000;
    color: #000;
}

/* Section header */
.usecases-header {
    text-align: center;
    margin-bottom: 56px;
}

.usecases-header .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000000;
    border-radius: 30px;
    padding: 5px 14px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.usecases-header h2 {
    font-size: clamp(28px, 3.5vw, 42px);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1px;
    line-height: 1.15;
    font-family: var(--font);
    margin-bottom: 14px;
}

.usecases-header p {
    font-size: 16px;
    color: var(--gray);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Panel visibility */
.uc-panel {
    display: none;
}

.uc-panel.active {
    display: block;
}

/* Category label */
.uc-category-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    margin-top: 48px;
}

.uc-category-label:first-child {
    margin-top: 0;
}

.uc-category-label h3 {
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray);
    font-family: var(--font2);
}

/* Cards grid */
.uc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

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

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

    .usecases-section {
        padding: 0 20px 60px 20px;
    }
}

/* Card */
.uc-card {
    background: var(--white);
    border: 1.5px solid var(--border2);
    border-radius: var(--radius);
    padding: 24px 24px 22px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
    position: relative;
    overflow: hidden;
}

.uc-card:hover {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.uc-card:hover::before {
    height: 100%;
}

.uc-icon {
    width: 40px;
    height: 40px;
    background: #EFF6FF;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 15px;
}

.uc-icon svg {
    width: 20px;
    height: 20px;
    color: #000;
}

.uc-card h4 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 8px;
    font-family: var(--font);
    line-height: 1.3;
}

.uc-card p {
    font-size: 14px;
    color: var(--black);
    line-height: 1.6;
    font-family: var(--font2);
}

/* WhatsApp badge */
.wa-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #25D366;
    color: #fff;
    border-radius: 20px;
    padding: 3px 10px 3px 6px;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
}

.wa-badge svg {
    width: 13px;
    height: 13px;
    fill: #fff;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 100px 40px;
    background: #F8FAFF;
}

.benefits-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.benefits-header {
    text-align: center;
    margin-bottom: 56px;
}

.benefits-header .section-tag {
    justify-content: center;
}

.benefits-header .section-tag::before {
    display: none;
}

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

.benefit-card {
    background: #ffffff;
    border: 1px solid #ab8bff;
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.25s;
    position: relative;
}

.benefit-card:hover {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
    transform: translateY(-4px);
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.benefit-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #EFF6FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

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

.benefit-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 10px;
}

.benefit-card p {
    font-size: 14px;
    color: #000;
    line-height: 1.65;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 90px 0 100px;
    background: #f9f6ff;
}

.process-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Header */
.process-header {
    text-align: center;
    margin-bottom: 56px;
}


.process-header h2 {
    font-size: clamp(28px, 4vw, 48px);
    font-weight: 800;
    color: var(--black);
    letter-spacing: -1.5px;
    line-height: 1.1;
    font-family: var(--font);
    margin-bottom: 16px;
}

.process-header p {
    font-size: 15px;
    color: var(--gray);
    line-height: 1.65;
    max-width: 440px;
    margin: 0 auto;
}

/* Grid Layout — row 1: 4 cards, row 2: 3 cards centered */
.process-grid {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.process-row {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.process-row-1 {}

.process-row-2 {}

/* Each Card */
.process-card {
    flex: 1;
    max-width: 230px;
    max-height: 220px;
    aspect-ratio: 4 / 5;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Row 2 cards slightly narrower to feel centered */
.process-row-2 .process-card {
    max-width: 230px;
    max-height: 220px;
}

.process-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.13);
}

/* Gradient background — mint to lavender like the screenshot */
.process-card-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(145deg, #7fffd4 0%, #a8edea 30%, #b8a9f0 100%);
    transition: filter 0.3s;
}

/* Slight variation per card for visual interest */
.process-card:nth-child(1) .process-card-bg {
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.process-card:nth-child(2) .process-card-bg {
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.process-card:nth-child(3) .process-card-bg {
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.process-card:nth-child(4) .process-card-bg {
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.process-row-2 .process-card:nth-child(1) .process-card-bg {
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.process-row-2 .process-card:nth-child(2) .process-card-bg {
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.process-row-2 .process-card:nth-child(3) .process-card-bg {
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.process-card:hover .process-card-bg {
    filter: brightness(1.04) saturate(1.1);
}

/* White label box — bottom left, cuts into the card */
.process-card-label {
    position: absolute;
    bottom: 0;
    left: 0;
    background: #ffffff;
    border-radius: 0 20px 0 20px;
    padding: 20px 24px 24px 24px;
    width: 100%;
    min-height: 60%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 4px -4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.process-card:hover .process-card-label {
    width: 90%;
    min-height: 100%;
}

.process-card-num {
    font-size: 20px;
    font-weight: 600;
    color: #9289da;
    letter-spacing: 1px;
    margin-bottom: 8px;
    font-family: var(--font2);
}

.process-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--black);
    line-height: 1.35;
    letter-spacing: -0.3px;
    font-family: var(--font);
    margin-bottom: 6px;
}

.process-card-desc {
    font-size: 12px;
    line-height: 1.6;
    color: var(--gray);
    font-weight: 400;
    display: none;
    /* hidden by default, shows on hover */
    margin-top: 6px;
}

.process-card:hover .process-card-desc {
    display: block;
}

/* Responsive */
@media (max-width: 900px) {
    .process-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .process-card {
        max-width: calc(50% - 8px);
        flex: 0 0 calc(50% - 8px);
        aspect-ratio: 3 / 4;
    }

    .process-row-2 .process-card {
        max-width: calc(50% - 8px);
    }
}

@media (max-width: 560px) {
    .process-inner {
        padding: 0 20px;
    }

    .process-card {
        max-width: 100%;
        flex: 0 0 100%;
        aspect-ratio: 4 / 3;
    }

    .process-row-2 .process-card {
        max-width: 100%;
    }

    .process-card-label {
        width: 100%;
    }
}

/* ===== USE CASES ===== */
.usecases-section {
    padding: 100px 40px 100px 40px;
    background: var(--white);
}

.usecases-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.usecases-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 56px;
}

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

.usecase-card {
    border: 1px solid var(--border2);
    border-radius: var(--radius);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: all 0.25s;
    cursor: pointer;
}

.usecase-card:hover {
    box-shadow: 0 8px 32px rgba(37, 99, 235, 0.1);
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(120deg, #ab8bff 30%, #95ffce 60%, #f0f0f0 100%);
}

.usecase-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: repeating-linear-gradient(0deg, rgb(206 193 193) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 10px), repeating-linear-gradient(90deg, rgb(207 197 197) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 10px), linear-gradient(120deg, #ffffff 30%, #95ffce 60%, #f0f0f0 100%);
}

.usecase-icon svg {
    width: 22px;
    height: 22px;
    color: var(--black);
}

.usecase-card h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
}

.usecase-card p {
    font-size: 14px;
    color: var(--black);
    line-height: 1.65;
}

/* ===== INTEGRATION SECTION ===== */
.integration-section {
    padding: 100px 40px;
    background: #F8FAFF;
}

.integration-grid {
    max-width: 1180px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.integration-right {
    position: relative;
}

.integration-visual {
    background: repeating-linear-gradient(0deg, rgb(118 220 173) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(117 211 168) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(240deg, #ab8bff 50%, #95ffce 60%, #f0f0f0 100%);
    border: 1px solid var(--border2);
    border-radius: 24px;
    padding: 65px;
    box-shadow: var(--shadow-lg);
}

.int-center {
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.int-hub {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ab8bff, #76e5b6);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 12px rgba(37, 99, 235, 0.1), 0 0 0 24px rgba(37, 99, 235, 0.05);
}

.int-hub svg {
    width: 36px;
    height: 36px;
    color: white;
}

.int-logos {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.int-logo-card {
    background: var(--light);
    border: 1px solid var(--border2);
    border-radius: 12px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.int-logo-card:hover {
    border-color: var(--black);
    background: #EFF6FF;
}

.int-logo-card span {
    font-size: 11px;
    font-weight: 700;
    color: var(--gray);
}

.int-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 28px;
    margin-bottom: 35px;
}

.int-feat {
    display: flex;
    gap: 10px;
    align-items: center;
}

.int-feat-check {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #D1FAE5;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.int-feat-check svg {
    width: 10px;
    height: 10px;
    color: #059669;
}

.int-feat span {
    font-size: 14px;
    font-weight: 500;
    color: var(--black);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 40px;
    background: var(--white);
}

.faq-inner {
    max-width: 780px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

.faq-header .section-tag {
    justify-content: center;
}

.faq-header .section-tag::before {
    display: none;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--border2);
    border-radius: 16px;
    overflow: hidden;
}

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

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 28px;
    cursor: pointer;
    gap: 20px;
    transition: background 0.15s;
}

.faq-question:hover {
    background: var(--light);
}

.faq-num {
    font-size: 13px;
    font-weight: 700;
    color: var(--black);
    min-width: 28px;
}

.faq-q-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--black);
    flex: 1;
}

.faq-toggle {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}

.faq-toggle svg {
    width: 14px;
    height: 14px;
    color: var(--black);
}

.faq-item.open .faq-toggle {
    background: var(--black);
    transform: rotate(45deg);
}

.faq-item.open .faq-toggle svg {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
    padding: 0 28px 0 72px;
}

.faq-item.open .faq-answer {
    max-height: 200px;
    padding: 0 28px 22px 72px;
}

.faq-answer p {
    font-size: 14.5px;
    color: var(--gray);
    line-height: 1.7;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 80px 40px;
    background: var(--black);
}

.cta-inner {
    max-width: 1180px;
    margin: 0 auto;
}

.cta-card {
    background: repeating-linear-gradient(0deg, rgb(118 220 173) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), repeating-linear-gradient(90deg, rgb(117 211 168) 0px, rgba(255, 255, 255, 0.15) 1px, transparent 1px, transparent 20px), linear-gradient(240deg, #ab8bff 50%, #95ffce 60%, #f0f0f0 100%);
    border-radius: 28px;
    padding: 70px 60px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

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

.cta-card::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 240px;
    height: 240px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.cta-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #000;
    margin-bottom: 16px;
}

.cta-card h2 {
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.18;
    letter-spacing: -1px;
    color: #000;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 16px;
    color: #000;
    line-height: 1.65;
    max-width: 480px;
}

.btn-cta-white {
    width: 210px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    background-color: rgb(131 255 203);
    border-radius: 30px;
    color: rgb(0 0 0);
    font-weight: 600;
    font-size: 18px;
    border: none;
    position: relative;
    cursor: pointer;
    transition-duration: .2s;
    padding-left: 16px;
    transition-duration: .5s;
    text-decoration: none;
}

.btn-cta-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
    background-color: #ffffff;
}

.cta-images {
    display: flex;
    gap: -20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 80px 24px 0;
    }

    .hero-visual {
        display: none;
    }

    .demo-grid,
    .why-grid,
    .analytics-grid,
    .usecases-top,
    .integration-grid {
        grid-template-columns: 1fr;
    }

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

    .cta-card {
        grid-template-columns: 1fr;
    }

    .section {
        padding: 70px 24px;
    }

    .demo-section,
    .why-section,
    .analytics-section,
    .usecases-section,
    .integration-section,
    .faq-section {
        padding: 70px 24px;
    }
}

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

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

    .nav-menu {
        display: none;
    }

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

}

/* Mobile devices */
@media only screen and (max-width: 767px) {

    .nav-bg img {
        width: 125px !important;
        height: auto !important;
    }

    .hero-container {
        max-width: 100%;
        grid-template-columns: auto;
        padding: 60px 0 0;
    }

    .integration-grid {
        display: block;
        grid-template-columns: auto;
        max-width: 100%;
    }

}

@media only screen and (max-width: 500px) {
    
    .int-logos {
        display: unset;
    }
    
    .integration-visual {
        margin-top: 20px;
    }

    .int-logo-card {
        display: block;
        text-align: center;
        margin-bottom: 12px;
    }
    
}

/* Animated entrance */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}