@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

:root {
    --primary-orange: #F59F0A;
    --primary-orange-hover: #e58210;

    --secondary-teal: #111111;
    --secondary-teal-hover: #222222;

    --bg-light: #f5f5f5;
    --bg-white: #ffffff;

    --text-dark: #111111;
    --text-gray: #6b7280;

    --border-color: #e5e7eb;

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.12);

    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    overflow-x: hidden;
    scroll-padding-top: 110px;
    /* Offset for anchor links with fixed header */
}

body {
    font-family: 'Roboto', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    width: 100%;
    padding-top: 110px;
    /* Space for fixed navbar-wrapper (top-bar + navbar) */
    overflow-x: hidden;
    /* Prevent horizontal scrolling */
}

@media (max-width: 991px) {
    body {
        padding-top: 90px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 100%;
    /* Ensure containers do not exceed screen width */
    margin: 0 auto;
    padding: 0 1.5rem;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2.2rem;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    text-align: center;
    font-size: 1rem;
}

.btn-primary {
    background: #F59F0A;
    color: white;
    border-color: var(--primary-orange);
    border-radius: 8px;
}

.btn-primary:hover {
    background: #F59F0A;
    border-color: var(--primary-orange-hover);
}

.btn-outline {
    border-radius: 8px;
    border: 1px solid var(--primary-orange);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: transparent;
}

.btn-outline:hover {
    background-color: var(--primary-orange);
    color: white;
}

/* Hero Section Specific Button Styling */
.hero-section .btn-outline {
    border-color: rgba(255, 255, 255, 0.4);
    color: white;
}

.hero-section .btn-outline:hover {
    background-color: #F59F0A;
    color: white;
    border-color: #F59F0A;
}

section {
    padding: 3rem 0;
}

h1,
h2,
h3,
h4 {
    color: var(--text-dark);
    margin-bottom: 1rem;
}

p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.text-orange {
    color: var(--primary-orange) !important;
}

.text-dark {
    color: var(--text-dark) !important;
}

.opacity-50 {
    opacity: 0.5 !important;
}

.icon-primary {
    color: var(--primary-orange);
}

.icon-sm {
    width: 20px;
    height: 20px;
}

.icon-md {
    width: 32px;
    height: 32px;
}

.icon-xs {
    width: 18px;
    height: 18px;
}

.bg-teal {
    background-color: var(--secondary-teal) !important;
}

.contact-bg-gradient {
    background: radial-gradient(circle at 10% 20%, rgba(244, 123, 32, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.textarea-v3 {
    height: 120px !important;
    resize: none !important;
}

.select-v3 {
    appearance: none !important;
}

.font-size-sm {
    font-size: 0.95rem;
}

.ls-1 {
    letter-spacing: 1px;
}

.section-subtitle {
    color: #F59F0A;
    text-align: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 700;
    line-height: 16px;
    /* 133.333% */
    letter-spacing: 2.4px;
    text-transform: uppercase;
}

.section-header p {
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
}

/* Navbar Styles */
.navbar-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    width: 100%;
    background: white;
}

.navbar {
    background-color: transparent;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 1rem 0;
}

.navbar-wrapper.scrolled {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.navbar-wrapper.scrolled .navbar {
    padding: 0.7rem 0;
    background-color: rgba(255, 255, 255, 0.95);
}

.navbar-wrapper.scrolled .top-bar {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
}

.top-bar {
    background-color: #F69320;
    color: white;
    text-align: center;
    padding: 0.6rem 0;
    font-size: 0.875rem;
    font-weight: 500;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    max-height: 100px;
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 0 auto;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: bold;
    font-size: 1.5rem;
    color: var(--secondary-teal);
}

.navbar-brand:hover {
    color: var(--secondary-teal);
}

.navbar-menu {
    display: flex;
    align-items: center;
}

.navbar-nav .nav-link {
    color: rgba(17, 17, 17, 0.70);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-orange);
}

.navbar-nav .nav-link.active {
    color: var(--primary-orange) !important;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-orange);
    border-radius: 2px;
}

/* Navbar mobile toggle logic moved to mobile-nav.css */

/* Footer Styles */
.footer {
    background-color: #111111;
    color: #FFFFFF;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-text {
    color: #94A3B8;
    font-size: 0.95rem;
    line-height: 1.6;
    max-width: 250px;
}

.footer-heading {
    color: #FFFFFF;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    list-style: none;
    padding-left: 0;
}

.footer-list li a {
    color: #94A3B8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.footer-list li a:hover {
    color: var(--primary-orange);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 36px;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    color: #64748B;
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    background-color: #111111;
    background-image: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Cpath d='M0 40L40 0M-10 10L10-10M30 50L50 30' stroke='%23fff' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
    background-repeat: repeat;
    background-size: 40px 40px;
    padding: 8rem 0;
}

.hero-content {
    text-align: center;
}

.hero-title {
    color: #FFF;
    text-align: center;
    font-size: 60px;
    font-style: normal;
    font-weight: 800;
    line-height: 60px;
    /* 100% */
}

.hero-subtitle {
    color: rgba(255, 255, 255, 0.80) !important;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 28px;
    /* 155.556% */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-preview {
    margin: 4rem auto 0;
    background: var(--bg-white);
    padding: 1rem;
    border-radius: 10px;
    box-shadow: var(--shadow-md);
    max-width: 1000px;
}

.hero-preview-box {
    background-color: #f1f5f9;
    border-radius: 5px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trusted-section {
    background: var(--bg-white);
    padding: 60px 0;
}

.trusted-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.trusted-logos img {
    height: 40px;
    /* opacity: 0.6;
    filter: grayscale(100%); */
    transition: var(--transition);
}

.trusted-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
}


.testimonial-section {
    background: #F8F8F8;
    padding: 100px 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: #FFFFFF;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #F1F5F9;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
}

.testimonial-quote {
    color: #F59F0A;
    width: 32px;
    height: 32px;
    stroke-width: 2.5px;
    margin-bottom: 25px;
    opacity: 0.8;
}

.testimonial-card p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 25px;
}

.testimonial-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 4px;
}

.testimonial-card span {
    color: #64748B;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Swiper Pagination dots */
.swiper-pagination-bullet {
    background: #000 !important;
    opacity: 0.3 !important;
}

.swiper-pagination-bullet-active {
    background: #000 !important;
    opacity: 1 !important;
}

@media (max-width: 991px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        padding: 30px;
    }
}

.usecase-section {
    padding: 80px 0;
    background: #F8F8F8;
}

.usecases-container {
    max-width: 1000px;
    margin: 3.5rem auto 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.usecase-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
}

.usecase-pill {
    padding: 13px 25.449px 13px 25px;
    background: rgba(246, 147, 32, 0.05);
    border: 1px solid rgba(246, 147, 32, 0.3);
    border-radius: 25px;
    color: #F69320;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.usecase-pill i {
    font-size: 1.1rem;
    stroke-width: 2.5px;
}

.usecase-pill:hover,
.usecase-pill.active {
    background: #F69320;
    color: white;
    border-color: #F69320;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(246, 147, 32, 0.2);
}

.usecase-pill:hover .tooltip-v3,
.usecase-pill.active .tooltip-v3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Premium Tooltip */
.tooltip-v3 {
    position: absolute;
    bottom: calc(100% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: #111111;
    color: white;
    padding: 1.5rem 1.8rem;
    border-radius: 12px;
    width: 320px;
    text-align: left;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.4);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.usecase-pill:hover .tooltip-v3 {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.tooltip-v3::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 10px;
    border-style: solid;
    border-color: #111111 transparent transparent transparent;
}

.tooltip-v3 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.6rem;
    color: #FFFFFF;
    line-height: 1.3;
}

.tooltip-v3 p {
    font-size: 0.9rem;
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 0;
    font-weight: 400;
}

/* Icon */

.usecase-icon {
    min-width: 55px;
    height: 55px;
    border-radius: 14px;
    background: linear-gradient(135deg,
            rgba(255, 107, 0, 0.15),
            rgba(255, 140, 66, 0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.usecase-item:hover .usecase-icon {
    background: var(--primary-orange);
    color: white;
}

/* Content */

.usecase-content h3 {
    font-size: 1.35rem;
    margin-bottom: 6px;
    font-weight: 600;
}

.usecase-content p {
    margin: 0;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Responsive */




.deliverability-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.deliverability-list {
    list-style: none;
    padding: 0;
}

.deliverability-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
}

.deliverability-list i {
    color: var(--primary-orange);
}

.deliverability-box {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.deliverability-box:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.faq-section {
    background-color: #FFFFFF;
    padding: 100px 0;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-accordion .accordion-item {
    border: 1px solid #F1F5F9;
    border-radius: 12px !important;
    margin-bottom: 16px;
    overflow: hidden;
    background: #FFFFFF;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
    border-color: rgba(245, 159, 10, 0.2);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.faq-accordion .accordion-button {
    font-weight: 600;
    padding: 20px 24px;
    color: #111111;
    background-color: #FFFFFF;
    border: none;
    font-size: 1rem;
}

.faq-accordion .accordion-button:focus {
    box-shadow: none;
    background-color: #FFFFFF;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background-color: var(--primary-orange);
    color: #FFFFFF;
    box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed)::after {
    filter: brightness(0) invert(1);
}

.faq-accordion .accordion-button::after {
    background-size: 1.2rem;
    transition: transform 0.3s ease;
}

.faq-accordion .accordion-body {
    padding: 24px;
    color: #64748B;
    line-height: 1.6;
    font-size: 0.95rem;
    background-color: #fcfcfc;
}


/* Feature Section */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.display-5 {
    font-size: clamp(1.75rem, 6vw, 3rem);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.feature-card {
    border-radius: 8px;
    border: 1px solid #E1E7EF;
    background: #FFFDFC;
    padding: 1.5rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(17, 17, 17, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: all 0.3s ease;
    text-align: left;
    display: flex !important;
    flex-direction: column;
}

.feature-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 20px 40px rgba(245, 159, 10, 0.08);
    border-color: rgba(245, 159, 10, 0.2); */
}

.feature-icon-box {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    color: #F59F0A;
}

.feature-icon-box-icon {
    color: var(--primary-orange);
    width: 32px !important;
    height: 32px !important;
}

/* How It Works v2 */
.how-it-works-v2 {
    background-color: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.steps-flow-container {
    position: relative;
    max-width: 1100px;
    margin: 60px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

/* Connecting Dashed Line */
.steps-flow-container::before {
    content: '';
    position: absolute;
    top: 28px;
    /* Center of the icon box */
    left: 10%;
    right: 10%;
    height: 2px;
    border-top: 2px dashed rgba(245, 159, 10, 0.3);
    z-index: 1;
}

.step-item-v2 {
    position: relative;
    z-index: 2;
    flex: 1;
    text-align: center;
    padding: 0 15px;
}

.step-icon-box-v2 {
    width: 56px;
    height: 56px;
    background: rgba(245, 159, 10, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(245, 159, 10, 0.1);
    color: #F69320;
}

.step-item-v2:hover .step-icon-box-v2 {
    background: rgba(245, 159, 10, 0.15);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(245, 159, 10, 0.1);
}

.step-icon-box-v2 i {
    color: #F59F0A;
    width: 28px;
    height: 28px;
    stroke-width: 2px;
}

.step-content-v2 h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 12px;
}

.step-content-v2 p {
    font-size: 0.95rem;
    color: #64748B;
    line-height: 1.6;
    max-width: 220px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .steps-flow-container {
        flex-direction: column;
        gap: 50px;
        align-items: center;
    }

    .steps-flow-container::before {
        display: none;
    }
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 100px 0;
    background-color: #F8F8F8;
}

.infra-list {
    padding-left: 0;
    margin-top: 2rem;
}

.infra-list li {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 1.2rem;
    font-size: 1rem;
    color: #4B5563;
    font-weight: 500;
}

.infra-list i {
    color: #F59F0A;
    width: 20px;
    height: 20px;
    stroke-width: 2.5px;
}

.infra-feature-card {
    border-radius: 12px;
    border: 1px dashed #F69320;
    background: rgba(246, 147, 32, 0.10);
    padding: 4rem 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.infra-feature-card:hover {
    background: rgba(245, 159, 10, 0.07);
    border-color: rgba(245, 159, 10, 0.4);
    transform: translateY(-5px);
}

.infra-feature-card i {
    color: #F59F0A;
    width: 60px;
    height: 60px;
    stroke-width: 1.5px;
    margin-bottom: 1rem;
}

.mail-icon {
    height: 60px;
    width: 60px;
    color: #F69320;
}

.infra-feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111111;
    margin-bottom: 0.5rem;
    margin-top: 1rem;
}

.infra-feature-card p {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.6;
    max-width: 320px;
    margin: 0 auto;
}

@media (max-width: 991px) {
    .infrastructure-section {
        padding: 60px 0;
    }

    .infra-feature-card {
        margin-top: 3rem;
        padding: 3rem 1.5rem;
    }
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background-color: #FFFFFF;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.why-card-v2 {
    background: #FFFFFF;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 21px 21.9px 23px 28.09px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 180px;
}

.why-card-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border-color: rgba(245, 159, 10, 0.2);
}

.why-number-badge {
    width: 45px;
    height: 45px;
    border-radius: 9999px;
    background: rgba(245, 159, 10, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #F59F0A;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.why-card-v2 p {
    color: #111;
    text-align: center;
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    /* 142.857% */
}

@media (max-width: 1199px) {
    .why-choose-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 767px) {
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}



/* Pricing Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.pricing-card {
    background-color: var(--bg-white);
    padding: 3rem 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    transition: var(--transition);
}

.pricing-card.highlight {
    box-shadow: var(--shadow-md);
    border: 2px solid var(--primary-orange);
    transform: scale(1.05);
    z-index: 1;
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-orange);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: bold;
}

.pricing-tier {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2rem;
    font-weight: bold;
    color: var(--secondary-teal);
    margin-bottom: 1rem;
}

.pricing-list {
    margin-bottom: 2.5rem;
}

.pricing-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

/* Contact Styles */
.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--bg-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

/* --- Phase 3: Premium Redesign Styles --- */

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    /* box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07); */
}

.contact-item-v2 {
    padding: 1.5rem;
    border-radius: 1.25rem;
    background: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid var(--border-color);
}

.contact-item-v2:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-orange);
}

.icon-box-v2 {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 1rem;
    background: linear-gradient(135deg, rgba(244, 123, 32, 0.1) 0%, rgba(52, 91, 99, 0.1) 100%);
    color: var(--primary-orange);
    transition: all 0.3s ease;
}

.contact-item-v2:hover .icon-box-v2 {
    background: var(--primary-orange);
    color: white;
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 8px 20px rgba(255, 107, 0, 0.3);
}

.form-group-v3 {
    margin-bottom: 0.5rem;
    text-align: left;
}

.form-label-v3 {
    display: block;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    font-size: 1rem;
}

.form-label-v3 .required {
    color: #ff4d4f;
    margin-left: 2px;
}

.input-wrapper-v3 {
    position: relative;
    display: flex;
    align-items: center;
}

.form-control-v3 {
    width: 100%;
    padding: 0.3rem 3.0rem 0.3rem 1.0rem;
    border: 1px solid #d9d9d9;
    border-radius: 10px;
    font-size: 1rem;
    color: #333;
    transition: all 0.3s ease;
    background: white;
}

.form-control-v3:focus {
    border-color: var(--primary-orange);
    background-color: #f0f7ff;
    outline: none;
    box-shadow: 0 0 0 2px rgba(244, 123, 32, 0.1);
}

.input-icon-v3 {
    position: absolute;
    right: 1.25rem;
    color: var(--text-dark);
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #eee;
    padding-left: 1rem;
    height: 60%;
}

.btn-premium {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #ff9a44 100%);
    border: none;
    color: white;
    font-weight: 700;
    letter-spacing: 0.5px;
    padding: 1rem 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(244, 123, 32, 0.3);
}

.btn-premium:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 123, 32, 0.4);
    background: linear-gradient(135deg, #ff9a44 0%, var(--primary-orange) 100%);
}

.btn-premium:active {
    transform: translateY(0);
}

/* Restoring/Enhancing sections */
.contact-form-card {
    background-color: var(--bg-white);
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border-radius: 5px;
    border: 1px solid var(--border-color);
    outline: none;
    font-size: 1rem;
}

/* About Styles */
.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.about-card {
    background-color: var(--bg-white);
    padding: 3rem;
    border-radius: 15px;
    box-shadow: var(--shadow-sm);
}

.mission-box {
    border-top: 1px solid var(--border-color);
    padding-top: 2rem;
    margin-top: 1rem;
    text-align: center;
}

/* --- New visual enhancements --- */

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-badge {
    background-color: var(--primary-orange);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.75rem;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.page-hero {
    position: relative;
    background-size: 40px 40px;
    background-position: center;
    color: white;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* .hero-bg-image {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 0h40v40H0z' fill='none'/%3E%3Cpath d='M0 40L40 0M-10 10L10-10M30 50L50 30' stroke='%23fff' stroke-width='0.5' stroke-opacity='0.05'/%3E%3C/svg%3E");
} */

/* Unused hero classes removed */

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slide-down {
    animation: slideInDown 0.5s ease-out forwards;
}

.reveal {
    background-color: #FFF;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Dashboard Preview Section Styles */
.dashboard-nav {
    gap: 1rem;
}

.dashboard-nav .nav-link {
    background-color: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border-color);
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    border-radius: 2rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
}

.dashboard-nav .nav-link:hover {
    color: var(--primary-orange);
    border-color: var(--primary-orange);
}

.dashboard-nav .nav-link.active {
    background-color: var(--primary-orange) !important;
    color: white !important;
    border-color: var(--primary-orange);
    box-shadow: 0 4px 12px rgba(244, 123, 32, 0.2);
}

.dashboard-tab-content {
    border: 1px solid rgba(17, 17, 17, 0.2);
}

.text-primary-orange {
    color: var(--primary-orange);
}

.dashboard-mockup-wrapper {
    position: relative;
    padding: 10px;
    border: 1px solid rgba(17, 17, 17, 0.05);
    /* background: linear-gradient(135deg, rgba(244, 123, 32, 0.1) 0%, rgba(52, 91, 99, 0.1) 100%); */
    border-radius: 1rem;
}

.dashboard-mockup-wrapper img {
    width: 100%;
    height: auto;
    max-width: 100%;
    border: 5px solid white;
}

@media (max-width: 991px) {
    .dashboard-nav {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .dashboard-nav .nav-link {
        padding: 0.5rem 1rem;
        font-size: 0.875rem;
    }
}

/* CTA Section Styles */
.cta-section {
    background-color: #F69320;
    padding: 80px 0 !important;
    text-align: center;
    color: white;
}

.cta-section .btn-cta {
    background-color: #111111;
    color: #FFFFFF;
    font-weight: 600;
    padding: 14px 34px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 0.95rem;
}

.cta-section .btn-cta:hover {
    background-color: #222222;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    color: #FFFFFF;
}

.capabilities-section {
    padding: 90px 0;
    background: var(--bg-light);
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    margin-top: 50px;
}

.capability-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px 20px;
    background: white;
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.capability-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.capability-item i {
    color: var(--primary-orange);
    width: 20px;
    height: 20px;
}

.values-section {
    padding: 100px 0;
    background: #fafafa;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.mission-box-premium {
    background: white;
    padding: 40px !important;
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary-orange);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition);
}

.mission-box-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-item {
    background: white;
    padding: 50px 35px;
    border-radius: 24px;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.value-item:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(255, 107, 0, 0.2);
}

.value-icon-box {
    width: 72px;
    height: 72px;
    background: #fff9f5;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-orange);
    box-shadow: inset 0 0 0 1px rgba(255, 107, 0, 0.1);
    transition: all 0.3s ease;
}

.value-item:hover .value-icon-box {
    background: var(--primary-orange);
    color: white;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(255, 107, 0, 0.3);
}

.value-icon-box i {
    width: 32px;
    height: 32px;
}

.value-item h4 {
    margin-bottom: 15px;
    font-weight: 800;
    color: var(--secondary-teal);
    font-size: 1.4rem;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 0;
}

/* Premium Legal Pages Design */
.legal-bg-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.legal-blob {
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.05) 0%, rgba(255, 255, 255, 0) 70%);
    border-radius: 50%;
    filter: blur(60px);
}

.legal-blob-1 {
    top: -100px;
    right: -100px;
}

.legal-blob-2 {
    bottom: -100px;
    left: -100px;
    background: radial-gradient(circle, rgba(13, 110, 253, 0.03) 0%, rgba(255, 255, 255, 0) 70%);
}

.legal-quick-nav {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin-bottom: 36px;
}

.quick-nav-card {
    background: white;
    padding: 25px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.quick-nav-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.1);
    border-color: var(--primary-orange);
}

.quick-nav-card i {
    color: var(--primary-orange);
    transition: transform 0.3s ease;
}

.quick-nav-card:hover i {
    transform: scale(1.1);
}

.quick-nav-card span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.premium-legal-card {
    background: white;
    padding: 25px;
    border-radius: 30px;
    border: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.premium-legal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 6px;
    height: 100%;
    background: var(--primary-orange);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.premium-legal-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.premium-legal-card:hover::before {
    opacity: 1;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 12px;
}

.legal-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-orange);
}

.premium-legal-card h3 {
    margin-bottom: 0;
    font-weight: 800;
    color: var(--secondary-teal);
    font-size: 1.5rem;
}

.legal-body-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #556070;
}

.legal-list-v3 {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

.legal-list-v3 li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 6px;
    font-size: 1.1rem;
    color: #556070;
}

.legal-list-v3 li i {
    position: absolute;
    left: 0;
    top: 5px;
    color: var(--primary-orange);
}

.fs-5 {
    font-size: 1rem !important;
}

















/* media  */
/* 1920 */
/* @media (max-width: 1920px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + 4px);
    }

    .hero-title {
        font-size: calc(3.5rem + 4px);
    }

    h2.display-5 {
        font-size: calc(3rem + 4px);
    }

    .pricing-amount {
        font-size: calc(2rem + 4px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1.5rem + 4px);
    }

    .btn {
        padding: calc(0.25rem + 2px) calc(1.1rem + 2px);
        font-size: calc(1rem + 4px);
    }

    section {
        padding: calc(3rem + 4px) 0;
    }

    .hero-section {
        padding: calc(8rem + 8px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1.5rem + 4px);
    }

    .container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 2rem;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        gap: 0.8rem;
        font-weight: bold;
        font-size: 2rem;
        color: var(--secondary-teal) #111111;
    }

    .container.text-center {
        font-size: calc(1rem + 4px);
    }

    .h4,
    h4 {
        font-size: 1.75rem;
    }
} */

/* 1700 */
/* @media (max-width: 1700px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + 2px);
    }

    .hero-title {
        font-size: calc(3.5rem + 4px);
    }

    h2.display-5 {
        font-size: calc(3rem + 4px);
    }

    .pricing-amount {
        font-size: calc(2rem + 4px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1.5rem + 2px);
    }

    .btn {
        padding: calc(0.45rem + 2px) calc(1.5rem + 2px);
        font-size: calc(1rem + 2px);
    }

    section {
        padding: calc(3rem + 4px) 0;
    }

    .hero-section {
        padding: calc(8rem + 8px) 0;
    }


    .container.text-center {
        font-size: calc(1rem + 2px);
    }

} */

/* 1679 */
@media (max-width: 1679px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + 1px);
    }

    .hero-title {
        font-size: calc(3rem + 2px);
    }

    h2.display-5 {
        font-size: calc(2.6rem + 2px);
    }

    .pricing-amount {
        font-size: calc(1.8rem + 2px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1rem + 0px);
    }

    .btn {
        padding: calc(0.45rem + 1px) calc(1.5rem + 1px);
        font-size: calc(1rem + 1px);
    }

    section {
        padding: calc(2.6rem + 2px) 0;
    }

    .hero-section {
        padding: calc(7.5rem + 4px) 0;
    }

    /* .feature-card,
    .pricing-card {
        padding: calc(2.3rem + 2px);
    } */

    .container.text-center {
        font-size: calc(1rem + 1px);
    }

    .navbar-brand {
        font-size: 1.8rem;
    }

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px !important;
    }
}

/* 1499 */
@media (max-width: 1499px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + 1px);
    }

    .hero-title {
        font-size: calc(3.4rem + 1px);
    }

    h2.display-5 {
        font-size: calc(2.5rem + 1px);
    }

    .pricing-amount {
        font-size: calc(1.7rem + 1px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1.5rem + 0px);
    }

    .btn {
        padding: calc(0.45rem + 1px) calc(1.5rem + 1px);
        font-size: calc(1rem + 1px);
    }

    section {
        padding: calc(2.6rem + 1px) 0;
    }

    .hero-section {
        padding: calc(7.3rem + 2px) 0;
    }

    /* .feature-card,
    .pricing-card {
        padding: calc(2.2rem + 1px);
    } */

    .container.text-center {
        font-size: 1rem;
    }

    .navbar-brand {
        font-size: 1.7rem;
    }
}

/* 1439 */
@media (max-width: 1439px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + -1px);
    }

    .hero-title {
        font-size: calc(3.5rem + -2px);
    }

    h2.display-5 {
        font-size: calc(3rem + -2px);
    }

    .pricing-amount {
        font-size: calc(2rem + -2px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1.5rem + -1px);
    }

    .btn {
        padding: calc(0.45rem + -1px) calc(1.5rem + -1px);
        font-size: calc(1rem + -1px);
    }

    section {
        padding: calc(3rem + -2px) 0;
    }

    .hero-section {
        padding: calc(8rem + -4px) 0;
    }

    /* .feature-card,
    .pricing-card {
        padding: calc(2.5rem + -2px);
    } */

    .navbar-brand {
        font-size: 1.4rem;
    }
}

@media (min-width: 1400px) {

    .container,
    .container-lg,
    .container-md,
    .container-sm,
    .container-xl,
    .container-xxl {
        max-width: 1320px !important;
    }
}

/* 1279 */
@media (max-width: 1279px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + -2px);
    }

    .hero-title {
        font-size: calc(2.8rem + -4px);
    }

    h2.display-5 {
        font-size: calc(2.6rem + -4px);
    }

    .pricing-amount {
        font-size: calc(1.8rem + -4px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1.4rem + -2px);
    }

    .btn {
        padding: calc(0.55rem + -2px) calc(1.6rem + -2px);
        font-size: calc(1.1rem + -2px);
    }

    section {
        padding: calc(2.5rem + -4px) 0;
    }

    .hero-section {
        padding: calc(7rem + -8px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1.5rem + -4px);
    }

    .navbar-brand {
        font-size: 1.2rem;
    }

    .hero-title {
        line-height: 50px;
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1rem + -2px);
    }

    .hero-subtitle {
        line-height: 23px;
    }
}

/* 1024 */
@media (max-width: 1024px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + -2px);
    }

    .hero-title {
        font-size: calc(2.3rem + -2px);
    }

    h2.display-5 {
        font-size: calc(1.6em + -4px);
    }

    .pricing-amount {
        font-size: calc(1.4rem + -4px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1.1rem + -2px);
    }

    .btn {
        padding: calc(0.42rem + -2px) calc(1.4rem + -2px);
        font-size: calc(0.9rem + -2px);
    }

    section {
        padding: calc(2.2rem + -4px) 0;
    }

    .hero-section {
        padding: calc(6.5rem + -8px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1.5rem + -2px);
    }

    .dashboard-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.4rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .hero-title,
    .hero-subtitle {
        margin-bottom: .8rem;

    }

    .py-3 {
        padding-top: .5rem !important;
        padding-bottom: .5rem !important;
    }

    .h4,
    h4 {
        font-size: 1.2rem;
    }

    .row>* {
        margin-top: 1.2rem;
        padding-right: .2rem;
        padding-left: 1rem;
    }

    .px-5 {
        padding-right: 1.5rem !important;
        padding-left: 1.5rem !important;
    }

    .fs-5 {
        font-size: 0.9rem !important;
    }

    .mb-3 {
        margin-bottom: .8rem !important;
    }

    .mb-4 {
        margin-bottom: 1rem !important;
    }

    .mb-5 {
        margin-bottom: 1.2rem !important;
    }

    .step-number {
        width: 55px;
        height: 55px;

        margin: 0 auto 1.2rem;
    }

    .p-md-5 {
        padding: 2rem !important;
    }

    .p-4 {
        padding: 1rem !important;
    }

    .container.text-center {
        font-size: .8rem;
    }

    .footer-list.ps-0 {
        padding-left: 0 !important;
    }

    .hero-title {
        line-height: 40px;
    }
}

/* 991 */
@media (max-width: 991px) {
    .enterprise-100 {
        width: 100% !important;
    }

    .enterprise-100 .step-number {
        width: 50px;
        height: 50px;

        margin: 0 auto 1rem;
    }

    .container,
    .py-5 {
        max-width: 1300px !important;
        margin: 0 auto;
        padding: 0 1.2rem;
    }

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + -2px);
    }

    .hero-title {
        font-size: calc(2.3rem + -2px);
    }

    h2.display-5 {
        font-size: calc(2.5rem + -4px);
    }

    .pricing-amount {
        font-size: calc(2.3rem + -2px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1.1rem + -2px);
    }

    .btn {
        padding: calc(0.45rem + -2px) calc(1.2rem + -2px);
        font-size: calc(1rem + -2px);
    }

    section {
        padding: calc(2.5rem + -4px) 0;
    }

    .hero-section {
        padding: calc(6rem + -8px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1rem + -4px);
    }

    .h4,
    h4 {
        font-size: 1.1rem;
    }

    p {
        margin-bottom: 1rem;
    }

    .row>* {
        margin-top: 1rem;
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .dashboard-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 100%;
        margin-bottom: 2rem;
    }

    .list-unstyled li {
        justify-content: center;
    }

    .footer-list.ps-0 {
        padding-left: 0 !important;
    }

    .ps-0 {
        padding-left: 1.8rem !important;
    }

    .cta-section .btn-cta {

        padding: .7rem 0rem;

    }

    .steps-flow-container {
        gap: 25px;
    }

    .steps-flow-container {
        margin: 36px auto 0;
    }

    .infra-feature-card {
        margin-top: 0rem;
    }

    .list-unstyled li {
        justify-content: start;
    }

    .testimonial-grid {
        grid-template-columns: repeat(1, 1fr);
    }

    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .navbar {
        padding: 0rem 0;
    }

    .usecase-section {
        padding: 50px 0;
    }

    .how-it-works-v2 {
        padding: 50px 0;
    }

    .infrastructure-section {
        padding: 50px 0;
    }

    .why-choose-section {
        padding: 50px 0;
    }

    .testimonial-section {
        padding: 50px 0;
    }

    .faq-section {
        padding: 50px 0;
    }

    .cta-section {
        padding: 50px 0 !important;
    }

    .cta-section .btn-cta {
        padding: .7rem 0.5rem;
    }
}

@media (max-width: 768px) {
    .footer .row {
        display: flex;
        flex-wrap: wrap;
    }

    /* Target QUICK LINKS and LEGAL columns */
    .footer .row>div:nth-child(2),
    .footer .row>div:nth-child(3) {
        flex: 0 0 50%;
        max-width: 50%;
        margin-bottom: 2rem;
    }
}

/* 767 */
@media (max-width: 767px) {
    .ps-0 {
        padding-left: 1.6rem !important;
    }

    .container {
        max-width: 1300px;
        margin: 0 auto;
        padding: 0 1rem;
    }

    /* .container {

        padding: 0 .6rem;
    } */

    h1,
    h2,
    h3,
    h4,
    p {
        color: var(--text-dark);
        margin-bottom: .3rem;
    }

    .mb-3,
    .mb-4,
    .mb-5 {
        margin-bottom: .5rem !important;
    }

    .mb-4 {
        margin-bottom: .6rem !important;
    }

    .mb-5 {
        margin-bottom: .8rem !important;
    }

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + 0px);
    }

    .hero-title {
        font-size: calc(1.8rem + 2px);
    }

    h2.display-5 {
        font-size: calc(1.4rem + 2px);
    }

    .pricing-amount {
        font-size: calc(1.6rem + 2px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1.1rem);
    }

    .btn {
        padding: calc(0.45rem + 2px) calc(1.4rem + 2px);
        font-size: calc(.9rem + 2px);
    }

    section {
        padding: calc(1.4rem + 2px) 0;
    }

    .hero-section {
        padding: calc(2rem + 4px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1.6rem + 2px);
    }

    .dashboard-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 100%;
        margin-bottom: .6rem;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .btn {
        width: 100%;
        max-width: 350px;
    }

    .pricing-grid,
    .feature-grid,
    .steps-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-logo,
    .footer-social,
    .footer-contact-item {
        justify-content: start;
    }

    .step-number {
        width: 40px;
        height: 40px;
        margin: 0 auto .6rem;
    }

    .footer-brand-logo,
    .footer-social,
    .footer-contact-item {
        justify-content: start;
    }

    .btn {
        max-width: 200px;
    }
}

@media (max-width:768px) {

    .usecase-item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }

    .usecase-content {
        max-width: 500px;
    }

    .usecase-section {
        padding: 40px 0;
    }

    .deliverability-section {
        padding: 40px 0;
    }

    .faq-section {
        padding: 40px 0;
    }

    .capabilities-grid {
        gap: 10px;
    }

    .capabilities-section {
        padding: 40px 0;
    }

    .value-item {
        padding: 20px 18px;
    }

    .values-section {
        padding: 50px 0;
    }

    .hero-title {
        font-size: calc(1.5rem + 2px);
    }

    .hero-title {
        line-height: 34px;
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1rem);
    }

    /* .usecase-row {
        gap: 0.8rem;
    } */

    .usecases-container {
        margin: 1.5rem auto 0;
    }

    .infra-feature-card {
        padding: 1rem 0.5rem;
    }

    .btn {
        max-width: 160px;
    }

    .footer-text {
        padding-bottom: 10px;
        padding-top: 10px;
    }
}

/* 575 */
@media (max-width: 575px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + 1px);
    }

    .hero-title {
        font-size: calc(1.6rem + 1px);
    }

    h2.display-5 {
        font-size: calc(1.6rem + 1px);
    }

    .pricing-amount {
        font-size: calc(1.6rem + 1px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1rem + 0px);
    }

    .btn {
        padding: calc(0.45rem + 1px) calc(1.5rem + 1px);
        font-size: calc(1rem + 1px);
    }

    .container,
    .py-5 {

        padding: 0 .8rem;
    }

    section {
        padding: calc(.6rem + 1px) 0;
    }

    .hero-section {
        padding: calc(8rem + 2px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(2.5rem + 1px);
    }

    .dashboard-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 100%;
        margin-bottom: 1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: .6rem;
    }

    .btn {
        width: 54%;
        max-width: 200px;
    }

    .pricing-grid,
    .feature-grid,
    .steps-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-logo,
    .footer-social,
    .footer-contact-item {
        justify-content: start;
    }

    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-box {
        margin-bottom: .2rem;
    }

    .p-text {
        text-align: center
    }

    .feature-card.gap-4 {
        display: flex;
        flex-direction: column;
        align-items: center !important;
        text-align: center;
        justify-content: center;
        gap: 12px !important;
    }

    .usecase-section {
        padding: 40px 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1.5rem + 1px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(0.8rem + 0px);
    }

    .usecases-container {
        margin: 1.5rem auto 0;
    }

    .hero-section {
        padding: calc(3rem + 2px) 0;
    }

    h2.display-5 {
        font-size: calc(1.4rem + 1px);
    }

    .testimonial-card p {
        line-height: 1.5;
        margin-bottom: 12px;
    }

    .testimonial-quote {
        margin-bottom: 12px;
    }

    .usecase-row {
        gap: 0.6rem;
    }

    .usecases-container {
        gap: 0.6rem;
    }

    .steps-flow-container {
        margin: 20px auto 0;
    }

    .footer-text {
        padding-bottom: 20px;
        padding-top: 10px;
    }

    .footer-text {
        padding-bottom: 20px;
        padding-top: 10px;
    }
}

/* 524 */
@media (max-width: 524px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + -1px);
    }

    .hero-title {
        font-size: calc(1.3rem + -2px);
    }

    h2.display-5 {
        font-size: calc(1.5rem + -4px);
    }

    .pricing-amount {
        font-size: calc(1.3rem + -2px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1.2rem + -2px);
    }

    .btn {
        padding: calc(0.45rem + -1px) calc(1.5rem + -1px);
        font-size: calc(1rem + -1px);
    }

    section {
        padding: calc(1rem + -4px) 0;
    }

    .container,
    .py-5 {

        padding: 0 1rem;
    }

    .hero-section {
        padding: calc(5rem + -10px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1.5rem + -5px);
    }

    .dashboard-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 100%;
        margin-bottom: .6rem;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: .6rem;
    }

    .btn {
        width: 54%;
        max-width: 350px;
    }

    .pricing-grid,
    .feature-grid,
    .steps-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-logo,
    .footer-social,
    .footer-contact-item {
        justify-content: start;
    }

    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-box {
        margin-bottom: .2rem;
    }

    .contact-item-v2 {
        flex-direction: row;
        text-align: center;
        padding: 0.7rem;
        gap: 14px !important;
    }

    .container,
    .py-5 {
        padding: 0 .4rem;
    }

    .fs-5 {
        font-size: .9rem !important;
    }

    .lead {
        font-size: 1rem;
        font-weight: 300;
    }


    .display-4 {
        font-size: calc(1.2rem + 2vw);
        font-weight: 300;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(0.9rem + -2px);
    }

    .hero-title {
        line-height: 27px;
    }

    .usecases-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        width: 100%;
        margin-top: 2rem;
    }

    .usecase-row {
        display: contents;
        /* Children join the container grid */
    }

    .usecase-pill {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        padding: 20px 10px;
        height: 100%;
        border-radius: 16px;
        font-size: 0.85rem;
        white-space: normal;
        gap: 10px;
        background: white;
        border: 1px solid #eee;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
    }

    .usecase-pill i {
        font-size: 1.5rem;
        margin-bottom: 4px;
    }

    .usecase-pill.active {
        background: #F69320;
        color: white;
        border-color: #F69320;
        box-shadow: 0 8px 16px rgba(246, 147, 32, 0.3);
    }

    .tooltip-v3 {
        width: 260px;
        left: 50%;
        bottom: calc(100% + 15px);
        padding: 1.2rem;
    }

    .footer-bottom {
        margin-top: 10px;
    }

}

/* 479 */
@media (max-width: 479px) {
    .display-4 {
        font-size: calc(1.1rem + 1vw);
        font-weight: 300;
        line-height: 1.2;
    }

    .lead {
        font-size: .9rem;
        font-weight: 300;
    }

    .footer-heading {
        color: white;
        margin-bottom: 1rem;
    }

    .footer-bottom {
        padding-top: 1rem;

    }

    .footer-brand-logo {
        margin-bottom: .8rem;
    }

    .footer {
        background-color: var(--secondary-teal);
        color: white;
        padding: 1rem 0 1rem;
    }

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + -2px);
    }

    .hero-title {
        font-size: calc(1.45rem + -2px);
    }

    h2.display-5 {
        font-size: calc(1.6rem + -4px);
    }

    .pricing-amount {
        font-size: calc(1.45rem + -2px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(1rem + -1.5px);
    }

    .btn {
        padding: calc(0.45rem + -2px) calc(1.2rem + -2px);
        font-size: calc(1rem + -2px);
    }

    section {
        padding: calc(1.5rem + -4px) 0;
    }

    .hero-section {
        padding: calc(4rem + -10px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1.4rem + -5px);
    }

    .dashboard-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 100%;
        margin-bottom: .5rem;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: .6rem;
    }

    .btn {
        width: 54%;
        max-width: 350px;
    }

    .pricing-grid,
    .feature-grid,
    .steps-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-logo,
    .footer-social,
    .footer-contact-item {
        justify-content: start;
    }

    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-box {
        margin-bottom: .2rem;
    }

    .contact-item-v2 {
        flex-direction: row;
        text-align: center;
        padding: 0.7rem;
        gap: 14px !important;
    }

    .dashboard-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-nav .nav-link {
        width: 100%;
        justify-content: center;
    }

    .why-number-badge {
        margin-bottom: 10px;
    }

    .why-card-v2 {
        min-height: 130px;
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(0.8rem + -1.5px);
    }
}

/* 424 */
@media (max-width: 424px) {
    .lead {
        font-size: .99rem;
        font-weight: 300;
    }

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + -2.5px);
    }

    .hero-title {
        font-size: calc(1.5rem + -5px);
    }

    h2.display-5 {
        font-size: calc(1.4rem + -5px);
    }

    .pricing-amount {
        font-size: calc(1.1rem + -5px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(0.8rem + -3px);
    }

    .btn {
        padding: calc(0.45rem + -2px) calc(1.2rem + -2px);
        font-size: calc(1rem + -2px);
    }

    section {
        padding: calc(3rem + -5px) 0;
    }

    .hero-section {
        padding: calc(5rem + -10px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1.5rem + -5px);
    }

    .dashboard-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: center;
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 100%;
        margin-bottom: .6rem;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    /* .btn {
        width: 100%;
        max-width: 350px;
    } */

    .pricing-grid,
    .feature-grid,
    .steps-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-logo,
    .footer-social,
    .footer-contact-item {
        justify-content: start;
    }

    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-box {
        margin-bottom: .2rem;
    }

    .contact-item-v2 {
        flex-direction: row;
        text-align: center;
        padding: 0.7rem;
        gap: 14px !important;
    }

    .dashboard-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-nav .nav-link {
        width: 100%;
        justify-content: center;
    }

    .hero-subtitle {
        line-height: 18px;
    }
}

/* 374 */
@media (max-width: 374px) {

    body,
    p,
    .nav-link,
    .form-label-v3,
    .form-control-v3,
    .footer-text {
        font-size: calc(1rem + -2px);
    }

    .hero-title {
        font-size: calc(1.9rem + -5px);
    }

    h2.display-5 {
        font-size: calc(1.4rem + -5px);
    }

    .pricing-amount {
        font-size: calc(1.4rem + -5px);
    }

    .hero-subtitle,
    h3,
    h4,
    .pricing-tier,
    .step-number {
        font-size: calc(0.9rem + -3px);
    }

    .btn {
        padding: calc(0.45rem + -2px) calc(1.2rem + -2px);
        font-size: calc(1rem + -2px);
    }

    section {
        padding: calc(1.7rem + -5px) 0;
    }

    .hero-section {
        padding: calc(4rem + -10px) 0;
    }

    .feature-card,
    .pricing-card {
        padding: calc(1.4rem + -5px);
    }

    .dashboard-nav {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }

    .row.align-items-center {
        flex-direction: column;
        text-align: start;
    }

    .col-lg-5,
    .col-lg-6,
    .col-lg-7 {
        width: 100%;
        margin-bottom: .5rem;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: .6rem;
    }

    .btn {
        width: 54%;
        max-width: 350px;
    }

    .pricing-grid,
    .feature-grid,
    .steps-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand-logo,
    .footer-social,
    .footer-contact-item {
        justify-content: start;
    }

    .feature-card {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .feature-icon-box {
        margin-bottom: .2rem;
    }

    .contact-item-v2 {
        flex-direction: row;
        text-align: center;
    }

    .dashboard-nav {
        flex-direction: column;
        align-items: stretch;
    }

    .dashboard-nav .nav-link {
        width: 100%;
        justify-content: center;
    }

    .usecases-container {
        padding-right: 100px;
    }
}