/* Voice Message Notifications Landing Page — Leadnest.ai */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* ══════════════════════════════════════
   DESIGN TOKENS
══════════════════════════════════════ */
:root {
    --v-primary:       #673AB7;
    --v-primary-dark:  #5e35b1;
    --v-primary-deep:  #4527a0;
    --v-accent:        #8B5CF6; /* Brand Violet Accent */
    --v-accent-dark:   #7C3AED;
    --v-text:          #1f2937;
    --v-text-muted:    #64748b;
    --v-heading:       #0f172a;
    --v-bg-light:      #f8fafc;
    --v-white:         #ffffff;
    --v-border:        #f1f5f9;
}

/* ══════════════════════════════════════
   BASE RESET
══════════════════════════════════════ */
html { height: auto !important; overflow-x: clip !important; }
body { height: auto !important; overflow-x: clip !important; overflow-y: visible !important; position: relative; margin: 0; padding: 0; }
main { overflow: visible !important; }

.v-wrapper {
    font-family: 'Poppins', sans-serif;
    color: var(--v-text);
    padding-top: 0;
    position: relative;
    width: 100%;
    max-width: 100vw;
}

/* ══════════════════════════════════════
   BACKGROUND UTILITIES
══════════════════════════════════════ */
.v-bg-light  { background: var(--v-bg-light); }
.v-bg-white  { background: var(--v-white); }

/* ══════════════════════════════════════
   HERO SECTION
══════════════════════════════════════ */
.v-hero {
    height: calc(100vh - 90px);
    min-height: 620px;
    background: var(--v-white);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.v-hero-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right,  rgba(103, 58, 183, 0.12) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(103, 58, 183, 0.12) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 40%, black 50%, transparent 90%);
    pointer-events: none;
    z-index: 1;
}

.v-hero::after {
    content: '';
    position: absolute;
    top: -10%; right: -5%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.04) 0%, transparent 70%);
    z-index: 1;
}

.v-hero-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 0 24px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.v-hero-text  { flex: 1.15; }
.v-hero-visual {
    flex: 0.95;
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(103, 58, 183, 0.07);
    color: var(--v-primary);
    border: 1px solid rgba(103, 58, 183, 0.2);
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 28px;
    letter-spacing: 0.3px;
}

.v-hero-text h1 {
    font-size: 52px;
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--v-heading);
    letter-spacing: -0.03em;
}

.v-accent-brand { color: var(--v-accent); }

.v-hero-text p {
    font-size: 18px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 36px;
    max-width: 95%;
    font-weight: 400;
}

.v-hero-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 30px 70px rgba(103, 58, 183, 0.15), 0 10px 20px rgba(0,0,0,0.05);
    display: block;
    transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), box-shadow 0.4s ease;
}

.v-hero-image:hover {
    transform: translateY(-8px);
    box-shadow: 0 40px 90px rgba(103, 58, 183, 0.2), 0 15px 30px rgba(0,0,0,0.08);
}

.v-hero-cta {
    display: flex;
    gap: 16px;
    margin-bottom: 44px;
    flex-wrap: wrap;
}

.v-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s cubic-bezier(0.4,0,0.2,1);
    cursor: pointer;
    border: none;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-decoration: none !important;
}

.v-btn-lg { padding: 16px 36px; font-size: 16px; }

.v-btn-primary {
    background: var(--v-primary);
    color: white !important;
    box-shadow: 0 4px 14px rgba(103,58,183,0.25);
}

.v-btn-primary:hover {
    background: var(--v-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(103,58,183,0.3);
}

.v-btn-secondary {
    background: #f3f4f6;
    color: #111827 !important;
    border: 1px solid transparent;
}

.v-btn-secondary:hover {
    background: #e5e7eb;
    transform: translateY(-2px);
}

.v-hero-trust {
    display: flex;
    align-items: center;
    gap: 28px;
    padding-top: 28px;
    border-top: 1px solid var(--v-border);
}

.v-trust-divider { width: 1px; height: 24px; background: #e2e8f0; flex-shrink: 0; }

.v-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #374151;
    font-weight: 500;
}

.v-trust-item i { color: var(--v-primary); font-size: 18px; }

/* ══════════════════════════════════════
   PARTNER SLIDER
══════════════════════════════════════ */
.v-partner-section {
    padding: 70px 0;
    background: linear-gradient(to bottom, #ffffff, #f8fafc);
    border-bottom: 1px solid var(--v-border);
}

.v-trusted-heading {
    text-align: center;
    font-family: 'Poppins', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--v-text-muted);
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.v-trusted-heading::before,
.v-trusted-heading::after {
    content: '';
    height: 1px;
    width: 40px;
    background: rgba(0,0,0,0.1);
}

.v-partner-img {
    filter: none;
    opacity: 0.9;
    transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
    max-height: 38px;
    width: auto !important;
    margin: 0 auto;
}

.v-partner-img:hover {
    opacity: 1;
    transform: scale(1.05);
}

/* ══════════════════════════════════════
   STATS BAND
══════════════════════════════════════ */
.v-stats-band {
    background: #0f172a;
    padding: 70px 0;
    color: white;
    position: relative;
    z-index: 10;
}

.v-stats-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    text-align: center;
    flex-wrap: wrap;
    gap: 32px;
}

.v-stat-value {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--v-primary);
}

.v-stat-label {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    opacity: 0.6;
    text-transform: uppercase;
}

/* ══════════════════════════════════════
   FEATURE SECTIONS
══════════════════════════════════════ */
.v-feature-section { padding: 120px 0; }

.v-feature-container {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 80px;
    padding: 0 24px;
}

.v-feature-reverse { flex-direction: row-reverse; }

.v-feature-content { flex: 1; }
.v-feature-image   { flex: 1; }

.v-feature-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(103, 58, 183, 0.07);
    color: var(--v-primary);
    border: 1px solid rgba(103, 58, 183, 0.2);
    border-radius: 6px;
    font-size: 11px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.v-feature-content h2 {
    font-size: 38px;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 24px;
    color: var(--v-heading);
    letter-spacing: -0.02em;
}

.v-feature-desc {
    font-size: 18px;
    line-height: 1.7;
    color: var(--v-text-muted);
    margin-bottom: 36px;
}

.v-feature-highlights {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.v-feature-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 500;
    color: var(--v-heading);
}

.v-feature-highlights li i {
    color: var(--v-accent);
    font-size: 20px;
}

.v-feature-img {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

/* ══════════════════════════════════════
   HOW IT WORKS
══════════════════════════════════════ */
.v-steps-section { padding: 120px 0; background: #fff; }

.v-steps-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.v-step-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--v-bg-light);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.v-step-card:hover {
    background: white;
    box-shadow: 0 20px 40px rgba(103, 58, 183, 0.08);
    transform: translateY(-5px);
}

.v-step-number {
    width: 54px;
    height: 54px;
    background: var(--v-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 600;
    margin: 0 auto 28px;
    box-shadow: 0 8px 16px rgba(103, 58, 183, 0.25);
}

.v-step-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--v-heading);
}

.v-step-card p {
    font-size: 15px;
    color: var(--v-text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════
   CAPABILITIES GRID
══════════════════════════════════════ */
.v-capabilities-section { padding: 120px 0; }

.v-section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
}

.v-section-eyebrow {
    font-size: 13px;
    font-weight: 600;
    color: var(--v-primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.v-section-header h2 {
    font-size: 42px;
    font-weight: 600;
    color: var(--v-heading);
    margin-bottom: 20px;
}

.v-capabilities-grid {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.v-cap-card {
    background: white;
    padding: 40px 32px;
    border-radius: 24px;
    border: 1px solid var(--v-border);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.v-cap-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(103, 58, 183, 0.08);
    border-color: rgba(103, 58, 183, 0.2);
}

.v-cap-icon {
    width: 56px;
    height: 56px;
    background: rgba(103, 58, 183, 0.07);
    color: var(--v-primary);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    margin-bottom: 24px;
}

.v-cap-card h3 {
    font-size: 19px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--v-heading);
}

.v-cap-card p {
    font-size: 14px;
    color: var(--v-text-muted);
    line-height: 1.6;
}

/* ══════════════════════════════════════
   FAQ SECTION
══════════════════════════════════════ */
.v-faq-section { padding: 120px 0; }

.v-faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.v-faq-item {
    background: white;
    border-radius: 20px;
    border: 1px solid var(--v-border);
    overflow: hidden;
}

.v-faq-question {
    width: 100%;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
}

.v-faq-question span {
    font-size: 18px;
    font-weight: 600;
    color: var(--v-heading);
}

.v-faq-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--v-bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.v-faq-open .v-faq-icon {
    background: var(--v-primary);
    color: white;
    transform: rotate(45deg);
}

.v-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 32px;
}

.v-faq-open .v-faq-answer {
    max-height: 400px;
    padding-bottom: 32px;
}

.v-faq-answer p {
    color: var(--v-text-muted);
    line-height: 1.7;
    font-size: 16px;
    margin: 0;
    padding-top: 20px;
    border-top: 1px solid var(--v-border);
}

/* ══════════════════════════════════════
   CTA SECTION
══════════════════════════════════════ */
.v-cta-section { padding: 120px 24px; }

.v-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    background: linear-gradient(135deg, #673AB7 0%, #311b92 100%);
    border-radius: 48px;
    padding: 100px 40px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(103, 58, 183, 0.3);
}

.v-cta-content { position: relative; z-index: 2; max-width: 800px; margin: 0 auto; }

.v-cta-content h2 { font-size: 48px; font-weight: 600; margin-bottom: 24px; }

.v-cta-content p { font-size: 20px; opacity: 0.9; margin-bottom: 48px; }

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

.v-btn-white { background: white; color: var(--v-primary) !important; }
.v-btn-white:hover { background: #f8fafc; transform: translateY(-3px); }

.v-btn-outline {
    background: rgba(255,255,255,0.05);
    color: white !important;
    border: 2px solid rgba(255,255,255,0.3);
    backdrop-filter: blur(10px);
}

.v-btn-outline:hover { background: rgba(255,255,255,0.15); border-color: white; transform: translateY(-3px); }

/* ══════════════════════════════════════
   ANIMATIONS
══════════════════════════════════════ */
.v-reveal       { opacity: 0; transform: translateY(30px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.v-reveal-left  { opacity: 0; transform: translateX(-50px); transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }
.v-reveal-right { opacity: 0; transform: translateX(50px);  transition: all 0.8s cubic-bezier(0.2,0.8,0.2,1); }

.v-animate-in .v-reveal,
.v-animate-in.v-reveal,
.v-animate-in .v-reveal-left,
.v-animate-in.v-reveal-left,
.v-animate-in .v-reveal-right,
.v-animate-in.v-reveal-right { opacity: 1 !important; transform: translate(0,0) scale(1) !important; }

.v-delay-1 { transition-delay: 0.1s; }
.v-delay-2 { transition-delay: 0.2s; }
.v-delay-3 { transition-delay: 0.3s; }
.v-delay-4 { transition-delay: 0.4s; }

/* ══════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════ */
@media (max-width: 1100px) {
    .v-capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 991px) {
    .v-hero { height: auto; padding: 60px 0 100px; }
    .v-hero-content { flex-direction: column; text-align: center; gap: 50px; }
    .v-hero-text h1 { font-size: 42px; }
    .v-hero-cta { justify-content: center; }
    .v-hero-trust { justify-content: center; }
    .v-feature-container { flex-direction: column !important; gap: 60px; text-align: center; }
    .v-feature-highlights { justify-items: center; }
    .v-cta-content h2 { font-size: 36px; }
}

@media (max-width: 576px) {
    .v-hero-text h1 { font-size: 34px; }
    .v-capabilities-grid { grid-template-columns: 1fr; }
    .v-cta-buttons { flex-direction: column; }
}
