@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary-blue: #315eb4;
    --dark-blue: #062c66;
    --orange-red: #f58616;
    --bright-orange: #f58616;
    --sky-blue: #4bb2c9;
    --text-color: #212529;
    --primary-color: #062c66;
}
* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: "Poppins", sans-serif;
    overflow-x: hidden;
}

/* Default (Desktop) */
h1 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 3.5rem;
}
h2 {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
    font-size: 50px;
}
h3,
h4,
h5,
h6,
a {
    font-family: "Oswald", sans-serif;
    text-transform: uppercase;
}
p {
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    font-size: 1rem;
}

/* Tablet (768px and below) */
@media (max-width: 992px) {
    h1 {
        font-size: 2.8rem;
    }
    h2 {
        font-size: 36px;
    }
    p {
        font-size: 0.95rem;
    }
}

/* Mobile (576px and below) */
@media (max-width: 576px) {
    h1 {
        font-size: 2.2rem;
    }
    h2 {
        font-size: 28px;
    }
    p {
        font-size: 0.9rem;
    }
}

.webButton {
    background-color: var(--orange-red);
    border-color: var(--orange-red);
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.navbar {
    transition: background-color var(--transition-speed-fast) ease;
}

.navbar-light-mode {
    background-color: var(--dark-blue);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.navbar-dark-mode .navbar-brand,
.navbar-dark-mode .nav-link {
    color: white !important;
}

.navbar-light-mode .navbar-brand,
.navbar-light-mode .nav-link {
    color: white;
}

.hero-section {
    background: linear-gradient(
            135deg,
            rgba(6, 44, 102, 0.85) 0%,
            rgba(49, 94, 180, 0.85) 100%
        ),
        url("../img/erp/banner/banner.webp");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}
.hero-content {
    position: relative;
    z-index: 2;
}
.hero-title {
    font-weight: 700;
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.hero-subtitle {
    font-weight: 400;
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}
.btn-demo {
    background-color: var(--dark-blue);
    border-color: white;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border-radius: 0 !important;
}
.btn-demo:hover {
    background-color: #e07a15;
    border-color: #e07a15;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.btn-quote {
    background-color: transparent;
    border-color: white;
    color: white;
    font-weight: 500;
    padding: 0.75rem 1.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
.btn-quote:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
}
.hero-shape-1 {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: rgba(75, 178, 201, 0.1);
    top: -250px;
    right: -250px;
}
.hero-shape-2 {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    bottom: -150px;
    left: -150px;
}
.hero-image-container {
    position: relative;
    z-index: 2;
}
.hero-image {
    width: 100%;
    max-width: 600px;
    border-radius: 8px;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
        0 10px 10px -5px rgba(0, 0, 0, 0.04);
    animation: float 6s ease-in-out infinite;
    border: 8px solid rgba(255, 255, 255, 0.1);
}
@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}
.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: radial-gradient(
        rgba(255, 255, 255, 0.1) 1px,
        transparent 1px
    );
    background-size: 15px 15px;
    opacity: 0.5;
    z-index: 1;
} /* New Features Section Styles */

.features-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}
.section-title {
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}
.section-title:after {
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: var(--orange-red);
    margin: 15px auto 0;
    border-radius: 2px;
}
.feature-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    height: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}
.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
}
.feature-card:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary-blue);
    transition: all 0.4s ease;
}
.feature-card:hover:before {
    height: 100%;
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(
        135deg,
        var(--primary-blue) 0%,
        var(--sky-blue) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 24px;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 10px 20px rgba(49, 94, 180, 0.2);
}
.feature-title {
    font-weight: 600;
    font-size: 1.25rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
}
.feature-desc {
    color: #64748b;
    line-height: 1.6;
}
.features-shape {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(49, 94, 180, 0.05);
    z-index: 0;
}
.features-shape-1 {
    top: -150px;
    right: -150px;
}
.features-shape-2 {
    bottom: -150px;
    left: -150px;
}

@media (max-width: 768px) {
    .features-section {
        padding: 60px 0;
    }
    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    .feature-card {
        margin-bottom: 20px;
    }
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
        margin-right: 0;
    }
}
@media (max-width: 992px) {
    .hero-section {
        padding: 80px 0;
        text-align: center;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-image {
        margin-top: 50px;
        max-width: 100%;
    }
    .hero-buttons {
        justify-content: center;
    }
}

/* ERP Modules Section - Creative Design */
.erp-modules {
    padding: 100px 0;
    background: linear-gradient(to bottom, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}
.section-header {
    text-align: center;
    margin-bottom: 80px;
}
.section-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-blue);
    line-height: 1.2;
    margin-bottom: 40px;
}
.title-line {
    display: block;
}
.accent-text {
    background: linear-gradient(90deg, var(--primary-blue), var(--sky-blue));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.section-subtitle {
    font-size: 1.2rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}
.modules-container {
    position: relative;
    min-height: 800px;
    margin: 0 auto;
    max-width: 1200px;
    margin-top: 12rem;
}
.connection-graphic {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.core-circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 20px 40px rgba(6, 44, 102, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.core-text {
    font-weight: 600;
    color: var(--primary-blue);
    font-size: 1.2rem;
}
.pulse-effect {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: rgba(49, 94, 180, 0.1);
    animation: pulse 3s infinite;
    z-index: -1;
}
@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.connection-line {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border: 2px dashed rgba(49, 94, 180, 0.2);
    border-radius: 50%;
}
.module-card {
    position: absolute;
    width: 280px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 15px 30px rgba(6, 44, 102, 0.1);
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 3;
    overflow: hidden;
}
.module-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary-blue), var(--sky-blue));
}
.module-content {
    position: relative;
    z-index: 2;
}
.module-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    background: rgba(49, 94, 180, 0.05);
}
.module-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-blue);
}
.module-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin-bottom: 15px;
}
.module-card p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}
.module-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.module-features span {
    background: rgba(49, 94, 180, 0.08);
    color: var(--primary-blue);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}
/* Position modules in a circular layout */
.finance {
    top: -14%;
    left: 50%;
    transform: translateX(-50%);
}
.inventory {
    top: 2%;
    right: 1%;
}
.hr {
    bottom: 2%;
    right: 1%;
}
.sales {
    bottom: -15%;
    left: 50%;
    transform: translateX(-50%);
}
.manufacturing {
    bottom: 2%;
    left: 1%;
}
.projects {
    top: 2%;
    left: 1%;
}
/* Hover effects */
.module-card:hover .module-shape {
    height: 100%;
    opacity: 0.03;
    transition: all 0.4s ease;
}
.module-card:hover .module-icon {
    background: var(--primary-blue);
}
.module-card:hover .module-icon svg {
    fill: white;
}

.dot-industry-section {
    padding: 100px 0;
    background-color: #f8fafc;
    position: relative;
    overflow: hidden;
}
.section-header {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
    z-index: 2;
}
.dot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px 30px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
.dot-item {
    display: flex;
    gap: 20px;
    position: relative;
}
.dot-line {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 8px;
}
.dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: white;
    border: 4px solid var(--primary-blue);
    box-shadow: 0 4px 15px rgba(49, 94, 180, 0.3);
    position: relative;
    flex-shrink: 0;
    z-index: 2;
}
.pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-blue);
    animation: pulse 2s infinite;
    opacity: 0;
}
.connector {
    flex-grow: 1;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-blue), transparent);
    margin: 10px 0;
    opacity: 0.3;
}
.dot-content {
    flex-grow: 1;
    position: relative;
    padding-top: 5px;
}
.industry-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    width: calc(100% + 20px);
    height: calc(100% + 20px);
    background: radial-gradient(
        circle at center,
        rgba(49, 94, 180, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    border-radius: 8px;
}
.dot-content h3 {
    font-size: 1.4rem;
    color: var(--dark-blue);
    margin-bottom: 0;
    font-weight: 600;
    position: relative;
    display: inline-block;
    transition: transform 0.3s ease;
}
.dot-item:hover .dot {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(49, 94, 180, 0.4);
}
.dot-item:hover h3 {
    transform: translateX(5px);
    color: var(--primary-blue);
}
.dot-item:hover .industry-glow {
    opacity: 1;
}

@keyframes pulse {
    0% {
        transform: scale(0.8);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}

.testimonial-section {
    padding: 100px 0;
    background-color: #fcfdfe;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 60px;
    font-weight: 700;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.testimonial-card {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}
.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    margin-bottom: 30px;
    position: relative;
}
.testimonial-content p::before {
    content: " ";
    font-size: 4rem;
    color: rgba(49, 94, 180, 0.1);
    position: absolute;
    top: -20px;
    left: -20px;
    line-height: 1;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 20px;
}
.author-logo {
    width: 70px;
    height: 60px;
    object-fit: fill;
    border-radius: 8px;
    background: rgba(49, 94, 180, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-weight: 700;
    flex-shrink: 0;
}
.author-info h4 {
    font-size: 1.1rem;
    color: var(--dark-blue);
    margin-bottom: 5px;
}
.author-info p {
    font-size: 0.9rem;
    color: #64748b;
    margin: 0;
}
.testimonial-card:hover {
    transform: translateY(-5px);
}

.industry-minimal-section {
    padding: 80px 0;
    background-color: #f8fafc;
}
.section-header {
    text-align: center;
    margin-bottom: 50px;
}
.section-header h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    font-weight: 700;
}
.section-header h2 span {
    color: var(--primary-blue);
}
.industry-dots {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin: 0 auto;
}
.industry-item {
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}
.industry-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--primary-blue);
    position: relative;
}
.industry-dot::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    border: 1px solid var(--primary-blue);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.industry-name {
    font-size: 1.1rem;
    color: var(--dark-blue);
    font-weight: 500;
}
.industry-item:hover {
    transform: translateX(5px);
}
.industry-minimal-section .owl-stage-outer {
    width: 100%;
}
.industry-item:hover .industry-dot::after {
    opacity: 0.3;
}
.erp-comparison {
    padding: 80px 0;
    background-color: #f8fafc;
}
.section-title {
    text-align: center;
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 50px;
    font-weight: 700;
}
.section-title span {
    color: var(--primary-blue);
}
.comparison-table {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
}
.table-row {
    display: flex;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.table-row.header {
    background: var(--primary-blue);
    color: white;
    font-weight: 600;
}
.feature-col,
.our-col,
.competitor-col {
    padding: 20px;
    display: flex;
    align-items: center;
}
.feature-col {
    flex: 1.5;
    font-weight: 500;
}
.our-col {
    flex: 1;
    background: rgba(49, 94, 180, 0.03);
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.competitor-col {
    flex: 1;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}
.pill {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.integration-section {
    padding: 100px 0;
    background: radial-gradient(
        circle at 70% 30%,
        rgba(75, 178, 201, 0.1) 0%,
        rgba(255, 255, 255, 1) 70%
    );
    position: relative;
}

.cta-block {
    background: white;
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px -10px rgba(6, 44, 102, 0.1);
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid rgba(49, 94, 180, 0.1);
}
.cta-block h3 {
    color: var(--dark-blue);
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.3;
    position: relative;
    z-index: 2;
}
.cta-block p {
    color: #5a6a85;
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}
.webButton {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--dark-blue);
    color: white;
    padding: 18px 36px;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(245, 134, 22, 0.3);
    border-radius: 0 !important;
}
.webButton:hover {
    background: var(--bright-orange);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 44, 102, 0.3);
}
.webButton svg {
    transition: transform 0.3s ease;
}
.webButton:hover svg {
    transform: translateX(5px);
}

/* Decorative elements */
.cta-graphic {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    overflow: hidden;
    z-index: 1;
}
.shape {
    position: absolute;
}
.shape.triangle {
    width: 120px;
    height: 120px;
    background: var(--sky-blue);
    clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
    opacity: 0.15;
    top: -30px;
    right: 10%;
}
.shape.wave {
    width: 200px;
    height: 200px;
    background: var(--primary-blue);
    border-radius: 40%;
    opacity: 0.08;
    bottom: -80px;
    left: -50px;
    transform: rotate(45deg);
}
.shape.dots {
    width: 100px;
    height: 60px;
    background: radial-gradient(
        circle,
        var(--orange-red) 0%,
        var(--orange-red) 30%,
        transparent 30%
    );
    background-size: 20px 20px;
    opacity: 0.1;
    bottom: 20%;
    right: -20px;
}
@media (max-width: 768px) {
    .integration-section {
        padding: 60px 0;
    }
    .cta-block {
        padding: 40px 25px;
    }
    .cta-block h3 {
        font-size: 1.8rem;
    }
}

.score-bar {
    height: 6px;
    width: 100%;
    border-radius: 3px;
    background: rgba(0, 0, 0, 0.05);
    position: relative;
}
.score-bar::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    border-radius: 3px;
} /* Positive ratings */
.excellent,
.faster,
.dedicated,
.intuitive,
.flexible {
    color: #059669;
}
.excellent .score-bar::after,
.faster .score-bar::after,
.dedicated .score-bar::after,
.intuitive .score-bar::after,
.flexible .score-bar::after {
    background: #059669;
    width: 100%;
} /* Neutral ratings */
.high {
    color: #d97706;
}
.high .score-bar::after {
    background: #d97706;
    width: 70%;
}
.moderate {
    color: #d97706;
}
.moderate .score-bar::after {
    background: #d97706;
    width: 50%;
} /* Negative ratings */
.slower,
.limited,
.complex {
    color: #dc2626;
}
.slower .score-bar::after,
.limited .score-bar::after,
.complex .score-bar::after {
    background: #dc2626;
    width: 30%;
}
.flexible-plans-section {
    padding: 80px 0;
    background-color: #f8fafc;
    position: relative;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-blue);
}
.section-header h2 span {
    color: var(--primary-blue);
    position: relative;
}
.header-divider {
    width: 80px;
    height: 4px;
    background: var(--orange-red);
    margin: 15px auto 0;
    border-radius: 2px;
}
.plans-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}
.plan-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
    z-index: 1;
}
.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
.plan-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: rgba(49, 94, 180, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.plan-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--primary-blue);
}
.plan-card h3 {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 600;
}
.plan-card p {
    color: #64748b;
    line-height: 1.6;
    margin: 0;
}
.plan-highlight {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-blue);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.6s ease;
}
.plan-card:hover .plan-highlight {
    transform: scaleX(1);
}

.erp-comparison-section {
    padding: 0;
    position: relative;
}
.comparison-container {
    display: flex;
    min-height: 600px;
}
.image-column {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 0 0 0 0;
}
.image-column::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(6, 44, 102, 0.3), transparent);
}
.content-column {
    flex: 1;
    background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    padding: 60px;
}
.comparison-content {
    max-width: 600px;
    margin: 0 auto;
    width: 100%;
}
.comparison-content h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 40px;
    font-weight: 700;
}
.comparison-content h2 span {
    color: var(--primary-blue);
}
.comparison-table {
    width: 100%;
}
.table-row {
    display: flex;
    padding: 18px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.table-row.header {
    font-weight: 600;
    background: var(--primary-blue);
    padding: 15px 0;
}
.feature-col,
.our-col,
.competitor-col {
    padding: 0 15px;
}
.feature-col {
    flex: 1.5;
    font-weight: 500;
}
.our-col,
.competitor-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}
.rating {
    font-weight: 500;
    font-size: 0.95rem;
}
.excellent {
    color: #059669;
}
.high {
    color: #d97706;
}
.moderate {
    color: #d97706;
}
.low {
    color: #dc2626;
}
.score-dots {
    display: flex;
    gap: 5px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #e2e8f0;
}
.dot.filled {
    background: var(--primary-blue);
}
.our-col .dot.filled {
    background: #059669;
}
.competitor-col .dot.filled {
    background: #d97706;
}

.contact-form-section {
    padding: 80px 0;
    background: #f8fafc;
}
.form-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(6, 44, 102, 0.1);
}
.form-content {
    flex: 1;
    padding: 60px;
}
.form-header {
    margin-bottom: 40px;
}
.form-header h2 {
    font-size: 2.2rem;
    color: var(--dark-blue);
    margin-bottom: 10px;
    font-weight: 700;
}
.form-header h2 span {
    color: var(--primary-blue);
}
.form-header p {
    color: #64748b;
}
.demo-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}
.form-group {
    position: relative;
}
.form-group input {
    width: 100%;
    padding: 15px 0 10px 0;
    border: none;
    font-size: 1rem;
    background: transparent;
}
.form-group input:focus {
    outline: none;
}
.underline {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e2e8f0;
}
.underline::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.4s ease;
}
.form-group input:focus ~ .underline::after {
    width: 100%;
}
.form-group label {
    position: absolute;
    top: 15px;
    left: 0;
    color: #64748b;
    transition: all 0.3s ease;
    pointer-events: none;
}
.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label {
    top: -15px;
    font-size: 0.8rem;
    color: var(--primary-blue);
}
.submit-btn {
    color: white;
    border: none;
    padding: 16px 30px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    transition: all 0.3s ease;
}
.submit-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 94, 180, 0.3);
}
.submit-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
    transition: transform 0.3s ease;
}
.submit-btn:hover svg {
    transform: translateX(5px);
}
.form-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 500px;
    display: flex;
    align-items: flex-end;
}
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(6, 44, 102, 0.7), transparent 60%);
}
.image-content {
    position: relative;
    z-index: 2;
    padding: 10px;
    color: white;
}
.image-content h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}
.image-content ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.image-content li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    color: #000;
}
.image-content li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    background: var(--orange-red);
    border-radius: 50%;
}

@media (max-width: 992px) {
    .form-container {
        flex-direction: column;
    }
    .form-content {
        padding: 40px;
    }
    .form-image {
        min-height: 300px;
    }
}
@media (max-width: 576px) {
    .form-content {
        padding: 30px 20px;
    }
    .form-header h2 {
        font-size: 1.8rem;
    }
    .demo-form {
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .comparison-container {
        flex-direction: column;
    }
    .image-column {
        min-height: 300px;
    }
    .content-column {
        padding: 40px;
    }
}
@media (max-width: 576px) {
    .content-column {
        padding: 30px 20px;
    }
    .comparison-content h2 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .table-row {
        flex-direction: column;
        gap: 10px;
        padding: 20px 0;
    }
    .feature-col,
    .our-col,
    .competitor-col {
        padding: 0;
    }
    .table-row.header {
        display: none;
    }
    .our-col,
    .competitor-col {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}
@media (max-width: 768px) {
    .testimonial-section {
    }
    .section-header {
        margin-bottom: 0;
    }
    .plans-container {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    .plan-card {
        padding: 30px 25px;
    }
}
@media (max-width: 768px) {
    .comparison-table {
        font-size: 0.9rem;
    }
    .feature-col,
    .our-col,
    .competitor-col {
        padding: 15px;
    }
    .section-title {
        font-size: 1.8rem;
    }
}
@media (max-width: 576px) {
    .table-row {
        flex-direction: column;
    }
    .feature-col,
    .our-col,
    .competitor-col {
        width: 100%;
        padding: 12px 15px;
    }
    .feature-col {
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        background: rgba(49, 94, 180, 0.03);
        font-weight: 600;
    }
    .table-row.header {
        display: none;
    }
}
@media (max-width: 768px) {
    .industry-dots {
        gap: 20px;
    }
    .section-header {
        margin-bottom: 0;
    }
    .industry-name {
        font-size: 1rem;
    }
}
@media (max-width: 480px) {
    .industry-dots {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}
@media (max-width: 768px) {
    .integration-content h2 {
        font-size: 1.8rem;
        margin-bottom: 40px;
    }
    .tool-item {
        padding: 12px 25px;
        font-size: 1rem;
    }
    .cta-block {
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .testimonial-card {
        padding: 30px;
    }
}
@media (max-width: 768px) {
    .dot-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .section-header {
        margin-bottom: 0 !important;
    }
    .connector {
        display: none;
    }
} /* Responsive layout */
@media (max-width: 992px) {
    .modules-container {
        min-height: auto;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
        position: static;
        transform: none;
        margin-top: 20px !important;
    }
    .connection-graphic {
        display: none;
    }
    .module-card {
        position: static;
        width: auto;
        transform: none !important;
        margin-bottom: 0;
    }
    .section-title {
        font-size: 2.5rem;
    }
}
@media (max-width: 768px) {
    .modules-container {
        grid-template-columns: 1fr;
    }
    .section-title {
        font-size: 2rem;
    }
    .erp-modules {
        padding: 40px 0;
    }
    .contact-form-section {
        padding: 20px 0 !important;
    }
    .flexible-plans-section {
        padding: 20px 0 !important;
    }
    .integration-section {
        padding: 20px 0 !important;
    }
    .testimonial-section {
        padding: 20px 0 !important;
    }
    .industry-minimal-section {
        padding: 40px 0 !important;
    }
}

.industry-minimal-section {
    padding: 80px 0;
    background-color: #f9fbfe;
}
.section-header {
    text-align: center;
    margin-bottom: 60px;
}
.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-blue);
    margin: 0;
}
.industry-dots {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 10px;
    justify-items: center;
}
.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
}
.industry-item:hover {
    transform: translateY(-5px);
}
.industry-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    border-radius: 50%;
    box-shadow: 0 10px 30px rgba(49, 94, 180, 0.1);
    padding: 15px;
    transition: all 0.3s ease;
}
.industry-item:hover .industry-icon {
    background-color: var(--primary-blue);
}
.industry-item:hover .industry-icon svg path {
    stroke: white;
}
.industry-icon svg {
    width: 40px;
    height: 40px;
}
.industry-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    text-align: center;
    transition: all 0.3s ease;
}
.industry-item:hover .industry-name {
    color: var(--bright-orange);
}

@media (max-width: 768px) {
    .industry-dots {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .section-header h2 {
        font-size: 2rem;
    }
    .industry-icon {
        width: 70px;
        height: 70px;
    }
}
@media (max-width: 480px) {
    .industry-dots {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    .industry-item {
        gap: 15px;
        width: 100%;
        justify-content: flex-start;
    }
    .industry-icon {
        width: 50px;
        height: 50px;
        padding: 10px;
    }
    .industry-icon svg {
        width: 30px;
        height: 30px;
    }
    .industry-name {
        text-align: left;
    }
}
