/* Navbar Styles */
.navbar {
    background: #000;
    border-bottom: 0 !important;
    position: fixed !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
    padding: 1rem 2rem;
}

.navbar .container-fluid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.navbar-brand {
    display: flex;
    align-items: center;
    /* gap: 0.75rem; */
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: left;
}

.logo-img {
    max-width: 100%;
    height: 50px;
    width: auto;
}

.logo-text {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-nav-container {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.navbar-nav {
    display: flex;
    align-items: center;
    gap: 4rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: #ffffff !important;
    text-decoration: none;
    font-weight: 600 !important;
    font-size: 1rem !important;
    font-family: 'Montserrat', sans-serif;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-link:hover,
.nav-link.active,
.nav-item.active .nav-link {
    background: linear-gradient(90deg, #0FA3B8 10%, #1AB3C5 30%, #2bd7bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dropdown-toggle:hover,
.dropdown-toggle.active,
.nav-item.active .dropdown-toggle {
    color: #1AB3C5 !important;
}

.dropdown-toggle:hover::after,
.dropdown-toggle.active::after,
.nav-item.active .dropdown-toggle::after {
    border-top-color: #1AB3C5 !important;
}

.dropdown-toggle::after {
    display: none !important;
}


.dropdown-menu {
    background: #2a2a2a;
    border: 1px solid #333;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    min-width: 200px;
}

.dropdown-menu.show {
    display: block;
}

.dropdown-item {
    color: #ffffff;
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    transition: background-color 0.3s ease;
}

.dropdown-item:hover,
.dropdown-item.active {
    background-color: #333;
    color: #16D3CA;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.navbar-actions .start-for-free-btn,
.navbar-actions .request-demo-btn {
    margin: 0;
    padding: 0.7rem 1.4rem;
    font-size: 12px;
    border-radius: 30px;
}

/* Mobile Hamburger Menu */
.navbar-toggler {
    display: none;
    background: none;
    border: none !important;
    cursor: pointer;
    padding: 0.5rem;
}

.hamburger-icon {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 24px;
    height: 18px;
}

.hamburger-icon span {
    display: block;
    width: 100%;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger-icon.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger-icon.active span:nth-child(2) {
    opacity: 0;
}

.hamburger-icon.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile Responsive */
@media (max-width: 991px) {
    .navbar-toggler {
        display: block;
    }

    .navbar-nav-container {
        position: fixed;
        top: 60px;
        left: 0 !important;
        right: 0;
        transform: none !important;
        background: #2a2a2a;
        display: none;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        border-top: 1px solid #333;
    }

    .navbar-nav-container.active {
        display: flex;
    }

    .navbar-nav {
        flex-direction: column;
        width: 100%;
        gap: 0;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #333;
    }

    .nav-link {
        padding: 1rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .dropdown-menu {
        position: static;
        width: 100%;
        margin-top: 0;
        border: none;
        border-top: 1px solid #333;
        background: #1a1a1a;
    }

    .navbar-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
        padding: 1rem;
    }

    .navbar-actions .start-for-free-btn,
    .navbar-actions .request-demo-btn {
        width: auto;
        min-width: 150px;
        max-width: 250px;
        text-align: center;
        margin: 0 auto;
    }
}

.nav-item {
    position: relative;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: 100% !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: transparent !important;
    padding: 0.5rem 0 !important;
    min-width: 180px;
    z-index: 99;
    top: calc(100% + 40px) !important;
    border: none !important;
}

.dropdown-item {
    display: block;
    padding: 0.6rem 1rem;
    color: #fff !important;
    white-space: nowrap;
    text-align: center;
    transition: background 0.3s ease;
}

.dropdown-item:hover {
    background: #16d3ca;
    color: #000 !important;
}

.nav-right {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.nav-right .btn, .nav-right .btn-outline, .btn-outline, .btn-subscribe {
    padding: 0.6rem 1.5rem !important;
    border-radius: 50px !important;
    border: 1px solid #fff!important;
    font-weight: 500 !important;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-right .btn, .form-submit-btn {
    background: rgba(255, 255, 255, 0.2) !important;
}

.nav-right .btn:hover {
    background: rgba(255, 255, 255, 0.35);
}

.nav-right .btn-outline {
    background: none;
}

.nav-right .btn-outline:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    align-items: baseline;
}

/* Company Section */
.footer-company {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-description {
    color: #fff;
    font-size: 0.875rem;
    line-height: 21px;
    margin: 0;
    max-width: 300px;
    margin-top: 0;
    padding-top: 0;
}

.footer-social-icons {
    display: flex;
    gap: 1rem;
    margin-top: .5rem;
}

.footer-social-icons .social-icon {
    color: #fff;
    font-size: 1.25rem;
    text-decoration: none;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.footer-social-icons .social-icon:hover {
    color: #16d3ca;
    transform: translateY(-2px);
}

/* Office Sections */
.footer-office {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.footer-office-heading, .footer-links-heading {
    background: linear-gradient(90deg, #2bd7bd 10%, #1AB3C5 30%, #0FA3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    margin-bottom: 0.5rem;
    height: 60px;
    display: flex;
    align-items: center;
    line-height: 1;
}

.footer-office-address {
    color: #fff;
    font-size: 0.875rem;
    line-height: 21px;
    margin: 0;
    margin-top: 0;
    padding-top: 0;
}

/* Quick Links Section */
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-nav a {
    color: #fff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #16d3ca;
}

/* Legal Links */
.footer-legal {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    justify-content: space-between;
}

.footer-copyright {
    color: #aaa;
    font-size: 0.75rem;
    margin: 0;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.footer-legal-link {
    color: #aaa;
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.3s ease;
    margin-left: 2rem;
}

.footer-legal-link:hover {
    color: #16d3ca;
}

.footer h5,
.footer h6 {
    font-weight: 600;
}

.footer a {
    font-style: normal;
}

/* Responsive Footer */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem .5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-description {
        max-width: 100%;
    }

    .footer-legal {
        flex-direction: column;
        gap: 1rem;
        padding-top: 1.5rem;
    }

    .footer-legal-links {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .footer-legal-link {
        margin-left: 0;
    }

    .footer-office-address {
        width: 50%;
    }
}

@media (max-width: 576px) {
    .footer-content {
        gap: 1.5rem;
    }

    .footer-social-icons {
        gap: 0.75rem;
    }
}

@media (min-width: 1500px) {
  .container {
    max-width: 1400px !important;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1200px;
  }
}

@media (min-width: 992px) and (max-width: 1199.98px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 576px) and (max-width: 767.98px) {
  .container {
    max-width: 540px;
  }
}

@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
  }
}

html, body {
  overflow-x: hidden !important;
}

body {
    color: #fff !important;
    background: #000 !important;
    font-family: 'Montserrat' !important;
    margin: 0 auto;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 15px;
    padding-right: 15px;
    position: relative;
}

/* HOME PAGE */
.row-centered {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: calc(100vh - 80px);
    position: relative;
    text-align: center;
}

.homepage-bg, .ai-bg, .blogs-bg, .privacy-bg {
    background: #000 !important;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) .6px, transparent 0.6px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) .6px, transparent .6px) !important;
    background-size: 160px 160px !important;
    background-position: 0 0, 0 0 !important;
    background-repeat: repeat !important;
    min-height: 100vh !important;
    position: relative !important;
}

.green-ball {
    position: absolute;
}

.header-btn {
    margin-top: 2rem;
}

.header h1 {
    background: linear-gradient(90deg, #0FA3B8 10%, #1AB3C5 30%, #2bd7bd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 3.75rem;
    line-height: 1.1;
    font-weight: 700;
}

.header h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-top: 2rem;
    color: #E5F6F7;
    line-height: 40px;
}

.header h5 {
    font-size: 1rem;
    font-weight: 100;
}

.start-for-free-btn:hover {
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        0 6px 25px rgba(0, 0, 0, 0.25);
}

.start-for-free-btn:last-child:hover {
    box-shadow:
        inset 0 1px 0 rgba(255, 255, 255, 0.25),
        0 6px 25px rgba(22, 211, 202, 0.25);
}


.display-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 2rem 2rem;
}

.display-image {
    width: 100%;
    max-width: 1200px;
    height: auto;
    margin: 0.5rem 0;
    display: block;
}


/* Insights Cards */
.insights .row {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: stretch;
    justify-content: flex-start;
}

.insights .col-12,
.insights .col-sm-6,
.insights .col-lg-4 {
    display: flex;
    flex-direction: column;
    flex: 1;
    align-items: stretch;
}

.insights-card {
    background: #272727;
    background: linear-gradient(163deg, rgba(0, 0, 0, 0) 0%, rgba(26, 179, 197, 0.20) 100%), #272727;
    border: 1px solid #333;
    border-radius: 12px;
    height: 600px;
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.insights-card:hover {
    border-color: #16D3CA;
    box-shadow: 0 0 20px rgba(22, 211, 202, 0.1);
    transform: translateY(-5px);
}

.insights-card-body {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.insights-card h4 {
    color: #2BD7BD;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 30px;
    text-align: left;
    height: 90px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    flex-shrink: 0;
}

.insights-title-cyan {
    color: #1AB3C5 !important;
}

.insights-content-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
    margin-top: auto;
}

.insights-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    min-width: 120px;
    flex-shrink: 0;
}

.insights-link:hover {
    color: #16D3CA !important;
}

.insights-arrow img {
    object-fit: contain;
    display: block;
    transition: transform 0.3s;
}

.insights-link:hover ~ .insights-arrow img {
    transform: translateX(4px);
}

.insights-arrow:hover img {
    transform: none;
}

.insights-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    margin-top: auto;
}

/* When there's only one blog, limit the column width and align it to the left */
.insights .row.my-5 > .col-12.col-sm-6.col-lg-4:only-child,
.insights .row.my-5 > .col-12.col-sm-6.col-lg-4:first-child:last-child,
.insights .row > .col-12.col-sm-6.col-lg-4:only-child,
.insights .row > .col-12.col-sm-6.col-lg-4:first-child:last-child {
    flex: 0 0 33.333333% !important;
    max-width: 33.333333% !important;
    width: 33.333333% !important;
    margin-left: 0 !important;
    margin-right: auto !important;
}

/* When there are exactly 2 blogs, limit each column width and align to the left */
.insights .row.my-5 > .col-12.col-sm-6.col-lg-4:nth-child(1):nth-last-child(2),
.insights .row.my-5 > .col-12.col-sm-6.col-lg-4:nth-child(2):nth-last-child(1) {
    flex: 0 0 auto !important;
    max-width: 33.333333% !important;
    width: 33.333333% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Ensure the card doesn't stretch when there's only one or two blogs */
.insights .row.my-5 > .col-12.col-sm-6.col-lg-4:only-child .insights-card,
.insights .row.my-5 > .col-12.col-sm-6.col-lg-4:first-child:last-child .insights-card,
.insights .row > .col-12.col-sm-6.col-lg-4:only-child .insights-card,
.insights .row > .col-12.col-sm-6.col-lg-4:first-child:last-child .insights-card,
.insights .row.my-5 > .col-12.col-sm-6.col-lg-4:nth-child(1):nth-last-child(2) .insights-card,
.insights .row.my-5 > .col-12.col-sm-6.col-lg-4:nth-child(2):nth-last-child(1) .insights-card {
    width: 100%;
    max-width: 100%;
}

/* AI PAGE */
.ai-validation-section, .engagement-section {
    background: linear-gradient(315deg, rgb(127 241 255 / 10%) 0%, rgb(145 166 168 / 8%) 100%);
    padding: 2rem 3rem;
    margin: 0 7rem;
    box-shadow: 0px 10px 15px -3px rgba(26, 179, 197, 0.2), 0px 4px 6px -4px rgba(26, 179, 197, 0.2);
    border-radius: 12px;
    border: 1px solid rgba(26, 179, 197, 0.3);
}

.ai-content {
    padding: 2rem 0;
}

.ai-title, .int-title {
    color: #1AB3C5;
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.int-title {
    color: #2BD7BD !important;
}

.ai-title::after, .int-title::after {
    content: '';
    display: block;
    width: 160px;
    height: 2px;
    background: #1AB3C5;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.int-title::after {
    background: #2BD7BD !important;
}

.ai-text p, .int-text p {
    color: #fff;
    font-size: 1.25rem;
    line-height: 30px;
    margin-bottom: 1.5rem;
}

.interoperability-section, .data-exchange-section {
    background: linear-gradient(94.56deg, rgba(43, 215, 189, 0.1) 0%, rgba(43, 215, 189, 0.08) 100%);
    padding: 2rem 3rem;
    margin: 0 7rem;
    box-shadow: 0px 10px 15px -3px #2BD7BD66, 0px 4px 6px -4px #2BD7BD66;
    border-radius: 12px;
    border: 1px solid rgba(43, 215, 189, 0.3);
}

/* Value Proposition Section */
.value-proposition {
    background: #000;
    padding: 2rem 0;
}

.value-proposition-content {
    padding-top: 4rem;
    padding-bottom: 5rem;
    min-height: 500px;
}

.value-boxes {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    height: 100%;
    justify-content: space-between;
    min-height: 400px;
}

.value-box {
    background: linear-gradient(135deg, #1AB3C51A 0%, #2BD7BD14 100%);
    border: 1px solid rgba(22, 211, 202, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 16px 64px rgba(22, 211, 202, 0.15),
        0 24px 96px rgba(22, 211, 202, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.value-box:hover {
    border-color: rgba(22, 211, 202, 0.6);
    background: linear-gradient(135deg, #1AB3C525 0%, #2BD7BD20 100%);
    box-shadow:
        0 12px 48px rgba(0, 0, 0, 0.5),
        0 24px 80px rgba(22, 211, 202, 0.2),
        0 36px 120px rgba(22, 211, 202, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

.value-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0;
}

.value-title {
    color: #1AB3C5;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.dropdown-arrow {
    background: rgba(22, 211, 202, 0.2);
    border: 1px solid rgba(22, 211, 202, 0.4);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16d3ca;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dropdown-arrow:hover {
    background: rgba(22, 211, 202, 0.3);
    border-color: rgba(22, 211, 202, 0.6);
}

.value-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(22, 211, 202, 0.3) 0%, rgba(22, 211, 202, 0.3) 70%, transparent 100%);
    margin: 1rem 0;
    transition: all 0.3s ease;
    width: 80%;
}

.value-description {
    color: #ffffff;
    font-size: 1.125rem;
    line-height: 25px;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.value-box.active .value-description {
    max-height: 200px;
    margin-top: 1rem;
}

.value-box.active .value-divider {
    opacity: 1;
}

.value-box:not(.active) .value-divider {
    opacity: 0;
    margin: 0;
}

.value-box.active .dropdown-arrow {
    transform: rotate(180deg);
}


/* Card Background Image Styling */
.cards .card {
    background-color: transparent !important;
    border: none;
    position: relative;
    overflow: hidden;
}

.cards .card-body {
    background: transparent !important;
    color: #fff;
    position: relative;
    z-index: 2;
    padding: 1rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: left;
    justify-content: flex-end;
}

.cards .card-body h4 {
    color: #2bd7bd;
    font-weight: 600;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cards .card-body .content-row {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}

.cards .card-body .content-row p {
    color: #fff;
    margin: 0;
    line-height: 1.5;
    flex: 1;
    font-size: 0.875rem;
}

.cards .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

.cards .card-body img {
    width: 40px;
    height: 40px;
    margin-left: 1rem;
}

/* Ensure consistent container widths */
.cards .container, .differentiation .container, .value-proposition .container {
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 15px;
    padding-right: 15px;
}

/* Force 4 cards in one row on tablet and desktop screens */
@media (min-width: 768px) {
    .cards .col-12.col-sm-6.col-lg-3 {
        flex: 0 0 25% !important;
        max-width: 25% !important;
        margin: 0;
    }
}


.accordion {
    --bs-accordion-color: rgb(255, 255, 255) !important;
    --bs-accordion-bg: transparent !important;
}

.accordion-item {
    border: none !important;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 300;
    border-bottom: 1px solid #fff !important;
}

.accordion-body {
    padding-top: 0 !important;
    padding-left: 0 !important;
    padding-bottom: 1rem !important;
}

.accordion-button, .accordion-button:not(.collapsed) {
    color: #40e0db !important;
    background-color: transparent !important;
    box-shadow: none !important;
    font-size: 1.25rem !important;
    font-family: Montserrat;
    font-weight: 700;
    padding-left: 0 !important;
}

.accordion-item:last-child {
    border-bottom: none !important;
}

.accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='white' viewBox='0 0 16 16'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

.dropdown h3, .cards h3 {
    text-align: center;
    font-size: 2.75rem;
    font-weight: 600;
}

.dropdown h2 {
    color: #00978f;
    text-align: center;
    font-size: 4rem;
    margin: 0 auto;
}

.dropdown h6 {
    font-size: 1.5rem;
    text-align: center;
}

.accordion {
    width: 60%;
}

.dropdown img {
    float: right;
    max-width: 100%;
    box-shadow: 13px 1rem 1rem 6px rgba(0, 0, 0, 0.15) !important;
}

.cards, .insights {
    padding: 5rem 3rem;
}

.value-proposition .value-proposition-content {
    align-items: flex-start !important; /* keep left image from shifting vertically when right column expands */
    --bs-gutter-x: 1rem; /* reduce horizontal gap between the two columns */
}

@media (min-width: 992px) {
  .value-proposition .value-proposition-content {
    --bs-gutter-x: 0.75rem; /* slightly tighter on desktop */
  }
}

/* Explicit widths for the left value GIF at large breakpoints */
@media (min-width: 1200px) {
    #valueGif {
        width: 580px !important;
    }
}

@media (min-width: 1600px) {
    #valueGif {
        width: 680px !important;
    }
}

.cards .row,
#insightsCarousel .row {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-around;
    padding-top: 5rem;
}

.cards .card, .insights .card {
    flex: 1 1 100%;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 450px;
    background: linear-gradient(rgb(64, 224, 219) 70%, rgb(47, 219, 142) 100%);
    color: #000;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
}

.cards .card img, .insights .card img {
    object-fit: cover;
    max-width: 100%;
}

.cards .card-body, .insights .card-body {
    flex: 1;
}

.cards .col-12, .insights .col-12 {
    flex: 1;
    min-width: 250px;
    display: flex;
}


.card-body {
    padding: 1.5rem;
}

.card h4 {
    color: #000;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    margin-top: 0rem;
}

.card p {
    font-size: .875rem;
    color: #000;
    text-align: left;
}

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

.differentiation-content {
    padding-top: 10rem;
    padding-bottom: 10rem;
}

.differentiation h2 {
    font-weight: 700;
    font-size: 2.75rem;
    background: linear-gradient(90deg, #16D3CA 0%, #1AB3C5 50%, #0FA3B8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.differentiation h3 {
    font-size: 1.5rem;
    line-height: 40px;
    color: #e5f6f7;
}

.line {
    border: 1px solid;
    width: 60%;
}

.logos{
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
}

.logos-wrapper {
  transform: translateX(30px);
  padding-top: 6rem;
  padding-bottom: 6rem;
}

.logos-slider {
  display: flex;
  align-items: center;
  gap: 80px;
  will-change: transform;
}

.carousel-control-prev {
    left: -10% !important;
}

.carousel-control-next {
    right: -10% !important;
}

.logos-slider img {
    max-height: 60px;
    object-fit: contain;
}

.insights h3, .value-proposition h3, .cards h3 {
    background: linear-gradient(90deg, #16D3CA 10%, #1AB3C5 20%, #2BD7BD 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
}

.insights h5 {
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
    margin-top: 2rem;
    line-height: 40px;
}

.insights .card {
    background: #1a1a1a;
    border: 1px solid #333;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insights .card:hover {
    border-color: #16d3ca;
    transform: translateY(-5px);
}

.insights .card img {
    object-fit: cover;
    width: 100%;
    margin-top: 1rem;
    flex: 1;
    min-height: 200px;
}

.insights .card-body {
    background: linear-gradient(180deg, #272727 0%, #272727 70%, rgba(43, 215, 189, 0.1) 100%);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.insights .card-body h4 {
    color: #16d3ca;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    cursor: pointer;
    text-decoration: none;
    text-align: left;
    flex-shrink: 0;
    height: 3.5rem;
    display: flex;
    align-items: flex-start;
    overflow: hidden;
}

.insights-content-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.insights-content-row a:first-child,
.insights-content-row .insights-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.insights-content-row a:first-child:hover {
    color: #16D3CA;
}

.insights-link:hover ~ .insights-arrow img {
    transform: translateX(4px);
}

.insights p {
    padding: 0rem 5rem 0rem 0rem;
    color: #fff;
}

.greenball-side-left-top {
    max-width: 100%;
    position: absolute;
    left: 0;
    top: 455%;
    transform: scaleX(-1);
    z-index: 1;
}

/* Bottom Section - Dark Theme with Grid */
.bottom, .ai-bottom {
    background: #0A0A0A;
    position: relative;
    overflow: hidden;
    padding-top: 5rem;
    padding-bottom: 5rem;
    text-align: center;
    margin-bottom: 10rem;
}

.bottom::before, .ai-bottom::before, .subscribe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 150px 100px;
    background-position: 0 0, 0 0;
    opacity: 0.3;
    z-index: 1;
    border: 2px #272727 solid;
    border-radius: 10px;
}

.bottom::after, .ai-bottom::after {
    content: '';
    position: absolute;
    top: -90%;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 560px;
    background: radial-gradient(ellipse, #2BD7BD 0%, rgba(26, 179, 197, 0.2) 50%, transparent 70%);
    z-index: 2;
}

.bottom h2 {
    font-weight: 800;
    font-size: 2.8rem;
    color: #fff;
    position: relative;
    z-index: 3;
    margin-bottom: 2rem;
}

.bottom .my-5, .bottom .mt-5 {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.bottom p {
    font-size: 1.25rem;
    line-height: 30px;
    padding: 0rem 5rem;
}


.start-for-free-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: rgb(152 149 149 / 46%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset 1px 1px 0 rgb(255 255 255 / 62%), inset -1px -1px 0 rgb(255 255 255 / 57%), 0 4px 20px rgb(0 0 0 / 61%);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.125rem;
    box-shadow: 0px 0px 22px rgba(242, 242, 242, 0.50) inset;

    backdrop-filter: blur(12px);
}

.start-for-free-btn:hover {
    background: rgb(152 149 149 / 60%);
    box-shadow: inset 1px 1px 0 rgb(255 255 255 / 70%), inset -1px -1px 0 rgb(255 255 255 / 65%), 0 6px 25px rgb(0 0 0 / 70%);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.request-demo-btn {
    display: inline-block;
    padding: 1rem 2rem;
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: inset -1px 1px 0 rgb(255 255 255 / 68%), inset -1px -1px 0 rgb(255 255 255 / 41%), 0 4px 20px rgba(22, 211, 202, 0.3);
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    background: linear-gradient(90deg, rgba(43, 215, 189, 0.50) 0%, rgba(26, 179, 197, 0.50) 100%); box-shadow: 7px 7px 10px rgba(43, 215, 189, 0.40) inset;
}

.request-demo-btn:hover {
    background: linear-gradient(135deg, rgb(22 211 202 / 60%) 0%, rgb(26 179 197 / 65%) 100%);
    box-shadow: inset -1px 1px 0 rgb(255 255 255 / 75%), inset -1px -1px 0 rgb(255 255 255 / 50%), 0 6px 25px rgba(22, 211, 202, 0.4);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

/* CONTACT PAGE */
.banner {
    text-align: center;
    margin-top: 80px;
    padding: 5rem 0rem 0rem 0rem;
}

.banner-title {
    font-size: 7rem;
    color: #40e0d0;
    font-weight: 700;
    margin-bottom: 1rem;
}

.banner-subtitle {
    font-size: 1.2rem;
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    background: #000;
    padding-bottom: 4rem;
}

.form label {
    display: none;
}

.form-control {
    padding: 1rem !important;
    background: transparent !important;
    border: 1px solid #40e0db !important;
    color: #40e0db !important;
}

::placeholder {
    color: #40e0db !important;
    opacity: 1;
}

.form-control:focus {
    color: #40e0db !important;
    box-shadow: 0 0 10px rgba(64, 224, 219, 0.6);
}

/* Dropdown */
.custom-select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.custom-select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 1rem 2.5rem 1rem 1rem !important;
    border: 1px solid #40e0db !important;
    background: transparent !important;
    color: #40e0db !important;
    width: 100%;
    cursor: pointer;
}

.custom-select-wrapper::after {
    content: "\25BC";
    font-size: 1.5rem;
    color: #40e0db;
    position: absolute;
    right: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}

.form-submit-btn {
    background: transparent !important;
    border: 1px solid #40e0db !important;
    border-radius: 50px !important;
    padding: .5rem 2rem !important;
}

.form-submit-btn:hover {
    background: #2b9f94 !important;
    border: 1px solid #fff;
    transform: translateY(3px);
}

.form-submit-btn:active {
    transform: translateY(1px);
}

@media (max-width: 1300px) {
    .header h1, .insights h3, .value-proposition h3, .differentiation h2, .bottom h2 {
        font-size: 2rem;
    }

    .header h3, .differentiation h3, .request-demo-btn, .start-for-free-btn, .insights h5 {
        font-size: 1rem;
        line-height: 30px;
    }

    .insights-card {
        height: 500px;
    }

    .insights-card h4 {
        font-size: 1.25rem;
        height: 88px;
    }

    .insights-content-row a:first-child {
        font-size: 1rem;
    }

    .insights-card-body {
        padding: 1rem;
    }

    .insights-image {
        height: 300px;
    }

    .insights .row {
        gap: 0;
    }

    .greenball-side-right {
        top: 80% !important;
    }

    .value-proposition-content {
        padding: 2rem 0;
    }

    .cards, .insights {
        padding: 5rem 0rem;
    }

    .differentiation {
        padding: 0 5rem;
    }

    .differentiation .container {
        max-width: 100%;
        margin: 0 auto;
        padding-left: 0;
        padding-right: 0;
    }

    .differentiation-content {
        padding-top: 5rem;
        padding-bottom: 10rem;
    }

    .cards .card h4 {
        font-size: 1.25rem !important;
    }

    .logo-slider img {
        max-height: 40px;
    }

    .logos-wrapper {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
}

@media (max-width: 992px) {
    /* Keep 3 insights cards in one row for tablet widths */
    .insights .row {
        flex-wrap: nowrap !important;
        justify-content: flex-start !important;
    }

    .insights .col-12.col-sm-6.col-lg-4 {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        margin: 0 !important;
    }

    /* Override for single card - keep it at 33.333% and left-aligned */
    .insights .row > .col-12.col-sm-6.col-lg-4:only-child,
    .insights .row > .col-12.col-sm-6.col-lg-4:first-child:last-child {
        flex: 0 0 33.333% !important;
        max-width: 33.333% !important;
        width: 33.333% !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }

    .insights-content-row a:first-child, .insights-content-row .insights-link {
        font-size: 1rem;
    }
}

/* Desktop: Ensure single card is left-aligned and not full width */
@media (min-width: 993px) {
    .insights .row > .col-12.col-sm-6.col-lg-4:only-child,
    .insights .row > .col-12.col-sm-6.col-lg-4:first-child:last-child {
        flex: 0 0 33.333333% !important;
        max-width: 33.333333% !important;
        width: 33.333333% !important;
        margin-left: 0 !important;
        margin-right: auto !important;
    }
  .logos-wrapper {
    transform: translateX(15px);
  }
  .logos-slider img {
    max-height: 45px;
    gap: 50px;
  }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        align-items: flex-start;
        padding: 0;
    }

    .nav-left {
        margin-bottom: 1rem;
    }

    .nav-right {
        margin-left: auto;
    }

    .banner {
        margin-top: 100px;
        padding: 3rem 1rem;
    }

    .banner-title {
        font-size: 2.2rem;
    }

    .banner-subtitle {
        font-size: 1rem;
    }

    .navbar-brand {
        justify-content: flex-start;
        gap: 0.25rem;
    }

    .logo-link {
        justify-content: left;
    }

    .logo-img {
        width: 40px;
        height: 40px;
        max-width: none !important;
    }

    .logo-text {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
  .logos-wrapper {
    transform: translateX(5px); /
  }
  .logos-slider img {
    max-height: 35px;
    gap: 30px;
  }
}

/* Cards Section */
.cards {
    position: relative;
}

.greenball-side, .greenball-side-right {
    max-width: 100%;
    position: absolute;
    right: 0;
    top: 330%;
    z-index: 1;
}

.cards .card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.cards .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.cards .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    color: white;
}

.cards .card h4 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.cards .content-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 0;
}

.cards .content-row p {
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
    margin-right: 1rem;
}

.cards .content-row img {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
}

.footer-addresses {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    color: #ccc;
}

.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    flex-direction: column;
}

.footer-address i {
    font-size: 1.5rem;
}

.footer span, .footer-phone a {
    font-size: 1.125rem;
    color: #fff;
    text-decoration: none;
}

.footer-follow-section {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.footer-follow-text {
    color: #aaa;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-follow-section .footer-social {
    display: flex;
    justify-content: flex-end;
    margin-top: 0;
}

.footer-waitlist-link {
    display: flex;
    justify-content: flex-end;
}

.footer-waitlist-link a {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1.125rem;
}

.footer-waitlist-link a:hover {
    color: #16d3ca;
}

@media (max-width: 1024.9px) {
    .logo-img {
        height: 40px;
        width: auto;
    }

    .logo-text {
        font-size: 1rem;
    }

    .nav-link {
        font-size: 0.75rem !important;
    }

    .navbar-actions .start-for-free-btn, .navbar-actions .request-demo-btn {
        padding: 0 1rem;
        font-size: 10px;
    }

    .cards .card-body {
        padding: .5rem;
    }

    .greenball-side-left-top {
        top: 200%;
    }

    .start-for-free-btn, .request-demo-btn {
        padding: .4rem 1.75rem;
    }
}

@media (max-width: 768px) {
    /* Mobile Responsiveness for Homepage */
    .header-btn {
        display: flex;
        flex-direction: column;
        margin-top: 1rem;
    }

    .header h1 {
        font-size: 30px;
    }

    .header h3, .insights-mobile h5 {
        font-size: 12px;
        line-height: 20px;
        padding: 0rem 2rem;
    }

    .header h1, .value-proposition h3, .differentiation h2, .bottom h2 {
        font-size: 2rem;
    }

    .value-proposition, .differentiation {
        padding: 2rem 1rem;
    }

    .value-proposition-content {
        padding-top: 2rem;
    }

    .value-title {
        font-size: 12px;
    }

    .value-description {
        font-size: 11px;
        line-height: 20px;
    }

    .value-boxes {
        min-height: 300px;
        margin-top: 1rem;
    }

    .value-box {
        padding: 1rem;
        justify-content: center;
    }

    .value-box.active .value-description {
        margin-top: 0;
    }

    .cards .card-body {
        padding: 1rem;
    }

    .cards .card h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .cards .content-row p {
        font-size: 0.8rem;
    }

    .cards .content-row img {
        width: 20px;
        height: 20px;
    }

    .cards-mobile .row {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
    }

    .cards-mobile .col-6 {
        padding-left: 0.25rem;
        padding-right: 0.25rem;
        flex: 0 0 50%;
        max-width: 50%;
    }

    .card-mobile {
        border: none;
        border-radius: 12px;
        overflow: hidden;
        transition: all 0.3s ease;
        min-height: 200px;
        position: relative;
    }

    .card-mobile:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    }

    .card-body-mobile {
        padding: .5rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        height: 100%;
        background: rgba(0, 0, 0, 0.4);
        color: white;
        position: relative;
        z-index: 2;
    }

    .card-body-mobile h4 {
        color: #2BD7BD;
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 0.5rem;
    }

    .card-body-mobile h4[style*="color: #1AB3C5"] {
        color: #1AB3C5 !important;
    }

    .content-row-mobile {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 0;
    }

    .content-row-mobile p {
        margin: 0;
        font-size: 10px;
        font-weight: 500;
        line-height: 16px;
    }

    .content-row-mobile img {
        width: 40px;
        height: 40px;
    }

    .greenball-side {
        display: none;
    }

    .differentiation-content {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .differentiation h3 {
        font-size: 12px;
        font-weight: 600;
        line-height: 20px;
    }

    .differentiation-img {
        margin-top: 2rem;
    }

    .logos-wrapper {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .insights-mobile h3, .cards-mobile h3 {
        background: linear-gradient(90deg, #16D3CA 10%, #1AB3C5 20%, #2BD7BD 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        font-weight: 800;
        text-align: center;
    }

    .insights-mobile h5 {
        text-align: center;
        padding: 0rem 1rem
    }

    .insights-card {
        height: 500px;
    }

    .insights-card h4 {
        font-size: 12px;
        line-height: 20px;
        height: 60px;
    }

    .insights-content-row a:first-child {
        font-size: 7px;
        line-height: 30px;
    }

    /* Mobile Insights */
    .insights-mobile {
        padding: 4rem 0;
        background: #0a0a0a;
    }

    .insights-mobile .row {
        margin: 0;
        display: flex;
        flex-wrap: wrap;
        width: 100%;
    }

    .insights-mobile .col-6 {
        padding-left: 0.5rem;
        padding-right: 0.5rem;
        padding-bottom: 1rem;
        flex: 0 0 50%;
        max-width: 50%;
        width: 50%;
    }

    .insights-card-mobile {
        background: #272727;
        background: linear-gradient(163deg, rgba(0, 0, 0, 0) 0%, rgba(26, 179, 197, 0.20) 100%), #272727;
        border: 1px solid #333;
        border-radius: 12px;
        height: 100%;
        min-height: 250px;
        transition: all 0.3s ease;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }

    .insights-card-mobile:hover {
        border-color: #16D3CA;
        box-shadow: 0 0 20px rgba(22, 211, 202, 0.1);
        transform: translateY(-5px);
    }

    .insights-card-body-mobile {
        padding: 1rem .5rem .5rem .5rem;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .insights-card-mobile h4 {
        color: #2BD7BD;
        font-weight: 700;
        margin-bottom: 0;
        text-align: left;
        font-size: 14px;
        line-height: 20px;
    }

    .insights-title-cyan-mobile {
        color: #1AB3C5 !important;
    }

    .insights-content-row-mobile {
        display: flex;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 0;
        gap: 0.5rem;
        margin-top: auto;
    }

    .insights-link-mobile {
        color: #ffffff;
        text-decoration: none;
        font-weight: 500;
        font-size: 10px;
        transition: color 0.3s ease;
    }

    .insights-link-mobile:hover {
        color: #16D3CA;
    }

    .insights-image-mobile {
        width: 100%;
        height: 150px;
        object-fit: cover;
        border-radius: 8px;
        margin-top: .5rem;
    }

    /* Mobile Bottom Section */
    .container.bottom-mobile {
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
    }

    .container.bottom-mobile::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-image: linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
        background-size: 150px 100px;
        background-position: 0 0, 0 0;
        opacity: 0.3;
        pointer-events: none;
        z-index: 1;
    }

    .bottom-card-mobile::after {
        content: '';
        position: absolute;
        top: -100%;
        left: 50%;
        transform: translateX(-50%);
        width: 60%;
        height: 200%;
        background: radial-gradient(ellipse, #2BD7BD 0%, rgba(26, 179, 197, 0.2) 50%, transparent 70%);
        z-index: 2;
        pointer-events: none;
    }

    .bottom-card-mobile {
        border-radius: 5px;
        padding: 3rem 1.5rem;
        text-align: center;
        max-width: 350px;
        width: 100%;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        position: relative;
        overflow: hidden;
        z-index: 3;
    }

    .bottom-card-mobile h2 {
        font-size: 15px;
        font-weight: 800;
        position: relative;
        z-index: 4;
    }

    .bottom-buttons-mobile {
        display: flex;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 4;
    }

    .start-for-free-btn {
        font-size: 12px;
        padding: 0.7rem 1.4rem;
        border-radius: 30px;
        box-shadow: 0px 0px 22px rgba(242, 242, 242, 0.50) inset;
        backdrop-filter: blur(12px);
    }

    .request-demo-btn {
        background: linear-gradient(90deg, rgba(43, 215, 189, 0.50) 0%, rgba(26, 179, 197, 0.50) 100%);
        box-shadow: 7px 7px 10px rgba(43, 215, 189, 0.40) inset;
        font-size: 12px;
        padding: .5rem 1rem;
        padding: 0.7rem 1.4rem;
        border-radius: 30px;
    }


    .bottom-buttons {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .bottom-buttons .start-for-free-btn,
    .bottom-buttons .request-demo-btn {
        width: 150px;
        z-index: 3;
    }

    .footer-follow-section {
        align-items: flex-start;
    }

    .footer-follow-section .footer-social {
        justify-content: flex-start;
    }

    .footer-waitlist-link {
        justify-content: flex-start;
    }

    .footer-addresses {
        font-size: .85rem;
    }
}

