/* ============================================================
   FINOVORA GLOBAL - Main Stylesheet
   ============================================================ */

/* ---- CSS Variables ---- */
:root {
    /* Brand Colors */
    --color-primary: #0b3c74;
    --color-primary-light: #ff8c38;
    --color-primary-dark: #e05500;
    --color-secondary: #1a1a2e;
    --color-secondary-light: #16213e;
    --color-accent: #0f3460;
    --color-white: #ffffff;
    --color-light: #f8f9fc;
    --color-light-gray: #f0f2f8;
    --color-gray: #6c757d;
    --color-dark-gray: #3d3d3d;
    --color-text: #222222;
    --color-text-muted: #7a7a8a;
    --color-border: #e5e8f0;
    --color-success: #28a745;

    /* Typography */
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'DM Sans', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    /* Font Sizes */
    --fs-xs: 0.75rem;
    --fs-sm: 0.875rem;
    --fs-base: 1rem;
    --fs-md: 1.125rem;
    --fs-lg: 1.25rem;
    --fs-xl: 1.5rem;
    --fs-2xl: 1.875rem;
    --fs-3xl: 2.25rem;
    --fs-4xl: 2.75rem;
    --fs-5xl: 3.5rem;
    --fs-hero: clamp(2rem, 4vw, 3.5rem);

    /* Spacing */
    --sp-xs: 0.5rem;
    --sp-sm: 1rem;
    --sp-md: 1.5rem;
    --sp-lg: 2rem;
    --sp-xl: 3rem;
    --sp-2xl: 5rem;
    --sp-3xl: 7rem;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
    --shadow-orange: 0 8px 30px rgba(43, 50, 107, 0.25);
    --shadow-card: 0 4px 24px rgba(26, 26, 46, 0.08);

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    /* Header */
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--header-height);
}

body {
    font-family: var(--font-body);
    font-size: var(--fs-base);
    color: var(--color-text);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--color-white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ============================================================
   TYPOGRAPHY
   ============================================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 107, 0, 0.1);
    color: var(--color-primary);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
    letter-spacing: 0.03em;
}

.section-title {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    line-height: 1.25;
}

.section-title span {
    color: var(--color-primary);
}

.section-subtitle {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--sp-xl);
}

.highlight {
    color: var(--color-primary);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-full);
    font-size: var(--fs-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    transition: var(--transition-base);
    letter-spacing: 0.02em;
    cursor: pointer;
    white-space: nowrap;
}

.btn-primary {
    background: #fff;
    color: var(--color-primary);
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    background: var(--color-primary);
    color: #fff;
    /* border: 2px solid #fff; */
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.38);
}

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

.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    border-color: var(--color-secondary);
    transform: translateY(-2px);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-primary);
    font-weight: 700;
}

.btn-white:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 9px 20px;
    font-size: var(--fs-xs);
}

.btn-lg {
    padding: 16px 36px;
    font-size: var(--fs-base);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
#header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    height: var(--header-height);
    transition: var(--transition-base);
    background: var(--color-primary);
}

#header.scrolled {
    background: var(--color-primary);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 30px rgba(26, 26, 46, 0.1);
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: var(--header-height);
    gap: 2rem;
}

/* Logo */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    letter-spacing: 1px;
    font-weight: 800;
    color: #fff;
}

.logo-tag {
    font-size: 0.62rem;
    color: #fff;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 2px;
}

/* Nav */
.navbar-nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin: 0 auto;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 8px 14px;
    font-size: var(--fs-sm);
    font-weight: 400;
    letter-spacing: 1px;
    color: #fff;
    border-radius: var(--radius-sm);
    transition: 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #fff;
    font-weight: 700;
    background: rgba(255, 107, 0, 0.06);
}

.nav-link i {
    font-size: 0.7rem;
    transition: 0.3s;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown */
.dropdown-menu-custom {
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #fff;
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: 0.3s;
    z-index: 100;
}

.nav-item:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
    transform: translateX(-50%) translateY(0);
}

.dropdown-item-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 14px;
    color: var(--color-dark-gray);
    transition: 0.3s;
}

.dropdown-item-custom:hover {
    background: rgba(255, 107, 0, 0.08);
    color: var(--color-primary);
}

/* Actions */
.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Toggle */
.navbar-toggler {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: 1px solid #ddd;
    border-radius: 6px;
}

.navbar-toggler span {
    width: 22px;
    height: 2px;
    background: #fff !important;
    border-radius: 2px;
    transition: 0.3s;
}

.navbar-toggler.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.navbar-toggler.active span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* =========================
   MOBILE NAVIGATION
========================= */

.mobile-nav {
    position: fixed;
    top: var(--header-height);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-height));
    background: var(--color-primary);
    padding: 20px;
    overflow-y: auto;

    transform: translateX(-100%);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    transition: all .35s ease;
    z-index: 9998;
}

.mobile-nav.open {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

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

.nav-links-list li {
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.mobile-nav .nav-link {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    padding: 15px 0;
    text-decoration: none;
}

.mobile-nav .nav-link:hover {
    color: #fff;
}

.mobile-dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    padding: 15px 0;
}

.mobile-dropdown-toggle .nav-link {
    padding: 0;
    flex: 1;
}

.dropdown-icon {
    color: #fff;
    transition: .3s;
}

.mobile-dropdown.active .dropdown-icon {
    transform: rotate(180deg);
}


/* Dropdown Menu */

.mobile-dropdown-menu {
    list-style: none;
    padding-left: 15px;
    margin: 0;

    max-height: 0;
    overflow: hidden;

    transition: max-height .35s ease;
}

.mobile-dropdown.active .mobile-dropdown-menu {
    max-height: 600px;
}

.mobile-dropdown-menu li {
    border: none;
}

.mobile-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;

    color: rgba(255, 255, 255, .85);
    text-decoration: none;

    padding: 10px 0;
    font-size: 14px;
}

.mobile-dropdown-menu a:hover {
    color: #fff;
}

/* Proposal Button */

.mobile-proposal-btn {
    width: 100%;
    margin-top: 20px;
}

/* Responsive */

@media (max-width:991px) {

    .navbar-nav {
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    .navbar-actions .btn-primary {
        display: none;
    }

    .logo-img {
        width: 42px;
        height: 42px;
    }

    .logo-name {
        font-size: .95rem;
    }

    .logo-tag {
        font-size: .5rem;
    }
}

@media (min-width:992px) {

    .mobile-nav {
        display: none !important;
    }
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
    min-height: 100vh;
    background: linear-gradient(135deg, #f8f9fc 0%, #fff4ed 50%, #f8f9fc 100%);
    padding: calc(var(--header-height) + 3rem) 0 5rem;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 80% 20%, rgba(255, 107, 0, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 20% 80%, rgba(15, 52, 96, 0.06) 0%, transparent 50%);
}

.hero-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 200, 220, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 220, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 75%);
}

.hero-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--color-border);
    border-left: 3px solid var(--color-primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.4);
        opacity: 0.7;
    }
}

.hero-title {
    font-size: var(--fs-hero);
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.hero-title .orange-dot {
    color: var(--color-primary);
}

.hero-title .typed-text {
    color: var(--color-primary);
}

.hero-desc {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.75;
}

.hero-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-dark-gray);
}

.hero-feature-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 107, 0, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-clients {
    margin-top: 3rem;
    border-top: 1px solid var(--color-border);
    padding-top: 2rem;
}

.clients-label {
    font-size: var(--fs-xs);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 1rem;
}

.clients-logos {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

.client-logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-gray);
    transition: var(--transition-fast);
    opacity: 0.6;
}

.client-logo:hover {
    opacity: 1;
    color: var(--color-secondary);
}

.client-logo i {
    font-size: 1rem;
}

/* Hero Visual */
/* =========================
   MAIN
========================= */

.hero-visual {
    width: 100%;
    position: relative;
}

.dashboard-wrap {
    max-width: 620px;
    margin-left: auto;

    /* NEW */
    animation: dashboardFloat 5s ease-in-out infinite;
}

/* =========================
   DASHBOARD CARD
========================= */

.dashboard-card {
    background: #fff;
    border: 1px solid #eceff5;
    border-radius: 18px;
    padding: 18px;

    /* UPDATED */
    box-shadow:
        0 10px 30px rgba(15, 23, 42, .05),
        0 0 25px rgba(255, 122, 0, .05);

    animation:
        dashboardFade 1s ease,
        premiumGlow 4s ease-in-out infinite alternate;

    position: relative;
    overflow: hidden;
}

/* NEW SHINE EFFECT */
.dashboard-card::before {
    content: "";
    position: absolute;
    top: -120%;
    left: -40%;
    width: 60%;
    height: 300%;
    background: linear-gradient(120deg,
            transparent,
            rgba(255, 255, 255, .5),
            transparent);
    transform: rotate(20deg);
    animation: shineMove 7s linear infinite;
}

/* =========================
   HEADER
========================= */

.dashboard-header {
    margin-bottom: 16px;
}

.dashboard-title {
    font-size: .86rem;
    font-weight: 700;
    color: #111827;
}

/* =========================
   TOP METRICS
========================= */

.top-metrics {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 14px;
}

.metric-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 10px;
    padding: 14px;

    transition: .35s ease;

    animation:
        cardUp .7s ease both,
        metricFloat 4s ease-in-out infinite;

    position: relative;
    overflow: hidden;
}

.metric-card:nth-child(1) {
    animation-delay: .1s;
}

.metric-card:nth-child(2) {
    animation-delay: .2s;
}

.metric-card:nth-child(3) {
    animation-delay: .3s;
}

.metric-card:nth-child(4) {
    animation-delay: .4s;
}

.metric-card:hover {
    transform: translateY(-6px) scale(1.03);

    box-shadow:
        0 12px 24px rgba(15, 23, 42, .08),
        0 0 20px rgba(255, 122, 0, .08);
}

.metric-label {
    font-size: .56rem;
    color: #9aa4b2;
    margin-bottom: 7px;
    font-weight: 500;
}

.metric-value {
    font-size: 1rem;
    font-weight: 800;
    color: #111827;
    margin-bottom: 5px;
}

.metric-growth {
    font-size: .64rem;
    color: #22c55e;
    font-weight: 700;
}

/* =========================
   MIDDLE GRID
========================= */

.middle-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 14px;
}

.panel-box {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 12px;
    padding: 14px;

    transition: .35s ease;

    animation:
        cardUp .8s ease both,
        panelFloat 5s ease-in-out infinite;
}

.panel-box:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 28px rgba(15, 23, 42, .08),
        0 0 20px rgba(59, 130, 246, .06);
}

.panel-title {
    font-size: .68rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

/* =========================
   CHART
========================= */

.performance-chart {
    display: flex;
    gap: 10px;
    height: 155px;
}

.chart-left {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    font-size: .55rem;
    color: #9aa4b2;
}

.chart-right {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.chart-right svg {
    width: 100%;
    height: 100%;
}

.chart-right svg path:last-child {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: drawLine 2.5s ease forwards;
}

.chart-right svg path:first-child {
    opacity: 0;
    animation: fadeArea 1.8s ease forwards;
}

.chart-months {
    display: flex;
    justify-content: space-between;
    margin-top: 4px;
    font-size: .55rem;
    color: #9aa4b2;
}

/* =========================
   TASK DISTRIBUTION
========================= */

.task-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    height: 155px;
}

.task-circle {
    width: 118px;
    height: 118px;
    position: relative;

    /* NEW */
    animation: circleFloat 4s ease-in-out infinite;
}

.task-circle svg {
    transform: rotate(-90deg);
}

.circle-bg {
    fill: none;
    stroke: #edf1f7;
    stroke-width: 10;
}

.circle-progress-blue {
    fill: none;
    stroke: #3b82f6;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 124 264;
    animation: progressBlue 2s ease;
}

.circle-progress-orange {
    fill: none;
    stroke: #ff7a00;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 92 264;
    stroke-dashoffset: -132;
    animation: progressOrange 2s ease;
}

.circle-progress-gray {
    fill: none;
    stroke: #cbd5e1;
    stroke-width: 10;
    stroke-linecap: round;
    stroke-dasharray: 48 264;
    stroke-dashoffset: -224;
    animation: progressGray 2s ease;
}

.circle-center {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.circle-center strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.circle-center span {
    font-size: .6rem;
    color: #9aa4b2;
    margin-top: 4px;
}

.task-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.task-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    font-size: .65rem;
    color: #64748b;
}

.task-left {
    display: flex;
    align-items: center;
    gap: 7px;
}

.task-item b {
    color: #111827;
}

.dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.dot.blue {
    background: #3b82f6;
}

.dot.orange {
    background: #ff7a00;
}

.dot.gray {
    background: #cbd5e1;
}

/* =========================
   BOTTOM
========================= */

.bottom-grid {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 14px;
}

.bottom-card {
    background: #fff;
    border: 1px solid #edf1f7;
    border-radius: 18px;
    padding: 18px;

    box-shadow: 0 10px 25px rgba(15, 23, 42, .06);

    transition: .35s ease;

    animation:
        cardUp .9s ease both,
        panelFloat 6s ease-in-out infinite;
}

.bottom-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 14px 28px rgba(15, 23, 42, .08),
        0 0 22px rgba(34, 197, 94, .07);
}

/* =========================
   AI AUDIT SCORE
========================= */

.audit-card {
    border-radius: 16px;
}

.audit-circle-wrap {
    display: flex;
    justify-content: center;
    margin-top: 2px;
    margin-bottom: 10px;
}

.audit-circle {
    width: 120px;
    height: 68px;
    position: relative;
    overflow: hidden;
}

.audit-circle::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background:
        conic-gradient(from 180deg,
            #22c55e 0deg 235deg,
            #e7ecf2 235deg 360deg);

    animation: auditRotate 2s ease;
}

.audit-circle::after {
    content: "";
    position: absolute;
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: #fff;
    top: 14px;
    left: 14px;
}

.audit-inner {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    z-index: 2;
    padding-bottom: 2px;
}

.audit-inner strong {
    font-size: 2rem;
    font-weight: 800;
    color: #111827;
    line-height: 1;
}

.audit-inner span {
    font-size: .58rem;
    color: #94a3b8;
    margin-top: 2px;
    font-weight: 600;
}

.audit-status {
    text-align: center;
    font-size: .72rem;
    color: #22c55e;
    font-weight: 700;
}

.audit-growth {
    text-align: center;
    font-size: .58rem;
    color: #22c55e;
    margin-top: 6px;
    font-weight: 600;
}

/* =========================
   WEBSITE PERFORMANCE
========================= */

.performance-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.perf-item {
    text-align: center;
}

.perf-circle {

    /* UPDATED SIZE */
    width: 68px;
    height: 68px;

    border-radius: 50%;
    margin: auto;
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1rem;
    font-weight: 800;
    color: #111827;

    background: #fff;

    box-shadow:
        0 10px 20px rgba(15, 23, 42, .06),
        inset 0 1px 0 rgba(255, 255, 255, .8);

    animation:
        perfAnim 2s ease,
        perfFloat 4s ease-in-out infinite;
}

.perf-circle::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;

    /* UPDATED */
    padding: 5px;

    background:
        conic-gradient(#22c55e 0deg 320deg,
            #edf1f7 320deg 360deg);

    -webkit-mask:
        linear-gradient(#fff 0 0) content-box,
        linear-gradient(#fff 0 0);

    -webkit-mask-composite: xor;
    mask-composite: exclude;

    animation:
        perfAnim 2s ease,
        rotateRing 8s linear infinite;
}

.perf-item:nth-child(2) .perf-circle::before {
    background:
        conic-gradient(#f59e0b 0deg 300deg,
            #edf1f7 300deg 360deg);
}

.perf-item:nth-child(3) .perf-circle::before {
    background:
        conic-gradient(#14b8a6 0deg 325deg,
            #edf1f7 325deg 360deg);
}

.perf-item:nth-child(4) .perf-circle::before {
    background:
        conic-gradient(#3b82f6 0deg 315deg,
            #edf1f7 315deg 360deg);
}

.perf-item:hover .perf-circle {
    transform: scale(1.08);
}

.perf-item span {
    display: block;
    margin-top: 8px;
    font-size: .65rem;
    color: #94a3b8;
    font-weight: 700;
}

/* =========================
   ANIMATIONS
========================= */

@keyframes dashboardFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardUp {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes fadeArea {
    to {
        opacity: 1;
    }
}

@keyframes auditRotate {
    from {
        transform: rotate(-90deg);
        opacity: .3;
    }

    to {
        transform: rotate(0);
        opacity: 1;
    }
}

@keyframes perfAnim {
    from {
        transform: scale(.7) rotate(-120deg);
        opacity: .2;
    }

    to {
        transform: scale(1) rotate(0);
        opacity: 1;
    }
}

@keyframes progressBlue {
    from {
        stroke-dasharray: 0 264;
    }

    to {
        stroke-dasharray: 124 264;
    }
}

@keyframes progressOrange {
    from {
        stroke-dasharray: 0 264;
    }

    to {
        stroke-dasharray: 92 264;
    }
}

@keyframes progressGray {
    from {
        stroke-dasharray: 0 264;
    }

    to {
        stroke-dasharray: 48 264;
    }
}

/* NEW PREMIUM ANIMATIONS */

@keyframes dashboardFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-8px);
    }
}

@keyframes metricFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }
}

@keyframes panelFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes premiumGlow {

    0% {
        box-shadow:
            0 10px 30px rgba(15, 23, 42, .05),
            0 0 0 rgba(255, 122, 0, 0);
    }

    100% {
        box-shadow:
            0 16px 38px rgba(15, 23, 42, .08),
            0 0 25px rgba(255, 122, 0, .06);
    }
}

@keyframes shineMove {

    0% {
        left: -60%;
    }

    100% {
        left: 140%;
    }
}

@keyframes perfFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes rotateRing {

    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes circleFloat {

    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px) {

    .top-metrics {
        grid-template-columns: repeat(2, 1fr);
    }

    .middle-grid {
        grid-template-columns: 1fr;
    }

    .bottom-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:576px) {

    .top-metrics {
        grid-template-columns: 1fr;
    }

    .task-content {
        flex-direction: column;
        height: auto;
    }

    .performance-items {
        grid-template-columns: repeat(2, 1fr);
    }

}





/* =========================
   CLIENTS SECTION
========================= */
.clients-section {
    padding: 60px 0;
    background: var(--color-primary);
    overflow: hidden;
    position: relative;
}

/* soft glow effect */
.clients-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top left,
            rgba(255, 255, 255, 0.12),
            transparent 35%),
        radial-gradient(circle at bottom right,
            rgba(255, 255, 255, 0.08),
            transparent 35%);
    pointer-events: none;
}

.clients-label {
    text-align: center;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    margin-bottom: 38px;
    position: relative;
    z-index: 2;
}

/* =========================
   SWIPER
========================= */
.clientsSwiper {
    overflow: hidden;
    position: relative;
    z-index: 2;
}

.swiper-wrapper {
    align-items: center;
    transition-timing-function: ease-in-out !important;
}

.swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    padding: 10px 0;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

/* =========================
   LOGO STYLE
========================= */
.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    min-height: 110px;
    gap: 14px;

    background: transparent;
    border: none;

    color: #fff;

    transition: 0.35s ease;
    cursor: grab;
    user-select: none;
    text-align: center;
}

/* LETTER ICON */
.client-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;

    display: flex;
    align-items: center;
    justify-content: center;

    background: white;
    border: 2px solid rgba(255, 255, 255, 0.18);

    color: var(--color-accent);
    font-size: 1.45rem;
    font-weight: 700;

    transition: 0.35s ease;
}

/* TEXT */
.client-logo span {
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: 0.03em;
    color: #fff;

    line-height: 1.4;
    text-align: center;
    max-width: 170px;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 42px;
}

/* HOVER */
.client-logo:hover {
    transform: translateY(-5px);
}

.client-logo:hover .client-icon {
    transform: scale(1.08);
    background: rgba(255, 255, 255, 0.14);
}

/* Active slide slightly highlight */
.swiper-slide-active .client-logo {
    transform: scale(1.03);
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width: 991px) {

    .clients-section {
        padding: 50px 0;
    }

    .client-logo {
        min-height: 100px;
    }

    .client-icon {
        width: 54px;
        height: 54px;
        font-size: 1.25rem;
    }

    .client-logo span {
        font-size: 0.96rem;
        max-width: 150px;
    }
}

@media (max-width: 768px) {

    .clients-label {
        margin-bottom: 28px;
    }

    .client-logo {
        min-height: 90px;
        gap: 10px;
    }

    .client-icon {
        width: 48px;
        height: 48px;
        font-size: 1.05rem;
    }

    .client-logo span {
        font-size: 0.88rem;
        max-width: 130px;
        min-height: 36px;
    }
}

@media (max-width: 480px) {

    .clients-section {
        padding: 40px 0;
    }

    .client-logo {
        min-height: 80px;
        gap: 8px;
    }

    .client-icon {
        width: 42px;
        height: 42px;
        font-size: 0.95rem;
    }

    .client-logo span {
        font-size: 0.78rem;
        max-width: 110px;
        line-height: 1.3;
    }
}

/* ============================================================
   SECTION SPACING
   ============================================================ */
section {
    padding: var(--sp-3xl) 0;
}

/* ============================================================
   AI TOOLS SECTION
   ============================================================ */


.ai-tools-section {
    background: var(--color-light);
}

.tools-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

/* ===========================
   TOOL CARD
=========================== */

.tool-card {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.tool-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg,
            var(--color-primary),
            var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: .35s;
}

.tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

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

/* ===========================
   ICON
=========================== */

.tool-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 0, .1);
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

/* ===========================
   TEXT
=========================== */

.tool-card h3 {
    font-size: var(--fs-xl);
    color: var(--color-secondary);
    margin-bottom: .8rem;
}

.tool-card p {
    color: var(--color-text-muted);
    margin-bottom: 1.5rem;
    font-size: var(--fs-sm);
    line-height: 1.7;
}

/* ===========================
   INPUTS
=========================== */

.input-row {
    display: flex;
    gap: 12px;
    margin-bottom: 15px;
}

.input-row input {
    flex: 1;
    height: 48px;
    padding: 0 18px;
    border: 1.5px solid var(--color-border);
    border-radius: 50px;
    font-size: 15px;
    font-family: var(--font-body);
    outline: none;
    transition: .3s;
    color: var(--color-text);
    background: #fff;
}

.input-row input::placeholder {
    color: #999;
}

.input-row input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, .12);
}

/* ===========================
   BUTTON
=========================== */

.audit-btn {
    width: 100%;
    justify-content: center;
    margin-bottom: 1.5rem;
}

/* ===========================
   FEATURES
=========================== */

.tool-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.tool-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    color: var(--color-dark-gray);
}

.tool-feature-item i {
    color: var(--color-success);
    font-size: .9rem;
}

/* ===========================
   BACKGROUND ICON
=========================== */

.tool-visual {
    position: absolute;
    right: -20px;
    bottom: -20px;
    font-size: 8rem;
    opacity: .07;
    color: var(--color-primary);
    pointer-events: none;
}

/* ===========================
   SUCCESS POPUP
=========================== */

.audit-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .55);

    display: flex;
    align-items: center;
    justify-content: center;

    opacity: 0;
    visibility: hidden;

    transition: .35s ease;
    z-index: 99999;
}

.audit-popup.show {
    opacity: 1;
    visibility: visible;
}

.popup-box {
    width: 430px;
    max-width: 92%;
    background: #fff;
    border-radius: 22px;
    padding: 40px 30px;
    text-align: center;
    animation: popupScale .35s ease;
}

@keyframes popupScale {

    from {
        transform: scale(.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }

}

.popup-icon {
    font-size: 65px;
    color: #28a745;
    margin-bottom: 15px;
}

.popup-box h3 {
    font-size: 30px;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.popup-box p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 28px;
}

/* ===========================
   RESPONSIVE
=========================== */

@media(max-width:992px) {

    .tools-grid {
        grid-template-columns: 1fr;
    }

}

@media(max-width:768px) {

    .tool-card {
        padding: 2rem;
    }

    .input-row {
        flex-direction: column;
    }

    .input-row input {
        width: 100%;
    }

    .popup-box {
        padding: 35px 22px;
    }

    .popup-box h3 {
        font-size: 26px;
    }

    .popup-icon {
        font-size: 55px;
    }

}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
    background: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.service-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    background: white;
    transition: var(--transition-base);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.05), transparent);
    opacity: 0;
    transition: var(--transition-base);
}

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

.service-card:hover::after {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1rem;
    background: rgba(255, 107, 0, 0.08);
    color: var(--color-primary);
    transition: var(--transition-base);
}

.service-card:hover .service-icon {
    background: var(--color-primary);
    color: white;
    transform: rotate(-5deg) scale(1.05);
}

.service-card h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.service-card p {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* ============================================================
   STATS COUNTER SECTION
   ============================================================ */
.stats-section {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    padding: var(--sp-2xl) 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 70% 50%, rgba(255, 107, 0, 0.15) 0%, transparent 60%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: var(--transition-base);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-4px);
}

.stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(255, 107, 0, 0.2);
    border: 1px solid rgba(255, 107, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-white);
    margin: 0 auto 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 900;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 2px;
}

.stat-suffix {
    color: var(--color-white);
}

.stat-label {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.stat-desc {
    font-size: var(--fs-xs);
    color: rgba(255, 255, 255, 0.45);
    margin-top: 4px;
}

/* ============================================================
   INDUSTRIES SECTION
   ============================================================ */
/* ==============================
   FINOVORA INDUSTRIES SECTION
================================= */

.fg-industries-section {
    background: var(--color-light);
}

.fg-industries-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 1rem;
}

.fg-industry-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    padding: 1.75rem 1rem;
    background: #fff;
    border-radius: var(--radius-lg);
    border: 2px solid var(--color-border);
    text-align: center;
    transition: var(--transition-base);
    cursor: pointer;
}

.fg-industry-card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 30px rgba(255, 107, 0, 0.12);
    transform: translateY(-4px);
}

.fg-industry-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background: var(--color-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-secondary);
    transition: var(--transition-base);
}

.fg-industry-card:hover .fg-industry-icon {
    background: var(--color-primary);
    color: #fff !important;
}

.fg-industry-name {
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-dark-gray);
}

/* ==============================
   RESPONSIVE
================================= */

/* Large Tablets */
@media (max-width: 1200px) {
    .fg-industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Tablets */
@media (max-width: 768px) {
    .fg-industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fg-industry-card {
        padding: 1.5rem 1rem;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .fg-industries-grid {
        grid-template-columns: 1fr;
    }

    .fg-industry-card {
        padding: 1.25rem 1rem;
    }

    .fg-industry-icon {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
    background: white;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 70px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    z-index: 0;
}

.process-card {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 2rem 1.5rem;
}

.process-num {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: white;
    border: 3px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 900;
    color: var(--color-primary);
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-orange);
    transition: var(--transition-base);
    position: relative;
}

.process-card:hover .process-num {
    background: var(--color-primary);
    color: white;
    transform: scale(1.1);
}

.process-icon-inner {
    position: absolute;
    bottom: -5px;
    right: -5px;
    width: 26px;
    height: 26px;
    background: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: white;
}

.process-card h4 {
    font-size: var(--fs-lg);
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.process-card p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

/* ============================================================
   TESTIMONIALS SECTION
   ============================================================ */
.testimonials-section {
    background: linear-gradient(135deg, #f8f9fc 0%, #fff4ed 100%);
}

.swiper-container-wrapper {
    position: relative;
    padding: 0 0 60px;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
    height: 100%;
}

.quote-icon {
    font-size: 3rem;
    line-height: 1;
    color: var(--color-primary);
    opacity: 0.2;
    margin-bottom: -0.5rem;
}

.testimonial-text {
    font-size: var(--fs-base);
    color: var(--color-dark-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--color-primary);
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-family: var(--font-heading);
}

.author-info h5 {
    font-size: var(--fs-sm);
    color: var(--color-secondary);
    margin-bottom: 2px;
}

.author-info p {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.stars {
    color: #f5a623;
    font-size: var(--fs-xs);
    letter-spacing: 2px;
    margin-bottom: 8px;
}

/* Swiper Custom */
.swiper-pagination-bullet {

    background: var(--color-primary) !important;
    opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
    opacity: 1 !important;
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
    padding: var(--sp-2xl) 0;
    background: white;
}

.cta-box {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    border-radius: var(--radius-xl);
    padding: 5rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.1);
    pointer-events: none;
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    pointer-events: none;
}

.cta-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 0, 0.2);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--color-white);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.cta-box h2 {
    font-size: var(--fs-3xl);
    color: white;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-box p {
    color: rgba(255, 255, 255, 0.7);
    font-size: var(--fs-md);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    position: relative;
    z-index: 1;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--color-secondary);
    color: rgba(255, 255, 255, 0.7);
    padding: 5rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand p {
    font-size: var(--fs-sm);
    line-height: 1.8;
    margin: 1rem 0 1.5rem;
    max-width: 260px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.social-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: var(--transition-fast);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    letter-spacing: 0.03em;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.55);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

/* Contact Info */
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 1rem;
    font-size: var(--fs-sm);
}

.contact-item i {
    color: var(--color-primary);
    margin-top: 3px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    padding: 1.5rem 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--fs-xs);
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.45);
    transition: var(--transition-fast);
}

.footer-bottom-links a:hover {
    color: var(--color-primary);
}

/* Tablet View */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .footer-brand p {
        max-width: 100%;
    }
}

/* Mobile View */
@media (max-width: 767px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        justify-content: center;
        flex-wrap: wrap;
    }
}

/* ============================================================
   MODAL - CONTACT FORM
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 10, 30, 0.7);
    backdrop-filter: blur(8px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: white;
    border-radius: var(--radius-xl);
    width: 100%;
    max-width: 920px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: scale(0.9) translateY(20px);
    transition: var(--transition-base);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-box {
    transform: scale(1) translateY(0);
}

.modal-inner {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
}

/* Modal Left Panel */
.modal-left {
    background: linear-gradient(145deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.modal-left::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -30%;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(255, 107, 0, 0.12);
}

.modal-brand-icon {
    width: 52px;
    height: 52px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    margin-bottom: 1.5rem;
}

.modal-left h2 {
    font-size: var(--fs-2xl);
    color: white;
    margin-bottom: 0.75rem;
}

.modal-left p {
    color: rgba(255, 255, 255, 0.65);
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.modal-info-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.modal-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-sm);
    color: rgba(255, 255, 255, 0.75);
}

.modal-info-item .info-icon {
    width: 34px;
    height: 34px;
    background: rgba(255, 107, 0, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Modal Right - Form */
.modal-right {
    padding: 3rem;
    position: relative;
}

.modal-close-btn {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-light-gray);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    transition: var(--transition-fast);
    font-size: 0.9rem;
}

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

.modal-right h3 {
    font-size: var(--fs-xl);
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.modal-right>p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    color: var(--color-dark-gray);
    margin-bottom: 6px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
}

.form-control-custom {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-size: var(--fs-sm);
    font-family: var(--font-body);
    color: var(--color-text);
    background: var(--color-light);
    transition: var(--transition-fast);
    outline: none;
}

.form-control-custom:focus {
    border-color: var(--color-primary);
    background: white;
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.form-control-custom::placeholder {
    color: var(--color-text-muted);
}

textarea.form-control-custom {
    resize: none;
    min-height: 100px;
}

.service-select-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.service-check-item {
    position: relative;
}

.service-check-item input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
}

.service-check-item label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-dark-gray);
    transition: var(--transition-fast);
    background: var(--color-light);
}

.service-check-item input:checked+label {
    border-color: var(--color-primary);
    background: rgba(255, 107, 0, 0.06);
    color: var(--color-primary);
}

.service-check-item label i {
    font-size: 0.75rem;
    color: var(--color-primary);
}

.form-submit-btn {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
    color: white;
    border: none;
    border-radius: var(--radius-full);
    font-size: var(--fs-base);
    font-weight: 700;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
    box-shadow: var(--shadow-orange);
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(255, 107, 0, 0.38);
}




/* ============================================================
   ANIMATIONS / AOS-like
   ============================================================ */
[data-aos] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

[data-aos="fade-left"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate,
[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos-delay="100"] {
    transition-delay: 0.1s;
}

[data-aos-delay="200"] {
    transition-delay: 0.2s;
}

[data-aos-delay="300"] {
    transition-delay: 0.3s;
}

[data-aos-delay="400"] {
    transition-delay: 0.4s;
}

[data-aos-delay="500"] {
    transition-delay: 0.5s;
}

[data-aos-delay="600"] {
    transition-delay: 0.6s;
}

[data-aos-delay="700"] {
    transition-delay: 0.7s;
}

/* ============================================================
   RESPONSIVE - TABLET (768px - 1024px)
   ============================================================ */
@media (max-width: 1024px) {
    :root {
        --fs-hero: clamp(2rem, 4vw, 3.5rem);
        --fs-5xl: 2.75rem;
        --fs-4xl: 2.25rem;
        --fs-3xl: 1.875rem;
    }

    .hero-row {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        max-width: 550px;
        margin: 0 auto;
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid::before {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .modal-inner {
        grid-template-columns: 1fr;
    }

    .modal-left {
        padding: 2rem;
    }
}

/* ============================================================
   RESPONSIVE - MOBILE (<768px)
   ============================================================ */
@media (max-width: 768px) {
    :root {
        --sp-3xl: 4rem;
        --sp-2xl: 3rem;
    }

    .navbar-nav,
    .navbar-actions .btn {
        display: none;
    }

    .navbar-toggler {
        display: flex;
    }

    /* Mobile Nav Overlay */
    .mobile-nav {
        position: fixed;
        inset: 0;
        top: var(--header-height);
        background: rgba(26, 22, 22, 0.98);
        backdrop-filter: blur(20px);
        z-index: 9990;
        padding: 2rem;
        overflow-y: auto;
        transform: translateX(100%);
        transition: var(--transition-base);
    }

    .mobile-nav.open {
        transform: translateX(0);
    }

    .mobile-nav .nav-links-list {
        display: flex;
        flex-direction: column;
        gap: 0.25rem;
        margin-bottom: 1.5rem;
    }

    .mobile-nav .nav-link {
        font-size: var(--fs-md);
        padding: 12px 16px;
        border-radius: var(--radius-md);
    }

    .mobile-nav .btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .modal-inner {
        grid-template-columns: 1fr;
    }

    .modal-left {
        display: none;
    }

    .modal-right {
        padding: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }

    .section-title {
        font-size: var(--fs-2xl);
    }

    .clients-logos {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    .service-select-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   UTILITY
   ============================================================ */
.text-center {
    text-align: center;
}

.text-orange {
    color: var(--color-primary);
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1rem;
}

.d-flex {
    display: flex;
}

.align-center {
    align-items: center;
}

.gap-2 {
    gap: 1rem;
}

.justify-center {
    justify-content: center;
}

.position-relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}




/* ══════════════════════════════════════
           SERVICES SECTION
        ══════════════════════════════════════ */
.services_section {
    padding: 96px 0 80px;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

/* Subtle background grid texture */
.services_section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(11, 60, 116, .03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(11, 60, 116, .03) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}






/* ── Grid ── */
.services_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

/* ── Card ── */
.service_card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px 26px 24px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-base);
    cursor: pointer;
}

.service_card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.service_card:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(11, 60, 116, .14);
    transform: translateY(-6px);
}

.service_card:hover::after {
    transform: scaleX(1);
}

/* Icon wrapper */
.card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 140, 56, .12), rgba(11, 60, 116, .08));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition-base);
}

.service_card:hover .card-icon {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.card-icon i {
    font-size: 1.45rem;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.service_card:hover .card-icon i {
    color: #fff;
}

/* Card number badge */
.card-number {
    font-family: var(--font-heading);
    font-size: .7rem;
    font-weight: 800;
    color: var(--color-primary-light);
    letter-spacing: .04em;
    margin-bottom: 6px;
    display: block;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.0125rem;
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.card-desc {
    font-size: .875rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
}

.card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    font-size: .8125rem;
    font-weight: 700;
    color: var(--color-primary-light);
    letter-spacing: .02em;
    transition: gap .25s ease, color .25s ease;
}

.card-link i {
    font-size: .75rem;
    transition: transform .25s ease;
}

.card-link:hover {
    color: var(--color-primary);
    gap: 10px;
}

.card-link:hover i {
    transform: translateX(3px);
}


/* ══════════════════════════════════════
           CTA BANNER
        ══════════════════════════════════════ */
/*=========================
CTA BANNER
=========================*/

.cta_banner {
    margin: 64px 0 0;
    border-radius: var(--radius-xl);
    background: linear-gradient(120deg, var(--color-primary) 0%, #1557b0 55%, #0d2d5e 100%);
    padding: 40px 56px;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;

    position: relative;
    overflow: hidden;
}

/* Decorative circles */

.cta_banner::before,
.cta_banner::after {
    content: "";
    position: absolute;
    border-radius: 50%;
    opacity: .12;
    pointer-events: none;
}

.cta_banner::before {
    width: 320px;
    height: 320px;
    background: var(--color-primary-light);
    top: -120px;
    right: 220px;
}

.cta_banner::after {
    width: 200px;
    height: 200px;
    background: #fff;
    bottom: -80px;
    right: 60px;
}

/* Left */

.cta-left {
    display: flex;
    align-items: center;
    gap: 24px;
    flex: 1;
    position: relative;
    z-index: 1;
}

.cta-rocket-wrap {
    width: 64px;
    height: 64px;
    flex-shrink: 0;

    background: rgba(255, 255, 255, .15);
    border-radius: var(--radius-md);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 1.75rem;

    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {

    0%,
    100% {
        transform: translateY(0) rotate(-10deg);
    }

    50% {
        transform: translateY(-8px) rotate(-10deg);
    }
}

.cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.375rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 6px;
}

.cta-text p {
    font-size: .9375rem;
    color: rgba(255, 255, 255, .75);
    line-height: 1.7;
    margin: 0;
}

/* Button */

.btn-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    padding: 14px 32px;

    background: #fff;
    color: var(--color-primary);

    font-family: var(--font-heading);
    font-size: .9375rem;
    font-weight: 700;
    text-decoration: none;

    border-radius: 50px;
    white-space: nowrap;

    position: relative;
    z-index: 1;

    transition: .35s;

    box-shadow: 0 8px 24px rgba(255, 140, 56, .45);
}

.btn-cta:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 140, 56, .35);
}

.btn-cta i {
    font-size: .875rem;
}

/*=========================
TABLET
=========================*/

@media (max-width:991px) {

    .cta_banner {

        padding: 36px 30px;

        flex-direction: column;

        text-align: center;

        gap: 28px;

    }

    .cta-left {

        flex-direction: column;

        text-align: center;

        gap: 18px;

    }

    .cta-text h3 {

        font-size: 1.5rem;

    }

    .cta-text p {

        font-size: .95rem;

    }

    .btn-cta {

        width: auto;

        min-width: 260px;

        justify-content: center;

    }

    .cta_banner::before {

        width: 250px;
        height: 250px;
        top: -80px;
        right: -50px;

    }

    .cta_banner::after {

        width: 150px;
        height: 150px;
        right: -30px;
        bottom: -40px;

    }

}

/*=========================
MOBILE
=========================*/

@media (max-width:767px) {

    .cta_banner {

        padding: 28px 20px;

        gap: 24px;

        border-radius: 20px;

    }

    .cta-left {

        gap: 16px;

    }

    .cta-rocket-wrap {

        width: 56px;
        height: 56px;
        font-size: 1.5rem;

    }

    .cta-text h3 {

        font-size: 1.25rem;
        line-height: 1.4;

    }

    .cta-text p {

        font-size: .9rem;

    }

    .btn-cta {

        width: 100%;

        padding: 15px 20px;

        font-size: .9rem;

    }

}

/*=========================
SMALL MOBILE
=========================*/

@media (max-width:480px) {

    .cta_banner {

        padding: 24px 18px;

    }

    .cta-rocket-wrap {

        width: 50px;
        height: 50px;
        font-size: 1.35rem;

    }

    .cta-text h3 {

        font-size: 1.1rem;

    }

    .cta-text p {

        font-size: .85rem;

    }

    .btn-cta {

        font-size: .85rem;

        padding: 14px 18px;

    }

}

/* ══════════════════════════════════════
           WHY CHOOSE SECTION
        ══════════════════════════════════════ */
.why-section {
    padding: 88px 0 96px;
    background: var(--color-light);
    position: relative;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 56px;
}

.why-card {
    background: var(--color-white);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 32px 22px 28px;
    text-align: center;
    transition: var(--transition-base);
}

.why-card:hover {
    border-color: rgba(11, 60, 116, .18);
    box-shadow: 0 12px 36px rgba(11, 60, 116, .1);
    transform: translateY(-5px);
}

.why-icon {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 140, 56, .1), rgba(11, 60, 116, .07));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    transition: var(--transition-base);
}

.why-card:hover .why-icon {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
}

.why-icon i {
    font-size: 1.6rem;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.why-card:hover .why-icon i {
    color: #fff;
}

.why-title {
    font-family: var(--font-heading);
    font-size: .9375rem;
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.4;
}


/* ══════════════════════════════════════
           RESPONSIVE
        ══════════════════════════════════════ */

/* Tablet: 2-col grid */
@media (max-width: 1100px) {
    .services_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 36px 28px;
    }

    .cta-left {
        flex-direction: column;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile: 1-col grid */
@media (max-width: 560px) {
    .services_section {
        padding: 64px 0 56px;
    }

    .services_grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .why-section {
        padding: 64px 0 72px;
    }
}

@media (max-width: 380px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Entrance animations ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service_card {
    animation: fadeUp .5s ease both;
}

/* staggered delays via nth-child */
.service_card:nth-child(1) {
    animation-delay: .05s;
}

.service_card:nth-child(2) {
    animation-delay: .10s;
}

.service_card:nth-child(3) {
    animation-delay: .15s;
}

.service_card:nth-child(4) {
    animation-delay: .20s;
}

.service_card:nth-child(5) {
    animation-delay: .25s;
}

.service_card:nth-child(6) {
    animation-delay: .30s;
}

.service_card:nth-child(7) {
    animation-delay: .35s;
}

.service_card:nth-child(8) {
    animation-delay: .40s;
}

.why-card {
    animation: fadeUp .5s ease both;
}

.why-card:nth-child(1) {
    animation-delay: .06s;
}

.why-card:nth-child(2) {
    animation-delay: .12s;
}

.why-card:nth-child(3) {
    animation-delay: .18s;
}

.why-card:nth-child(4) {
    animation-delay: .24s;
}

.why-card:nth-child(5) {
    animation-delay: .30s;
}





/* ============================================================
   FINOVORA GLOBAL – About Page Stylesheet
   All selectors are scoped with .ab-* prefix so they
   NEVER conflict with styles in style.css
   ============================================================ */

/* ============================================================
   ABOUT HERO
   ============================================================ */
.ab-hero {
    padding: calc(var(--header-height) + 4rem) 0 5rem;
    background: linear-gradient(135deg, #f8f9fc 0%, #fff4ed 50%, #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

.ab-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 200, 220, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 220, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 0%, transparent 70%);
    pointer-events: none;
}

.ab-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* WHO WE ARE badge */
.ab-who-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-primary);
    margin-bottom: 1rem;
    padding: 5px 14px;
    background: rgba(255, 107, 0, 0.08);
    border-radius: var(--radius-full);
    border-left: 3px solid var(--color-primary);
}

.ab-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: var(--color-secondary);
    line-height: 1.15;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.ab-hero__desc {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.stats-cards-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
    /* Hamesha ek row me */
    width: 100%;
}

.stats-card {
    flex: 1;
    max-width: 190px;
    min-width: 170px;
    height: 75px;
    background: #fff;
    border-radius: 14px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, .08);
    transition: .3s;
}

.stats-card:hover {
    transform: translateY(-3px);
}

.stats-card-icon {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 10px;
    background: #eef5ff;
    color: #123d79;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.stats-card-content {
    display: flex;
    flex-direction: column;
}

.stats-card-content h2 {
    margin: 0;
    font-size: 26px;
    line-height: 1;
    color: #123d79;
    font-weight: 800;
}

.stats-card-content p {
    margin: 4px 0 0;
    font-size: 13px;
    color: #777;
    font-weight: 500;
    line-height: 1.2;
}

/* Image wrapper */
.ab-hero__visual {
    display: flex;
    justify-content: flex-end;
}

.ab-img-wrap {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ab-img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-xl);
}

/* Orange corner accent (top-right) */
.ab-img-corner {
    position: absolute;
    top: 0;
    right: 0;
    width: 80px;
    height: 80px;
    background: var(--color-primary);
    border-bottom-left-radius: var(--radius-xl);
    z-index: 2;
    opacity: 0.85;
}

.ab-img-corner::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 3px solid rgba(255, 255, 255, 0.5);
    border-radius: var(--radius-md);
}


/* ============================================================
   MISSION / VISION / VALUES
   ============================================================ */
.ab-mvv {
    padding: 5rem 0;
    background: #fff;
}

.ab-mvv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.ab-mvv__card {
    padding: 2.25rem 2rem;
    border-radius: var(--radius-lg);
    border: 1.5px solid var(--color-border);
    background: #fff;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.ab-mvv__card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}

.ab-mvv__card:hover {
    border-color: transparent;
    box-shadow: 0 16px 48px rgba(11, 60, 116, 0.12);
    transform: translateY(-5px);
}

.ab-mvv__card:hover::after {
    transform: scaleX(1);
}

.ab-mvv__icon-wrap {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.ab-mvv__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.ab-mvv__desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.75;
}

/* Values list */
.ab-values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.ab-values-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    color: var(--color-dark-gray);
    font-weight: 500;
}

.ab-values-list li i {
    color: #16a34a;
    font-size: 0.8rem;
    flex-shrink: 0;
}


/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.ab-why {
    padding: 5rem 0;
    background: var(--color-light);
}

.ab-why__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 0;
}

.ab-why__card {
    background: #fff;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition-base);
}

.ab-why__card:hover {
    border-color: rgba(11, 60, 116, 0.15);
    box-shadow: 0 12px 36px rgba(11, 60, 116, 0.1);
    transform: translateY(-5px);
}

.ab-why__icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(255, 140, 56, 0.1), rgba(11, 60, 116, 0.07));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--color-primary);
    margin: 0 auto 1.25rem;
    transition: var(--transition-base);
}

.ab-why__card:hover .ab-why__icon {
    background: linear-gradient(135deg, var(--color-primary-light), var(--color-primary));
    color: #fff;
}

.ab-why__card h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.6rem;
}

.ab-why__card p {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.7;
}


/* ============================================================
   OUR JOURNEY – TIMELINE
   ============================================================ */
.ab-journey {
    padding: 5rem 0 6rem;
    background: #fff;
}

.ab-timeline {
    position: relative;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 3rem;
}

/* Horizontal connecting line */
.ab-timeline__line {
    position: absolute;
    top: 28px;
    /* vertically centred on dots */
    left: calc(100% / 10);
    /* start from centre of first item */
    right: calc(100% / 10);
    /* end at centre of last item */
    height: 2px;
    background: linear-gradient(90deg, var(--color-primary), var(--color-primary-light));
    z-index: 0;
}

/* Each milestone */
.ab-timeline__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    padding: 0 0.5rem;
}

/* Dot */
.ab-timeline__dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--color-primary);
    margin-bottom: 1rem;
    flex-shrink: 0;
    transition: var(--transition-base);
    box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.1);
}

.ab-timeline__dot--active {
    background: var(--color-primary);
    box-shadow: 0 0 0 6px rgba(255, 107, 0, 0.2);
}

/* Year label */
.ab-timeline__year {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--color-primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.ab-timeline__year--active {
    color: var(--color-primary);
}

/* Card */
.ab-timeline__card {
    background: var(--color-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 1.25rem 1rem;
    transition: var(--transition-base);
    width: 100%;
}

.ab-timeline__card:hover {
    border-color: var(--color-primary);
    box-shadow: 0 8px 24px rgba(11, 60, 116, 0.1);
    transform: translateY(-3px);
}

.ab-timeline__card--active {
    background: linear-gradient(135deg, rgba(255, 107, 0, 0.07), rgba(11, 60, 116, 0.04));
    border-color: rgba(255, 107, 0, 0.3);
}

.ab-timeline__card h4 {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.ab-timeline__card p {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.65;
}


/* ============================================================
   CTA SECTION
   ============================================================ */
.ab-cta-section {
    padding: 3rem 0 5rem;
    background: #fff;
}

.ab-cta-box {
    background: linear-gradient(120deg, var(--color-primary) 0%, #1557b0 55%, #0d2d5e 100%);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
    overflow: hidden;
}

/* decorative circles */
.ab-cta-box::before,
.ab-cta-box::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    opacity: 0.12;
}

.ab-cta-box::before {
    width: 260px;
    height: 260px;
    background: var(--color-primary-light);
    top: -100px;
    right: 260px;
}

.ab-cta-box::after {
    width: 180px;
    height: 180px;
    background: #fff;
    bottom: -70px;
    right: 60px;
}

.ab-cta-left {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.ab-cta-icon {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #fff;
    flex-shrink: 0;
}

.ab-cta-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 4px;
}

.ab-cta-text p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.75);
}

.ab-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 30px;
    background: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: 0.875rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: var(--transition-base);
    box-shadow: 0 8px 24px rgba(255, 140, 56, 0.45);
    flex-shrink: 0;
}

.ab-cta-btn:hover {
    background: #fff;
    color: var(--color-primary);
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 140, 56, 0.35);
}

.ab-cta-btn i {
    font-size: 0.8rem;
}


/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ab-hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .ab-hero__visual {
        justify-content: center;
    }

    .ab-mvv__grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .ab-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .ab-timeline__line {
        display: none;
    }

    .ab-timeline__item {
        flex-direction: row;
        text-align: left;
        align-items: flex-start;
        gap: 1rem;
    }

    .ab-timeline__dot {
        margin-bottom: 0;
        margin-top: 4px;
    }

    .ab-timeline__year {
        display: none;
    }

    .ab-timeline__card {
        flex: 1;
    }

    .ab-timeline__card h4::before {
        content: attr(data-year) ' – ';
    }

    .ab-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.75rem;
    }

    .ab-cta-left {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .ab-cta-btn {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .ab-hero {
        padding: calc(var(--header-height) + 2rem) 0 3rem;
    }

    .ab-hero__title {
        font-size: clamp(1.75rem, 6vw, 2.25rem);
    }

    .ab-stats-row {
        gap: 1.5rem;
    }

    .ab-mvv__grid {
        grid-template-columns: 1fr;
    }

    .ab-why__grid {
        grid-template-columns: 1fr;
    }

    .ab-img {
        height: 260px;
    }
}

@media (max-width: 480px) {
    .ab-stats-row {
        flex-direction: column;
        gap: 1rem;
    }
}


/* Finance & Accounting section start  */
/* ============================================================
   FINANCE & ACCOUNTING PAGE — Scoped under .fa-page
   ============================================================ */



/* ── HERO SECTION ── */
.fa-page .fa-hero {
    padding: 100px 0 72px;
    background: var(--color-white);
    overflow: hidden;
}

.fa-page .fa-hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 60px;
}

/* Left text */
.fa-page .fa-hero__label {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(11, 60, 116, 0.08);
    color: var(--color-primary);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 1.1rem;
}

.fa-page .fa-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 1.2rem;
}

.fa-page .fa-hero__title span {
    color: var(--color-primary);
}

.fa-page .fa-hero__desc {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 2rem;
    max-width: 500px;
}

.fa-page .fa-hero__badges {
    display: flex;
    align-items: center;
    gap: 0;
    row-gap: 16px;
    margin-bottom: 2.2rem;
    flex-wrap: wrap;
}

.fa-page .fa-hero__badge-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 22px 0 0;
    margin-right: 22px;
    border-right: 1px solid var(--color-border);
}

.fa-page .fa-hero__badge-item:last-child {
    border-right: none;
    padding-right: 0;
    margin-right: 0;
}

.fa-page .fa-hero__badge-icon {
    width: 36px;
    height: 36px;
    background: rgba(11, 60, 116, 0.08);
    color: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    flex-shrink: 0;
}

.fa-page .fa-hero__badge-text {
    display: flex;
    flex-direction: column;
}

.fa-page .fa-hero__badge-label {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.3;
}

.fa-page .fa-hero__badge-sub {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.4;
}

.fa-page .fa-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    box-shadow: 0 8px 28px rgba(11, 60, 116, 0.3);
}

.fa-page .fa-hero__cta:hover {
    background: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(11, 60, 116, 0.4);
}

/* Right image with decorative shape */
.fa-page .fa-hero__img-wrap {
    position: relative;
    z-index: 0;
}

.fa-page .fa-hero__img-wrap::before {
    content: '';
    position: absolute;
    top: -18px;
    right: -18px;
    width: 90px;
    height: 90px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    z-index: -1;
}

.fa-page .fa-hero__img-wrap::after {
    content: '';
    position: absolute;
    bottom: -22px;
    left: -22px;
    width: 110px;
    height: 110px;
    background-image: radial-gradient(circle, rgba(11, 60, 116, 0.18) 1.5px, transparent 1.5px);
    background-size: 12px 12px;
    z-index: -1;
    border-radius: var(--radius-md);
}

.fa-page .fa-hero__img {
    position: relative;
    z-index: 1;
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
    background: var(--color-light-gray);
    overflow: hidden;
}

.fa-page .fa-hero__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    border-radius: var(--radius-lg);
}

.fa-page .fa-hero__img-placeholder {
    width: 100%;
    height: 100%;
    min-height: 340px;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #e8eef7 0%, #d0dcee 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(11, 60, 116, 0.3);
    font-size: 4rem;
}

/* ── SERVICES SECTION ── */
.fa-page .fa-services {
    padding: 80px 0;
    background: var(--color-white);
}

.fa-page .fa-services__header {
    text-align: center;
    margin-bottom: 52px;
}

.fa-page .fa-services__badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(11, 60, 116, 0.08);
    color: var(--color-primary);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 1rem;
}

.fa-page .fa-services__title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.25;
}

.fa-page .fa-services__title span {
    color: var(--color-primary);
}

.fa-page .fa-services__subtitle {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Grid */
.fa-page .fa-services__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

/* Card */
.fa-page .fa-service-card {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 28px 24px 24px;
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.fa-page .fa-service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.fa-page .fa-service-card:hover {
    border-color: rgba(11, 60, 116, 0.2);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.fa-page .fa-service-card:hover::before {
    transform: scaleX(1);
}

.fa-page .fa-service-card__icon {
    width: 52px;
    height: 52px;
    background: rgba(11, 60, 116, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    color: var(--color-primary);
    font-size: 1.4rem;
    transition: var(--transition-fast);
}

.fa-page .fa-service-card:hover .fa-service-card__icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.fa-page .fa-service-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.fa-page .fa-service-card__desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 18px;
}

.fa-page .fa-service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-primary);
    font-family: var(--font-heading);
    transition: gap var(--transition-fast);
}

.fa-page .fa-service-card__link i {
    font-size: 11px;
}

.fa-page .fa-service-card:hover .fa-service-card__link {
    gap: 10px;
}

/* ── WHY CHOOSE US ── */
.fa-page .fa-why {
    padding: 72px 0;
    background: var(--color-light);
}

.fa-page .fa-why__header {
    text-align: center;
    margin-bottom: 48px;
}

.fa-page .fa-why__title {
    font-family: var(--font-heading);
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 0;
    line-height: 1.25;
}

.fa-page .fa-why__title span {
    color: var(--color-primary);
}

.fa-page .fa-why__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.fa-page .fa-why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    padding: 24px 16px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.fa-page .fa-why-item:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-3px);
    border-color: rgba(11, 60, 116, 0.15);
}

.fa-page .fa-why-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(11, 60, 116, 0.08);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.25rem;
    transition: var(--transition-fast);
}

.fa-page .fa-why-item:hover .fa-why-item__icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.fa-page .fa-why-item__label {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.4;
}

/* ── CTA BANNER ── */
.fa-page .fa-cta {
    background: var(--color-primary);
    padding: 60px 0;
}

.fa-page .fa-cta__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.fa-page .fa-cta__title {
    font-family: var(--font-heading);
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--color-white);
    margin-bottom: 8px;
    line-height: 1.3;
}

.fa-page .fa-cta__sub {
    font-size: var(--fs-base);
    color: rgba(255, 255, 255, 0.72);
}

.fa-page .fa-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: var(--color-white);
    color: var(--color-primary);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    transition: var(--transition-base);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.fa-page .fa-cta__btn:hover {
    background: var(--color-secondary);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 1100px) {
    .fa-page .fa-services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fa-page .fa-why__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 860px) {
    .fa-page .fa-hero__grid {
        grid-template-columns: 1fr;
    }

    .fa-page .fa-hero__img-wrap {
        max-width: 520px;
        margin: 0 auto;
    }

    .fa-page .fa-cta__inner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 600px) {
    .fa-page .fa-hero {
        padding: 90px 0 48px;
    }

    .fa-page .fa-hero__badges {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        row-gap: 14px;
    }

    .fa-page .fa-hero__badge-item {
        border-right: none;
        padding-right: 0;
        margin-right: 0;
        padding-bottom: 14px;
        border-bottom: 1px solid var(--color-border);
        width: 100%;
    }

    .fa-page .fa-hero__badge-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .fa-page .fa-services__grid {
        grid-template-columns: 1fr;
    }

    .fa-page .fa-why__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .fa-page .fa-services__title,
    .fa-page .fa-why__title {
        font-size: var(--fs-2xl);
    }
}

/* Finance & Accounting section end  */



/* ============================================================
   CONTACT PAGE – contact.css
   Uses global CSS variables from style.css
   Primary color: #0b3c74 (no orange)
   All rules scoped under parent section classes
   ============================================================ */


/* ============================================================
   HERO SECTION
   ============================================================ */
/* ==========================
   CONTACT HERO
========================== */

.contact-hero {
    padding: 130px 0 60px;
    background: linear-gradient(135deg,
            #f8f9fc 0%,
            #fff4ed 50%,
            #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

/* Grid Background */
.contact-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 200, 220, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 220, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center,
            black 0%,
            transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at center,
            black 0%,
            transparent 72%);
    pointer-events: none;
    z-index: 0;
}

/* Soft Glow */
.contact-hero::after {
    content: "";
    position: absolute;
    top: -140px;
    left: -140px;
    width: 380px;
    height: 380px;
    background: rgba(11, 60, 116, 0.06);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
}

/* Layout */

.contact-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ==========================
   LEFT CONTENT
========================== */

.contact-hero__title {
    font-family: var(--font-heading);
    font-size: var(--fs-4xl);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 1.25rem;
}

.contact-hero__title .highlight {
    color: var(--color-primary);
}

.contact-hero__desc {
    max-width: 480px;
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: 1.75;
}

/* ==========================
   IMAGE
========================== */

.contact-hero__image-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

/* Decorative Block */

.contact-hero__image-wrap::before {
    content: "";
    position: absolute;
    top: -22px;
    right: -22px;
    width: 120px;
    height: 120px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    z-index: 0;
}

/* Dot Pattern */

.contact-hero__image-wrap::after {
    content: "";
    position: absolute;
    bottom: -22px;
    left: -22px;
    width: 90px;
    height: 90px;
    background-image: radial-gradient(circle,
            var(--color-primary) 1.5px,
            transparent 1.5px);
    background-size: 12px 12px;
    opacity: 0.18;
    z-index: 0;
}

.contact-hero__image-box {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

.contact-hero__image-box img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

/* Extra Glow Behind Image */

.contact-hero__image-box::before {
    content: "";
    position: absolute;
    bottom: -45px;
    left: -45px;
    width: 220px;
    height: 220px;
    background: rgba(255, 140, 66, 0.08);
    border-radius: 50%;
    filter: blur(25px);
    z-index: -1;
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {

    .contact-hero {
        padding: 120px 0 50px;
    }

    .contact-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .contact-hero__desc {
        max-width: 100%;
        margin: 0 auto;
    }

    .contact-hero__image-wrap {
        justify-content: center;
    }

    .contact-hero__image-box {
        max-width: 520px;
    }
}

@media (max-width: 768px) {

    .contact-hero {
        padding: 110px 0 40px;
    }

    .contact-hero__title {
        font-size: 2.3rem;
    }

    .contact-hero__image-box img {
        height: 260px;
    }
}

@media (max-width: 480px) {

    .contact-hero__title {
        font-size: 1.9rem;
    }

    .contact-hero__image-box img {
        height: 220px;
    }
}


/* ============================================================
   INFO STRIP
   ============================================================ */
.contact-info-strip {
    padding: 64px 0 64px;
    background: var(--color-white);

    & .contact-info-strip__grid {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        border-radius: var(--radius-lg);
        overflow: hidden;
        box-shadow: 0 2px 24px rgba(11, 60, 116, 0.08);
        border: 1px solid var(--color-border);
    }

    & .info-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        padding: 32px 28px;
        background: var(--color-white);
        border-right: 1px solid var(--color-border);
        transition: background var(--transition-fast), transform var(--transition-fast);
        position: relative;

        &:last-child {
            border-right: none;
        }

        &:hover {
            background: var(--color-light);
        }

        /* Top accent bar on hover */
        &::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: var(--color-primary);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.3s ease;
        }

        &:hover::before {
            transform: scaleX(1);
        }
    }

    & .info-card__icon {
        width: 48px;
        height: 48px;
        background: rgba(11, 60, 116, 0.08);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-primary);
        font-size: 18px;
        transition: background var(--transition-fast), color var(--transition-fast);

        .info-card:hover & {
            background: var(--color-primary);
            color: var(--color-white);
        }
    }

    & .info-card__body {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    & .info-card__label {
        font-family: var(--font-heading);
        font-size: var(--fs-sm);
        font-weight: 700;
        color: var(--color-secondary);
        text-transform: uppercase;
        letter-spacing: 0.04em;
    }

    & .info-card__value {
        font-size: var(--fs-sm);
        color: var(--color-text-muted);
        line-height: 1.6;
        transition: color var(--transition-fast);

        &:is(a):hover {
            color: var(--color-primary);
        }
    }
}


/* ============================================================
   CONTACT MAIN (Form + Sidebar)
   ============================================================ */
.contact-main {
    padding: 20px 0 80px;
    background: var(--color-white);

    & .contact-main__header {
        margin-bottom: 50px;
    }

    & .contact-main__layout {
        display: grid;
        grid-template-columns: 1fr 360px;
        gap: 40px;
        align-items: start;
    }

    /* ── FORM ── */
    & .contact-form-wrap {
        background: var(--color-white);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        padding: 40px;
        box-shadow: var(--shadow-card);
    }

    & .contact-form {
        display: flex;
        flex-direction: column;
        gap: 20px;

        & .form-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }

        & .form-group {
            display: flex;
            flex-direction: column;
            gap: 7px;

            & label {
                font-family: var(--font-heading);
                font-size: var(--fs-sm);
                font-weight: 600;
                color: var(--color-secondary);
            }

            & .req {
                color: var(--color-primary);
                margin-left: 2px;
            }

            & input,
            & textarea,
            & select {
                width: 100%;
                padding: 12px 16px;
                border: 1.5px solid var(--color-border);
                border-radius: var(--radius-sm);
                font-family: var(--font-body);
                font-size: var(--fs-sm);
                color: var(--color-text);
                background: var(--color-light);
                transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
                outline: none;
                appearance: none;
                -webkit-appearance: none;

                &::placeholder {
                    color: var(--color-text-muted);
                    font-size: var(--fs-sm);
                }

                &:focus {
                    border-color: var(--color-primary);
                    background: var(--color-white);
                    box-shadow: 0 0 0 3px rgba(11, 60, 116, 0.08);
                }
            }

            & textarea {
                resize: vertical;
                min-height: 130px;
            }

            /* Select wrapper for custom arrow */
            & .select-wrap {
                position: relative;

                & select {
                    width: 100%;
                    cursor: pointer;
                    padding-right: 40px;
                }

                & .select-arrow {
                    position: absolute;
                    right: 14px;
                    top: 50%;
                    transform: translateY(-50%);
                    pointer-events: none;
                    color: var(--color-text-muted);
                    font-size: 12px;
                }
            }
        }
    }

    /* Submit Button */
    & .contact-submit {
        align-self: flex-start;
        background: var(--color-primary);
        color: var(--color-white);
        padding: 14px 32px;
        border-radius: var(--radius-full);
        font-family: var(--font-heading);
        font-size: var(--fs-sm);
        font-weight: 700;
        display: inline-flex;
        align-items: center;
        gap: 10px;
        transition: background var(--transition-base), transform var(--transition-fast), box-shadow var(--transition-fast);
        cursor: pointer;
        border: 2px solid transparent;

        &:hover {
            background: var(--color-secondary);
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(11, 60, 116, 0.22);
        }
    }

    /* ── SIDEBAR ── */
    & .contact-sidebar__card {
        background: var(--color-light);
        border: 1px solid var(--color-border);
        border-radius: var(--radius-lg);
        padding: 32px 28px;
    }

    & .contact-sidebar__title {
        font-family: var(--font-heading);
        font-size: var(--fs-lg);
        font-weight: 800;
        color: var(--color-secondary);
        margin-bottom: 24px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--color-border);
    }

    & .why-list {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    & .why-item {
        display: flex;
        align-items: flex-start;
        gap: 14px;

        & .why-item__icon {
            width: 40px;
            height: 40px;
            min-width: 40px;
            background: rgba(11, 60, 116, 0.08);
            border-radius: var(--radius-sm);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--color-primary);
            font-size: 15px;
        }

        & .why-item__body {
            & strong {
                display: block;
                font-family: var(--font-heading);
                font-size: var(--fs-sm);
                font-weight: 700;
                color: var(--color-secondary);
                margin-bottom: 3px;
            }

            & p {
                font-size: var(--fs-sm);
                color: var(--color-text-muted);
                line-height: 1.55;
                margin: 0;
            }
        }
    }
}


/* ============================================================
   CTA BANNER
   ============================================================ */
.contact-cta {
    background: var(--color-primary);
    padding: 40px 0;

    & .contact-cta__inner {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 32px;
        flex-wrap: wrap;
    }

    & .contact-cta__left {
        display: flex;
        align-items: center;
        gap: 20px;
    }

    & .contact-cta__icon {
        width: 56px;
        height: 56px;
        min-width: 56px;
        background: rgba(255, 255, 255, 0.12);
        border-radius: var(--radius-md);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--color-white);
        font-size: 22px;
    }

    & .contact-cta__title {
        font-family: var(--font-heading);
        font-size: var(--fs-lg);
        font-weight: 700;
        color: var(--color-white);
        margin-bottom: 4px;
    }

    & .contact-cta__sub {
        font-size: var(--fs-sm);
        color: rgba(255, 255, 255, 0.72);
        margin: 0;
    }

    & .contact-cta__btn {
        background: var(--color-white);
        color: var(--color-primary);
        font-weight: 700;
        white-space: nowrap;
        border: 2px solid transparent;
        transition: background var(--transition-base), color var(--transition-base), transform var(--transition-fast);

        &:hover {
            background: transparent;
            color: var(--color-white);
            border-color: var(--color-white);
            transform: translateY(-2px);
        }
    }
}


/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet: ≤ 1024px */
@media (max-width: 1024px) {
    .contact-hero {
        & .contact-hero__inner {
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
    }

    .contact-info-strip {
        & .contact-info-strip__grid {
            grid-template-columns: repeat(2, 1fr);
        }

        & .info-card:nth-child(2) {
            border-right: none;
        }

        & .info-card:nth-child(1),
        & .info-card:nth-child(2) {
            border-bottom: 1px solid var(--color-border);
        }
    }

    .contact-main {
        & .contact-main__layout {
            grid-template-columns: 1fr;
        }

        & .contact-sidebar {
            order: -1;
        }

        & .contact-sidebar__card {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 0 24px;
            align-items: start;
        }

        & .contact-sidebar__title {
            grid-column: 1 / -1;
        }

        & .why-list {
            grid-column: 1 / -1;
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 20px;
        }
    }
}

/* Mobile: ≤ 768px */
@media (max-width: 768px) {
    .contact-hero {
        padding: 100px 0 40px;

        & .contact-hero__inner {
            grid-template-columns: 1fr;
            gap: 36px;
        }

        & .contact-hero__title {
            font-size: var(--fs-3xl);
        }

        & .contact-hero__image-wrap::before {
            width: 80px;
            height: 80px;
            top: -12px;
            right: -12px;
        }

        & .contact-hero__image-box img {
            height: 240px;
        }
    }

    .contact-info-strip {
        & .contact-info-strip__grid {
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }

        & .info-card:nth-child(odd) {
            border-right: 1px solid var(--color-border);
        }

        & .info-card:nth-child(even) {
            border-right: none;
        }

        & .info-card:nth-child(1),
        & .info-card:nth-child(2) {
            border-bottom: 1px solid var(--color-border);
        }
    }

    .contact-main {
        & .contact-form-wrap {
            padding: 24px 20px;
        }

        & .contact-form .form-row {
            grid-template-columns: 1fr;
            gap: 16px;
        }

        & .why-list {
            grid-template-columns: 1fr;
        }
    }

    .contact-cta {
        & .contact-cta__inner {
            flex-direction: column;
            align-items: flex-start;
            gap: 24px;
        }

        & .contact-cta__btn {
            width: 100%;
            justify-content: center;
        }
    }
}

/* Small Mobile: ≤ 480px */
@media (max-width: 480px) {
    .contact-hero {
        & .contact-hero__title {
            font-size: var(--fs-2xl);
        }
    }

    .contact-info-strip {
        & .contact-info-strip__grid {
            grid-template-columns: 1fr;
            border-radius: var(--radius-md);
        }

        & .info-card {
            border-right: none;
            border-bottom: 1px solid var(--color-border);

            &:last-child {
                border-bottom: none;
            }
        }
    }

    .contact-main {
        & .contact-submit {
            width: 100%;
            justify-content: center;
        }
    }
}




/* ============================================================
   FINOVORA GLOBAL - Blog Page Stylesheet (blog.css)
   Uses global CSS variables from style.css
   ============================================================ */

/* ============================================================
   BLOG HERO SECTION
   ============================================================ */
/* ===========================
   BLOG HERO
=========================== */

.blog-hero {
    padding: 130px 0 60px;
    background: linear-gradient(135deg,
            #f8f9fc 0%,
            #fff4ed 50%,
            #f8f9fc 100%);
    position: relative;
    overflow: hidden;
}

/* Grid Background */
.blog-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 200, 220, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 220, 0.3) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center,
            black 0%,
            transparent 72%);
    -webkit-mask-image: radial-gradient(ellipse at center,
            black 0%,
            transparent 72%);
    pointer-events: none;
    z-index: 0;
}

/* Soft Glow */
.blog-hero::after {
    content: "";
    position: absolute;
    top: -140px;
    left: -140px;
    width: 380px;
    height: 380px;
    background: rgba(11, 60, 116, 0.06);
    border-radius: 50%;
    filter: blur(30px);
    z-index: 0;
}

/* Main Layout */

.blog-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

/* ===========================
   LEFT CONTENT
=========================== */

.blog-hero__content {
    max-width: 520px;
}

.blog-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 1rem;
}

.blog-hero__subtitle {
    font-family: var(--font-body);
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 2rem;
}

/* ===========================
   SEARCH BAR
=========================== */

.blog-search {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border: 1.5px solid rgba(11, 60, 116, 0.08);
    border-radius: var(--radius-full);
    padding: 6px 6px 6px 20px;
    gap: 0.75rem;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.05);
    max-width: 460px;
    transition: 0.3s ease;
}

.blog-search:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 4px rgba(11, 60, 116, 0.08);
}

.blog-search__icon {
    color: var(--color-text-muted);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.blog-search__input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--color-text);
}

.blog-search__input::placeholder {
    color: var(--color-text-muted);
}

.blog-search__btn {
    width: 42px;
    height: 42px;
    border: none;
    border-radius: 50%;
    background: var(--color-primary);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: 0.3s ease;
    flex-shrink: 0;
}

.blog-search__btn:hover {
    background: var(--color-accent);
    transform: scale(1.08);
}

/* ===========================
   RIGHT IMAGE
=========================== */

.blog-hero__image-wrap {
    position: relative;
    display: flex;
    justify-content: flex-end;
}

.blog-hero__image-box {
    position: relative;
    width: 100%;
    max-width: 500px;
    border-radius: var(--radius-lg);
    overflow: visible;
}

/* Decorative Shapes */

.blog-hero__image-box::before {
    content: "";
    position: absolute;
    top: -18px;
    right: -18px;
    width: 90px;
    height: 90px;
    background: var(--color-primary);
    border-radius: var(--radius-md);
    z-index: 0;
}

.blog-hero__image-box::after {
    content: "";
    position: absolute;
    top: -8px;
    right: -8px;
    width: 60px;
    height: 60px;
    background: rgba(11, 60, 116, 0.25);
    border-radius: var(--radius-sm);
    z-index: 1;
}

/* Image */

.blog-hero__img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Background Glow Behind Image */

.blog-hero__image-deco {
    position: absolute;
    bottom: -50px;
    left: -40px;
    width: 220px;
    height: 220px;
    background: rgba(255, 140, 66, 0.08);
    border-radius: 50%;
    filter: blur(25px);
    z-index: 0;
    pointer-events: none;
}

/* ===========================
   RESPONSIVE
=========================== */

@media (max-width: 992px) {

    .blog-hero {
        padding: 120px 0 50px;
    }

    .blog-hero__inner {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .blog-hero__content {
        max-width: 100%;
    }

    .blog-search {
        margin: 0 auto;
    }

    .blog-hero__image-wrap {
        justify-content: center;
    }

    .blog-hero__image-box {
        max-width: 520px;
    }
}

@media (max-width: 768px) {

    .blog-hero {
        padding: 110px 0 40px;
    }

    .blog-hero__title {
        font-size: 2.2rem;
    }

    .blog-hero__subtitle {
        font-size: 1rem;
    }

    .blog-hero__img {
        height: 260px;
    }

    .blog-search {
        max-width: 100%;
    }
}

@media (max-width: 480px) {

    .blog-hero__title {
        font-size: 1.9rem;
    }

    .blog-search {
        padding: 5px 5px 5px 16px;
    }

    .blog-search__btn {
        width: 38px;
        height: 38px;
    }

    .blog-hero__img {
        height: 220px;
    }
}

/* ============================================================
   FILTER TABS SECTION
   ============================================================ */
.blog-tabs-section {
    padding: 32px 0 20px;
    background: var(--color-white);
    border-bottom: 1.5px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 90;
}

.blog-tabs {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.blog-tab {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    background: var(--color-light-gray);
    border: 1.5px solid transparent;
    border-radius: var(--radius-full);
    padding: 8px 20px;
    cursor: pointer;
    transition: var(--transition-fast);
    white-space: nowrap;
}

.blog-tab:hover {
    color: var(--color-primary);
    background: rgba(11, 60, 116, 0.07);
    border-color: rgba(11, 60, 116, 0.15);
}

.blog-tab.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(11, 60, 116, 0.25);
}

/* ============================================================
   BLOG GRID SECTION
   ============================================================ */
.blog-grid-section {
    padding: var(--sp-xl) 0 var(--sp-2xl);
    background: var(--color-white);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* ============================================================
   BLOG CARD
   ============================================================ */
.blog-card {
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1.5px solid var(--color-border);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition-base);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(11, 60, 116, 0.15);
}

/* Card Image */
.blog-card__img-wrap {
    position: relative;
    overflow: hidden;
}

.blog-card__img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card__img {
    transform: scale(1.05);
}

/* Category Badge */
.blog-card__cat {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    letter-spacing: 0.03em;
    text-transform: uppercase;
    z-index: 1;
}

.blog-card__cat--finance {
    background: rgba(11, 60, 116, 0.1);
    color: var(--color-primary);
}

.blog-card__cat--automation {
    background: rgba(22, 160, 133, 0.1);
    color: #0e8a72;
}

.blog-card__cat--ai {
    background: rgba(108, 99, 255, 0.1);
    color: #4b44d6;
}

.blog-card__cat--growth {
    background: rgba(255, 165, 0, 0.12);
    color: #b36c00;
}

.blog-card__cat--compliance {
    background: rgba(220, 53, 69, 0.1);
    color: #b71c1c;
}

/* Card Body */
.blog-card__body {
    padding: 1.25rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card__title {
    font-family: var(--font-heading);
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.6rem;
    line-height: 1.4;
    transition: color var(--transition-fast);
}

.blog-card:hover .blog-card__title {
    color: var(--color-primary);
}

.blog-card__excerpt {
    font-family: var(--font-body);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.65;
    flex: 1;
    margin-bottom: 1rem;
}

/* Meta Row */
.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    flex-wrap: wrap;
    border-top: 1px solid var(--color-border);
    padding-top: 0.85rem;
    margin-top: auto;
}

.blog-card__meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card__meta i {
    font-size: 0.7rem;
}

.blog-card__read {
    margin-left: auto;
    color: var(--color-primary);
    font-weight: 700;
    font-size: var(--fs-xs);
    display: flex;
    align-items: center;
    gap: 5px;
    transition: gap var(--transition-fast);
}

.blog-card:hover .blog-card__read {
    gap: 8px;
}

/* ============================================================
   PAGINATION
   ============================================================ */
.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.blog-pagination__num {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    background: var(--color-light-gray);
    border: 1.5px solid transparent;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-pagination__num:hover {
    background: rgba(11, 60, 116, 0.08);
    color: var(--color-primary);
    border-color: rgba(11, 60, 116, 0.2);
}

.blog-pagination__num.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: 0 4px 14px rgba(11, 60, 116, 0.28);
}

.blog-pagination__dots {
    color: var(--color-text-muted);
    font-size: var(--fs-base);
    padding: 0 4px;
    display: flex;
    align-items: center;
}

.blog-pagination__btn {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background: var(--color-light-gray);
    border: 1.5px solid var(--color-border);
    color: var(--color-text-muted);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.blog-pagination__btn:hover:not(.disabled) {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.blog-pagination__btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

/* ============================================================
   HIDDEN STATE (for filtering)
   ============================================================ */
.blog-card.hidden {
    display: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .blog-hero__inner {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 100px 0 50px;
    }

    .blog-hero__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .blog-hero__content {
        max-width: 100%;
        text-align: center;
    }

    .blog-search {
        max-width: 100%;
        margin: 0 auto;
    }

    .blog-hero__image-wrap {
        justify-content: center;
    }

    .blog-hero__image-box {
        max-width: 420px;
    }

    .blog-hero__img {
        height: 260px;
    }

    .blog-tabs-section {
        padding: 20px 0 14px;
        position: static;
    }

    .blog-tabs {
        gap: 6px;
    }

    .blog-tab {
        font-size: 0.72rem;
        padding: 7px 14px;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .blog-grid-section {
        padding: var(--sp-lg) 0 var(--sp-xl);
    }
}

@media (max-width: 480px) {
    .blog-hero__title {
        font-size: 1.75rem;
    }

    .blog-hero__img {
        height: 220px;
    }

    .blog-card__img {
        height: 180px;
    }

    .blog-pagination__num,
    .blog-pagination__btn {
        width: 36px;
        height: 36px;
        font-size: 0.75rem;
    }
}


/* =========================================================
   INDUSTRIES PAGE
========================================================= */
/* HERO SECTION BACKGROUND */
.industries-page .industries-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 110px;

    /* Background */
    padding: 80px 60px;
    background: linear-gradient(135deg,
            #f8f9fc 0%,
            #fff4ed 50%,
            #f8f9fc 100%);
    /* border-radius: 32px; */
    position: relative;
    overflow: hidden;
}

/* Grid Pattern */
.industries-page .industries-hero::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(200, 200, 220, .3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 220, .3) 1px, transparent 1px);

    background-size: 60px 60px;

    -webkit-mask-image: radial-gradient(circle at center,
            black 0%,
            transparent 70%);
    mask-image: radial-gradient(circle at center,
            black 0%,
            transparent 70%);

    pointer-events: none;
    z-index: 1;
}

/* Content Above Background */
.industries-page .industries-hero>* {
    position: relative;
    z-index: 2;
}

.industries-page {
    padding: 100px 0;
    background: #fff;
    overflow: hidden;
}

/* HERO */
.industries-page .industries-hero {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 70px;
    align-items: center;
    margin-bottom: 110px;
}

.industries-page .industries-hero-content h1 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    margin-bottom: 22px;
    color: var(--color-secondary);
    font-weight: 800;
}

.industries-page .industries-hero-content h1 span {
    color: var(--color-primary);
}

.industries-page .industries-hero-content p {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    max-width: 620px;
    margin-bottom: 38px;
}

/* COUNTERS */
.industries-page .industries-counters {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
}

.industries-page .counter-box {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 18px;
    padding: 22px 18px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
}

.industries-page .counter-box:hover {
    transform: translateY(-8px);
    border-color: rgba(11, 60, 116, 0.18);
    box-shadow: var(--shadow-card);
}

.industries-page .counter-box h3 {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 800;
}

.industries-page .counter-box p {
    margin: 0;
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.5;
}

/* IMAGE */
.industries-page .industries-hero-image {
    position: relative;
}

.industries-page .industries-hero-image img {
    width: 100%;
    border-radius: 28px;
    position: relative;
    z-index: 2;
    box-shadow: 0 30px 60px rgba(11, 60, 116, 0.12);
}

.industries-page .industries-hero-image::before {
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    border-radius: 28px;
    background: rgba(11, 60, 116, 0.08);
    top: -25px;
    right: -25px;
    z-index: 1;
}

.industries-page .industries-hero-image::after {
    content: "";
    position: absolute;
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: var(--color-primary);
    top: -15px;
    right: -15px;
    z-index: 3;
}

/* GRID */
.industries-page .industries-grid-wrapper {
    margin-bottom: 110px;
}

.industries-page .industries-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.industries-page .industry-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 22px;
    padding: 30px 24px;
    transition: var(--transition-base);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.industries-page .industry-card::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
    background: var(--color-primary);
    transform: scaleX(0);
    transition: var(--transition-base);
}

.industries-page .industry-card:hover::before {
    transform: scaleX(1);
}

.industries-page .industry-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-card);
}

.industries-page .industry-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: rgba(11, 60, 116, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
}

.industries-page .industry-icon i {
    font-size: 1.6rem;
    color: var(--color-primary);
}

.industries-page .industry-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
    color: var(--color-secondary);
}

.industries-page .industry-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* WHY */
.industries-page .industries-why {
    margin-bottom: 100px;
}

.industries-page .why-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 22px;
}

.industries-page .why-card {
    background: var(--color-light);
    border-radius: 20px;
    padding: 32px 20px;
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid transparent;
}

.industries-page .why-card:hover {
    background: #fff;
    border-color: var(--color-border);
    transform: translateY(-8px);
    box-shadow: var(--shadow-sm);
}

.industries-page .why-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.industries-page .why-card h4 {
    font-size: 1rem;
    color: var(--color-secondary);
}

/* CTA */
.industries-page .industries-cta {
    background: linear-gradient(135deg,
            var(--color-primary),
            #0f4e96);
    border-radius: 30px;
    padding: 45px 50px;
    position: relative;
    overflow: hidden;
}

.industries-page .industries-cta::before {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    right: -100px;
    top: -100px;
}

.industries-page .industries-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    position: relative;
    z-index: 2;
}

.industries-page .industries-cta-content h3 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 10px;
}

.industries-page .industries-cta-content p {
    color: rgba(255, 255, 255, 0.75);
}

/* =========================================================
   RESPONSIVE
========================================================= */

@media (max-width: 1200px) {

    .industries-page .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .industries-page .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {

    .industries-page {
        padding: 100px 0;
    }

    .industries-page .industries-hero {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .industries-page .industries-hero-image {
        order: -1;
    }

    .industries-page .industries-counters {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-page .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-page .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-page .industries-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {

    .industries-page {
        padding: 100px 0;
    }

    .industries-page .industries-counters {
        grid-template-columns: 1fr;
    }

    .industries-page .industries-grid {
        grid-template-columns: 1fr;
    }

    .industries-page .why-grid {
        grid-template-columns: 1fr;
    }

    .industries-page .industries-hero-content h1 {
        font-size: 2.2rem;
    }

    .industries-page .industries-cta {
        padding: 35px 28px;
    }

    .industries-page .industries-cta-content h3 {
        font-size: 1.6rem;
    }

    .industries-page .industries-hero {
        padding: 40px 20px;

    }

}



/* ============================================================
   FINOVORA GLOBAL – Privacy Policy Page  (privacy.css)
   Depends on: style.css (global variables & base styles)
   ============================================================ */

/* ============================================================
   HERO
   ============================================================ */
.pp-hero {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0;
    min-height: 340px;
    /* Background image covering full hero */
    background-image: url('../Images/Privacy\ Policy.png');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
}

/* White fade overlay — solid white on left, transparent on right */
.pp-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            #ffffff 0%,
            #ffffff 38%,
            rgba(255, 255, 255, 0.82) 55%,
            rgba(255, 255, 255, 0.18) 75%,
            rgba(255, 255, 255, 0) 100%);
    z-index: 0;
}

/* Dot grid decoration on right side */
.pp-hero::after {
    content: '';
    position: absolute;
    right: 40px;
    top: 30px;
    width: 130px;
    height: 130px;
    background-image: radial-gradient(circle, rgba(11, 60, 116, 0.18) 1.2px, transparent 1.2px);
    background-size: 14px 14px;
    z-index: 1;
    pointer-events: none;
}

.pp-hero__inner {
    position: relative;
    z-index: 2;
}

/* ---- Left content ---- */
.pp-hero__content {
    max-width: 560px;
    padding: 56px 0 68px;
}

.pp-hero__title {
    font-family: var(--font-heading);
    font-size: clamp(2.25rem, 4vw, 3rem);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 1rem;
    line-height: 1.15;
}

.pp-hero__sub {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    max-width: 460px;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.pp-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

/* btn-primary — blue on white hero */
.pp-hero .btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 8px 28px rgba(11, 60, 116, 0.25);
}

.pp-hero .btn-primary:hover {
    background: #082f5c;
    color: var(--color-white);
    border: 2px solid transparent;
    box-shadow: 0 12px 36px rgba(11, 60, 116, 0.38);
}

/* ============================================================
   BODY LAYOUT  (sidebar + main)
   ============================================================ */
.pp-body {
    background: var(--color-light);
    padding: 56px 0 72px;
}

.pp-body__inner {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
    align-items: start;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.pp-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 24px);
}

.pp-sidebar__card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    box-shadow: var(--shadow-card);
    border: 1px solid var(--color-border);
}

.pp-sidebar__label {
    font-family: var(--font-heading);
    font-size: var(--fs-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

/* TOC list */
.pp-toc ul {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.pp-toc__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: var(--radius-sm);
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    font-family: var(--font-body);
    font-weight: 500;
    transition: var(--transition-fast);
    line-height: 1.4;
}

.pp-toc__link:hover {
    background: var(--color-light-gray);
    color: var(--color-text);
}

.pp-toc__link.active {
    background: rgba(11, 60, 116, 0.08);
    color: var(--color-primary);
    font-weight: 600;
}

.pp-toc__num {
    font-size: var(--fs-xs);
    font-weight: 700;
    color: inherit;
    min-width: 26px;
    opacity: 0.7;
}

.pp-sidebar__divider {
    height: 1px;
    background: var(--color-border);
    margin: 20px 0;
}

/* Download PDF button */
.pp-download {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    border-radius: var(--radius-md);
    border: 1.5px dashed var(--color-border);
    transition: var(--transition-fast);
    color: var(--color-text);
}

.pp-download:hover {
    border-color: var(--color-primary);
    background: rgba(11, 60, 116, 0.04);
    color: var(--color-primary);
}

.pp-download__icon {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-sm);
    background: rgba(11, 60, 116, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.pp-download__label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-secondary);
    line-height: 1.3;
}

.pp-download__sub {
    display: block;
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.pp-download__arrow {
    margin-left: auto;
    font-size: 0.85rem;
    color: var(--color-primary);
    opacity: 0.7;
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.pp-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.pp-section {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px 32px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    margin-bottom: 12px;
    transition: box-shadow var(--transition-fast), transform var(--transition-fast);
}

.pp-section:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

/* Icon circle */
.pp-section__icon-wrap {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    margin-top: 3px;
}

.pp-section__icon-wrap--blue {
    background: rgba(11, 60, 116, 0.1);
    color: var(--color-primary);
}

.pp-section__icon-wrap--teal {
    background: rgba(6, 148, 162, 0.1);
    color: #0694a2;
}

.pp-section__icon-wrap--orange {
    background: rgba(255, 140, 56, 0.12);
    color: var(--color-primary-light);
}

.pp-section__body {
    flex: 1;
}

.pp-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
    line-height: 1.3;
}

.pp-section p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.75;
}

.pp-link {
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.pp-link:hover {
    opacity: 0.8;
}

/* View all sections */
.pp-view-all {
    display: flex;
    justify-content: center;
    margin-top: 8px;
}

.pp-view-all__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-primary);
    padding: 10px 24px;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    cursor: pointer;
    transition: var(--transition-fast);
}

.pp-view-all__btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

/* ============================================================
   NEED ASSISTANCE BANNER
   ============================================================ */
.pp-assist {
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
    padding: 36px 0;
}

.pp-assist__inner {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

.pp-assist__left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex: 1 1 260px;
}

.pp-assist__icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: rgba(11, 60, 116, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--color-primary);
    flex-shrink: 0;
}

.pp-assist__title {
    font-family: var(--font-heading);
    font-size: var(--fs-md);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.pp-assist__text {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.5;
}

.pp-assist__contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 220px;
}

.pp-assist__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-sm);
    color: var(--color-text);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.pp-assist__contact-item:hover {
    color: var(--color-primary);
}

.pp-assist__contact-item i {
    font-size: 0.9rem;
    color: var(--color-primary);
    width: 18px;
    text-align: center;
}

.pp-assist__cta {
    background: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 6px 20px rgba(11, 60, 116, 0.22);
    flex-shrink: 0;
}

.pp-assist__cta:hover {
    background: #082f5c;
    border: 2px solid transparent;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(11, 60, 116, 0.32);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Tablet */
@media (max-width: 1024px) {
    .pp-body__inner {
        grid-template-columns: 240px 1fr;
        gap: 24px;
    }

    .pp-section {
        padding: 22px 24px;
    }
}

/* Large mobile / small tablet */
@media (max-width: 768px) {
    .pp-hero {
        background-position: center center;
    }

    .pp-hero::before {
        background: linear-gradient(to bottom,
                rgba(255, 255, 255, 0.96) 0%,
                rgba(255, 255, 255, 0.90) 60%,
                rgba(255, 255, 255, 0.70) 100%);
    }

    .pp-hero__content {
        padding: 40px 0 48px;
        text-align: center;
        max-width: 100%;
    }

    .pp-hero__sub {
        margin-left: auto;
        margin-right: auto;
    }

    .pp-hero__actions {
        justify-content: center;
    }

    .pp-body {
        padding: 40px 0 56px;
    }

    .pp-body__inner {
        grid-template-columns: 1fr;
    }

    .pp-sidebar {
        position: static;
        order: -1;
    }

    .pp-toc ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 4px;
    }

    .pp-section {
        flex-direction: column;
        gap: 14px;
        padding: 20px;
    }

    .pp-assist__inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .pp-assist__cta {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .pp-toc ul {
        grid-template-columns: 1fr;
    }

    .pp-hero__title {
        font-size: 2rem;
    }

    .pp-hero__actions {
        flex-direction: column;
        width: 100%;
    }

    .pp-hero__actions .btn {
        width: 100%;
        justify-content: center;
    }

    .pp-section__title {
        font-size: var(--fs-base);
    }
}


/* ============================================================
   TERMS & CONDITIONS – Page Specific Styles
   Uses global CSS variables from style.css
   ============================================================ */

/* ---- HERO ---- */
.tc-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    background-image: url('../Images/Terms\ &\ Conditions.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}



.tc-hero__container {
    position: relative;
    z-index: 1;
}

.tc-hero__content {
    max-width: 580px;
    padding: var(--sp-2xl) 0;
}

.tc-hero__title {
    font-family: var(--font-heading);
    font-size: var(--fs-5xl);
    font-weight: 800;
    color: var(--color-secondary);
    line-height: 1.1;
    margin-bottom: var(--sp-sm);
}

.tc-hero__desc {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--sp-lg);
    max-width: 460px;
}

.tc-hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Outline button override on dark hero bg */
.tc-hero .btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.tc-hero__btn-outline {
    color: var(--color-primary) !important;
    border-color: var(--color-accent) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}



.tc-hero__btn-outline:hover {
    background: var(--color-white) !important;
    color: var(--color-primary) !important;
    border-color: var(--color-white) !important;
}

/* ============================================================
   MAIN LAYOUT
   ============================================================ */
.tc-main {
    padding: var(--sp-2xl) 0;
    background: var(--color-white);
}

.tc-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--sp-xl);
    align-items: start;
}

/* ============================================================
   SIDEBAR
   ============================================================ */
.tc-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1.5rem);
}

.tc-sidebar__box {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.tc-sidebar__heading {
    font-family: var(--font-heading);
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 1rem 1.25rem 0.75rem;
    border-bottom: 1px solid var(--color-border);
}

.tc-sidebar__list {
    padding: 0.5rem 0;
}

.tc-sidebar__item {
    border-left: 3px solid transparent;
    transition: var(--transition-fast);
}

.tc-sidebar__item.active {
    border-left-color: var(--color-primary-light);
    background: rgba(255, 140, 56, 0.05);
}

.tc-sidebar__item.active .tc-sidebar__link {
    color: var(--color-primary);
    font-weight: 600;
}

.tc-sidebar__item.active .tc-sidebar__num {
    color: var(--color-primary-light);
}

.tc-sidebar__link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 1.25rem;
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    transition: var(--transition-fast);
}

.tc-sidebar__link:hover {
    color: var(--color-primary);
    background: var(--color-light);
}

.tc-sidebar__num {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-border);
    min-width: 26px;
    transition: var(--transition-fast);
}

/* PDF Download */
.tc-sidebar__pdf {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-top: 1px solid var(--color-border);
    background: var(--color-light);
}

.tc-sidebar__pdf-icon {
    width: 36px;
    height: 36px;
    background: rgba(255, 140, 56, 0.12);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary-light);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.tc-sidebar__pdf-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.tc-sidebar__pdf-info span {
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text);
}

.tc-sidebar__pdf-info small {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
}

.tc-sidebar__pdf-btn {
    width: 32px;
    height: 32px;
    background: var(--color-primary);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.8rem;
    transition: var(--transition-fast);
    flex-shrink: 0;
}

.tc-sidebar__pdf-btn:hover {
    background: var(--color-primary-light);
    transform: translateY(-1px);
}

/* ============================================================
   CONTENT SECTIONS
   ============================================================ */
.tc-content {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.tc-section {
    padding: var(--sp-lg) 0;
    border-bottom: 1px solid var(--color-border);
    transition: opacity 0.35s ease, max-height 0.4s ease;
    overflow: hidden;
}

.tc-section:last-of-type {
    border-bottom: none;
}

.tc-section--hidden {
    display: none;
}

.tc-section__header {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 1rem;
}

.tc-section__icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.tc-section__icon--blue {
    background: rgba(11, 60, 116, 0.08);
    color: var(--color-primary);
}

.tc-section__icon--orange {
    background: rgba(255, 140, 56, 0.12);
    color: var(--color-primary-light);
}

.tc-section__icon--green {
    background: rgba(40, 167, 69, 0.1);
    color: var(--color-success);
}

.tc-section__icon--red {
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
}

.tc-section__title {
    font-family: var(--font-heading);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.tc-section__num {
    font-family: var(--font-mono);
    font-size: var(--fs-base);
    font-weight: 600;
    color: var(--color-primary-light);
}

.tc-section__body p {
    font-size: var(--fs-base);
    color: var(--color-dark-gray);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.tc-section__body p:last-child {
    margin-bottom: 0;
}

/* ---- Alerts ---- */
.tc-alert {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    margin-top: 1rem;
    font-size: var(--fs-sm);
}

.tc-alert i {
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.tc-alert p {
    margin-bottom: 0 !important;
}

.tc-alert--info {
    background: rgba(11, 60, 116, 0.06);
    border-left: 3px solid var(--color-primary);
    color: var(--color-primary);
}

.tc-alert--info i {
    color: var(--color-primary);
}

.tc-alert--warning {
    background: rgba(255, 140, 56, 0.08);
    border-left: 3px solid var(--color-primary-light);
    color: var(--color-primary-dark);
}

.tc-alert--warning i {
    color: var(--color-primary-light);
}

/* ---- List ---- */
.tc-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 1rem;
}

.tc-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: var(--fs-sm);
    color: var(--color-dark-gray);
}

.tc-list li i {
    color: #dc3545;
    font-size: 0.85rem;
}

/* ---- Contact Cards ---- */
.tc-contact-cards {
    display: flex;
    gap: 1rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
}

.tc-contact-card {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 0.75rem 1.1rem;
    font-size: var(--fs-sm);
    color: var(--color-text);
    font-weight: 500;
    flex: 1;
    min-width: 200px;
}

.tc-contact-card i {
    color: var(--color-primary-light);
    font-size: 1rem;
}

/* ---- View All ---- */
.tc-view-all {
    text-align: center;
    padding: var(--sp-md) 0 var(--sp-sm);
}

.tc-view-all__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    padding: 10px 24px;
    font-size: var(--fs-sm);
    font-weight: 600;
    font-family: var(--font-heading);
    color: var(--color-text-muted);
    cursor: pointer;
    transition: var(--transition-fast);
}

.tc-view-all__btn:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    background: rgba(11, 60, 116, 0.04);
}

/* ============================================================
   FOOTER CTA
   ============================================================ */
.tc-footer-cta {
    background: var(--color-light);
    border-top: 1px solid var(--color-border);
    padding: var(--sp-lg) 0;
}

.tc-footer-cta__inner {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.tc-footer-cta__icon {
    width: 52px;
    height: 52px;
    background: rgba(11, 60, 116, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.tc-footer-cta__text {
    flex: 1;
    min-width: 200px;
}

.tc-footer-cta__text h3 {
    font-family: var(--font-heading);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 4px;
}

.tc-footer-cta__text p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
}

.tc-footer-cta__contact {
    flex-shrink: 0;
}

.tc-footer-cta__info {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.tc-footer-cta__info span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: var(--fs-sm);
    color: var(--color-dark-gray);
    font-weight: 500;
}

.tc-footer-cta__info span i {
    color: var(--color-primary-light);
}

.tc-footer-cta__btn {
    background: var(--color-primary);
    color: var(--color-white);
    flex-shrink: 0;
}

.tc-footer-cta__btn:hover {
    background: var(--color-primary-dark);
    color: var(--color-white);
    border: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
    .tc-layout {
        grid-template-columns: 230px 1fr;
        gap: var(--sp-lg);
    }
}

@media (max-width: 900px) {
    .tc-hero {
        min-height: 300px;
    }

    .tc-hero__content {
        padding: var(--sp-xl) 0;
    }

    .tc-hero__title {
        font-size: var(--fs-4xl);
    }

    .tc-layout {
        grid-template-columns: 1fr;
    }

    .tc-sidebar {
        position: static;
    }

    .tc-sidebar__box {
        display: flex;
        flex-direction: column;
    }

    .tc-sidebar__list {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 0.75rem;
    }

    .tc-sidebar__item {
        border-left: none;
        border-radius: var(--radius-sm);
    }

    .tc-sidebar__item.active {
        background: rgba(255, 140, 56, 0.1);
        border-left: none;
    }

    .tc-sidebar__link {
        padding: 6px 10px;
        font-size: var(--fs-xs);
    }

    .tc-footer-cta__inner {
        gap: 1rem;
    }
}

@media (max-width: 600px) {
    .tc-hero {
        min-height: 260px;
        background-position: right center;
    }

    .tc-hero__title {
        font-size: var(--fs-3xl);
    }

    .tc-hero__desc {
        font-size: var(--fs-base);
    }

    .tc-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .tc-hero__actions .btn {
        justify-content: center;
    }

    .tc-section__title {
        font-size: var(--fs-lg);
    }

    .tc-footer-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .tc-footer-cta__btn {
        width: 100%;
        justify-content: center;
    }

    .tc-contact-cards {
        flex-direction: column;
    }

    .tc-contact-card {
        min-width: unset;
    }
}


/* ========   AI Tools Page Start   ======= */

/* ================================
   FINOVORA AI HERO
================================ */



/*=========================
FINOVORA AI HERO
=========================*/
.finovora-ai-hero {
    position: relative;
    overflow: hidden;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, #f8f9fc 0%, #fff4ed 50%, #f8f9fc 100%);
}

.finovora-ai-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(200, 200, 220, .3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(200, 200, 220, .3) 1px, transparent 1px);
    background-size: 60px 60px;
    -webkit-mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    mask-image: radial-gradient(circle at center, black 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.finovora-ai-hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at 80% 30%, rgba(255, 140, 56, .14), transparent 35%),
        radial-gradient(circle at 20% 75%, rgba(255, 140, 56, .08), transparent 40%);
}

.finovora-ai-hero .container {
    position: relative;
    z-index: 2;
}

.finovora-ai-hero__wrapper {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 60px;
    align-items: center;
}

.finovora-ai-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 50px;
    background: rgba(255, 140, 56, .12);
    color: var(--color-primary);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.finovora-ai-hero__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.1;
    font-weight: 900;
    color: var(--color-secondary);
    margin-bottom: 20px;
}

.finovora-ai-hero__title span {
    color: var(--color-primary);
}

.finovora-ai-hero__desc {
    max-width: 620px;
    color: #64748b;
    line-height: 1.8;
    font-size: 18px;
    margin-bottom: 35px;
}

/* Buttons */
.finovora-ai-hero__buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    margin-bottom: 40px;
}

.finovora-ai-hero .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;

    padding: 12px 24px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: .35s;
    white-space: nowrap;
}

.finovora-ai-hero .btn-primary {
    background: var(--color-primary);
    color: #fff;
}

.finovora-ai-hero .btn-outline-light {
    background: #fff;
    color: var(--color-secondary);
    border: 1px solid #dce4ef;
}

.finovora-ai-hero .btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0, 0, 0, .12);
}

/* Stats */
.finovora-ai-hero__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.hero-stat-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 18px 16px;
    background: rgba(255, 255, 255, .75);
    backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 18px;
    box-shadow: 0 12px 35px rgba(15, 23, 42, .08);
    transition: .35s;
}

.hero-stat-box:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 140, 56, .35);
    box-shadow: 0 18px 40px rgba(255, 140, 56, .15);
}

.finovora-ai-hero__stats .stat-number {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 6px;
}

.finovora-ai-hero__stats .stat-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.5;
}

/* Right */
.finovora-ai-hero__visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-ai-image {
    position: relative;
}

.hero-ai-image::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 140, 56, .18), transparent 70%);
}

.hero-ai-image img {
    position: relative;
    width: 100%;
    max-width: 560px;
    z-index: 2;
    animation: floatAI 5s ease-in-out infinite;
    filter: drop-shadow(0 30px 60px rgba(0, 0, 0, .12));
    border-radius: var(--radius-xl);
}

@keyframes floatAI {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-18px)
    }
}

/* Tablet */
@media(max-width:991px) {
    .finovora-ai-hero {
        padding: 120px 0 70px;
    }

    .finovora-ai-hero__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .finovora-ai-hero__content {
        text-align: center;
    }

    .finovora-ai-hero__desc {
        margin: 0 auto 35px;
    }

    .finovora-ai-hero__buttons {
        justify-content: center;
        flex-direction: row;
        flex-wrap: nowrap;
    }

    .finovora-ai-hero__buttons .btn {
        flex: 1;
        text-align: center;
    }

    .finovora-ai-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-ai-image img {
        max-width: 420px;
    }
}

/* Mobile */
@media(max-width:768px) {
    .finovora-ai-hero {
        padding: 100px 0 60px;
    }

    .finovora-ai-hero__title {
        font-size: 36px;
    }

    .finovora-ai-hero__desc {
        font-size: 16px;
    }

    .finovora-ai-hero__buttons {
        flex-direction: row;
        gap: 10px;
    }

    .finovora-ai-hero__buttons .btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 14px;
    }

    .finovora-ai-hero__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .hero-ai-image img {
        max-width: 420px;
        width: 100%;
    }

    .hero-ai-image::before {
        width: 460px;
        height: 460px;
    }
}

/* Small Mobile */
@media(max-width:480px) {
    .finovora-ai-hero__title {
        font-size: 30px;
    }

    .finovora-ai-hero__desc {
        font-size: 15px;
    }

    .finovora-ai-hero__buttons {
        flex-direction: row;
        gap: 8px;
    }

    .finovora-ai-hero__buttons .btn {
        flex: 1;
        font-size: 12px;
        padding: 10px 8px;
    }

    .finovora-ai-hero__stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-ai-image img {
        max-width: 330px;
        width: 100%;
    }

    .hero-ai-image::before {
        width: 340px;
        height: 340px;
    }
}


/* ============================================================
           TRUST BAR
        ============================================================ */
.trust-bar {
    background: var(--color-light);
    border-bottom: 1px solid var(--color-border);
    padding: 1.25rem 0;
}

.trust-bar .container {
    display: flex;
    align-items: center;
    gap: var(--sp-xl);
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text-muted);
    font-family: var(--font-heading);
}

.trust-item i {
    color: var(--color-primary);
    font-size: 1rem;
}

/* ============================================================
           SECTION: WHAT FINOVORA AI CAN HELP WITH
        ============================================================ */
.help-section {
    padding: var(--sp-2xl) 0;
    background: var(--color-white);
}

.help-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: var(--sp-xl);
}

.help-card {
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    text-align: center;
    transition: var(--transition-base);
    cursor: default;
}

.help-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(11, 60, 116, 0.2);
    background: #fff;
}

.help-card-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: rgba(11, 60, 116, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: var(--transition-base);
}

.help-card:hover .help-card-icon {
    background: var(--color-primary);
}

.help-card-icon i {
    font-size: 1.25rem;
    color: var(--color-primary);
    transition: var(--transition-base);
}

.help-card:hover .help-card-icon i {
    color: #fff;
}

.help-card h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.help-card p {
    font-size: var(--fs-xs);
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* =====================================================
   FINOVORA AI CONSULTATION SECTION
===================================================== */

.finovora-ai-section {
    padding: var(--sp-2xl) 0;
    background: var(--color-light);
}

.finovora-ai-section .container {
    display: grid;
    grid-template-columns: 35% 65%;
    gap: 2rem;
    align-items: flex-start;
}

/* =====================================================
   COMMON CARD STYLE
===================================================== */

.finovora-ai-card,
.finovora-journey-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.05);
    transition: var(--transition-base);
}

.finovora-ai-card:hover,
.finovora-journey-card:hover {
    transform: translateY(-3px);
}

/* =====================================================
   LEFT CARD
===================================================== */

.finovora-ai-card {
    align-self: flex-start;
}

.finovora-ai-card h2 {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.finovora-ai-card h2 span {
    color: var(--color-primary);
}

.finovora-ai-card p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: 1.75rem;
}

.finovora-question-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.finovora-question-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    background: #fff;
    cursor: pointer;
    transition: all .3s ease;
}

.finovora-question-item:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
}

.finovora-question-item span {
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-secondary);
    line-height: 1.4;
}

.finovora-question-item i {
    color: var(--color-primary);
    font-size: 13px;
    flex-shrink: 0;
}

.finovora-chat-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 1.5rem;
    color: var(--color-primary);
    font-weight: 600;
    font-size: var(--fs-sm);
    transition: var(--transition-base);
}

.finovora-chat-link:hover {
    gap: 12px;
}

/* =====================================================
   RIGHT CARD
===================================================== */

.finovora-journey-card {
    position: relative;
    overflow: hidden;
}

.finovora-journey-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 4px;
    background: var(--color-primary);
}

.finovora-journey-card h2 {
    font-size: var(--fs-3xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 0.75rem;
}

.finovora-journey-card>p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: 2.5rem;
}

/* =====================================================
   JOURNEY STEPS
===================================================== */

.finovora-journey-wrapper {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.finovora-journey-wrapper::before {
    content: "";
    position: absolute;
    top: 36px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: var(--color-border);
}

.finovora-journey-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 0 10px;
}

.finovora-icon {
    width: 72px;
    height: 72px;
    background: #fff;
    border-radius: 50%;
    border: 2px solid rgba(0, 102, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.05);
}

.finovora-icon i {
    font-size: 22px;
    color: var(--color-primary);
}

.finovora-step-number {
    margin-top: 18px;
    margin-bottom: 12px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--color-primary);
}

.finovora-journey-step h4 {
    font-size: var(--fs-sm);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
    line-height: 1.4;
}

.finovora-journey-step p {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    max-width: 150px;
    margin: 0 auto;
}

/* =====================================================
   TABLET
===================================================== */

@media (max-width: 991px) {

    .finovora-ai-section .container {
        grid-template-columns: 1fr;
    }

    .finovora-journey-wrapper {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .finovora-journey-wrapper::before {
        display: none;
    }

    .finovora-journey-step {
        width: calc(50% - 1rem);
        flex: unset;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 767px) {

    .finovora-ai-card,
    .finovora-journey-card {
        padding: 1.5rem;
    }

    .finovora-ai-card h2,
    .finovora-journey-card h2 {
        font-size: 1.8rem;
    }

    .finovora-journey-step {
        width: 100%;
    }

    .finovora-icon {
        width: 64px;
        height: 64px;
    }

    .finovora-icon i {
        font-size: 20px;
    }

    .finovora-step-number {
        margin-top: 14px;
    }

    .finovora-question-item {
        padding: 14px 16px;
    }
}

/* ============================================================
   SECTION: AUDIT TOOLS
============================================================ */
/* ======================================================
   AUDIT TOOLS SECTION
====================================================== */

.custom-audit-tools-section {
    padding: var(--sp-2xl) 0;
    background: var(--color-white);
    overflow: hidden;
}

/* Container */
.custom-audit-tools-section .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Grid */
.custom-audit-tools-section .custom-tools-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

/* Card */
.custom-audit-tools-section .custom-tool-card {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    background: #fff;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-audit-tools-section .custom-tool-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(11, 60, 116, 0.2);
}

/* Icon */
.custom-audit-tools-section .custom-tool-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: rgba(11, 60, 116, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 18px;
}

/* Heading */
.custom-audit-tools-section .custom-tool-card h4 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 10px;
    font-family: var(--font-heading);
}

/* Paragraph */
.custom-audit-tools-section .custom-tool-card p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Link */
.custom-audit-tools-section .custom-tool-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
    transition: all .3s ease;
    font-family: var(--font-heading);
}

.custom-audit-tools-section .custom-tool-link:hover {
    gap: 10px;
}

/* CTA */
.custom-audit-tools-section .custom-audit-tools-cta {
    text-align: center;
}

/* ======================================================
   RESPONSIVE
====================================================== */

/* Large Desktop */
@media (max-width:1200px) {

    .custom-audit-tools-section .container {
        max-width: 1140px;
    }

    .custom-audit-tools-section .custom-tools-grid {
        gap: 22px;
    }

}

/* Laptop */
@media (max-width:1024px) {

    .custom-audit-tools-section {
        padding: 80px 0;
    }

    .custom-audit-tools-section .custom-tools-grid {
        gap: 20px;
    }

    .custom-audit-tools-section .custom-tool-card {
        padding: 24px 20px;
    }

}

/* Tablet */
@media (max-width:991px) {

    .custom-audit-tools-section {
        padding: 70px 0;
    }

    .custom-audit-tools-section .custom-tools-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .custom-audit-tools-section .custom-tool-card {
        padding: 22px;
    }

    .custom-audit-tools-section .custom-tool-card-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .custom-audit-tools-section .custom-tool-card h4 {
        font-size: 18px;
    }

    .custom-audit-tools-section .custom-tool-card p {
        font-size: 15px;
    }

}

/* Mobile */
@media (max-width:767px) {

    .custom-audit-tools-section {
        padding: 60px 0;
    }

    .custom-audit-tools-section .container {
        padding: 0 18px;
    }

    .custom-audit-tools-section .custom-tools-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .custom-audit-tools-section .custom-tool-card {
        text-align: center;
        padding: 24px 20px;
    }

    .custom-audit-tools-section .custom-tool-card-icon {
        margin: 0 auto 18px;
        width: 60px;
        height: 60px;
        font-size: 30px;
    }

    .custom-audit-tools-section .custom-tool-card h4 {
        font-size: 20px;
    }

    .custom-audit-tools-section .custom-tool-card p {
        font-size: 15px;
        margin-bottom: 18px;
    }

    .custom-audit-tools-section .custom-tool-link {
        justify-content: center;
    }

    .custom-audit-tools-section .custom-audit-tools-cta .btn {
        width: 100%;
        justify-content: center;
    }

}

/* Small Mobile */
@media (max-width:575px) {

    .custom-audit-tools-section {
        padding: 50px 0;
    }

    .custom-audit-tools-section .container {
        padding: 0 15px;
    }

    .custom-audit-tools-section .custom-tool-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .custom-audit-tools-section .custom-tool-card-icon {
        width: 55px;
        height: 55px;
        font-size: 26px;
    }

    .custom-audit-tools-section .custom-tool-card h4 {
        font-size: 18px;
    }

    .custom-audit-tools-section .custom-tool-card p {
        font-size: 14px;
        line-height: 1.7;
    }

    .custom-audit-tools-section .custom-tool-link {
        font-size: 14px;
    }

    .custom-audit-tools-section .custom-audit-tools-cta .btn {
        width: 100%;
        padding: 14px 20px;
        font-size: 15px;
    }

}

/* Extra Small Devices */
@media (max-width:360px) {

    .custom-audit-tools-section .custom-tool-card {
        padding: 20px 16px;
    }

    .custom-audit-tools-section .custom-tool-card h4 {
        font-size: 17px;
    }

    .custom-audit-tools-section .custom-tool-card p {
        font-size: 13px;
    }

    .custom-audit-tools-section .custom-tool-card-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

}

/* ==========================================================
   POPULAR WAYS BUSINESSES USE SECTION
========================================================== */

.custom-popular-ways-section {
    padding: var(--sp-2xl) 0;
    background: var(--color-light);
    overflow: hidden;
}

/* Container */
.custom-popular-ways-section .container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Grid */
.custom-popular-ways-section .custom-ways-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

/* Card */
.custom-popular-ways-section .custom-way-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-popular-ways-section .custom-way-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
    border-color: rgba(11, 60, 116, .20);
}

/* Icon */
.custom-popular-ways-section .custom-way-card-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

/* Heading */
.custom-popular-ways-section .custom-way-card h4 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: var(--color-secondary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

/* Paragraph */
.custom-popular-ways-section .custom-way-card p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

/* Large Desktop */
@media (max-width:1200px) {

    .custom-popular-ways-section .container {
        max-width: 1140px;
    }

    .custom-popular-ways-section .custom-ways-grid {
        gap: 22px;
    }

}

/* Laptop */
@media (max-width:1024px) {

    .custom-popular-ways-section {
        padding: 80px 0;
    }

    .custom-popular-ways-section .custom-way-card {
        padding: 28px 22px;
    }

    .custom-popular-ways-section .custom-ways-grid {
        gap: 20px;
    }

}

/* Tablet */
@media (max-width:991px) {

    .custom-popular-ways-section {
        padding: 70px 0;
    }

    .custom-popular-ways-section .custom-ways-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .custom-popular-ways-section .custom-way-card {
        padding: 24px 20px;
    }

    .custom-popular-ways-section .custom-way-card-icon {
        width: 56px;
        height: 56px;
        margin-bottom: 18px;
    }

    .custom-popular-ways-section .custom-way-card h4 {
        font-size: 18px;
    }

    .custom-popular-ways-section .custom-way-card p {
        font-size: 15px;
    }

}

/* Mobile */
@media (max-width:767px) {

    .custom-popular-ways-section {
        padding: 60px 0;
    }

    .custom-popular-ways-section .container {
        padding: 0 18px;
    }

    .custom-popular-ways-section .custom-ways-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .custom-popular-ways-section .custom-way-card {
        padding: 24px 20px;
        text-align: center;
    }

    .custom-popular-ways-section .custom-way-card-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto 18px;
    }

    .custom-popular-ways-section .custom-way-card h4 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .custom-popular-ways-section .custom-way-card p {
        font-size: 15px;
    }

}

/* Small Mobile */
@media (max-width:575px) {

    .custom-popular-ways-section {
        padding: 50px 0;
    }

    .custom-popular-ways-section .container {
        padding: 0 15px;
    }

    .custom-popular-ways-section .custom-way-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .custom-popular-ways-section .custom-way-card-icon {
        width: 55px;
        height: 55px;
        margin-bottom: 16px;
    }

    .custom-popular-ways-section .custom-way-card h4 {
        font-size: 18px;
    }

    .custom-popular-ways-section .custom-way-card p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* Extra Small Mobile */
@media (max-width:360px) {

    .custom-popular-ways-section .custom-way-card {
        padding: 20px 16px;
    }

    .custom-popular-ways-section .custom-way-card-icon {
        width: 50px;
        height: 50px;
    }

    .custom-popular-ways-section .custom-way-card h4 {
        font-size: 17px;
    }

    .custom-popular-ways-section .custom-way-card p {
        font-size: 13px;
    }

}

/* ==========================================================
   WHY BUSINESSES LOVE SECTION
========================================================== */

.custom-why-love-section {
    padding: var(--sp-2xl) 0;
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-accent) 100%);
    position: relative;
    overflow: hidden;
}

/* Background Pattern */
.custom-why-love-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='.03'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.custom-why-love-section .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
}

/* Heading */

.custom-why-love-section .section-title {
    color: #fff;
}

.custom-why-love-section .section-subtitle {
    color: rgba(255, 255, 255, .70);
}

/* Grid */

.custom-why-love-section .custom-why-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    margin-top: 50px;
}

/* Card */

.custom-why-love-section .custom-why-card {
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    padding: 30px 24px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all .35s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.custom-why-love-section .custom-why-card:hover {
    background: rgba(255, 255, 255, .12);
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, .25);
}

/* Icon */

.custom-why-love-section .custom-why-card-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 14px;
    background: rgba(255, 140, 56, .20);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.custom-why-love-section .custom-why-card-icon i {
    font-size: 28px;
    color: #fff;
}

/* Heading */

.custom-why-love-section .custom-why-card h4 {
    font-size: var(--fs-base);
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

/* Paragraph */

.custom-why-love-section .custom-why-card p {
    color: rgba(255, 255, 255, .70);
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin: 0;
    flex-grow: 1;
}

/* ==========================================================
   RESPONSIVE
========================================================== */

/* Large Desktop */

@media (max-width:1200px) {

    .custom-why-love-section .container {
        max-width: 1140px;
    }

    .custom-why-love-section .custom-why-grid {
        gap: 22px;
    }

}

/* Laptop */

@media (max-width:1024px) {

    .custom-why-love-section {
        padding: 80px 0;
    }

    .custom-why-love-section .custom-why-grid {
        gap: 20px;
    }

    .custom-why-love-section .custom-why-card {
        padding: 28px 20px;
    }

}

/* Tablet */

@media (max-width:991px) {

    .custom-why-love-section {
        padding: 70px 0;
    }

    .custom-why-love-section .custom-why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 40px;
    }

    .custom-why-love-section .custom-why-card {
        padding: 24px 20px;
    }

    .custom-why-love-section .custom-why-card-icon {
        width: 58px;
        height: 58px;
    }

    .custom-why-love-section .custom-why-card-icon i {
        font-size: 24px;
    }

    .custom-why-love-section .custom-why-card h4 {
        font-size: 18px;
    }

    .custom-why-love-section .custom-why-card p {
        font-size: 15px;
    }

}

/* Mobile */

@media (max-width:767px) {

    .custom-why-love-section {
        padding: 60px 0;
    }

    .custom-why-love-section .container {
        padding: 0 18px;
    }

    .custom-why-love-section .custom-why-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        margin-top: 35px;
    }

    .custom-why-love-section .custom-why-card {
        padding: 24px 20px;
    }

    .custom-why-love-section .custom-why-card-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 18px;
    }

    .custom-why-love-section .custom-why-card h4 {
        font-size: 20px;
    }

    .custom-why-love-section .custom-why-card p {
        font-size: 15px;
    }

}

/* Small Mobile */

@media (max-width:575px) {

    .custom-why-love-section {
        padding: 50px 0;
    }

    .custom-why-love-section .container {
        padding: 0 15px;
    }

    .custom-why-love-section .custom-why-card {
        padding: 22px 18px;
        border-radius: 14px;
    }

    .custom-why-love-section .custom-why-card-icon {
        width: 55px;
        height: 55px;
    }

    .custom-why-love-section .custom-why-card-icon i {
        font-size: 22px;
    }

    .custom-why-love-section .custom-why-card h4 {
        font-size: 18px;
    }

    .custom-why-love-section .custom-why-card p {
        font-size: 14px;
        line-height: 1.7;
    }

}

/* Extra Small */

@media (max-width:360px) {

    .custom-why-love-section .custom-why-card {
        padding: 20px 16px;
    }

    .custom-why-love-section .custom-why-card-icon {
        width: 50px;
        height: 50px;
    }

    .custom-why-love-section .custom-why-card-icon i {
        font-size: 20px;
    }

    .custom-why-love-section .custom-why-card h4 {
        font-size: 17px;
    }

    .custom-why-love-section .custom-why-card p {
        font-size: 13px;
    }

}

/* ============================================================
           SECTION: CTA BOTTOM BANNER
        ============================================================ */
.cta-banner {
    padding: var(--sp-xl) 0;
    background: var(--color-white);
    border-top: 1px solid var(--color-border);
}

.cta-banner .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: var(--color-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 2.5rem 3rem;
}

.cta-text h2 {
    font-size: var(--fs-2xl);
    font-weight: 800;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.cta-text p {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    max-width: 480px;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}



/* ============================================================
           RESPONSIVE
        ============================================================ */
@media (max-width: 1024px) {
    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ways-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }


}

@media (max-width: 768px) {




    .hamburger {
        display: flex;
    }

    .hero .container {
        grid-template-columns: 1fr;
        gap: var(--sp-xl);
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        justify-content: center;
    }

    .floating-tag-1,
    .floating-tag-2 {
        display: none;
    }

    .ask-journey .container {
        grid-template-columns: 1fr;
    }

    .journey-steps {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1.5rem;
    }

    .journey-step:not(:last-child)::after {
        display: none;
    }

    .help-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tools-grid {
        grid-template-columns: 1fr;
    }

    .ways-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .section-title {
        font-size: var(--fs-2xl);
    }

    .cta-banner .container {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1.5rem;
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap;
    }


}

@media (max-width: 480px) {
    .help-grid {
        grid-template-columns: 1fr;
    }

    .why-grid {
        grid-template-columns: 1fr;
    }

    .trust-bar .container {
        gap: var(--sp-md);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}



/* ========================================================
   FINOVORA AI CHATBOT — Professional Theme
   ======================================================== */

#fio-bot * {
    box-sizing: border-box;
}

#fio-bot {
    --p: #0b3c74;
    /* primary deep blue */
    --pl: #14559f;
    /* primary lighter */
    --o: #2ea8ff;
    /* accent cyan-blue */
    --od: #0b66c3;
    /* accent dark */
    --bg-glass: rgba(255, 255, 255, .10);
    --bd: rgba(255, 255, 255, .16);
    --tx: #0f1b2d;
    /* main text on light surfaces */
    --tx-soft: #54657c;
    /* secondary text on light surfaces */
    --tx-on-dark: #f8fafc;
    --mu-on-dark: rgba(255, 255, 255, .72);
    --gr: #34d399;
    --fh: 'Plus Jakarta Sans', sans-serif;
    --fb: 'DM Sans', sans-serif;
    --r1: 12px;
    --r2: 16px;
    --r3: 22px;
    --rf: 9999px;
    --sh: 0 20px 60px rgba(0, 0, 0, .45);

    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 999999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 14px;
    font-family: var(--fb);
}

/* ── FAB (floating action button) ── */
#fio-bot .fab {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(140deg, var(--p), var(--o));
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(11, 60, 116, 0.45), 0 0 0 4px rgba(46, 168, 255, .10);
    transition: transform .25s cubic-bezier(.34, 1.56, .64, 1), box-shadow .25s;
    position: relative;
    flex-shrink: 0;
}

#fio-bot .fab:hover {
    transform: scale(1.08) translateY(-2px);
    box-shadow: 0 14px 36px rgba(11, 60, 116, 0.55), 0 0 0 6px rgba(46, 168, 255, .14);
}

#fio-bot .fab:active {
    transform: scale(0.97);
}

#fio-bot .fab svg {
    width: 34px;
    height: 34px;
}

#fio-bot .fab-badge {
    position: absolute;
    top: -3px;
    right: -3px;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #ff5a5f;
    border: 2.5px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-size: 10.5px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .25);
}

#fio-bot .fab-badge.hide {
    display: none;
}

/* pulse ring to draw attention */
#fio-bot .fab::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(46, 168, 255, .45);
    animation: fioPulse 2.6s ease-out infinite;
}

@keyframes fioPulse {
    0% {
        transform: scale(.92);
        opacity: .8;
    }

    70% {
        transform: scale(1.22);
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

/* ── WINDOW ── */
#fio-bot .win {
    position: fixed;
    top: 50%;
    left: 50%;
    width: 900px;
    max-width: calc(100vw - 32px);
    height: min(600px, calc(100vh - 108px));
    border-radius: var(--r3);
    overflow: hidden;
    background: #ffffff;
    border: 1px solid rgba(15, 27, 45, .08);
    box-shadow: var(--sh);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translate(-50%, -50%) scale(.94);
    pointer-events: none;
    transition: opacity .25s ease, transform .25s ease;
}

#fio-bot .win.open {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
    pointer-events: all;
}

/* ── HEADER (full width, dark brand bar) ── */
#fio-bot .hdr {
    background: linear-gradient(120deg, var(--p), var(--pl));
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    flex-shrink: 0;
    border-radius: var(--r3) var(--r3) 0 0;
}

#fio-bot .hdr::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--o), var(--od));
}

#fio-bot .hdr-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(255, 255, 255, .16);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-weight: 800;
    font-size: 16px;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.30);
}

#fio-bot .hdr-info {
    flex: 1;
}

#fio-bot .hdr-info h3 {
    font-family: var(--fh);
    font-weight: 700;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

#fio-bot .hdr-info p {
    font-size: 11.5px;
    color: rgba(255, 255, 255, .80);
    margin: 2px 0 0;
    display: flex;
    align-items: center;
    gap: 5px;
}

#fio-bot .online-dot {
    width: 7px;
    height: 7px;
    background: var(--gr);
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 2px rgba(52, 211, 153, .25);
}

#fio-bot .brand-tag {
    font-family: var(--fh);
    font-size: 9.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-top: 2px;
}

#fio-bot .hdr-close {
    background: rgba(255, 255, 255, .16);
    border: none;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 15px;
    transition: background .2s;
}

#fio-bot .hdr-close:hover {
    background: rgba(255, 255, 255, .30);
}

/* ── BODY ROW (split) ── */
#fio-bot .body-row {
    flex: 1;
    display: flex;
    overflow: hidden;
    background: #ffffff;
}

/* ── LEFT PANEL — chat ── */
#fio-bot .chat-pane {
    width: 52%;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eef1f6;
    background: #f7f9fc;
    overflow: hidden;
}

/* progress inside left pane */
#fio-bot .prog-bar {
    background: #ffffff;
    padding: 12px 14px 10px;
    border-bottom: 1px solid #eef1f6;
    flex-shrink: 0;
}

#fio-bot .prog-lbl {
    display: flex;
    justify-content: space-between;
    font-size: 10.5px;
    font-weight: 700;
    color: var(--tx-soft);
    margin-bottom: 6px;
    font-family: var(--fh);
}

#fio-bot .prog-track {
    height: 5px;
    background: #eef1f6;
    border-radius: var(--rf);
    overflow: hidden;
}

#fio-bot .prog-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--o), var(--od));
    border-radius: var(--rf);
    transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

#fio-bot .prog-dots {
    display: flex;
    gap: 3px;
    margin-top: 6px;
}

#fio-bot .pdot {
    height: 3px;
    flex: 1;
    border-radius: var(--rf);
    background: #e2e8f0;
    transition: background .3s;
}

#fio-bot .pdot.done {
    background: var(--p);
}

#fio-bot .pdot.active {
    background: var(--o);
}

/* chat messages */
#fio-bot .chat-msgs {
    flex: 1;
    overflow-y: auto;
    padding: 16px 14px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    scroll-behavior: smooth;
}

#fio-bot .chat-msgs::-webkit-scrollbar {
    width: 4px;
}

#fio-bot .chat-msgs::-webkit-scrollbar-thumb {
    background: #d8dee8;
    border-radius: 3px;
}

#fio-bot .msg-row {
    display: flex;
    gap: 7px;
    align-items: flex-end;
    animation: fioUp .28s ease;
}

@keyframes fioUp {
    from {
        opacity: 0;
        transform: translateY(7px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#fio-bot .msg-av {
    width: 27px;
    height: 27px;
    border-radius: 50%;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--o), var(--od));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--fh);
    font-weight: 800;
    font-size: 10px;
    color: #fff;
}

#fio-bot .bubble {
    max-width: 86%;
    padding: 10px 13px;
    border-radius: 14px 14px 14px 3px;
    background: #ffffff;
    font-size: 12.5px;
    line-height: 1.55;
    color: var(--tx);
    border: 1px solid #e7ebf1;
    box-shadow: 0 2px 8px rgba(15, 27, 45, .04);
    font-family: var(--fb);
}

#fio-bot .bubble strong {
    font-weight: 700;
    color: var(--p);
}

#fio-bot .msg-row.user {
    flex-direction: row-reverse;
}

#fio-bot .msg-row.user .bubble {
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    border-radius: 14px 14px 3px 14px;
    border-color: transparent;
    font-weight: 500;
    font-size: 12px;
    box-shadow: 0 4px 12px rgba(11, 60, 116, .18);
}

#fio-bot .msg-row.user .bubble strong {
    color: rgba(255, 255, 255, .92);
}

/* typing */
#fio-bot .typing {
    display: flex;
    gap: 7px;
    align-items: flex-end;
    animation: fioUp .28s ease;
}

#fio-bot .typing-bub {
    padding: 11px 14px;
    background: #ffffff;
    border: 1px solid #e7ebf1;
    border-radius: 14px 14px 14px 3px;
    display: flex;
    gap: 4px;
    align-items: center;
}

#fio-bot .typing-bub span {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #aab4c8;
    animation: fioBounce 1.2s infinite;
}

#fio-bot .typing-bub span:nth-child(2) {
    animation-delay: .15s;
}

#fio-bot .typing-bub span:nth-child(3) {
    animation-delay: .30s;
}

@keyframes fioBounce {

    0%,
    60%,
    100% {
        transform: translateY(0);
    }

    30% {
        transform: translateY(-5px);
    }
}

/* ── RIGHT PANEL — forms ── */
#fio-bot .form-pane {
    width: 48%;
    display: flex;
    flex-direction: column;
    background: #ffffff;
    overflow: hidden;
}

/* right pane top label */
#fio-bot .pane-head {
    padding: 16px 18px 12px;
    border-bottom: 1px solid #eef1f6;
    flex-shrink: 0;
    background: #ffffff;
}

#fio-bot .pane-head-step {
    font-size: 10px;
    color: var(--od);
    font-family: var(--fh);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .07em;
    margin-bottom: 4px;
}

#fio-bot .pane-head-title {
    font-family: var(--fh);
    font-weight: 800;
    font-size: 16px;
    color: var(--tx);
    margin: 0;
    letter-spacing: -.01em;
}

#fio-bot .pane-head-sub {
    font-size: 11.5px;
    color: var(--tx-soft);
    margin-top: 3px;
}

/* right pane scrollable content */
#fio-bot .form-scroll {
    flex: 1;
    overflow-y: auto;
    padding: 16px 18px 10px;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

#fio-bot .form-scroll::-webkit-scrollbar {
    width: 4px;
}

#fio-bot .form-scroll::-webkit-scrollbar-thumb {
    background: #d8dee8;
    border-radius: 3px;
}

/* ── FORM ELEMENTS ── */
#fio-bot .fg {
    margin-bottom: 14px;
}

#fio-bot .fl {
    display: block;
    font-size: 10.5px;
    font-weight: 700;
    font-family: var(--fh);
    color: var(--p);
    margin-bottom: 6px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

#fio-bot .fi,
#fio-bot .fs,
#fio-bot .fta,
#fio-bot .fdate {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #dde3ec;
    border-radius: var(--r1);
    font-family: var(--fb);
    font-size: 13px;
    color: var(--tx);
    background: #f9fafc;
    outline: none;
    transition: border-color .18s, box-shadow .18s, background .18s;
}

#fio-bot .fi:focus,
#fio-bot .fs:focus,
#fio-bot .fta:focus,
#fio-bot .fdate:focus {
    border-color: var(--o);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(46, 168, 255, .12);
}

#fio-bot .fi::placeholder,
#fio-bot .fta::placeholder {
    color: #a0aac0;
    font-size: 12.5px;
}

#fio-bot .fs {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23667' stroke-width='1.6' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 34px;
    cursor: pointer;
}

#fio-bot .fta {
    resize: none;
    min-height: 78px;
    line-height: 1.55;
}

/* service chips 2-col */
#fio-bot .svc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
}

#fio-bot .svc-chip {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding: 12px 12px;
    background: #f9fafc;
    border: 1.5px solid #e7ebf1;
    border-radius: var(--r1);
    font-size: 12px;
    font-family: var(--fb);
    font-weight: 600;
    color: var(--tx);
    cursor: pointer;
    text-align: left;
    line-height: 1.35;
    transition: all .18s ease;
}

#fio-bot .svc-chip:hover {
    border-color: var(--o);
    background: rgba(46, 168, 255, .07);
    color: var(--p);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(11, 60, 116, .10);
}

#fio-bot .svc-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 1px;
}

/* radio options */
#fio-bot .rg {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#fio-bot .ro {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 13px;
    border: 1.5px solid #e7ebf1;
    border-radius: var(--r1);
    cursor: pointer;
    transition: all .18s;
    font-size: 13px;
    font-weight: 500;
    color: var(--tx);
    font-family: var(--fb);
    background: #f9fafc;
}

#fio-bot .ro:hover {
    border-color: var(--o);
    background: rgba(46, 168, 255, .06);
}

#fio-bot .ro.sel {
    border-color: var(--p);
    background: rgba(11, 60, 116, .06);
}

#fio-bot .rdot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 2px solid #cdd5e2;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color .18s;
}

#fio-bot .ro.sel .rdot {
    border-color: var(--p);
}

#fio-bot .rdot::after {
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--p);
    opacity: 0;
    transition: opacity .18s;
}

#fio-bot .ro.sel .rdot::after {
    opacity: 1;
}

/* slot grid */
#fio-bot .slot-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 7px;
}

#fio-bot .slot-btn {
    padding: 10px 8px;
    text-align: center;
    border: 1.5px solid #e7ebf1;
    border-radius: var(--r1);
    font-size: 11.5px;
    font-family: var(--fh);
    font-weight: 700;
    cursor: pointer;
    color: var(--tx);
    background: #f9fafc;
    transition: all .18s;
}

#fio-bot .slot-btn:hover {
    border-color: var(--o);
    background: rgba(46, 168, 255, .08);
}

#fio-bot .slot-btn.sel {
    background: linear-gradient(135deg, var(--p), var(--pl));
    color: #fff;
    border-color: var(--p);
    box-shadow: 0 4px 12px rgba(11, 60, 116, .25);
}

/* ── ACTION BUTTONS ── */
#fio-bot .btn-row {
    padding: 14px 18px 16px;
    border-top: 1px solid #eef1f6;
    background: #ffffff;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

#fio-bot .btn {
    width: 100%;
    padding: 13px 20px;
    border-radius: var(--rf);
    border: none;
    font-family: var(--fh);
    font-weight: 700;
    font-size: 13.5px;
    cursor: pointer;
    transition: transform .18s, box-shadow .18s, filter .18s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    letter-spacing: .01em;
}

/* primary "Continue" button — clear, professional, with arrow */
#fio-bot .btn-pri {
    background: linear-gradient(135deg, var(--p), var(--o));
    color: #fff;
    box-shadow: 0 8px 22px rgba(11, 60, 116, .30);
}

#fio-bot .btn-pri:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(11, 60, 116, .38);
    filter: brightness(1.04);
}

#fio-bot .btn-pri:active {
    transform: translateY(0);
}

#fio-bot .btn-ora {
    background: linear-gradient(135deg, #ff8a3d, #ff5f6d);
    color: #fff;
    box-shadow: 0 8px 22px rgba(255, 95, 109, .28);
}

#fio-bot .btn-ora:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 95, 109, .36);
}

#fio-bot .btn-out {
    background: transparent;
    color: var(--p);
    border: 2px solid var(--p);
}

#fio-bot .btn-out:hover {
    background: var(--p);
    color: #fff;
}

/* back link */
#fio-bot .back-lnk {
    background: none;
    border: none;
    font-size: 11.5px;
    font-weight: 600;
    color: var(--tx-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 0 0 12px;
    font-family: var(--fh);
    transition: color .18s;
}

#fio-bot .back-lnk:hover {
    color: var(--p);
}

/* thank you */
#fio-bot .ty {
    text-align: center;
    padding: 14px 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#fio-bot .ty-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
}

#fio-bot .ty h3 {
    font-family: var(--fh);
    font-weight: 800;
    font-size: 17px;
    color: var(--tx);
    margin: 0;
}

#fio-bot .ty p {
    font-size: 12.5px;
    color: var(--tx-soft);
    line-height: 1.6;
    margin: 0;
}

#fio-bot .ty-ref {
    font-size: 11px;
    background: #f1f5f9;
    padding: 6px 16px;
    border-radius: var(--rf);
    color: var(--tx-soft);
    font-family: var(--fh);
    font-weight: 700;
    border: 1px solid #e7ebf1;
}

/* powered */
#fio-bot .powered {
    text-align: center;
    padding: 8px;
    font-size: 9.5px;
    color: var(--tx-soft);
    border-top: 1px solid #eef1f6;
    background: #f7f9fc;
    font-family: var(--fh);
    flex-shrink: 0;
    letter-spacing: .03em;
}

#fio-bot .powered span {
    color: var(--p);
    font-weight: 700;
}

/* welcome right panel intro */
#fio-bot .welcome-intro {
    padding: 4px 0 14px;
}

#fio-bot .welcome-intro p {
    font-size: 12px;
    color: var(--tx-soft);
    line-height: 1.6;
    margin: 0 0 12px;
}

#fio-bot .welcome-intro .wi-title {
    font-family: var(--fh);
    font-weight: 800;
    font-size: 14px;
    color: var(--tx);
    margin-bottom: 4px;
}

/* responsive */
@media (max-width: 600px) {
    #fio-bot .win {
        width: calc(100vw - 28px);
    }

    #fio-bot .chat-pane {
        display: none;
    }

    #fio-bot .form-pane {
        width: 100%;
    }
}

@media (max-width: 420px) {
    #fio-bot {
        bottom: 14px;
        right: 14px;
    }
}

/* ===== AI Chat Bot End ===== */


/* ==== Blog Details Page Start ===== */

/* ================= BLOG HERO ================= */

.blog-hero {
    padding: 120px 0 70px;
    background: var(--color-light);
}

.blog-title {
    font-size: var(--fs-4xl);
    color: var(--color-secondary);
    margin: 20px 0;
    max-width: 850px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    color: var(--color-text-muted);
    font-size: var(--fs-sm);
}

.blog-meta i {
    color: var(--color-primary);
    margin-right: 6px;
}

/* ================= FEATURE IMAGE ================= */

.blog-image {
    margin-top: -30px;
}

.blog-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
}

/* ================= BLOG CONTENT ================= */

.blog-content {
    padding: 70px 0;
}

.blog-wrapper {
    display: grid;
    grid-template-columns: 2fr 340px;
    gap: 60px;
}

.blog-article {
    font-size: 17px;
    line-height: 1.8;
}

.blog-article h2 {
    margin-top: 40px;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.blog-article p {
    margin-bottom: 20px;
    color: var(--color-dark-gray);
}

.blog-article img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    margin: 35px 0;
    border-radius: var(--radius-md);
}

.blog-article ul {
    padding-left: 20px;
    list-style: disc;
    margin-bottom: 25px;
}

.blog-article li {
    margin-bottom: 10px;
}

.blog-article blockquote {
    background: var(--color-light);
    border-left: 5px solid var(--color-primary);
    padding: 25px;
    margin: 35px 0;
    font-style: italic;
    border-radius: var(--radius-md);
}

.lead {
    font-size: var(--fs-lg);
    color: var(--color-gray);
}

/* ================= SIDEBAR ================= */

.sidebar-card {
    background: #fff;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 25px;
    box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.sidebar-card a {
    display: block;
    margin-bottom: 12px;
    transition: .3s;
    color: var(--color-dark-gray);
}

.sidebar-card a:hover {
    color: var(--color-primary);
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: var(--color-light);
    transition: .3s;
}

.social-links a:hover {
    background: var(--color-primary);
    color: #fff;
}

/* ================= RELATED BLOG ================= */

.related-blog {
    padding: 80px 0;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.blog-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: 0.35s ease;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card-content {
    padding: 20px;
}

.blog-card-content .category {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 10px;
}

.blog-card-content h3 {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 15px;
    color: var(--color-secondary);
}

.blog-card-content a {
    color: var(--color-primary);
    font-weight: 600;
    transition: .3s;
}

.blog-card-content a:hover {
    letter-spacing: .5px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:992px) {

    .blog-wrapper {
        grid-template-columns: 1fr;
    }

    .blog-title {
        font-size: var(--fs-3xl);
    }

    .related-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .blog-image img {
        height: 350px;
    }

}

@media(max-width:768px) {

    .blog-meta {
        gap: 15px;
        flex-direction: column;
    }

    .blog-hero {
        padding: 100px 0 50px;
    }

    .blog-image img {
        height: 250px;
    }

    .blog-article img {
        height: 220px;
    }

    .related-grid {
        grid-template-columns: 1fr;
    }

    .blog-card img {
        height: 220px;
    }

}

/* ==== Blog Details Page end ===== */