/* Landing V2 Styles */

body.landing-body-v2 {
    background: #fdfdfe;
    background: radial-gradient(circle at 10% 10%, rgba(109, 40, 217, 0.03), transparent 25%),
                radial-gradient(circle at 90% 80%, rgba(109, 40, 217, 0.03), transparent 25%);
    color: #111827;
    font-family: 'Outfit', sans-serif;
    margin: 0;
    overflow-x: hidden; /* Prevent horizontal scroll from mockup bleed */
}

/* Fix dark sections to maintain their colors */
.xf-section-dark {
    color: #ffffff;
}

/* Header */
.hero-header {
    padding: 1.5rem 0;
    background: transparent;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}
.hero-nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}
.hero-brand {
    color: #111827;
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}
.hero-logo-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    background: #6d28d9;
    color: white;
    border-radius: 8px;
    transform: rotate(-5deg);
    box-shadow: 0 4px 10px rgba(109, 40, 217, 0.3);
}
.hero-nav-links {
    gap: 1.5rem;
    font-weight: 600;
    font-size: 0.95rem;
    margin: 0 auto;
}
@media (min-width: 1200px) {
    .hero-nav-links {
        gap: 2.5rem;
    }
}
.hero-nav-links a {
    color: #374151;
    text-decoration: none;
    transition: color 0.2s;
}
.hero-nav-links a:hover {
    color: #111827;
}

/* Mobile Menu */
.hero-nav-toggle {
    background: transparent;
    border: none;
    font-size: 1.8rem;
    color: #111827;
    padding: 0;
    cursor: pointer;
}
.hero-mobile-menu {
    background: white;
    border-top: 1px solid #f3f4f6;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 99;
}
.hero-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding-top: 1.5rem;
}
.hero-mobile-links a {
    color: #374151;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-bottom: 1px solid #f3f4f6;
    padding-bottom: 0.8rem;
}

/* Buttons */
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.6rem 1.4rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 0.95rem;
}
.hero-btn-ghost {
    color: #111827;
    background: transparent;
}
.hero-btn-ghost:hover {
    background: rgba(0,0,0,0.04);
}
.hero-btn-primary {
    background: #6d28d9;
    color: white;
    box-shadow: 0 4px 14px rgba(109, 40, 217, 0.25);
}
.hero-btn-primary:hover {
    background: #5b21b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(109, 40, 217, 0.3);
}
.hero-btn-white {
    background: white;
    color: #111827;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
}
.hero-btn-white:hover {
    background: #f9fafb;
    color: #111827;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}
.hero-play-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 50%;
    font-size: 1.2rem;
}

/* Hero Section */
.hero-section {
    padding: 8rem 0 4rem; /* Top padding to account for the absolute header */
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-color: transparent;
    background-image: radial-gradient(circle at 1px 1px, rgba(109, 40, 217, 0.35) 1px, transparent 0);
    background-size: 20px 20px;
}
.hero-left {
    padding-right: 3rem;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3e8ff;
    color: #6d28d9;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 2rem;
}
.hero-title {
    font-size: 4.2rem;
    font-weight: 800;
    line-height: 1.1;
    color: #111827;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}
@media (max-width: 1199px) {
    .hero-title { font-size: 3.2rem; }
}
@media (max-width: 767px) {
    .hero-title { font-size: 2.5rem; }
    .hero-left { padding-right: 0.75rem; text-align: center; }
    .hero-cta-group { justify-content: center; }
    .hero-features { justify-content: center; }
}
.hero-title-accent {
    color: #6d28d9;
    position: relative;
    display: inline-block;
}
.hero-title-swoosh {
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 20px;
}

/* Typewriter Cursor */
.typewriter-cursor {
    display: inline-block;
    color: #6d28d9;
    font-weight: 300;
    animation: blink-caret 0.8s step-end infinite;
    margin-left: 2px;
}
@keyframes blink-caret {
    from, to { opacity: 0; }
    50% { opacity: 1; }
}

.hero-sub {
    font-size: 1.2rem;
    color: #4b5563;
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 95%;
}
.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3.5rem;
}
.hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}
.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.85rem;
}
.hero-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.hero-icon-shield { background: #f3e8ff; color: #6d28d9; }
.hero-icon-zap { background: #f3f4f6; color: #6d28d9; }
.hero-icon-headset { background: #f3f4f6; color: #6d28d9; }

/* Mockup */
.hero-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.03);
    display: flex;
    height: 600px;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) scale(0.95);
    transform-origin: left center;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    min-width: 850px; 
}
@media (max-width: 1399px) and (min-width: 992px) {
    .hero-mockup {
        transform: perspective(1000px) rotateY(-8deg) rotateX(2deg) scale(0.65);
        transform-origin: left center;
    }
    .hero-mockup:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(0.7);
    }
}
@media (max-width: 991px) {
    .hero-mockup {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(0.9);
        transform-origin: top center;
        margin-top: 2rem;
    }
}
.hero-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1);
}
.mockup-sidebar {
    width: 200px;
    background: #f8fafc;
    border-right: 1px solid #f1f5f9;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
}
.mockup-logo {
    color: #6d28d9;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}
.mockup-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
}
.mockup-menu li {
    padding: 0.6rem 0.8rem;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.mockup-menu li.active {
    background: #f3e8ff;
    color: #6d28d9;
    font-weight: 600;
}

.mockup-content {
    flex: 1;
    padding: 2.5rem;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.mockup-h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 0.3rem 0;
    color: #0f172a;
}
.mockup-p {
    font-size: 0.8rem;
    color: #64748b;
    margin: 0;
}
.mockup-header-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    color: #64748b;
    font-size: 1.1rem;
}
.mockup-avatar {
    width: 36px;
    height: 36px;
    background: #6d28d9;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.mockup-stats {
    display: flex;
    gap: 1rem;
}
.mockup-stat-card {
    flex: 1;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 1.2rem;
}
.mockup-stat-title {
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 0.6rem;
    font-weight: 500;
}
.mockup-stat-value {
    font-size: 1.4rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.6rem;
}
.mockup-stat-value small {
    font-size: 0.75rem;
    font-weight: 600;
    color: #64748b;
}
.mockup-stat-trend {
    font-size: 0.7rem;
    font-weight: 600;
}

.mockup-charts {
    display: flex;
    gap: 1rem;
}
.mockup-chart-box {
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 1.2rem;
}
.mockup-box-title {
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
}
.mockup-box-filter {
    font-size: 0.7rem;
    color: #64748b;
    background: #f8fafc;
    padding: 0.3rem 0.6rem;
    border-radius: 6px;
}
.mockup-box-link {
    font-size: 0.7rem;
    color: #6d28d9;
    font-weight: 600;
}
.mockup-donut {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: conic-gradient(#6d28d9 0% 60%, #3b82f6 60% 85%, #f59e0b 85% 100%);
    position: relative;
}
.mockup-donut::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 55px; height: 55px;
    background: white;
    border-radius: 50%;
}
.mockup-donut-legend {
    font-size: 0.7rem;
    color: #64748b;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.mockup-donut-legend div {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.mockup-donut-legend span:first-child {
    width: 10px; height: 10px; border-radius: 50%;
}
.mockup-donut-legend span:last-child {
    margin-left: auto; font-weight: 600; color: #0f172a;
}

.mockup-table {
    width: 100%;
    border-collapse: collapse;
}
.mockup-table th {
    font-size: 0.65rem;
    color: #94a3b8;
    font-weight: 500;
    text-align: left;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}
.mockup-table td {
    font-size: 0.75rem;
    color: #4b5563;
    padding: 0.6rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.mockup-table tr:last-child td {
    border-bottom: none;
}

.mockup-activities {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.mockup-activity {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.mockup-activity-icon {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: #f3e8ff;
    color: #6d28d9;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.mockup-activity-text {
    flex: 1;
    font-size: 0.75rem;
    color: #4b5563;
    line-height: 1.3;
}
.mockup-activity-text strong {
    color: #0f172a;
    font-weight: 600;
}
.mockup-activity-text span {
    color: #94a3b8;
    font-size: 0.65rem;
}
.mockup-activity-amount {
    font-size: 0.75rem;
    font-weight: 600;
    color: #4b5563;
}

/* Trust logos */
.hero-trust {
    text-align: center;
    margin-top: 6rem;
    color: #9ca3af;
    font-size: 0.95rem;
}
.hero-logos-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-top: 2rem;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.hero-logos-track {
    display: flex;
    width: max-content;
    animation: scroll-logos 30s linear infinite;
}
.hero-logos-track:hover {
    animation-play-state: paused;
}
.hero-logos-group {
    display: flex;
    align-items: center;
    gap: 4rem;
    padding-right: 4rem;
}
.hero-logos-group span {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-weight: 700;
    font-size: 1.2rem;
    color: #d1d5db;
    transition: color 0.3s;
}
.hero-logos-group span:hover {
    color: #9ca3af;
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Challenges Section */
.challenges-section {
    padding: 2rem 0;
    background: #fdfdfe; /* Same as body */
}
.challenges-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6d28d9;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.challenges-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    /* Optional: add a serif-like feel using letter-spacing or weight adjustments while keeping Outfit */
}
.challenges-title-accent {
    color: #6d28d9;
}
.challenges-sub {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Challenge Cards */
.challenge-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 1.5rem 0 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.challenge-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.challenge-icon {
    width: 40px;
    height: 40px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.challenge-card-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
    line-height: 1.3;
}
.challenge-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex: 1;
}
.challenge-card-img-wrapper {
    margin: 0 -1.5rem;
    position: relative;
    border-radius: 0 0 20px 20px;
    overflow: hidden;
    height: 180px;
}
.challenge-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%) contrast(1.1);
}
.challenge-cross {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    width: 32px;
    height: 32px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ef4444; /* Red cross */
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    font-weight: bold;
}

/* Solution Banner */
.solution-banner {
    background: linear-gradient(135deg, #f3e8ff 0%, #e0e7ff 100%);
    border-radius: 24px;
    padding: 3.5rem;
    position: relative;
    overflow: hidden;
}
.solution-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #6d28d9;
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 10px rgba(109, 40, 217, 0.1);
}
.solution-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.solution-title-accent {
    color: #6d28d9;
}
.solution-desc {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
    max-width: 90%;
    margin: 0;
}
.solution-arrow {
    position: absolute;
    left: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 140px;
    height: 60px;
}
.solution-logo-area {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}
.solution-logo-icon {
    width: 80px;
    height: 80px;
    background: #6d28d9;
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    transform: rotate(-10deg);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.3);
}
.solution-logo-text {
    text-align: left;
}
.solution-logo-text strong {
    font-size: 2rem;
    color: #0f172a;
    font-weight: 800;
    letter-spacing: -0.5px;
    line-height: 1;
}
.solution-logo-text span {
    font-size: 0.95rem;
    color: #4b5563;
    display: block;
    margin-top: 0.2rem;
}

@media (max-width: 991px) {
    .challenges-title { font-size: 2.5rem; }
    .solution-banner { padding: 2.5rem 1.5rem; }
    .solution-title { font-size: 1.8rem; }
    .solution-arrow { display: none !important; }
}

/* Features Section */
.features-section {
    padding: 2rem 0;
    position: relative;
    overflow: hidden;
    background: #fdfdfe;
}
.features-bg-lines {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: linear-gradient(rgba(109, 40, 217, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(109, 40, 217, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
    mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, black 20%, transparent 80%);
}
.features-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6d28d9;
    background: #f3e8ff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.features-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}
.features-title-accent {
    color: #6d28d9;
}
.features-sub {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

/* Feature Grid */
.features-grid {
    position: relative;
    z-index: 1;
}
.feature-card {
    background: white;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(109, 40, 217, 0.08);
}
.feature-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.feature-icon {
    width: 40px;
    height: 40px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.feature-card-title {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0;
}
.feature-card-desc {
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    flex: 1;
}

/* Feature UI Miniatures */
.feature-card-ui {
    background: #fcfcfd;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 1rem;
    margin-top: auto;
}
.ui-text-sm {
    font-size: 0.75rem;
    color: #0f172a;
}
.ui-text-xs {
    font-size: 0.7rem;
}
.ui-text-muted {
    color: #64748b;
    font-size: 0.75rem;
}
.ui-badge {
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 600;
}
.ui-badge-green { background: #dcfce7; color: #16a34a; }
.ui-badge-red { background: #fee2e2; color: #ef4444; }
.ui-badge-purple { background: #f3e8ff; color: #6d28d9; }
.ui-amount {
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
}
.ui-amount span {
    font-size: 0.65rem;
    color: #64748b;
    font-weight: 600;
}
.ui-amount-red {
    font-size: 1rem;
    font-weight: 700;
    color: #ef4444;
}
.ui-icon-box {
    width: 28px;
    height: 28px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}
.ui-icon-box-small {
    width: 24px;
    height: 24px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}
.ui-avatar img {
    width: 32px;
    height: 32px;
    border-radius: 50%;
}
.ui-text-green {
    color: #16a34a;
}
.ui-device-icon {
    font-size: 1.5rem;
    color: #94a3b8;
}

/* Features Bottom Banner */
.features-bottom-banner {
    display: flex;
    justify-content: center;
}
.features-bottom-content {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    color: #0f172a;
}
.text-purple {
    color: #6d28d9;
}
@media (max-width: 991px) {
    .features-title { font-size: 2.5rem; }
}

/* Dashboard Showcase Section */
.dashboard-showcase-section {
    padding: 2rem 0;
    background: #fdfdfe;
    overflow: hidden;
}
.showcase-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6d28d9;
    background: #f3e8ff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.showcase-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}
.showcase-title-accent {
    color: #6d28d9;
}
.showcase-desc {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    margin-bottom: 2.5rem;
}

/* Showcase Features List */
.showcase-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.showcase-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}
.showcase-feature-icon {
    width: 48px;
    height: 48px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.showcase-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 0.3rem 0;
}
.showcase-feature-text {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
    line-height: 1.5;
}

/* Showcase Bottom Box */
.showcase-bottom-box {
    background: #f3e8ff;
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.95rem;
}
.showcase-sparkle {
    color: #6d28d9;
    font-size: 1.5rem;
}

/* Showcase Mockup */
.showcase-mockup {
    background: white;
    border-radius: 20px;
    box-shadow: 0 25px 60px -12px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0,0,0,0.03);
    display: flex;
    overflow: hidden;
    height: 600px;
}
.s-mockup-sidebar {
    width: 220px;
    background: #ffffff;
    border-right: 1px solid #f1f5f9;
    padding: 1.5rem 1rem;
    display: flex;
    flex-direction: column;
}
.s-mockup-logo {
    display: flex;
    align-items: center;
    font-weight: 800;
    font-size: 1.1rem;
    color: #0f172a;
    margin-bottom: 2rem;
    padding-left: 0.5rem;
}
.s-mockup-logo-icon {
    color: #6d28d9;
    font-size: 1.3rem;
    margin-right: 0.5rem;
    -webkit-text-stroke: 1px;
}
.s-mockup-menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}
.s-mockup-menu li {
    padding: 0.7rem 0.8rem;
    border-radius: 8px;
    color: #64748b;
    font-size: 0.8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}
.s-mockup-menu li.active {
    background: #8b5cf6;
    color: white;
    font-weight: 600;
}
.s-mockup-menu li.active i {
    color: white;
}
.s-mockup-pro-card {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 1rem;
}
.s-mockup-pro-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.4rem;
}
.s-mockup-pro-text {
    font-size: 0.7rem;
    color: #64748b;
    margin-bottom: 0.8rem;
    line-height: 1.4;
}
.s-mockup-pro-btn {
    background: #8b5cf6;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    text-align: center;
    padding: 0.5rem;
    border-radius: 8px;
}

.s-mockup-main {
    flex: 1;
    padding: 1.5rem 2rem;
    background: #fdfdfe;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    overflow-y: auto;
}
.s-mockup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.s-mockup-search {
    background: #f8fafc;
    border: 1px solid #f1f5f9;
    border-radius: 10px;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    color: #94a3b8;
    width: 250px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.s-mockup-header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    color: #64748b;
}
.s-mockup-badge {
    position: absolute;
    top: -2px; right: -2px;
    width: 6px; height: 6px;
    background: #ef4444;
    border-radius: 50%;
}
.s-mockup-user {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #4b5563;
}
.s-mockup-avatar {
    width: 30px; height: 30px;
    background: #8b5cf6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.7rem;
}

.s-mockup-stats {
    display: flex;
    gap: 1rem;
}
.s-mockup-stat-card {
    flex: 1;
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}
.s-mockup-stat-title {
    font-size: 0.7rem;
    color: #64748b;
    font-weight: 500;
}
.s-mockup-stat-icon {
    width: 24px; height: 24px;
    border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.8rem;
}
.s-icon-purple { background: #f3e8ff; color: #8b5cf6; }
.s-icon-green { background: #dcfce7; color: #10b981; }
.s-icon-blue { background: #e0f2fe; color: #3b82f6; }
.s-icon-orange { background: #ffedd5; color: #f59e0b; }

.s-mockup-stat-val {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.s-mockup-stat-val span {
    font-size: 0.65rem;
    color: #64748b;
}
.s-mockup-stat-trend {
    font-size: 0.65rem;
    font-weight: 600;
}
.s-link-orange {
    font-size: 0.65rem;
    font-weight: 600;
    color: #f59e0b;
}

.s-mockup-charts {
    display: flex;
    gap: 1rem;
}
.s-mockup-box {
    background: white;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 1rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.01);
}
.s-box-flex-2 { flex: 1.8; }
.s-box-flex-1 { flex: 1; }

.s-mockup-box-title {
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f172a;
}
.s-mockup-box-filter {
    font-size: 0.65rem;
    color: #64748b;
    background: #f8fafc;
    padding: 0.2rem 0.5rem;
    border-radius: 6px;
    border: 1px solid #f1f5f9;
}
.s-mockup-box-link {
    font-size: 0.65rem;
    color: #8b5cf6;
    font-weight: 600;
}

.s-mockup-donut {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: conic-gradient(#8b5cf6 0% 60%, #3b82f6 60% 85%, #f59e0b 85% 100%);
    position: relative;
}
.s-mockup-donut::after {
    content: ''; position: absolute;
    top: 50%; left: 50%; transform: translate(-50%, -50%);
    width: 45px; height: 45px;
    background: white; border-radius: 50%;
}
.s-mockup-donut-legend {
    font-size: 0.65rem;
    color: #64748b;
    display: flex; flex-direction: column; gap: 0.5rem;
}
.s-mockup-donut-legend div {
    display: flex; align-items: center; gap: 0.4rem;
}
.s-mockup-donut-legend span:first-child {
    width: 8px; height: 8px; border-radius: 50%;
}
.s-mockup-donut-legend span:last-child {
    margin-left: auto; font-weight: 600; color: #0f172a;
}

.s-mockup-bottom-row {
    display: flex;
    gap: 1rem;
}
.s-mockup-bottom-row > div {
    flex: 1;
}
.s-mockup-table {
    width: 100%;
    border-collapse: collapse;
}
.s-mockup-table th {
    font-size: 0.6rem;
    color: #94a3b8;
    font-weight: 500;
    text-align: left;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f1f5f9;
}
.s-mockup-table td {
    font-size: 0.7rem;
    color: #4b5563;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f1f5f9;
}
.s-mockup-table tr:last-child td { border-bottom: none; padding-bottom: 0; }

.s-mockup-activities {
    display: flex; flex-direction: column; gap: 0.6rem;
}
.s-mockup-activity {
    display: flex; align-items: center; gap: 0.6rem;
}
.s-mockup-activity-icon {
    width: 24px; height: 24px; border-radius: 6px;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}
.s-mockup-activity-text {
    flex: 1; display: flex; flex-direction: column;
}
.s-mockup-activity-text strong {
    font-size: 0.7rem; color: #0f172a; font-weight: 600;
}
.s-mockup-activity-text span {
    font-size: 0.6rem; color: #94a3b8;
}
.s-mockup-activity-val {
    font-size: 0.7rem; font-weight: 600; color: #4b5563;
}

@media (max-width: 991px) {
    .showcase-title { font-size: 2.5rem; }
    .showcase-mockup { height: auto; min-height: 400px; }
    .s-mockup-sidebar { display: none; }
}

/* Pricing V2 Section */
.pricing-v2-section {
    padding: 2rem 0;
    background: #fdfdfe;
    background: radial-gradient(circle at 50% 0%, rgba(109, 40, 217, 0.04), transparent 70%);
    position: relative;
}
.pricing-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6d28d9;
    background: #f3e8ff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.pricing-v2-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}
.pricing-v2-accent {
    color: #6d28d9;
}
.pricing-v2-sub {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
}

.pricing-v2-checks {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}
.pricing-v2-checks span {
    background: white;
    border: 1px solid #f1f5f9;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #0f172a;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
}
.pricing-v2-checks i {
    color: #6d28d9;
    font-size: 1rem;
}

/* Pricing Cards */
.pricing-card-v2 {
    background: white;
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease;
}
.pricing-card-v2:hover {
    transform: translateY(-5px);
}
.p-card-highlight {
    border: 2px solid #6d28d9;
    box-shadow: 0 20px 50px rgba(109, 40, 217, 0.1);
}
.p-card-top-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #6d28d9;
    color: white;
    padding: 0.4rem 1.5rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.p-card-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.p-card-name {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}
.p-card-save-badge {
    display: inline-block;
    background: #6d28d9;
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 0.2rem 0.8rem;
    border-radius: 50px;
    margin: -0.5rem auto 1rem;
}
.p-card-price {
    font-size: 3.5rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}
.p-card-period {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 600;
}
.p-card-note {
    font-size: 0.8rem;
    font-weight: 600;
    color: #64748b;
}

.p-card-btn {
    display: block;
    width: 100%;
    padding: 0.8rem;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    margin-top: auto;
}
.p-btn-outline {
    background: transparent;
    color: #6d28d9;
    border: 1px solid rgba(109, 40, 217, 0.3);
}
.p-btn-outline:hover {
    background: rgba(109, 40, 217, 0.05);
    color: #5b21b6;
    border-color: #6d28d9;
}
.p-btn-solid {
    background: #6d28d9;
    color: white;
    border: 1px solid #6d28d9;
}
.p-btn-solid:hover {
    background: #5b21b6;
    color: white;
}

/* Features Box */
.pricing-v2-features-box {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}
.p-feat-col {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.p-feat-col span {
    font-size: 0.85rem;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.p-feat-col i {
    color: #6d28d9;
    font-size: 1.1rem;
}
.p-bottom-feat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #0f172a;
    text-align: left;
}
.p-bottom-feat i {
    font-size: 1.8rem;
}
@media (min-width: 768px) {
    .border-start-md { border-left: 1px solid #f1f5f9; }
}

/* Trust Box */
.pricing-v2-trust-box {
    background: white;
    border-radius: 20px;
    padding: 1.5rem 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}
.p-trust-icon {
    width: 50px;
    height: 50px;
    background: #fdfdfe;
    border: 1px solid #f1f5f9;
    color: #0f172a;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.p-trust-title {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}
.p-trust-text {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}
.p-trust-avatars {
    display: flex;
}
.p-trust-avatars img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid white;
    margin-right: -12px;
}
.p-trust-avatars img:last-child {
    margin-right: 0;
}
.p-trust-count {
    font-size: 0.95rem;
}
@media (max-width: 991px) {
    .pricing-v2-title { font-size: 2.5rem; }
}

/* Testimonials V2 Section */
.testimonials-v2-section {
    padding: 2rem 0;
    background: #fdfdfe;
    position: relative;
    overflow: hidden;
}
/* Subtle background curve */
.testimonials-v2-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 100%;
    border-radius: 50%;
    border: 1px solid rgba(109, 40, 217, 0.05);
    pointer-events: none;
}
/* Subtle dot grid on right */
.testimonials-v2-section::after {
    content: '';
    position: absolute;
    top: 20%;
    right: 0;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(rgba(109, 40, 217, 0.1) 2px, transparent 2px);
    background-size: 20px 20px;
    mask-image: linear-gradient(to right, transparent, black);
    -webkit-mask-image: linear-gradient(to left, transparent, black);
    pointer-events: none;
    z-index: 0;
}

.testimonials-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6d28d9;
    background: #f3e8ff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative; z-index: 1;
}
.testimonials-v2-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
    position: relative; z-index: 1;
}
.testimonials-v2-accent {
    color: #6d28d9;
}
.testimonials-v2-sub {
    font-size: 1.1rem;
    color: #4b5563;
    line-height: 1.6;
    position: relative; z-index: 1;
}

/* Stats Row */
.t-stats-row {
    position: relative; z-index: 1;
    margin-bottom: 4rem;
}
.t-stat-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 0;
}
@media (max-width: 767px) {
    .t-stat-item { flex-direction: column; text-align: center; gap: 0.5rem; }
}
.t-stat-icon {
    width: 45px;
    height: 45px;
    background: #f8fafc;
    color: #6d28d9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}
.t-stat-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: #6d28d9;
    line-height: 1;
    margin-bottom: 0.2rem;
    letter-spacing: -1px;
}
.t-stat-label {
    font-size: 0.8rem;
    color: #64748b;
    font-weight: 500;
}

/* Testimonial Cards */
.t-cards-row {
    position: relative; z-index: 1;
}
.t-card-v2 {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
.t-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(109, 40, 217, 0.05);
}
.t-quote-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 5rem;
    color: #f3e8ff;
    line-height: 1;
    opacity: 0.6;
    pointer-events: none;
}
.t-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    display: flex;
    gap: 0.2rem;
}
.t-text {
    font-size: 0.95rem;
    color: #0f172a;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 2rem;
    flex: 1;
    position: relative; z-index: 1;
}
.t-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative; z-index: 1;
}
.t-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #f8fafc;
}
.t-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.1rem;
}
.t-role {
    font-size: 0.8rem;
    color: #64748b;
    margin-bottom: 0.2rem;
}
.t-company {
    font-size: 0.75rem;
    color: #6d28d9;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

/* Bottom CTA */
.t-bottom-cta {
    position: relative; z-index: 1;
    margin-top: 4rem;
}
.t-bottom-cta p {
    font-size: 1rem;
    color: #4b5563;
    font-weight: 500;
    margin-bottom: 1.5rem;
}
.t-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #6d28d9;
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1rem;
}
.t-cta-btn:hover {
    background: #5b21b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.25);
}
.t-cta-note {
    font-size: 0.8rem;
    color: #64748b;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}
@media (max-width: 991px) {
    .testimonials-v2-title { font-size: 2.5rem; }
}

/* FAQ V2 Section */
.faq-v2-section {
    padding: 2rem 0;
    background: #fdfdfe;
    position: relative;
}
.faq-v2-section::before {
    content: '';
    position: absolute;
    top: 10%;
    left: -10%;
    width: 40%;
    height: 60%;
    border-radius: 50%;
    border: 1px solid rgba(109, 40, 217, 0.05);
    pointer-events: none;
}
.faq-v2-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6d28d9;
    background: #f3e8ff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}
.faq-v2-title {
    font-size: 3.2rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.15;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}
.faq-v2-accent {
    color: #6d28d9;
}
.faq-v2-sub {
    font-size: 1.05rem;
    color: #4b5563;
    line-height: 1.6;
}
.faq-v2-contact-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.02);
    border: 1px solid #f1f5f9;
}
.f-contact-icon {
    width: 50px;
    height: 50px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.f-contact-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}
.f-contact-text {
    font-size: 0.9rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}
.f-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #6d28d9;
    color: white;
    padding: 0.7rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
}
.f-contact-btn:hover {
    background: #5b21b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 40, 217, 0.2);
}
.f-contact-features {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    border-top: 1px solid #f1f5f9;
    padding-top: 1.5rem;
}
.f-feat-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}
.f-feat-icon {
    width: 32px;
    height: 32px;
    background: #f8fafc;
    color: #6d28d9;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.f-feat-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.2rem;
}
.f-feat-desc {
    font-size: 0.8rem;
    color: #64748b;
    line-height: 1.4;
}

/* Accordion */
.faq-v2-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.f-acc-item {
    background: white;
    border: 1px solid #f1f5f9 !important;
    border-radius: 12px !important;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.01);
}
.f-acc-btn {
    background: white !important;
    color: #0f172a !important;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.2rem 1.5rem;
    box-shadow: none !important;
    border: none !important;
}
.f-acc-btn::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236d28d9'%3E%3Cpath d='M8 2a.5.5 0 0 1 .5.5v5h5a.5.5 0 0 1 0 1h-5v5a.5.5 0 0 1-1 0v-5h-5a.5.5 0 0 1 0-1h5v-5A.5.5 0 0 1 8 2Z'/%3E%3C/svg%3E") !important;
    transition: all 0.3s ease;
    width: 1.25rem;
    height: 1.25rem;
    background-size: 1rem;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50%;
}
.f-acc-btn:not(.collapsed) {
    background: #fdfdfd !important;
}
.f-acc-btn:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%236d28d9'%3E%3Cpath d='M4 8a.5.5 0 0 1 .5-.5h7a.5.5 0 0 1 0 1h-7A.5.5 0 0 1 4 8z'/%3E%3C/svg%3E") !important;
    transform: rotate(0deg) !important;
    background-color: #f3e8ff;
}
.f-acc-body {
    padding: 0 1.5rem 1.5rem 1.5rem;
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
}

/* Bottom CTA Banner */
.faq-v2-cta-banner {
    background: #fcf9ff;
    border-radius: 16px;
    padding: 2rem 3rem;
}
.f-cta-icon {
    font-size: 2.5rem;
    color: #6d28d9;
    transform: rotate(-10deg);
}
.f-cta-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.3rem;
}
.f-cta-sub {
    font-size: 0.85rem;
    color: #64748b;
}
.f-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #6d28d9;
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.2s;
    white-space: nowrap;
}
.f-cta-btn:hover {
    background: #5b21b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.2);
}
@media (max-width: 991px) {
    .faq-v2-title { font-size: 2.5rem; }
    .faq-v2-cta-banner { padding: 2rem 1.5rem; text-align: center; }
    .f-cta-mobile-flex { flex-direction: column; align-items: center; text-align: center; }
}

/* Final CTA V2 Section */
.cta-final-v2-section {
    padding: 2rem 0 6rem 0;
    background: #fdfdfe;
}
.cta-final-wrapper {
    background: linear-gradient(180deg, #fdfbfe 0%, #f4efff 100%);
    border-radius: 30px;
    padding: 5rem 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(109, 40, 217, 0.05);
    border: 1px solid rgba(109, 40, 217, 0.1);
}
/* Background lines / waves */
.cta-final-wrapper::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-radial-gradient(circle at -20% 50%, transparent 0, transparent 20px, rgba(109, 40, 217, 0.03) 21px, transparent 22px);
    pointer-events: none;
}
.cta-final-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-radial-gradient(circle at 120% 50%, transparent 0, transparent 20px, rgba(109, 40, 217, 0.03) 21px, transparent 22px);
    pointer-events: none;
}

.cta-f-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #6d28d9;
    background: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(109, 40, 217, 0.08);
}
.cta-f-title {
    font-size: 4rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1.5px;
}
.cta-f-accent {
    color: #6d28d9;
    position: relative;
    display: inline-block;
}
.cta-f-accent::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 6px;
    background: #6d28d9;
    border-radius: 10px;
    opacity: 0.8;
    transform: rotate(-1deg);
}
.cta-f-sub {
    font-size: 1.2rem;
    color: #4b5563;
    line-height: 1.6;
}

.cta-f-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.btn-cta-primary {
    background: #6d28d9;
    color: white;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.3);
    transition: all 0.3s;
}
.btn-cta-primary:hover {
    background: #5b21b6;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(109, 40, 217, 0.4);
}
.btn-cta-secondary {
    background: white;
    color: #0f172a;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
    border: 1px solid #f1f5f9;
    transition: all 0.3s;
}
.btn-cta-secondary:hover {
    background: #f8fafc;
    color: #0f172a;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.cta-f-checks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    color: #4b5563;
    font-size: 0.95rem;
    font-weight: 500;
}
.cta-f-checks i {
    color: #6d28d9;
    font-size: 1.1rem;
    margin-right: 0.3rem;
}

.cta-f-trust {
    border-top: 1px solid rgba(109, 40, 217, 0.1);
    padding-top: 2rem;
}
.cta-f-avatars {
    display: flex;
    align-items: center;
}
.cta-f-avatars img {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 3px solid white;
    margin-right: -15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.cta-f-avatar-count {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #8b5cf6;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
    border: 3px solid white;
    z-index: 10;
}
.cta-f-stars {
    color: #fbbf24;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
}
.cta-f-trust-text {
    font-size: 0.9rem;
    color: #4b5563;
    font-weight: 600;
    line-height: 1.3;
}

.cta-f-security {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.05);
    text-align: left;
}
.c-sec-icon {
    width: 35px;
    height: 35px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}
.c-sec-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0f172a;
}
.c-sec-desc {
    font-size: 0.75rem;
    color: #64748b;
}

/* Floating mockups styling */
.cta-f-mockup-left {
    display: none !important;
}
.cta-f-mockup-right {
    display: none !important;
}

.mockup-float {
    position: relative;
    pointer-events: none;
}
.m-card {
    background: white;
    border-radius: 20px;
    width: 300px;
    box-shadow: 0 25px 50px rgba(109, 40, 217, 0.15);
    display: flex;
    overflow: hidden;
    position: relative;
}
.m-card-purple-icon {
    position: absolute;
    top: -20px; left: -20px;
    width: 60px; height: 60px;
    background: #6d28d9;
    color: white;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    transform: rotate(10deg);
    box-shadow: 0 10px 20px rgba(109, 40, 217, 0.3);
    z-index: 2;
}
.m-top-icon {
    position: absolute;
    top: -40px; right: 20px;
    width: 60px; height: 60px;
    background: white;
    color: #6d28d9;
    border-radius: 16px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 15px 30px rgba(109, 40, 217, 0.1);
    z-index: 2;
}
.m-side-nav {
    width: 50px;
    background: #f8fafc;
    border-right: 1px solid #f1f5f9;
    padding: 3rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    color: #94a3b8;
}
.m-side-nav i {
    font-size: 1rem;
}
.m-side-nav i:first-child {
    color: #6d28d9;
    background: #f3e8ff;
    width: 30px; height: 30px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
}
.m-card-content {
    flex: 1;
    padding: 1.5rem;
}
.m-label { font-size: 0.65rem; color: #64748b; font-weight: 500; }
.m-val { font-size: 1.4rem; font-weight: 800; color: #0f172a; margin-top: 0.2rem; }
.m-val-sm { font-size: 1rem; font-weight: 700; color: #0f172a; margin-top: 0.2rem; }
.m-badge-green { background: #dcfce7; color: #16a34a; font-size: 0.6rem; padding: 0.2rem 0.5rem; border-radius: 50px; font-weight: 600; display: inline-block;}
.m-label-xs { font-size: 0.55rem; color: #94a3b8; margin-top: 0.3rem; }
.m-chart-line {
    height: 40px;
    margin: 1rem 0;
    background-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 100 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q 20 10, 40 25 T 80 15 T 100 5 L 100 40 L 0 40 Z' fill='%23f3e8ff'/%3E%3Cpath d='M0 30 Q 20 10, 40 25 T 80 15 T 100 5' fill='none' stroke='%236d28d9' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}
.m-divider { height: 1px; background: #f1f5f9; margin: 1rem 0; }
.m-row { display: flex; justify-content: space-between; align-items: flex-start; }
.m-badge-outline-green { border: 1px solid #16a34a; color: #16a34a; font-size: 0.6rem; padding: 0.2rem 0.6rem; border-radius: 50px; font-weight: 600; }
.m-icon-red { color: #ef4444; background: #fee2e2; width: 24px; height: 24px; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }


/* Right mobile mockup */
.m-card-mobile {
    background: white;
    border-radius: 30px;
    width: 260px;
    box-shadow: 0 25px 60px rgba(109, 40, 217, 0.2);
    border: 6px solid #f8fafc;
    overflow: hidden;
}
.m-floating-percent {
    position: absolute;
    top: 40%; left: -40px;
    width: 70px; height: 70px;
    background: #6d28d9;
    color: white;
    border-radius: 20px;
    display: flex; align-items: center; justify-content: center;
    font-size: 2.2rem;
    transform: rotate(-15deg);
    box-shadow: 0 15px 30px rgba(109, 40, 217, 0.3);
    z-index: 2;
}
.m-mobile-header {
    display: flex; justify-content: space-between;
    padding: 1rem; font-size: 0.65rem; color: #0f172a; font-weight: 600;
}
.m-mobile-body {
    padding: 0 1rem 1.5rem 1rem;
}
.m-hello { font-size: 0.9rem; font-weight: 700; color: #0f172a; margin-bottom: 1rem; }
.m-hello span { font-size: 0.6rem; color: #64748b; font-weight: 500; }
.m-purple-card {
    background: #6d28d9;
    border-radius: 16px;
    padding: 1.2rem;
    color: white;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}
.m-label-w { font-size: 0.6rem; opacity: 0.8; }
.m-val-w { font-size: 1.5rem; font-weight: 800; margin: 0.2rem 0; }
.m-label-xs-w { font-size: 0.55rem; font-weight: 600; }
.m-chart-w {
    position: absolute; bottom: 0; left: 0; width: 100%; height: 30px;
    background-image: url("data:image/svg+xml,%3Csvg preserveAspectRatio='none' viewBox='0 0 100 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 25 Q 20 5, 40 15 T 80 10 T 100 0 L 100 30 L 0 30 Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M0 25 Q 20 5, 40 15 T 80 10 T 100 0' fill='none' stroke='white' stroke-width='2' opacity='0.5'/%3E%3C/svg%3E");
    background-size: 100% 100%;
}
.m-list-item {
    display: flex; align-items: center; padding: 0.8rem 0; border-bottom: 1px solid #f1f5f9; gap: 0.8rem;
}
.m-list-text { flex: 1; font-size: 0.75rem; font-weight: 600; color: #0f172a; }
.m-list-vals { text-align: right; }
.m-val-dark { font-size: 0.7rem; font-weight: 700; color: #0f172a; }
.m-val-green { font-size: 0.6rem; font-weight: 600; color: #16a34a; }
.m-val-red { font-size: 0.6rem; font-weight: 600; color: #ef4444; }
.m-icon-blue { background: #e0f2fe; color: #3b82f6; width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.m-icon-red { background: #fee2e2; color: #ef4444; width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.m-icon-purple { background: #f3e8ff; color: #6d28d9; width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }
.m-icon-orange { background: #ffedd5; color: #f59e0b; width: 30px; height: 30px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; }

@media (max-width: 991px) {
    .cta-final-wrapper { padding: 3rem 1.5rem; }
    .cta-f-title { font-size: 2.5rem; }
    .cta-f-buttons { flex-direction: column; width: 100%; }
    .btn-cta-primary, .btn-cta-secondary { width: 100%; justify-content: center; }
    .cta-f-checks { flex-direction: column; gap: 0.8rem; align-items: flex-start; margin: 0 auto; display: inline-flex; }
    .cta-f-trust { flex-direction: column; text-align: center; }
    .cta-f-trust .text-start { text-align: center !important; }
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: #6d28d9;
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 10px 25px rgba(109, 40, 217, 0.4);
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
}
.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.back-to-top:hover {
    background: #5b21b6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(109, 40, 217, 0.5);
    color: white;
}
@media (max-width: 767px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
        font-size: 1.5rem;
    }
}

/* Newsletter V2 Section */
.newsletter-v2-section {
    padding: 0 0 4rem 0;
    background: #fdfdfe;
    position: relative;
    z-index: 2;
}
.newsletter-v2-card {
    background: white;
    border-radius: 24px;
    padding: 4rem 2rem;
    text-align: center;
    box-shadow: 0 15px 50px rgba(0,0,0,0.03);
    border: 1px solid #f1f5f9;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}
.newsletter-v2-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-radial-gradient(circle at -10% -10%, transparent 0, transparent 20px, rgba(109, 40, 217, 0.02) 21px, transparent 22px);
    pointer-events: none;
}
.newsletter-v2-card::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-radial-gradient(circle at 110% 110%, transparent 0, transparent 20px, rgba(109, 40, 217, 0.02) 21px, transparent 22px);
    pointer-events: none;
}
.nl-icon-wrapper {
    width: 50px;
    height: 50px;
    background: #f3e8ff;
    color: #6d28d9;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}
.nl-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.8rem;
    letter-spacing: -0.5px;
}
.nl-accent {
    color: #6d28d9;
}
.nl-sub {
    font-size: 1rem;
    color: #64748b;
    margin-bottom: 2rem;
}
.nl-form {
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.nl-input-group {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 0.5rem;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}
.nl-input {
    border: none;
    background: transparent;
    padding-left: 1rem;
    box-shadow: none !important;
}
.nl-input:focus {
    border-color: #c4b5fd;
}
.nl-btn {
    background: #6d28d9;
    color: white;
    border-radius: 8px;
    padding: 0.8rem 1.5rem;
    font-weight: 600;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
    border: none;
}
.nl-btn:hover {
    background: #5b21b6;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(109, 40, 217, 0.2);
}
.nl-spam-notice {
    font-size: 0.8rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Footer V2 */
.footer-v2 {
    background: #090a15; /* Very dark rich background */
    color: #e2e8f0;
    padding: 5rem 0 2rem 0;
}
.footer-desc {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.footer-features {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-features li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}
.footer-features li i {
    color: #8b5cf6;
    font-size: 1.1rem;
}
.footer-social {
    display: flex;
    gap: 1rem;
}
.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    text-decoration: none;
}
.footer-social a:hover {
    background: #6d28d9;
    transform: translateY(-3px);
}
.footer-title {
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 0.8rem;
}
.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: white;
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    font-size: 0.85rem;
    color: #94a3b8;
}
.footer-cert {
    color: #cbd5e1;
}
.footer-cert i {
    color: #cbd5e1;
    font-size: 1rem;
}
.footer-cert .separator {
    color: rgba(255,255,255,0.2);
}
.footer-lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.2);
    color: #cbd5e1;
    border-radius: 50px;
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s;
}
.footer-lang-btn:hover, .footer-lang-btn:focus {
    background: rgba(255,255,255,0.05);
    color: white;
    border-color: rgba(255,255,255,0.3);
    outline: none;
    box-shadow: none;
}
.footer-lang-menu {
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.1);
}
.footer-lang-menu .dropdown-item {
    color: #cbd5e1;
    font-size: 0.85rem;
}
.footer-lang-menu .dropdown-item:hover, .footer-lang-menu .dropdown-item.active {
    background: #6d28d9;
    color: white;
}

@media (max-width: 991px) {
    .footer-v2 { padding: 4rem 0 2rem 0; }
    .footer-title { margin-top: 2rem; }
    .nl-input-group { flex-direction: column; background: transparent; border: none; box-shadow: none; padding: 0; }
    .nl-input { background: white; border: 1px solid #e2e8f0; padding: 1rem; border-radius: 12px; }
    .nl-btn { width: 100%; justify-content: center; }
}
