/* ===== ROOT VARIABLES ===== */
:root {
    --navy: #0A2540;
    --navy-light: #0F3460;
    --teal: #2da1cf;
    --teal-light: #5ec1ea;
    --teal-dark: #1d7ba2;
    --gold: #E8A838;
    --green: #85b44a;
    --white: #FFFFFF;
    --gray-50: #F8FAFC;
    --gray-100: #F1F5F9;
    --gray-200: #E2E8F0;
    --gray-300: #CBD5E1;
    --gray-400: #94A3B8;
    --gray-500: #64748B;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1E293B;
    --gray-900: #0F172A;
    --shadow-sm: 0 1px 3px rgba(10, 37, 64, .08);
    --shadow-md: 0 4px 20px rgba(10, 37, 64, .1);
    --shadow-lg: 0 10px 40px rgba(10, 37, 64, .12);
    --shadow-xl: 0 20px 60px rgba(10, 37, 64, .15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --transition: .3s cubic-bezier(.4, 0, .2, 1);
    --font: 'Inter', system-ui, sans-serif;
    --font-display: 'Outfit', system-ui, sans-serif;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
    overflow-x: hidden;
}

body {
    font-family: var(--font);
    color: var(--gray-700);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

* {
    word-break: break-word;
    overflow-wrap: break-word;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--navy);
    line-height: 1.2;
    font-weight: 700;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--teal), var(--teal-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border-color: transparent;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(45, 161, 207, .35);
}

.btn-outline {
    border-color: var(--navy);
    color: var(--navy);
    background: transparent;
}

.btn-outline:hover {
    background: var(--navy);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 16px 36px;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
    /*overflow: hidden;*/
}

.navbar.scrolled {
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    min-width: 0;
}

.logo {
    display: flex;
    align-items: center;
    min-width: 0;
    flex-shrink: 0;
    justify-self: start;
}

.logo img {
    max-height: 30px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.footer-brand .logo img {
    max-height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

.nav-link {
    font-size: .9rem;
    font-weight: 500;
    color: var(--gray-600);
    position: relative;
}

.nav-link:hover {
    color: var(--teal);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-nav-cta {
    background: var(--navy);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 50px;
    font-size: .9rem;
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
    text-decoration: none;
}

.btn-nav-cta:hover {
    background: var(--teal);
    color: var(--white) !important;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-self: end;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    width: 24px;
    height: 2px;
    background: var(--navy);
    transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(135deg, #F0F9FA 0%, #E8F4F8 30%, #F8FAFC 100%);
    padding: 120px 0 80px;
    overflow: hidden;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: .06;
}

.shape-1 {
    width: 600px;
    height: 600px;
    background: var(--teal);
    top: -200px;
    right: -100px;
}

.shape-2 {
    width: 400px;
    height: 400px;
    background: var(--navy);
    bottom: -100px;
    left: -100px;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--gold);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-container {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    /*background: rgba(45, 161, 207, .1);*/
    background: #85b44a26;
    color: #85b44a;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: .6rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
}

.hero h1 {
    font-size: 2.6rem;
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.15;
}

.hero-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin-bottom: 32px;
    max-width: 520px;
}

.hero-cta-group {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* 2×2 stats grid — matches design image */
.hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 40px;
    max-width: 400px;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat-value {
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.hero-stat-number {
    font-family: var(--font-display);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--navy);
    line-height: 1;
}

.hero-stat-suffix {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--teal);
    line-height: 1;
}

.hero-stat-label {
    display: block;
    font-size: .8rem;
    color: var(--gray-400);
    font-weight: 500;
    margin-top: 6px;
}

.hero-stat-divider {
    display: none;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(10px);
    padding: 14px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

.card-1 {
    bottom: 30px;
    right: 10px;
    animation-delay: 0s;
}

.card-2 {
    top: 30px;
    left: 10px;
    animation-delay: 1.5s;
}

.floating-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.floating-icon.green {
    background: rgba(133, 180, 74, .15);
    color: var(--green);
}

.floating-icon.blue {
    background: rgba(45, 161, 207, .15);
    color: var(--teal);
}

.floating-label {
    display: block;
    font-size: .75rem;
    color: var(--gray-400);
}

.floating-value {
    display: block;
    font-weight: 700;
    color: var(--navy);
    font-size: 1.1rem;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--gray-400);
    font-size: .75rem;
}

.scroll-mouse {
    width: 24px;
    height: 38px;
    border: 2px solid var(--gray-300);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: var(--teal);
    border-radius: 2px;
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-anim 1.5s ease-in-out infinite;
}

@keyframes scroll-anim {
    0% {
        opacity: 1;
        top: 6px;
    }

    100% {
        opacity: 0;
        top: 22px;
    }
}

/* ===== SECTIONS COMMON ===== */
.section {
    padding: 100px 0;
}

.section:nth-child(even) {
    background: var(--gray-50);
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 60px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--green);
    /* #85b44a */
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray-500);
}

/* ===== SERVICE PILLARS ===== */
.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}

.service-pillar {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
    width: calc(33.333% - 16px);
    min-width: 280px;
}

/* Premium service card styles */
.service-pillar:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(45, 161, 207, .12), 0 4px 12px rgba(10, 37, 64, .06);
    border-color: var(--teal);
}

.service-pillar.featured {
    border: 2px solid var(--teal);
    background: linear-gradient(180deg, rgba(45, 161, 207, .03) 0%, var(--white) 100%);
}

.pillar-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: .7rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: .5px;
}

.pillar-header {
    margin-bottom: 16px;
}

.pillar-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(45, 161, 207, .1), rgba(45, 161, 207, .05));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal);
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-pillar:hover .pillar-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    transform: scale(1.05);
}

.service-pillar.featured .pillar-icon {
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
}

.service-pillar h3 {
    font-size: 1.05rem;
    color: var(--navy);
    line-height: 1.3;
}

.pillar-desc {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 20px;
    flex-grow: 1;
}

.pillar-features {
    border-top: 1px solid var(--gray-100);
    padding-top: 16px;
    margin-top: auto;
}

.pillar-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 7px 0;
    font-size: .84rem;
    color: var(--gray-600);
    font-weight: 500;
}

.pillar-features li:last-child {
    padding-bottom: 0;
}

.pillar-features li i {
    color: var(--teal);
    font-size: .65rem;
    flex-shrink: 0;
}

/* ===== NEXT STEPS ===== */
.next-steps-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 60px;
    align-items: start;
}


.next-steps-content {
    position: sticky;
    top: 100px;
    align-self: start;
}

.steps-list {
    margin-top: 32px;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
}

.step-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
}

.step-item h4 {
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.step-item p {
    font-size: .88rem;
    color: var(--gray-500);
}

.cta-trust-badges {
    display: flex;
    gap: 16px;
    margin-top: 16px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .78rem;
    color: var(--gray-500);
    font-weight: 500;
}

.trust-badge i {
    color: var(--teal);
}

/* ===== CONSULTATION FORM ===== */
.consultation-form-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
}

.form-header {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 32px 32px 28px;
    text-align: center;
}

.form-header-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(45, 161, 207, .25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--teal-light);
    font-size: 1.3rem;
}

.form-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.form-header p {
    color: rgba(255, 255, 255, .6);
    font-size: .88rem;
    margin: 0;
}

#consultationForm {
    padding: 32px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}

.form-group label i {
    color: var(--teal);
    font-size: .75rem;
}

.required {
    color: #EF4444;
    font-size: .75rem;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: var(--font);
    font-size: .9rem;
    color: var(--gray-700);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--teal);
    box-shadow: 0 0 0 3px rgba(45, 161, 207, .1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-300);
}

.form-group input.error,
.form-group select.error {
    border-color: #EF4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, .1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.select-wrapper {
    position: relative;
}

.select-wrapper select {
    appearance: none;
    -webkit-appearance: none;
    padding-right: 40px;
    cursor: pointer;
}

.select-arrow {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
    font-size: .7rem;
    pointer-events: none;
}

.form-submit-btn {
    font-family: var(--font);
    margin-top: 4px;
}

.form-submit-btn:active {
    transform: scale(.98);
}

/* Form Success */
.form-success {
    padding: 60px 32px;
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--green), #1FB892);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--white);
    font-size: 2.2rem;
    animation: successPop .5s cubic-bezier(.175, .885, .32, 1.275);
}

@keyframes successPop {
    0% {
        transform: scale(0);
    }

    100% {
        transform: scale(1);
    }
}

.form-success h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.form-success p {
    color: var(--gray-500);
    font-size: .95rem;
}

/* ===== CASE STUDIES ===== */
.case-studies {
    background: var(--gray-50) !important;
}

.dark-heading {
    color: var(--navy);
}

.case-studies-carousel-wrapper {
    position: relative;
    padding: 10px 0;
}

.case-studies-carousel {
    overflow: hidden;
    margin: 0 auto;
}

.carousel-track {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-track .case-study-card {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 0;
    opacity: 0.5;
    transform: scale(0.95);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.carousel-track .case-study-card.active-slide {
    opacity: 1;
    transform: scale(1);
}

.carousel-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.carousel-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid var(--gray-200);
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.carousel-btn:hover {
    background: var(--teal);
    color: var(--white);
    border-color: var(--teal);
}

.carousel-dots {
    display: flex;
    gap: 8px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--teal);
    width: 32px;
    border-radius: 6px;
}

.case-study-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    border: 1px solid var(--gray-200);
    overflow: hidden;
    margin-bottom: 32px;
    transition: var(--transition);
}

.case-study-card:hover {
    box-shadow: var(--shadow-lg);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 32px;
    border-bottom: 1px solid var(--gray-100);
    background: var(--gray-50);
}

.case-logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

.case-meta {
    display: flex;
    flex-direction: column;
}

.case-industry {
    font-weight: 700;
    color: var(--navy);
    font-size: .95rem;
}

.case-location {
    font-size: .82rem;
    color: var(--gray-400);
}

.case-body {
    padding: 32px;
}

.case-section {
    margin-bottom: 20px;
}

.case-section h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--teal-dark);
    margin-bottom: 8px;
}

.case-section h4 i {
    font-size: .8rem;
}

.case-section p {
    font-size: .9rem;
    color: var(--gray-600);
}

.case-impact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-100);
}

.case-impact {
    text-align: center;
    padding: 16px;
    border-radius: var(--radius-sm);
    background: var(--gray-50);
}

.impact-value {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--teal-dark);
    display: block;
}

.impact-label {
    font-size: .78rem;
    color: var(--gray-500);
    display: block;
    margin-top: 4px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, .6);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand p {
    margin: 16px 0 20px;
    font-size: .9rem;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--teal);
    color: var(--white);
}

.footer-links h4 {
    color: var(--white);
    font-size: .95rem;
    margin-bottom: 16px;
}

.footer-links a {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: .88rem;
    padding: 4px 0;
    transition: var(--transition);
    line-height: 1.5;
}

.footer-links a i {
    margin-top: 4px;
    flex-shrink: 0;
}

.footer-links a:hover {
    color: var(--teal-light);
    padding-left: 4px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 24px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-bottom p {
    font-size: .85rem;
    text-align: center;
}



/* ===== PRE-FOOTER CTA BAND ===== */
.prefooter-cta {
    background: linear-gradient(110deg, #071828 0%, #0A2540 45%, #0d3352 100%);
    border-top: 1px solid rgba(45, 161, 207, .22);
    border-bottom: 1px solid rgba(0, 0, 0, .35);
    padding: 48px 0;
    position: relative;
    overflow: hidden;
}

.prefooter-cta::before {
    content: '';
    position: absolute;
    top: -80px;
    right: 8%;
    width: 380px;
    height: 380px;
    background: radial-gradient(circle, rgba(45, 161, 207, .13) 0%, transparent 70%);
    pointer-events: none;
}

.prefooter-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.prefooter-text h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.25;
}

.prefooter-text p {
    font-size: .92rem;
    color: rgba(255, 255, 255, .52);
    max-width: 540px;
    line-height: 1.7;
}

.prefooter-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    font-family: var(--font);
    font-size: .92rem;
    font-weight: 700;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    transition: var(--transition);
    animation: prefooterPulse 2.8s ease-in-out infinite;
}

.prefooter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(45, 161, 207, .5);
    animation: none;
}

@keyframes prefooterPulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(45, 161, 207, .4);
    }

    50% {
        box-shadow: 0 0 0 12px rgba(45, 161, 207, 0);
    }
}

@media (max-width: 768px) {
    .prefooter-inner {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    .prefooter-text h2 {
        font-size: 1.3rem;
    }

    .prefooter-text p {
        max-width: 100%;
        font-size: .88rem;
    }

    .prefooter-btn {
        white-space: normal;
        text-align: center;
        padding: 13px 24px;
        font-size: .88rem;
    }
}

/* ===== BACK TO TOP ===== */

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(45, 161, 207, .35);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px);
}

/* ===== ANIMATIONS ===== */
[data-animate] {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

[data-animate="fade-left"] {
    transform: translateX(40px);
}

[data-animate="fade-right"] {
    transform: translateX(-40px);
}

[data-animate].animated {
    opacity: 1;
    transform: translate(0);
}

@keyframes floatIcon {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-4px);
    }
}

.deliverable-icon i,
.process-icon i,
.choose-icon i,
.value-icon i,
.step-icon i,
.pillar-icon i,
.case-logo-icon i,
.pain-icon i {
    display: inline-block;
    animation: floatIcon 3s ease-in-out infinite;
}

/* ======================================================
   RESPONSIVE — LARGE SCREENS (max-width: 1400px)
   Hero heading + button sizing for wide-but-not-huge viewports
   ====================================================== */
@media (max-width: 1400px) {
    .hero h1 {
        font-size: 2.7rem;
    }

    .hero-container {
        gap: 40px;
    }

    .btn-lg {
        padding: 13px 26px;
        font-size: .95rem;
    }
}

/* ======================================================
   RESPONSIVE — MEDIUM DESKTOP (max-width: 1200px)
   Prevents heading wrap and button stack in 2-column hero
   ====================================================== */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: 1.85rem;
        line-height: 1.2;
    }

    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .hero-cta-group {
        gap: 10px;
    }

    .btn-lg {
        padding: 11px 18px;
        font-size: .86rem;
    }

    .hero-stats {
        gap: 14px 20px;
    }

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .hero-stat-suffix {
        font-size: 1.25rem;
    }
}

/* ======================================================
   RESPONSIVE — TABLET (max-width: 1024px)
   ====================================================== */
@media (max-width: 1024px) {

    /* Nav */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 32px 32px;
        gap: 20px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
        z-index: 999;
    }

    .nav-links.active {
        right: 0;
    }

    /* collapse grid to logo | hamburger on mobile */
    .nav-container {
        grid-template-columns: 1fr auto;
    }

    /* hide desktop CTA button on mobile */
    .nav-cta .btn-nav-cta {
        display: none;
    }

    .hamburger {
        display: flex;
        z-index: 1001;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }



    /* Single-column hero from 1024px down */
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 32px;
    }

    .hero-subtitle {
        margin: 0 auto 28px;
    }

    .hero-cta-group {
        justify-content: center;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 32px;
    }

    .hero-stats {
        justify-content: center;
        max-width: 480px;
        margin: 0 auto;
        gap: 16px 32px;
    }

    .hero-visual {
        max-width: 560px;
        margin: 0 auto;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-stat-value {
        justify-content: center;
    }


    .btn-lg {
        padding: 12px 24px;
        font-size: .92rem;
    }

    .section {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-description {
        font-size: 1rem;
    }

    .outsource-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .outsource-image-block img {
        height: 320px;
    }

    .pain-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .pain-card h3 {
        font-size: .95rem;
    }

    .pain-card p {
        font-size: .8rem;
    }

    .choose-layout {
        grid-template-columns: 1fr 2fr;
        gap: 30px;
    }

    .choose-image-wrapper img {
        height: 400px;
    }

    .choose-overlay-stat {
        font-size: 2rem;
    }

    .choose-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .choose-card {
        padding: 22px 16px;
    }

    .choose-card h3 {
        font-size: .95rem;
    }

    .choose-card p {
        font-size: .82rem;
    }

    .dashboard-preview img {
        height: 320px;
    }

    .deliverables-showcase {
        margin-bottom: 36px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-card {
        padding: 24px;
    }

    .process-card h3 {
        font-size: 1rem;
    }

    .next-steps-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .next-steps-content {
        position: static;
    }

    .value-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .value-metric {
        font-size: 2.2rem;
    }

    .pricing-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card h3 {
        font-size: 1.3rem;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .consultation-form-card {
        max-width: 600px;
        margin: 0 auto;
    }

    #consultationForm {
        padding: 28px;
    }

    .step-item h4 {
        font-size: 1rem;
    }

    .step-item p {
        font-size: .85rem;
    }

    .case-study-header {
        padding: 20px 24px;
    }

    .case-body {
        padding: 24px;
    }
}

/* ======================================================
   RESPONSIVE — TABLET SMALL / LARGE PHONE (max-width: 768px)
   ====================================================== */
@media (max-width: 768px) {
    
    .nav-link {
        align-items: flex-start !important;
        justify-content: flex-start !important;
    }

    /* Sections */
    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .section-header h2 {
        font-size: 1.8rem;
        margin-bottom: 12px;
    }

    .section-label {
        font-size: .72rem;
        letter-spacing: 1.5px;
        margin-bottom: 8px;
    }

    .section-description {
        font-size: .92rem;
    }

    /* Hero — mobile single-column */
    .hero {
        min-height: auto;
        padding: 100px 0 48px;
    }

    .hero h1 {
        font-size: 1.9rem;
        margin-bottom: 14px;
        text-align: center;
    }

    .hero-badge {
        font-size: .7rem;
        padding: 6px 16px;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: .93rem;
        margin-bottom: 24px;
        text-align: center;
    }

    /* Buttons: row on 768px, stack only on tiny */
    .hero-cta-group {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 24px;
    }

    .btn-lg {
        padding: 11px 20px;
        font-size: .88rem;
    }

    /* Stats 2×2 */
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px 24px;
        max-width: 320px;
        margin: 0 auto;
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .hero-stat-suffix {
        font-size: 1.15rem;
    }

    .hero-stat-label {
        font-size: .72rem;
    }

    .hero-floating-card {
        /* display: none; */
    }

    .hero-scroll-indicator {
        display: none;
    }

    .hero-image-wrapper img {
        height: 280px;
        width: 500px;
    }

    /* Why outsource */
    .outsource-image-block img {
        height: 260px;
    }

    .stat-highlight-number {
        font-size: 1.8rem;
    }

    .stat-highlight-card {
        padding: 18px;
    }

    .benefit-item {
        padding: 12px;
    }

    .benefit-item h4 {
        font-size: .95rem;
    }

    .benefit-item p {
        font-size: .82rem;
    }

    /* Pain Points */
    .pain-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .pain-card {
        padding: 22px 16px;
    }

    .pain-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .pain-card h3 {
        font-size: .9rem;
    }

    .pain-card p {
        font-size: .78rem;
    }

    .pain-number {
        font-size: 1.6rem;
    }

    /* Choose Us */
    .choose-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .choose-image-block {
        position: static;
    }

    .choose-image-wrapper img {
        height: 280px;
    }

    .choose-overlay-stat {
        font-size: 1.8rem;
    }

    .choose-overlay-text {
        font-size: .78rem;
    }

    .choose-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .choose-card {
        padding: 24px 16px;
    }

    .choose-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
        margin-bottom: 12px;
    }

    .choose-card h3 {
        font-size: .92rem;
    }

    .choose-card p {
        font-size: .8rem;
    }

    /* Dashboard Preview */
    .dashboard-preview img {
        height: 240px;
    }

    .deliverables-showcase {
        margin-bottom: 28px;
    }

    .dashboard-badge {
        font-size: .72rem;
        padding: 6px 12px;
    }

    /* Approach */
    .approach-step {
        gap: 20px;
    }

    .step-number {
        width: 48px;
        height: 48px;
        font-size: 1rem;
    }

    .step-content {
        padding: 22px;
    }

    .step-content h3 {
        font-size: 1.05rem;
    }

    .step-content p {
        font-size: .85rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .service-pillar {
        padding: 22px 16px;
    }

    .service-pillar h3 {
        font-size: .88rem;
    }

    .pillar-features li {
        font-size: .78rem;
        padding: 5px 0;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .process-card {
        padding: 22px;
    }

    .process-card h3 {
        font-size: .95rem;
    }

    .process-card p {
        font-size: .82rem;
    }

    /* Timeline */
    .timeline {
        padding: 0 !important;
    }

    .timeline::before {
        left: 24px;
        transform: none;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start !important;
        gap: 16px;
        width: 100%;
        position: relative;
        margin-bottom: 40px !important;
    }

    .timeline-item:nth-child(odd),
    .timeline-item:nth-child(even) {
        justify-content: flex-start;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        width: calc(100% - 64px);
        margin-left: 64px;
    }

    .timeline-item:nth-child(odd) .timeline-content li {
        padding-right: 0;
        padding-left: 18px;
        text-align: left;
    }

    .timeline-item:nth-child(odd) .timeline-content li::before {
        left: 0;
        right: auto;
    }

    .timeline-marker {
        left: 3px;
        top: 0;
        transform: none;
        position: absolute;
    }

    .timeline-content {
        padding: 24px;
    }

    .timeline-content h3 {
        font-size: 1.15rem;
    }

    .timeline-content li {
        font-size: .9rem;
    }

    /* Deliverables */
    .deliverables-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .deliverable-card {
        padding: 22px;
    }

    .deliverable-card h4 {
        font-size: .92rem;
    }

    .deliverable-card p {
        font-size: .8rem;
    }

    /* Value */
    .value-grid {
        grid-template-columns: 1fr 1fr;
        gap: 14px;
    }

    .value-card {
        padding: 28px 18px;
    }

    .value-metric {
        font-size: 2rem;
    }

    .value-card h4 {
        font-size: .92rem;
    }

    .value-card p {
        font-size: .8rem;
    }

    /* Pricing */
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
        margin: 0 auto;
    }

    .pricing-card {
        padding: 32px 24px;
    }

    .pricing-card h3 {
        font-size: 1.4rem;
    }

    .pricing-desc {
        font-size: .85rem;
    }

    .pricing-features li {
        font-size: .85rem;
    }

    /* Next Steps & Form */
    .next-steps-content h2 {
        font-size: 1.8rem;
    }

    .step-item {
        gap: 14px;
        margin-bottom: 18px;
    }

    .step-circle {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: .9rem;
    }

    .step-item h4 {
        font-size: .95rem;
    }

    .step-item p {
        font-size: .82rem;
    }

    .form-header {
        padding: 24px 20px 20px;
    }

    .form-header h3 {
        font-size: 1.3rem;
    }

    .form-header p {
        font-size: .82rem;
    }

    #consultationForm {
        padding: 22px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-group label {
        font-size: .78rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: .88rem;
        padding: 11px 14px;
    }

    /* Case Studies */
    .case-study-header {
        padding: 18px 20px;
    }

    .case-industry {
        font-size: .88rem;
    }

    .case-body {
        padding: 20px;
    }

    .case-section p {
        font-size: .85rem;
    }

    .case-impact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .case-impact {
        padding: 12px;
    }

    .impact-value {
        font-size: 1.3rem;
    }

    .impact-label {
        font-size: .72rem;
    }

    /* Footer */
    .footer {
        padding: 60px 0 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-links h4 {
        font-size: .88rem;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: .82rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .footer-bottom p {
        font-size: .8rem;
    }
}

/* ======================================================
   RESPONSIVE — MOBILE (max-width: 480px)
   ====================================================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section {
        padding: 48px 0;
    }

    .section-header {
        margin-bottom: 28px;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .section-label {
        font-size: .68rem;
        gap: 5px;
    }

    .section-description {
        font-size: .85rem;
    }

    /* Navbar — prevent overflow at small sizes */


    .nav-container {
        gap: 8px;
    }



    /* Hero */
    .hero {
        padding: 100px 0 40px;
    }

    .hero h1 {
        font-size: 1.55rem;
        line-height: 1.25;
    }

    .hero-badge {
        font-size: .65rem;
        padding: 5px 12px;
        gap: 5px;
    }

    .hero-subtitle {
        font-size: .88rem;
        margin-bottom: 24px;
    }

    .hero-cta-group {
        align-items: stretch;
        margin-bottom: 24px;
    }

    .btn {
        font-size: .88rem;
        padding: 11px 22px;
    }

    .btn-lg {
        padding: 12px 22px;
        font-size: .9rem;
    }

    /* stats 2×2 grid stays 2-column on mobile */
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 14px 20px;
        max-width: 100%;
    }

    .hero-stat-number {
        font-size: 1.5rem;
    }

    .hero-stat-suffix {
        font-size: 1.1rem;
    }

    .hero-stat-label {
        font-size: .68rem;
    }

    .hero-image-wrapper img {
        height: 220px;
    }

    /* Outsource */
    .outsource-image-block img {
        height: 200px;
    }

    .overlay-number {
        font-size: 1.5rem;
    }

    .overlay-text {
        font-size: .78rem;
    }

    .stat-card-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .stat-highlight-number {
        font-size: 1.6rem;
    }

    .stat-highlight-card p {
        font-size: .8rem;
    }

    .benefit-item {
        padding: 10px;
        gap: 12px;
    }

    .benefit-icon {
        width: 38px;
        height: 38px;
        min-width: 38px;
        font-size: .95rem;
    }

    .benefit-item h4 {
        font-size: .9rem;
    }

    .benefit-item p {
        font-size: .78rem;
    }

    /* Pain Points */
    .pain-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .pain-card {
        padding: 20px 16px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    /* Choose Us */
    .choose-layout {
        gap: 20px;
    }

    .choose-image-wrapper img {
        height: 200px;
    }

    .choose-overlay-stat {
        font-size: 1.5rem;
    }

    .choose-overlay-text {
        font-size: .72rem;
    }

    .choose-image-overlay {
        padding: 24px 16px 16px;
    }

    .choose-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .choose-card {
        padding: 20px 14px;
    }

    /* Approach */
    .approach-step {
        flex-direction: column;
        gap: 12px;
    }

    .approach-timeline::before {
        display: none;
    }

    .step-number {
        width: 44px;
        height: 44px;
    }

    .step-content {
        padding: 18px;
    }

    .step-content h3 {
        font-size: 1rem;
    }

    .step-content p {
        font-size: .82rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .service-pillar {
        padding: 20px 16px;
    }

    /* Process */
    .process-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-card {
        padding: 20px;
    }

    .process-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    /* Timeline */
    .timeline::before {
        left: 16px;
    }

    .timeline-marker {
        left: 0;
    }

    .timeline-dot {
        width: 36px;
        height: 36px;
        box-shadow: 0 0 0 4px rgba(45, 161, 207, .1);
    }

    .timeline-dot::after {
        width: 8px;
        height: 8px;
    }

    .timeline-item {
        margin-bottom: 32px !important;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 50px);
        margin-left: 50px;
    }

    .timeline-content {
        padding: 18px;
    }

    .timeline-content h3 {
        font-size: 1.05rem;
    }

    .timeline-content li {
        font-size: .85rem;
    }

    /* Deliverables */
    .dashboard-preview img {
        height: 180px;
    }

    .deliverables-showcase {
        margin-bottom: 20px;
    }

    .dashboard-badge {
        font-size: .68rem;
        padding: 5px 10px;
        top: 10px;
        left: 10px;
    }

    .deliverables-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .deliverable-card {
        padding: 20px;
    }

    .deliverable-icon {
        width: 44px;
        height: 44px;
        font-size: 1rem;
    }

    .deliverable-card h4 {
        font-size: .88rem;
    }

    .deliverable-card p {
        font-size: .78rem;
    }

    /* Value */
    .value-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .value-card {
        padding: 24px 16px;
    }

    .value-metric {
        font-size: 1.8rem;
    }

    .value-card h4 {
        font-size: .88rem;
    }

    .value-card p {
        font-size: .78rem;
    }

    /* Pricing */
    .pricing-grid {
        max-width: 100%;
    }

    .pricing-card {
        padding: 28px 20px;
    }

    .pricing-card h3 {
        font-size: 1.25rem;
    }

    /* Next Steps & Form */
    .next-steps-content h2 {
        font-size: 1.5rem;
    }

    .step-circle {
        width: 34px;
        height: 34px;
        min-width: 34px;
        font-size: .8rem;
    }

    .step-item {
        gap: 12px;
        margin-bottom: 16px;
    }

    .step-item h4 {
        font-size: .9rem;
    }

    .step-item p {
        font-size: .78rem;
    }

    .form-header {
        padding: 20px 16px 18px;
    }

    .form-header-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .form-header h3 {
        font-size: 1.15rem;
    }

    .form-header p {
        font-size: .78rem;
    }

    #consultationForm {
        padding: 18px;
    }

    .form-group {
        margin-bottom: 14px;
    }

    .form-group label {
        font-size: .75rem;
        gap: 4px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: .85rem;
        padding: 10px 12px;
    }

    .form-submit-btn {
        font-size: .9rem !important;
        padding: 13px 20px !important;
    }

    .cta-trust-badges {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }

    .trust-badge {
        font-size: .72rem;
    }

    .form-success {
        padding: 40px 20px;
    }

    .success-icon {
        width: 64px;
        height: 64px;
        font-size: 1.8rem;
    }

    .form-success h3 {
        font-size: 1.2rem;
    }

    .form-success p {
        font-size: .85rem;
    }

    /* Case Studies */
    .case-study-header {
        padding: 14px 16px;
        gap: 12px;
    }

    .case-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .case-industry {
        font-size: .82rem;
    }

    .case-location {
        font-size: .75rem;
    }

    .case-body {
        padding: 16px;
    }

    .case-section h4 {
        font-size: .78rem;
        gap: 6px;
    }

    .case-section p {
        font-size: .82rem;
    }

    .case-impact-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .case-impact {
        padding: 10px 8px;
    }

    .impact-value {
        font-size: 1.15rem;
    }

    .impact-label {
        font-size: .68rem;
    }

    /* Footer */
    .footer {
        padding: 48px 0 0;
    }

    .footer-grid {
        gap: 24px;
    }

    .footer-brand p {
        font-size: .82rem;
    }

    .footer-links h4 {
        font-size: .85rem;
    }

    .footer-links a {
        font-size: .8rem;
    }

    .footer-bottom {
        padding: 18px 0;
    }



    .back-to-top {
        width: 40px;
        height: 40px;
        font-size: .95rem;
        bottom: 20px;
        right: 20px;
    }

    /*-----------*/

    .floating-icon {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }

    .floating-label {
        display: block;
        font-size: 0.63rem;
        color: var(--gray-400);
    }

    .floating-value {
        display: block;
        font-weight: 700;
        color: var(--navy);
        font-size: 0.69rem;
    }

    .hero-floating-card {
        padding: 5px 10px;
    }


}

/* ======================================================
   RESPONSIVE — ULTRA-SMALL MOBILE (max-width: 360px)
   Targets: iPhone SE (375px - border case), Galaxy S8, older phones
   ====================================================== */
@media (max-width: 360px) {
    .container {
        padding: 0 12px;
    }

    /* Navbar */

    .hamburger span {
        width: 20px;
    }

    .nav-links {
        width: 260px;
        padding: 70px 24px 24px;
    }

    /* Hero */
    .hero {
        padding: 90px 0 36px;
    }

    .hero h1 {
        font-size: 1.4rem;
    }

    .hero-badge {
        font-size: .6rem;
        padding: 4px 10px;
    }

    .hero-subtitle {
        font-size: .82rem;
    }

    /* stats 2×2 stays 2-column even on tiny screens */
    .hero-stats {
        grid-template-columns: 1fr 1fr;
        gap: 12px 16px;
    }

    .hero-stat-number {
        font-size: 1.3rem;
    }

    .hero-stat-suffix {
        font-size: .95rem;
    }

    .hero-stat-label {
        font-size: .65rem;
        margin-top: 4px;
    }

    .hero-image-wrapper img {
        height: 180px;
    }

    /* Sections */
    .section {
        padding: 40px 0;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .btn {
        padding: 10px 18px;
        font-size: .82rem;
    }

    .btn-lg {
        padding: 12px 20px;
        font-size: .88rem;
    }

    /* Section grid overrides */
    .pain-grid {
        grid-template-columns: 1fr;
    }

    .choose-grid {
        grid-template-columns: 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
    }

    .case-impact-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Form */
    #consultationForm {
        padding: 14px;
    }

    .form-header {
        padding: 18px 14px 14px;
    }

    .form-header h3 {
        font-size: 1rem;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: .82rem;
        padding: 9px 10px;
    }


    /* Timeline */
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        width: calc(100% - 44px);
        margin-left: 44px;
    }
}




/* ============================================================
   SERVICES SECTION STYLES
   All rules scoped with .svc-* prefix — zero conflicts
   ============================================================ */

.svc-full *,
.svc-full *::before,
.svc-full *::after {
    box-sizing: border-box;
}

/* ── Section wrapper ── */
.svc-full {
    background: #F8FAFC;
    padding: 100px 0 110px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Animated shimmer top border
.svc-full::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #0A2540 0%, #2da1cf 30%, #5ec1ea 50%, #2da1cf 70%, #0A2540 100%);
    background-size: 200% 100%;
    animation: svc-shimmer 4s linear infinite;
}

@keyframes svc-shimmer {
    0% {
        background-position: 100% center;
    }

    100% {
        background-position: -100% center;
    }
} */

/* ── Inner wrapper ── */
.svc-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   HEADER
   ============================================================ */
.svc-head {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 48px;
    align-items: end;
    margin-bottom: 64px;
}

.svc-head-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #85b44a;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 14px;
    background: rgb(134 207 45 / 9%);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid rgba(45, 161, 207, .18);
    
}

.svc-head-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 2.9rem;
    font-weight: 800;
    color: #0A2540;
    line-height: 1.1;
    margin: 0;
}

.svc-head-title .svc-grad {
    background: linear-gradient(135deg, #2da1cf, #5ec1ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.svc-head-desc {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.78;
    margin: 0 0 24px;
}

.svc-head-pills {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.svc-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: .75rem;
    font-weight: 600;
    background: rgba(133, 180, 74, .1);
    color: #4b6a24;
    border: 1px solid rgba(133, 180, 74, .3);
    white-space: nowrap;
}

/* ============================================================
   TAB BAR
   ============================================================ */
.svc-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 36px;
    background: #fff;
    border-radius: 14px;
    padding: 5px;
    box-shadow: 0 2px 20px rgba(10, 37, 64, .07);
    border: 1px solid #E2E8F0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.svc-tabs::-webkit-scrollbar {
    display: none;
}

.svc-tab {
    flex: 1;
    min-width: 148px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: .8rem;
    font-weight: 600;
    color: #94A3B8;
    transition: background .22s, color .22s, box-shadow .22s;
    white-space: nowrap;
    line-height: 1;
}

.svc-tab i {
    font-size: .95rem;
    flex-shrink: 0;
    width: 1em;
    text-align: center;
    transition: transform .22s, color .22s;
    /* Force FA icon visibility */
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
}

.svc-tab:hover {
    color: #2da1cf;
    background: rgba(45, 161, 207, .06);
}

.svc-tab.active {
    background: linear-gradient(135deg, #0A2540, #0F3460);
    color: #fff;
    box-shadow: 0 4px 16px rgba(10, 37, 64, .22);
}

.svc-tab.active i {
    color: #5ec1ea;
    transform: scale(1.1);
}

/* ============================================================
   PANEL GRID
   ============================================================ */
.svc-panels {
    position: relative;
}

.svc-panel {
    display: none;
    animation: svc-in .32s ease both;
}

.svc-panel.active {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 28px;
    align-items: start;
}

@keyframes svc-in {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================================
   IDENTITY CARD (left / dark)
   ============================================================ */
.svc-identity {
    background: linear-gradient(155deg, #0A2540 0%, #0D2D45 55%, #1a7a8e 100%);
    border-radius: 20px;
    padding: 36px 28px;
    position: sticky;
    top: 96px;
    overflow: hidden;
}

.svc-identity::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(34, 184, 207, .07);
    pointer-events: none;
}

.svc-identity::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04);
    pointer-events: none;
}

.svc-id-num {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 5rem;
    font-weight: 800;
    color: rgba(255, 255, 255, .06);
    line-height: 1;
    position: absolute;
    top: 12px;
    right: 20px;
    pointer-events: none;
    user-select: none;
}

.svc-id-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(45, 161, 207, .22);
    border: 1px solid rgba(45, 161, 207, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ec1ea;
    font-size: 1.5rem;
    margin-bottom: 22px;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 22px rgba(45, 161, 207, .28);
}

/* Ensure FA icons render inside icon containers */
.svc-id-icon i,
.svc-item-dot i,
.svc-id-row i,
.svc-item-arrow i,
.svc-btn-p i,
.svc-btn-g i,
.svc-pill i,
.svc-head-label i {
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    line-height: 1;
}

.svc-identity h3 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
}

.svc-identity>p {
    font-size: .86rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.72;
    margin-bottom: 26px;
    position: relative;
    z-index: 1;
}

.svc-id-stats {
    display: flex;
    flex-direction: column;
    gap: 10px;
    position: relative;
    z-index: 1;
}

.svc-id-row {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 11px 14px;
    background: rgba(255, 255, 255, .06);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, .08);
    transition: background .2s, border-color .2s;
}

.svc-id-row:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(45, 161, 207, .4);
}

.svc-id-row i {
    color: #5ec1ea;
    font-size: .85rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.svc-id-row span {
    font-size: .78rem;
    color: rgba(255, 255, 255, .68);
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================================
   SERVICE ITEM CARDS (right)
   ============================================================ */
.svc-items {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.svc-item {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 24px 24px 20px;
    transition: transform .25s, box-shadow .25s, border-color .25s;
    position: relative;
    overflow: hidden;
}

.svc-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #2da1cf, #5ec1ea);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform .25s;
    border-radius: 0 2px 2px 0;
}

.svc-item:hover {
    transform: translateX(5px);
    box-shadow: 0 6px 28px rgba(10, 37, 64, .08);
    border-color: #CBD5E1;
}

.svc-item:hover::before {
    transform: scaleY(1);
}

.svc-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.svc-item-left {
    display: flex;
    align-items: center;
    gap: 13px;
    flex: 1;
    min-width: 0;
}

.svc-item-dot {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 11px;
    background: rgba(45, 161, 207, .09);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2da1cf;
    font-size: 1rem;
    transition: background .25s, color .25s, box-shadow .25s;
}

.svc-item:hover .svc-item-dot {
    background: linear-gradient(135deg, #2da1cf, #1d7ba2);
    color: #fff;
    box-shadow: 0 4px 14px rgba(45, 161, 207, .3);
}

.svc-item-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0A2540;
    margin: 0;
    line-height: 1.3;
    word-break: break-word;
}

.svc-item-arrow {
    width: 30px;
    height: 30px;
    min-width: 30px;
    border-radius: 8px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    font-size: .7rem;
    transition: background .25s, border-color .25s, color .25s, transform .25s;
    flex-shrink: 0;
}

.svc-item:hover .svc-item-arrow {
    background: #0A2540;
    border-color: #0A2540;
    color: #fff;
    transform: rotate(45deg);
}

.svc-item-desc {
    font-size: .85rem;
    color: #64748B;
    line-height: 1.72;
    margin-bottom: 14px;
    padding-left: 53px;
}

.svc-item-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    padding-left: 53px;
}

.svc-tag {
    padding: 3px 11px;
    border-radius: 50px;
    font-size: .68rem;
    font-weight: 600;
    background: #F1F5F9;
    color: #475569;
    border: 1px solid #E2E8F0;
    transition: background .2s, border-color .2s, color .2s;
    white-space: nowrap;
}

.svc-item:hover .svc-tag {
    background: rgba(45, 161, 207, .07);
    border-color: rgba(45, 161, 207, .2);
    color: #1d7ba2;
}

/* ============================================================
   BOTTOM CTA BAR
   ============================================================ */
.svc-cta-bar {
    margin-top: 52px;
    background: linear-gradient(135deg, #0A2540 0%, #0F3460 45%, #1d7ba2 100%);
    border-radius: 20px;
    padding: 40px 44px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
    overflow: hidden;
}

.svc-cta-bar::before {
    content: '';
    position: absolute;
    right: -70px;
    top: -70px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(34, 184, 207, .08);
    pointer-events: none;
}

.svc-cta-bar::after {
    content: '';
    position: absolute;
    left: 35%;
    bottom: -55px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .03);
    pointer-events: none;
}

.svc-cta-text {
    position: relative;
    z-index: 1;
}

.svc-cta-text h4 {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
}

.svc-cta-text p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .58);
    margin: 0;
    line-height: 1.6;
}

.svc-cta-btns {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.svc-btn-p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 26px;
    border-radius: 50px;
    background: linear-gradient(135deg, #2da1cf, #1d7ba2);
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: .88rem;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform .22s, box-shadow .22s;
    box-shadow: 0 4px 18px rgba(45, 161, 207, .38);
    white-space: nowrap;
}

.svc-btn-p:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(45, 161, 207, .48);
    color: #fff;
}

.svc-btn-g {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .08);
    color: rgba(255, 255, 255, .85);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: .88rem;
    border: 1px solid rgba(255, 255, 255, .16);
    cursor: pointer;
    text-decoration: none;
    transition: background .22s, border-color .22s, color .22s;
    white-space: nowrap;
}

.svc-btn-g:hover {
    background: rgba(255, 255, 255, .15);
    border-color: rgba(255, 255, 255, .3);
    color: #fff;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width:1024px) {
    .svc-full {
        padding: 80px 0 90px;
    }

    .svc-head {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 48px;
    }

    .svc-head-title {
        font-size: 2.4rem;
    }

    .svc-panel.active {
        grid-template-columns: 1fr;
    }

    /* Identity card horizontal layout */
    .svc-identity {
        position: static;
        display: grid;
        grid-template-columns: 60px 1fr;
        column-gap: 20px;
        row-gap: 0;
        padding: 28px 24px;
    }

    .svc-id-num {
        display: none;
    }

    .svc-id-icon {
        grid-column: 1;
        grid-row: 1;
        margin-bottom: 0;
        align-self: start;
    }

    .svc-identity h3 {
        grid-column: 2;
        grid-row: 1;
        align-self: center;
        margin: 0 0 6px;
        font-size: 1.2rem;
    }

    .svc-identity>p {
        grid-column: 1 / -1;
        grid-row: 2;
        margin-top: 14px;
        margin-bottom: 18px;
    }

    .svc-id-stats {
        grid-column: 1 / -1;
        grid-row: 3;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width:768px) {
    .svc-full {
        padding: 64px 0 72px;
    }

    .svc-wrap {
        padding: 0 16px;
    }

    .svc-head {
        margin-bottom: 36px;
    }

    .svc-head-title {
        font-size: 2rem;
    }

    .svc-head-desc {
        font-size: .93rem;
    }

    .svc-tabs {
        padding: 4px;
        gap: 3px;
    }

    .svc-tab {
        min-width: 120px;
        font-size: .76rem;
        padding: 11px 10px;
        gap: 6px;
    }

    /* Identity back to block */
    .svc-identity {
        display: block;
        padding: 24px 20px;
    }

    .svc-id-icon {
        margin-bottom: 14px;
    }

    .svc-id-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .svc-item {
        padding: 20px 18px 16px;
    }

    .svc-item-desc,
    .svc-item-tags {
        padding-left: 0;
    }

    .svc-cta-bar {
        flex-direction: column;
        text-align: center;
        padding: 32px 24px;
        border-radius: 16px;
        gap: 20px;
    }

    .svc-cta-btns {
        flex-wrap: wrap;
        justify-content: center;
    }

    .svc-cta-text h4 {
        font-size: 1.25rem;
    }

    .svc-cta-text p {
        font-size: .84rem;
    }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width:480px) {
    .svc-full {
        padding: 52px 0 60px;
    }

    .svc-wrap {
        padding: 0 14px;
    }

    .svc-head-title {
        font-size: 1.75rem;
    }

    .svc-head-label {
        font-size: .68rem;
        letter-spacing: 1.8px;
    }

    .svc-head-desc {
        font-size: .88rem;
    }

    /* Show icon only in tabs */
    .svc-tab {
        min-width: 58px;
        padding: 13px 10px;
    }

    .svc-tab span {
        display: none;
    }

    .svc-tab i {
        font-size: 1.05rem;
    }

    .svc-id-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .svc-id-stats {
        grid-template-columns: 1fr;
    }

    .svc-identity h3 {
        font-size: 1.15rem;
    }

    .svc-item {
        padding: 18px 16px 14px;
    }

    .svc-item-dot {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: .9rem;
    }

    .svc-item-title {
        font-size: .92rem;
    }

    .svc-item-desc {
        font-size: .82rem;
    }

    .svc-tag {
        font-size: .65rem;
        padding: 3px 9px;
    }

    .svc-cta-bar {
        padding: 26px 18px;
        border-radius: 14px;
    }

    .svc-cta-text h4 {
        font-size: 1.15rem;
    }

    .svc-btn-g {
        display: none;
    }

    .svc-btn-p {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }
}

/* ============================================================
   RESPONSIVE — 360px ultra-small
   ============================================================ */
@media (max-width:360px) {
    .svc-head-title {
        font-size: 1.5rem;
    }

    .svc-tab {
        min-width: 50px;
        padding: 12px 8px;
    }

    .svc-item-left {
        gap: 10px;
    }

    .svc-item-arrow {
        display: none;
    }
}



/* ── scope reset ── */
.rdm-section *,
.rdm-section *::before,
.rdm-section *::after {
    box-sizing: border-box;
}

/* ============================================================
   ROADMAP SECTION
   ============================================================ */
.rdm-section {
    background: #fff;
    padding: 108px 0 120px;
    position: relative;
    overflow: hidden;
    font-family: 'Inter', system-ui, sans-serif;
}

/* Subtle grid texture */
.rdm-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(45, 161, 207, .04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(45, 161, 207, .04) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
}

/* Large decorative number watermark */
.rdm-section::after {
    content: 'ROADMAP';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: clamp(5rem, 14vw, 11rem);
    font-weight: 900;
    color: rgba(10, 37, 64, .028);
    white-space: nowrap;
    pointer-events: none;
    user-select: none;
    letter-spacing: .08em;
}

.rdm-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}

/* ── Section header ── */
.rdm-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 76px;
}

.rdm-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #85b44a;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
    background: rgb(134 207 45 / 9%);
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(45, 161, 207, .18);
    
}

.rdm-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 2.75rem;
    font-weight: 800;
    color: #0A2540;
    line-height: 1.15;
    margin: 0 0 16px;
}

.rdm-title .rdm-grad {
    background: linear-gradient(135deg, #2da1cf, #5ec1ea);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rdm-subtitle {
    font-size: 1rem;
    color: #64748B;
    line-height: 1.75;
    margin: 0;
}

/* ============================================================
   PHASE CARDS GRID
   ============================================================ */
.rdm-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
    margin-bottom: 72px;
}

/* Connector line between cards */
.rdm-grid::before {
    content: '';
    position: absolute;
    top: 52px;
    left: calc(12.5% + 20px);
    right: calc(12.5% + 20px);
    height: 2px;
    background: linear-gradient(90deg, #2da1cf, #5ec1ea, #2da1cf);
    z-index: 0;
}

/* ── Individual phase card ── */
.rdm-card {
    position: relative;
    padding: 0 16px;
    z-index: 1;
}

/* Step bubble */
.rdm-step-bubble {
    width: 104px;
    height: 104px;
    border-radius: 50%;
    margin: 0 auto 28px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: transform .3s ease;
}

.rdm-card:hover .rdm-step-bubble {
    transform: translateY(-6px);
}

/* Outer ring */
.rdm-step-bubble::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #2da1cf, #5ec1ea) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: destination-out;
    mask-composite: exclude;
    transition: opacity .3s ease;
    opacity: .35;
}

.rdm-card:hover .rdm-step-bubble::before {
    opacity: 1;
}

/* Bubble fill per phase */
.rdm-card:nth-child(1) .rdm-step-bubble {
    background: linear-gradient(145deg, #EFF8FA, #D6EFF3);
}

.rdm-card:nth-child(2) .rdm-step-bubble {
    background: linear-gradient(145deg, #E8F4F6, #C8E8EE);
}

.rdm-card:nth-child(3) .rdm-step-bubble {
    background: linear-gradient(145deg, #0F3460, #0A2540);
}

.rdm-card:nth-child(4) .rdm-step-bubble {
    background: linear-gradient(145deg, #0A2540, #2da1cf);
}

.rdm-step-num {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: .65rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #2da1cf;
    line-height: 1;
    margin-bottom: 2px;
}

.rdm-card:nth-child(3) .rdm-step-num,
.rdm-card:nth-child(4) .rdm-step-num {
    color: rgba(255, 255, 255, .6);
}

.rdm-step-icon {
    font-size: 1.6rem;
    color: #2da1cf;
    display: inline-block;
    line-height: 1;
}

.rdm-card:nth-child(3) .rdm-step-icon,
.rdm-card:nth-child(4) .rdm-step-icon {
    color: #5ec1ea;
}

/* Card body */
.rdm-card-body {
    background: #fff;
    border: 1px solid #E2E8F0;
    border-radius: 18px;
    padding: 28px 22px 24px;
    transition: box-shadow .3s ease, transform .3s ease, border-color .3s ease;
    position: relative;
    overflow: hidden;
}

.rdm-card:hover .rdm-card-body {
    box-shadow: 0 12px 40px rgba(10, 37, 64, .1);
    transform: translateY(-4px);
    border-color: #CBD5E1;
}

/* Teal accent top line */
.rdm-card-body::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #2da1cf, #5ec1ea);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .3s ease;
    border-radius: 18px 18px 0 0;
}

.rdm-card:hover .rdm-card-body::before {
    transform: scaleX(1);
}

.rdm-phase-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    color: #2da1cf;
    background: rgba(45, 161, 207, .08);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.rdm-card-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #0A2540;
    margin: 0 0 16px;
    line-height: 1.3;
}

.rdm-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.rdm-list li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: .84rem;
    color: #475569;
    line-height: 1.5;
}

.rdm-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    min-width: 6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2da1cf, #5ec1ea);
    margin-top: 6px;
    flex-shrink: 0;
}

/* Outcome badge */
.rdm-outcome {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    background: linear-gradient(135deg, rgba(45, 161, 207, .07), rgba(34, 184, 207, .04));
    border: 1px solid rgba(45, 161, 207, .14);
    border-radius: 10px;
    padding: 11px 14px;
}

.rdm-outcome i {
    color: #2da1cf;
    font-size: .85rem;
    margin-top: 1px;
    flex-shrink: 0;
    display: inline-block;
}

.rdm-outcome span {
    font-size: .8rem;
    font-weight: 600;
    color: #0A2540;
    line-height: 1.45;
}

/* ============================================================
   DIVIDER
   ============================================================ */
.rdm-divider {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0 0 72px;
}

.rdm-divider-line {
    flex: 1;
    height: 1px;
    background: #E2E8F0;
}

.rdm-divider-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: #0A2540;
    color: #fff;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.rdm-divider-badge i {
    color: #5ec1ea;
    font-size: .8rem;
}

/* ============================================================
   PRICING BANNER
   ============================================================ */
.rdm-pricing {
    background: linear-gradient(145deg, #0A2540 0%, #0D2D45 40%, #0F3460 70%, #1d7ba2 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 360px;
}

/* Decorative circles */
.rdm-pricing::before {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(34, 184, 207, .12) 0%, transparent 70%);
    pointer-events: none;
}

.rdm-pricing::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: 38%;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(45, 161, 207, .1) 0%, transparent 70%);
    pointer-events: none;
}

/* ── Left text pane ── */
.rdm-pricing-left {
    padding: 52px 48px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.rdm-pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #5ec1ea;
    background: rgba(34, 184, 207, .1);
    border: 1px solid rgba(34, 184, 207, .2);
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 20px;
    width: fit-content;
}

.rdm-pricing-title {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.95rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    margin: 0 0 18px;
}

.rdm-pricing-title span {
    background: linear-gradient(135deg, #5ec1ea, #2da1cf);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rdm-pricing-desc {
    font-size: .9rem;
    color: rgba(255, 255, 255, .62);
    line-height: 1.72;
    margin: 0 0 32px;
    max-width: 420px;
}

.rdm-pricing-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.rdm-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    background: linear-gradient(135deg, #2da1cf, #1d7ba2);
    color: #fff;
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: .88rem;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: transform .22s, box-shadow .22s;
    box-shadow: 0 4px 18px rgba(45, 161, 207, .4);
    white-space: nowrap;
}

.rdm-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(45, 161, 207, .5);
    color: #fff;
}

.rdm-btn-primary i {
    font-size: .8rem;
    display: inline-block;
}

.rdm-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .07);
    color: rgba(255, 255, 255, .85);
    font-family: 'Inter', system-ui, sans-serif;
    font-weight: 600;
    font-size: .88rem;
    border: 1px solid rgba(255, 255, 255, .15);
    text-decoration: none;
    cursor: pointer;
    transition: background .22s, border-color .22s;
    white-space: nowrap;
}

.rdm-btn-ghost:hover {
    background: rgba(255, 255, 255, .13);
    border-color: rgba(255, 255, 255, .28);
    color: #fff;
}

.rdm-btn-ghost i {
    font-size: .8rem;
    display: inline-block;
}

/* ── Right stats pane ── */
.rdm-pricing-right {
    padding: 52px 44px 52px 32px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

/* Vertical divider */
.rdm-pricing-right::before {
    content: '';
    position: absolute;
    left: 0;
    top: 48px;
    bottom: 48px;
    width: 1px;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, .12), transparent);
}

.rdm-stat-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: background .22s, border-color .22s, transform .22s;
}

.rdm-stat-card:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(45, 161, 207, .35);
    transform: translateX(5px);
}

.rdm-stat-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    border-radius: 12px;
    background: rgba(45, 161, 207, .2);
    border: 1px solid rgba(45, 161, 207, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5ec1ea;
    font-size: 1.1rem;
}

.rdm-stat-icon i {
    display: inline-block;
    line-height: 1;
}

.rdm-stat-value {
    font-family: 'Outfit', system-ui, sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-bottom: 4px;
}

.rdm-stat-value span {
    color: #5ec1ea;
    font-size: 1.1rem;
}

.rdm-stat-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .55);
    font-weight: 500;
    line-height: 1.4;
}

/* ── Trust strip below pricing ── */
.rdm-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    margin-top: 28px;
    flex-wrap: wrap;
}

.rdm-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: #94A3B8;
    font-weight: 500;
}

.rdm-trust-item i {
    color: #2da1cf;
    font-size: .85rem;
    display: inline-block;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
    .rdm-section {
        padding: 80px 0 90px;
    }

    .rdm-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .rdm-grid::before {
        display: none;
    }

    .rdm-pricing {
        grid-template-columns: 1fr;
    }

    .rdm-pricing-right::before {
        display: none;
    }

    .rdm-pricing-left {
        padding: 44px 40px 28px;
    }

    .rdm-pricing-right {
        padding: 0 40px 44px;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 14px;
    }

    .rdm-stat-card {
        flex: 1;
        min-width: 200px;
    }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
    .rdm-section {
        padding: 64px 0 72px;
    }

    .rdm-wrap {
        padding: 0 16px;
    }

    .rdm-title {
        font-size: 2.1rem;
    }

    .rdm-header {
        margin-bottom: 52px;
    }

    .rdm-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .rdm-step-bubble {
        width: 84px;
        height: 84px;
        margin-bottom: 20px;
    }

    .rdm-step-icon {
        font-size: 1.3rem;
    }

    .rdm-card-body {
        padding: 22px 18px 18px;
    }

    .rdm-card-title {
        font-size: 1rem;
    }

    .rdm-pricing-left {
        padding: 36px 28px 24px;
    }

    .rdm-pricing-title {
        font-size: 1.6rem;
    }

    .rdm-pricing-right {
        padding: 0 28px 36px;
        flex-direction: column;
    }

    .rdm-stat-card {
        min-width: unset;
    }

    .rdm-divider {
        margin: 0 0 52px;
    }

    .rdm-trust {
        gap: 20px;
    }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
    .rdm-section {
        padding: 52px 0 60px;
    }

    .rdm-wrap {
        padding: 0 14px;
    }

    .rdm-title {
        font-size: 1.75rem;
    }

    .rdm-header {
        margin-bottom: 40px;
    }

    .rdm-step-bubble {
        width: 80px;
        height: 80px;
        gap: 5px;
    }

    .rdm-step-icon {
        font-size: 1.1rem;
    }

    .rdm-card-title {
        font-size: .95rem;
    }

    .rdm-list li {
        font-size: .81rem;
    }

    .rdm-outcome span {
        font-size: .76rem;
    }

    .rdm-pricing {
        border-radius: 18px;
    }

    .rdm-pricing-left {
        padding: 30px 22px 20px;
    }

    .rdm-pricing-title {
        font-size: 1.4rem;
    }

    .rdm-pricing-desc {
        font-size: .84rem;
    }

    .rdm-pricing-right {
        padding: 0 22px 30px;
    }

    .rdm-btn-ghost {
        display: none;
    }

    .rdm-btn-primary {
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
    }

    .rdm-stat-card {
        padding: 16px 16px;
        gap: 14px;
    }

    .rdm-stat-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        font-size: .95rem;
    }

    .rdm-stat-value {
        font-size: 1.4rem;
    }

    .rdm-trust {
        gap: 14px;
    }

    .rdm-trust-item {
        font-size: .75rem;
    }

    .rdm-divider-badge {
        font-size: .68rem;
        padding: 7px 14px;
    }
}

/* ============================================================
   RESPONSIVE — 360px
   ============================================================ */
@media (max-width: 360px) {
    .rdm-title {
        font-size: 1.5rem;
    }

    .rdm-card-body {
        padding: 18px 14px 14px;
    }

    .rdm-pricing-title {
        font-size: 1.25rem;
    }
}



/* ===== PLATFORMS STRIP ===== */
.platforms-strip {
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 20px 0;
    overflow: hidden;
}

.platforms-strip .container {
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.platforms-label {
    font-size: .78rem;
    font-weight: 600;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    flex-shrink: 0;
    /* removed white-space: nowrap so it can wrap on mobile */
}

.platforms-logos {
    display: flex;
    align-items: center;
    gap: 0;
    flex-wrap: wrap;
    flex: 1;
}

.platform-item {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.platform-text-logo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: .95rem;
    color: var(--gray-400);
    transition: var(--transition);
    cursor: default;
    white-space: nowrap;
}

.platform-item:hover .platform-text-logo {
    color: var(--teal);
}

.platform-divider {
    width: 1px;
    height: 20px;
    background: var(--gray-200);
    flex-shrink: 0;
}

/* ===== ABOUT SECTION ===== */
.about-section {
    background: var(--white) !important;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.about-content .section-label {
    margin-bottom: 14px;
    display: inline-flex;
}

.about-content h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.about-lead {
    font-size: 1.05rem;
    color: var(--gray-600);
    margin-bottom: 16px;
    line-height: 1.75;
}

.about-body {
    font-size: .93rem;
    color: var(--gray-500);
    line-height: 1.75;
    margin-bottom: 24px;
}

.about-highlight {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: linear-gradient(135deg, rgba(45, 161, 207, .06), rgba(45, 161, 207, .02));
    border-left: 3px solid var(--teal);
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    padding: 16px 20px;
    font-size: .92rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.about-highlight>i {
    color: var(--teal);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

/* Who Card */
.who-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 36px;
    height: 100%;
}

.who-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px;
}

.who-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.who-header h3 {
    font-size: 1.2rem;
    color: var(--navy);
}

.who-sub {
    font-size: .88rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    line-height: 1.65;
}

.who-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.who-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .9rem;
    color: var(--gray-700);
    line-height: 1.6;
}

.who-bullet {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: rgba(133, 180, 74, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--green);
    font-size: .6rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ===== WHAT YOU ACTUALLY GET ===== */
.what-you-get {
    background: var(--gray-50) !important;
}

.wyg-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.wyg-deliverables {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.wyg-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 20px;
    transition: var(--transition);
}

.wyg-item:hover {
    transform: translateX(4px);
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
}

.wyg-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
}

.wyg-item h4 {
    font-size: .95rem;
    margin-bottom: 4px;
    color: var(--navy);
}

.wyg-item p {
    font-size: .83rem;
    color: var(--gray-500);
    margin: 0;
}

/* Comparison Table */
.wyg-comparison {
    position: sticky;
    top: 100px;
    align-self: start;
}

.comparison-table-wrap {
    background: var(--white);
    border: none;
    border-radius: var(--radius-xl);
    overflow: hidden;
    overflow-x: auto;
    box-shadow: 0 8px 40px rgba(10, 37, 64, .10), 0 2px 8px rgba(45, 161, 207, .06);
    -webkit-overflow-scrolling: touch;
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-size: .9rem;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, #0A2540 0%, #0F3460 40%, #2da1cf 100%);
}

.comparison-table thead th {
    padding: 18px 22px;
    color: var(--white);
    font-weight: 700;
    font-family: var(--font-display);
    font-size: .88rem;
    text-align: left;
    letter-spacing: .4px;
    border-bottom: none;
}

.comparison-table thead th.col-feature {
    min-width: 160px;
}

.comparison-table thead th.col-new {
    background: rgba(45, 161, 207, .35);
    text-align: center;
    font-size: .9rem;
    letter-spacing: .6px;
}

.comparison-table tbody tr {
    border-bottom: 1px solid rgba(226, 232, 240, .7);
    transition: all var(--transition);
}

.comparison-table tbody tr:last-child {
    border-bottom: none;
}

.comparison-table tbody tr:hover {
    background: linear-gradient(90deg, rgba(45, 161, 207, .03), rgba(45, 161, 207, .06));
}

.comparison-table tbody td {
    padding: 18px 22px;
    color: var(--gray-700);
    vertical-align: middle;
    font-weight: 500;
}

.comparison-table tbody td:first-child {
    font-weight: 500;
    color: var(--gray-700);
    font-size: .88rem;
}

.comparison-table tbody td.col-new {
    text-align: center;
    background: linear-gradient(180deg, rgba(45, 161, 207, .02), rgba(45, 161, 207, .05));
}

.cmp-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(45, 161, 207, .12), rgba(45, 161, 207, .06));
    color: var(--teal-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: .78rem;
    font-weight: 600;
    white-space: nowrap;
    border: 1px solid rgba(45, 161, 207, .15);
    transition: all var(--transition);
    letter-spacing: .2px;
}

.comparison-table tbody tr:hover .cmp-badge {
    background: linear-gradient(135deg, rgba(45, 161, 207, .18), rgba(45, 161, 207, .10));
    border-color: rgba(45, 161, 207, .25);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(45, 161, 207, .12);
}

/* ===== PRICING ROI NOTE ===== */
.pricing-roi-note {
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, .07);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: var(--radius-lg);
    padding: 20px 28px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.pricing-roi-note>i {
    color: var(--teal-light);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pricing-roi-note>span {
    flex: 1;
    font-size: .93rem;
    color: rgba(255, 255, 255, .7);
    min-width: 200px;
}

.pricing-roi-note>span strong {
    color: var(--white);
}

/* ===== DIAGNOSTIC CTA ===== */
.diagnostic-cta {
    background: linear-gradient(135deg, rgba(45, 161, 207, .08), rgba(45, 161, 207, .03));
    border: 1px solid rgba(45, 161, 207, .2);
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 36px;
}

.diagnostic-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.diagnostic-icon-box {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    flex-shrink: 0;
}

.diagnostic-header h4 {
    font-size: 1rem;
    margin-bottom: 2px;
    color: var(--navy);
}

.diagnostic-header p {
    font-size: .82rem;
    color: var(--gray-500);
    margin: 0;
}

.diagnostic-list {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.diagnostic-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .85rem;
    color: var(--gray-600);
}

.diagnostic-list li i {
    color: var(--teal);
    font-size: .75rem;
}

.diagnostic-btn {
    border-color: var(--teal) !important;
    color: var(--teal) !important;
}

.diagnostic-btn:hover {
    background: var(--teal) !important;
    color: var(--white) !important;
}

/* ===== TEAM SECTION ===== */
.team-section {
    background: var(--white) !important;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--teal);
}

.team-avatar {
    position: relative;
    margin-bottom: 20px;
}

.team-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    background: var(--white);
}

.team-avatar-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid var(--teal);
    opacity: .3;
    transition: var(--transition);
}

.team-card:hover .team-avatar-ring {
    opacity: 1;
    transform: scale(1.05);
}

.team-info h3 {
    font-size: 1.3rem;
    margin-bottom: 6px;
    color: var(--navy);
}

.team-role {
    display: inline-block;
    font-size: .8rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--teal-dark);
    text-transform: uppercase;
    margin-bottom: 14px;
    background: rgba(45, 161, 207, .1);
    padding: 4px 14px;
    border-radius: 50px;
}

.team-info p {
    font-size: .88rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 18px;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    justify-content: center;
}

.team-tag {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 600;
    background: var(--gray-100);
    color: var(--gray-600);
    border: 1px solid var(--gray-200);
}

/* ===== OFFICES SECTION ===== */
.offices-section {
    background: linear-gradient(135deg, var(--navy), var(--navy-light)) !important;
}

.offices-section .section-label {
    color: #85b44a;
}

.offices-section .section-header h2 {
    color: var(--white);
}

.offices-section .section-description {
    color: rgba(255, 255, 255, .6);
}

.offices-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    max-width: 780px;
    margin: 0 auto;
}

.office-card {
    background: rgba(255, 255, 255, .07);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: var(--radius-xl);
    padding: 36px 32px;
    position: relative;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.office-card:hover {
    background: rgba(255, 255, 255, .11);
    border-color: rgba(45, 161, 207, .4);
    transform: translateY(-4px);
}

.office-corporate {
    border-color: rgba(45, 161, 207, .3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.office-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: linear-gradient(135deg, var(--teal), var(--teal-dark));
    color: var(--white);
    padding: 4px 16px;
    border-radius: 50px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.office-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(45, 161, 207, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--teal-light);
    font-size: 1.3rem;
    margin-bottom: 16px;
}

.office-card h3 {
    color: var(--white);
    font-size: 1.1rem;
    margin-bottom: 14px;
}

.office-card address {
    font-style: normal;
    margin-bottom: 20px;
}

.office-card address p {
    font-size: .88rem;
    color: rgba(255, 255, 255, .6);
    line-height: 1.8;
}

.office-map-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    font-weight: 600;
    color: var(--teal-light);
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

.office-map-link:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, .3);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    background: var(--gray-50) !important;
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.faq-item:hover {
    border-color: var(--teal);
}

.faq-item.open {
    border-color: var(--teal);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--teal);
}

.faq-item.open .faq-question {
    color: var(--teal);
}

.faq-icon {
    font-size: .75rem;
    color: var(--gray-400);
    transition: transform var(--transition);
    flex-shrink: 0;
}

.faq-item.open .faq-icon {
    transform: rotate(180deg);
    color: var(--teal);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease, padding .35s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 24px 20px;
    font-size: .9rem;
    color: var(--gray-600);
    line-height: 1.75;
}

/* ====================================================
   RESPONSIVE — NEW SECTIONS
   ==================================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-content h2 {
        font-size: 2rem;
    }

    .wyg-layout {
        grid-template-columns: 1fr;
    }

    .wyg-comparison {
        position: static;
    }

    .team-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }

    .offices-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
    }
}

@media (max-width: 768px) {

    /* Platforms strip — stack label above logos */
    .platforms-strip .container {
        gap: 12px;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .platforms-label {
        white-space: normal;
        text-align: center;
        font-size: .72rem;
    }

    .platforms-logos {
        gap: 0;
        justify-content: center;
    }

    .platform-item {
        padding: 4px 14px;
    }

    .platform-divider {
        height: 16px;
    }

    .about-content h2 {
        font-size: 1.8rem;
    }

    .about-lead {
        font-size: .97rem;
    }

    .who-card {
        padding: 24px;
    }

    .wyg-item {
        padding: 16px;
    }

    .comparison-table {
        font-size: .82rem;
    }

    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 12px 12px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }

    .team-card {
        padding: 28px 20px;
    }

    .offices-grid {
        grid-template-columns: 1fr;
        max-width: 420px;
    }

    .office-card {
        padding: 28px 24px;
    }

    .diagnostic-cta {
        padding: 22px;
    }

    .pricing-roi-note {
        flex-direction: column;
        text-align: center;
    }

    .pricing-roi-note>i {
        display: none;
    }
}

@media (max-width: 480px) {
    .platforms-strip {
        padding: 16px 0;
    }

    .platforms-strip .container {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }

    .platforms-label {
        font-size: .68rem;
        letter-spacing: .5px;
    }

    .platforms-logos {
        gap: 0;
        flex-wrap: wrap;
        justify-content: center;
    }

    .platform-item {
        padding: 4px 10px;
    }

    .platform-text-logo {
        font-size: .82rem;
    }

    /* Hide dividers on small screens so logos wrap freely */
    .platform-divider {
        display: none;
    }

    .about-content h2 {
        font-size: 1.5rem;
    }

    .who-card {
        padding: 20px 16px;
    }

    .wyg-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .comparison-table {
        font-size: .78rem;
    }

    .comparison-table thead th {
        padding: 10px 10px;
        font-size: .75rem;
    }

    .comparison-table tbody td {
        padding: 10px 10px;
    }

    .cmp-badge {
        font-size: .7rem;
        padding: 3px 8px;
    }

    .team-card {
        padding: 24px 16px;
    }

    .team-photo {
        width: 64px;
        height: 64px;
    }

    .offices-grid {
        max-width: 100%;
    }

    .office-card {
        padding: 24px 18px;
    }

    .faq-question {
        font-size: .92rem;
        padding: 16px 18px;
    }

    .faq-answer p {
        padding: 0 18px 16px;
        font-size: .85rem;
    }

    .diagnostic-cta {
        padding: 18px;
    }

    .diagnostic-header {
        gap: 10px;
    }

    .diagnostic-header h4 {
        font-size: .92rem;
    }
}

/* ======================================================
   RESPONSIVE — ULTRA-SMALL (max-width: 360px) — new sections
   ====================================================== */
@media (max-width: 360px) {
    .about-content h2 {
        font-size: 1.3rem;
    }

    .about-lead {
        font-size: .85rem;
    }

    .about-body {
        font-size: .82rem;
    }

    .who-card {
        padding: 16px 12px;
    }

    .who-list li {
        font-size: .82rem;
    }

    .wyg-item {
        padding: 12px;
    }

    .wyg-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
        font-size: .85rem;
    }

    .comparison-table {
        font-size: .72rem;
        min-width: 260px;
    }

    .comparison-table thead th {
        padding: 8px 8px;
        font-size: .68rem;
    }

    .comparison-table tbody td {
        padding: 8px 8px;
    }

    .cmp-badge {
        font-size: .65rem;
        padding: 2px 6px;
        white-space: normal;
    }

    .team-grid {
        max-width: 100%;
    }

    .team-card {
        padding: 20px 12px;
    }

    .team-photo {
        width: 56px;
        height: 56px;
    }

    .team-info h3 {
        font-size: 1.1rem;
    }

    .team-role {
        font-size: .72rem;
    }

    .offices-grid {
        max-width: 100%;
    }

    .office-card {
        padding: 20px 14px;
    }

    .office-card h3 {
        font-size: 1rem;
    }

    .office-card address p {
        font-size: .82rem;
    }

    .diagnostic-cta {
        padding: 14px;
    }

    .diagnostic-header {
        flex-direction: column;
    }

    /* .platforms-logos { justify-content: flex-start; } */
    .platform-item {
        padding: 4px 10px;
    }

    .platform-text-logo {
        font-size: .82rem;
    }

    .faq-question {
        font-size: .85rem;
        padding: 14px 14px;
        gap: 10px;
    }

    .pricing-roi-note {
        padding: 16px;
    }

    /* Green overrides */
    .diagnostic-btn {
        border-color: var(--green);
        color: var(--green);
    }

    .diagnostic-btn:hover {
        background: var(--green);
        color: var(--white);
    }

    .diagnostic-list li i {
        color: var(--green);
    }
}

/* ============================================================
   RESPONSIVE LOGO SIZING
   ============================================================ */
@media (max-width: 991px) {
    .logo img {
        max-height: 30px;
    }

    .footer-brand .logo img {
        max-height: 40px;
    }
}

@media (max-width: 768px) {
    .logo img {
        max-height:28px;
    }

    .footer-brand .logo img {
        max-height: 35px;
    }
}

@media (max-width: 480px) {
    .logo img {
        max-height: 28px;
    }

    .footer-brand .logo img {
        max-height: 35px;
    }
}

/*==============Blog Css=======================*/


.blog-section {
    background: #fff;
    padding: 100px 0;
}
 
.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}
 
/* Header */
.blog-header {
    text-align: center;
    margin-bottom: 48px;
}
 
.blog-section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #85b44a;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}
 
.blog-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #0A2540;
    margin-bottom: 0;
}
 
/* 3-column card grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}
 
/* Card */
.blog-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    background: #fff;
    transition: transform .25s, box-shadow .25s;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
}
 
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 36px rgba(10, 37, 64, .1);
}
 
.blog-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
    display: block;
}
 
.blog-card-body {
    padding: 22px 22px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
 
.blog-card-meta {
    font-size: .75rem;
    color: #94A3B8;
    margin-bottom: 10px;
    font-weight: 500;
}
 
.blog-card-meta span {
    color: #CBD5E1;
    margin: 0 6px;
}
 
.blog-card-title {
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0A2540;
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color .2s;
}
 
.blog-card:hover .blog-card-title {
    color: #2da1cf;
}
 
.blog-card-excerpt {
    font-size: .85rem;
    color: #64748B;
    line-height: 1.7;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 18px;
}
 
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: .8rem;
    font-weight: 700;
    color: #2da1cf;
    text-decoration: none;
    margin-top: auto;
}
 
.blog-read-more i {
    font-size: .65rem;
}
 
/* View All Button */
.blog-cta {
    text-align: center;
    margin-top: 4px;
}
 
.blog-view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 32px;
    border-radius: 50px;
    background: linear-gradient(135deg, #2da1cf, #1d7ba2);
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    text-decoration: none;
    transition: transform .22s, box-shadow .22s;
    box-shadow: 0 4px 18px rgba(45, 161, 207, .3);
}
 
.blog-view-all:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 26px rgba(45, 161, 207, .45);
    color: #fff;
}
 
/* Responsive */
@media (max-width: 1024px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
 
@media (max-width: 640px) {
    .blog-section { padding: 64px 0; }
    .blog-grid { grid-template-columns: 1fr; gap: 20px; }
    .blog-header h2 { font-size: 1.8rem; }
}


/*---- Popup Model ------*/

.download-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.65);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.download-modal.active {
    display: flex;
}

.download-modal-content {
    background: #fff;
    width: 100%;
    max-width: 420px;
    border-radius: 20px;
    padding: 32px;
    position: relative;
    animation: modalFade .25s ease;
}

@keyframes modalFade {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: none;
    font-size: 28px;
    cursor: pointer;
    color: #64748b;
}

.download-modal h3 {
    margin-bottom: 10px;
    color: #0A2540;
}

.download-modal p {
    color: #64748b;
    margin-bottom: 22px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group input {
    width: 100%;
    padding: 14px;
    border: 1.5px solid #E2E8F0;
    border-radius: 10px;
    font-size: .95rem;
    outline: none;
}

.form-group input:focus {
    border-color: #1B8A9E;
}

/*========*/

.team-linked{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #0077b5;
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 119, 181, 0.25);
    margin-bottom: 10px;
}

.team-linked i{
    color: #fff;
}

.team-linked:hover{
    background: #005f8d;
    transform: translateY(-3px);
    box-shadow: 0 6px 14px rgba(0, 119, 181, 0.35);
}
