:root {
    --blue: #003286;
    --blue-light: #003286;
    --blue-dark: #003286;
    --blue-glow: rgba(18, 71, 255, 0.18);
    --gold: #FFB800;
    --bg: #F4F6FF;
    --surface: #ffffff;
    --text: #0B0E1A;
    --text-muted: #6B7280;
    --border: rgba(18, 71, 255, 0.12);
    --nav-h: 72px;
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
    cursor: default;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: sans-serif;
}

/* ============ SCROLLBAR ============ */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #e8ecff;
}

::-webkit-scrollbar-thumb {
    background: var(--blue);
    border-radius: 3px;
}

/* ============ CURSOR DOT ============ */
#cursor {
    width: 18px;
    height: 18px;
    background: var(--blue);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.12s ease, width 0.2s, height 0.2s, opacity 0.2s;
    mix-blend-mode: multiply;
}

/* ============ NAVBAR ============ */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 82px;
    background: rgb(255, 255, 255);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(18, 71, 255, 0.08);
    display: flex;
    align-items: center;
    transition: all 0.3s;
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 32px rgba(18, 71, 255, 0.08);
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    width: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    font-family: sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--blue);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--text);
}

.logo-icon {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-links a {
    color: black;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 8px 16px;
    border-radius: 50px;
    transition: all 0.2s;
}

.nav-links a:hover {
    color: var(--blue);
    background: rgba(18, 71, 255, 0.06);
}

.nav-cta {
    background: #24447a linear-gradient(89deg, #24447a 0%, #410025 100%) 0% 0% no-repeat padding-box !important;
    ;
    color: #fff !important;
    padding: 10px 24px !important;
    border-radius: 50px !important;
    font-weight: 600 !important;
    box-shadow: 0 4px 16px var(--blue-glow);
    transition: all 0.25s !important;
}

.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px var(--blue-glow) !important;
    background: var(--blue-dark) !important;
}

/* ============ HERO ============ */
.hero {
    min-height: 100vh;
    padding: calc(var(--nav-h) + 60px) 0 80px;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at 80% 10%, rgba(18, 71, 255, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 10% 80%, rgba(255, 184, 0, 0.06) 0%, transparent 50%),
        #F4F6FF;
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(18, 71, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(18, 71, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.hero-blob {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-blob-1 {
    width: 500px;
    height: 500px;
    background: rgba(18, 71, 255, 0.12);
    top: -100px;
    right: -100px;
    animation: blobFloat 8s ease-in-out infinite;
}

.hero-blob-2 {
    width: 350px;
    height: 350px;
    background: rgba(255, 184, 0, 0.12);
    bottom: 50px;
    left: -80px;
    animation: blobFloat 10s ease-in-out infinite reverse;
}

.hero-blob-3 {
    width: 250px;
    height: 250px;
    background: rgba(18, 71, 255, 0.08);
    top: 40%;
    left: 40%;
    animation: blobFloat 6s ease-in-out infinite 2s;
}

@keyframes blobFloat {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    33% {
        transform: translate(30px, -20px) scale(1.05);
    }

    66% {
        transform: translate(-20px, 15px) scale(0.97);
    }
}

.hero-inner {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(18, 71, 255, 0.08);
    border: 1px solid rgba(18, 71, 255, 0.15);
    color: var(--blue);
    font-weight: 600;
    font-size: 0.85rem;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.5rem;
}

.eyebrow-dot {
    width: 7px;
    height: 7px;
    background: var(--blue);
    border-radius: 50%;
    animation: pulse 2s ease infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(0.8);
    }
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.12;
    letter-spacing: -1.5px;
    color: #fff;
    margin-bottom: 1.5rem;
}

.hero-title .accent {
    color: var(--blue);
    position: relative;
    display: inline-block;
}

.hero-title .accent::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gold);
    border-radius: 3px;
    opacity: 0.5;
    z-index: -1;
    transform-origin: left;
    animation: underlineGrow 1s ease 0.8s both;
}

@keyframes underlineGrow {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.hero-sub {
    color: #fff !important;
    font-size: 1.15rem;
    line-height: 1.7;
    max-width: 500px;
    margin-bottom: 14px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 14px;
}

.hero-stat {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(18, 71, 255, 0.1);
    border-radius: 18px;
    padding: 1rem 0.75rem;
    text-align: center;
    transition: all 0.3s;
    backdrop-filter: blur(8px);
}

.hero-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(18, 71, 255, 0.12);
    border-color: rgba(18, 71, 255, 0.3);
}

.stat-num {
    font-family: sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--blue);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-lbl {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 500;
}

.stat-icon {
    font-size: 21px;
    color: var(--blue);
    margin-bottom: 9px;
    display: block;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #24447a linear-gradient(89deg, #24447a 0%, #410025 100%) 0% 0% no-repeat padding-box !important;
    color: #fff;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(18, 71, 255, 0.35);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(18, 71, 255, 0.45);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: var(--text);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 9px 24px;
    border-radius: 60px;
    text-decoration: none;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue);
    background: rgba(18, 71, 255, 0.04);
}

.play-icon {
    width: 36px;
    height: 36px;
    background: var(--blue);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    box-shadow: 0 4px 12px var(--blue-glow);
    flex-shrink: 0;
}

/* FORM CARD */
.hero-form-wrap {
    position: relative;
}

.hero-form-wrap::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--blue), var(--gold), var(--blue));
    border-radius: 30px;
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
    background-size: 200% 200%;
    animation: borderGradient 3s ease infinite;
}

.hero-form-wrap:hover::before {
    opacity: 1;
}

@keyframes borderGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.form-card {
    background: #fff;
    border-radius: 28px;
    padding: 2.5rem;
    box-shadow: 0 30px 80px rgba(18, 71, 255, 0.18), 0 0 0 1px rgba(18, 71, 255, 0.08);
    position: relative;
    z-index: 1;
    transition: transform 0.4s;
}

.hero-form-wrap:hover .form-card {
    transform: scale(1.01);
}

.form-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, #fff5e0, #fff9ed);
    border: 1px solid rgba(255, 184, 0, 0.3);
    color: #B07800;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.form-card h3 {
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.4rem;
}

.form-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    display: block;
}

.input-wrap {
    position: relative;
    margin-bottom: 1.2rem;
}

.input-wrap i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 0.9rem;
}

.input-wrap input {
    width: 100%;
    padding: 14px 16px 14px 44px;
    background: #F8FAFF;
    border: 1.5px solid rgba(18, 71, 255, 0.12);
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    transition: all 0.2s;
}

.input-wrap input:focus {
    border-color: var(--blue);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(18, 71, 255, 0.1);
}

.input-wrap input::placeholder {
    color: #b0b7c8;
}

.form-select {
    width: 100%;
    padding: 14px 16px;
    background: #F8FAFF;
    border: 1.5px solid rgba(18, 71, 255, 0.12);
    border-radius: 14px;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    outline: none;
    cursor: pointer;
    margin-bottom: 1.2rem;
    transition: all 0.2s;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' fill='none' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.form-select:focus {
    border-color: var(--blue);
    background-color: #fff;
    box-shadow: 0 0 0 4px rgba(18, 71, 255, 0.1);
}

.form-submit {
    width: 100%;
    padding: 16px;
    background: #24447a linear-gradient(89deg, #24447a 0%, #410025 100%) 0% 0% no-repeat padding-box !important;
    color: #fff;
    border: none;
    border-radius: 14px;
    font-family: sans-serif;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 8px 24px rgba(18, 71, 255, 0.3);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.form-submit::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

.form-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 36px rgba(18, 71, 255, 0.4);
}

.form-submit:hover::after {
    opacity: 1;
}

.form-trust {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 1.2rem;
    justify-content: center;
}

.trust-avatar {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid #fff;
    overflow: hidden;
    margin-left: -8px;
    background: linear-gradient(135deg, #c8d4ff, var(--blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #fff;
}

.trust-avatar:first-child {
    margin-left: 0;
}

.form-trust small {
    color: var(--text-muted);
    font-size: 0.78rem;
}

.floating-badge {
    position: absolute;
    background: #fff;
    border-radius: 50px;
    padding: 8px 16px;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    animation: floatBadge 3s ease-in-out infinite;
    z-index: 3;
    white-space: nowrap;
}

.floating-badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
}

@keyframes floatBadge {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.fb-1 {
    top: -20px;
    right: 30px;
    animation-delay: 0s;
}

.fb-2 {
    bottom: 30px;
    left: -30px;
    animation-delay: 1.5s;
}

/* ============ LOGOS ============ */
.logos-section {
    background: #fff;
    padding: 2.5rem 0;
    border-top: 1px solid rgba(18, 71, 255, 0.06);
    border-bottom: 1px solid rgba(18, 71, 255, 0.06);
    overflow: hidden;
}

.logos-label {
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.logos-track {
    display: flex;
    gap: 4rem;
    align-items: center;
    animation: scrollLogos 25s linear infinite;
    width: max-content;
}

.logos-track:hover {
    animation-play-state: paused;
}

@keyframes scrollLogos {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-item {
    font-family: sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #C4CAD6;
    white-space: nowrap;
    transition: color 0.3s;
    cursor: default;
}

.logo-item:hover {
    color: var(--blue);
}

/* ============ SECTION STYLES ============ */
.section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: auto;
    padding: 0 2rem;
}

.section-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(18, 71, 255, 0.07);
    color: var(--blue);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 1.2rem;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-title span {
    color: var(--blue);
}

.section-sub {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 540px;
}

.text-center {
    text-align: center;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ============ HOW IT WORKS ============ */
.how-section {
    background: #fff;
}

.how-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 4rem;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 15%;
    width: 70%;
    height: 2px;
    background: linear-gradient(90deg, var(--blue), rgba(18, 71, 255, 0.2), var(--blue));
    z-index: 0;
}

.step-card {
    text-align: center;
    padding: 0 1.5rem;
    position: relative;
    z-index: 1;
}

.step-num {
    width: 90px;
    height: 90px;
    background: #fff;
    border: 2.5px solid var(--blue);
    border-radius: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--blue);
    margin: 0 auto 1.5rem;
    position: relative;
    transition: all 0.35s;
    box-shadow: 0 0 0 0 var(--blue-glow);
}

.step-card:hover .step-num {
    background: var(--blue);
    color: #fff;
    transform: translateY(-6px) rotate(-6deg);
    box-shadow: 0 16px 32px var(--blue-glow);
}

.step-icon {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 28px;
    height: 28px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #7a5600;
    border: 2px solid #fff;
}

.step-title {
    font-family: sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.step-desc {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============ FEATURES ============ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.feature-card {
    background: #fff;
    border: 1px solid rgba(18, 71, 255, 0.08);
    border-radius: 24px;
    padding: 2rem;
    transition: all 0.35s cubic-bezier(0.2, 0.9, 0.4, 1.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--blue), var(--gold));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(18, 71, 255, 0.12);
    border-color: rgba(18, 71, 255, 0.2);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(18, 71, 255, 0.08);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--blue);
    margin-bottom: 1.2rem;
    transition: all 0.3s;
}

.feature-card:hover .feature-icon {
    background: var(--blue);
    color: #fff;
    transform: scale(1.05) rotate(-5deg);
}

.feature-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.feature-tag {
    display: inline-block;
    background: rgba(18, 71, 255, 0.06);
    color: var(--blue);
    font-size: 0.73rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 1rem;
}

/* ============ STATS SECTION ============ */
.stats-section {
    background: var(--blue);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
}

.stats-section::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 50%;
}

.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-big {
    font-family: sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.4rem;
    color: #fff;
}

.stat-big span {
    color: var(--gold);
}

.stat-name {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 500;
}

.stat-item-border {
    border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item-border:last-child {
    border-right: none;
}

/* ============ INDUSTRIES ============ */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 3.5rem;
}

.industry-card {
    background: #fff;
    border: 1px solid rgba(18, 71, 255, 0.08);
    border-radius: 20px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s;
    cursor: pointer;
}

.industry-card:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 20px 40px rgba(18, 71, 255, 0.1);
    border-color: var(--blue);
}

.industry-icon {
    font-size: 2rem;
    margin-bottom: 0.8rem;
    display: block;
    filter: grayscale(0.3);
    transition: all 0.3s;
}

.industry-card:hover .industry-icon {
    filter: none;
    transform: scale(1.1);
}

.industry-name {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
}

.industry-count {
    font-size: 0.78rem;
    color: var(--blue);
    font-weight: 500;
    margin-top: 3px;
}

/* ============ TESTIMONIALS ============ */
.testimonials-bg {
    background: linear-gradient(135deg, #F4F6FF 0%, #EBF0FF 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.testimonial-card {
    background: #fff;
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(18, 71, 255, 0.06);
    transition: all 0.35s;
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-family: sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(18, 71, 255, 0.06);
    line-height: 1;
}

.testimonial-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 48px rgba(18, 71, 255, 0.1);
    border-color: rgba(18, 71, 255, 0.2);
}

.t-stars {
    color: var(--gold);
    font-size: 0.9rem;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.t-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.t-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.t-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.t-name {
    font-weight: 700;
    font-size: 0.9rem;
}

.t-role {
    font-size: 0.78rem;
    color: var(--text-muted);
}

.t-company {
    margin-left: auto;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--blue);
    background: rgba(18, 71, 255, 0.06);
    padding: 4px 10px;
    border-radius: 50px;
}

.featured-testimonial {
    border: 2px solid var(--blue);
    background: linear-gradient(135deg, #fff, #f8f9ff);
}

/* ============ PRICING TEASER ============ */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
}

.pricing-card {
    background: #fff;
    border: 1px solid rgba(18, 71, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.35s;
    position: relative;
    overflow: hidden;
}

.pricing-card.popular {
    background: var(--blue);
    color: #fff;
    transform: scale(1.04);
    box-shadow: 0 30px 60px rgba(18, 71, 255, 0.3);
    border-color: transparent;
}

.popular-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--gold);
    color: #7a5600;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 0 24px 0 14px;
    letter-spacing: 0.5px;
}

.pricing-card:not(.popular):hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(18, 71, 255, 0.1);
}

.pricing-label {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}

.pricing-card.popular .pricing-label {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-price {
    font-family: sans-serif;
    font-size: 19px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 17px;
}

.pricing-card {
    box-shadow: rgb(0 0 0) 0px 3px 8px;
}


.pricing-period {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.pricing-card.popular .pricing-period {
    color: rgba(255, 255, 255, 0.7);
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.88rem;
    padding: 6px 0;
    border-bottom: 1px solid rgba(18, 71, 255, 0.05);
    color: var(--text);
}

.pricing-card.popular .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.check-icon {
    color: #22C55E;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.pricing-card.popular .check-icon {
    color: var(--gold);
}

.pricing-btn {
    display: block;
    text-align: center;
    padding: 14px;
    border-radius: 14px;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.pricing-btn-outline {
    background: transparent;
    border: 1.5px solid rgba(18, 71, 255, 0.2);
    color: var(--blue);
}

.pricing-btn-outline:hover {
    background: rgba(18, 71, 255, 0.05);
}

.pricing-btn-white {
    background: #fff;
    color: var(--blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.pricing-btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ============ FAQ ============ */
.faq-list {
    max-width: 760px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #fff;
    border: 1px solid rgba(18, 71, 255, 0.08);
    border-radius: 18px;
    margin-bottom: 0.8rem;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.open {
    box-shadow: 0 12px 32px rgba(18, 71, 255, 0.1);
    border-color: rgba(18, 71, 255, 0.25);
}

.faq-q {
    padding: 1.3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--blue);
}

.faq-q .icon {
    width: 28px;
    height: 28px;
    background: rgba(18, 71, 255, 0.06);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: var(--blue);
    flex-shrink: 0;
    transition: all 0.3s;
}

.faq-item.open .faq-q .icon {
    background: var(--blue);
    color: #fff;
    transform: rotate(45deg);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s;
    padding: 0 1.5rem;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 1.5rem 1.3rem;
}

.faq-a p {
    color: var(--text-muted);
    font-size: 0.93rem;
    line-height: 1.7;
}

/* ============ FINAL CTA ============ */
.cta-section {
    background: var(--text);
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 100px 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(18, 71, 255, 0.4), transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 184, 0, 0.15), transparent 50%);
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    margin-bottom: 1.2rem;
}

.cta-title span {
    color: var(--gold);
}

.cta-sub {
    color: rgba(255, 255, 255, 0.65);
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    color: #000000;
    font-family: sans-serif;
    font-weight: 700;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 28px rgba(255, 184, 0, 0.35);
    transition: all 0.3s;
}

.btn-gold:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(255, 184, 0, 0.45);
}

.btn-white-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border-radius: 60px;
    text-decoration: none;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s;
}

.btn-white-ghost:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.cta-trust {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.85rem;
}

.cta-trust-item i {
    color: #22C55E;
}

/* ============ FOOTER ============ */
footer {
    background: #24447a linear-gradient(89deg, #24447a 0%, #410025 100%) 0% 0% no-repeat padding-box !important;
    color: rgba(255, 255, 255, 0.6);
    padding: 69px 0px 15px 0px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.footer-brand .logo {
    color: var(--blue);
    margin-bottom: 1rem;
}

.footer-brand p {
    color: white;
    font-size: 0.88rem;
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: all 0.25s;
}

.social-icon:hover {
    background: var(--blue);
    border-color: var(--blue);
    color: #fff;
    transform: translateY(-2px);
}

.footer-col h5 {
    font-family: sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: rgb(255, 255, 255);
    font-size: 0.88rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding-top: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom span {
    color: white;
    font-size: 0.82rem;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgb(255, 255, 255);
    font-size: 0.82rem;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: #fff;
}

/* ============ ANIMATIONS ============ */
.reveal {
    opacity: 1 !important;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    color: #000;
    opacity: 1;
    transform: none;
}

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

.reveal-delay-4 {
    transition-delay: 0.4s;
}

.reveal-delay-5 {
    transition-delay: 0.5s;
}

.reveal-delay-6 {
    transition-delay: 0.6s;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .how-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .how-steps::before {
        display: none;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .pricing-cards {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin-left: auto;
        margin-right: auto;
    }

    .pricing-card.popular {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.6rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .stats-row {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: -0.5px;
    }

    .floating-badge {
        display: none;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }
}




.logo img {
    height: 70px;
}







/* Hamburger */
.menu-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

/* Mobile View */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 20px 0;
        display: none;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-links.active {
        display: flex;
    }
}

h2.cta-title.reveal.reveal-delay-1.visible {
    color: white;
}

p.cta-sub.reveal.reveal-delay-2.visible {
    color: white;
}

.w-logoog {
    filter: brightness(0) invert(1);
}

.feature-card {
    box-shadow: rgb(0 0 0) 0px 2px 3px;
}

.industry-card {
    box-shadow: rgba(6, 24, 44, 0.4) 0px 0px 0px 2px, rgba(6, 24, 44, 0.65) 0px 4px 6px -1px, rgba(255, 255, 255, 0.08) 0px 1px 0px inset;
}


/* SECTION WRAPPER */
.ravi-hero-wrapper {
    background: #f5f7fb;
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* TOP COLOR LINE */
.ravi-top-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 4px;
    width: 100%;
    background: linear-gradient(to right, #1abc9c, #2f80ed, #f2994a);
}

/* CONTENT */
.ravi-hero-content {
    max-width: 900px;
}

/* TITLE */
.ravi-hero-title {
    font-size: 42px;
    font-weight: 700;
    color: #1d3557;
    margin-bottom: 15px;
    transition: all 0.4s ease;
}

/* TITLE HOVER ANIMATION */
.ravi-hero-title:hover {
    transform: translateY(-3px);
    text-shadow: 0px 10px 25px rgba(0, 0, 0, 0.1);
}

/* SUBTITLE */
.ravi-hero-subtitle {
    font-size: 16px;
    color: #5f6c7b;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

/* BUTTON GROUP */
.ravi-btn-group {
    margin-top: 20px;
}

/* PRIMARY BUTTON */
.ravi-btn-primary {
    background: #24447a linear-gradient(89deg, #24447a 0%, #410025 100%) 0% 0% no-repeat padding-box !important;
    color: #fff !important;
    padding: 12px 26px !important;
    border-radius: 6px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease;
    box-shadow: 0 6px 15px rgba(45, 122, 102, 0.3) !important;
}

/* PRIMARY HOVER */
.ravi-btn-primary:hover {
    background: #256d5a;
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 25px rgba(45, 122, 102, 0.4);
}

/* OUTLINE BUTTON */
.ravi-btn-outline {
    border: 1px solid #cbd5e1 !important;
    color: #1d3557 !important;
    padding: 12px 26px !important;
    border-radius: 6px !important;
    background: #fff !important;
    transition: all 0.3s ease !important;
}

/* OUTLINE HOVER */
.ravi-btn-outline:hover {
    background: #f1f5f9 !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

/* FADE IN ANIMATION */
.ravi-hero-title,
.ravi-hero-subtitle,
.ravi-btn-group {
    animation: raviFadeUp 1s ease forwards;
    opacity: 0;
}

.ravi-hero-subtitle {
    animation-delay: 0.2s;
}

.ravi-btn-group {
    animation-delay: 0.4s;
}

/* KEYFRAMES */
@keyframes raviFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .ravi-hero-title {
        font-size: 28px;
    }

    .ravi-hero-subtitle {
        font-size: 14px;
    }
}

.logo-slider {
    overflow: hidden;
    background: #fff;
    padding: 20px 0;
}

.logo-track {
    display: flex;
    gap: 60px;
    animation: scroll 25s linear infinite;
    align-items: center;
}

.logo-track img {
    height: 40px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: 0.3s;
}

.logo-track img:hover {
    filter: grayscale(0%);
}

/* Animation */
@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.logo-slider {
    padding: 100px 0px;
}


@media screen and (min-width: 80em) {
    .css-1f6eeob {
        -webkit-transform: translateX(.75rem);
        -moz-transform: translateX(.75rem);
        -ms-transform: translateX(.75rem);
        transform: translateX(.75rem);
    }
}

@media screen and (min-width: 62em) {
    .css-1f6eeob {
        -webkit-transform: translateX(3rem);
        -moz-transform: translateX(3rem);
        -ms-transform: translateX(3rem);
        transform: translateX(3rem);
    }
}

.css-1f6eeob {
    box-sizing: border-box;
    margin-block-start: 0;
    margin-block-end: 0;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    min-inline-size: 0;
    overflow: visible;
    block-size: 100%;
    -webkit-transform: translateX(6rem);
    -moz-transform: translateX(6rem);
    -ms-transform: translateX(6rem);
    transform: translateX(6rem);
}

.css-1a8xm5r {
    box-sizing: border-box;
    margin-block-start: 0;
    margin-block-end: 0;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    min-inline-size: 0;
    position: absolute;
    z-index: 1;
    margin: 0 auto;
    text-align: center;
    inline-size: 100%;
    inset-inline-start: 0;
    block-size: 90%;
    overflow: hidden;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    transform: none;
}

.css-1hx1238 {
    box-sizing: border-box;
    margin-block-start: 0;
    margin-block-end: 0;
    -webkit-margin-start: 0;
    margin-inline-start: 0;
    -webkit-margin-end: 0;
    margin-inline-end: 0;
    min-inline-size: 0;
    padding-block: 3rem;
    background-color: red;
    color: var(--ifl-colors-foreground);
}

.hero {
    position: relative;
    overflow: hidden;
    background: #f4f6ff;
}

.hero-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* 👈 bas ye change chahiye tha */
    height: 100%;
    z-index: 0;
}

.hero-svg svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}



/* content always above */
.hero-inner {
    position: relative;
    z-index: 2;
}

.hero .reveal.visible {
    color: #fffcfc;

}


.btn-ghost {

    background: #ffffff;
}

.hero-title .accent {
    color: #ffffff;
}

.hero-eyebrow {

    background: rgb(255 255 255 / 28%);
    border: 1px solid rgba(18, 71, 255, 0.15);
    color: #fff;
}

.stat-lbl {

    color: #000000;

}




/* 🔥 MOBILE FIX */
@media (max-width: 768px) {
    .hero-svg {
        display: none;
    }

    .form-card h3 {
        font-size: 21px;
    }

    .form-submit {
        width: 100%;
        padding: 13px;
        background: var(--blue);
        color: #fff;
        border: none;
        border-radius: 14px;
        font-family: sans-serif;
        font-size: 12px;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s;
        box-shadow: 0 8px 24px rgba(18, 71, 255, 0.3);
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }


    .hero .reveal.visible {
        color: #000000;

    }

    .hero-title .accent {
        color: #3e072d;
    }

    .hero-title {
        font-size: 30px;
        letter-spacing: -0.5px;
    }

    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--blue);
        color: #fff;
        font-family: sans-serif;
        font-weight: 700;
        font-size: 13px;
        padding: 12px 15px;
        border-radius: 60px;
        text-decoration: none;
        border: none;
        cursor: pointer;
        box-shadow: 0 8px 30px rgba(18, 71, 255, 0.35);
        transition: all 0.3s;
        position: relative;
        overflow: hidden;
    }

    .btn-ghost {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: transparent;
        color: var(--text);
        font-weight: 600;
        font-size: 13px;
        padding: 5px 16px;
        border-radius: 60px;
        text-decoration: none;
        border: 1.5px solid rgba(0, 0, 0, 0.12);
        cursor: pointer;
        transition: all 0.3s;
    }

    .stat-num {

        font-size: 17px;
    }


    .stat-icon {
        font-size: 13px;
    }



}
.pricing-features {

    padding-left: 0px;
}
