/* =========================================
   CSS VARIABLES & RESET
   Identical to Search2Revenue design tokens
========================================= */
:root {
    --gray: #6B7280;
    --cyan: #00A8CC;
    --cyan-gradient: linear-gradient(to right, rgba(1, 180, 213, 1) 0%, rgba(7, 121, 183, 1) 51%, rgba(1, 180, 213, 1) 100%);
    --cyan-dark: #008AAB;
    --enfuse-blue: #01b4d5;
    --navy: #212d39;
    --navy-dark: #1a2530;
    --red-accent: #E63946;
    --bg-light: #F8FAFC;
    --bg-white: #FFFFFF;
    --text-dark: #111827;
    --text-light: #666666;
    --border: #E5E7EB;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --radius: 12px;
    --container: 90vw;
    --transition: all 0.3s ease;
    --dfont-size: 1.125rem;
    --tab-active-bg: #f0f9ff;
    --tab-active-border: #00A8CC;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

p, li {
    font-size: var(--dfont-size);
    margin: 0px;
}

* {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }



/* ==========================================
   Custom Page Scrollbar (same as S2R)
========================================== */
::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: #f5f5f5; border-radius: 10px; }
::-webkit-scrollbar-thumb { background: #00A8CC; border-radius: 10px; border: 2px solid #f5f5f5; }
::-webkit-scrollbar-thumb:hover { background: #0089a6; }
html { scrollbar-width: thin; scrollbar-color: #00A8CC #f5f5f5; }

/* =========================================
   UTILITIES & LAYOUT (same as S2R)
========================================= */
.container { max-width: var(--container); margin: 0 auto; }
.section { padding: 50px 0; }

.section-title {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--navy);
    margin: 0px 0px 1rem;
    line-height: 1.2;
}

.section-subtitle {
    color: var(--text-light);
    max-width: 70vw;
    margin-bottom: 2.5rem;
}

.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }
.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }

/* Buttons (same as S2R) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 20px;
    font-weight: 600;
    border-radius: 5px;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 1rem;
}

.btn-primary {
    background: var(--cyan-gradient);
    background-size: 200% auto;
    background-position: left center;
    color: #fff;
    border: none;
    border-radius: 5px;
    transition: background-position 0.5s ease, transform 0.3s ease !important;
}

.btn-primary:hover { background-position: right center; }

.btn-secondary {
    background: transparent;
    color: var(--navy);
    border-color: var(--navy);
}

.btn-secondary:hover { background: var(--navy); color: white; }

/* Animations (same as S2R) */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

ul { list-style: none; margin: 0; padding: 0; }

ul li {
position: relative;
padding-left: 32px;
margin-bottom: 12px;
color: var(--text-light);
line-height: 1.6;
}

ul li::before {
content: "\f192";
position: absolute;
left: 1px;
top: 1px;
font-size: 16px;
font-family: 'FontAwesome';
color: #1d4b7d;
}


/* =========================================
   HEADER & NAV (same as S2R)
========================================= */
header {
    position: sticky;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
    transition: var(--transition);
}

header.scrolled { box-shadow: var(--shadow); }

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
}

.logo { width: 250px; }
.nav-container .btn i { display: none; }

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

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
    transition: var(--transition);
}

.nav-links a:hover { color: var(--cyan); }

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--navy);
    cursor: pointer;
}

/* =========================================
   SECTION HIGHLIGHT TEXT (same as S2R)
========================================= */
.section-highlight-text {
    text-align: center;
    font-size: 20px;
    padding: 12px 0;
    margin: 50px auto 0px;
    border-block: 1px solid;
}

.section-highlight-text--dark {
    color: var(--text-dark);
    border-color: var(--cyan);
    width: 70vw;
}

.section-highlight-text--light {
    color: var(--bg-white);
    border-color: #fff;
    width: 60vw;
}

/* =========================================
   HERO SECTION (same as S2R)
========================================= */
.hero {
    padding: 40px 0px;
    background: url(/assets/image/inner-top-bg.png);
    position: relative;
    overflow: hidden;
    background-position: center;
    background-repeat: no-repeat;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.15) 0%, transparent 70%);
    border-radius: 50%;
}

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

.hero-content { position: relative; z-index: 1; }

.hero h1 {
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.1;
    color: var(--navy);
}

.hero p {
    color: var(--text-light);
    margin: 20px 0px 20px 0px;
    max-width: 700px;
}

.hero-bullets { margin: 1.5rem 0; }

.hero-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    flex-wrap: wrap;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.masthead-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
}

/* =========================================
   KPI COUNTER SECTION (adapted from S2R)
   Added: 6-item grid variant, icon badges
   for non-numeric trust signals.
========================================= */
.kpi-counter {
    background: var(--navy);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.kpi-counter::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 168, 204, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.kpi-counter::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(1, 180, 213, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.kpi-counter .container { position: relative; z-index: 1; }

.kpi-heading {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 1.5rem;
    padding: 0 1rem;
}

.kpi-heading h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
    margin: 0;
    letter-spacing: -0.02em;
}

/* 6-item KPI grid (EnFuse adaptation) */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
    position: relative;
}

.kpi-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.kpi-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.kpi-item {
    padding: 2rem 1.5rem;
    position: relative;
    transition: transform 0.3s ease;
}

.kpi-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.kpi-number {
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
}

.kpi-suffix {
    font-size: 3rem;
    margin-left: 0.25rem;
}

/* Icon badge for non-numeric KPI items */
.kpi-icon-badge {
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background: rgba(0, 168, 204, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.kpi-icon-badge i {
    font-size: 2.5rem;
    color: var(--cyan);
}

.kpi-label {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
    max-width: 220px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   PROBLEM/SOLUTION TAB SECTION (same as S2R)
========================================= */
.problem-solution {
    background: var(--bg-white);
    padding: 40px 0;
}

.section-header { margin-bottom: 3rem; }

.tab-container { max-width: 80vw; margin: 0 auto; }

@media (max-width: 1024px) {
    .tab-container { max-width: 90vw; }
}


.tab-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 14px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    border: 2px solid var(--border);
    background: var(--bg-white);
    color: var(--text-dark);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
}

.tab-btn:hover { color: var(--cyan); }

.tab-btn.active {
    background: var(--enfuse-blue);
    color: #fff;
    border-color: var(--enfuse-blue);
}

.tab-content {
    display: none;
    animation: fadeIn 0.4s ease;
}

.tab-content.active { display: block; }

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

.tab-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
}

.tab-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.tab-text h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.tab-list { margin: 0; padding: 0; }

.tab-list li {
    position: relative;
    padding-left: 36px;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-size: 1.1rem;
    line-height: 1.6;
}

.tab-list li::before {
    content: "\f054";
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 4px;
    color: var(--cyan);
    font-size: 14px;
    font-weight: bold;
}

/* =========================================
   WHY NOW / BUSINESS VALUE (same as S2R)
========================================= */
.why-now .section-title { margin-bottom: 2rem; }
.why-now { background: var(--bg-light); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.why-list { margin: 1.5rem 0; }

.why-list li strong {
    color: var(--navy);
}

.why-highlight {
    background: white;
    padding: 2rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    border-left: 4px solid var(--cyan);
}

.why-highlight h3 { font-size: 22px; color: var(--enfuse-blue); margin-bottom: 0.5rem; }
.why-highlight p { color: var(--text-light); margin-bottom: 1rem; }

/* =========================================
   INDUSTRY MARQUEE (same as S2R)
========================================= */
.industry-marquee {
    overflow: hidden;
    position: relative;
    margin: 50px auto 0px;
    border-top: 8px solid var(--cyan);
    padding: 20px;
    background: var(--navy);
    border-radius: 21px;
}

.industry-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
}

.industry-marquee:hover .industry-track { animation-play-state: paused; }

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    text-align: center;
}

.industry-item img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform .3s ease;
}

.industry-item:hover img { transform: scale(1.08); }

.industry-item span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ==========================
   Industry Infinite Carousel
========================== */

.industry-carousel {
    overflow: hidden;
    position: relative;
    margin: 50px auto 0;
    border-top: 8px solid var(--cyan);
    padding: 20px;
    background: var(--navy);
    border-radius: 21px;
}

.industry-wrapper {
    overflow: hidden;
    width: 100%;
}

.industry-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    will-change: transform;
}

.industry-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    text-align: center;
    flex-shrink: 0;
}

.industry-item img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    margin-bottom: 12px;
    transition: transform .3s ease;
}

.industry-item:hover img {
    transform: scale(1.08);
}

.industry-item span {
    font-size: 15px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
}

/* =========================================
   WORKSTREAMS / SERVICES (same as S2R)
========================================= */
.workstreams { background: #fff; }

.workstreamSwiper { padding: 0 15px !important; }

.workstreamSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.ws-card {
    border-radius: 20px;
    box-shadow: 0 9px 25px -8px rgba(9, 62, 91, 0.24);
    display: flex;
    flex-direction: column;
    transition: .35s ease;
    background: #fff;
}

.ws-card-top {
    position: relative;
    height: 215px;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

.ws-artwork {
    width: 100%;
    height: auto;
    display: block;
}

.ws-card-top img { width: 60%; min-width: 230px; }

.ws-card-number {
    position: absolute;
    right: 0px;
    bottom: 22px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.ws-line {
    width: 64px;
    height: 2px;
    background: var(--cyan);
}

.ws-card-number span {
    font-size: 30px;
    font-weight: 700;
    color: var(--cyan);
    border-block: 2px solid var(--cyan);
    width: 90px;
    text-align: center;
}

.ws-card-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.ws-card-body h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 18px;
    line-height: 1.35;
}

.ws-card-body p {
    font-size: 16px;
    line-height: 1.8;
    color: #5E6977;
    margin: 0 0 16px;
}

/* Service capabilities list inside cards */
.ws-capabilities {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.ws-capabilities li {
    font-size: 14px;
    color: var(--text-light);
    padding-left: 22px;
    margin-bottom: 6px;
    line-height: 1.5;
}

.ws-capabilities li::before {
    content: "\f00c";
    font-size: 11px;
    color: var(--cyan);
    top: 3px;
}

.workstreamSwiper .swiper-pagination {
    position: relative;
    margin-top: 35px;
}

.workstreamSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D9D9D9;
    opacity: 1;
    transition: .35s;
    border-radius: 30px;
}

.workstreamSwiper .swiper-pagination-bullet-active {
    width: 34px;
    background: var(--cyan);
}

/* ===========================
   Why Enfuse Slider
=========================== */

.why-enfuse-slider {
    position: relative;
    overflow: hidden;
    margin-top: 60px;
}

.why-enfuse-slider .swiper-wrapper {
    align-items: stretch;
}

.why-enfuse-slider .swiper-slide {
    height: auto;
    display: flex;
}

.why-enfuse-slider .aud-card {
    width: 100%;
    height: 100%;
}

/* Navigation */

.why-enfuse-slider .swiper-button-next,
.why-enfuse-slider .swiper-button-prev {
    width: 46px;
    height: 46px;
    background: #fff;
    border-radius: 50%;
    color: var(--cyan);
    box-shadow: 0 10px 25px rgba(0,0,0,.12);
    transition: .3s;
}

.why-enfuse-slider .swiper-button-next:hover,
.why-enfuse-slider .swiper-button-prev:hover {
    background: var(--cyan);
    color: #fff;
}

.why-enfuse-slider .swiper-button-next::after,
.why-enfuse-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 700;
}

/* Pagination (Same as Workstream Slider) */

.why-enfuse-slider .swiper-pagination {
    position: relative;
    margin-top: 35px;
}

.why-enfuse-slider .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #D9D9D9;
    opacity: 1;
    transition: .35s;
    border-radius: 30px;
}

.why-enfuse-slider .swiper-pagination-bullet-active {
    width: 34px;
    background: var(--cyan);
}

/* Responsive */

@media (max-width: 991px) {

    .why-enfuse-slider {
        margin-top: 30px;
    }

    .why-enfuse-slider .swiper-button-next,
    .why-enfuse-slider .swiper-button-prev {
        display: none;
    }

}

/* =========================================
   AUDIENCE / WHY CHOOSE CARDS (same as S2R)
========================================= */
.audience {
    background: var(--bg-light);
}

.aud-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.aud-card {
    padding: 2rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
    text-align: center;
    background-color: #fff;
}

.aud-card:hover {
    border-color: var(--cyan);
    box-shadow: var(--shadow-lg);
}

.aud-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    padding: 15px;
    background: var(--bg-light);
}

.aud-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aud-card h3 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.75rem; }
.aud-card p { color: var(--text-light); }

/* =========================================
   FINAL CTA (same as S2R)
========================================= */
.final-cta {
    background: white;
    text-align: center;
    padding: 50px 0px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.final-cta h2 { font-size: 2.5rem; margin: 0px 0px 1rem; color: var(--navy); }
.final-cta p { max-width: 80vw; margin: 0 auto 1.5rem; opacity: 0.9; color: var(--text-light); }

.final-cta-list {
display: flex;
justify-content: center;
flex-wrap: wrap;
gap: 1.5rem;
margin-bottom: 1.5rem;
font-weight: 500;
}

.final-cta-list li {
color: #fff;
display: flex;
color: var(--text-light);
align-items: center;
gap: 0.5rem;
}

.final-cta-list li::before { color: var(--cyan); }

/* =========================================
   FAQ SECTION (New — matches S2R design language)
   Uses same: Poppins, navy headings, cyan accents,
   border-radius, spacing, bg-light background.
========================================= */
.faq-section {
    background: var(--bg-light);
}

.faq-grid {
    max-width: 70vw;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 1024px) {
    .faq-grid {
        max-width: 90vw;
    }
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--cyan);
}

.faq-item.active {
    border-color: var(--cyan);
    box-shadow: var(--shadow);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--navy);
    text-align: left;
    gap: 1rem;
    transition: var(--transition);
}

.faq-question:hover { color: var(--cyan); }

.faq-question i {
    font-size: 0.85rem;
    color: var(--cyan);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* =========================================
   FOOTER (same as S2R)
========================================= */
footer {
    background: var(--navy-dark);
    color: #fff;
    padding: 40px 0 20px;
    border-top: 2px solid #1c4150;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    gap: 3rem;
}

.footer-quick-contact h4,
.footer-follow-us h4 {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-details { list-style: none; padding: 0; margin: 0; }

.contact-details li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.contact-details li::before { content: none; }

.contact-details li i {
    color: var(--cyan);
    font-size: 1rem;
    width: 20px;
    text-align: center;
}

.contact-details li a {
    color: rgba(255, 255, 255, 0.85);
    transition: var(--transition);
}

.contact-details li a:hover { color: var(--cyan); }

.social-icons { display: flex; gap: 1rem; }

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(0, 168, 204, 0.15);
    border-radius: 50%;
    color: var(--cyan);
    font-size: 1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--cyan);
    color: #fff;
    transform: translateY(-3px);
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
}

.footer-bottom p { margin: 0; color: rgba(255, 255, 255, 0.7); font-size: 16px; }
.footer-bottom a { color: var(--cyan); }
.footer-bottom a:hover { color: #fff; }

/* =========================================
   BACK TO TOP BUTTON (same as S2R)
========================================= */
.back-to-top {
    position: fixed;
    right: calc(20px + env(safe-area-inset-right));
    bottom: calc(24px + env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    border-radius: 50%;
    background: var(--cyan);
    cursor: pointer;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.9);
    transition: opacity .3s ease, visibility .3s ease, transform .3s ease, background-color .3s ease, box-shadow .3s ease;
    z-index: 9999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.back-to-top:hover {
    background: var(--cyan-dark);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.22);
}

.back-to-top:active { transform: scale(0.95); }

.back-to-top i {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 18px;
    line-height: 1;
    pointer-events: none;
}

.progress-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
    pointer-events: none;
}

.progress-ring-circle-bg { fill: none; stroke: rgba(255, 255, 255, 0.25); stroke-width: 3; }

.progress-ring-circle {
    fill: none;
    stroke: #fff;
    stroke-width: 3;
    stroke-linecap: round;
    stroke-dasharray: 150.8;
    stroke-dashoffset: 150.8;
    transition: stroke-dashoffset .15s linear;
}

/* =========================================
   MODAL STYLES (same as S2R)
========================================= */
.hubspot-loader {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 320px;
    text-align: center;
}

.spinner {
    width: 45px;
    height: 45px;
    border: 4px solid rgba(0,0,0,.1);
    border-top: 4px solid #00b4d2; /* Replace with your brand color */
    border-radius: 50%;
    animation: spin .8s linear infinite;
    margin-bottom: 15px;
}

.hubspot-loader p {
    margin: 0;
    color: #666;
    font-size: 15px;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    padding: 15px;
}

.modal-overlay.active { opacity: 1; visibility: visible; }

.modal-container {
    background: white;
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-overlay.active .modal-container { transform: scale(1); }

.modal-close {
    position: absolute;
    top: 15px; right: 15px;
    background: var(--bg-light);
    border: none;
    width: 40px; height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
    color: var(--text-dark);
    font-size: 1.2rem;
}

.modal-close:hover {
    background: var(--cyan);
    color: white;
    transform: rotate(90deg);
}

.modal-content { padding: 25px; }

.modal-header { text-align: center; margin-bottom: 32px; }
.modal-header h2 { font-size: 1.8rem; color: var(--navy); margin-bottom: 8px; font-weight: 600; }
.modal-header p { color: var(--text-light); font-size: 1rem; line-height: 1.5; }
.modal-body { min-height: 300px; }

/* HubSpot Form Styling (same as S2R) */
#hubspot-form-container .hs-form-field { margin-bottom: 1.5rem; }

#hubspot-form-container .hs-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: var(--transition);
}

#hubspot-form-container .hs-input:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 168, 204, 0.1);
}

#hubspot-form-container .hs-button {
    background: var(--cyan-gradient);
    background-size: 200% auto;
    background-position: left center;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-position 0.5s ease, transform 0.3s ease;
    width: 100%;
    font-family: 'Poppins', sans-serif;
}

#hubspot-form-container .hs-button:hover {
    background-position: right center;
    transform: translateY(-2px);
}

#hubspot-form-container label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
}

body.modal-open { overflow: hidden; }

/* =========================================
   RESPONSIVE (adapted from S2R)
========================================= */
@media (max-width: 1024px) {
    .hero h1 { font-size: 2.5rem; }
    .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
    .hero-image { display: none; }
    .kpi-grid { grid-template-columns: repeat(2, 1fr); }
    .kpi-grid-6 { grid-template-columns: repeat(3, 1fr); }
    .tab-grid { grid-template-columns: 1fr; }
    .section-subtitle { max-width: 100vw; }
    .kpi-heading h2 { font-size: 1.75rem; }
    .kpi-item { padding: 1.5rem 1rem; }
    .kpi-number { font-size: 40px; }
    .kpi-suffix { font-size: 2.5rem; }
    .section-highlight-text { font-size: 17px; }
    .section-highlight-text--dark { width: 75vw; }
}

@media (max-width: 992px) {
    .industry-track { gap: 45px; animation-duration: 32s; }
    .industry-item { min-width: 110px; }
    .industry-item img { width: 55px; height: 55px; }
    .industry-item span { font-size: 14px; }
    .back-to-top { width: 54px; height: 54px; right: 18px; bottom: 24px; }
    .back-to-top i { font-size: 17px; }
}

@media (max-width: 768px) {
    .section-subtitle {margin-bottom: 10px;}
    .why-list { margin: 10px 0 0px; }
    .why-grid { gap: 1rem;}
    .section { padding: 60px 0; }
    .section-title { font-size: 1.75rem; }

    .nav-links { display: none; }
    .mobile-toggle { display: block; }
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 70px; left: 0; right: 0;
        background: white;
        padding: 1.5rem;
        box-shadow: var(--shadow);
        gap: 1rem;
    }

    .hero { padding-top: 50px; }
    .hero h1 { font-size: 2rem; }
    .hero-ctas { flex-direction: column; }
    .hero .btn { width: 100%; }

    .why-grid, .enf-grid { grid-template-columns: 1fr; }
    .aud-grid { grid-template-columns: 1fr; }

    .final-cta h2 { font-size: 1.75rem; }

    .nav-container .btn span { display: none; }
    .nav-container .btn { padding: 13px 15px; }
    .nav-container .btn i { display: block; font-size: 20px; }
    .logo { width: 150px; }

    .kpi-grid, .kpi-grid-6 { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
    .kpi-item:not(:last-child)::after { display: none; }
    .kpi-item { padding: 1.5rem; }
    .kpi-suffix { font-size: 2rem; }
    .kpi-label { font-size: 0.9rem; max-width: 100%; }
    .kpi-heading h2 { font-size: 1.5rem; }

    .tab-grid { padding: 1.5rem; }
    .tab-text h3 { font-size: 1.5rem; }
    .tab-btn { padding: 12px 24px; font-size: 1rem; }

    .industry-marquee { margin: 35px 0px 0px; padding: 16px 0; }
    .industry-track { gap: 35px; animation-duration: 25s; }
    .industry-item { min-width: 90px; }
    .industry-item img { width: 45px; height: 45px; margin-bottom: 8px; }
    .industry-item span { font-size: 13px; }

    .faq-question { padding: 16px 18px; font-size: 0.95rem; }
    .faq-answer p { padding: 0 18px 16px; font-size: 0.95rem; }

    footer { padding: 30px 0 20px; }
    .footer-main { flex-direction: column; align-items: center; text-align: center; gap: 2rem; }
    .contact-details li { justify-content: start; }
    .social-icons { justify-content: center; }

    .back-to-top { bottom: 20px; right: 20px; width: 50px; height: 50px; }
    .back-to-top i { font-size: 1rem; }

    .section-highlight-text {
        width: 90%;
        font-size: 16px;
        line-height: 1.6;
        padding: 10px 0;
        margin: 35px auto 0px;
    }

    .modal-container { max-width: 100%; max-height: 95vh; }
    .modal-content { padding: 30px 20px; }
}

@media (max-width: 480px) {
    .kpi-grid, .kpi-grid-6 { grid-template-columns: 1fr; }
    .tab-buttons { flex-direction: column; }
    .tab-btn { width: 100%; }
    .kpi-suffix { font-size: 2.5rem; }
    .hero-image { display: none; }
    .social-icons { gap: 0.75rem; }
    .social-icons a { width: 36px; height: 36px; font-size: 0.9rem; }
    .back-to-top { width: 48px; height: 48px; right: 14px; bottom: 28px; }
    .back-to-top i { font-size: 15px; }

    .section-highlight-text {
        width: 95%;
        font-size: 15px;
        line-height: 1.7;
        margin: 30px auto 0px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .back-to-top, .progress-ring-circle, .fade-up { transition: none; }
}

