/* 
   Shared Components
   ========================================================================== */

.section-chip {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #7c3aed; /* Violet-600 */
    margin-bottom: 12px;
}

.section-chip--light {
    color: rgba(255, 255, 255, 0.9);
}

/* Shared hero breadcrumb used on software and services pages */
.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 14px;
}

.hero-breadcrumb a {
    color: var(--primary-color);
    font-weight: 600;
    transition: color 0.2s ease;
}

.hero-breadcrumb a:hover {
    color: #7c3aed;
}

.hero-breadcrumb-sep {
    color: rgba(148, 163, 184, 0.7);
    font-size: 1.05rem;
}

.hero-breadcrumb-parent {
    color: var(--text-light);
    font-weight: 500;
}

.hero-breadcrumb-current {
    color: var(--text-dark);
    font-weight: 600;
}

/* Global inline content link style for pages rendered inside <main>. */
main :is(p, li) a:not(.btn) {
    color: #2563eb;
    text-decoration: none;
    transition: color 0.2s ease;
}

/* Keep link affordance visible without underline by using color change and focus ring. */
main :is(p, li) a:not(.btn):hover,
main :is(p, li) a:not(.btn):focus-visible {
    color: #1d4ed8;
    text-decoration: none;
}

main :is(p, li) a:not(.btn):focus-visible {
    outline: 2px solid rgba(37, 99, 235, 0.35);
    outline-offset: 2px;
}

/* Hero Section Styles */
.hero-section {
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
}

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

.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f172a;
}

.rotating-words {
    display: inline-block;
    position: relative;
    height: 1.1em;
    overflow: hidden;
    vertical-align: bottom;
    color: #8b5cf6;
    margin: 0 6px;
}

.rotating-words__list {
    display: inline-block;
    animation: rotate-words 8s infinite;
    will-change: transform;
}

.rotating-words__word {
    display: block;
    height: 1.1em;
    line-height: 1.1em;
}

@keyframes rotate-words {
    0%, 18% { transform: translateY(0); }
    25%, 43% { transform: translateY(-1.1em); }
    50%, 68% { transform: translateY(-2.2em); }
    75%, 93% { transform: translateY(-3.3em); }
    100% { transform: translateY(0); }
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 30px;
}

/* Gradient Animated Button */
.btn-gradient-animated {
    padding: 15px 35px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(270deg, #4338ca, #8b5cf6, #ec4899, #4338ca);
    background-size: 300% 300%;
    animation: gradient-move 4s ease infinite;
    box-shadow: 0 10px 20px -5px rgba(67, 56, 202, 0.4);
    transition: transform 0.3s;
}

.btn-gradient-animated:hover {
    transform: scale(1.05);
}

@keyframes gradient-move {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Ripple Effect Play Button */
.play-button-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn-play-ripple {
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
    transition: transform 0.3s;
}

.play-icon {
    margin-left: 3px; /* Optical adjustment */
}

.btn-play-ripple::before, .btn-play-ripple::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background-color: rgba(139, 92, 246, 0.3);
    z-index: -1;
    animation: ripple 2s infinite cubic-bezier(0, 0, 0.2, 1);
}

.btn-play-ripple::after {
    animation-delay: 1s;
}

@keyframes ripple {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.8;
    }
    100% {
        width: 250%;
        height: 250%;
        opacity: 0;
    }
}

/* Hero Image & Animations */
.hero-image-wrapper {
    position: relative;
    height: 500px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-svg {
    position: absolute;
    pointer-events: none;
    z-index: 1;
}

.hero-svg--dots {
    top: 40px;
    right: 40px;
    width: 180px;
    height: 120px;
    opacity: 0.45;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='120' viewBox='0 0 180 120'%3E%3Cg fill='%238b5cf6' fill-opacity='0.55'%3E%3Ccircle cx='10' cy='10' r='3'/%3E%3Ccircle cx='30' cy='10' r='3'/%3E%3Ccircle cx='50' cy='10' r='3'/%3E%3Ccircle cx='70' cy='10' r='3'/%3E%3Ccircle cx='90' cy='10' r='3'/%3E%3Ccircle cx='110' cy='10' r='3'/%3E%3Ccircle cx='130' cy='10' r='3'/%3E%3Ccircle cx='150' cy='10' r='3'/%3E%3Ccircle cx='170' cy='10' r='3'/%3E%3Ccircle cx='10' cy='30' r='3'/%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3Ccircle cx='50' cy='30' r='3'/%3E%3Ccircle cx='70' cy='30' r='3'/%3E%3Ccircle cx='90' cy='30' r='3'/%3E%3Ccircle cx='110' cy='30' r='3'/%3E%3Ccircle cx='130' cy='30' r='3'/%3E%3Ccircle cx='150' cy='30' r='3'/%3E%3Ccircle cx='170' cy='30' r='3'/%3E%3Ccircle cx='10' cy='50' r='3'/%3E%3Ccircle cx='30' cy='50' r='3'/%3E%3Ccircle cx='50' cy='50' r='3'/%3E%3Ccircle cx='70' cy='50' r='3'/%3E%3Ccircle cx='90' cy='50' r='3'/%3E%3Ccircle cx='110' cy='50' r='3'/%3E%3Ccircle cx='130' cy='50' r='3'/%3E%3Ccircle cx='150' cy='50' r='3'/%3E%3Ccircle cx='170' cy='50' r='3'/%3E%3Ccircle cx='10' cy='70' r='3'/%3E%3Ccircle cx='30' cy='70' r='3'/%3E%3Ccircle cx='50' cy='70' r='3'/%3E%3Ccircle cx='70' cy='70' r='3'/%3E%3Ccircle cx='90' cy='70' r='3'/%3E%3Ccircle cx='110' cy='70' r='3'/%3E%3Ccircle cx='130' cy='70' r='3'/%3E%3Ccircle cx='150' cy='70' r='3'/%3E%3Ccircle cx='170' cy='70' r='3'/%3E%3Ccircle cx='10' cy='90' r='3'/%3E%3Ccircle cx='30' cy='90' r='3'/%3E%3Ccircle cx='50' cy='90' r='3'/%3E%3Ccircle cx='70' cy='90' r='3'/%3E%3Ccircle cx='90' cy='90' r='3'/%3E%3Ccircle cx='110' cy='90' r='3'/%3E%3Ccircle cx='130' cy='90' r='3'/%3E%3Ccircle cx='150' cy='90' r='3'/%3E%3Ccircle cx='170' cy='90' r='3'/%3E%3Ccircle cx='10' cy='110' r='3'/%3E%3Ccircle cx='30' cy='110' r='3'/%3E%3Ccircle cx='50' cy='110' r='3'/%3E%3Ccircle cx='70' cy='110' r='3'/%3E%3Ccircle cx='90' cy='110' r='3'/%3E%3Ccircle cx='110' cy='110' r='3'/%3E%3Ccircle cx='130' cy='110' r='3'/%3E%3Ccircle cx='150' cy='110' r='3'/%3E%3Ccircle cx='170' cy='110' r='3'/%3E%3C/g%3E%3C/svg%3E");
}

.hero-svg--wave {
    bottom: 40px;
    right: 20px;
    width: 240px;
    height: 80px;
    opacity: 0.55;
    background-repeat: no-repeat;
    background-size: contain;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='80' viewBox='0 0 240 80'%3E%3Cpath d='M0 45 C 30 30, 60 60, 90 45 S 150 30, 180 45 S 210 60, 240 45' fill='none' stroke='%238b5cf6' stroke-width='4' stroke-linecap='round' stroke-opacity='0.6'/%3E%3Cpath d='M0 60 C 30 45, 60 75, 90 60 S 150 45, 180 60 S 210 75, 240 60' fill='none' stroke='%234338ca' stroke-width='4' stroke-linecap='round' stroke-opacity='0.35'/%3E%3C/svg%3E");
}

.hero-main-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    z-index: 2;
    position: relative;
}

/* Shared utility class for larger hero images across pages. */
.hero-main-img--lg {
    max-width: 620px;
}

/* Left-Right Animation */
.floating-animation {
    animation: float-horizontal 6s ease-in-out infinite;
    position: relative;
}

@keyframes float-horizontal {
    0% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
    100% { transform: translateX(0); }
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: white;
    padding: 15px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 3;
    animation: float-vertical 4s ease-in-out infinite;
}

.badge-profit {
    top: 40px;
    left: 0;
    flex-direction: column;
    align-items: flex-start;
    animation-delay: 0.5s;
}

.badge-stock {
    bottom: 80px;
    left: -30px;
    animation-delay: 1s;
}

.badge-sales {
    bottom: 20px;
    right: 40px;
    animation-delay: 1.5s;
}

@keyframes float-vertical {
    0% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0); }
}

.positive {
    color: #10b981;
    font-size: 0.8rem;
    font-weight: 700;
}

.badge-label {
    font-size: 0.8rem;
    color: var(--text-light);
    display: block;
}

.badge-value {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--text-dark);
}

/* Background Shapes */
.hero-bg-shape {
    position: absolute;
    border-radius: 50%;
    z-index: 1;
    filter: blur(60px);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 35% 35%, rgba(236, 72, 153, 0.22) 0%, rgba(139, 92, 246, 0.22) 35%, rgba(67, 56, 202, 0.18) 60%, rgba(67, 56, 202, 0) 75%);
    top: -50px;
    left: -50px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: rgba(139, 92, 246, 0.15);
    bottom: -50px;
    right: -50px;
}

/* Responsive */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-image-wrapper {
        order: -1;
    }

    .hero-content {
        order: 1;
    }
    
    .hero-description {
        margin: 0 auto 40px;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .navbar {
        flex-wrap: wrap;
        gap: 14px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-menu {
        display: none;
        width: 100%;
        flex-basis: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
        padding: 14px;
        border-radius: 16px;
        border: 1px solid rgba(148, 163, 184, 0.55);
        background: rgba(248, 250, 252, 0.92);
        backdrop-filter: blur(12px);
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        align-items: stretch;
    }

    .nav-links > li {
        border-bottom: 1px solid rgba(148, 163, 184, 0.2);
    }

    .nav-links > li:last-child {
        border-bottom: none;
    }

    .nav-links > li > a {
        padding: 12px 0;
        width: 100%;
    }

    .header-cta .btn {
        width: 100%;
        margin-top: 16px;
    }

    .nav-item.has-dropdown {
        width: 100%;
        display: block;
        height: auto;
    }

    .nav-item.has-dropdown > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        padding: 12px 0;
    }
    
    .dropdown-menu {
        position: static;
        margin-top: 0;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding-left: 20px;
        background: transparent;
        display: none; 
        min-width: 100%;
        padding-top: 5px;
        padding-bottom: 5px;
        border: 0;
        transition: none;
    }

    .dropdown-menu::before {
        display: none;
    }

    .dropdown-menu.is-expanded {
        display: block;
        animation: slideDown 0.3s ease-out forwards;
    }

    @keyframes slideDown {
        from { opacity: 0; transform: translateY(-10px); }
        to { opacity: 1; transform: translateY(0); }
    }

    .dropdown-menu li a {
        padding: 8px 0;
        font-size: 0.85rem;
        color: var(--text-light);
    }
    
    .dropdown-menu li a:hover {
        padding-left: 0;
        color: var(--primary-color);
        background: transparent;
    }
}

/* Customers Section */
.customers-section {
    padding: 80px 0;
    background-color: white;
    overflow: hidden;
}

.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 50px;
}

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

.text-gradient {
    background: linear-gradient(135deg, #a855f7, #ec4899, #4338ca);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradient-text 5s ease infinite;
}

@keyframes gradient-text {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.scroller {
    max-width: 100%;
    overflow: hidden;
    -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
    mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller__inner {
    padding-block: 1rem;
    display: flex;
    flex-wrap: nowrap;
    gap: 4rem;
    width: max-content;
}

.customer-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.customer-logo:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}

.customer-logo img {
    max-height: 50px;
    max-width: 160px;
    object-fit: contain;
}

/* Solution Section Styles */
.solution-section {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    background-color: var(--white);
}

.solution-bg-circle {
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.05) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.solution-header {
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.solution-description {
    color: var(--text-light);
    margin-top: 20px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.solution-card {
    display: block;
    padding: 30px 20px;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid transparent;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px -15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.card-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.6);
}

.card-icon svg {
    width: 32px;
    height: 32px;
}

.solution-card h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.solution-card p {
    font-size: 0.9rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Card Color Variants */
.card-blue {
    background-color: #e0f2fe; /* Sky 100 */
    color: #0c4a6e;
}
.card-blue .card-icon { color: #0284c7; }

.card-blue-light {
    background-color: #e0f7fa; /* Cyan 100 */
    color: #0e7490;
}
.card-blue-light .card-icon { color: #0891b2; }

.card-pink {
    background-color: #fce7f3; /* Pink 100 */
    color: #831843;
}
.card-pink .card-icon { color: #db2777; }

.card-purple {
    background-color: #f3e8ff; /* Purple 100 */
    color: #581c87;
}


.card-purple .card-icon { color: #9333ea; }

.card-orange {
    background-color: #ffedd5; /* Orange 100 */
    color: #7c2d12;
}
.card-orange .card-icon { color: #ea580c; }

.card-yellow {
    background-color: #fef9c3; /* Yellow 100 */
    color: #713f12;
}
.card-yellow .card-icon { color: #ca8a04; }

.card-cyan {
    background-color: #ccfbf1; /* Teal 100 */
    color: #134e4a;
}
.card-cyan .card-icon { color: #0d9488; }

.card-pink-light {
    background-color: #ffe4e6; /* Rose 100 */
    color: #881337;
}
.card-pink-light .card-icon { color: #e11d48; }

/* Responsive Grid */
@media (max-width: 1024px) {
    .solution-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .solution-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .solution-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .solution-grid {
        grid-template-columns: 1fr;
    }
    
    .solution-bg-circle {
        width: 300px;
        height: 300px;
        right: -20%;
    }
}

.custom-software-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.custom-software-section::before {
    content: '';
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(34, 211, 238, 0.06) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.custom-software-blob {
    display: none;
}

.custom-software-blob--left {
    width: 560px;
    height: 560px;
    top: -180px;
    left: -200px;
    background: rgba(168, 85, 247, 0.16);
}

.custom-software-blob--right {
    width: 680px;
    height: 680px;
    bottom: -220px;
    right: -220px;
    background: rgba(59, 130, 246, 0.12);
}

.custom-software-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.custom-software-kicker {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #7c3aed;
    margin-bottom: 12px;
}

.custom-software-section .section-heading {
    margin-bottom: 0;
}

.custom-software-description {
    color: var(--text-light);
    margin-top: 18px;
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 58ch;
}

.custom-software-points {
    margin-top: 26px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.custom-software-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.custom-software-point-icon {
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.1);
    box-shadow: 0 10px 22px -18px rgba(15, 23, 42, 0.4);
}

.custom-software-point-text {
    color: #334155;
    line-height: 1.65;
    font-weight: 500;
}

.custom-software-cta {
    margin-top: 34px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.custom-software-cta-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-software-cta-badge {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    border-radius: 9999px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0f172a;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(148, 163, 184, 0.35);
    backdrop-filter: blur(8px);
}

.custom-software-cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.custom-software-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.custom-software-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.custom-software-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.16), rgba(236, 72, 153, 0.12));
    box-shadow: 0 12px 26px -18px rgba(124, 58, 237, 0.55);
}

.custom-software-card-title {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.custom-software-card-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

@media (max-width: 992px) {
    .custom-software-grid {
        grid-template-columns: 1fr;
        gap: 42px;
    }

    .custom-software-description {
        max-width: none;
    }
}

@media (max-width: 640px) {
    .custom-software-section {
        padding: 70px 0;
    }

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

.erp-suite-section {
    padding: 90px 0;
    position: relative;
    overflow: hidden;
    background: #ffffff;
    border-top: 1px solid #f1f5f9;
}

.erp-suite-section::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.05) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.erp-suite-blob {
    display: none;
}

.erp-suite-blob--left {
    width: 560px;
    height: 560px;
    top: -210px;
    left: -220px;
    background: rgba(236, 72, 153, 0.12);
}

.erp-suite-blob--right {
    width: 680px;
    height: 680px;
    bottom: -230px;
    right: -240px;
    background: rgba(168, 85, 247, 0.14);
}

.erp-suite-header {
    max-width: 860px;
    margin: 0 auto 48px;
    position: relative;
    z-index: 1;
}

.erp-suite-kicker {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #7c3aed;
    margin-bottom: 12px;
}

.erp-suite-section .section-heading {
    margin-bottom: 0;
}

.erp-suite-description {
    color: var(--text-light);
    margin-top: 16px;
    font-size: 1.05rem;
    line-height: 1.75;
}

.erp-suite-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
    position: relative;
    z-index: 1;
}

.erp-suite-card {
    background: rgba(248, 250, 252, 0.85);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 26px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.erp-suite-card:hover {
    transform: translateY(-4px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

.erp-suite-icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.16), rgba(59, 130, 246, 0.12));
    box-shadow: 0 12px 26px -18px rgba(124, 58, 237, 0.55);
}

.erp-suite-title {
    font-weight: 800;
    color: var(--text-dark);
    font-size: 1.05rem;
    margin-bottom: 10px;
}

.erp-suite-text {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
}

.erp-suite-cta {
    margin-top: 36px;
    position: relative;
    z-index: 1;
}

@media (max-width: 1024px) {
    .erp-suite-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .erp-suite-section {
        padding: 70px 0;
    }

    .erp-suite-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

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

/* POS Provider Section Styles */
.pos-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}

.pos-section::before {
    content: '';
    position: absolute;
    left: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.18) 0%, rgba(34, 211, 238, 0.06) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.pos-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.pos-content {
    position: sticky;
    top: 100px;
    z-index: 2;
}

.pos-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 90%;
}

.pos-timeline-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-left: 20px;
}

/* Vertical line for timeline effect */
.pos-timeline-wrapper::before {
    content: '';
    position: absolute;
    left: 45px; /* Aligned with card number center */
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(to bottom, #a855f7, #ec4899);
    z-index: 0;
    opacity: 0.3;
}

.timeline-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 30px -10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px -15px rgba(0,0,0,0.1);
}

.card-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: transparent;
    background-clip: text;
    -webkit-background-clip: text;
    background-image: linear-gradient(135deg, #a855f7, #ec4899);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 2px solid #fce7f3;
    position: relative;
    z-index: 2;
}

.card-content h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.card-content p {
    color: var(--text-light);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .pos-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pos-content {
        position: relative;
        top: 0;
        text-align: center;
        margin-bottom: 20px;
    }
    
    .pos-description {
        margin-left: auto;
        margin-right: auto;
    }
}

/* Key Features Section Styles */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

.features-section::after {
    content: '';
    position: absolute;
    right: -10%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.2) 0%, rgba(236, 72, 153, 0.05) 70%, transparent 100%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 42px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.features-main-header {
    margin: 0 auto 42px;
    max-width: 900px;
    position: relative;
    z-index: 1;
}

.features-main-chip {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #7c3aed;
    margin-bottom: 12px;
}

.features-main-header .section-heading {
    margin-bottom: 0;
}

.features-content {
    background: var(--bg-light);
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 22px;
    padding: 42px 34px;
}

.features-kicker {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #7c3aed;
    margin-bottom: 12px;
}

.features-content .section-heading {
    margin-bottom: 16px;
}

.features-secondary-heading {
    font-size: 1.7rem;
    line-height: 1.32;
    color: var(--text-dark);
    font-weight: 800;
    margin-bottom: 16px;
}

.features-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.72;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.features-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.98rem;
    line-height: 1.62;
}

.features-check-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(124, 58, 237, 0.12);
    color: #7c3aed;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.feature-card {
    background: #ffffff;
    border: 1px solid rgba(226, 232, 240, 0.9);
    border-radius: 18px;
    padding: 26px 20px;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

.feature-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: #7c3aed;
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.14), rgba(236, 72, 153, 0.08));
    margin-bottom: 14px;
}

.feature-icon {
    width: 20px;
    height: 20px;
    display: grid;
    place-items: center;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
    color: currentColor;
}

.feature-card h3 {
    font-size: 1.03rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.68;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .features-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-main-header {
        margin-bottom: 30px;
    }

    .features-secondary-heading {
        font-size: 1.45rem;
    }

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

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

    .features-content {
        padding: 32px 24px;
    }

    .feature-card {
        padding: 24px 18px;
    }
}

/* CTA Section Styles */
.cta-section {
    background-color: #312e81; /* Deep Indigo Theme */
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    position: relative;
}

.cta-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

.cta-heading {
    color: white;
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 30px;
}

.btn-cta {
    background: linear-gradient(270deg, #d946ef, #a855f7, #ec4899, #d946ef); /* Animated Pink/Purple Gradient */
    background-size: 300% 300%;
    animation: gradient-move 4s ease infinite;
    color: white;
    padding: 16px 40px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    box-shadow: 0 10px 25px rgba(217, 70, 239, 0.4);
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 30px -12px rgba(217, 70, 239, 0.55);
    color: white;
}

.cta-image-container {
    position: relative;
    width: 450px;
    height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* The White Circle Background */
.cta-circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: white;
    border-radius: 50%;
    top: 0;
    left: 0;
    z-index: 1;
}

/* The Image inside */
.cta-img {
    position: relative;
    z-index: 2;
    width: 400px;
    height: 400px;
    object-fit: cover;
    border-radius: 50%;
    border: 8px solid rgba(255, 255, 255, 0.2);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-image-container {
        margin-top: 50px;
        width: 350px;
        height: 350px;
    }

    .cta-img {
        width: 300px;
        height: 300px;
    }
    
    .cta-heading {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .cta-image-container {
        width: 280px;
        height: 280px;
    }

    .cta-img {
        width: 240px;
        height: 240px;
    }
    
    .cta-heading {
        font-size: 1.75rem;
    }
    
    .btn-cta {
        width: 100%;
        text-align: center;
    }
}

/* Testimonials Section Styles */
.testimonials-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #f1f5f9;
}

.testimonials-blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(60px);
    pointer-events: none;
    z-index: 0;
}

.testimonials-blob--left {
    display: none;
}

.testimonials-blob--right {
    display: none;
}

.testimonials-section .container {
    position: relative;
    z-index: 1;
}

.testimonials-header {
    max-width: 760px;
    margin: 0 auto 50px;
}

.testimonials-kicker {
    display: inline-block;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    color: #7c3aed;
    margin-bottom: 12px;
}

.testimonials-description {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-top: 16px;
}

.testimonials-carousel {
    position: relative;
}

.testimonials-window {
    overflow: hidden;
    width: 100%;
}

.testimonials-track {
    display: flex;
    gap: 32px;
    padding: 16px 4px;
    will-change: transform;
}

.testimonials-fade {
    position: absolute;
    top: 0;
    height: 100%;
    width: 64px;
    z-index: 2;
    pointer-events: none;
}

.testimonials-fade--left {
    left: 0;
    background: linear-gradient(90deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonials-fade--right {
    right: 0;
    background: linear-gradient(270deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.testimonial-card {
    flex: 0 0 100%;
    background: #ffffff;
    border: 1px solid #f1f5f9;
    border-radius: 18px;
    padding: 32px;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
    min-height: 360px;
}

.testimonial-card:hover {
    border-color: rgba(168, 85, 247, 0.35);
    box-shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
    transform: translateY(-4px);
}

.testimonial-rating {
    display: flex;
    gap: 6px;
    margin-bottom: 22px;
}

.testimonial-star {
    font-size: 18px;
    line-height: 1;
    color: #e5e7eb;
}

.testimonial-star--active {
    color: #fbbf24;
}

.testimonial-content {
    flex: 1;
}

.testimonial-quote {
    width: 44px;
    height: 44px;
    color: rgba(124, 58, 237, 0.14);
    margin-bottom: 10px;
}

.testimonial-text {
    color: #334155;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.8;
}

.testimonial-user {
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid #f8fafc;
    padding-top: 22px;
    margin-top: 26px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 9999px;
    object-fit: cover;
    box-shadow: 0 0 0 6px #f8fafc;
    transition: box-shadow 0.25s ease;
}

.testimonial-card:hover .testimonial-avatar {
    box-shadow: 0 0 0 6px rgba(168, 85, 247, 0.08);
}

.testimonial-name {
    color: var(--text-dark);
    font-weight: 800;
    font-size: 1rem;
    margin: 0;
}

.testimonial-role {
    margin: 4px 0 0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #7c3aed;
}

.testimonial-company {
    margin: 4px 0 0;
    font-size: 0.78rem;
    color: #94a3b8;
}

.testimonials-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 22px;
    margin-top: 40px;
}

.testimonial-nav {
    width: 46px;
    height: 46px;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    color: #64748b;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.testimonial-nav:hover {
    border-color: rgba(124, 58, 237, 0.75);
    color: #7c3aed;
    background: rgba(124, 58, 237, 0.06);
}

.testimonial-nav:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.testimonials-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 9999px;
    border: 0;
    background: #cbd5e1;
    cursor: pointer;
    transition: width 0.25s ease, background 0.25s ease;
}

.testimonial-dot:hover {
    background: rgba(124, 58, 237, 0.35);
}

.testimonial-dot.is-active {
    width: 34px;
    background: linear-gradient(90deg, #7c3aed 0%, #ec4899 100%);
}

@media (min-width: 768px) {
    .testimonial-card {
        flex-basis: calc(50% - 16px);
    }

    .testimonials-fade {
        width: 96px;
    }
}

@media (min-width: 1024px) {
    .testimonial-card {
        flex-basis: calc(33.333% - 22px);
    }
}

@media (max-width: 576px) {
    .testimonials-controls {
        justify-content: space-between;
    }
}

/* Footer Styles */
.site-footer {
    position: relative;
    background: #ffffff;
    color: var(--text-dark);
    margin-top: -1px;
    overflow: hidden;
}

.footer-surface {
    position: relative;
    background: #34349e;
    color: #ffffff;
    overflow: hidden;
}

.footer-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
    pointer-events: none;
}

.footer-wave-svg {
    display: block;
    width: 100%;
    height: 64px;
}

.footer-wave-dot {
    position: absolute;
    width: 16px;
    height: 16px;
    border-radius: 9999px;
    background: #ff9f7e;
    transform: translate(-50%, -50%);
    display: none;
}

.footer-main {
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-main .footer-container {
    position: relative;
    padding-top: 140px;
    padding-bottom: 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
    font-size: 0.9rem;
}

.footer-col--brand {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-brand-badge {
    width: 40px;
    height: 40px;
    background: #ffffff;
    color: #34349e;
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.15rem;
}

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

.footer-brand-name {
    font-size: 1.25rem;
    font-weight: 800;
}

.footer-brand-tagline {
    font-size: 0.62rem;
    color: rgba(226, 232, 240, 0.9);
    font-weight: 600;
    letter-spacing: 0.06em;
}

.footer-desc {
    color: rgba(226, 232, 240, 0.92);
    line-height: 1.7;
    max-width: 520px;
}

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

.footer-social-link {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    transition: background 0.2s ease, color 0.2s ease;
}

.footer-social-link:hover {
    background: #ffffff;
    color: #34349e;
}

.footer-map {
    width: 100%;
    max-width: 280px;
    height: 132px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.2);
    position: relative;
    display: block;
}

.footer-map-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.82;
    transition: opacity 0.25s ease;
}

.footer-map:hover .footer-map-img {
    opacity: 1;
}

.footer-map-pill {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.92);
    color: #34349e;
    padding: 6px 12px;
    border-radius: 9999px;
    font-size: 0.72rem;
    font-weight: 800;
    box-shadow: 0 12px 20px rgba(15, 23, 42, 0.25);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.footer-heading {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: rgba(203, 213, 225, 0.95);
    display: inline-block;
    transition: transform 0.2s ease, color 0.2s ease;
}

.footer-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.footer-col--split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 28px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.footer-contact-icon {
    color: rgba(203, 213, 225, 0.95);
    margin-top: 2px;
    flex: 0 0 auto;
}

.footer-contact-link,
.footer-contact-text {
    color: rgba(203, 213, 225, 0.95);
}

.footer-contact-link:hover {
    color: #ffffff;
}

.footer-contact-phones {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.footer-scroll-top {
    position: absolute;
    right: 20px;
    bottom: 96px;
    width: 42px;
    height: 42px;
    border-radius: 9999px;
    background: #ffffff;
    color: #34349e;
    border: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 24px rgba(15, 23, 42, 0.35);
    transition: transform 0.2s ease;
}

.footer-scroll-top:hover {
    transform: translateY(-4px);
}

.footer-bottom {
    position: relative;
    z-index: 2;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: #2b2b84;
}

.footer-bottom-inner {
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(226, 232, 240, 0.92);
}

.footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
    justify-content: center;
}

.footer-bottom-strong {
    font-weight: 700;
    color: #ffffff;
}

.footer-bottom-link {
    text-decoration: underline;
    color: rgba(226, 232, 240, 0.92);
}

.footer-bottom-link:hover {
    color: #ffffff;
}

@media (min-width: 768px) {
    .footer-wave-svg {
        height: 128px;
    }

    .footer-wave-dot {
        display: block;
    }

    .footer-main .footer-container {
        padding-top: 190px;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 32px;
        align-items: start;
    }

    .footer-col--split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .footer-bottom-inner {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .footer-wave-svg {
        height: 192px;
    }

    .footer-grid {
        grid-template-columns: 4fr 2fr 2fr 4fr;
        gap: 44px;
    }
}

@media (max-width: 992px) {
    .erp-core-modules-section .fs-stock-feature-item ul,
    .erp-core-modules-section .fs-stock-feature-item li {
        text-align: left;
    }

    .erp-core-modules-section .fs-stock-feature-item ul {
        padding-left: 1.2rem;
    }
}
