@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ─── Base ─────────────────────────────────────────── */
body {
    font-family: 'DM Sans', sans-serif;
    -webkit-font-smoothing: antialiased;
    color: #0f172a;
}
h1, h2, h3, h4 { font-family: 'Plus Jakarta Sans', sans-serif; }
html { scroll-behavior: smooth; }

/* ─── Gradient Text ─────────────────────────────────── */
.text-gradient {
    background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ─── Buttons ───────────────────────────────────────── */
.btn-gradient {
    background: linear-gradient(135deg, #2563EB 0%, #06B6D4 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 30px -8px rgba(37, 99, 235, 0.55);
    filter: brightness(1.08);
}

.btn-outline {
    border: 2px solid #e2e8f0;
    color: #334155;
    transition: all 0.25s ease;
    background: white;
}
.btn-outline:hover {
    border-color: #93c5fd;
    color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px -6px rgba(37,99,235,0.18);
    background: #f0f9ff;
}

/* ─── Hero Section ──────────────────────────────────── */
.hero-section {
    background: linear-gradient(160deg, #eef4ff 0%, #f8fafc 55%, #ecfeff 100%);
    position: relative;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, #94a3b830 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(75px);
    opacity: 0.3;
    pointer-events: none;
}
.hero-blob-1 {
    width: 480px; height: 480px;
    background: radial-gradient(circle, #bfdbfe, #93c5fd);
    top: -100px; right: -60px;
    animation: blobFloat 9s ease-in-out infinite;
}
.hero-blob-2 {
    width: 320px; height: 320px;
    background: radial-gradient(circle, #a5f3fc, #67e8f9);
    bottom: -60px; left: 35%;
    animation: blobFloat 7s ease-in-out infinite;
    animation-delay: -3s;
}
.hero-blob-3 {
    width: 180px; height: 180px;
    background: radial-gradient(circle, #ddd6fe, #c4b5fd);
    top: 50%; left: -40px;
    animation: blobFloat 11s ease-in-out infinite;
    animation-delay: -6s;
}
@keyframes blobFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(12px, -18px) scale(1.04); }
    66% { transform: translate(-8px, 8px) scale(0.97); }
}

/* ─── Trust Badge ───────────────────────────────────── */
.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 8px;
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 999px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    font-size: 0.82rem;
    font-weight: 600;
    color: #334155;
    margin-bottom: 1.5rem;
}
.avatars { display: flex; }
.av {
    width: 26px; height: 26px;
    border-radius: 50%;
    border: 2px solid white;
    margin-left: -7px;
    font-size: 11px;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700;
}
.av:first-child { margin-left: 0; }
.av-1 { background: #dbeafe; color: #1d4ed8; }
.av-2 { background: #fce7f3; color: #9d174d; }
.av-3 { background: #dcfce7; color: #15803d; }
.av-4 { background: #fef9c3; color: #a16207; }
.badge-stars { color: #f59e0b; font-size: 11px; letter-spacing: -1px; }

/* ─── Hero Mockup ───────────────────────────────────── */
.mockup-wrapper {
    position: relative;
    animation: mockupFloat 5s ease-in-out infinite;
    z-index: 1;
}
@keyframes mockupFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-14px); }
}
.mockup-glow {
    position: absolute;
    inset: -40px;
    background: radial-gradient(ellipse at 60% 50%, rgba(37,99,235,0.2) 0%, rgba(6,182,212,0.14) 45%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}
.mockup-wrapper img {
    position: relative; z-index: 1;
    filter: drop-shadow(0 28px 44px rgba(37,99,235,0.22));
    border-radius: 16px;
}

/* ─── Stats Strip ───────────────────────────────────── */
.stats-strip {
    display: flex;
    gap: 2rem;
    padding-top: 1.75rem;
    margin-top: 1.75rem;
    border-top: 1px solid #e2e8f0;
}
.stat-num {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.45rem;
    font-weight: 800;
    background: linear-gradient(135deg, #2563EB, #06B6D4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
}
.stat-label {
    font-size: 0.72rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 2px;
}

/* ─── Section Label ─────────────────────────────────── */
.section-pill {
    display: inline-block;
    padding: 4px 14px;
    background: linear-gradient(135deg, #eff6ff, #ecfeff);
    border: 1px solid #bfdbfe;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    color: #2563eb;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    margin-bottom: 10px;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

/* ─── Industry Cards ────────────────────────────────── */
.industry-card {
    transition: all 0.35s cubic-bezier(0.34, 1.4, 0.64, 1);
    position: relative;
    overflow: hidden;
    background: white;
}
.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}
.industry-card.salon::before   { background: linear-gradient(155deg, #fdf4ff 0%, #f3e8ff 100%); }
.industry-card.medical::before { background: linear-gradient(155deg, #f0f7ff 0%, #dbeafe 100%); }
.industry-card.grocery::before { background: linear-gradient(155deg, #f0fdf4 0%, #dcfce7 100%); }
.industry-card:hover::before   { opacity: 1; }
.industry-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 28px 52px -12px rgba(0,0,0,0.14);
}
.industry-card .card-border-top {
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    border-radius: 16px 16px 0 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.salon   .card-border-top { background: linear-gradient(90deg, #a855f7, #7c3aed); }
.medical .card-border-top { background: linear-gradient(90deg, #3b82f6, #2563eb); }
.grocery .card-border-top { background: linear-gradient(90deg, #22c55e, #16a34a); }
.industry-card:hover .card-border-top { opacity: 1; }

.card-icon-wrap {
    width: 62px; height: 62px;
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 1.4rem;
    transition: transform 0.3s ease;
}
.industry-card:hover .card-icon-wrap { transform: scale(1.12) rotate(-4deg); }

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 5px 0;
    font-size: 0.88rem;
    color: #475569;
    font-weight: 500;
}
.check-dot {
    width: 20px; height: 20px;
    border-radius: 50%;
    flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
}
.check-dot svg { width: 11px; height: 11px; }
.salon   .check-dot { background: #f3e8ff; }
.salon   .check-dot svg { stroke: #7c3aed; }
.medical .check-dot { background: #dbeafe; }
.medical .check-dot svg { stroke: #2563eb; }
.grocery .check-dot { background: #dcfce7; }
.grocery .check-dot svg { stroke: #16a34a; }

.explore-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 0.88rem;
    transition: gap 0.2s ease;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
}
.explore-link:hover { gap: 12px; }
.salon   .explore-link { color: #7c3aed; }
.medical .explore-link { color: #2563eb; }
.grocery .explore-link { color: #16a34a; }

/* ─── Why Cards ─────────────────────────────────────── */
.why-card {
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.why-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 3px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 0 0 12px 12px;
}
.why-card:nth-child(1)::after { background: linear-gradient(90deg, #3b82f6, #06b6d4); }
.why-card:nth-child(2)::after { background: linear-gradient(90deg, #f97316, #f59e0b); }
.why-card:nth-child(3)::after { background: linear-gradient(90deg, #8b5cf6, #ec4899); }
.why-card:hover::after { opacity: 1; }
.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 36px -8px rgba(0,0,0,0.1);
}

/* ─── Scroll Reveal ─────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }

/* ─── FAQ ───────────────────────────────────────────── */
details summary::-webkit-details-marker { display: none; }
