/* ============================================================
   We-Bills — Modern Landing Page Styles
   Invoicing & Accounting SaaS Platform
   ============================================================ */

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

/* ============================================================
   1. ROOT VARIABLES
   ============================================================ */
:root {
    --primary-color: #6366f1;
    --primary-dark: #4f46e5;
    --primary-darker: #4338ca;
    --secondary-color: #64748b;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    --light-bg: #f8fafc;
    --dark-text: #1e293b;
    --border-color: #e2e8f0;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 8px 24px rgba(99, 102, 241, 0.15);
}

/* ============================================================
   2. GLOBAL RESET & BASE
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    scroll-padding-top: 80px; /* Offset for fixed navbar */
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: #ffffff;
    color: var(--dark-text);
    overflow-x: hidden;
    line-height: 1.6;
}

body.landing-page {
    background-color: #ffffff;
    color: var(--dark-text);
    overflow-x: hidden;
}

/* ============================================================
   3. ANIMATED BACKGROUND
   ============================================================ */
.landing-page::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.04) 0%,
        rgba(59, 130, 246, 0.04) 25%,
        rgba(16, 185, 129, 0.04) 50%,
        rgba(245, 158, 11, 0.04) 75%,
        rgba(99, 102, 241, 0.04) 100%
    );
    background-size: 400% 400%;
    pointer-events: none;
    z-index: -1;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* ============================================================
   4. FLOATING FINANCE ICONS
   ============================================================ */
.finance-bg-icons {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: -2;
    opacity: 0.06;
}

.finance-icon {
    position: absolute;
    font-size: 4rem;
    animation: float 20s infinite ease-in-out;
    color: var(--primary-color);
    opacity: 0.5;
}

.finance-icon:nth-child(1) { top: 10%; left: 5%; animation-delay: 0s; }
.finance-icon:nth-child(2) { top: 20%; right: 8%; animation-delay: 2s; }
.finance-icon:nth-child(3) { top: 40%; left: 15%; animation-delay: 4s; }
.finance-icon:nth-child(4) { bottom: 20%; right: 10%; animation-delay: 6s; }
.finance-icon:nth-child(5) { top: 60%; right: 20%; animation-delay: 8s; }

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
    25% { transform: translateY(-20px) rotate(5deg); opacity: 0.5; }
    50% { transform: translateY(-40px) rotate(0deg); opacity: 0.3; }
    75% { transform: translateY(-20px) rotate(-5deg); opacity: 0.5; }
}

/* ============================================================
   5. NAVIGATION (Bootstrap Compatible)
   ============================================================ */
nav.navbar {
    background-color: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
   
    min-height: 60px;
}

nav.navbar.top-nav-collapse {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: var(--shadow-md);
}

/* Logo */
.navbar-brand.landing-logo {
    display: inline-flex;
    align-items: center;
    padding: 0;
    margin: 0;
    line-height: 1;
}

.navbar-brand.landing-logo img {
    max-height: 36px;
    width: auto;
    display: block;
}

/* Navbar Toggler */
.navbar-toggler {
    padding: 0.4rem 0.6rem;
    font-size: 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0.1rem;
    transition: var(--transition);
}

.navbar-toggler:focus {
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.25);
    outline: none;
}

/* Nav Items */
.navbar-nav {
    align-items: center;
}

.navbar-nav .nav-item {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--dark-text) !important;
    transition: var(--transition);
    font-size: 0.9rem;
    padding: 0.5rem 0.875rem !important;
    border-radius: 0.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    line-height: 1.5;
    white-space: nowrap;
    margin: 0 0.125rem;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(99, 102, 241, 0.08);
}

/* Navbar CTA Button */
.navbar-nav .nav-item .btn {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    margin-left: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1.5;
}

/* Collapse alignment */
.navbar-collapse {
    align-items: center;
}

/* Mobile nav adjustments */
@media (max-width: 767.98px) {
    .navbar-collapse {
        padding-top: 1rem;
        padding-bottom: 0.5rem;
    }

    .navbar-nav {
        align-items: flex-start;
        gap: 0.25rem;
    }

    .navbar-nav .nav-item {
        width: 100%;
    }

    .navbar-nav .nav-link {
        width: 100%;
        padding: 0.625rem 1rem !important;
    }

    .navbar-nav .nav-item .btn {
        margin-left: 0;
        margin-top: 0.5rem;
        width: 100%;
        text-align: center;
    }
}

/* ============================================================
   6. HERO SECTION
   ============================================================ */
header {
    position: relative;
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.08) 0%, rgba(99, 102, 241, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.08; }
    50% { transform: scale(1.1); opacity: 0.12; }
}

header h1,
header .h1 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
    margin-bottom: 1.5rem !important;
    color: var(--dark-text) !important;
    letter-spacing: -1px !important;
    animation: slideInDown 0.8s ease;
}

header h4 {
    font-size: 1rem;
    font-weight: 400;
    color: var(--secondary-color);
    margin-bottom: 2rem;
    line-height: 1.7;
    animation: slideInUp 0.8s ease 0.1s both;
    max-width: 540px;
}

@keyframes slideInDown {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}

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

/* ============================================================
   7. BUTTONS
   ============================================================ */
.btn {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    border-radius: 0.1rem;
    padding: 0.75rem 1.75rem;
    transition: var(--transition);
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1.5;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary-darker) 100%);
    box-shadow: 0 6px 20px rgba(99, 102, 241, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: var(--light-bg);
    color: var(--dark-text);
    border: 2px solid var(--border-color);
}

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

.btn-ghost {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

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

.btn-light {
    display: inline-block;
    background: white;
    color: var(--primary-color);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.1rem;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
    border: none;
    cursor: pointer;
}

.btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* ============================================================
   8. FEATURE CARDS
   ============================================================ */
.feature-card {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.feature-card:hover {
    box-shadow: var(--shadow-primary);
    transform: translateY(-5px);
    border-color: rgba(99, 102, 241, 0.4);
}

.feature-card.bg-secondary {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15) 0%, rgba(99, 102, 241, 0.08) 100%);
}

.feature-card.bg-blue-200 {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(59, 130, 246, 0.08) 100%);
}

.feature-card.bg-purple-200 {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.15) 0%, rgba(168, 85, 247, 0.08) 100%);
}

.feature-card h1,
.feature-card h5 {
    color: var(--dark-text);
}

/* ============================================================
   9. SECTIONS
   ============================================================ */
section {
    padding: 80px 0;
    position: relative;
}

section:nth-child(even) {
    background-color: var(--light-bg);
}

.title h2,
section .title .h1 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: var(--dark-text) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.3 !important;
}

.title p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* Override Bootstrap .h1 in section titles */
section .title .h1,
section h2.h1 {
    font-size: 2rem !important;
    font-weight: 700 !important;
    margin-bottom: 1rem !important;
    color: var(--dark-text) !important;
    letter-spacing: -0.5px !important;
    line-height: 1.3 !important;
}

/* Content headings in sections */
section h2,
section .h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-text);
    letter-spacing: -0.5px;
    line-height: 1.3;
}

section h3,
section .h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark-text);
    line-height: 1.4;
}

/* ============================================================
   10. FEATURE LIST
   ============================================================ */
.customize-list {
    text-align: left;
    margin-top: 2rem;
    list-style: none;
    padding: 0;
}

.customize-list li {
    font-size: 1rem;
    color: var(--dark-text);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-weight: 500;
}

.customize-list i,
.customize-list .icon-check {
    color: var(--success-color);
    flex-shrink: 0;
    font-weight: 700;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* ============================================================
   11. PRICING CARDS
   ============================================================ */
.price-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.price-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--info-color));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.price-card:hover {
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-color);
    transform: translateY(-8px);
}

.price-card:hover::before {
    transform: scaleX(1);
}

.price-card.featured {
    border-color: var(--primary-color);
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.2);
}

.price-card.featured::before {
    transform: scaleX(1);
}

.price-card.hidden {
    display: none;
}

.price-card.fade-out {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

.price-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 1.5rem 0;
}

.price-price sup {
    font-size: 1.5rem;
}

.price-price span {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 500;
}

/* ============================================================
   12. PRODUCT LIST (Pricing Features)
   ============================================================ */
.product-list {
    margin: 2rem 0;
    border: 0;
    list-style: none;
    padding: 0;
}

.product-list li {
    padding: 0.75rem 0;
    border: 0;
    color: var(--dark-text);
    font-weight: 500;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.product-list li::before {
    content: '✓';
    color: var(--success-color);
    font-weight: 700;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.product-list li.disabled {
    color: var(--secondary-color);
    text-decoration: line-through;
}

.product-list li.disabled::before {
    content: '✗';
    color: var(--danger-color);
}

/* ============================================================
   13. OFFER BOXES (Feature Grid)
   ============================================================ */
.offer-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: 0.75rem;
    background: white;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}

.offer-box:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.offer-box img {
    max-height: 120px;
    margin-bottom: 1.5rem;
    object-fit: contain;
}

.offer-box h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 1rem;
}

.offer-box p {
    color: var(--secondary-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* ============================================================
   14. HERO IMAGE
   ============================================================ */
.hero-image {
    max-height: 240px;
    animation: float-image 3s ease-in-out infinite;
}

@keyframes float-image {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

/* ============================================================
   15. CARDS
   ============================================================ */
.card {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    background: white;
}

.card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

/* ============================================================
   16. PRICING FILTER TOGGLE
   ============================================================ */
.pricing-filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 4rem;
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

.pricing-filter-wrapper {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: white;
    padding: 0.5rem;
    border-radius: 0.75rem;
    border: 2px solid var(--border-color);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.pricing-filter-wrapper:hover {
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.pricing-filter-label {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--dark-text);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.pricing-toggle-switch {
    position: relative;
    display: inline-block;
    width: 70px;
    height: 36px;
    flex-shrink: 0;
}

.pricing-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pricing-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: var(--border-color);
    transition: var(--transition);
    border-radius: 0.1rem;
    border: 2px solid var(--border-color);
}

.pricing-toggle-slider::before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: var(--transition);
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.pricing-toggle-switch input:checked + .pricing-toggle-slider {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    border-color: var(--primary-color);
}

.pricing-toggle-switch input:checked + .pricing-toggle-slider::before {
    transform: translateX(34px);
}

.pricing-toggle-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    min-width: 50px;
    text-align: center;
}

.pricing-toggle-label.active {
    color: var(--primary-color);
}

.pricingpricing {
    padding: 80px 0;
}

.pricingpricing .container {
    position: relative;
}

/* ============================================================
   17. STEPS LADDER (Features Timeline)
   ============================================================ */
.steps-ladder {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.steps-ladder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--info-color) 50%, var(--success-color) 100%);
    border-radius: 2px;
    z-index: 0;
}

.steps-ladder-items {
    position: relative;
    z-index: 1;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    animation: slideInLeft 0.6s ease-out;
}

.step-item:nth-child(even) {
    flex-direction: row-reverse;
    animation: slideInRight 0.6s ease-out;
}

@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(50px); }
    to { opacity: 1; transform: translateX(0); }
}

.step-item:last-child {
    margin-bottom: 0;
}

.step-content {
    width: 45%;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: var(--transition);
    position: relative;
}

.step-item:nth-child(odd) .step-content {
    margin-right: 5%;
}

.step-item:nth-child(even) .step-content {
    margin-left: 5%;
}

.step-content:hover {
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.step-icon-wrapper {
    width: 10%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--info-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 8px 24px rgba(99, 102, 241, 0.3);
    transition: var(--transition);
    position: relative;
    flex-shrink: 0;
}

.step-item:nth-child(1) .step-icon {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
}

.step-item:nth-child(2) .step-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.step-item:nth-child(3) .step-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.step-item:nth-child(4) .step-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.step-item:nth-child(5) .step-icon {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.step-icon:hover {
    transform: scale(1.1) rotate(10deg);
    box-shadow: 0 12px 32px rgba(99, 102, 241, 0.4);
}

.step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--info-color));
    color: white;
    border-radius: 0.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.step-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.step-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.15), rgba(59, 130, 246, 0.15));
    color: var(--primary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 0.1rem;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* ============================================================
   18. FINANCE SHOWCASE SECTION (Dark Minimal)
   ============================================================ */

.finance-showcase-section {
    position: relative;
    background: linear-gradient(160deg, #0b0f1a 0%, #111827 40%, #0f172a 100%);
    padding: 20px 0;
    overflow: hidden;
    isolation: isolate;
}

/* Ambient background orbs */
.finance-showcase-section::before,
.finance-showcase-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    pointer-events: none;
    z-index: 0;
}

.finance-showcase-section::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(64, 224, 208, 0.08) 0%, transparent 70%);
    top: -10%;
    left: -5%;
    animation: orbFloat 20s ease-in-out infinite;
}

.finance-showcase-section::after {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    bottom: -10%;
    right: -5%;
    animation: orbFloat 25s ease-in-out infinite reverse;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* Subtle grid overlay */
.showcase-grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(64, 224, 208, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(64, 224, 208, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
    pointer-events: none;
    z-index: 1;
}

/* Content wrapper */
.finance-showcase-content {
   
    margin: 0 auto;
    padding: 0 10px;
    position: relative;
    z-index: 2;
}

/* Header & Label */
.showcase-header {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    position: relative;
}

.showcase-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.5rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #40e0d0;
    margin-bottom: 1rem;
}

.showcase-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #40e0d0;
    display: inline-block;
}

.showcase-title h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e2e8f0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 0;
}

.showcase-title h2 span {
    color: #40e0d0;
    font-weight: 300;
}

/* Text Rotator */
.showcase-rotator {
    flex: 1;
    position: relative;
    min-height: 80px;
    display: flex;
    align-items: center;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
}

.showcase-rotator::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 40px;
    background: #40e0d0;
    animation: pulseLine 2s ease-in-out infinite;
}

@keyframes pulseLine {
    0%, 100% { opacity: 0.3; height: 30px; }
    50% { opacity: 1; height: 50px; }
}

.showcase-items-container {
    position: relative;
    width: 100%;
    height: 60px;
    overflow: hidden;
}

.showcase-item {
    position: absolute;
    width: 100%;
    display: flex;
    align-items: center;
    opacity: 0;
    
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.showcase-item.active {
    opacity: 1;
    transform: translateY(0);
}

.showcase-item-text {
    font-size: 1.5rem;
    font-weight: 300;
    color: #40e0d0;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.showcase-cursor {
    display: inline-block;
    width: 2px;
    height: 1.2em;
    background: #40e0d0;
    margin-left: 4px;
    vertical-align: middle;
    animation: cursorBlink 1s step-end infinite;
}

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

/* Main Content Grid */
.showcase-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
}

.showcase-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.showcase-visual::before,
.showcase-visual::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(64, 224, 208, 0.1);
}

.showcase-visual::before {
    width: 320px;
    height: 320px;
    animation: ringPulse 4s ease-in-out infinite;
}

.showcase-visual::after {
    width: 260px;
    height: 260px;
    border-color: rgba(64, 224, 208, 0.15);
    animation: ringPulse 4s ease-in-out infinite 0.5s;
}

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

.showcase-hand-image {
    position: relative;
    z-index: 2;
    max-height: 380px;
    width: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.4));
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-hand-image:hover {
    transform: translateY(-8px) scale(1.02);
    filter: drop-shadow(0 30px 60px rgba(64, 224, 208, 0.15));
}

/* Description */
.showcase-description {
    max-width: 480px;
}

.showcase-description p {
    font-size: 1.05rem;
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.showcase-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2.5rem;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 0.625rem 0;
    color: #e2e8f0;
    font-size: 0.95rem;
    font-weight: 500;
}

.showcase-features li::before {
    content: '✓';
    width: 20px;
    height: 20px;
    background: rgba(64, 224, 208, 0.15);
    border: 1.5px solid #40e0d0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #40e0d0;
    font-size: 0.7rem;
    font-weight: 700;
}

.showcase-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.15), rgba(64, 224, 208, 0.05));
    border: 1px solid rgba(64, 224, 208, 0.3);
    border-radius: 8px;
    color: #40e0d0;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.showcase-cta:hover {
    background: linear-gradient(135deg, rgba(64, 224, 208, 0.25), rgba(64, 224, 208, 0.1));
    border-color: #40e0d0;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(64, 224, 208, 0.15);
}

/* Stats Grid */
.finance-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.finance-stats::before {
    content: '';
    position: absolute;
    top: -2rem;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.06), transparent);
}

.stat-card {
    position: relative;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #40e0d0, transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 0%, rgba(64, 224, 208, 0.15), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(64, 224, 208, 0.25);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(64, 224, 208, 0.1);
}

.stat-card:hover::before,
.stat-card:hover::after {
    opacity: 1;
}

.stat-card h3 {
    position: relative;
    z-index: 1;
    font-size: 2rem;
    font-weight: 700;
    color: #40e0d0;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.stat-card p {
    position: relative;
    z-index: 1;
    font-size: 0.8rem;
    color: #94a3b8;
    margin: 0;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-weight: 500;
}

.showcase-divider {
    width: 1px;
    height: 80px;
    background: linear-gradient(180deg, transparent, rgba(64, 224, 208, 0.2), transparent);
    margin: 0 2rem;
}

/* ============================================================
   19. ABOUT PAGE STYLES (Matches Landing Page)
   ============================================================ */
.about-hero {
    position: relative;
    padding: 140px 20px 100px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    text-align: center;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: pulse 8s ease-in-out infinite;
}

.about-hero h1 {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--dark-text);
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 1;
}

.about-hero p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

.section-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-alt {
    background: var(--light-bg);
}

.story-text {
    font-size: 1.05rem;
    color: #334155;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2.5rem 2rem;
    transition: var(--transition);
}

.value-card:hover {
    box-shadow: var(--shadow-primary);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}

.value-card:nth-child(2) .value-icon {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
}

.value-card:nth-child(3) .value-icon {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
}

.value-card:nth-child(4) .value-icon {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
}

.value-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.75rem;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin: 0;
}

.trust-section {
    background: linear-gradient(135deg, #0f172a 0%, #1a202c 50%, #0f172a 100%);
    color: white;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(30, 144, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.trust-section .section-title {
    color: white;
}

.trust-section .section-subtitle {
    color: #94a3b8;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.trust-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.trust-list li {
    font-size: 1rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.trust-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #40e0d0;
    font-weight: 700;
}

.contact-box {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 2.5rem;
    max-width: 700px;
    margin: 3rem auto 0;
    transition: var(--transition);
}

.contact-box:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: rgba(99, 102, 241, 0.3);
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    color: #334155;
}

.contact-row:last-child {
    margin-bottom: 0;
}

.contact-row strong {
    color: var(--dark-text);
    min-width: 100px;
    font-weight: 600;
}

.contact-row a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-row a:hover {
    text-decoration: underline;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 80px 20px;
    text-align: center;
    color: white;
}

.cta-section h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.about-footer {
    background: #0f172a;
    padding: 2rem 20px;
    text-align: center;
}

.about-footer p {
    color: #94a3b8;
    font-size: 0.9rem;
    margin: 0;
}

.about-footer a {
    color: #94a3b8;
    text-decoration: none;
    margin: 0 0.5rem;
    transition: color 0.2s;
}

.about-footer a:hover {
    color: #40e0d0;
}

/* Main Footer (Dark) */
footer.footer {
    background: #0f172a;
    padding: 60px 0 0;
}

footer.footer h4,
footer.footer h5 {
    color: white;
    font-weight: 600;
}

footer.footer p {
    color: #94a3b8;
}

footer.footer a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

footer.footer a:hover {
    color: #40e0d0;
}

footer.footer .footer-link li {
    margin-bottom: 0.5rem;
}

footer.footer .sub-footer {
    border-top: 1px solid rgba(148, 163, 184, 0.1);
    margin-top: 2rem;
    padding: 1.5rem 0;
}

footer.footer .sub-footer p {
    margin: 0;
    font-size: 0.875rem;
}

/* ============================================================
   20. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
}

p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--dark-text);
}

/* ============================================================
   20.5 TESTIMONIAL CARDS
   ============================================================ */
.testaments-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.testaments-cards .card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 0.1rem;
    padding: 1.5rem;
    transition: var(--transition);
    height: 100%;
}

.testaments-cards .card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(99, 102, 241, 0.3);
}

.testaments-cards .card-body {
    padding: 0;
}

.testaments-cards h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-text);
    margin-bottom: 0.25rem;
}

.testaments-cards h6 {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 0;
}

.testaments-cards p {
    font-size: 0.9rem;
    color: var(--secondary-color);
    line-height: 1.6;
    margin-bottom: 0;
}

.testaments-cards .avtar {
    width: 48px;
    height: 48px;
    border-radius: 0.1rem;
    overflow: hidden;
}

.testaments-cards .avtar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ============================================================
   21. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .showcase-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 2rem;
    }

    .showcase-title h2 {
        font-size: 1.6rem !important;
        letter-spacing: 0.5px;
    }

    .showcase-item-text {
        font-size: 1.8rem;
    }

    .showcase-divider {
        display: none;
    }
}

@media (max-width: 768px) {
    header {
        padding: 80px 0 60px;
    }

    header h1,
    header .h1 {
        font-size: 2rem !important;
    }

    header h4 {
        font-size: 1rem;
    }

    section {
        padding: 60px 0;
    }

    .title h2,
    section .title .h1,
    section h2.h1 {
        font-size: 1.6rem !important;
    }

    section h2,
    section .h2 {
        font-size: 1.6rem;
    }

    .btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.9rem;
    }

    .about-hero {
        padding: 100px 20px 60px;
    }

    .about-hero h1 {
        font-size: 1.8rem !important;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trust-section {
        padding: 60px 20px;
    }

    .trust-grid {
        gap: 2rem;
    }

    .cta-section h2 {
        font-size: 1.5rem !important;
    }

    .contact-box {
        padding: 1.75rem;
    }

    .finance-showcase-section {
        padding: 80px 0;
    }

    .showcase-title h2 {
        font-size: 1.4rem !important;
        letter-spacing: 0.25px;
    }

    .showcase-rotator {
        height: 100px;
    }

    .showcase-rotator::before {
        height: 50px;
    }

    .showcase-item-text {
        font-size: 1.4rem;
    }

    .finance-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .stat-card h3 {
        font-size: 1.75rem;
    }

    .showcase-hand-image {
        max-height: 250px;
    }

    .steps-ladder {
        padding: 1rem 0;
    }

    .steps-ladder::before {
        left: 40px;
    }

    .step-item {
        flex-direction: column;
        margin-bottom: 2.5rem;
        position: relative;
        padding-left: 100px;
    }

    .step-item:nth-child(even) {
        flex-direction: column;
    }

    .step-content {
        width: 100%;
        margin: 0 !important;
    }

    .step-icon-wrapper {
        width: auto;
        margin: 0;
        position: absolute;
        left: 0;
        top: 0;
    }

    .step-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .step-content h3 {
        font-size: 1.25rem;
    }

    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .testaments-cards {
        grid-template-columns: 1fr;
    }

    .pricing-filter-wrapper {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }

    .pricing-filter-label {
        font-size: 0.9rem;
    }

    .pricing-toggle-label {
        font-size: 0.8rem;
        min-width: 40px;
    }

    .pricing-filter-container {
        margin-bottom: 3rem;
    }
}

@media (max-width: 480px) {
    header {
        padding: 60px 0 40px;
    }

    header h1,
    header .h1 {
        font-size: 1.6rem !important;
    }

    section {
        padding: 40px 0;
    }

    .title h2,
    section .title .h1,
    section h2.h1 {
        font-size: 1.35rem !important;
    }

    section h2,
    section .h2 {
        font-size: 1.35rem;
    }

    .customize-list li {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .about-hero h1 {
        font-size: 1.5rem !important;
    }

    .section-title {
        font-size: 1.35rem !important;
    }

    .contact-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .finance-showcase-section {
        padding: 60px 0;
    }

    .showcase-title h2 {
        font-size: 1.2rem !important;
        letter-spacing: 0.2px;
    }

    .showcase-rotator {
        height: 80px;
    }

    .showcase-rotator::before {
        height: 40px;
    }

    .showcase-item-text {
        font-size: 1rem;
    }

    .finance-stats {
        grid-template-columns: 1fr;
        margin-top: 2rem;
        padding-top: 1.5rem;
    }

    .stat-card {
        padding: 1.25rem;
    }

    .stat-card h3 {
        font-size: 1.5rem;
    }

    .stat-card p {
        font-size: 0.75rem;
    }

    .showcase-hand-image {
        display: none;
    }

    .steps-ladder::before {
        left: 30px;
    }

    .step-item {
        padding-left: 85px;
    }

    .step-icon {
        width: 60px;
        height: 60px;
        font-size: 1.75rem;
    }

    .step-content {
        padding: 1.5rem;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }

    .step-content p {
        font-size: 0.9rem;
    }

    .pricing-filter-wrapper {
        padding: 0.75rem;
        gap: 0.75rem;
    }

    .pricing-toggle-switch {
        width: 60px;
        height: 32px;
    }

    .pricing-toggle-slider::before {
        height: 22px;
        width: 22px;
    }

    .pricing-toggle-switch input:checked + .pricing-toggle-slider::before {
        transform: translateX(28px);
    }

    .pricing-filter-label {
        font-size: 0.85rem;
    }

    .pricing-toggle-label {
        font-size: 0.75rem;
        min-width: 35px;
    }
}

/* ============================================================
   22. ACCESSIBILITY & UTILITIES
   ============================================================ */
.btn:focus,
.nav-link:focus,
.pricing-toggle-slider:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

@media print {
    .navbar,
    .btn,
    .finance-bg-icons,
    .finance-bg-animation,
    footer {
        display: none !important;
    }
}