/* ============================================
   GENERAL RESET & BASE STYLES
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    background-color: #000000 !important;
    color: #333;
} */

a {
    text-decoration: none;
    color: #333;
}

a:hover {
    color: #333;
}

p {
    color: #212529 !important;
}


/* ============================================
   HERO SECTION
============================================ */
.hero-main-section {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero-bg img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.595));
    z-index: 1;
}

.hero-main-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 0 40px 0;
}

.hero-main-content {
    text-align: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeUp 1s ease forwards;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 1250px;
    margin: 0 auto;
}

.hero-content-left > * {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.6s ease forwards;
}

.hero-content-left > *:nth-child(1) { animation-delay: 0.3s; }
.hero-content-left > *:nth-child(2) { animation-delay: 0.5s; }
.hero-content-left > *:nth-child(3) { animation-delay: 0.7s; }
.hero-content-left > *:nth-child(4) { animation-delay: 0.9s; }
.hero-content-left > *:nth-child(5) { animation-delay: 1.1s; }

.hero-main-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin-bottom: 60px;
}

.hero-text-highlight {
    color: #3E89EC;
    text-shadow: 0 3px 6px rgba(62,137,236,0.5);
}

.hero-subheadline {
    font-size: 1.45rem;
    font-weight: 600;
    color: #EAF2FF;
    max-width: 920px;
    margin: 0 auto 30px;
    line-height: 1.6;
    position: relative;
}

.hero-subheadline::after {
    content: "";
    display: block;
    width: 80px;
    height: 3px;
    background: #3E89EC;
    margin: 16px auto 0;
    border-radius: 2px;
}

.hero-main-description {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #fff !important;
    max-width: 900px;
    margin: 0 auto 18px;
    text-align: center;
}

.hero-dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #3E89EC;
    border-radius: 50%;
    margin-right: 10px;
    position: relative;
    top: -2px;
}

.hero-highlight {
    color: #ffffff;
    font-weight: 800;
    padding: 2px 6px;
    border-radius: 4px;
}

.hero-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.hero-feature-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: transform 0.3s ease;
}

.hero-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon-circle {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.hero-feature-item p {
    color: #fff;
    font-size: 1.2rem;
    line-height: 1.4;
    margin: 0;
}

.hero-actions {
    margin-top: 40px;
    display: flex;
    gap: 15px;
}

.btn-primary {
    background: #3E89EC;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 4px 15px rgba(62, 137, 236, 0.4);
    transition: 0.3s;
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    border: 1px solid #fff;
    transition: 0.3s;
}

.btn-primary:hover { 
    background: #2c6ec7; 
}

.btn-secondary:hover { 
    background: #fff; 
    color: #333; 
}


/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeUp {
    to { 
        opacity: 1; 
        transform: translateY(0); 
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes headerFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes hintPulse {
    0%, 100% {
        opacity: 0.8;
        transform: translateY(0);
    }
    50% {
        opacity: 1;
        transform: translateY(-5px);
    }
}

@keyframes ring {
    0% { transform: rotate(0deg); }
    10% { transform: rotate(15deg); }
    20% { transform: rotate(-15deg); }
    30% { transform: rotate(10deg); }
    40% { transform: rotate(-10deg); }
    50% { transform: rotate(5deg); }
    60% { transform: rotate(-5deg); }
    100% { transform: rotate(0deg); }
}

@keyframes autoSlide {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-425px * 6 - 150px));
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 1s ease, transform 1s ease;
}

.slide-in.visible {
    opacity: 1;
    transform: translateX(0);
}

.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: opacity 1s ease, transform 1s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}


/* ============================================
   AWESOME ERP SECTION
============================================ */
.awesome-erp {
    background: linear-gradient(135deg, #007bff 0%, #3E89EC 100%);
    color: white;
    width: 100%;
    padding: 50px 0;
}

.erp-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 80%;
    margin: auto;
}

.erp-left, 
.erp-right {
    color: white !important;
    text-align: center;
    padding: 20px;
}

.erp-left p, 
.erp-right p {
    color: white !important;
}

.erp-divider {
    width: 2px;
    height: 80px;
    background-color: white;
}


/* ============================================
   WHY US / ORBIT SECTION
============================================ */
.divider-line {
    background-color: #000000;
    padding: 20px 0;
}

.why-us {
    background: #ffffff !important;
    padding: 1rem 2rem !important;
    border-radius: 50px !important;
    margin: 0 auto !important;
    max-width: 1450px !important;
    top: 20px !important;
    left: 0 !important;
    right: 0 !important;
    z-index: 1000 !important;
    transition: transform 0.3s ease-in-out !important;
}

.why-us .top-line {
    font-size: 1rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.why-us h1 {
    margin-bottom: 30px;
    font-size: 3rem;
    font-weight: bold;
}

.orbit-section {
    background-color: #ffffff;
    padding: 80px 5%;
    color: #000000;
    font-family: 'Segoe UI', sans-serif;
    overflow: hidden;
}

.section-title {
    text-align: center;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    margin-bottom: 60px;
    line-height: 1.2;
}

.highlight-text {
    color: #3E89EC !important;
}

.orbit-container {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-text {
    margin-bottom: 45px;
    transition: 0.3s ease;
}

.feature-text h5 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: rgba(0, 0, 0, 0.8);
}

.feature-text p {
    color: rgba(0, 0, 0, 0.8);
    line-height: 1.6;
    font-size: 0.95rem;
}

.left-side {
    text-align: right;
}

.right-side {
    text-align: left;
}

.orbit-center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-graphic {
    width: 100%;
    max-width: 400px;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.glow-effect {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    z-index: 1;
}


/* ============================================
   TECHNOLOGY / STATS SECTION
============================================ */
.technology-section {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 50px auto;
    padding: 20px;
    gap: 30px;
    border: 1px solid #ddd;
    background-color: #000000;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(255, 255, 255, 0.1);
}

.content {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.content h3 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.content h1 {
    font-size: 32px;
    font-weight: bold;
    color: #ffffff;
    margin-top: 50px;
    margin-bottom: 20px;
}

.content p {
    font-size: 16px;
    color: #ffffff !important;
    margin-bottom: 20px;
    line-height: 1.5;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    flex: 1;
    min-width: 300px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #000000;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    color: #9ca3af !important;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.feature-card .icon {
    font-size: 40px;
    color: #333;
    margin-bottom: 10px;
}

.feature-card h4 {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.succeed-text {
    color: #3E89EC !important;
}



/* ============================================
   CALL / CONTACT ELEMENTS
============================================ */
.call {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    padding: 10px 20px;
    color: white !important;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: 0.3s;
    font-size: 27px !important;
}

.call a {
    text-decoration: none !important;
    color: white !important;
}

.ringing-icon {
    font-size: 22px !important;
    color: white;
    animation: ring 1s infinite ease-in-out;
    margin: 0 20px 7px 0 !important;
}


/* ============================================
   BENEFITS CAROUSEL SECTION
============================================ */
.benefits-header {
    text-align: center;
    font-size: clamp(2rem, 5vw, 4.5rem);
    font-weight: 900;
    margin-bottom: 50px;
    letter-spacing: -1px;
    opacity: 0;
    animation: headerFadeIn 0.8s ease-out forwards;
    padding: 0 20px;
}

.benefits-header .header-subtitle {
    color: #666;
    display: block;
    font-weight: 300;
    font-size: 0.5em;
    letter-spacing: 8px;
    margin-bottom: 10px;
    opacity: 0.9;
}

.header-highlight {
    background: linear-gradient(120deg, #3E89EC 0%, #5797eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.carousel-wrapper {
    position: relative;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0) transparent;
    scroll-behavior: smooth;
    padding: 20px 0;
}

.carousel-wrapper:hover .benefits-track {
    animation-play-state: paused;
}

.carousel-wrapper::-webkit-scrollbar {
    height: 8px;
}

.carousel-wrapper::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

.carousel-wrapper::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.carousel-wrapper::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

.benefits-track {
    display: flex;
    gap: 25px;
    padding: 0 40px;
    animation: autoSlide 35s linear infinite;
}

.benefit-card {
    background: #ffffff;
    padding: 35px 40px;
    border-radius: 20px;
    min-width: 400px;
    max-width: 400px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    opacity: 0;
    transform: translateX(-50px);
    animation: cardSlideIn 0.6s ease-out forwards;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.benefit-card:nth-child(1) { animation-delay: 0.1s; }
.benefit-card:nth-child(2) { animation-delay: 0.2s; }
.benefit-card:nth-child(3) { animation-delay: 0.3s; }
.benefit-card:nth-child(4) { animation-delay: 0.4s; }
.benefit-card:nth-child(5) { animation-delay: 0.5s; }
.benefit-card:nth-child(6) { animation-delay: 0.6s; }

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: linear-gradient(180deg, #ffffff 0%, #ffffff 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 60px rgba(62, 137, 236, 0.2);
    border-color: #3E89EC;
}

.benefit-card:hover::before {
    transform: scaleY(1);
}

.benefit-text {
    margin: 0;
    font-size: 1.2rem;
    line-height: 1.7;
    color: #2d3748;
    font-weight: 500;
}

.carousel-hint {
    text-align: center;
    color: #666;
    margin-top: 30px;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: hintPulse 2s infinite;
    padding: 0 20px;
}

.carousel-hint::after {
    content: ' (Hover to pause)';
    font-size: 0.85rem;
    opacity: 0.7;
}


/* ============================================
   RESPONSIVE - ULTRA WIDE SCREENS
============================================ */
@media (min-width: 1600px) {
    .hero-main-title {
        font-size: 4.2rem;
    }

    .hero-subheadline {
        font-size: 1.6rem;
    }

    .hero-main-description {
        font-size: 1.2rem;
    }

    .hero-main-content {
        max-width: 1400px;
    }
}

@media (min-width: 1025px) {
    .container, 
    .container-lg, 
    .container-md, 
    .container-sm, 
    .container-xl {
        max-width: 100% !important;
        padding: 0 10% !important;
    }
}


/* ============================================
   RESPONSIVE - LARGE LAPTOPS
============================================ */
@media (max-width: 1200px) {
    .hero-main-content {
        padding: 0 20px;
    }

    .hero-features-grid {
        gap: 16px;
    }
}


/* ============================================
   RESPONSIVE - TABLETS & MEDIUM SCREENS
============================================ */
@media (max-width: 1024px) {
    .orbit-container {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .orbit-center {
        grid-column: span 2;
        order: -1;
        margin-bottom: 40px;
    }

    .left-side,
    .right-side {
        text-align: center;
    }

    .benefits-header {
        font-size: clamp(1.8rem, 4.5vw, 4rem);
        margin-bottom: 40px;
    }

    .benefits-track {
        padding: 0 30px;
        gap: 20px;
    }

    .benefit-card {
        min-width: 350px;
        max-width: 350px;
        padding: 32px 35px;
    }

    .benefit-text {
        font-size: 1.1rem;
    }

    @keyframes autoSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-375px * 6 - 120px));
        }
    }

    .erp-container {
        padding: 0;
        font-size: small;
        display: flex;
        flex-direction: column;
        text-align: center;
        align-items: center;
        justify-content: center;
    }

    .erp-divider {
        width: 80px !important;
        height: 2px !important;
        background-color: white;
        margin: 10px auto;
    }
}

@media (min-width: 768px) {
    .erp-left, 
    .erp-right {
        width: 45% !important;
    }

    .col-md-6 {
        -ms-flex: 0 0 50%;
        flex: 0 0 50%;
        max-width: 87% !important;
    }
}


/* ============================================
   RESPONSIVE - MOBILE & SMALL TABLETS
============================================ */
@media (max-width: 991px) {
    .hero-main-title { 
        font-size: 2.6rem; 
    }
    
    .hero-subheadline { 
        font-size: 1.15rem; 
    }
}

@media (max-width: 768px) {
    .hero-main-section {
        padding-top: 80px;
    }

    .hero-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .hero-subheadline {
        font-size: 1rem;
    }

    .hero-main-description {
        font-size: 0.95rem;
    }

    .hero-features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ringing-icon {
        font-size: 15px !important;
        color: white;
        animation: ring 1s infinite ease-in-out;
        margin: 0 !important;
    }

    .scroll-top {
        display: none;
    }

    .footer-container {
        padding: 12px 15px;
    }

    .heading {
        font-size: 28px;
    }

    .join-button {
        padding: 10px 24px;
        font-size: 14px;
        margin: auto;
    }

    .heading {
        font-size: 36px;
    }

    .nav-links {
        gap: 10px;
    }

    .nav-links a {
        font-size: 14px;
    }

    .technology-section {
        flex-direction: column;
        align-items: center;
        padding: 15px;
        margin: 30px auto;
        gap: 20px;
    }

    .content {
        text-align: center;
        min-width: 100%;
    }

    .content h1 {
        font-size: 28px;
        margin-top: 30px;
    }

    .content p {
        font-size: 14px;
        padding: 0 10px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
        max-width: 100%;
    }

    .feature-card {
        padding: 15px;
    }

    .feature-card h4 {
        font-size: 16px;
    }

    .orbit-container {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .orbit-center {
        grid-column: span 1;
    }

    .main-graphic {
        max-width: 280px;
    }

    .section-title {
        margin-bottom: 40px;
    }

    .feature-text {
        margin-bottom: 30px;
        padding: 0 10px;
    }

    .benefits-header {
        font-size: clamp(1.5rem, 4vw, 3.5rem);
        margin-bottom: 35px;
    }

    .benefits-header .header-subtitle {
        font-size: 0.55em;
        letter-spacing: 6px;
    }

    .benefits-track {
        padding: 0 20px;
        gap: 18px;
    }

    .benefit-card {
        min-width: 320px;
        max-width: 320px;
        padding: 30px 25px;
    }

    .benefit-text {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .carousel-hint {
        font-size: 0.85rem;
        margin-top: 25px;
    }

    @keyframes autoSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-342px * 6 - 108px));
        }
    }
}

@media (max-width: 576px) {
    .hero-main-content {
        padding: 0 16px;
    }

    .hero-main-title {
        font-size: 1.5rem;
    }

    .hero-subheadline {
        font-size: 0.95rem;
    }

    .hero-main-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .hero-actions a {
        width: 100%;
        text-align: center;
    }

    .hero-feature-item {
        padding: 16px;
    }

    .hero-features-grid {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   RESPONSIVE - SMALL MOBILE
============================================ */
@media (max-width: 480px) {
    .hero-main-section {
        min-height: auto;
        padding: 80px 0 60px;
    }

    .hero-main-title {
        font-size: 1.6rem;
        line-height: 1.3;
        margin-bottom: 30px;
    }

    .hero-subheadline {
        font-size: 0.9rem;
    }

    .hero-subheadline::after {
        width: 60px;
    }

    .hero-feature-item p {
        font-size: 1.05rem;
    }

    .help-btn {
        text-wrap: 10px;
        width: 15%;
        left: 5%;
        bottom: 5%;
        text-align: center;
        padding: 10px 0;
        font-size: 8px;
    }

    .benefits-header {
        font-size: clamp(1.3rem, 6vw, 2.5rem);
        margin-bottom: 30px;
    }

    .benefits-header .header-subtitle {
        font-size: 0.6em;
        letter-spacing: 4px;
    }

    .benefits-track {
        padding: 0 15px;
        gap: 15px;
    }

    .benefit-card {
        min-width: 280px;
        max-width: 280px;
        padding: 25px 20px;
        border-radius: 16px;
    }

    .benefit-card::before {
        width: 4px;
    }

    .benefit-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .carousel-hint {
        font-size: 0.8rem;
        margin-top: 20px;
    }

    .carousel-hint::after {
        content: '';
    }

    @keyframes autoSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-300px * 6 - 90px));
        }
    }
}


/* ============================================
   RESPONSIVE - VERY SMALL MOBILE
============================================ */
@media (max-width: 400px) {
    .hero-main-title {
        font-size: 1.35rem;
    }

    .hero-subheadline {
        font-size: 0.85rem;
    }

    .hero-feature-item p {
        font-size: 0.95rem;
    }
}

@media (max-width: 360px) {
    .benefit-card {
        min-width: 260px;
        max-width: 260px;
        padding: 22px 18px;
    }

    .benefit-text {
        font-size: 0.95rem;
    }

    @keyframes autoSlide {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-280px * 6 - 90px));
        }
    }
}


/* ============================================
   RESPONSIVE - GAIN
============================================ */
                /* ================= BASE ================= */

                .GAIN {
                    display: flex;
                    justify-content: center;
                    padding: 40px 20px;
                }

                .steps-wrap {
                    max-width: 1200px;
                    width: 100%;
                }

                .step-row {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    align-items: center;
                    padding: 32px 60px;
                    position: relative;
                }

                .step-text {
                    font-size: 0.95rem;
                    line-height: 1.6;
                    color: #6b7280;
                    max-width: 500px;
                }

                .step-text h2 {
                    color: #000;
                }

                .step-card-wrap {
                    display: flex;
                    justify-content: flex-end;
                }

                .step-card {
                    width: 460px;
                    height: 220px;
                }

                .step-card img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                    border-radius: 2px;
                }

                /* ================= EVEN ROW DESKTOP ================= */

                .step-row:nth-child(even) .step-card-wrap {
                    order: 1;
                    justify-content: flex-start;
                }

                .step-row:nth-child(even) .step-text {
                    order: 2;
                    text-align: right;
                }

                /* ================= RESPONSIVE ================= */

                @media (max-width: 900px) {
                    .step-row {
                        padding: 26px 24px;
                    }
                }

                /* 🔥 FINAL MOBILE FIX (IMPORTANT) */
                @media (max-width: 720px) {

                    .step-row {
                        grid-template-columns: 1fr !important;
                        row-gap: 18px;
                    }

                    /* FORCE SAME ORDER FOR ALL ROWS */
                    .step-row .step-text {
                        grid-row: 1 !important;
                        order: unset !important;
                        text-align: left !important;
                        margin-left: 0 !important;
                    }

                    .step-row .step-card-wrap {
                        grid-row: 2 !important;
                        order: unset !important;
                        justify-content: center !important;
                    }

                    .step-card {
                        width: 240px;
                        height: 120px;
                    }
                }

                @media (max-width: 480px) {
                    .step-card {
                        width: 200px;
                        height: 100px;
                    }

                    .step-text {
                        font-size: 0.9rem;
                    }
                }





                /* ============================================
   RESPONSIVE - mahi-quote-section
============================================ */

                .mahi-quote-section {
                    padding: 80px 5%;
                    /* Adjusted padding for better fit */
                    background: #fff;
                    font-family: 'Inter', sans-serif;
                    text-align: center;
                    position: relative;
                    overflow: hidden;
                }

                .quote-container {
                    max-width: 900px;
                    margin: 0 auto;
                    position: relative;
                }

                /* Huge Double Quotes - Made responsive with Viewport Width units */
                .quote-container::before {
                    content: '“';
                    position: absolute;
                    top: -60px;
                    left: -110px;
                    font-size: clamp(120px, 20vw, 250px);
                    /* Scales down on mobile */
                    color: #f0f0f0;
                    font-family: 'Georgia', serif;
                    z-index: 0;
                    line-height: 1;
                }

                .mahi-content {
                    position: relative;
                    z-index: 1;
                }

                /* Big Letters - Scale down for tablets and phones */
                .big-letter-text {
                    font-size: clamp(1.8rem, 8vw, 2.8rem);
                    font-weight: 850;
                    line-height: 1.1;
                    color: #111;
                    letter-spacing: -1px;
                    margin-bottom: 20px;
                    text-transform: uppercase;
                }

                .highlight-blue {
                    color: #007bff;
                    position: relative;
                }

                .integration-list {
                    display: flex;
                    justify-content: center;
                    gap: 10px;
                    flex-wrap: wrap;
                    margin-top: 30px;
                }

                .integration-tag {
                    font-size: clamp(0.7rem, 2vw, 0.9rem);
                    font-weight: 700;
                    text-transform: uppercase;
                    letter-spacing: 1px;
                    padding: 8px 16px;
                    border: 2px solid #111;
                    border-radius: 50px;
                    transition: all 0.3s;
                }

                .integration-tag:hover {
                    background: #111;
                    color: #fff;
                }

                /* Small closing quote - Responsive scale */
                .quote-container::after {
                    content: '”';
                    position: absolute;
                    bottom: -100px;
                    right: -90px;
                    font-size: clamp(120px, 20vw, 250px);
                    color: #f0f0f0;
                    font-family: 'Georgia', serif;
                    z-index: 0;
                }

                /* Mobile specific adjustments */
                @media (max-width: 768px) {
                    .mahi-quote-section {
                        padding: 60px 20px;
                    }

                    .big-letter-text {
                        letter-spacing: -0.5px;
                    }

                    /* Move quotes further out so text is readable on tiny screens */
                    .quote-container::before {
                        top: -40px;
                        left: -10px;
                        opacity: 0.5;
                    }

                    .quote-container::after {
                        bottom: -60px;
                        right: -10px;
                        opacity: 0.5;
                    }
                }


     /* ============================================
   RESPONSIVE - Hero wrapper
============================================ */

        /* Hero wrapper */
        /* .hero {
            min-height: 100vh;
            align-items: center;
            background-color: #000000;

            padding: 60px 16px;
            border-top-left-radius: 20%;
            border-top-right-radius: 20%;
        } */

        .hero-inner {
            max-width: 1200px;
            margin: 0 auto;
        }

        /* Header content */
        .hero-header {
            text-align: center;
            margin-bottom: 40px;
            color: #f9fafb;
        }

        .hero-tagline {
            font-size: 16px;
            font-style: italic;
            color: #9ca3af !important;
            margin-bottom: 16px;
        }

        .hero-title {
            font-size: 40px;
            font-weight: 800;
            letter-spacing: 0.02em;
            line-height: 1.3;
            color: #fff;
            margin-bottom: 18px;
        }

        .accent-text {
            color: #3b82f6;
        }

        .hero-subtitle {
            max-width: 650px;
            margin: 0 auto;
            font-size: 15px;
            color: #d1d5db !important;
        }

        /* CTA button */
        .primary-button {
            display: inline-block;
            margin-top: 26px;
            padding: 14px 36px;
            background: linear-gradient(135deg, #2563eb, #3b82f6);
            color: #f9fafb;
            text-decoration: none;
            border-radius: 999px;
            font-size: 16px;
            font-weight: 600;
            box-shadow: 0 8px 30px rgba(37, 99, 235, 0.4);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .primary-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 40px rgba(37, 99, 235, 0.55);
        }

        /* Features layout - now centered without left column */
        .hero-layout {
            display: flex;
            justify-content: center;
        }

        /* Features list - 2x2 grid */
        .features {
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 18px;
            max-width: 1100px;
        }

        .feature-bar {
            border-radius: 999px;
            padding: 14px 26px 14px 26px;
            background: linear-gradient(120deg, rgba(15, 23, 42, 0.9), rgba(30, 64, 175, 0.9));
            box-shadow: 0 10px 35px rgba(15, 23, 42, 0.75);
            color: #e5e7eb;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
            backdrop-filter: blur(10px);
        }

        .feature-bar:hover {
            transform: translateY(-3px);
            box-shadow: 0 18px 45px rgba(15, 23, 42, 0.9);
            background: linear-gradient(120deg, rgba(30, 64, 175, 1), rgba(37, 99, 235, 1));
        }

        .bar-content {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .bar-number {
            font-size: 26px;
            font-weight: 700;
            color: #bfdbfe;
            min-width: 42px;
        }

        .bar-text {
            flex: 1;
        }

        .bar-title {
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 4px;
            color: #f9fafb;
        }

        .bar-description {
            font-size: 13px;
            color: #d1d5db;
        }

        /* Individual bar gradients (for subtle variation) */
        .bar-1 {
            background: linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(37, 99, 235, 0.95));
        }

        .bar-2 {
            background: linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(59, 130, 246, 0.95));
        }

        .bar-3 {
            background: linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(37, 99, 235, 0.9));
        }

        .bar-4 {
            background: linear-gradient(120deg, rgba(15, 23, 42, 0.95), rgba(30, 64, 175, 0.95));
        }

        /* Responsive */
        @media (max-width: 992px) {
            .hero {
                padding-top: 40px;
            }

            .hero-title {
                font-size: 32px;
            }

            .features {
                grid-template-columns: 1fr 1fr;
                gap: 18px;
            }
        }

        @media (max-width: 640px) {
            .hero {
                padding: 40px 12px 50px;
            }

            .hero-header {
                margin-bottom: 28px;
            }

            .hero-tagline {
                font-size: 14px;
            }

            .hero-title {
                font-size: 24px;
            }

            .hero-subtitle {
                font-size: 13px;
            }

            .features {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .feature-bar {
                padding: 12px 18px;
            }

            .bar-number {
                font-size: 22px;
                min-width: 34px;
            }

            .bar-title {
                font-size: 14px;
            }

            .bar-description {
                font-size: 12px;
            }

            .primary-button {
                padding: 12px 26px;
                font-size: 14px;
            }
        }


             /* ============================================
   RESPONSIVE - mahi-quote-section1
============================================ */
        .mahi-quote-section1 {
            padding: 80px 5%;
            /* Adjusted padding for better fit */
            background: #ffffff;
            font-family: 'Inter', sans-serif;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .quote-container1 {
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
        }

        /* Huge Double Quotes - Made responsive with Viewport Width units */
        .quote-container1::before {
            content: '“';
            position: absolute;
            top: -60px;
            left: -110px;
            font-size: clamp(120px, 20vw, 250px);
            /* Scales down on mobile */
            color: #f0f0f0;
            font-family: 'Georgia', serif;
            z-index: 0;
            line-height: 1;
        }

        .mahi-content {
            position: relative;
            z-index: 1;
        }

        /* Big Letters - Scale down for tablets and phones */
        .big-letter-text {
            font-size: clamp(1.8rem, 8vw, 2.8rem);
            font-weight: 850;
            line-height: 1.1;
            color: #111;
            letter-spacing: -1px;
            margin-bottom: 20px;
            text-transform: uppercase;
        }

        .highlight-blue {
            color: #007bff;
            position: relative;
        }

        .integration-list {
            display: flex;
            justify-content: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-top: 30px;
        }

        .integration-tag {
            font-size: clamp(0.7rem, 2vw, 0.9rem);
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 8px 16px;
            border: 2px solid #111;
            border-radius: 50px;
            transition: all 0.3s;
        }

        .integration-tag:hover {
            background: #111;
            color: #fff;
        }

        /* Small closing quote - Responsive scale */
        .quote-container1::after {
            content: '”';
            position: absolute;
            bottom: -100px;
            right: -90px;
            font-size: clamp(120px, 20vw, 250px);
            color: #f0f0f0;
            font-family: 'Georgia', serif;
            z-index: 0;
        }

        /* Mobile specific adjustments */
        @media (max-width: 768px) {
            .mahi-quote-section {
                padding: 60px 20px;
            }

            .big-letter-text {
                letter-spacing: -0.5px;
            }

            /* Move quotes further out so text is readable on tiny screens */
            .quote-container::before {
                top: -40px;
                left: -10px;
                opacity: 0.5;
            }

            .quote-container::after {
                bottom: -60px;
                right: -10px;
                opacity: 0.5;
            }
        }


             /* ============================================
   RESPONSIVE - wdemo-benefits
============================================ */


            :root {
                --primary: #ffffff;
                --primary-dark: #000000;
                --accent: #3b82f6;
                --bg: #ffffff;
                --bg-soft: #f8f9fa;
                --bg-light: #ffffff;
                --text: #000000;
                --muted: #4b5563;
                --border: #e5e7eb;
            }

            *,
            *::before,
            *::after {
                box-sizing: border-box;
            }

            /* Demo Benefits Section */
            .wdemo-benefits {
                margin: 2rem 0;
                padding: 1.5rem;
                background: #f8f9fa;
                border-radius: 0.75rem;
                border: 2px solid #e5e7eb;
            }

            .wbenefit-item {
                display: flex;
                align-items: center;
                gap: 0.75rem;
                margin-bottom: 1rem;
                font-size: 0.9rem;
                color: #4b5563;
            }

            .wbenefit-item:last-child {
                margin-bottom: 0;
            }

            .wbenefit-icon {
                font-size: 1.5rem;
                flex-shrink: 0;
            }

            /* Demo Note Section */
            .wdemo-note {
                margin-top: 1.5rem;
                padding: 1.5rem;
                background: linear-gradient(135deg, rgba(59, 130, 246, 0.05), rgba(59, 130, 246, 0.1));
                border-radius: 0.75rem;
                border-left: 4px solid #3b82f6;
            }

            .wdemo-note p {
                margin: 0 0 1rem 0;
                font-size: 0.95rem;
                color: #000000;
            }

            .wdemo-note strong {
                color: #3b82f6;
                font-weight: 700;
            }

            .wdemo-note ul {
                list-style: none;
                margin: 0;
                padding: 0;
            }

            .wdemo-note li {
                margin-bottom: 0.5rem;
                padding-left: 1.5rem;
                position: relative;
                font-size: 0.85rem;
                color: #4b5563;
                line-height: 1.6;
            }

            .wdemo-note li::before {
                content: "✓";
                position: absolute;
                left: 0;
                color: #3b82f6;
                font-weight: bold;
            }

            .wdemo-note li:last-child {
                margin-bottom: 0;
            }

            /* Demo CTA spacing adjustment */
            .wdemo-cta {
                margin-bottom: 40px;
            }

            html {
                scroll-behavior: smooth;
            }

            /* 
            a {
                color: inherit;
                text-decoration: none;
            } */

            .wsite {
                min-height: 100vh;
                display: flex;
                justify-content: center;
                align-items: flex-start;
                padding: 1.25rem;
                background: #ffffff;
            }

            .wpage {
                width: 100%;
                padding: 1.5rem 1.5rem 2.5rem;
                background-color: #000000;
                border-radius: 20px;
            }

            h1,
            h2,
            h3 {
                margin: 0;
                font-weight: 700;
                color: #000000;
            }

            p {
                margin: 0;
            }

            .whero {
                display: grid;
                grid-template-columns: 1fr 1.1fr;
                gap: 3rem;
                padding: 3rem 2.5rem;
                border-radius: 1.5rem;
                background: #ffffff;
                color: #000000;
                position: relative;
                border: 3px solid #3b82f6;
                box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
            }

            .whero-left {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
            }

            .whero-badge {
                display: inline-flex;
                align-items: center;
                gap: .6rem;
                padding: .6rem 1.3rem;
                border-radius: 999px;
                border: 2px solid #3b82f6;
                background: #ffffff;
                font-size: .9rem;
                color: #000000;
                width: fit-content;
                box-shadow: 0 0 20px rgba(59, 130, 246, 0.2);
                font-weight: 500;
            }

            .wbadge-icon {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                width: 22px;
                height: 22px;
                border-radius: 50%;
                background: #3b82f6;
                color: #ffffff;
                font-size: 0.7rem;
                box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
            }

            .whero h1 {
                font-size: 3.5rem;
                line-height: 1.1;
                margin: 0;
                color: #000000;
                font-weight: 900;
                letter-spacing: -0.02em;
            }

            .wblue-text {
                color: #3b82f6;
                display: block;
            }

            .whero-sub {
                color: #4b5563;
                font-size: 1.05rem;
                line-height: 1.7;
                margin: 0;
                max-width: 600px;
            }

            .whero-pills {
                display: flex;
                flex-wrap: wrap;
                gap: .7rem;
            }

            .wpill {
                padding: .5rem 1.1rem;
                border-radius: 999px;
                background: #f8f9fa;
                border: 2px solid #e5e7eb;
                font-size: .85rem;
                color: #000000;
                font-weight: 500;
            }

            .whero-cta {
                display: flex;
                gap: 1rem;
                align-items: center;
                margin-top: 0.5rem;
            }

            .whero-btn-primary {
                padding: 1rem 2.5rem;
                background: #3b82f6;
                color: #ffffff;
                border: none;
                border-radius: .5rem;
                font-size: 1.05rem;
                font-weight: 700;
                cursor: pointer;
                box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
                transition: all .3s ease;
            }

            .whero-btn-primary:hover {
                transform: translateY(-2px);
                box-shadow: 0 12px 32px rgba(59, 130, 246, 0.4);
                background: #2563eb;
            }

            .whero-btn-ghost {
                padding: .95rem 2rem;
                border: 2px solid #000000;
                background: transparent;
                color: #000000;
                border-radius: .5rem;
                font-size: 1rem;
                font-weight: 600;
                cursor: pointer;
                transition: all .3s ease;
                display: inline-flex;
                align-items: center;
                gap: 0.5rem;
            }

            .whero-btn-ghost:hover {
                background: #f8f9fa;
            }

            .wtrust-text {
                font-size: .9rem;
                color: #6b7280;
                margin: 0.5rem 0 0;
            }

            .whero-right {
                background: #ffffff;
                border-radius: 1.5rem;
                border: 2px solid #e5e7eb;
                padding: 2rem 2.5rem;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            }

            .wdispatch-card {
                display: flex;
                flex-direction: column;
                gap: 1.5rem;
            }

            .wdispatch-header {
                display: flex;
                justify-content: space-between;
                align-items: flex-start;
                flex-wrap: wrap;
                gap: 1rem;
                padding-bottom: 1.5rem;
                border-bottom: 1px solid #e5e7eb;
            }

            .wdispatch-header h3 {
                font-size: 1.3rem;
                font-weight: 700;
                margin: 0;
                color: #000000;
            }

            .wdispatch-info {
                display: flex;
                flex-direction: column;
                align-items: flex-end;
                gap: 0.3rem;
                font-size: 0.9rem;
                color: #4b5563;
                text-align: right;
            }

            .wdispatch-metrics {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 1.25rem;
            }

            .wdispatch-metric-card {
                /* background:#f8f9fa; */
                border: 2px solid #e5e7eb;
                border-radius: 1rem;
                padding: 1.5rem;
            }

            .wmetric-title {
                font-size: 0.85rem;
                color: #4b5563;
                margin-bottom: 0.75rem;
                font-weight: 500;
            }

            .wmetric-big-value {
                font-size: 2rem;
                font-weight: 900;
                color: #000000;
                margin-bottom: 0.5rem;
                line-height: 1;
            }

            .wmetric-subtitle {
                font-size: 0.8rem;
                color: #3b82f6;
                font-weight: 500;
            }

            .wdispatch-timeline {
                display: flex;
                flex-direction: column;
                gap: 0.85rem;
                padding: 1.5rem 0;
                border-top: 1px dashed #e5e7eb;
            }

            .wtimeline-item {
                display: flex;
                align-items: flex-start;
                gap: 0.75rem;
                font-size: 0.9rem;
                color: #4b5563;
            }

            .wtimeline-bullet {
                color: #3b82f6;
                font-size: 0.5rem;
                margin-top: 0.4rem;
                flex-shrink: 0;
            }

            .wweighbridge-btn {
                padding: 1.1rem;
                background: #ffffff;
                color: #3b82f6;
                border: 2px solid #3b82f6;
                border-radius: 0.75rem;
                font-size: 0.95rem;
                font-weight: 700;
                letter-spacing: 0.08em;
                cursor: pointer;
                box-shadow: 0 0 20px rgba(59, 130, 246, 0.15);
                transition: all .3s ease;
                text-transform: uppercase;
            }

            .wweighbridge-btn:hover {
                background: #3b82f6;
                color: #ffffff;
                box-shadow: 0 0 30px rgba(59, 130, 246, 0.3);
            }

            .wmetric {
                padding: .75rem .85rem;
                border-radius: .8rem;
                background: #f8f9fa;
                border: 2px solid #e5e7eb;
            }

            .wtimeline {
                margin-top: .7rem;
                padding-top: .7rem;
                border-top: 1px dashed #e5e7eb;
                font-size: .75rem;
                color: #4b5563;
            }

            section {
                /* margin-top:2.4rem; */
            }

            .wsection-heading {
                font-size: 2rem;
                margin-bottom: .75rem;
                font-weight: 800;
                color: #000000;
                text-align: center;
                letter-spacing: -.03em;
            }

            .wsection-sub {
                font-size: 1.05rem;
                color: #4b5563;
                max-width: 45rem;
                margin: 0 auto 2rem;
                text-align: center;
                line-height: 1.7;
                font-weight: 400;
            }

            .wfeature-grid {
                display: grid;
                grid-template-columns: minmax(0, 1fr);
                gap: 3rem;
                margin-top: 2rem;
            }

            .wfeature-card {
                background: #ffffff;
                border-radius: 1.5rem;
                padding: 3rem;
                /* border:1px solid #e5e7eb; */
                overflow: hidden;
                transition: all .4s ease;
                /* box-shadow:0 4px 20px rgba(0, 0, 0, 0.04); */
                display: flex;
                gap: 3rem;
                align-items: center;
                justify-content: space-between;
            }

            .wfeature-card:nth-child(even) {
                flex-direction: row-reverse;
            }

            .wfeature-card:hover {
                transform: translateY(-6px);
                box-shadow: 0 12px 40px rgba(59, 130, 246, 0.15);
                border-color: #3b82f6;
            }

            .wfeature-image {
                width: 380px;
                min-width: 580px;
                height: 280px;
                object-fit: cover;
                border-radius: 1rem;
                transition: transform .4s ease;
                box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
                border: 3px solid #f8f9fa;
            }

            .wfeature-card:hover .wfeature-image {
                transform: scale(1.03) rotate(1deg);
                box-shadow: 0 12px 32px rgba(59, 130, 246, 0.2);
            }

            .wfeature-content {
                flex: 1;
                display: flex;
                flex-direction: column;
                justify-content: center;
            }

            .wfeature-tag {
                display: inline-block;
                font-size: .7rem;
                color: #ffffff;
                background: linear-gradient(135deg, #3b82f6, #2563eb);
                text-transform: uppercase;
                letter-spacing: .12em;
                margin-bottom: .8rem;
                font-weight: 700;
                padding: .4rem .9rem;
                border-radius: 999px;
                box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
                width: fit-content;
            }

            .wfeature-card h3 {
                font-size: 1.65rem;
                margin-bottom: .9rem;
                font-weight: 800;
                line-height: 1.25;
                color: #000000;
                letter-spacing: -.02em;
            }

            .wfeature-card p {
                font-size: 1.05rem;
                color: #4b5563;
                margin-bottom: 1.2rem;
                line-height: 1.8;
                font-weight: 400;
            }

            .wfeature-card ul {
                list-style: none;
                margin: 0;
                padding: 0;
                font-size: .95rem;
                color: #4b5563;
                line-height: 1.8;
            }

            .wfeature-card li {
                margin-bottom: .7rem;
                font-weight: 400;
                padding-left: 1.5rem;
                position: relative;
            }

            .wfeature-card li::before {
                content: "✓";
                color: #3b82f6;
                position: absolute;
                left: 0;
                font-weight: bold;
                font-size: 1rem;
                background: #dbeafe;
                width: 20px;
                height: 20px;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .75rem;
            }

            .wfeatures-section {
                padding: 5rem 2rem;
                /* background:#f8fafc; */
            }

            .winventory-section {
                background: #ffffff;
            }

            .wfeatures-header {
                text-align: center;
                max-width: 900px;
                margin: 0 auto 4rem;
            }

            .wmodern-features-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2.5rem;
                max-width: 1400px;
                margin: 0 auto;
            }

            .wmodern-feature-card {
                background: #ffffff;
                border-radius: 1.5rem;
                overflow: hidden;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
                transition: all .4s ease;
                border: 2px solid #e5e7eb;
            }

            .wmodern-feature-card:hover {
                transform: translateY(-10px);
                box-shadow: 0 20px 50px rgba(59, 130, 246, 0.15);
                border-color: #3b82f6;
            }

            .wfeature-image-wrapper {
                position: relative;
                width: 100%;
                height: 250px;
                overflow: hidden;
            }

            .wfeature-image-wrapper img {
                width: 100%;
                height: 100%;
                object-fit: cover;
                transition: transform .4s ease;
            }

            .wmodern-feature-card:hover .wfeature-image-wrapper img {
                transform: scale(1.1);
            }

            .wfeature-badge {
                position: absolute;
                top: 1.5rem;
                left: 1.5rem;
                padding: .6rem 1.5rem;
                border-radius: 999px;
                font-size: .85rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: .05em;
                box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
            }

            .weighbridge-badge {
                background: linear-gradient(135deg, #3b82f6, #2563eb);
                color: #ffffff;
            }

            .wbarrier-badge {
                background: linear-gradient(135deg, #10b981, #059669);
                color: #ffffff;
            }

            .wtheft-badge {
                background: linear-gradient(135deg, #ef4444, #dc2626);
                color: #ffffff;
            }

            .wcrusher-badge {
                background: linear-gradient(135deg, #f59e0b, #d97706);
                color: #ffffff;
            }

            .wrmc-badge {
                background: linear-gradient(135deg, #8b5cf6, #7c3aed);
                color: #ffffff;
            }

            .wbrick-badge {
                background: linear-gradient(135deg, #ec4899, #db2777);
                color: #ffffff;
            }

            .wfeature-body {
                padding: 2rem 2.5rem 2.5rem;
            }

            .wfeature-body h3 {
                font-size: 1.5rem;
                font-weight: 800;
                color: #000000;
                margin: 0 0 1rem;
                line-height: 1.3;
            }

            .wfeature-body p {
                color: #4b5563;
                font-size: .95rem;
                line-height: 1.7;
                margin: 0 0 1.5rem;
            }

            .wfeature-points {
                display: flex;
                flex-direction: column;
                gap: .85rem;
            }

            .wfeature-point {
                display: flex;
                align-items: flex-start;
                gap: .75rem;
            }

            .wpoint-icon {
                flex-shrink: 0;
                width: 24px;
                height: 24px;
                background: #3b82f6;
                color: #ffffff;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: .85rem;
                font-weight: bold;
            }

            .wfeature-point span:last-child {
                color: #4b5563;
                font-size: .9rem;
                line-height: 1.6;
                flex: 1;
            }

            .wfeature-card li strong {
                color: #000000;
                font-weight: 700;
            }

            #why-generic-fails {
                background: #ffffff;
                padding: 5rem 2rem;
                /* margin:3rem 0; */
                /* border-radius:20px; */
                position: relative;
                border-top-left-radius: 40px;
                border-top-right-radius: 40px;
                overflow: hidden;
                /* border:2px solid #e5e7eb; */
            }

            .why-fails-wrapper {
                max-width: 1400px;
                margin: 0 auto;
                position: relative;
                z-index: 1;
            }

            .why-fails-header {
                text-align: center;
                margin-bottom: 4rem;
            }

            .wsection-badge {
                display: inline-block;
                padding: 0.5rem 1.5rem;
                background:#1d4ed8;
                color:#ffffff;
                border:1px solid #1d4ed8;
                border-radius: 999px;
                font-size: 0.85rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.1em;
                margin-bottom: 1.5rem;
            }

            .why-fails-header .wsection-heading {
                color: #000000;
                font-size: 3rem;
                margin-bottom: 1rem;
            }

            .why-fails-header .wsection-sub {
                color: #4b5563;
                font-size: 1.1rem;
                max-width: 800px;
                margin: 0 auto;
            }

            .why-fails-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
                gap: 2rem;
            }

            .why-fail-card {
                background: #ffffff;
                border-radius: 1.5rem;
                padding: 2.5rem;
                border: 2px solid #e5e7eb;
                position: relative;
                transition: all 0.4s ease;
                overflow: hidden;
                box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            }

            .why-fail-card::before {
                content: '';
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                height: 4px;
                background: linear-gradient(90deg, #3b82f6, #60a5fa);
                opacity: 0;
                transition: opacity 0.4s ease;
            }

            .why-fail-card:hover {
                transform: translateY(-10px);
                border-color: #3b82f6;
                box-shadow: 0 20px 60px rgba(59, 130, 246, 0.2);
            }

            .why-fail-card:hover::before {
                opacity: 1;
            }

            .wcard-number {
                position: absolute;
                top: 1.5rem;
                right: 1.5rem;
                font-size: 4rem;
                font-weight: 900;
                color: rgba(59, 130, 246, 0.1);
                line-height: 1;
            }

            .wcard-icon-wrapper {
                width: 80px;
                height: 80px;
                background: linear-gradient(135deg, #3b82f6, #60a5fa);
                border-radius: 1.5rem;
                display: flex;
                align-items: center;
                justify-content: center;
                margin-bottom: 2rem;
                box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3);
            }

            .wcard-icon {
                width: 40px;
                height: 40px;
                color: #ffffff;
            }

            .wcard-content h3 {
                color: #000000;
                font-size: 1.5rem;
                font-weight: 800;
                margin-bottom: 1rem;
            }

            .wcard-content p {
                color: #4b5563;
                font-size: 0.95rem;
                line-height: 1.7;
                margin-bottom: 1.5rem;
            }

            .wrisk-list {
                display: flex;
                flex-direction: column;
                gap: 0.75rem;
            }

            .wrisk-item {
                display: flex;
                align-items: flex-start;
                gap: 0.75rem;
                color: #4b5563;
                font-size: 0.9rem;
                line-height: 1.5;
            }

            .wrisk-icon {
                flex-shrink: 0;
                width: 24px;
                height: 24px;
                background: #dbeafe;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 0.85rem;
                color: #3b82f6;
            }

            .wcard-label {
                position: absolute;
                bottom: 1.5rem;
                right: 1.5rem;
                padding: 0.4rem 1rem;
                border-radius: 999px;
                font-size: 0.75rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
            }

            .wrisk-label {
                background: #dbeafe;
                color: #3b82f6;
                border: 1px solid #3b82f6;
            }

            .wsecurity-label {
                background: #fef3c7;
                color: #f59e0b;
                border: 1px solid #f59e0b;
            }

            .wloss-label {
                background: #dbeafe;
                color: #3b82f6;
                border: 1px solid #3b82f6;
            }

            #comparison {
                background: #ffffff;
                padding: 4rem 2rem;
                /* margin:3rem 0;
    border-radius:20px; */
            }

            .wcomparison-wrapper {
                max-width: 1200px;
                margin: 0 auto;
            }

            .wcomparison-intro {
                margin-bottom: 3rem;
                display: flex;
                justify-content: center;
            }

            .wintro-content {
                background: #ffffff;
                padding: 2.5rem 3.5rem;
                border-radius: 1.5rem;
                text-align: center;
                /* max-width:700px; */
                /* box-shadow:0 10px 40px rgba(0, 0, 0, 0.1); */
                border: 2px solid #e5e7eb;
            }

            .wcomparison-intro h2 {
                color: #000000;
                font-size: 2.5rem;
                font-weight: 900;
                margin: 0 0 0.75rem 0;
                letter-spacing: 0.02em;
            }

            .wcomparison-subtitle {
                color: #000000;
                font-size: 1.1rem;
                margin: 0 0 1rem 0;
                font-weight: 500;
            }

            .wblue-highlight {
                color:#1d4ed8;
                font-weight: 700;
            }

            .wcomparison-description {
                color:#374151;
                font-size: 0.9rem;
                line-height: 1.6;
                margin: 0;
            }

            .wpricing-table {
                /* background:#ffffff; */
                /* border-radius:1.5rem; */
                padding: 0;
                /* box-shadow:0 20px 60px rgba(0, 0, 0, 0.1); */
                overflow: hidden;
                /* border:2px solid #e5e7eb; */
            }

            .wtable-header-row {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                gap: 0;
            }

            .wheader-cell {

                padding: 2rem 1.5rem;
                text-align: center;
                /* border-right:1px solid #e5e7eb; */

            }

            .wfeature-header-cell {
                /* background:#f8f9fa; */
                border-right: 1px solid #e5e7eb;
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .wfeature-header-cell h3 {
                color: #000000;
                font-size: 0.95rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin: 0;
            }

            .wmanual-header-cell {
                /* background:#f8f9fa; */
                border-right: 1px solid #e5e7eb;
            }

            .wsazs-header-cell {
                /* background:#f8f9fa; */
            }

            .wmanual-title {
                color:#b45309;
                font-size: 0.95rem;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin: 0 0 0.75rem 0;
            }

            .wsazs-title {
                color:#1d4ed8;
                font-size: 0.95rem;
                font-weight: 800;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                margin: 0 0 0.75rem 0;
            }

            .wheader-badge {
                font-size: 1.8rem;
                font-weight: 900;
                margin: 0.5rem 0;
            }

            .wlimited-badge {
                color: #000000;
            }

            .wcomplete-badge {
                color: #000000;
            }

            .wheader-desc {
                color: #4b5563;
                font-size: 0.8rem;
                line-height: 1.5;
                margin: 0 0.75rem 0 0;
            }

            .wtable-body {
                background: #ffffff;
            }

            .wcomparison-row {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                border-top: 1px solid #e5e7eb;
            }

            .wfeature-name {
                padding: 1.25rem 1.5rem;
                color: #000000;
                font-size: 0.9rem;
                font-weight: 600;
                display: flex;
                align-items: center;
                gap: 0.75rem;
                border-right: 1px solid #e5e7eb;
            }

            .wfeature-dot {
                width: 8px;
                height: 8px;
                border-radius: 50%;
                background: #3b82f6;
                flex-shrink: 0;
            }

            .wcomparison-cell {
                padding: 1.25rem 1.5rem;
                display: flex;
                align-items: center;
                gap: 0.75rem;
                font-size: 0.875rem;
                color: #000000;
            }

            .wbad-cell {
                border-right: 1px solid #e5e7eb;
                background: #fef3c7;
            }

            .wgood-cell {
                background: #dcfce7;
            }

            .wcross-icon {
                color: #ef4444;
                font-size: 1.25rem;
                font-weight: bold;
                flex-shrink: 0;
            }

            .wcheck-icon {
                color: #10b981;
                font-size: 1.25rem;
                font-weight: bold;
                flex-shrink: 0;
            }

            .wtable-footer-row {
                display: grid;
                grid-template-columns: 1fr 1fr 1fr;
                /* background:#f8f9fa; */
                padding: 2rem 1.5rem;
                gap: 0;
            }

            .wfooter-spacer {
                /* border-right:1px solid #e5e7eb; */
            }

            .wfooter-btn-cell {
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 0 1rem;
                border-right: 1px solid #e5e7eb;
            }

            .wtable-btn {
                padding: 0.75rem 2rem;
                border: none;
                border-radius: 999px;
                font-size: 0.85rem;
                font-weight: 700;
                text-transform: uppercase;
                cursor: pointer;
                transition: all 0.3s ease;
                letter-spacing: 0.05em;
            }

            .wview-btn {
                background:#b45309;
                color:#fff;
                box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
            }

            .wview-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(245, 158, 11, 0.4);
            }

            .wget-started-btn {
                background:#1d4ed8;
                color:#fff;
                box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
            }

            .wget-started-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
            }

            #checklist {
                padding: 4rem 2rem;
                background: #ffffff;
                border-bottom-left-radius: 40px;
                border-bottom-right-radius: 40px;
            }

            .wchecklist-intro {
                text-align: center;
                margin-bottom: 3rem;
                max-width: 900px;
                margin-left: auto;
                margin-right: auto;
            }

            .wchecklist-container {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 2rem;
                max-width: 1400px;
                margin: 0 auto;
            }

            .wchecklist-left {
                display: flex;
            }

            .wchecklist-card {
                background: #ffffff;
                border-radius: 1.5rem;
                overflow: hidden;
                box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
                width: 100%;
                border: 2px solid #e5e7eb;
            }

            .wchecklist-image {
                position: relative;
                width: 100%;
                height: 250px;
                overflow: hidden;
            }

            .wchecklist-image img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

            .wchecklist-title-overlay {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
                background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(59, 130, 246, 0.5));
                display: flex;
                align-items: center;
                justify-content: center;
            }

            .wchecklist-title-overlay h3 {
                color: #ffffff;
                font-size: 2rem;
                font-weight: 800;
                margin: 0;
                text-align: center;
                padding: 0 2rem;
            }

            .wchecklist-items {
                padding: 2rem;
                display: flex;
                flex-direction: column;
                gap: 1rem;
            }

            .wchecklist-item {
                display: flex;
                align-items: flex-start;
                gap: 1rem;
                font-size: 0.95rem;
                color: #4b5563;
                line-height: 1.6;
            }

            .wcheck-icon-blue {
                color: #3b82f6;
                font-size: 1.25rem;
                font-weight: bold;
                flex-shrink: 0;
            }

            .wchecklist-right {
                display: flex;
            }

            .wdemo-form-card {
                background: #ffffff;
                border: 2px solid #3b82f6;
                border-radius: 1.5rem;
                padding: 2.5rem;
                color: #000000;
                box-shadow: 0 10px 40px rgba(59, 130, 246, 0.15);
                width: 100%;
            }

            .wdemo-form-card h3 {
                font-size: 2rem;
                font-weight: 800;
                margin: 0 0 1rem 0;
                color: #000000;
            }

            .wdemo-form-card>p {
                color: #4b5563;
                font-size: 0.95rem;
                line-height: 1.6;
                margin: 0 0 2rem 0;
            }

            .wdemo-form {
                display: flex;
                flex-direction: column;
                gap: 1rem;
                margin-bottom: 1.5rem;
            }

            .wform-input {
                padding: 1rem 1.25rem;
                border-radius: 0.75rem;
                border: 2px solid #e5e7eb;
                background: #ffffff;
                color: #000000;
                font-size: 0.95rem;
                transition: all .3s ease;
            }

            .wform-input::placeholder {
                color: #9ca3af;
            }

            .wform-input:focus {
                outline: none;
                border-color: #3b82f6;
                box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
            }

            .wform-submit-btn {
                padding: 1.25rem;
                background: linear-gradient(135deg, #3b82f6, #2563eb);
                color: #ffffff;
                border: none;
                border-radius: 0.75rem;
                font-size: 1rem;
                font-weight: 700;
                text-transform: uppercase;
                letter-spacing: 0.05em;
                cursor: pointer;
                box-shadow: 0 8px 24px rgba(59, 130, 246, 0.3);
                transition: all .3s ease;
            }

            .wform-submit-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
                color: #ffffff;
            }

            .wform-seo-text {
                font-size: 0.75rem;
                color: #6b7280;
                line-height: 1.5;
                margin: 0;
            }

            .wcta-side {
                padding: 1.5rem;
            }

            .wcheck-card ul {
                list-style: none;
                margin: 0;
                padding: 0;
            }

            .wcheck-card li {
                margin-bottom: .6rem;
                display: flex;
                align-items: flex-start;
                gap: .5rem;
                font-size: .95rem;
                color: #4b5563;
                line-height: 1.6;
            }

            .wcheck-card li span {
                color: #3b82f6;
                margin-top: .05rem;
                font-weight: bold;
                font-size: 1.1rem;
                flex-shrink: 0;
            }



            @media (max-width:1024px) and (min-width:768px) {
                .wpage {
                    padding: 1.5rem;
                }

                .whero h1 {
                    font-size: 2.2rem;
                }

                .whero-pills {
                    gap: 0.5rem;
                }

                .wfeature-card {
                    padding: 2rem;
                }

                .wfeature-image {
                    width: 320px;
                    height: 240px;
                }

                .wfeature-content h3 {
                    font-size: 1.4rem;
                }

                .wmodern-features-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 2rem;
                }

                .wfeature-image-wrapper {
                    height: 220px;
                }

                .wfeature-badge {
                    padding: .5rem 1.2rem;
                    font-size: .8rem;
                }

                .wfeature-body {
                    padding: 1.75rem 2rem 2rem;
                }

                .wfeature-body h3 {
                    font-size: 1.3rem;
                }

                .wsection-heading {
                    font-size: 2rem;
                }

                #why-generic-fails {
                    padding: 4rem 2rem;
                }

                .why-fails-header .wsection-heading {
                    font-size: 2.5rem;
                }

                .why-fails-grid {
                    grid-template-columns: repeat(2, 1fr);
                    gap: 1.5rem;
                }

                .why-fail-card:last-child {
                    grid-column: 1 / -1;
                    max-width: 600px;
                    margin: 0 auto;
                }

                .wintro-content {
                    padding: 2.5rem 3rem;
                }

                .wcomparison-intro h2 {
                    font-size: 2.5rem;
                }

                .wpricing-table {
                    padding: 2.5rem 2rem;
                }
            }

            @media (max-width:767px) {
                .wpage {
                    padding: 1rem;
                }

                .whero {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                    padding: 2rem 1.5rem;
                }

                .whero h1 {
                    font-size: 2rem;
                }

                .wblue-text {
                    margin-top: 0.25rem;
                }

                .whero-pills {
                    gap: .5rem;
                }

                .wpill {
                    font-size: .75rem;
                    padding: .35rem .85rem;
                }

                .whero-cta {
                    flex-direction: column;
                    gap: 1rem;
                }

                .whero-btn-primary,
                .whero-btn-ghost {
                    width: 100%;
                    text-align: center;
                    justify-content: center;
                }

                .wdispatch-metrics {
                    grid-template-columns: 1fr;
                }

                .wmetric-big-value {
                    font-size: 1.5rem;
                }

                .wchecklist-container {
                    grid-template-columns: 1fr;
                    gap: 2rem;
                }

                .wchecklist-image {
                    height: 200px;
                }

                .wchecklist-title-overlay h3 {
                    font-size: 1.5rem;
                }

                .wchecklist-items {
                    padding: 1.5rem;
                }

                .wchecklist-item {
                    font-size: 0.9rem;
                }

                .wdemo-form-card {
                    padding: 2rem 1.5rem;
                }

                .wdemo-form-card h3 {
                    font-size: 1.5rem;
                }

                .wdemo-form-card>p {
                    font-size: 0.9rem;
                }

                .wmodern-features-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                .wfeature-image-wrapper {
                    height: 200px;
                }

                .wfeature-badge {
                    top: 1rem;
                    left: 1rem;
                    padding: .4rem 1rem;
                    font-size: .75rem;
                }

                .wfeature-body {
                    padding: 1.5rem;
                }

                .wfeature-body h3 {
                    font-size: 1.2rem;
                }

                .wfeature-body p {
                    font-size: .85rem;
                }

                .wfeature-point {
                    gap: .6rem;
                }

                .wpoint-icon {
                    width: 20px;
                    height: 20px;
                    font-size: .75rem;
                }

                .wfeature-point span:last-child {
                    font-size: .85rem;
                }

                .wfeature-card,
                .wfeature-card:nth-child(even) {
                    flex-direction: column;
                    padding: 1.5rem;
                    text-align: center;
                }

                .wfeature-image {
                    width: 100%;
                    min-width: 100%;
                    height: 200px;
                }

                .wfeature-content {
                    text-align: center;
                }

                .wfeature-tag {
                    margin: 0 auto 0.8rem;
                }

                .wsection-heading {
                    font-size: 1.5rem;
                    line-height: 1.3;
                }

                .wsection-sub {
                    font-size: .9rem;
                    line-height: 1.6;
                }

                #why-generic-fails {
                    padding: 3rem 1rem;
                    margin: 2rem 0;
                }

                .wsection-badge {
                    font-size: 0.75rem;
                    padding: 0.4rem 1.2rem;
                }

                .why-fails-header {
                    margin-bottom: 3rem;
                }

                .why-fails-header .wsection-heading {
                    font-size: 1.8rem;
                    line-height: 1.3;
                }

                .why-fails-header .wsection-sub {
                    font-size: 0.9rem;
                    line-height: 1.6;
                }

                .why-fails-grid {
                    grid-template-columns: 1fr;
                    gap: 1.5rem;
                }

                .why-fail-card {
                    padding: 2rem 1.5rem;
                }

                .wcard-number {
                    font-size: 2.5rem;
                    top: 1rem;
                    right: 1rem;
                }

                .wcard-icon-wrapper {
                    width: 60px;
                    height: 60px;
                    margin-bottom: 1.5rem;
                }

                .wcard-icon {
                    width: 30px;
                    height: 30px;
                }

                .wcard-content h3 {
                    font-size: 1.25rem;
                }

                .wcard-content p {
                    font-size: 0.9rem;
                    line-height: 1.6;
                }

                .wrisk-item {
                    font-size: 0.85rem;
                }

                #comparison {
                    padding: 2rem 1rem;
                }

                .wintro-content {
                    padding: 2rem 1.5rem;
                    max-width: 100%;
                }

                .wcomparison-intro h2 {
                    font-size: 1.8rem;
                }

                .wcomparison-subtitle {
                    font-size: 0.95rem;
                }

                .wcomparison-description {
                    font-size: 0.85rem;
                }

                .wpricing-table {
                    border-radius: 1rem;
                }

                .wtable-header-row {
                    grid-template-columns: 1fr;
                    gap: 0;
                }

                .wheader-cell {
                    padding: 1.5rem 1rem;
                    border-right: none !important;
                    border-bottom: 1px solid #e5e7eb;
                }

                .wfeature-header-cell {
                    display: none;
                }

                .wmanual-title,
                .wsazs-title {
                    font-size: 0.85rem;
                }

                .wheader-badge {
                    font-size: 1.5rem;
                }

                .wheader-desc {
                    font-size: 0.75rem;
                }

                .wcomparison-row {
                    grid-template-columns: 1fr;
                }

                .wfeature-name {
                    border-right: none;
                    border-bottom: 1px solid #e5e7eb;
                    padding: 1rem;
                    font-size: 0.85rem;
                    background: #f8f9fa;
                }

                .wcomparison-cell {
                    padding: 1rem;
                    border-right: none;
                    font-size: 0.8rem;
                }

                .wbad-cell {
                    border-left: 3px solid #f59e0b;
                    border-bottom: 1px solid #e5e7eb;
                }

                .wgood-cell {
                    border-left: 3px solid #10b981;
                    border-bottom: 1px solid #e5e7eb;
                }

                .wtable-footer-row {
                    grid-template-columns: 1fr;
                    gap: 1rem;
                    padding: 1.5rem 1rem;
                }

                .wfooter-spacer {
                    display: none;
                }

                .wfooter-btn-cell {
                    padding: 0;
                }

                .wtable-btn {
                    width: 100%;
                    padding: 1rem 2rem;
                    font-size: 0.8rem;
                }
            }

            @media (max-width:480px) {
                .wform-submit-btn {
                    font-size: 0.7rem !important;
                }

                .whero h1 {
                    font-size: 1.5rem;
                }

                .whero-pills {
                    justify-content: center;
                }

                .wsection-heading {
                    font-size: 1.3rem;
                }

                .wsection-sub {
                    font-size: 0.85rem;
                }

                .why-fails-header .wsection-heading {
                    font-size: 1.5rem;
                }

                .why-fail-card {
                    padding: 1.5rem 1rem;
                }

                .wcard-number {
                    font-size: 2rem;
                }

                .wcard-icon-wrapper {
                    width: 50px;
                    height: 50px;
                }

                .wcard-icon {
                    width: 25px;
                    height: 25px;
                }

                .wcard-content h3 {
                    font-size: 1.1rem;
                }

                .wcard-content p {
                    font-size: 0.85rem;
                }

                .wcomparison-intro h2 {
                    font-size: 1.5rem;
                }

                .wintro-content {
                    padding: 1.5rem 1rem;
                }

                .wpricing-table {
                    padding: 1rem 0.75rem;
                }
            }

            @media (min-width:768px) {
                .whero {
                    flex-direction: row;
                    align-items: center;
                    gap: 2rem;
                }

                .whero>div:first-child,
                .whero>.whero-right {
                    flex: 1;
                }

                .wchecklist {
                    flex-direction: row;
                }

                .wcheck-card {
                    flex: 2;
                }

                .wcta-side {
                    flex: 1.2;
                }
            }

            @media (min-width:1024px) {
                .wpage {
                    padding-inline: 2rem;
                }

                .whero {
                    padding-inline: 2rem;
                    padding-top: 2.75rem;
                }
            }
