﻿/*
==============================================================
  BEEBOT LANDING PAGE - Adapted from Figma design
  style-complete.css -> flow layout for Laravel site
==============================================================
*/

/* ===== BASE ===== */
.beebot-wrapper {
    width: 100%;
    overflow-x: hidden;
    background-color: #ffffff;
    font-family: "Lato", sans-serif;
    color: #0a0a0a;
}

/* ===== BANNER SECTION ===== */
.banner-section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: #0a2032;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 70px 360px;
}

.banner-background-group {
    position: relative;
    pointer-events: none;
    width: 50%;
    height: 656px;
    align-content: center;
}

.banner-ellipse-1 {
    position: absolute;
    width: 875.612px;
    height: 778px;
}

.banner-ellipse-2 {
    position: absolute;
    bottom: 0;
    width: 586.641px;
    height: 102.445px;
}

.banner-robot {
    position: relative;
    width: 788.262px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-robot img {
    width: 100%;
    object-fit: cover;
    transform: scaleY(1);
}

.banner-container {
    position: relative;
    z-index: 2;
    max-width: 576px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.ai-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background-color: rgba(19, 91, 236, 0.1);
    border-radius: 9999px;
    align-self: flex-start;
}

.ai-badge span {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #98bbee;
}

.banner-heading .banner-title {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 48px;
    line-height: 60px;
    letter-spacing: -1.5px;
    color: #98bbee;
    margin: 0;
}

.banner-subtitle {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-top: 16px;
}

.banner-subtitle p {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 28px;
    color: #98bbee;
    margin: 0;
}

.banner-promo {
    font-weight: 700 !important;
    color: #deecff !important;
}

.value-props-grid {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.value-card {
    width: 107px;
    min-height: 148px;
    background-color: #deecff;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
    justify-content: center;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        background-color 0.3s ease;
}

.value-card:hover {
    transform: scale(1.08);
    background-color: #c7e0ff;
}

.value-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.value-text h6 {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
    color: #0f172a;
    margin: 0;
}

.banner-cta-margin {
    padding-top: 16px;
    width: 100%;
}

.banner-cta-buttons {
    display: flex;
    gap: 16px;
    align-items: center;
}

.btn-banner-primary {
    background-color: #135bec;
    border: none;
    border-radius: 8px;
    padding: 16.5px 32px 17.5px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    box-shadow:
        0px 20px 25px -5px rgba(19, 91, 236, 0.2),
        0px 8px 10px -6px rgba(19, 91, 236, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-banner-primary:hover {
    background-color: #0e4ec7;
    transform: translateY(-2px);
}

.btn-banner-secondary {
    background: linear-gradient(to bottom, #ffffff 30.846%, #e2e8f0);
    border: 1px solid #135bec;
    border-radius: 8px;
    padding: 17px 33px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #0f172a;
    box-shadow:
        0px 20px 25px -5px rgba(19, 91, 236, 0.2),
        0px 8px 10px -6px rgba(19, 91, 236, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-banner-secondary:hover {
    background: linear-gradient(to bottom, #ffffff 30%, #f1f5f9);
    border-color: #0e4ec7;
    transform: translateY(-2px);
}

/* ===== PROBLEM SECTION ===== */
.text-red {
    color: #dc2626 !important;
}
.problem-section {
    position: relative;
    width: 100%;
    background-color: #f6f6f8;
    padding: 97px 360px 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-border-top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    border-top: 1px solid #f1f5f9;
    pointer-events: none;
}

.problem-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.problem-header {
    max-width: 768px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.problem-heading {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.problem-heading h2 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    color: #0f172a;
    text-align: center;
    margin: 0;
}

.problem-heading .text-danger {
    color: #dc2626;
}

.problem-subtitle {
    width: 100%;
    display: flex;
    justify-content: center;
}

.problem-subtitle p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #475569;
    text-align: center;
    max-width: 585px;
    margin: 0;
}

.problem-cards-wrapper {
    width: 100%;
    max-width: 1200px;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    padding-bottom: 16px;
}

.problem-card {
    flex: 1 0 230px;
    min-height: 230px;
    background-color: #ffffff;
    border-radius: 16px;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 33px;
}

.problem-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.problem-card-border {
    position: absolute;
    inset: 0;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.05);
    pointer-events: none;
}

.problem-icon-bg {
    width: 56px;
    height: 56px;
    background-color: #fee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.problem-title {
    margin-bottom: 10px;
}

.problem-title h5 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #0f172a;
    margin: 0;
}

.problem-desc p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #475569;
    margin: 0;
}

/* ===== SOLUTIONS BLUE BOX ===== */
.solutions-blue-box {
    width: 100%;
    max-width: 1200px;
    background-color: #135bec;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

.solutions-robot-bg {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 586px;
    height: 429px;
    opacity: 0.15;
    overflow: hidden;
    pointer-events: none;
}

.solutions-robot-bg img {
    height: 100%;
    object-fit: cover;
}

.solutions-inner-container {
    padding: 62px 40px 0;
    display: flex;
    flex-direction: column;
    gap: 54px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.solutions-content {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 100%;
}

.solutions-heading {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.solutions-heading h3 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 36px;
    color: #ffffff;
    margin: 0;
}

.solutions-heading p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin: 0;
}

.solutions-row,
.solutions-row-2 {
    display: flex;
    gap: 32px;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
}

.solutions-feature-card {
    background-color: #deecff;
    border-radius: 12px;
    padding: 17px;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 12px;
    cursor: pointer;
    flex: 1 1 280px;
    max-width: 340px;
    transition:
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.3s ease;
}

.solutions-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.feature-card-border {
    position: absolute;
    inset: 0;
    border: 1px solid #f1f5f9;
    border-radius: 12px;
    pointer-events: none;
}

.feature-icon-title {
    display: flex;
    gap: 12px;
    align-items: center;
}

.feature-icon-bg {
    width: 56px;
    height: 56px;
    background-color: #ffffff;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-title h5 {
    font-family: "Lato", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 28px;
    color: #0f172a;
    margin: 0;
}

.feature-desc p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #475569;
    margin: 0;
}

.solutions-cta-box {
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.solutions-cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(
        413.84% 50.37% at 50% 50%,
        #fff 0%,
        rgba(255, 255, 255, 0) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    opacity: 0.1;
    pointer-events: none;
}

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

.solutions-cta-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.solutions-cta-text h4 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 36px;
    color: #ffffff;
    margin: 0;
}

.solutions-cta-text p {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

.btn-solutions-white {
    background-color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 16px 40px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 28px;
    color: #135bec;
    box-shadow:
        0px 20px 25px -5px rgba(0, 0, 0, 0.1),
        0px 8px 10px -6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    width: 286.98px;
    height: 60px;
}

.btn-solutions-white:hover {
    background-color: #f8fafc;
    transform: translateY(-2px);
}

/* ===== HOVER UTILITIES ===== */
.hover-card,
.hover-lift,
.hover-image {
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.hover-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.hover-lift:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.hover-image:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

/* ===== FEATURES SECTION ===== */
.text-blue {
    color: #135bec !important;
}

.features-section {
    position: relative;
    width: 100%;
    background: linear-gradient(to bottom, #f6f6f8, #ffffff);
    padding: 0 360px 96px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.features-header {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    margin-bottom: 64px;
}

.features-heading h2 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    color: #0a0a0a;
    text-align: center;
    margin: 0;
}

.features-subtitle p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #4a5565;
    text-align: center;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 380px));
    gap: 20px;
    width: 100%;
    max-width: 1200px;
    justify-content: center;
}

.feature-image-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow:
        0px 10px 15px -3px rgba(0, 0, 0, 0.1),
        0px 4px 6px -4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.feature-image-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.15);
}

.feature-image-container {
    height: 192px;
    width: 100%;
    position: relative;
    overflow: hidden;
}

.feature-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.feature-image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
    pointer-events: none;
}

.feature-image-icon {
    position: absolute;
    left: 16px;
    top: 128px;
    width: 48px;
    height: 48px;
    background-color: #ffffff;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-image-icon svg {
    width: 24px;
    height: 24px;
}

.feature-image-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.feature-image-title h5 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #0a0a0a;
    margin: 0;
}

.feature-image-desc p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #475569;
    margin: 0;
}

/* ===== INDUSTRY SECTION ===== */
.industry-section {
    position: relative;
    width: 100%;
    background: #f6f6f8;
    padding: 96px 360px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.industry-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.industry-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.industry-heading h2 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    color: #0a0a0a;
    text-align: center;
    margin: 0;
}

.industry-heading .text-primary {
    color: #135bec !important;
}

.industry-subtitle p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #4a5565;
    text-align: center;
    margin: 0;
}

.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    width: 100%;
}

.industry-card {
    min-height: 180px;
    background-color: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    padding: 26px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    border-color: #135bec;
    box-shadow: 0 12px 24px rgba(19, 91, 236, 0.15);
}

.industry-icon {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.gradient-blue {
    background: linear-gradient(135deg, #2b7fff 0%, #155dfc 100%);
}

.gradient-pink {
    background: linear-gradient(135deg, #f6339a 0%, #e60076 100%);
}

.gradient-purple {
    background: linear-gradient(135deg, #b546ff 0%, #fa10cf 100%);
}

.gradient-green {
    background: linear-gradient(135deg, #00c950 0%, #00a63e 100%);
}

.gradient-purple-2 {
    background: linear-gradient(135deg, #ad46ff 0%, #9810fa 100%);
}

.industry-title h5 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 20px;
    line-height: 28px;
    color: #0a0a0a;
    text-align: center;
    margin: 0;
}

.btn-industry-primary {
    display: flex;
    padding: 5px 39.766px 7px 40px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    background: #135bec;
    color: #fff;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 18px;
    font-weight: 500;
    line-height: 28px; /* 155.556% */
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-industry-primary:hover {
    background-color: #0e4ec7;
    transform: translateY(-2px);
}

/* ===== COMPARISON SECTION ===== */
.comparison-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 96px 360px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.comparison-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 48px;
    align-items: center;
}

.comparison-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.comparison-heading h2 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    color: #0a0a0a;
    text-align: center;
    margin: 0;
}

.comparison-subtitle p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #4a5565;
    text-align: center;
    margin: 0;
}

.comparison-table-wrapper {
    width: 100%;
    max-width: 1200px;
    border: 1px solid #f1f5f9;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
        0px 4px 6px -1px rgba(0, 0, 0, 0.1),
        0px 2px 4px -2px rgba(0, 0, 0, 0.1);
    overflow-x: auto;
}

.comparison-card-wrapper {
    display: none;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table thead tr {
    background-color: #f8fafc;
}

.comparison-table th {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    color: #0f172a;
    text-align: left;
    padding: 24px;
    border-bottom: 1px solid #e2e8f0;
}

.comparison-table tr th:last-child {
    border-bottom: 1px solid rgba(19, 91, 236, 0.2);
    background: #135bec;
}

.comparison-table th h4 {
    font-family: "Lato", sans-serif;
    text-transform: uppercase;
    margin: 0;
}

.comparison-table th h4.criteria {
    color: #0f172a;
    font-size: 16px;
    font-weight: 900;
    line-height: normal;
}

.comparison-table th h4.traditional {
    color: #475569;
    font-size: 16px;
    font-weight: 700;
    line-height: normal;
}

.comparison-table th h4.beebot {
    color: #fff;
    font-size: 16px;
    font-weight: 900;
    line-height: normal;
}

.comparison-table th:first-child {
    width: 25%;
}
.comparison-table th:nth-child(2) {
    width: 40%;
}
.comparison-table th:nth-child(3) {
    width: 35%;
    background-color: rgba(19, 91, 236, 0.05);
}

.comparison-table tbody tr td {
    border-bottom: 1px solid #f1f5f9;
}

.comparison-table tbody tr td:last-child {
    border-bottom: 1px solid rgba(19, 91, 236, 0.2);
}

.comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table td {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #0f172a;
    padding: 25px 24px;
    vertical-align: middle;
}

.comparison-table td:first-child {
    font-weight: 700;
}

.comparison-table td:nth-child(3) {
    background-color: rgba(19, 91, 236, 0.05);
    font-weight: 700;
    color: #135bec;
}

.check-icon {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    display: inline-block;
    vertical-align: middle;
    flex-shrink: 0;
}

.comparison-cta {
    width: 100%;
    margin: auto;
    justify-items: center;
}

.btn-comparison-primary {
    font-family: "Lato", sans-serif;
    color: #fff;
    text-align: center;
    display: flex;
    max-width: 540.328px;
    width: 100%;
    padding: 16px 32px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 16px;
    background: #135bec;
    box-shadow:
        0 10px 15px -3px rgba(0, 0, 0, 0.1),
        0 4px 6px -4px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    margin: auto;
}

.btn-comparison-primary:hover {
    background-color: #0e4ec7;
    transform: translateY(-2px);
}

.btn-comparison-primary .comparison {
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
}

.btn-comparison-primary .comparison_suffix {
    font-size: 18px;
    font-weight: 400;
    line-height: 28px;
}

/* ===== PROCESS SECTION ===== */
.process-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 96px 360px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    gap: 64px;
    align-items: center;
}

.process-header {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
}

.process-heading h3 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 36px;
    line-height: 40px;
    color: #0a0a0a;
    text-align: center;
    margin: 0;
}

.process-subtitle p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 20px;
    line-height: 28px;
    color: #4a5565;
    text-align: center;
    margin: 0;
}

.process-steps {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.process-arrow {
    width: 36px;
    height: 16px;
    flex-shrink: 0;
}

.process-step {
    width: 235px;
    height: 245px;
    background-color: #ffffff;
    border: 2px solid #f3f4f6;
    border-radius: 16px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    padding: 26px 17px;
}

.process-step:hover {
    transform: translateY(-4px);
    border-color: #135bec;
    box-shadow: 0 12px 24px rgba(19, 91, 236, 0.15);
}

.step-number {
    width: 64px;
    height: 64px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Inter", "Lato", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 32px;
    color: #ffffff;
    margin-bottom: 15px;
}

.step-title {
    margin-bottom: 8px;
}

.step-title h5 {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 28px;
    color: #0a0a0a;
    margin: 0;
}

.step-desc p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #4a5565;
    margin: 0;
    width: 100%;
}

.process-commitment {
    padding: 32px;
    border-radius: 16px;
    background: linear-gradient(90deg, #eff6ff 0%, #faf5ff 100%);
    display: flex;
    padding: 32px;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    flex-shrink: 0;
    width: 100%;
}

.process-commitment h4 {
    width: 100%;
    color: #0a0a0a;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 32px;
    margin: 0;
}

.commitments-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    width: 100%;
}

.commitment-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.commitment-item svg {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    margin-top: 2px;
}

.commitment-item p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #364153;
    margin: 0;
}

/* ===== CONSULTATION FORM SECTION ===== */
.consultation-section {
    position: relative;
    width: 100%;
    background-color: #ffffff;
    padding: 96px 360px;
    display: flex;
    justify-content: center;
}

.consultation-container {
    width: 100%;
    display: flex;
    background: #135bec;
    border-radius: 16px;
}

.consultation-image {
    width: 100%;
    max-width: 405.33px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 36px;
    margin: auto;
}

.consultation-image img {
    transform: scaleX(-1);
}

.consultation-image p {
    color: #fff;
    text-align: center;
    font-family: "Lato", sans-serif;
    font-size: 20px;
    font-weight: 500;
    line-height: 28px;
    margin: 0;
    padding: 0px 45px;
}

.consultation-form-wrapper {
    width: 100%;
    max-width: 791px;
    background-color: #0f172a;
    border-radius: 16px;
    padding: 64px;
}

.consultation-heading {
    margin-bottom: 32px;
}

.consultation-heading h3 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 30px;
    line-height: 36px;
    color: #ffffff;
    margin: 0 0 8px;
    margin: 0;
}

.consultation-heading p {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.consultation-quote {
    opacity: 0.8;
    text-align: center;
    margin-bottom: 32px;
}

.consultation-quote p {
    font-family: "Lato", sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff;
    margin: 0;
}

.dark-form-group {
    margin-bottom: 24px;
}

.dark-form-label {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 16px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 8.5px;
    display: block;
}

.dark-form-input,
.dark-form-textarea {
    width: 100%;
    background-color: #1e293b;
    border: none;
    border-radius: 12px;
    padding: 14px 16px;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #64748b;
    transition:
        background-color 0.2s,
        color 0.2s;
}

.dark-form-input::placeholder,
.dark-form-textarea::placeholder {
    color: #64748b;
}

.dark-form-input:focus,
.dark-form-textarea:focus {
    outline: none;
    background-color: #1e293b;
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(19, 91, 236, 0.5);
}

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

/* jQuery Validate error labels (dark background) */
label.error {
    color: #f87171;
    font-size: 12px;
    font-family: "Lato", sans-serif;
    display: block;
    margin-top: 4px;
}

.dark-form-submit {
    background-color: #135bec;
    border: none;
    border-radius: 12px;
    padding: 16px 48px;
    font-family: "Lato", sans-serif;
    font-weight: 900;
    font-size: 18px;
    line-height: 28px;
    text-transform: uppercase;
    color: #ffffff;
    box-shadow:
        0px 20px 25px -5px rgba(19, 91, 236, 0.2),
        0px 8px 10px -6px rgba(19, 91, 236, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dark-form-submit:hover {
    background-color: #0e4ec7;
    transform: translateY(-2px);
}

.dark-form-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.catalogue-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 24px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.catalogue-link:hover {
    color: #cbd5e1;
    text-decoration: none;
}

.catalogue-link svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
}

.form-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 16px;
    gap: 16px;
    flex-wrap: wrap;
}

.consultation-form-wrapper .row {
    margin-left: -15px;
    margin-right: -15px;
}

.consultation-form-wrapper .col-lg-6 {
    padding-left: 15px;
    padding-right: 15px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1890px) {
    .process-arrow {
        display: none;
    }
}

@media (max-width: 1680px) {
    .banner-section,
    .problem-section,
    .features-section,
    .industry-section,
    .comparison-section,
    .process-section {
        padding-left: 5%;
        padding-right: 5%;
    }
    .consultation-section {
        padding-left: 5%;
        padding-right: 5%;
    }
    .banner-robot {
        width: 100%;
    }
    .process-arrow {
        display: block;
    }
}

@media (max-width: 1335px) {
    .process-arrow {
        display: none;
    }
}

@media (max-width: 1280px) {
    .section2-item1-desc-ja {
        display: none;
    }
}

@media (max-width: 1199px) {
    .banner-heading .banner-title {
        font-size: 36px;
        line-height: 48px;
    }
    .problem-card {
        flex: 1 0 calc(50% - 16px);
        max-width: calc(50% - 16px);
    }
    .solutions-feature-card {
        max-width: 100%;
    }
    .features-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    .industry-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .process-steps {
        flex-wrap: wrap;
        justify-content: center;
    }
    .process-arrow {
        display: none;
    }
}

@media (max-width: 991px) {
    .banner-section {
        flex-direction: column;
        gap: 25px;
    }
    .banner-robot,
    .banner-background-group {
        height: auto;
        width: 80%;
        margin: auto;
    }
    .banner-ellipse-1 {
        width: 500px;
    }
    .banner-ellipse-2 {
        width: 350px;
        bottom: -60px;
    }
    .banner-robot img {
        transform: scaleX(-1);
    }
    .problem-heading h2 {
        font-size: 28px;
        line-height: 36px;
    }
    .solutions-blue-box {
        min-height: auto;
    }
    .solutions-inner-container {
        padding: 40px 20px;
    }
    .commitments-list {
        grid-template-columns: 1fr;
    }
    .btn-banner-primary,
    .btn-banner-secondary {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 767px) {
    .banner-section {
        padding: 60px 24px 80px;
        min-height: 500px;
    }
    .banner-heading .banner-title {
        font-size: 28px;
        line-height: 36px;
    }
    .banner-subtitle p {
        font-size: 14px;
        line-height: 24px;
    }
    .value-props-grid {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .value-card {
        width: calc(50% - 8px);
        min-height: 120px;
    }
    .problem-cards-wrapper {
        flex-direction: column;
    }
    .problem-card {
        flex: none;
        width: 100%;
        max-width: 100%;
    }
    .solutions-cta-content {
        flex-direction: column;
        align-items: flex-start;
    }
    .solutions-cta-text h4 {
        font-size: 22px;
    }
    .btn-solutions-white {
        width: 100%;
        text-align: center;
    }
    .consultation-form-wrapper {
        padding: 40px 24px;
    }
    .form-footer {
        flex-direction: column;
        align-items: flex-start;
    }
    .dark-form-submit {
        width: 100%;
        text-align: center;
    }
    .process-steps {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
    .process-step {
        width: 100%;
        min-height: 228px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .solutions-row,
    .solutions-row-2 {
        flex-direction: column;
        align-items: stretch;
    }
    .solutions-feature-card {
        flex: 1 1 auto;
    }
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .banner-section {
        padding: 33px 17px 55px;
    }
    .banner-heading svg {
        display: none;
    }
    .value-card {
        width: calc(50% - 8px);
    }
    .banner-container {
        align-items: center;
        gap: 24px;
        width: 100%;
    }
    .ai-badge {
        align-self: center;
    }
    .ai-badge span {
        font-size: 11px;
        line-height: 15.712px;
        letter-spacing: 0.262px;
    }
    .banner-title,
    .banner-subtitle {
        text-align: center;
    }
    .banner-heading .banner-title {
        font-size: 25px;
        line-height: 31.425px;
    }
    .banner-subtitle {
        margin-top: 10px;
    }
    .banner-subtitle p {
        line-height: 20.95px;
    }
    .banner-robot,
    .banner-background-group {
        width: 100%;
    }
    .banner-ellipse-1 {
        width: 264px;
    }
    .banner-ellipse-2 {
        width: 203px;
    }
    .value-props-grid {
        gap: 8px;
        width: 100%;
    }
    .value-card {
        padding: 12px;
        align-items: center;
        gap: 6px;
        min-height: 64px;
    }
    .value-text h6 {
        font-size: 10px;
        line-height: 14px;
    }
    .value-icon {
        width: 20px;
        height: 20px;
    }
    .problem-section,
    .features-section,
    .industry-section,
    .comparison-section,
    .process-section {
        padding-left: 16px;
        padding-right: 16px;
    }
    .consultation-section {
        padding: 60px 16px;
    }
    .banner-cta-buttons {
        gap: 13px;
        flex-direction: column;
    }
    .btn-banner-primary,
    .btn-banner-secondary {
        border-radius: 10px;
        font-size: 15px;
        line-height: 20px;
        height: 42px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .problem-section {
        padding-top: 33px;
        padding-bottom: 33px;
    }
    .problem-container {
        gap: 25px;
    }
    .problem-header {
        padding: 0 13px;
        gap: 10px;
    }
    .problem-heading h2 {
        font-size: 20px;
        line-height: 26px;
    }
    .problem-subtitle p {
        font-size: 14px;
        line-height: 21px;
    }
    .problem-card {
        padding: 18px;
        min-height: 150px;
    }
    .problem-icon-bg {
        margin-bottom: 13px;
        width: 50px;
        height: 50px;
    }
    .problem-title {
        margin-bottom: 5px;
    }
    .problem-title h5 {
        font-size: 16px;
        line-height: 25px;
    }
    .problem-desc p {
        font-size: 12px;
        line-height: 20px;
    }
    .problem-cards-wrapper {
        padding-bottom: 0;
        gap: 13px;
    }
    .solutions-inner-container {
        padding: 21px;
        gap: 20px;
    }
    .solutions-heading {
        gap: 9px;
    }
    .solutions-heading h3 {
        text-align: center;
        font-size: 20px;
        line-height: 29.33px;
    }
    .solutions-heading p {
        text-align: center;
        font-size: 14px;
        line-height: 21px;
    }
    .solutions-content {
        gap: 22px;
    }
    .solutions-row,
    .solutions-row-2 {
        gap: 14px;
    }
    .solutions-feature-card {
        padding: 12px;
        border-radius: 14px;
        gap: 5px;
    }
    .feature-icon-title {
        flex-direction: column;
        gap: 9px;
        align-items: start;
    }
    .feature-title h5 {
        font-size: 15px;
        line-height: 20.164px;
    }
    .feature-desc p {
        font-size: 12px;
        line-height: 20.426px;
    }
    .solutions-cta-box {
        padding: 0;
        border-radius: 0;
    }
    .solutions-cta-gradient,
    .solutions-robot-bg {
        display: none;
    }
    .solutions-cta-content {
        gap: 15px;
    }
    .solutions-cta-text {
        gap: 0;
    }
    .solutions-cta-text h4,
    .solutions-cta-text p {
        text-align: center;
        font-size: 14px;
        line-height: 22.75px;
    }
    .btn-solutions-white {
        height: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .features-header {
        gap: 8px;
        margin-bottom: 25px;
    }
    .features-heading h2 {
        font-size: 20px;
        font-weight: 900;
        line-height: 29.33px;
    }
    .features-subtitle p {
        font-size: 14px;
        line-height: 20.95px;
    }
    .features-grid {
        gap: 13px;
    }
    .feature-image-container {
        height: 150px;
    }
    .feature-image-content {
        padding: 15px;
        gap: 6px;
    }
    .feature-image-icon {
        top: 100px;
        width: 40px;
        height: 40px;
    }
    .feature-image-title h5 {
        font-size: 15px;
        line-height: 20.164px;
    }
    .feature-image-desc p {
        font-size: 12px;
        line-height: 20.426px;
    }
    .features-section {
        padding-bottom: 32px;
    }
    .industry-section {
        padding-top: 33px;
        padding-bottom: 33px;
    }
    .industry-container {
        gap: 26px;
    }
    .industry-header {
        gap: 6px;
    }
    .industry-heading h2 {
        font-size: 20px;
        line-height: 29.33px;
    }
    .industry-subtitle p {
        font-size: 14px;
        line-height: 20.95px;
    }
    .industry-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .industry-card {
        padding: 18px;
        gap: 13px;
        min-height: 120px;
    }
    .industry-icon {
        width: 50px;
        height: 50px;
    }
    .industry-title h5 {
        font-size: 15px;
        line-height: 20.164px;
    }
    .industry-cta {
        width: 100%;
    }
    .btn-industry-primary {
        width: 100%;
        height: 46px;
        font-size: 16px;
        line-height: 25.14px;
    }
    .comparison-section {
        padding-top: 32px;
        padding-bottom: 32px;
    }
    .comparison-container {
        gap: 25px;
    }
    .comparison-header {
        gap: 9px;
    }
    .comparison-heading h2 {
        font-size: 20px;
        line-height: 29.33px;
    }
    .comparison-subtitle p {
        font-size: 14px;
        line-height: 20.95px;
    }
    .comparison-table-wrapper {
        display: none;
    }
    .comparison-card-wrapper {
        display: block;
        border-radius: 14.66px;
        border: 1px solid #e5e7eb;
        background: #fff;
        width: 100%;
    }
    .comparison-card-title {
        display: flex;
        width: 100%;
        height: 36px;
        justify-content: center;
        align-items: center;
        gap: 10px;
        border-radius: 14px 14px 0 0;
        border: 1px solid #e5e7eb;
        background: #f8fafc;
        font-size: 16px;
        line-height: 16.76px;
        font-family: "Lato", sans-serif;
        color: #475569;
        font-weight: 700;
    }
    .comparison-card-subtitle {
        width: 50%;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 10px;
        font-size: 16px;
        line-height: 16.76px;
        font-family: "Lato", sans-serif;
        font-weight: 700;
        background: #f8fafc;
        color: #475569;
        min-height: 48px;
        justify-content: center;
        padding: 7px 12px;
    }
    .bg-blue {
        background: #135bec;
        color: #fff;
    }
    .comparison-card-wrapper .criteria {
        text-align: center;
        font-size: 16px;
        font-weight: 900;
        line-height: normal;
        text-transform: uppercase;
        font-family: "Lato", sans-serif;
        margin: 21px 0;
        color: #0f172a;
    }
    .comparison-card-rows {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 13px;
        font-family: "Lato", sans-serif;
        padding: 0 20px 20px;
    }
    .comparison-card-row {
        display: flex;
        flex-direction: column;
        justify-content: center;
        border-radius: 13.075px;
        border: 1.025px solid #e5e7eb;
        background: #fff;
        box-shadow:
            0 3.736px 5.603px -0.934px rgba(0, 0, 0, 0.1),
            0 1.868px 3.736px -1.868px rgba(0, 0, 0, 0.1);
    }
    .comparison-card-row-title {
        padding: 16px;
        border-bottom: 1.025px solid #e5e7eb;
        background: #f8fafc;
        text-align: center;
        font-size: 13.301px;
        font-weight: 900;
        line-height: 17.831px;
        text-transform: uppercase;
        color: #0f172a;
    }
    .comparison-card-row-traditional {
        border-bottom: 1.025px solid #e5e7eb;
        background: rgba(255, 255, 255, 0);
        padding: 20px;
        text-align: center;
        font-size: 11.401px;
        font-weight: 400;
        line-height: 18.211px;
        color: #64748b;
    }
    .comparison-card-row-beebot {
        border-radius: 0 0 13.301px 13.301px;
        background: rgba(19, 91, 236, 0.05);
        padding: 20px;
        text-align: center;
        font-size: 11.401px;
        font-weight: 700;
        line-height: 18.211px;
        color: #135bec;
    }
    .btn-comparison-primary {
        padding: 18px 20px;
        gap: 6px;
    }
    .btn-comparison-primary .comparison {
        font-size: 18px;
        line-height: 29.33px;
    }
    .btn-comparison-primary .comparison_suffix {
        font-size: 14px;
        line-height: 20.95px;
    }
    .process-section {
        background: #f6f6f8;
        padding-top: 33px;
    }
    .process-container {
        gap: 25px;
    }
    .process-header {
        gap: 6px;
        margin-bottom: 21px;
    }
    .process-heading h3 {
        font-size: 20px;
        line-height: 29.255px;
    }
    .process-subtitle p {
        font-size: 14px;
        line-height: 20.897px;
    }
    .process-steps {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .process-step {
        max-width: 100%;
        padding: 18px;
        min-height: auto;
        height: auto;
    }
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 20.897px;
        line-height: 29.255px;
        margin-bottom: 12px;
    }
    .step-title {
        margin-bottom: 4px;
    }
    .step-title h5 {
        font-size: 15px;
        line-height: 25.076px;
    }
    .step-desc p {
        font-size: 12px;
        line-height: 20.374px;
    }
    .process-arrow {
        display: block;
        transform: rotate(90deg);
    }
    .process-commitment {
        padding: 20px;
        gap: 20px;
    }
    .process-commitment h4 {
        font-size: 20px;
        line-height: 29.255px;
    }
    .commitments-list {
        gap: 12px;
    }
    .commitment-item p {
        font-size: 14px;
        line-height: 20.897px;
    }
    .consultation-section {
        padding: 0;
    }
    .consultation-container {
        flex-direction: column-reverse;
        padding: 42px 16px;
        border-radius: 0;
    }
    .consultation-image {
        padding: 25px 33px;
        gap: 22px;
        margin: auto;
    }
    .consultation-image img {
        transform: none;
        padding: 0 38px;
    }
    .consultation-image p {
        padding: 0;
        font-size: 16px;
        line-height: 27.235px;
    }
    .consultation-form-wrapper {
        padding: 25px;
    }
    .consultation-heading {
        margin-bottom: 24px;
    }
    .consultation-heading h3 {
        font-size: 25px;
        line-height: 33.52px;
    }
    .dark-form-group {
        margin-bottom: 16px;
    }
    .dark-form-label {
        margin-bottom: 8px;
        font-size: 10px;
        line-height: 15.712px;
    }
    .dark-form-input, .dark-form-textarea {
        border-radius: 14px;
        padding: 12.57px 16.76px;
    }
    .form-footer {
        margin-top: 30px;
        align-items: center;
        gap: 15px;
    }
    .dark-form-submit {
        border-radius: 14.665px;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 18px;
        line-height: 25.14px;
        height: 50px;
    }
    .catalogue-link {
        font-size: 14.665px;
        line-height: 20.95px;
    }
}
