/* =============================================
   NX SOLUTIONS ERP — MAIN STYLESHEET
   Color Theme: Navy Blue + Red + White
   ============================================= */

:root {
    --navy: #3a356e;
    --navy-dark: #2d2956;
    --navy-mid: #4a448a;
    --red: #3a356e;
    --red-dark: #2d2956;
    --red-light: #ffffff;
    --white: #ffffff;
    --off-white: #f5f6fa;
    --gray-light: #eceff1;
    --gray: #90a4ae;
    --gray-dark: #455a64;
    --text: #263238;
    --shadow: 0 4px 24px rgba(58, 53, 110, 0.12);
    --shadow-red: 0 4px 20px rgba(58, 53, 110, 0.25);
    --radius: 8px;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ── BUTTONS ─────────────────────────── */
.btn-primary {
    display: inline-block;
    background: var(--red);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-red);
}

.btn-primary:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(229, 57, 53, 0.35);
}

.btn-outline {
    display: inline-block;
    border: 2px solid var(--navy);
    color: var(--navy);
    padding: 12px 30px;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-white {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    padding: 14px 32px;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

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

/* ── SECTION TITLE ───────────────────── */
.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-label {
    display: inline-block;
    background: rgba(229, 57, 53, 0.1);
    color: var(--red);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--navy-dark);
    margin-bottom: 10px;
}

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

.section-subtitle {
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

.title-bar {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--white));
    margin: 10px auto 0;
    border-radius: 2px;
}

/* ── NAVBAR ──────────────────────────── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(26, 35, 126, 0.08);
    transition: var(--transition);
    box-shadow: 0 2px 16px rgba(26, 35, 126, 0.07);
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(26, 35, 126, 0.13);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
    height: 80px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 2px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-nx {
    color: var(--navy);
}

.logo-solutions {
    background: var(--red);
    color: var(--white);
    padding: 2px 8px;
    border-radius: 4px;
    margin-left: 6px;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
    list-style: none;
}

.nav-menu li a {
    padding: 8px 14px;
    border-radius: var(--radius);
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text);
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--navy);
    background: rgba(26, 35, 126, 0.06);
}

.btn-demo {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    font-family: 'Poppins', sans-serif;
    letter-spacing: 0.3px;
}

.btn-demo:hover {
    background: var(--red-dark) !important;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    width: 26px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
}

/* ── HERO ────────────────────────────── */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, var(--white) 0%, rgba(58, 53, 110, 0.08) 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 70px;
}

.hero::before {
    display: none;
}

.hero-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: clamp(5rem, 14vw, 15rem);
    font-weight: 900;
    color: var(--gray-light);
    opacity: 0.4;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -2px;
}

.hero-shape {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: rgba(229, 57, 53, 0.06);
    border-radius: 50%;
    filter: blur(80px);
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 40px 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(229, 57, 53, 0.1);
    border: 1px solid rgba(229, 57, 53, 0.2);
    color: var(--red);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

.hero-badge i {
    color: var(--red);
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    color: var(--navy-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-title .highlight {
    color: var(--red);
    display: block;
}

.hero-subtitle {
    color: var(--gray-dark);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 520px;
}

.hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    gap: 36px;
    padding-top: 32px;
    border-top: 1px solid rgba(26, 35, 126, 0.12);
}

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

.stat-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy-dark);
    display: block;
}

.stat-num span {
    color: var(--red);
}

.stat-label {
    color: var(--gray-dark);
    font-size: 0.8rem;
}

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

.dashboard-mockup {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 24px;
    width: 100%;
    max-width: 480px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
}

.mockup-bar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.mockup-dot.red {
    background: #ff5f57;
}

.mockup-dot.yellow {
    background: #ffbd2e;
}

.mockup-dot.green {
    background: #28c840;
}

.mockup-title {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
    margin-left: auto;
}

.mockup-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.mockup-stat {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 14px 10px;
    text-align: center;
}

.mockup-stat .ms-value {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.mockup-stat .ms-label {
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.7rem;
}

.mockup-stat.accent {
    background: rgba(229, 57, 53, 0.2);
    border: 1px solid rgba(229, 57, 53, 0.3);
}

.mockup-stat.accent .ms-value {
    color: #ff8a80;
}

.mockup-chart {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 8px;
    padding: 14px;
    display: flex;
    align-items: flex-end;
    gap: 8px;
    height: 80px;
    justify-content: center;
}

.chart-bar {
    flex: 1;
    border-radius: 4px 4px 0 0;
    background: linear-gradient(to top, var(--navy-mid), rgba(41, 93, 199, 0.4));
    transition: height 0.5s ease;
}

.chart-bar.active {
    background: linear-gradient(to top, var(--red), rgba(229, 57, 53, 0.5));
}

.mockup-modules {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.module-tag {
    background: rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.7);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.72rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

/* ── GLOWING BORDER ANIMATION ─────────── */
.image-glow-border {
    position: relative;
    border-radius: 14px;
    width: 100%;
    height: auto;
    border: 3px solid #3a356e;
    background-color: #3a356e;
    /* To avoid transparent corners bleeding */
    animation: imageGlowPulse 4s infinite ease-in-out, float 6s ease-in-out infinite;
}

@keyframes imageGlowPulse {
    0% {
        box-shadow: 0 0 20px rgba(58, 53, 110, 0.3), 0 0 40px rgba(58, 53, 110, 0.1);
        border-color: rgba(58, 53, 110, 0.6);
    }

    50% {
        box-shadow: 0 0 40px rgba(58, 53, 110, 0.9), 0 0 80px rgba(58, 53, 110, 0.5);
        border-color: rgba(58, 53, 110, 1);
    }

    100% {
        box-shadow: 0 0 20px rgba(58, 53, 110, 0.3), 0 0 40px rgba(58, 53, 110, 0.1);
        border-color: rgba(58, 53, 110, 0.6);
    }
}

/* ── ABOUT SECTION ───────────────────── */
.about-section {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-img-wrap {
    position: relative;
}

.about-img-card {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.about-img-card::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 150px;
    height: 150px;
    background: rgba(229, 57, 53, 0.15);
    border-radius: 50%;
}

.about-icon-big {
    font-size: 5rem;
    color: var(--red-light);
    margin-bottom: 16px;
    display: block;
}

.about-img-card h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.about-img-card p {
    color: rgba(255, 255, 255, 0.7);
}

.about-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--red);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-red);
}

.about-badge-float .num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    display: block;
}

.about-badge-float .lbl {
    font-size: 0.75rem;
    opacity: 0.9;
}

/* NX ERP promotional image */
.about-erp-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    display: block;
    box-shadow: 0 20px 60px rgba(26, 35, 126, 0.18);
    object-fit: cover;
}

/* ── SLIDE-IN ANIMATIONS ─────────────── */
@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(-80px);
    }

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

.slide-in-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.vm-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 30px 0;
}

.vm-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 20px;
    border-left: 4px solid var(--red);
}

.vm-card h4 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.vm-card p {
    font-size: 0.9rem;
    color: var(--gray-dark);
}

.about-points {
    list-style: none;
}

.about-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 0.95rem;
}

.about-points li i {
    color: var(--red);
    margin-top: 3px;
    flex-shrink: 0;
}

/* ── FEATURES SECTION ────────────────── */
.features-section {
    padding: 100px 0;
    background: var(--off-white);
}

.features-slider-container {
    padding: 20px 0 30px;
    max-width: 1300px;
    margin: 0 auto;
}

.features-swiper {
    padding: 30px 10px 50px !important;
}

.features-swiper .swiper-wrapper {
    align-items: center;
}

.features-swiper .swiper-slide {
    height: auto;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0.3;
    filter: blur(8px);
    transform: scale(0.85);
}

.features-swiper .swiper-slide-active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1.05);
    z-index: 5;
}

.features-swiper .swiper-pagination-bullet-active {
    background: var(--navy);
}

.features-swiper .swiper-button-next,
.features-swiper .swiper-button-prev {
    color: var(--navy);
    background: rgba(255, 255, 255, 0.8);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    box-shadow: var(--shadow);
}

.features-swiper .swiper-button-next:after,
.features-swiper .swiper-button-prev:after {
    font-size: 1.2rem;
    font-weight: bold;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 28px;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid rgba(26, 35, 126, 0.07);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

/* 5 Features Grid */
.features-row-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
    text-align: center;
}

.feature-row-card {
    padding: 24px 12px;
    border-radius: 14px;
    background: var(--off-white);
    transition: all 0.3s;
}

@media (max-width: 1100px) {
    .features-row-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 600px) {
    .features-row-grid {
        grid-template-columns: 1fr;
    }
}


.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--navy), var(--white));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

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

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

.feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: var(--white);
    margin-bottom: 20px;
    box-shadow: 0 8px 20px rgba(26, 35, 126, 0.2);
}

.feature-card h3 {
    color: var(--navy-dark);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.feature-card p {
    color: var(--gray-dark);
    font-size: 0.93rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.feature-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.f-tag {
    background: rgba(26, 35, 126, 0.07);
    color: var(--navy);
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ── BENEFITS SECTION ────────────────── */
.benefits-section {
    padding: 100px 0;
    background: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 20px;
    border-radius: 12px;
    transition: var(--transition);
    margin-bottom: 16px;
}

.benefit-item:hover {
    background: var(--off-white);
}

.benefit-num {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.benefit-text h4 {
    color: var(--navy-dark);
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.benefit-text p {
    color: var(--gray-dark);
    font-size: 0.92rem;
}

.benefits-visual {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    border-radius: 20px;
    padding: 40px;
    color: var(--white);
}

.bv-title {
    font-size: 1.4rem;
    margin-bottom: 24px;
    opacity: 0.9;
}

.bv-bar-item {
    margin-bottom: 18px;
}

.bv-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
    font-size: 0.9rem;
}

.bv-label span:last-child {
    color: var(--red-light);
    font-weight: 600;
}

.bv-track {
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.bv-fill {
    height: 100%;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--red-light), var(--red));
    transition: width 1s ease;
}

/* ── PRICING SECTION ─────────────────── */
.pricing-section {
    padding: 100px 0;
    background: var(--off-white);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.pricing-card {
    background: var(--white);
    border-radius: 20px;
    padding: 36px 28px;
    border: 2px solid transparent;
    transition: var(--transition);
    position: relative;
}

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

.pricing-card.featured {
    border-color: var(--red);
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
    transform: scale(1.04);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--red);
    color: var(--white);
    padding: 4px 20px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.plan-name {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--gray-dark);
    margin-bottom: 12px;
}

.featured .plan-name {
    color: rgba(255, 255, 255, 0.7);
}

.plan-price {
    font-family: 'Poppins', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy-dark);
    line-height: 1;
}

.featured .plan-price {
    color: var(--white);
}

.plan-price .currency {
    font-size: 1.4rem;
    vertical-align: top;
    margin-top: 8px;
    display: inline-block;
}

.plan-price .period {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--gray);
}

.featured .plan-price .period {
    color: rgba(255, 255, 255, 0.5);
}

.plan-desc {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin: 12px 0 24px;
}

.featured .plan-desc {
    color: rgba(255, 255, 255, 0.65);
}

.plan-divider {
    height: 1px;
    background: var(--gray-light);
    margin: 20px 0;
}

.featured .plan-divider {
    background: rgba(255, 255, 255, 0.12);
}

.plan-features {
    list-style: none;
    margin-bottom: 30px;
}

.plan-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.92rem;
}

.plan-features li i.fa-check {
    color: #4caf50;
}

.plan-features li i.fa-times {
    color: var(--gray);
}

.featured .plan-features li {
    color: rgba(255, 255, 255, 0.85);
}

.featured .plan-features li i.fa-check {
    color: #69f0ae;
}

.btn-plan {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

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

.btn-plan.outline:hover {
    background: var(--navy);
    color: var(--white);
}

.btn-plan.solid {
    background: var(--red);
    color: var(--white);
}

.btn-plan.solid:hover {
    background: var(--red-dark);
}

/* ── FAQ SECTION ─────────────────────── */
.faq-section {
    padding: 100px 0;
    background: var(--white);
}

.faq-container {
    max-width: 780px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--gray-light);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy-dark);
    border: none;
    cursor: pointer;
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    background: var(--off-white);
}

.faq-question.open {
    background: var(--navy-dark);
    color: var(--white);
}

.faq-icon {
    font-size: 0.8rem;
    transition: transform 0.3s;
}

.faq-question.open .faq-icon {
    transform: rotate(180deg);
    color: var(--red-light);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    background: var(--off-white);
    transition: max-height 0.4s ease, padding 0.3s ease;
    color: var(--gray-dark);
    font-size: 0.95rem;
    line-height: 1.7;
}

.faq-answer.open {
    max-height: 300px;
    padding: 18px 24px;
}

/* ── CONTACT SECTION ─────────────────── */
.contact-section {
    padding: 100px 0;
    background: var(--off-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.ci-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(26, 35, 126, 0.06);
    transition: var(--transition);
}

.ci-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow);
}

.ci-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
}

.ci-text h4 {
    color: var(--navy-dark);
    font-size: 1rem;
    margin-bottom: 2px;
}

.ci-text p {
    color: var(--gray-dark);
    font-size: 0.9rem;
}

.contact-form-wrap {
    background: var(--white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow);
}

.contact-form-wrap h3 {
    color: var(--navy-dark);
    font-size: 1.6rem;
    margin-bottom: 6px;
}

.contact-form-wrap p {
    color: var(--gray-dark);
    margin-bottom: 28px;
    font-size: 0.95rem;
}

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

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-light);
    border-radius: var(--radius);
    font-family: 'Open Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    outline: none;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--navy);
    box-shadow: 0 0 0 3px rgba(26, 35, 126, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--red), var(--red-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius);
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.success-msg,
.error-msg {
    padding: 14px 18px;
    border-radius: var(--radius);
    margin-top: 16px;
    font-size: 0.95rem;
    font-weight: 500;
    display: none;
}

.success-msg {
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #a5d6a7;
}

.error-msg {
    background: #ffebee;
    color: var(--red-dark);
    border: 1px solid #ef9a9a;
}

/* ── CTA SECTION ─────────────────────── */
.cta-section {
    padding: 80px 0;
    background: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    display: none;
}

.cta-section h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy-dark);
    margin-bottom: 14px;
    position: relative;
}

.cta-section p {
    color: var(--navy-dark);
    max-width: 550px;
    margin: 0 auto 32px;
    position: relative;
}

.cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── FOOTER ──────────────────────────── */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.75);
    padding: 30px 0 0;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: -10px;
}

.footer-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
}

.footer-logo .logo-nx {
    color: var(--white);
    font-family: 'Rajdhani', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-logo .logo-solutions {
    background: var(--red);
    color: var(--white);
    padding: 2px 5px;
    border-radius: 4px;
    margin-left: 6px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
}

.footer-tagline {
    color: var(--gray);
    font-style: italic;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.footer-brand {
    max-width: 450px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    margin-top: -40px;
    margin-bottom: 20px;
}

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

.footer-social a {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.07);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--red);
    color: var(--white);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.footer-links ul li a:hover {
    color: var(--red-light);
    padding-left: 4px;
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    margin-bottom: 12px;
}

.footer-contact p i {
    color: var(--red-light);
    margin-top: 3px;
    flex-shrink: 0;
}

.btn-footer-cta {
    display: inline-block;
    background: var(--white);
    color: var(--navy);
    padding: 12px 22px;
    border-radius: var(--radius);
    margin-top: 12px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid var(--navy);
}

.btn-footer-cta:hover {
    background: var(--off-white);
    color: var(--red);
    border-color: var(--red);
}

.footer-bottom {
    text-align: center;
    padding: 20px 0;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.85rem;
}

/* ── PAGE HERO ───────────────────────── */
.page-hero {
    padding: 120px 0 60px;
    text-align: center;
    color: var(--navy-dark);
}

.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    margin-bottom: 14px;
}

.page-hero p {
    color: var(--gray-dark);
    max-width: 560px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--gray);
}

.breadcrumb a {
    color: var(--navy);
}

.breadcrumb a:hover {
    color: var(--red-light);
}

/* ── OUR STORY SECTION ───────────────── */
.our-story {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.our-story::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 220, 220, 0.35) 30%,
            rgba(255, 235, 235, 0.2) 60%,
            rgba(255, 255, 255, 1) 100%);
    background-size: 300% 300%;
    animation: gradientShift 12s ease infinite;
    z-index: 0;
}

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

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.our-story .container {
    position: relative;
    z-index: 1;
}

/* Header */
.our-story-header {
    text-align: center;
    margin-bottom: 28px;
}

/* Description */
.our-story-desc {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 48px;
    color: var(--gray-dark);
    font-size: 1.05rem;
    line-height: 1.85;
}

/* Vision & Mission Cards */
.vm-cards-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 760px;
    margin: 0 auto 60px;
}

.vm-card-new {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(58, 53, 110, 0.08);
    border: 1px solid rgba(58, 53, 110, 0.06);
    transition: var(--transition);
}

.vm-card-new:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(58, 53, 110, 0.14);
}

.vm-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--white);
    font-size: 1.25rem;
}

.vm-card-new h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: var(--navy-dark);
    margin-bottom: 8px;
}

.vm-card-new p {
    font-size: 0.92rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ── Timeline ───────────────────────── */
.story-timeline {
    position: relative;
    display: flex;
    justify-content: space-between;
    max-width: 860px;
    margin: 0 auto 64px;
    padding: 0 20px;
}

.tl-line {
    position: absolute;
    top: 24px;
    left: 48px;
    right: 48px;
    height: 3px;
    background: linear-gradient(90deg, var(--navy), var(--navy-mid), var(--navy));
    border-radius: 2px;
    z-index: 0;
}

.tl-item {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}

.tl-dot {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-size: 1rem;
    margin-bottom: 14px;
    box-shadow: 0 2px 10px rgba(58, 53, 110, 0.12);
    transition: var(--transition);
}

.tl-item:hover .tl-dot {
    background: var(--navy);
    color: var(--white);
    transform: scale(1.12);
}

.tl-year {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.tl-label {
    font-size: 0.82rem;
    color: var(--gray-dark);
    text-align: center;
    max-width: 140px;
    line-height: 1.4;
}

/* ── Stats Row ──────────────────────── */
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.stat-box {
    background: var(--white);
    border-radius: 16px;
    padding: 28px 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(58, 53, 110, 0.08);
    border: 1px solid rgba(58, 53, 110, 0.06);
    transition: var(--transition);
}

.stat-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(58, 53, 110, 0.14);
}

.stat-box i {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 10px;
    display: block;
}

.stat-box-num {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--navy-dark);
    display: block;
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-box-lbl {
    font-size: 0.85rem;
    color: var(--gray-dark);
}

/* ── ERP HERO NEW (Refined Side-by-Side) ───────────────────── */
.erp-hero-new {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.erp-hero-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 230, 230, 0.4) 35%,
            rgba(255, 240, 240, 0.2) 65%,
            rgba(255, 255, 255, 1) 100%);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
    z-index: 0;
}

.erp-hero-new .container {
    position: relative;
    z-index: 1;
}

.erp-hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.erp-hero-text {
    flex: 1.1;
    text-align: left;
}

.erp-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.erp-hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.erp-features-grid-mini {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 32px;
}

.mini-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: var(--white);
    border-radius: 12px;
    border-left: 4px solid var(--navy);
    box-shadow: 0 4px 15px rgba(58, 53, 110, 0.04);
    transition: var(--transition);
}

.mini-feature-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(58, 53, 110, 0.1);
}

.mini-feature-item i {
    color: var(--navy);
    font-size: 1.15rem;
}

.mini-feature-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--navy-dark);
}

.erp-hero-img-new {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
    transition: transform 0.5s ease;
}

.erp-hero-img-new:hover {
    transform: scale(1.03);
}

/* ── BENEFITS HERO NEW ───────────────────── */
.benefits-hero-new {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.benefits-hero-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 225, 225, 0.4) 35%,
            rgba(255, 245, 245, 0.2) 65%,
            rgba(255, 255, 255, 1) 100%);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
    z-index: 0;
}

.benefits-hero-new .container {
    position: relative;
    z-index: 1;
}

.benefits-hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.benefits-hero-text {
    flex: 1.2;
}

.benefits-main-title {
    font-size: clamp(2rem, 4vw, 2.6rem);
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.benefits-main-title span {
    color: var(--red);
}

.benefits-hero-visual {
    flex: 1;
    position: relative;
}

.benefits-hero-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(58, 53, 110, 0.12);
    position: relative;
    z-index: 2;
}

.hero-image-backdrop {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    background: rgba(58, 53, 110, 0.03);
    border-radius: 16px;
    z-index: 1;
}

.benefits-list-new {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.benefit-item-new {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.benefit-number-small {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: rgba(58, 53, 110, 0.1);
    line-height: 1;
}

.benefit-info-small h4 {
    font-size: 1.05rem;
    color: var(--navy-dark);
    margin-bottom: 4px;
}

.benefit-info-small p {
    font-size: 0.88rem;
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ── FAQ HERO NEW ───────────────────── */
.faq-hero-new {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.faq-hero-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 220, 220, 0.4) 35%,
            rgba(255, 240, 240, 0.2) 65%,
            rgba(255, 255, 255, 1) 100%);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
    z-index: 0;
}

.faq-hero-new .container {
    position: relative;
    z-index: 1;
}

.faq-hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.faq-hero-text {
    flex: 1.2;
    text-align: left;
}

.faq-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.faq-hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.faq-hero-img-new {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(58, 53, 110, 0.1);
}

/* ── CONTACT HERO NEW ───────────────────── */
.contact-hero-new {
    position: relative;
    padding: 100px 0;
    background: var(--white);
    overflow: hidden;
}

.contact-hero-new::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(255, 255, 255, 1) 0%,
            rgba(255, 215, 215, 0.4) 35%,
            rgba(255, 235, 235, 0.2) 65%,
            rgba(255, 255, 255, 1) 100%);
    background-size: 300% 300%;
    animation: gradientShift 10s ease infinite;
    z-index: 0;
}

.contact-hero-new .container {
    position: relative;
    z-index: 1;
}

.contact-hero-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.contact-hero-text {
    flex: 1.2;
    text-align: left;
}

.contact-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.contact-hero-desc {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.contact-highlights-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 1.25rem;
    color: var(--red);
    margin-top: 4px;
}

.highlight-item div strong {
    display: block;
    font-size: 0.95rem;
    color: var(--navy-dark);
    margin-bottom: 2px;
}

.highlight-item div span {
    font-size: 0.88rem;
    color: var(--gray-dark);
}

.contact-hero-img-new {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(58, 53, 110, 0.1);
}

/* ── RESPONSIVE ──────────────────────── */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero-visual {
        display: none;
    }

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

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

    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

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

    .footer-grid {
        flex-wrap: wrap;
        gap: 36px;
    }

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

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

    .erp-hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .erp-hero-text {
        text-align: center;
    }

    .erp-hero-desc {
        text-align: center !important;
    }

    .benefits-hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .faq-hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .faq-hero-text {
        text-align: center;
        margin-bottom: 0px;
    }

    .contact-hero-flex {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .contact-hero-text {
        text-align: center;
    }

    .contact-highlights-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .benefits-list-new {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .title-bar {
        margin: 16px auto 0 !important;
    }
}

@media (max-width: 768px) {
    .nav-container {
        height: 75px;
    }

    .nav-logo-img {
        height: 50px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 90px 24px 24px;
        box-shadow: 4px 0 24px rgba(0, 0, 0, 0.15);
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1001;
    }

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

    .nav-menu li {
        width: 100%;
    }

    .nav-menu li a {
        display: block;
        padding: 12px 16px;
        border-radius: 8px;
    }

    .btn-demo {
        text-align: center;
        margin-top: 6px;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-stats {
        gap: 20px;
    }

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

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

    .footer-grid {
        flex-direction: column;
        gap: 20px;
    }

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

    .story-timeline {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
        padding: 0 0 0 28px;
    }

    .tl-line {
        top: 24px;
        bottom: 24px;
        left: 52px;
        right: auto;
        width: 3px;
        height: auto;
    }

    .tl-item {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .tl-dot {
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .tl-year {
        white-space: nowrap;
    }

    .tl-label {
        text-align: left;
    }

    .our-story {
        padding: 60px 0;
    }

    .stat-box-num {
        font-size: 1.8rem;
    }

    .erp-hero-new {
        padding: 60px 0;
    }

    .erp-features-grid-mini {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .erp-hero-desc {
        font-size: 1rem;
    }

    .erp-hero-flex {
        gap: 32px;
    }

    .benefits-hero-new {
        padding: 60px 0;
    }

    .faq-hero-new {
        padding: 60px 0;
    }

    .contact-hero-new {
        padding: 60px 0;
    }

    .benefits-hero-flex {
        gap: 32px;
    }

    .hero-image-backdrop {
        display: none;
    }

    /* ── ANIMATED GRADIENT BACKGROUND ──────────── */
    .animated-gradient-bg {
        min-height: 600px;
        display: flex;
        align-items: center;

        background: linear-gradient(-45deg,
                #1a1f4d,
                /* dark navy */
                #3a356e,
                /* navy */
                #7a1f2b,
                /* red tone */
                #b91c1c
                /* red */
            );

        background-size: 500% 500%;
        animation: gradientMove 12s ease infinite;
    }

    @keyframes gradientMove {
        0% {
            background-position: 0% 50%;
        }

        50% {
            background-position: 100% 50%;
        }

        100% {
            background-position: 0% 50%;
        }
    }
}