:root {
    --lnx-primary-blue: #2563eb;
    --lnx-primary-blue-dark: #1d4ed8;
    --lnx-primary-blue-light: #3b82f6;
    --lnx-secondary-coral: #e94560;
    --lnx-secondary-coral-transparent: #e94560ab;
    --lnx-secondary-purple: #8b5cf6;
    --lnx-secondary-teal: #14b8a6;
    --lnx-challenge-blue: #0f3460;
    --lnx-challenge-blue-light: #1e4a8a;
    --lnx-dark-text: #1e293b;
    --lnx-medium-text: #475569;
    --lnx-light-text: #64748b;
    --lnx-background-light: #f8fafc;
    --lnx-background-white: #ffffff;
    --lnx-border-light: #e2e8f0;
    --lnx-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --lnx-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lnx-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --lnx-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --lnx-radius-sm: 8px;
    --lnx-radius-md: 12px;
    --lnx-radius-lg: 16px;
    --lnx-radius-xl: 24px;
    --lnx-transition: all 0.3s ease;
}

@media (max-width: 480px) {
    .lnx-cta-button {
        display: block;
        width: 59%;
        padding: 12px 18px;
        font-size: 12px !important;
        text-align: center;
        margin-top: 16px;
    }
}


/* Reset body margin */
body {
    margin: 0;
}

.lnx-root * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


.lnx-root {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.7;
    color: var(--lnx-dark-text);
    background: var(--lnx-background-white);
    overflow-x: hidden;
    font-size: 19px;
    /* Increased from 18px */
}

.lnx-root h1,
.lnx-root h2,
.lnx-root h3,
.lnx-root h4,
.lnx-root h5 {
    font-weight: 700;
    line-height: 1.2;
}

.lnx-root strong {
    font-weight: 700;
    color: var(--lnx-dark-text);
}

/* =========================================
           ANIMATION UTILITIES
           ========================================= */
.lnx-reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.lnx-reveal-on-scroll.lnx-is-visible {
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.lnx-delay-100 {
    transition-delay: 0.1s;
}

.lnx-delay-200 {
    transition-delay: 0.2s;
}

.lnx-delay-300 {
    transition-delay: 0.3s;
}

.lnx-delay-400 {
    transition-delay: 0.4s;
}

.lnx-delay-500 {
    transition-delay: 0.5s;
}

/* =========================================
           LAYOUT UTILITIES
           ========================================= */
.lnx-section {
    width: 100%;
    padding: 65px 0;
}

.lnx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.lnx-section-title {
    font-size: 3.4rem;
    /* Increased from 3.2rem */
    font-weight: 800;
    color: var(--lnx-dark-text);
    margin-bottom: 20px;
    text-align: center;
    letter-spacing: -0.5px;
}

.lnx-section-subtitle {
    font-size: 25px;
    /* Increased from 26px */
    color: var(--lnx-medium-text);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.6;
}

/* =========================================
           HERO SECTION
           ========================================= */
.lnx-hero {
    background: linear-gradient(135deg, #0f3460 0%, #1a3a6a 100%);
    text-align: center;
    padding: 100px 0 100px;
    position: relative;
    overflow: hidden;
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

.lnx-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(90deg, transparent 4%, rgba(255, 255, 255, 0.08) 4.05%, rgba(255, 255, 255, 0.08) 4.1%, transparent 4.15%),
        linear-gradient(90deg, transparent 7%, rgba(255, 255, 255, 0.08) 7.05%, rgba(255, 255, 255, 0.08) 7.1%, transparent 7.15%),
        linear-gradient(90deg, transparent 10%, rgba(255, 255, 255, 0.08) 10.05%, rgba(255, 255, 255, 0.08) 10.1%, transparent 10.15%),
        linear-gradient(90deg, transparent 13%, rgba(255, 255, 255, 0.08) 13.05%, rgba(255, 255, 255, 0.08) 13.1%, transparent 13.15%);
    background-size: 100% 100%;
    opacity: 0.5;
    z-index: 1;
    pointer-events: none;
}

.lnx-hero-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.04;
    background-image:
        linear-gradient(30deg, rgba(76, 201, 240, 0.15) 0.5px, transparent 0.5px),
        linear-gradient(60deg, rgba(72, 149, 239, 0.15) 0.5px, transparent 0.5px),
        linear-gradient(90deg, rgba(67, 97, 238, 0.15) 0.5px, transparent 0.5px);
    background-size: 200px 200px;
    animation: lnx-patternMove 40s linear infinite;
    z-index: 2;
}

@keyframes lnx-patternMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 200px 200px;
    }
}

.lnx-hero-3d-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(76, 201, 240, 0.05), rgba(67, 97, 238, 0.05));
    backdrop-filter: blur(5px);
    animation: lnx-float3D 15s ease-in-out infinite;
    z-index: 3;
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.lnx-hero-3d-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -150px;
    animation-delay: 0s;
}

.lnx-hero-3d-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -100px;
    animation-delay: 2s;
}

.lnx-hero-3d-3 {
    width: 200px;
    height: 200px;
    top: 30%;
    left: 5%;
    animation-delay: 4s;
}

@keyframes lnx-float3D {

    0%,
    100% {
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }

    50% {
        transform: translateY(0) translateX(40px) rotate(180deg) scale(1);
    }
}

.lnx-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(76, 201, 240, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(67, 97, 238, 0.03) 0%, transparent 50%);
    animation: lnx-glowPulse 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes lnx-glowPulse {

    0%,
    100% {
        opacity: 0.3;
    }

    50% {
        opacity: 0.5;
    }
}

.lnx-hero-border-animation {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(76, 201, 240, 0.4) 20%, rgba(67, 97, 238, 0.4) 50%, rgba(76, 201, 240, 0.4) 80%, transparent 100%);
    animation: lnx-borderFlow 3s linear infinite;
    z-index: 4;
}

@keyframes lnx-borderFlow {
    0% {
        background-position: -100% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

.lnx-hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

.lnx-brand-subtext {
    font-size: 1.3rem;
    /* Increased from 1.2rem */
    color: #4cc9f0;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    animation: lnx-fadeInUp 1s ease-out 0.2s both;
    text-shadow: 0 0 10px rgba(76, 201, 240, 0.3);
}

@keyframes lnx-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lnx-brand {
    font-size: 6.2rem;
    /* Increased from 5.8rem */
    font-weight: 800;
    margin-bottom: 15px;
    letter-spacing: -1.5px;
    position: relative;
    display: inline-block;
    color: white;
    animation: lnx-brandEntrance 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

@keyframes lnx-brandEntrance {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }

    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.lnx-tagline {
    font-size: 38px;
    /* Increased from 36px */
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
    position: relative;
    padding-bottom: 20px;
    animation: lnx-fadeInUp 1s ease-out 0.4s both;
    color: white;
}

.lnx-hero-text {
    font-size: 24px;
    /* Increased from 24px - Set to 21px as requested */
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    animation: lnx-fadeInUp 1s ease-out 0.6s both;
}

.lnx-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #dbebfc 0%, #f6d6da 100%);
    color: var(--lnx-dark-text);
    padding: 14px 22px;
    /* Increased padding */
    border-radius: var(--lnx-radius-md);
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    /* Increased from 24px */

    box-shadow: 0 10px 30px rgba(67, 97, 238, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
    margin-top: 20px;
    position: relative;
    overflow: hidden;

    z-index: 6;
}

.lnx-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.7s;
    z-index: 1;
}

.lnx-cta-button:hover::before {
    left: 100%;
}

.lnx-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(67, 97, 238, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.lnx-cta .lnx-cta-button {
    background: #0f3460;
    color: white;
    box-shadow: 0 10px 30px rgba(15, 52, 96, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.lnx-cta .lnx-cta-button:hover {
    box-shadow: 0 15px 40px rgba(15, 52, 96, 0.4), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

/* =========================================
   PROBLEMS SECTION
   ========================================= */
/* ONE VIEW SETTINGS */
.lnx-problems {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
    width: 100%;
}

.lnx-container {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
}

.lnx-section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--lnx-challenge-blue);
    margin-bottom: 5px;
}

.lnx-section-subtitle {
    text-align: center;
    font-size: 19px;
    color: var(--lnx-medium-text);
    margin-bottom: 40px;
}

/* MAIN WRAPPER */
.lnx-challenges-wrapper {
    position: relative;
    background: var(--lnx-background-white);
    border: 1px solid var(--lnx-challenge-blue);
    border-top: 4px solid var(--lnx-challenge-blue);
    border-radius: var(--lnx-radius-xl);
    padding: 70px 40px 40px;
    box-shadow: var(--lnx-shadow-lg);
}

/* PILL POSITIONED LIKE IMAGE (LEFT-ALIGNED) */
.lnx-challenges-pill {
    position: absolute;
    top: -28px;
    left: 10%;
    /* Desktop view left align */
    background: var(--lnx-challenge-blue);
    color: white;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(15, 52, 96, 0.2);
    z-index: 2;
    white-space: nowrap;
}

/* 2 COLUMN GRID */
.lnx-challenges-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

/* ITEMS ALIGNMENT */
.lnx-challenge-item {
    background: #fff;
    padding: 22px 25px;
    border-radius: var(--lnx-radius-lg);
    border: 1px solid rgba(226, 232, 240, 0.8);
    display: flex;
    align-items: center;
    gap: 20px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: var(--lnx-transition);
}

.lnx-challenge-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(15, 52, 96, 0.05);
}

.lnx-challenge-icon {
    width: 45px;
    height: 45px;
    background: rgba(15, 52, 96, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lnx-challenge-blue);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.lnx-challenge-text {
    font-size: 20px;
    color: var(--lnx-medium-text);
    line-height: 1.4;
    font-weight: 500;
    text-align: left;
}

/* FOOTER NOTE */
.lnx-footer-note {
    text-align: center;
    margin-top: 40px;
    color: var(--lnx-medium-text);
    font-weight: 600;
    font-size: 21px;
}

/* RESPONSIVE UPDATES */
@media (max-width: 992px) {
    .lnx-challenges-list {
        grid-template-columns: 1fr;
    }

    .lnx-problems {
        min-height: auto;
        padding: 60px 15px;
    }

    .lnx-challenges-pill {
        left: 50%;
        transform: translateX(-50%);
        /* Center the pill properly */
        font-size: 14px;
        padding: 10px 30px;
    }

    .lnx-section-title {
        font-size: 28px;
    }
}

@media (max-width: 600px) {

    /* Hide icons on small screens */
    .lnx-challenge-icon {
        display: none;
    }

    .lnx-challenge-item {
        justify-content: center;
        /* Center content without icon */
        text-align: center;
        padding: 15px;
    }

    .lnx-challenge-text {
        text-align: center;
        /* Center text when icon is gone */
        font-size: 18px;
    }

    .lnx-challenges-wrapper {
        padding: 60px 20px 30px;
        /* Adjusted padding for mobile */
    }

    .lnx-footer-note {
        font-size: 18px;
    }
}

/* =========================================
           SOLUTION SECTION
           ========================================= */
.lnx-solution {
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    padding: 100px 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100vw;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    box-sizing: border-box;
    background: #0f3460;
}

.lnx-solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 52, 96, 0.9) 0%, rgba(10, 30, 55, 0.95) 100%);
    z-index: 2;
}

.lnx-solution-title1{
    color: white;
}

.lnx-solution-title {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 3.25rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 25px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    line-height: 1.15;
}

.lnx-solution-text {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 21px;
    font-weight: 400;
    line-height: 1.8;
    color: white;
    opacity: 0.9;
    letter-spacing: 0.01em;
}

/* Icons Placement */
.lnx-icon-float {
    position: absolute;
    color: #4cc9f0;
    font-size: 120px;
    opacity: 0.25;
    z-index: 5;
    pointer-events: none;
}

/* Specific Placement for the two remaining icons */
.lnx-icon-tr {
    top: 15%;
    right: 12%;
    animation: lnx-floatUpDown 7s ease-in-out infinite;
}

.lnx-icon-bl {
    bottom: 15%;
    left: 12%;
    animation: lnx-floatUpDown 5s ease-in-out infinite;
}

@keyframes lnx-floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-40px);
    }
}

.lnx-solution-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    z-index: 3;
}

/* Grid Background Effect */
.lnx-solution::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: lnx-gridMove 40s linear infinite;
    z-index: 4;
}

@keyframes lnx-gridMove {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 100px 100px;
    }
}

/* Floating Abstract Circles */
.lnx-bg-element {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    animation: lnx-bgFloat 20s linear infinite;
    z-index: 3;
}

.lnx-bg-element-1 {
    width: 300px;
    height: 300px;
    top: -150px;
    right: -150px;
}

.lnx-bg-element-2 {
    width: 200px;
    height: 200px;
    bottom: -100px;
    left: -100px;
}

.lnx-bg-element-3 {
    width: 150px;
    height: 150px;
    top: 30%;
    right: 10%;
}

.lnx-bg-element-4 {
    width: 100px;
    height: 100px;
    bottom: 30%;
    left: 10%;
}

@keyframes lnx-bgFloat {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.2;
    }

    50% {
        transform: translateY(-40px) translateX(-10px) rotate(180deg);
        opacity: 0.4;
    }

    100% {
        transform: translateY(0) rotate(360deg);
        opacity: 0.2;
    }
}

.lnx-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
}

.lnx-solution-content {
    max-width: 900px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .lnx-solution-title {
        font-size: 2.2rem;
    }

    .lnx-icon-float {
        font-size: 2rem;
        opacity: 0.15;
    }

    .lnx-solution {
        padding: 70px 0;
    }

    .lnx-solution-text {
        font-size: 1rem;
    }
}

.lms-pkg-subscribe-btn:hover {
    box-shadow: 0 4px 12px rgba(58, 12, 163, 0.2);
    background: #f5f4fb;
    color: #0f172a;
    border: 1px solid rgba(99, 102, 241, .2);
}

.lms-pkg-subscribe-btn {
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    display: block;
    box-shadow: 0 4px 12px rgba(58, 12, 163, 0.2);
    background: #f5f4fb;
    color: #0f172a;
    border: 1px solid rgba(99, 102, 241, .2);
}

/* Naya Section Wrapper */
.lms-main-page-section {
    padding: 80px 20px;
    /* Upar aur neeche aik jitni padding */
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lms-pkg-section {
    padding: 0 0 50px 0;
    /* Internal padding adjust ki taake section balance rahe */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    width: 100%;
}

.lms-pkg-card {
    background: #ffffff;
    width: 100%;
    max-width: 380px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease;
}

.lms-pkg-card:hover {
    transform: translateY(-10px);
}

.lms-pkg-header {
    padding: 1rem 1rem 1rem;
    position: relative;
    text-align: center;
    background: linear-gradient(135deg, rgba(58, 12, 163, .05), rgba(67, 97, 238, .05));
    border-bottom: 1px solid rgba(226, 232, 240, .3);
    z-index: 1;
}

.lms-pkg-title {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 0;
}

.lms-pkg-body {
    padding: 30px 30px 0px;
    flex-grow: 1;
}

.lms-pkg-feature-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
    border: 1px solid #f0f0f0;
    padding: 12px 20px;
    margin-bottom: 15px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.lms-pkg-feature-left {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #4a5568;
    font-weight: 600;
    font-size: 14px;
}

.lms-pkg-feature-left i {
    color: #3a0ca3;
    width: 20px;
    text-align: center;
}

.lms-pkg-feature-value {
    font-size: 14px;
    color: #718096;
    font-weight: 500;
}

.lms-pkg-status-yes {
    color: #2f855a;
    background: #e6fffa;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.lms-pkg-status-no {
    color: #c53030;
    background: #fff5f5;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.lms-pkg-footer {
    padding: 0 30px 20px 40px;
    text-align: center;
}

.lms-pkg-price-wrap {
    display: flex;
    align-items: baseline;
    justify-content: center;
    color: #1a202c;
}

.lms-pkg-currency {
    font-size: 24px;
    font-weight: 700;
    color: #3a0ca3;
    margin-right: 4px;
}

.lms-pkg-amount {
    letter-spacing: -2px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0F172A;
    line-height: 1;
    position: relative;
}

.lms-pkg-duration {
    font-size: 16px;
    color: #718096;
    margin-left: 5px;
    font-weight: 500;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .lms-main-page-section {
        padding: 40px 15px;
    }

    .lms-pkg-amount {
        font-size: 48px;
    }
}

.pt-lms-wrapper {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    overflow: hidden;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
}

.pt-lms-responsive-box {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pt-lms-main-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 750px;
    background: #fff;
}

.pt-lms-table-header {
    background-color: #ececff;
}

.pt-lms-th {
    padding: 1.25rem 1.5rem;
    text-align: left;
    font-weight: 700;
    color: #0F172A;
    border-bottom: 2px solid rgba(226, 232, 240, .5);
    font-size: 15px;
}

.pt-lms-td {
    font-size: 15px;
    color: #566375;
    line-height: 1.5;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(226, 232, 240, .3);
    vertical-align: middle;
}

.pt-lms-icon-yes {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #e6f7f0;
    color: #008000;
    font-size: 14px;
}

.pt-lms-icon-no {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: #fdeeee;
    color: #d00000;
    font-size: 14px;
}

.pt-lms-feature-label {
    width: 35%;
    font-weight: 600;
    color: #2d3748;
}

.pt-lms-row-subscription {
    background-color: #f8faff;
}

.pt-lms-td-sub-price {
    font-weight: 800;
    color: #5a67d8;
    font-size: 17px;
}

.pt-lms-divider-row {
    background-color: #f7fafc;
    text-align: center;
}

.pt-lms-td-divider {
    border-bottom: 1px solid #e2e8f0;
    font-weight: 700;
    text-transform: uppercase;
    font-size: .9rem;
    background: #f5f4fb;
    color: #0f172a;
    box-shadow: 0 1px 6px rgba(99, 102, 241, .3);
    border: 1px solid rgba(99, 102, 241, .2);
}

.pt-lms-td-addon-price {
    text-align: right;
}

.pt-lms-data-row:hover {
    background-color: #fcfcfd;
}

.pt-lms-btn-container {
    text-align: center;
    padding: 30px 20px;
    border-bottom: none !important;
}

.pt-lms-consultation-btn {
    color: #ffffff !important;
    border: none;
    cursor: pointer;
    display: inline-block;
    background-color: #0f3460;
    padding: 14px 32px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(.4, 0, .2, 1);
    box-shadow: 0 4px 10px rgba(0, 0, 0, .04);
}

.pt-lms-consultation-btn:hover {
    background: #0f3460;
    transform: translateY(-2px);
}

.pt-lms-consultation-btn i {
    margin-left: 10px;
}

.pt-lms-data-row:last-child .pt-lms-td {
    border-bottom: 1px solid rgba(226, 232, 240, .3);
}

/* =========================================
       TEAMS SECTION (OPTIMIZED FOR SINGLE VIEW)
       ========================================= */
.lnx-teams-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
    /* Viewport height setup to fit in one screen */
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
}

.lnx-teams-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 80%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(20, 184, 166, 0.05) 0%, transparent 50%);
}

/* Container for the whole content */
.lnx-teams-main-wrapper {
    max-width: 1450px;
    width: 95%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.lnx-teams-container {
    display: flex;
    align-items: center;
    /* Centered vertically */
    gap: 60px;
    /* Equal gap between visual and content */
    margin-top: 30px;
}

.lnx-teams-visual {
    flex: 0.8;
    /* Reduced width for visual to give more to cards */
    position: relative;
    display: flex;
    justify-content: center;
}

.lnx-teams-content {
    flex: 2;
    /* Increased width for cards */
}

/* Circle Styling - Slightly scaled down to fit height */
.lnx-teams-visual-circle {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, #dbebfc 0%, #f6d6da 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border: 2px solid rgba(37, 99, 235, 0.1);
}

.lnx-teams-visual-inner {
    width: 320px;
    height: 320px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    padding: 35px;
    text-align: center;
}

.lnx-teams-icon-main {
    font-size: 3.2rem;
    color: var(--lnx-secondary-coral-transparent, #e94560);
    margin-bottom: 10px;
}

.lnx-teams-visual-text {
    font-size: 1.7rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.lnx-teams-visual-subtext {
    color: #64748b;
    font-size: 18px;
    line-height: 1.4;
    margin-top: 8px;
}

/* Floating Elements */
.lnx-floating-element {
    position: absolute;
    width: 55px;
    height: 55px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: #e94560;
    font-size: 1.5rem;
    border: 2px solid rgba(233, 69, 96, 0.1);
}

@keyframes lnx-floatUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

.lnx-floating-element:nth-child(2) {
    top: 20px;
    right: 20px;
    animation: lnx-floatUpDown 6s ease-in-out infinite;
}

.lnx-floating-element:nth-child(3) {
    top: 20px;
    left: 20px;
    animation: lnx-floatUpDown 7s ease-in-out infinite 0.5s;
}

.lnx-floating-element:nth-child(4) {
    bottom: 20px;
    left: 20px;
    animation: lnx-floatUpDown 8s ease-in-out infinite 1s;
}

.lnx-floating-element:nth-child(5) {
    bottom: 20px;
    right: 20px;
    animation: lnx-floatUpDown 6.5s ease-in-out infinite 1.5s;
}

/* Features Grid - Two columns with wide cards */
.lnx-teams-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    /* Equal gap between cards */
    width: 100%;
}

.lnx-teams-feature {
    display: flex;
    flex-direction: column;
    padding: 30px;
    background: white;
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    min-height: 200px;
    /* Adjusted height to fit view */
    justify-content: center;
}

.lnx-teams-feature:hover {
    transform: translateY(-5px);
    border-color: #0f3460;
    box-shadow: 0 15px 35px rgba(15, 52, 96, 0.1);
}

.lnx-teams-feature-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #0f3460;
    line-height: 1.3;
    text-align: center;
}

.lnx-teams-feature-content p {
    color: #64748b;
    font-size: 18px;
    /* Slightly adjusted to fit */
    line-height: 1.5;
    margin: 0;
    text-align: center;
}

/* Header styling */
.lnx-teams-header {
    text-align: center;
    margin-bottom: 40px;
}

.lnx-section-title {
    font-size: 43px;
    color: #1e293b;
    margin-bottom: 10px;
    font-weight: 800;
}

.lnx-section-subtitle {
    font-size: 22px;
    color: #64748b;
}

/* Tablet/Mobile responsiveness */
@media (max-width: 1024px) {
    .lnx-teams-section {
        height: auto;
        padding: 80px 0;
    }

    .lnx-teams-container {
        flex-direction: column;
    }

    .lnx-teams-features {
        grid-template-columns: 1fr;
    }

    .lnx-teams-visual {
        margin-bottom: 40px;
    }
}

/* =========================================
           BENEFITS SECTION
           ========================================= */
.lnx-benefits {
    background: var(--lnx-background-white);
    width: 100%;
    padding: 120px 0;
    box-sizing: border-box;
}

.lnx-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.lnx-section-title {
    font-size: 38px;
    font-weight: 800;
    color: var(--lnx-challenge-blue);
    margin-bottom: 10px;
}

.lnx-section-subtitle {
    font-size: 19px;
    color: var(--lnx-medium-text);
    margin-bottom: 50px;
}

.lnx-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lnx-benefit-card {
    background: var(--lnx-background-white);
    padding: 80px 30px 40px 30px;
    /* Original padding */
    border-radius: 8px;
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--lnx-border-light);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: var(--lnx-transition);
}

/* --- ARROW STYLES --- */
.lnx-arrow-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 70px;
    pointer-events: none;
}

.lnx-arrow-path {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-top: 18px solid var(--lnx-challenge-blue);
    border-left: 18px solid var(--lnx-challenge-blue);
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-sizing: border-box;
}

.lnx-arrow-point {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 18px;
    background-color: var(--lnx-challenge-blue);
}

.lnx-arrow-head {
    position: absolute;
    bottom: -15px;
    left: 45px;
    width: 0;
    height: 0;
    border-top: 24px solid transparent;
    border-bottom: 24px solid transparent;
    border-left: 32px solid var(--lnx-challenge-blue);
}

/* --- HEADINGS IN FRONT OF ARROWS (Fixed Overlap) --- */
.lnx-benefit-title {
    font-size: 28px;
    /* Original font size */
    font-weight: 800;
    color: var(--lnx-dark-text);
    text-align: center;

    /* Is se heading arrow ke front/line mein aa jayegi */
    margin-top: -35px;
    margin-bottom: 25px;

    /* padding-left taake title arrow head ke bilkul upar na charhe */
    padding-left: 21px;

    position: relative;
    z-index: 2;
}

.lnx-benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.lnx-benefit-list li {
    position: relative;
    padding: 10px 0 10px 36px;
    color: var(--lnx-medium-text);
    font-size: 19px;
    /* Original font size */
    line-height: 1.5;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.lnx-benefit-list li:last-child {
    border-bottom: none;
}

.lnx-benefit-list li::before {
    content: "\f00c";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: var(--lnx-secondary-coral);
    position: absolute;
    left: 0;
    top: 12px;
    font-size: 18px;
}

@media (max-width: 992px) {
    .lnx-benefits-grid {
        grid-template-columns: 1fr;
    }

    .lnx-benefit-title {
        padding-left: 0;
        margin-top: 0;
    }

    /* Mobile fix */
}

/* =========================================
           CORE STRENGTHS SECTION
           ========================================= */
/* --- Aapka Original Code (No Changes) --- */
.lnx-strengths {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 100px 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 850px;
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

.lnx-strength-curve-bg {
    position: absolute;
    left: -15%;
    top: 50%;
    transform: translateY(-50%);
    width: 56%;
    height: 120%;
    background: linear-gradient(135deg, #dbebfc 0%, #f6d6da 100%);
    border-radius: 0 50% 50% 0;
    z-index: 1;
    box-shadow: var(--lnx-shadow-xl);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 100px;
}

.lnx-curve-text {
    color: #0f3460;
    font-family: 'Inter', sans-serif;
    font-size: 4.3rem;
    line-height: 1.2;
    text-align: right;
    font-weight: 800;
    max-width: 500px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    position: relative;
    right: 157px;
    text-align: left;
}

.lnx-strength-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
    padding-right: 20px;
}

.lnx-strength-list {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 0;
    position: relative;
    right: 241px;
}

.lnx-strength-item {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
    position: relative;
    transition: transform 0.3s ease;
    padding: 0;
}

.lnx-strength-item:last-child {
    margin-bottom: 0;
}

/* Hover Effects original code se */
.lnx-strength-item:nth-child(1) {
    transform: translateX(0px);
}

.lnx-strength-item:nth-child(2) {
    transform: translateX(40px);
}

.lnx-strength-item:nth-child(3) {
    transform: translateX(70px);
}

.lnx-strength-item:nth-child(4) {
    transform: translateX(70px);
}

.lnx-strength-item:nth-child(5) {
    transform: translateX(40px);
}

.lnx-strength-item:nth-child(6) {
    transform: translateX(0px);
}

.lnx-strength-item:nth-child(1):hover {
    transform: translateX(10px);
}

.lnx-strength-item:nth-child(2):hover {
    transform: translateX(50px);
}

.lnx-strength-item:nth-child(3):hover {
    transform: translateX(80px);
}

.lnx-strength-item:nth-child(4):hover {
    transform: translateX(80px);
}

.lnx-strength-item:nth-child(5):hover {
    transform: translateX(50px);
}

.lnx-strength-item:nth-child(6):hover {
    transform: translateX(10px);
}

.lnx-icon-box {
    width: 75px;
    height: 75px;
    background: white;
    border: 3px solid #0f3460;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 25px;
    position: relative;
    color: var(--lnx-secondary-coral-transparent);
    font-size: 1.8rem;
    box-shadow: 0 10px 20px rgba(15, 52, 96, 0.15);
    margin-left: -35px;
    z-index: 10;
    transition: var(--lnx-transition);
}

.lnx-strength-item:hover .lnx-icon-box {
    transform: scale(1.1);
    background: #0f3460;
    color: white;
}

.lnx-text-title {
    font-size: 23px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 10px;
}

.lnx-text-desc {
    font-size: 21px;
    color: var(--lnx-medium-text);
    line-height: 1.6;
    max-width: none;
    white-space: nowrap;
}

/* --- RESPONSIVE FIXES (Only Adjusting Positioning) --- */

/* For 1280px Screens */
@media screen and (max-width: 1366px) {
    .lnx-curve-text {
        right: 52px;
        font-size: 40px;
    }

    .lnx-strength-list {
        right: 162px;
        /* List ko adjust kiya bari screens k liye */
    }

    .lnx-text-desc {
        font-size: 19px;
        /* Slightly smaller for 1280px */
    }
}

/* For Tablets (1024px) - Hover is still active */
@media screen and (max-width: 1024px) {
    .lnx-strengths {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
        left: 0;
    }

    .lnx-curve-text {
        right: 50px;
        font-size: 3rem;
    }

    .lnx-strength-list {
        right: 40px;
        width: 55%;
    }

    .lnx-text-desc {
        white-space: normal;
        /* Wrap text on smaller screens */
    }
}

/* For Mobile - Moving things to center but keeping hover scaling */
@media screen and (max-width: 768px) {
    .lnx-strengths {
        flex-direction: column;
        padding-top: 50px;
        min-height: auto;
    }

    .lnx-strength-curve-bg {
        width: 100%;
        height: 300px;
        top: 0;
        transform: none;
        border-radius: 0 0 50% 50%;
        justify-content: center;
        padding-right: 0;
    }

    .lnx-curve-text {
        position: relative;
        right: 0;
        text-align: center;
        font-size: 2.5rem;
        margin-bottom: 20px;
    }

    .lnx-strength-content-wrapper {
        justify-content: center;
        padding-right: 0;
    }

    .lnx-strength-list {
        width: 90%;
        right: 0;
        padding: 20px;
        align-items: center;
    }

    .lnx-strength-item {
        transform: none !important;
        /* Mobile pe horizontal curve hata di taaki screen k andar rahe */
        margin-left: 35px;
    }

    /* Mobile hover icon scaling still works */
    .lnx-strength-item:hover {
        transform: scale(1.02) !important;
        /* Mobile k liye simple scale hover */
    }
}

/* =========================================
           EXPERTISE SECTION
           ========================================= */
.lnx-expertise {
    background: #0f3460;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 120px 0;
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

.lnx-expertise-bg-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    overflow: hidden;
}

.lnx-expertise-element {
    position: absolute;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: lnx-expertiseUpDown 15s ease-in-out infinite;
}

.lnx-expertise-element-1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.lnx-expertise-element-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    right: -150px;
    animation-delay: 3s;
}

.lnx-expertise-element-3 {
    width: 200px;
    height: 200px;
    top: 40%;
    right: 20%;
    animation-delay: 6s;
}

.lnx-expertise-element-4 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    left: 15%;
    animation-delay: 9s;
}

@keyframes lnx-expertiseUpDown {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }

    50% {
        transform: translateY(-50px) scale(1.05);
        opacity: 0.5;
    }
}

.lnx-expertise-lines {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background-image:
        linear-gradient(45deg, transparent 49%, rgba(255, 255, 255, 0.02) 50%, transparent 51%),
        linear-gradient(-45deg, transparent 49%, rgba(255, 255, 255, 0.02) 50%, transparent 51%);
    background-size: 100px 100px;
}

.lnx-expertise-floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 15px 25px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    /* Set to 21px as requested */
    font-weight: 600;
    animation: lnx-badgeUpDown 12s ease-in-out infinite;
    z-index: 1;
    backdrop-filter: blur(5px);
}

.lnx-floating-badge-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.lnx-floating-badge-2 {
    top: 30%;
    right: 15%;
    animation-delay: 4s;
}

.lnx-floating-badge-3 {
    bottom: 25%;
    left: 15%;
    animation-delay: 8s;
}

@keyframes lnx-badgeUpDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-25px);
    }
}

.lnx-expertise-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

.lnx-expertise-badge,
.lnx-expertise-title,
.lnx-expertise-text {
    opacity: 0;

}

.lnx-expertise-badge.lnx-animated,
.lnx-expertise-title.lnx-animated,
.lnx-expertise-text.lnx-animated {
    opacity: 1;

}

.lnx-expertise-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.3rem;
    /* Increased from 1.2rem */
    margin-bottom: 30px;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition-delay: 0.1s;
    position: relative;
    z-index: 4;
    display: none;
}

.lnx-expertise-title {
    font-size: 3.6rem;
    /* Increased from 3.4rem */
    font-weight: 800;
    margin-bottom: 30px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    transition-delay: 0.3s;
    position: relative;
    z-index: 4;
}

.lnx-expertise-text {
    font-size: 22px;
    /* Set to 21px as requested */
    line-height: 1.8;
    opacity: 0.95;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
    transition-delay: 0.5s;
    position: relative;
    z-index: 4;
}

.lnx-expertise strong {
    font-weight: 700;
    color: white;
}

/* =========================================
           CTA SECTION
           ========================================= */
.lnx-cta {
    background: var(--lnx-background-light);
    text-align: center;
    padding: 120px 0;
    width: 99vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -44vw;
    overflow: hidden;
}

.lnx-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.lnx-cta-title {
    font-size: 3.6rem;
    /* Increased from 3.4rem */
    font-weight: 800;
    color: var(--lnx-dark-text);
    margin-bottom: 25px;
}

/* Small screens (Mobile) k liye adjustment */
@media (max-width: 768px) {
    .lnx-cta-title {
        font-size: 1.8rem;
        /* Mobile par font size chota kar diya */
        margin-bottom: 15px;
        /* Margin bhi thoda kam kiya takay space thk rahay */
    }
}

@media (max-width: 480px) {
    .lnx-cta-title {
        font-size: 2.5rem;
        /* Bohat choti screen k liye mazeed adjust kia */
    }
}

.lnx-cta-text {
    font-size: 22px;
    /* Set to 21px as requested */
    color: var(--lnx-medium-text);
    line-height: 1.8;
    margin-bottom: 40px;
}

/* =========================================
           RESPONSIVE DESIGN (GLOBAL)
           ========================================= */
@media (max-width: 1200px) {
    .lnx-teams-container {
        flex-direction: column;
        gap: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        box-sizing: border-box;
    }

    .lnx-strength-curve-bg {
        width: 55%;
        padding-right: 60px;
    }

    .lnx-curve-text {
        font-size: 3.7rem;
    }

    /* Increased from 3.5rem */
    .lnx-strength-item:nth-child(n) {
        transform: translateX(0) !important;
    }

    .lnx-strength-item:hover {
        transform: translateX(10px) !important;
    }

    .lnx-teams-visual-circle {
        width: 380px;
        height: 380px;
        margin: 0 auto;
    }

    .lnx-teams-visual-inner {
        width: 320px;
        height: 320px;
    }

    .lnx-teams-features {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        margin-top: 50px;
    }

    /* Mobile screens */
    @media (max-width: 768px) {

        .lnx-floating-element:nth-child(1),
        .lnx-floating-element:nth-child(2),
        .lnx-floating-element:nth-child(3),
        .lnx-floating-element:nth-child(4),
        .lnx-floating-element:nth-child(5) {
            display: none;
            /* hide on mobile */
        }
    }

    /* Tablet screens */
    @media (max-width: 992px) {

        .lnx-floating-element:nth-child(1),
        .lnx-floating-element:nth-child(2),
        .lnx-floating-element:nth-child(3),
        .lnx-floating-element:nth-child(4),
        .lnx-floating-element:nth-child(5) {
            display: none;
            /* hide on tablet */
        }
    }

    /* Adjust 21px fonts for responsive */
    .lnx-challenge-text,
    .lnx-solution-text,
    .lnx-teams-visual-subtext,
    .lnx-teams-feature-content p,
    .lnx-benefit-list li,
    .lnx-text-desc,
    .lnx-expertise-text,
    .lnx-cta-text {
        font-size: 20px;
    }
}

@media (max-width: 1024px) {
    .lnx-benefits-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: auto;
    }

    .lnx-challenges-list {
        grid-template-columns: 1fr;
    }

    .lnx-challenges-wrapper {
        margin: 0 20px;
        padding: 60px 30px 30px 30px;
    }

    .lnx-strength-curve-bg {
        position: relative;
        width: 100%;
        left: 0;
        top: 0;
        height: 350px;
        transform: none;
        border-radius: 0 0 50% 50% / 0 0 30px 30px;
        justify-content: center;
        padding-right: 0;
        text-align: center;
        margin-bottom: 60px;
    }

    .lnx-curve-text {
        text-align: center;
        width: 100%;
        padding: 0 20px;
        font-size: 3.1rem;
        /* Increased from 2.9rem */
        max-width: 100%;
        right: 0;
    }

    .lnx-strengths {
        display: block;
        padding: 60px 0;
    }

    .lnx-strength-content-wrapper {
        justify-content: center;
        padding-right: 0;
        flex-direction: column;
        align-items: center;
    }

    .lnx-strength-list {
        width: 100%;
        max-width: 700px;
        padding: 0 20px;
        right: 0;
    }

    .lnx-strength-item:nth-child(n) {
        transform: none !important;
        margin-bottom: 25px;
    }

    .lnx-icon-box {
        margin-left: 0;
    }

    .lnx-text-desc {
        white-space: normal;
    }

    .lnx-solution-title,
    .lnx-expertise-title {
        font-size: 3rem;
    }

    /* Increased from 2.8rem */
    .lnx-brand {
        font-size: 4.2rem;
    }

    /* Increased from 4rem */
    .lnx-tagline {
        font-size: 2.2rem;
    }

    /* Increased from 2rem */
    .lnx-teams-features {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 40px auto 0;
    }

    .lnx-teams-feature {
        min-height: 180px;
    }

    /* Adjust 21px fonts for responsive */
    .lnx-challenge-text,
    .lnx-solution-text,
    .lnx-teams-visual-subtext,
    .lnx-teams-feature-content p,
    .lnx-benefit-list li,
    .lnx-text-desc,
    .lnx-expertise-text,
    .lnx-cta-text,
    .lnx-hero-text {
        font-size: 19px;
    }
}

@media (max-width: 768px) {
    .lnx-container {
        padding: 0 20px;
    }

    .lnx-section {
        padding: 80px 0;
    }

    .lnx-brand {
        font-size: 3.7rem;
    }

    /* Increased from 3.5rem */
    .lnx-section-title {
        font-size: 2.8rem;
    }

    /* Increased from 2.6rem */
    .lnx-solution-title,
    .lnx-expertise-title {
        font-size: 2.6rem;
    }

    /* Increased from 2.4rem */
    .lnx-teams-visual-circle {
        width: 320px;
        height: 320px;
    }

    .lnx-teams-visual-inner {
        width: 270px;
        height: 270px;
        padding: 35px;
    }

    .lnx-teams-icon-main {
        margin-bottom: 10px;
        font-size: 3.1rem;
    }

    /* Increased from 2.9rem */
    .lnx-challenges-pill {
        padding: 8px 22px;
        font-size: 13px;
    }

    /* Increased from 1.3rem */
    .lnx-hero-3d-1 {
        width: 300px;
        height: 300px;
        top: -100px;
        right: -100px;
    }

    .lnx-hero-3d-2 {
        width: 200px;
        height: 200px;
        bottom: -50px;
        left: -50px;
    }

    .lnx-hero-3d-3 {
        width: 150px;
        height: 150px;
        top: 20%;
        left: 5%;
    }

    .lnx-expertise-floating-badge {
        display: none;
    }

    .lnx-strength-item {
        padding: 0;
    }

    .lnx-icon-box {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    /* Increased from 1.4rem */
    .lnx-teams-feature {
        padding: 25px;
        min-height: 160px;
    }

    .lnx-benefit-card {
        padding: 35px 25px;
    }

    .lnx-teams-feature-content h4 {
        font-size: 1.35rem;
    }

    /* Increased from 1.25rem */
    .lnx-teams-feature-content p {
        font-size: 1.15rem;
    }

    /* Increased from 1.1rem */
    .lnx-teams-features {
        grid-template-columns: 1fr;
    }

    /* Adjust 21px fonts for responsive */
    .lnx-challenge-text,
    .lnx-solution-text,
    .lnx-teams-visual-subtext,
    .lnx-teams-feature-content p,
    .lnx-benefit-list li,
    .lnx-text-desc,
    .lnx-expertise-text,
    .lnx-cta-text,
    .lnx-hero-text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .lnx-benefit-card {
        padding: 35px 25px;
        padding-top: 74px;
    }
}

@media (max-width: 480px) {
    .lnx-brand {
        font-size: 3.2rem;
    }

    /* Increased from 3rem */
    .lnx-brand-subtext {
        font-size: 1.1rem;
    }

    /* Increased from 1rem */
    .lnx-section-title {
        font-size: 2.6rem;
    }

    /* Increased from 2.4rem */
    .lnx-challenges-wrapper {
        padding: 60px 20px 30px;
    }

    .lnx-challenge-item {
        padding: 20px;
        flex-direction: column;
        gap: 10px;
    }

    .lnx-solution-title,
    .lnx-expertise-title {
        font-size: 2.4rem;
    }

    /* Increased from 2.2rem */
    .lnx-expertise-badge {
        font-size: 1.2rem;
    }

    /* Increased from 1.15rem */
    .lnx-tagline {
        font-size: 2rem;
    }

    /* Increased from 1.8rem */
    .lnx-hero {
        padding: 100px 0 80px;
    }

    .lnx-teams-visual-circle {
        width: 280px;
        height: 280px;
    }

    .lnx-teams-visual-inner {
        width: 230px;
        height: 230px;
        padding: 30px;
    }

    .lnx-teams-icon-main {
        font-size: 2.6rem;
    }

    /* Increased from 2.4rem */
    .lnx-teams-visual-text {
        font-size: 1.6rem;
    }

    /* Increased from 1.5rem */
    .lnx-teams-visual-subtext {
        font-size: 1.2rem;
    }

    /* Increased from 1.15rem */
    .lnx-teams-feature {
        min-height: auto;
        padding: 20px;
    }

    /* Adjust 21px fonts for responsive */
    .lnx-challenge-text,
    .lnx-solution-text,
    .lnx-teams-visual-subtext,
    .lnx-teams-feature-content p,
    .lnx-benefit-list li,
    .lnx-text-desc,
    .lnx-expertise-text,
    .lnx-cta-text,
    .lnx-hero-text {
        font-size: 17px;
    }
}