
/* ======== CSS VARIABLES ======== */
:root {
    --ik-dark: #0a0a1a;
    --ik-dark-2: #0f1628;
    --ik-dark-3: #141e35;
    --ik-dark-4: #1a2744;
    --ik-accent: #00c896;
    --ik-accent-glow: rgba(0, 200, 150, 0.25);
    --ik-purple: #6c63ff;
    --ik-orange: #f59e0b;
    --ik-blue: #3b82f6;
    --ik-text-muted: rgba(255,255,255,0.5);
}

/* ======== HERO ======== */
.ik-hero {
    background: var(--ik-dark);
    padding: 120px 0 80px;
    min-height: 100vh;
}
.min-vh-hero { min-height: 70vh; }

.ik-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 1;
}
.ik-glow-1 {
    width: 500px; height: 500px;
    background: rgba(108, 99, 255, 0.15);
    top: -100px; left: -100px;
}
.ik-glow-2 {
    width: 400px; height: 400px;
    background: rgba(0, 200, 150, 0.12);
    bottom: 0; right: 0;
}
.ik-grid-overlay {
    position: absolute; inset: 0; z-index: 1;
    background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
                      linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

/* Eyebrow */
.ik-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0,200,150,0.1);
    border: 1px solid rgba(0,200,150,0.3);
    border-radius: 50px;
    padding: 6px 16px;
}
.ik-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--ik-accent);
    animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.ik-eyebrow-text { color: var(--ik-accent); font-size: 0.8rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; }

/* Hero text */
.ik-hero-title { font-size: clamp(2.2rem, 5vw, 3.8rem); line-height: 1.15; color: #fff; }
.ik-accent { color: var(--ik-accent) !important; }
.ik-hero-sub { color: var(--ik-text-muted); font-size: 1.05rem; max-width: 520px; line-height: 1.7; }

/* Badges */
.ik-badge-pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.75);
    border-radius: 50px;
    padding: 8px 18px;
    font-size: 0.82rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
}

/* Buttons */
.ik-btn-primary {
    display: inline-block;
    background: var(--ik-accent);
    color: #0a0a1a;
    font-weight: 700;
    padding: 14px 32px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
    box-shadow: 0 0 30px var(--ik-accent-glow);
}
.ik-btn-primary:hover {
    background: #00e6ac;
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(0,200,150,0.4);
    color: #0a0a1a;
}
.ik-btn-ghost {
    display: inline-block;
    background: transparent;
    color: #fff;
    font-weight: 600;
    padding: 13px 30px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.95rem;
}
.ik-btn-ghost:hover {
    border-color: var(--ik-accent);
    color: var(--ik-accent);
    transform: translateY(-2px);
}

/* Social proof */
.ik-social-proof { display: flex; align-items: center; gap: 14px; }
.ik-avatar-stack { display: flex; }
.ik-av {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 2px solid var(--ik-dark);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.75rem; color: #fff;
    margin-left: -8px;
}
.ik-av:first-child { margin-left: 0; }
.ik-proof-text { color: var(--ik-text-muted); font-size: 0.85rem; }
.ik-proof-text strong { color: #fff; }

/* Phone mockup */
.ik-phone-wrap { position: relative; width: 320px; height: 500px; display: flex; align-items: center; justify-content: center; }
.ik-phone {
    position: relative; z-index: 5;
    width: 240px; height: 460px;
    background: #141b2d;
    border-radius: 40px;
    border: 2px solid rgba(255,255,255,0.08);
    box-shadow: 0 30px 60px rgba(0,0,0,0.6);
    display: flex; align-items: center; justify-content: center;
    animation: phone-float 4s ease-in-out infinite;
}
@keyframes phone-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-16px); }
}
.ik-phone-screen { width: 100%; display: flex; align-items: center; justify-content: center; }
.ik-phone-content { position: relative; z-index: 2; text-align: center; width: 100%; padding: 0 20px; }
.ik-disbursal-card {
    background: #1f2937;
    border: 1px solid rgba(0,200,150,0.3);
    border-radius: 20px;
    padding: 32px 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4), inset 0 0 20px rgba(0,200,150,0.05);
}
.ik-dc-icon-circle {
    width: 44px; height: 44px;
    background: var(--ik-accent);
    color: #141b2d;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    margin: 0 auto 16px;
    box-shadow: 0 0 20px rgba(0,200,150,0.4);
}
.ik-dc-title { color: rgba(255,255,255,0.5); font-size: 0.7rem; margin-bottom: 8px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; }
.ik-dc-amount { color: #fff; font-size: 1.8rem; font-weight: 900; margin-bottom: 8px; letter-spacing: -0.5px; }
.ik-dc-status { color: var(--ik-accent); font-size: 0.75rem; font-weight: 600; }

/* Floating icons */
.ik-float-icon {
    position: absolute;
    width: 48px; height: 48px;
    border-radius: 14px;
    background: #1f2937;
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--ik-accent);
    font-size: 1.1rem;
    box-shadow: 0 15px 30px rgba(0,0,0,0.5);
    animation: phone-float 3s ease-in-out infinite;
    z-index: 6;
}
.ik-fi-1 { top: 30px; right: 10px; animation-delay: 0s; }
.ik-fi-2 { bottom: 150px; left: 0px; animation-delay: 1s; }
.ik-fi-3 { bottom: 30px; right: 20px; animation-delay: 0.5s; }

/* Podium */
.ik-podium {
    position: absolute; bottom: -20px; left: 50%;
    transform: translateX(-50%);
    width: 220px; height: 20px;
    background: radial-gradient(ellipse at center, var(--ik-accent-glow) 0%, transparent 70%);
    z-index: 4;
}

/* ======== TRUSTED SECTION ======== */
.ik-trusted-section {
    background: #fff;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}
.ik-trusted-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}
.ik-logo-item {
    color: #bbb;
    font-weight: 700;
    font-size: 0.95rem;
    transition: color 0.3s;
    display: flex; align-items: center;
}
.ik-logo-item:hover { color: #555; }
.ik-logo-featured { color: #00c896; }
.ik-logo-img-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    transition: all 0.3s ease;
}
.ik-logo-img-item:hover {
    transform: scale(1.05);
}
.ik-logo-img-item img {
    height: 36px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
    mix-blend-mode: multiply;
}

/* ======== WHY CHOOSE US (STEPS) SECTION ======== */
.ik-steps-section { background: #f8fafc; }
.ik-steps-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: #0f172a; line-height: 1.2; }
.ik-steps-sub { color: #64748b; font-size: 0.95rem; max-width: 600px; }
.ik-step-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    transition: all 0.3s ease;
}
.ik-step-card:hover {
    border-color: var(--ik-accent);
    box-shadow: 0 12px 40px rgba(0,200,150,0.1);
    transform: translateY(-5px);
}
.ik-step-icon {
    width: 80px; height: 80px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
}
.ik-step-blue { background: rgba(59,130,246,0.1); color: var(--ik-blue); }
.ik-step-green { background: rgba(0,200,150,0.1); color: var(--ik-accent); }
.ik-step-orange { background: rgba(245,158,11,0.1); color: var(--ik-orange); }
.ik-step-title { font-weight: 700; font-size: 1.05rem; color: #0f172a; margin-bottom: 10px; }
.ik-step-desc { color: #64748b; font-size: 0.88rem; line-height: 1.6; }

/* ======== FEATURES SECTION ======== */
.ik-features-section {
    background: var(--ik-dark-2);
    padding: 80px 0;
}
.py-lg-6 { padding-top: 80px !important; padding-bottom: 80px !important; }
.ik-section-eyebrow {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--ik-accent);
}
.ik-section-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); line-height: 1.2; font-weight: 800; }

/* Feature cards */
.ik-feat-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 24px;
    transition: all 0.3s ease;
    height: 100%;
}
.ik-feat-card:hover {
    background: rgba(255,255,255,0.07);
    border-color: rgba(0,200,150,0.3);
    transform: translateY(-4px);
}
.ik-feat-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; margin-bottom: 16px;
}
.ik-feat-green { background: rgba(0,200,150,0.15); color: var(--ik-accent); }
.ik-feat-purple { background: rgba(108,99,255,0.15); color: var(--ik-purple); }
.ik-feat-blue { background: rgba(59,130,246,0.15); color: var(--ik-blue); }
.ik-feat-orange { background: rgba(245,158,11,0.15); color: var(--ik-orange); }
.ik-feat-title { color: #fff; font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.ik-feat-desc { color: var(--ik-text-muted); font-size: 0.85rem; line-height: 1.6; flex: 1; }
.ik-feat-link {
    display: inline-flex; align-items: center; justify-content: center;
    width: 32px; height: 32px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    transition: all 0.3s;
    margin-top: 12px;
}
.ik-feat-link:hover { background: var(--ik-accent); border-color: var(--ik-accent); color: #000; }

/* ======== STATS SECTION ======== */
.ik-stats-section {
    background: var(--ik-dark-3);
    padding: 60px 0;
    border-top: 1px solid rgba(255,255,255,0.06);
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ik-stat-item { padding: 20px; }
.ik-stat-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    background: rgba(0,200,150,0.1);
    border: 1px solid rgba(0,200,150,0.2);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--ik-accent);
    margin: 0 auto 14px;
}
.ik-stat-number { font-size: 2.2rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.ik-stat-label { color: var(--ik-text-muted); font-size: 0.85rem; }

/* ======== PRODUCTS SECTION ======== */
.ik-products-section { background: #f8fafc; padding: 80px 0; }
.ik-section-eyebrow-dark {
    font-size: 0.75rem; font-weight: 700; letter-spacing: 2px;
    text-transform: uppercase; color: var(--ik-accent);
}
.ik-products-title { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; color: #0f172a; line-height: 1.2; }
.ik-products-sub { color: #64748b; font-size: 0.95rem; line-height: 1.7; }

/* Product cards */
.ik-product-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 28px 24px 24px;
    height: 100%;
    transition: all 0.3s ease;
}
.ik-product-card:hover {
    border-color: var(--ik-accent);
    box-shadow: 0 12px 40px rgba(0,200,150,0.1);
    transform: translateY(-4px);
}
.ik-pc-icon {
    width: 52px; height: 52px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; margin-bottom: 18px;
}
.ik-pci-blue { background: rgba(59,130,246,0.1); color: var(--ik-blue); }
.ik-pci-green { background: rgba(0,200,150,0.1); color: var(--ik-accent); }
.ik-pci-purple { background: rgba(108,99,255,0.1); color: var(--ik-purple); }
.ik-pci-orange { background: rgba(245,158,11,0.1); color: var(--ik-orange); }
.ik-pc-title { font-weight: 700; font-size: 1rem; color: #0f172a; margin-bottom: 10px; }
.ik-pc-desc { color: #64748b; font-size: 0.85rem; line-height: 1.6; margin-bottom: 0; }
.ik-pc-num {
    font-size: 2.2rem;
    font-weight: 800;
    color: rgba(59,130,246,0.15);
    line-height: 1;
    margin-bottom: 4px;
    font-family: 'Georgia', serif;
}
.ik-pc-link { color: var(--ik-accent); text-decoration: none; font-size: 0.85rem; font-weight: 600; transition: gap 0.2s; }
.ik-pc-link:hover { color: #009970; }

/* ======== PLANS SECTION ======== */
.ik-plans-section { background: var(--ik-dark-2); }
.ik-plans-title { font-size: clamp(1.8rem, 3.5vw, 2.5rem); font-weight: 800; color: #fff; }
.ik-plans-sub { color: var(--ik-text-muted); font-size: 0.95rem; max-width: 600px; }
.ik-plan-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 24px;
    padding: 32px 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
}
.ik-plan-card:hover { transform: translateY(-6px); border-color: rgba(0,200,150,0.3); }
.ik-plan-featured {
    background: rgba(0,200,150,0.08);
    border-color: var(--ik-accent);
    box-shadow: 0 0 40px rgba(0,200,150,0.15);
}
.ik-plan-badge {
    position: absolute; top: 0; right: 0;
    background: var(--ik-accent); color: #000;
    padding: 6px 16px; font-size: 0.75rem; font-weight: 700;
    border-bottom-left-radius: 12px;
}
.ik-plan-name { color: var(--ik-text-muted); font-weight: 600; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.ik-plan-price { font-size: 2.4rem; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 4px; }
.ik-plan-gst { color: var(--ik-text-muted); font-size: 0.8rem; margin-bottom: 24px; }
.ik-plan-features { margin-bottom: 24px; }
.ik-plan-features li { color: rgba(255,255,255,0.75); font-size: 0.85rem; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 8px; }

/* ======== CTA SECTION ======== */
.ik-cta-section {
    background: linear-gradient(135deg, #0a0a1a 0%, #0f1a35 50%, #0a1a0a 100%);
    position: relative;
    overflow: hidden;
}
.ik-cta-section::before {
    content: '';
    position: absolute;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(0,200,150,0.1) 0%, transparent 70%);
    top: -100px; right: 100px;
    border-radius: 50%;
    pointer-events: none;
}
.ik-cta-title { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 800; line-height: 1.2; }
.ik-cta-mockup { perspective: 800px; }
.ik-cta-card {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(0,200,150,0.25);
    border-radius: 24px;
    padding: 32px 28px;
    width: 300px;
    backdrop-filter: blur(20px);
    transform: rotateY(-8deg) rotateX(3deg);
    transition: transform 0.4s ease;
    box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.ik-cta-card:hover { transform: rotateY(0deg) rotateX(0deg); }
.ik-cta-card-icon { font-size: 2rem; color: var(--ik-accent); margin-bottom: 12px; }
.ik-cta-card-label { color: var(--ik-text-muted); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.ik-cta-card-amount { font-size: 2rem; font-weight: 800; color: #fff; margin: 6px 0; }
.ik-cta-card-trend { color: var(--ik-accent); font-size: 0.8rem; font-weight: 600; margin-bottom: 20px; }
.ik-mini-chart { display: flex; align-items: flex-end; gap: 4px; }
.ik-mc-bar { width: 24px; border-radius: 4px 4px 0 0; background: rgba(255,255,255,0.1); }
.ik-mc-accent { background: var(--ik-accent); }


/* Dark modal input */
.ik-dark-input {
    background: rgba(255,255,255,0.06) !important;
    border: 1px solid rgba(255,255,255,0.15) !important;
    color: #fff !important;
    border-radius: 12px;
}
.ik-dark-input:focus {
    background: rgba(255,255,255,0.1) !important;
    border-color: var(--ik-accent) !important;
    box-shadow: 0 0 0 3px rgba(0,200,150,0.15) !important;
    color: #fff !important;
}
.ik-dark-input::placeholder { color: rgba(255,255,255,0.3) !important; }

/* Fix Bootstrap Floating Labels on Dark Backgrounds */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--ik-accent) !important;
}
.form-floating > .form-control:focus ~ label::after,
.form-floating > .form-control:not(:placeholder-shown) ~ label::after,
.form-floating > .form-select ~ label::after {
    background-color: transparent !important;
}
.form-control.bg-dark:focus {
    box-shadow: 0 0 0 3px rgba(0,200,150,0.15);
    border-color: var(--ik-accent) !important;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 991.98px) {
    .ik-hero { padding: 100px 0 60px; }
    .ik-hero-title { font-size: 2.2rem; }
    .ik-phone-wrap { width: 220px; height: 380px; }
    .ik-phone { width: 170px; height: 330px; }
    .ik-cta-card { width: 260px; transform: none; }
}
@media (max-width: 767.98px) {
    .ik-hero { padding: 90px 0 50px; min-height: auto; }
    .ik-hero-title { font-size: 1.8rem; }
    .ik-phone-wrap { display: none; }
    .ik-section-title { font-size: 1.6rem; }
    .ik-cta-card { width: 100%; max-width: 300px; margin: 0 auto; transform: none; }
    .ik-stat-number { font-size: 1.8rem; }
    .ik-badge-pill { font-size: 0.75rem; padding: 6px 14px; }
}

/* ======== APP-STYLE BOTTOM NAVIGATION ======== */
.ik-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255,255,255,0.08);
    z-index: 9999;
    padding: 12px 15px;
    padding-bottom: calc(15px + env(safe-area-inset-bottom, 0px));
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 -10px 30px rgba(0,0,0,0.3);
}
.ik-bn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: rgba(255,255,255,0.4);
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 600;
    transition: all 0.3s;
    width: 20%;
}
.ik-bn-item i {
    font-size: 1.25rem;
    margin-bottom: 4px;
    transition: all 0.3s;
}
.ik-bn-item.active {
    color: var(--ik-accent);
}
.ik-bn-item:hover {
    color: #fff;
}
/* Center Floating Button */
.ik-bn-center {
    position: relative;
    width: 20%;
    display: flex;
    justify-content: center;
}
.ik-bn-action {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed, #4f46e5);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: absolute;
    bottom: -10px;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.5);
    border: 4px solid rgba(10, 10, 26, 0.95);
    transition: transform 0.3s;
    text-decoration: none;
}
.ik-bn-action:hover {
    transform: translateY(-5px);
    color: #fff;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.7);
}

/* Modal Dark Theme Styling */
.ik-dark-modal {
    background: rgba(15, 23, 42, 0.95) !important;
    backdrop-filter: blur(25px);
    border: 1px solid rgba(255,255,255,0.1) !important;
    border-radius: 24px;
}
.modal-backdrop.show {
    opacity: 0.7;
    backdrop-filter: blur(5px);
}
.ik-dark-modal .btn-close {
    filter: invert(1) grayscale(100%) brightness(200%);
}

@media (max-width: 991.98px) {
    /* Prevent body content from hiding behind bottom nav on mobile */
    body {
        padding-bottom: 100px;
    }
}

