/* ============================================
   VisionIQ — Premium Light Theme CSS
   ============================================ */

/* ---------- CSS Variables ---------- */
:root {
    --navy: #01004C;
    --navy-light: #110a6b;
    --accent-cyan: #1e84d8;
    --cyan-gradient: linear-gradient(135deg, #1e84d8 0%, #0176d8 100%);
    --accent-cyan-light: #45bce0;
    --teal: #4B9E9C;
    --purple: #7573FE;
    --purple-dark: #5C5CFF;
    --blue-accent: #59AFF6;
    --light-bg: #F1F1FF;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --gray-100: #F8F8F8;
    --gray-200: #E8E8E8;
    --gray-400: #A0A0B0;
    --gray-600: #5B6770;
    --text-body: #333333;
    --text-muted: #5B6770;

    --font-main: 'Montserrat', sans-serif;
    --font-roboto: 'Roboto', sans-serif;
    --font-nunito: 'Nunito', sans-serif;

    --radius-sm: 8px;
    --radius-md: 20px;
    --radius-lg: 40px;
    --radius-xl: 50px;

    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);

    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --nav-height: 76px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-main);
    color: var(--text-body);
    background: var(--white);
    overflow-x: hidden;
    line-height: 1.6;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.ind-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.ind-hero__content {
    max-width: 750px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}



/* ---------- Scrollbar ---------- */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--light-bg);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 3px;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--purple), var(--blue-accent));
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: 0.3px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(117, 115, 254, 0.4);
    opacity: 0.92;
}

.btn-cyan {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--cyan-gradient);
    color: white;
    border: none;
    border-radius: var(--radius-lg);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cyan:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(40, 161, 197, 0.3);
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 30px;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--accent-cyan);
    border-radius: var(--radius-lg);
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline:hover {
    background: var(--accent-cyan);
    color: white;
    transform: translateY(-2px);
}

/* ---------- Section Helpers ---------- */
.section-badge {
    color: white !important;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(117, 115, 254, 0.08);
    border: 1px solid rgba(117, 115, 254, 0.2);
    color: var(--purple);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section-title .cyan-text {
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-underline {
    width: 65px;
    height: 5px;
    background: var(--cyan-gradient);
    border-radius: 3px;
    margin: 12px 0 24px;
}

.section-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
    max-width: 600px;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 2px solid var(--accent-cyan);
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 4px 24px rgba(1, 0, 76, 0.08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 4%;
    height: var(--nav-height);
}

.nav-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-item {
    position: relative;
}

.nav-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 9px 20px;
    margin: 0;
    border: 1.5px solid transparent;
    /* Match hover sizing */
    border-radius: 50px;
    font-size: 14px;
    font-weight: 500;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--accent-cyan);
}

.nav-link.active {
    color: var(--accent-cyan);
    font-weight: 600;
}

.nav-cta {
    padding: 10px 24px;
    margin: 0;
    background: var(--cyan-gradient);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    color: white !important;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: inline-block;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(40, 161, 197, 0.35);
}

/* Arrow icon */
.arrow-icon {
    font-size: 12px;
    transition: transform 0.3s;
    display: inline-block;
}

.nav-item:hover .arrow-icon {
    transform: rotate(180deg);
}

/* Premium Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 15px);
    left: -20px;
    min-width: 380px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 16px 8px;
    box-shadow: 0 20px 40px rgba(1, 0, 76, 0.08), 0 4px 12px rgba(40, 161, 197, 0.05);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);
    transform-origin: top center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
}

/* Subtle arrow pointing up */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 40px;
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.98);
    border-left: 1px solid rgba(0, 0, 0, 0.06);
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    transform: rotate(45deg);
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* Premium Dropdown Item */
.dropdown-menu .dropdown-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 14px 16px;
    margin: 4px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
}

.dropdown-menu .dropdown-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40, 161, 197, 0.08), rgba(75, 158, 156, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.dropdown-menu .dropdown-item:hover {
    transform: translateX(4px);
}

.dropdown-menu .dropdown-item:hover::before {
    opacity: 1;
}

.dropdown-menu .dropdown-item i {
    font-size: 18px;
    color: var(--accent-cyan);
    background: rgba(40, 161, 197, 0.1);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.dropdown-menu .dropdown-item:hover i {
    background: var(--cyan-gradient);
    color: white;
    transform: scale(1.05) rotate(5deg);
    box-shadow: 0 4px 12px rgba(40, 161, 197, 0.3);
}

.dropdown-menu .dropdown-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin: 0 0 4px;
    transition: color 0.3s;
}

.dropdown-menu .dropdown-item:hover h4 {
    color: var(--accent-cyan);
}

.dropdown-menu .dropdown-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   MEGA MENU — Industries
   ============================================ */
.has-megamenu {
    position: static;
}

.has-megamenu .mega-menu {
    position: fixed;
    top: var(--nav-height);
    left: 50%;
    transform: translateX(-50%) translateY(8px) scale(0.98);
    transform-origin: top center;
    width: min(96vw, 960px);
    min-width: unset;
    max-width: unset;
    padding: 0;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(1, 0, 76, 0.14), 0 6px 20px rgba(30, 132, 216, 0.08);
}

/* Hide the tiny arrow on the mega-menu */
.has-megamenu .mega-menu::before {
    display: none;
}

.has-megamenu:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.mega-menu__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    background: linear-gradient(135deg, #01004C, #0b0a5e);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mega-menu__label {
    font-size: 12px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    gap: 8px;
}

.mega-menu__label i {
    color: #1e84d8;
}

.mega-menu__view-all {
    font-size: 12px;
    font-weight: 600;
    color: #1e84d8;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s;
}

.mega-menu__view-all:hover {
    gap: 10px;
    color: #5baaff;
}

.mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    padding: 12px;
    background: #fff;
}

.mega-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: 10px;
    text-decoration: none;
    color: #01004C;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    line-height: 1.3;
}

.mega-item i {
    font-size: 14px;
    color: #1e84d8;
    width: 28px;
    height: 28px;
    background: rgba(30, 132, 216, 0.1);
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, color 0.2s;
}

.mega-item:hover {
    background: rgba(30, 132, 216, 0.07);
    color: #1e84d8;
    transform: translateX(2px);
}

.mega-item:hover i {
    background: var(--cyan-gradient);
    color: #fff;
}

/* Mobile accordion for industries */
.mobile-ind-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: rgba(30, 132, 216, 0.06);
    border-radius: 10px;
    margin: 4px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #01004C;
    user-select: none;
    list-style: none;
}

.mobile-ind-toggle i {
    font-size: 12px;
    color: #1e84d8;
    transition: transform 0.3s;
}

.mobile-ind-toggle.open i {
    transform: rotate(180deg);
}

.mobile-ind-list {
    display: none;
    flex-direction: column;
    gap: 2px;
    padding: 4px 8px;
    background: rgba(30, 132, 216, 0.03);
    border-radius: 10px;
    margin: 0 0 4px;
    list-style: none;
}

.mobile-ind-list.open {
    display: flex;
}


/* Mobile toggle */
.nav-mobile-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 10px;
    background: none;
    border: 1.5px solid var(--accent-cyan);
    border-radius: 10px;
    cursor: pointer;
    z-index: 1010;
}

.nav-mobile-btn span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: var(--transition);
    display: block;
}

.nav-mobile-btn.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-mobile-btn.open span:nth-child(2) {
    opacity: 0;
}

.nav-mobile-btn.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    padding-top: 85px; /* Clear fixed navbar */
    overflow-y: auto;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
}

.mobile-overlay.open .mobile-menu {
    transform: translateY(0);
}

.mobile-nav-list {
    padding: 20px 24px 60px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-link {
    display: block;
    padding: 16px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}

.mobile-accordion {
    border-bottom: 1px solid var(--gray-100);
}

.mobile-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 0;
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--navy);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-accordion-header i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.mobile-accordion-header.open i {
    transform: rotate(180deg);
}

.mobile-accordion-body {
    display: none;
    padding-bottom: 16px;
}

.mobile-accordion-body.open {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.mobile-sublink {
    display: block;
    font-size: 1rem;
    font-weight: 400;
    color: var(--gray-600);
    padding: 4px 0 4px 16px;
    transition: var(--transition);
}

.mobile-sublink--main {
    font-weight: 600;
    color: var(--accent-cyan);
    margin-bottom: 8px;
    padding-left: 0;
}

.mobile-link:hover, .mobile-accordion-header:hover, .mobile-sublink:hover {
    color: var(--accent-cyan);
}

.mobile-cta {
    display: block;
    width: 100%;
    margin-top: 10px;
    padding: 16px !important;
    background: var(--cyan-gradient) !important;
    color: white !important;
    border-radius: var(--radius-lg) !important;
    font-weight: 600 !important;
    font-size: 1.1rem;
    text-align: center;
    border-bottom: none !important;
}

@media (max-width: 885px) {
    .nav-menu {
        display: none;
    }

    .nav-mobile-btn {
        display: flex;
    }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg,
            #fefefe 0%,
            #F1F1FF 40%,
            rgba(40, 161, 197, 0.3) 70%,
            #fff 100%);
    padding-top: var(--nav-height);
}

/* Animated mesh background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 800px 600px at 75% 50%, rgba(117, 115, 254, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 500px 400px at 20% 80%, rgba(75, 158, 156, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 600px 500px at 90% 10%, rgba(40, 161, 197, 0.3) 0%, transparent 70%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    width: 100%;
    padding: 80px 8% 80px;
}

.hero-content {
    flex: 1;
    max-width: 620px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(117, 115, 254, 0.08);
    border: 1px solid rgba(117, 115, 254, 0.25);
    color: var(--purple);
    padding: 7px 18px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 28px;
    animation: fadeInDown 0.8s ease both;
}

.hero-badge i {
    font-size: 11px;
}

.hero-title {
    font-size: clamp(2.5rem, 5.5vw, 4.2rem);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.12;
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease 0.15s both;
}

.hero-title .hero-gradient {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, var(--teal) 60%, var(--purple) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.3s both;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.45s both;
}

.hero-stats {
    display: flex;
    gap: 36px;
    margin-top: 56px;
    padding-top: 36px;
    border-top: 1px solid var(--gray-200);
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-stat-item .stat-num {
    font-size: 2rem;
    font-weight: 700;
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.hero-stat-item .stat-label {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 500;
}

/* Hero visual */
.hero-visual {
    flex: 0 0 500px;
    position: relative;
    animation: fadeInRight 1s ease 0.3s both;
}

.hero-card-stack {
    position: relative;
    width: 480px;
    height: 480px;
}

.hero-blob {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
    background: linear-gradient(135deg, rgba(40, 161, 197, 0.3), rgba(75, 158, 156, 0.10), rgba(117, 115, 254, 0.10));
    animation: blob-morph 8s ease-in-out infinite;
    filter: blur(2px);
}

@keyframes blob-morph {

    0%,
    100% {
        border-radius: 50% 40% 60% 30% / 40% 50% 30% 60%;
        transform: translate(-50%, -50%) rotate(0deg);
    }

    33% {
        border-radius: 30% 60% 40% 50% / 60% 30% 50% 40%;
        transform: translate(-50%, -50%) rotate(4deg);
    }

    66% {
        border-radius: 60% 30% 50% 40% / 30% 60% 40% 50%;
        transform: translate(-50%, -50%) rotate(-4deg);
    }
}

.hero-main-card {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 28px;
    padding: 36px;
    box-shadow: var(--shadow-lg);
    width: 320px;
    text-align: center;
    border-top: 4px solid var(--accent-cyan);
    animation: float-card 4s ease-in-out infinite;
}

@keyframes float-card {

    0%,
    100% {
        transform: translate(-50%, -50%) translateY(0);
    }

    50% {
        transform: translate(-50%, -50%) translateY(-12px);
    }
}

.hero-main-card .card-icon {
    width: 64px;
    height: 64px;
    background: var(--cyan-gradient);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-size: 28px;
    color: white;
}

.hero-main-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.hero-main-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

.hero-float-card {
    position: absolute;
    background: white;
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-md);
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 10px;
    animation: float-small 5s ease-in-out infinite;
}

.hero-float-card i {
    width: 32px;
    height: 32px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: white;
}

.hero-float-card.card-tl {
    top: 60px;
    left: -20px;
    animation-delay: 0.5s;
}

.hero-float-card.card-br {
    bottom: 80px;
    right: -20px;
    animation-delay: 1.2s;
}

.hero-float-card.card-tr {
    top: 100px;
    right: 0;
    animation-delay: 2s;
}

@keyframes float-small {

    0%,
    100% {
        transform: translateY(0) rotate(-1deg);
    }

    50% {
        transform: translateY(-8px) rotate(1deg);
    }
}

/* Hero scroll hint */
.hero-scroll-hint {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent-cyan);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    animation: fadeIn 1s 1.5s both;
}

.scroll-dot {
    width: 24px;
    height: 38px;
    border: 2px solid var(--accent-cyan);
    border-radius: 12px;
    position: relative;
}

.scroll-dot::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    animation: scroll-anim 2s ease-in-out infinite;
}

@keyframes scroll-anim {

    0%,
    100% {
        top: 5px;
        opacity: 1;
    }

    80% {
        top: 18px;
        opacity: 0;
    }
}

/* Hero responsive */
@media (max-width: 1100px) {
    .hero-visual {
        flex: 0 0 400px;
    }

    .hero-card-stack {
        width: 380px;
        height: 380px;
    }

    .hero-main-card {
        width: 280px;
    }

    .hero-blob {
        width: 320px;
        height: 320px;
    }
}

@media (max-width: 850px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
        padding: 60px 6% 80px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        margin: 0 auto 40px;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-visual {
        flex: none;
        width: 100%;
    }

    .hero-card-stack {
        margin: 0 auto;
    }
}

@media (max-width: 560px) {
    .hero-card-stack {
        width: 300px;
        height: 300px;
    }

    .hero-main-card {
        width: 220px;
        padding: 24px;
    }

    .hero-blob {
        width: 260px;
        height: 260px;
    }

    .hero-stats {
        gap: 20px;
    }
}

/* ============================================
   STATS COUNTER SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--gray-100);
    position: relative;
}

.stats-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    width: 4px;
    height: 50%;
    background: var(--accent-cyan);
    border-radius: 2px;
}

.stats-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    padding: 0 5%;
}

.stat-card {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: var(--gray-200);
}

.stat-card .num {
    font-size: 3rem;
    font-weight: 700;
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
    margin-bottom: 8px;
    font-family: var(--font-main);
}

.stat-card .label {
    font-size: 15px;
    color: var(--text-muted);
    font-weight: 400;
    font-family: var(--font-main);
}

/* ============================================
   FEATURES / SERVICES OVERVIEW
   ============================================ */
.features-section {
    padding: 100px 0;
    background: white;
}

.features-header {
    text-align: center;
    margin-bottom: 70px;
    padding: 0 5%;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 28px;
    padding: 0 5%;
    max-width: 1280px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    border-radius: 28px;
    padding: 36px 32px;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--cyan-gradient);
    transform: scaleX(0);
    transition: transform 0.35s ease;
    transform-origin: left;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(40, 161, 197, 0.3), rgba(75, 158, 156, 0.12));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    font-size: 24px;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--cyan-gradient);
    color: white;
}

.feature-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.feature-card p {
    font-size: 14.5px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   SERVICES LIST SECTION
   ============================================ */
.services-list-section {
    padding: 100px 0;
    background: white;
    position: relative;
}

.services-list-inner {
    padding: 0 8%;
    max-width: 1280px;
    margin: 0 auto;
}

.services-header {
    margin-bottom: 60px;
}

.services-header .section-title {
    font-family: var(--font-roboto);
}

.service-item {
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5em 2em;
    border-bottom: 2px solid var(--accent-cyan);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.service-item-overlay {
    position: absolute;
    inset: 0;
    background: var(--cyan-gradient);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

.service-item:hover .service-item-overlay {
    transform: translateY(0);
}

.service-item-name {
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 600;
    font-family: var(--font-roboto);
    color: var(--navy);
    position: relative;
    z-index: 1;
    flex: 0 0 35%;
}

.service-item-tags {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
    flex: 1;
    justify-content: flex-start;
}

.service-item-tags li {
    font-size: clamp(0.7rem, 1vw, 1rem);
    font-weight: 700;
    font-family: var(--font-nunito);
    color: var(--text-muted);
    text-align: right;
}

.service-item-arrow {
    position: relative;
    z-index: 1;
    color: var(--accent-cyan);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.service-item:hover .service-item-arrow {
    transform: translateX(6px);
    color: #fff;
}

.service-item:hover .service-item-name,
.service-item:hover .service-item-tags li {
    color: #fff;
}

/* ============================================
   PARTNER LOGOS MARQUEE
   ============================================ */
.partners-section {
    padding: 60px 0 80px;
    background: white;
    text-align: center;
}

.partners-section h2 {
    font-size: 1.2rem;
    font-family: var(--font-main);
    color: var(--navy);
    margin-bottom: 40px;
    font-weight: 500;
}

.partners-track-wrap {
    position: relative;
    overflow: hidden;
    border-radius: 30px;
    padding: 40px 0;
}

.partners-track-wrap::before,
.partners-track-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    width: 100px;
    height: 100%;
    z-index: 1;
    border-radius: 30px;
}

.partners-track-wrap::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}

.partners-track-wrap::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.partners-track {
    display: inline-flex;
    gap: 80px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

.partners-track:hover {
    animation-play-state: paused;
}

.partner-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: var(--gray-400);
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s;
    white-space: nowrap;
}

.partner-logo:hover {
    color: var(--navy);
}

.partner-logo i {
    font-size: 48px;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   ABOUT / SPLIT SECTION
   ============================================ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.about-left {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    position: relative;
}

.about-left::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -200px;
    width: 400px;
    height: 400px;
    background: rgba(117, 115, 254, 0.15);
    border-radius: 50%;
    pointer-events: none;
}

.about-right {
    background: var(--light-bg);
    padding: 120px 10%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    border-top-left-radius: 80px;
    position: relative;
    z-index: 2;
}

.about-heading-left {
    font-size: 52px;
    font-weight: 500;
    position: absolute;
    top: 60px;
    right: 20px;
    color: rgba(255, 255, 255, 0.15);
    font-family: var(--font-main);
    pointer-events: none;
}

.about-heading-right {
    font-size: 52px;
    font-weight: 500;
    position: absolute;
    top: 60px;
    left: 20px;
    color: rgba(1, 0, 76, 0.06);
    font-family: var(--font-main);
    pointer-events: none;
}

.white-card,
.dark-card {
    border-radius: 36px;
    padding: 50px 40px;
    max-width: 480px;
    width: 100%;
}

.white-card {
    background: white;
    box-shadow: var(--shadow-lg);
    margin-top: 30px;
}

.white-card h2 {
    font-size: 2rem;
    color: var(--purple);
    margin-bottom: 12px;
}

.white-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 600;
}

.white-card p {
    color: var(--navy);
    line-height: 1.7;
    margin-bottom: 24px;
}

.dark-card {
    background: var(--navy);
    color: white;
    margin-top: 30px;
}

.dark-card h2 {
    font-size: 2rem;
    margin-bottom: 12px;
    color: white;
}

.dark-card h4 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.dark-card p {
    color: #d9d9ff;
    line-height: 1.7;
    margin-bottom: 24px;
}

@media (max-width: 1000px) {
    .about-split {
        grid-template-columns: 1fr;
    }

    .about-left {
        padding: 80px 8%;
    }

    .about-right {
        border-top-left-radius: 0;
        padding: 80px 8%;
    }

    .about-heading-left,
    .about-heading-right {
        position: static;
        font-size: 36px;
        margin-bottom: 24px;
        text-align: center;
    }

    .white-card,
    .dark-card {
        max-width: 560px;
        margin: 20px auto;
    }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page-wrap {
    background: var(--light-bg);
    padding-top: 80px;
}

.contact-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 24px;
    padding: 60px 8%;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
}

.contact-item-icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-card {
    background: var(--navy);
    border-radius: 60px 60px 0 0;
    padding: 70px 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 80px;
    color: white;
}

.contact-left h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-top: 20px;
}

.contact-form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 36px;
    position: relative;
}

.contact-form-title::after {
    content: '';
    display: block;
    width: 65px;
    height: 4px;
    background: var(--blue-accent);
    margin-top: 10px;
    border-radius: 2px;
}

.contact-right {
    flex: 0 0 500px;
    max-width: 100%;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(138, 138, 181, 0.6);
    padding: 14px 0;
    margin-bottom: 18px;
    color: white;
    outline: none;
    font-family: var(--font-main);
    font-size: 15px;
    transition: border-color 0.3s;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(201, 201, 226, 0.8);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-bottom-color: var(--blue-accent);
}

.contact-form select option {
    color: var(--navy);
}

.contact-form textarea {
    height: 80px;
    resize: none;
}

.contact-form-row {
    display: flex;
    gap: 30px;
}

.contact-form-row>* {
    flex: 1;
}

.contact-form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: var(--transition);
    color: white;
}

.social-link:hover {
    background: var(--purple);
    border-color: var(--purple);
}

@media (max-width: 1100px) {
    .contact-card {
        flex-direction: column;
        gap: 50px;
    }

    .contact-right {
        flex: none;
        width: 100%;
        max-width: 600px;
    }
}

@media (max-width: 600px) {
    .contact-top-bar {
        flex-direction: column;
        gap: 20px;
        padding: 30px 6%;
    }

    .contact-card {
        padding: 50px 6%;
        border-radius: 40px 40px 0 0;
    }

    .contact-form-row {
        flex-direction: column;
    }
}

/* ============================================
   BLOG SECTION
   ============================================ */
.blog-section {
    padding: 100px 0;
    background: white;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
    gap: 32px;
    padding: 0 5%;
    max-width: 1280px;
    margin: 0 auto;
}

.blog-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    border: 1.5px solid var(--gray-200);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.blog-card-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}

.blog-card-category {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent-cyan);
    color: white;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.blog-card-body {
    padding: 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 12px;
    color: var(--text-muted);
}

.blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 12px;
    transition: color 0.3s;
}

.blog-card:hover .blog-card-title {
    color: var(--accent-cyan);
}

.blog-card-excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 20px;
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-cyan);
    font-size: 13px;
    font-weight: 700;
    transition: gap 0.3s;
}

.blog-card:hover .blog-read-more {
    gap: 10px;
}

/* ============================================
   INDUSTRIES GRID
   ============================================ */
.industries-section {
    padding: 100px 0;
    background: white;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding: 0 5%;
    max-width: 1280px;
    margin: 0 auto;
}

.industry-card {
    background: white;
    border-radius: 24px;
    padding: 40px 28px;
    border: 1.5px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.industry-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--cyan-gradient);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.industry-card:hover {
    transform: scale(1.03);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-card:hover * {
    position: relative;
    z-index: 1;
    color: white !important;
}

.industry-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--accent-cyan);
    transition: var(--transition);
}

.industry-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 10px;
    transition: var(--transition);
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.industry-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
    transition: var(--transition);
}

/* ============================================
   PANEL PAGE — ACCORDION
   ============================================ */
.panel-page {
    padding: 120px 0 80px;
}

.accordion {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 5%;
}

.accordion-item {
    border-bottom: 1.5px solid var(--accent-cyan);
    overflow: hidden;
}

.accordion-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 16px;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background: rgba(40, 161, 197, 0.3);
}

.accordion-title {
    font-size: clamp(1.2rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--navy);
    font-family: var(--font-main);
    transition: color 0.3s;
}

.accordion-header.active .accordion-title {
    color: var(--accent-cyan);
}

.accordion-icon {
    font-size: 20px;
    color: var(--navy);
    transition: transform 0.4s ease;
    flex-shrink: 0;
    margin-left: 16px;
}

.accordion-header.active .accordion-icon {
    transform: rotate(45deg);
    color: var(--accent-cyan);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.6s ease;
    display: flex;
    gap: 32px;
    align-items: flex-start;
    padding: 0 16px;
}

.accordion-body.open {
    max-height: 600px;
    padding: 0 16px 32px;
}

.accordion-body img {
    width: 45%;
    border-radius: 16px;
    border-top: 6px solid var(--accent-cyan);
    object-fit: cover;
    flex-shrink: 0;
}

.accordion-body p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    font-weight: 300;
}

@media (max-width: 700px) {
    .accordion-body {
        flex-direction: column;
    }

    .accordion-body img {
        width: 100%;
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    font-family: var(--font-main);
    background: var(--light-bg);
}

.footer-top-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 120px; /* Increased gap to separate the two items more clearly */
    padding: 50px 8%;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-200);
}

.footer-contact-item {
    display: flex;
    align-items: center;
    gap: 18px;
    font-size: 15px;
    font-weight: 500;
}

.footer-icon {
    width: 50px;
    height: 50px;
    background: var(--navy);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.footer-contact-item .footer-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-contact-item a,
.footer-contact-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--navy);
}

.footer-contact-item a:hover {
    color: var(--accent-cyan);
}

.footer-card {
    background: var(--cyan-gradient);
    border-radius: 60px 60px 0 0;
    padding: 70px 8%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    color: white;
    flex-wrap: wrap;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 0 0 220px;
}

.footer-logo__img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-tagline {
    font-size: clamp(1.8rem, 3vw, 3rem);
    font-weight: 300;
    line-height: 1.1;
    color: white;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social .social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    color: white;
    transition: var(--transition);
}

.footer-social .social-link:hover {
    background: white;
    border-color: white;
    color: var(--accent-cyan);
}

.footer-links-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    flex: 1;
}

.footer-col h5 {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    transition: color 0.3s;
    text-decoration: none;
}

.footer-col a:hover {
    color: #ffffff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.4);
}

.footer-right-form {
    flex: 0 0 400px;
    max-width: 100%;
}

.footer-form-title {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 28px;
    position: relative;
    color: white;
}

.footer-form-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: rgba(255, 255, 255, 0.5);
    margin-top: 10px;
    border-radius: 2px;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    padding: 12px 0;
    margin-bottom: 16px;
    color: white;
    outline: none;
    font-family: var(--font-main);
    font-size: 14px;
    transition: border-color 0.3s;
    box-sizing: border-box;
}

.footer-form input::placeholder,
.footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.45);
}

.footer-form input:focus,
.footer-form textarea:focus {
    border-bottom-color: white;
}

.footer-form-row {
    display: flex;
    gap: 24px;
}

.footer-form-row>* {
    flex: 1;
}

.footer-form textarea {
    height: 60px;
    resize: none;
}

.footer-form-bottom {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    margin-top: 20px;
}

.footer-bottom {
    background: var(--cyan-gradient);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 8%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 24px;
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: #ffffff;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

@media (max-width: 1100px) {
    .footer-card {
        flex-direction: column;
        gap: 50px;
    }

    .footer-left {
        flex-direction: row;
        align-items: center;
        flex-wrap: wrap;
        flex: none;
        width: 100%;
    }

    .footer-right-form {
        flex: none;
        width: 100%;
        max-width: 580px;
    }
}

@media (max-width: 600px) {
    .footer-top-bar {
        flex-direction: column;
        align-items: flex-start;
        padding: 30px 6%;
    }

    .footer-card {
        border-radius: 40px 40px 0 0;
        padding: 50px 6%;
    }

    .footer-links-grid {
        flex-direction: column;
        gap: 30px;
    }

    .footer-form-row {
        flex-direction: column;
    }
}


/* ============================================
   TOAST / NOTIFICATIONS
   ============================================ */
.toast {
    position: fixed;
    top: 40px;
    right: 40px;
    padding: 14px 28px;
    border-radius: 12px;
    color: white;
    font-size: 14px;
    font-weight: 600;
    font-family: var(--font-main);
    z-index: 9999;
    opacity: 0;
    transform: translateX(120%);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: var(--shadow-md);
}

.toast.show {
    opacity: 1;
    transform: translateX(0);
}

.toast.success {
    background: #0abf30;
}

.toast.error {
    background: #f24d4c;
}

.toast.info {
    background: #3498db;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   PAGE BANNER
   ============================================ */
.page-banner {
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    padding: 140px 8% 80px;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 600px 400px at 80% 50%, rgba(117, 115, 254, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.page-banner h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.page-banner p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    line-height: 1.7;
}

.page-banner-breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 1;
}

.page-banner-breadcrumb a {
    color: var(--accent-cyan);
}

.page-banner-breadcrumb span {
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   UTILITY
   ============================================ */
.text-center {
    text-align: center;
}

.mt-16 {
    margin-top: 16px;
}

.mt-32 {
    margin-top: 32px;
}

.mt-60 {
    margin-top: 60px;
}

.mb-60 {
    margin-bottom: 60px;
}

.py-80 {
    padding: 80px 0;
}

.px-5p {
    padding: 0 5%;
}

.gradient-text {
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ============================================
   ABOUT PAGE — EXTRA SECTIONS
   ============================================ */
.about-intro {
    padding: 100px 8%;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.about-intro-image {
    flex: 0 0 420px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-intro-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-intro-content {
    flex: 1;
}

.about-intro-content .section-title {
    margin-bottom: 20px;
}

.team-section {
    padding: 80px 0;
    background: var(--light-bg);
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 28px;
    padding: 50px 5% 0;
    max-width: 1100px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 24px;
    padding: 32px 24px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-align: center;
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    margin: 0 auto 16px;
    background: var(--cyan-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    font-weight: 700;
}

.team-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.team-card p {
    font-size: 13px;
    color: var(--text-muted);
}

@media (max-width: 800px) {
    .about-intro {
        flex-direction: column;
        padding: 60px 6%;
    }

    .about-intro-image {
        flex: none;
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}

/* ============================================
   SERVICES PAGE — INTERACTIVE
   ============================================ */
.services-interactive {
    display: flex;
    gap: 60px;
    padding: 80px 8%;
    min-height: 80vh;
    align-items: flex-start;
    max-width: 1280px;
    margin: 0 auto;
}

.services-tabs {
    flex: 0 0 300px;
    position: sticky;
    top: 100px;
}

.service-tab {
    padding: 18px 0;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--text-muted);
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-main);
    border-bottom: 1px solid var(--gray-200);
}

.service-tab:hover {
    color: var(--accent-cyan);
    transform: scale(1.02);
}

.service-tab.active {
    color: var(--accent-cyan);
    transform: scale(1.08);
}

.services-panels {
    flex: 1;
}

.service-panel {
    display: none;
}

.service-panel.active {
    display: block;
}

.service-panel img {
    width: 100%;
    border-radius: 20px;
    border-top: 8px solid var(--accent-cyan);
    margin-bottom: 24px;
    object-fit: cover;
    height: 280px;
}

.service-panel h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 14px;
    font-family: var(--font-roboto);
}

.service-panel p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.service-features-list {
    margin-top: 20px;
}

.service-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: 15px;
    color: var(--navy);
    border-bottom: 1px solid var(--gray-200);
}

.service-features-list li i {
    color: var(--teal);
    margin-top: 3px;
    flex-shrink: 0;
}

@media (max-width: 900px) {
    .services-interactive {
        flex-direction: column;
        padding: 60px 6%;
    }

    .services-tabs {
        flex: none;
        width: 100%;
        position: static;
    }

    .service-tab {
        font-size: 1.4rem;
    }
}

/* ============================================
   PANEL PAGE — INFO SECTION
   ============================================ */
.panel-info {
    padding: 80px 8%;
    display: flex;
    align-items: center;
    gap: 80px;
    max-width: 1280px;
    margin: 0 auto;
}

.panel-info-visual {
    flex: 0 0 460px;
}

.panel-info-visual img {
    width: 100%;
    border-radius: 28px;
    box-shadow: var(--shadow-lg);
}

.panel-info-content h2 {
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 20px;
    font-family: var(--font-roboto);
}

.panel-info-content .section-underline {
    margin-bottom: 20px;
}

.panel-info-content p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 16px;
}

.panel-info-content strong {
    color: var(--accent-cyan);
}

@media (max-width: 800px) {
    .panel-info {
        flex-direction: column;
        padding: 60px 6%;
    }

    .panel-info-visual {
        flex: none;
        width: 100%;
    }
}

/* ============================================
   EXPERIENCE / FEATURES CARDS (gradient bg)
   ============================================ */
.experience-section {
    margin: 80px 5%;
    border-radius: 50px;
    background: var(--cyan-gradient);
    padding: 80px 10%;
    text-align: center;
    color: white;
}

.experience-section h2 {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 50px;
    font-family: var(--font-main);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.exp-card {
    background: white;
    border-radius: 24px;
    padding: 28px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s;
}

.exp-card:hover {
    transform: scale(1.03);
}

.exp-card img {
    width: 50px;
    height: 50px;
    margin: 0 auto 16px;
    object-fit: contain;
}

.exp-card h3 {
    font-size: 1.1rem;
    font-weight: 700;
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.exp-card p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

@media (max-width: 1000px) {
    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 580px) {
    .exp-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   PAGE BANNER (Subpages)
   ============================================ */


/* ============================================
   QUOTE MODAL
   ============================================ */
.quote-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(1, 0, 76, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.quote-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.quote-modal {
    background: #ffffff;
    width: 90%;
    max-width: 600px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    position: relative;
    transform: translateY(20px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 24px 48px rgba(1, 0, 76, 0.1);
    max-height: 90vh;
    overflow-y: auto;
}

.quote-modal-overlay.open .quote-modal {
    transform: translateY(0);
}

.quote-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--light-bg);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-size: 20px;
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.quote-modal-close:hover {
    background: #1e84d8;
    color: white;
}

.quote-modal-header {
    text-align: center;
    margin-bottom: 24px;
}

.quote-modal-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.quote-modal-header p {
    font-size: 14px;
    color: var(--text-muted);
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 12px;
    font-family: var(--font-main);
    font-size: 14px;
    color: var(--text-body);
    transition: var(--transition);
    background: var(--gray-100);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e84d8;
    background: white;
    box-shadow: 0 0 0 4px rgba(40, 161, 197, 0.2);
}

@media (max-width: 600px) {
    .form-grid-2 {
        grid-template-columns: 1fr;
    }

    .quote-modal {
        padding: 30px 20px;
    }
}

/* ============================================
   BLOG ENHANCEMENTS
   ============================================ */
.blog-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(1, 0, 76, 0.1);
}

.blog-card-image div {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-card-image div {
    transform: scale(1.1);
}

.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-top: 16px;
    position: relative;
}

.blog-read-more::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--teal);
    transition: width 0.3s ease;
}

.blog-card:hover .blog-read-more::after {
    width: 100%;
}

.blog-card:hover .blog-read-more i {
    transform: translateX(4px);
    color: var(--teal);
}

/* ============================================
   FUTURISTIC HERO SECTION
   ============================================ */
@keyframes core-drift {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    30% {
        transform: translateY(-12px) translateX(5px);
    }

    65% {
        transform: translateY(-6px) translateX(-7px);
    }
}

@keyframes sphere-breathe {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.88;
    }
}

@keyframes halo-breathe {

    0%,
    100% {
        opacity: 0.45;
    }

    50% {
        opacity: 0.65;
    }
}

@keyframes ring-glow {

    0%,
    100% {
        opacity: 0.55;
    }

    50% {
        opacity: 0.85;
    }
}

@keyframes node-orbit-1 {
    from {
        transform: rotate(0deg) translateX(320px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(320px) rotate(-360deg);
    }
}

@keyframes node-orbit-2 {
    from {
        transform: rotate(0deg) translateX(260px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(260px) rotate(-360deg);
    }
}

@keyframes node-orbit-3 {
    from {
        transform: rotate(0deg) translateX(230px) rotate(0deg);
    }

    to {
        transform: rotate(360deg) translateX(230px) rotate(-360deg);
    }
}

@keyframes dash-travel {
    from {
        stroke-dashoffset: 0;
    }

    to {
        stroke-dashoffset: -80;
    }
}

@keyframes prism-shift {

    0%,
    100% {
        opacity: 0.18;
        transform: rotate(-8deg) scaleX(1);
    }

    50% {
        opacity: 0.28;
        transform: rotate(2deg) scaleX(1.15);
    }
}

.hero-f-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #F4F2EB;
}

.hero-f-dot-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(17, 16, 8, 0.18) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.35;
}

.hero-f-light-bleed {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(200, 215, 255, 0.22) 0%, transparent 70%);
    pointer-events: none;
    transition: transform 0.1s ease-out;
}

.hero-f-container {
    position: relative;
    z-index: 10;
    max-width: 1380px;
    margin: 0 auto;
    padding: 120px 40px 72px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 24px;
    align-items: center;
    min-height: 100vh;
}

@media (max-width: 960px) {
    .hero-f-container {
        grid-template-columns: 1fr !important;
        padding-top: 140px;
    }
}

.hero-f-label-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-label-line {
    width: 24px;
    height: 1px;
    background: #1A36A8;
}

.hero-f-label-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: rgba(17, 16, 8, 0.45);
    text-transform: uppercase;
}

.hero-f-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-size: clamp(46px, 5.2vw, 82px);
    line-height: 1.04;
    letter-spacing: -0.025em;
    color: #111008;
    margin: 0 0 28px;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-title em {
    font-style: italic;
    color: #1A36A8;
}

.hero-f-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(15px, 1.1vw, 17px);
    line-height: 1.78;
    color: rgba(17, 16, 8, 0.6);
    max-width: 460px;
    margin: 0 0 48px;
    letter-spacing: 0.005em;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 64px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 13px 30px;
    border-radius: 3px;
    border: 1px solid #111008;
    background: #111008;
    color: #F4F2EB;
    cursor: pointer;
    transition: all 0.22s;
    text-decoration: none;
}

.hero-f-btn-primary:hover {
    background: #1A36A8;
    border-color: #1A36A8;
    color: white;
}

.hero-f-btn-outline {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding: 13px 24px;
    border-radius: 3px;
    border: 1px solid rgba(17, 16, 8, 0.22);
    background: transparent;
    color: rgba(17, 16, 8, 0.65);
    cursor: pointer;
    transition: all 0.22s;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.hero-f-btn-outline:hover {
    border-color: rgba(17, 16, 8, 0.55);
    color: #111008;
}

.hero-f-clients {
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-f-stat-val {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    color: #111008;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-f-stat-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(17, 16, 8, 0.45);
    text-transform: uppercase;
}

.hero-f-right-col {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    min-height: 380px;
    opacity: 0;
    transform: scale(0.95);
    transition: transform 0.1s ease-out;
}

.f-anim-rise {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ============================================
   GLOBE CANVAS
   ============================================ */
#fCoreContainer {
    background: transparent;
}

#cobeGlobe {
    width: 100% !important;
    height: 100% !important;
    border-radius: 50%;
}

.hero-f-right-col {
    background: transparent;
    min-height: 500px;
}

/* ============================================
   HERO SECTION ? COMPLETE REWRITE
   ============================================ */
.hero-f-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    background: #F4F2EB;
}

.hero-f-dot-grid {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(17, 16, 8, 0.14) 1px, transparent 1px);
    background-size: 28px 28px;
    opacity: 0.4;
}

.hero-f-light-bleed {
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    background: radial-gradient(ellipse 80% 70% at 70% 50%, rgba(180, 200, 255, 0.18) 0%, transparent 70%);
    pointer-events: none;
    will-change: transform;
}

.hero-f-container {
    position: relative;
    z-index: 10;
    max-width: 1320px;
    margin: 0 auto;
    padding: 100px 48px 80px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    min-height: 100vh;
    box-sizing: border-box;
}

/* -- LEFT -- */
.hero-f-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-f-label-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-label-line {
    width: 24px;
    height: 1px;
    background: #1A36A8;
    flex-shrink: 0;
}

.hero-f-label-text {
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 0.14em;
    color: rgba(17, 16, 8, 0.45);
    text-transform: uppercase;
}

.hero-f-title {
    font-family: 'Instrument Serif', Georgia, serif;
    font-weight: 400;
    font-size: clamp(42px, 4.8vw, 76px);
    line-height: 1.06;
    letter-spacing: -0.025em;
    color: #111008;
    margin: 0 0 24px;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-title em {
    font-style: italic;
    color: #1A36A8;
}

.hero-f-title-last {
    display: inline-flex;
    align-items: baseline;
    gap: 0.18em;
}

.hero-f-dash {
    font-family: 'DM Sans', sans-serif;
    font-style: normal;
    font-size: clamp(24px, 2.8vw, 42px);
    font-weight: 300;
    color: #C2581A;
    line-height: 1.1;
}

.hero-f-subtitle {
    font-family: 'DM Sans', sans-serif;
    font-weight: 400;
    font-size: clamp(14px, 1.05vw, 16px);
    line-height: 1.8;
    color: rgba(17, 16, 8, 0.55);
    max-width: 440px;
    margin: 0 0 44px;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-cta-row {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 44px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-btn-primary {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.01em;
    padding: 13px 28px;
    border-radius: 4px;
    border: 1px solid #111008;
    background: #111008;
    color: #F4F2EB;
    cursor: pointer;
    transition: all 0.22s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}

.hero-f-btn-primary:hover {
    background: #1A36A8;
    border-color: #1A36A8;
    color: white;
}

.hero-f-btn-outline {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.01em;
    padding: 13px 22px;
    border-radius: 4px;
    border: 1px solid rgba(17, 16, 8, 0.22);
    background: transparent;
    color: rgba(17, 16, 8, 0.65);
    cursor: pointer;
    transition: all 0.22s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.hero-f-btn-outline:hover {
    border-color: rgba(17, 16, 8, 0.55);
    color: #111008;
}

.hero-f-divider {
    width: 100%;
    height: 1px;
    background: rgba(17, 16, 8, 0.1);
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-clients {
    margin-bottom: 36px;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-clients-label {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(17, 16, 8, 0.3);
    text-transform: uppercase;
    margin-bottom: 12px;
}

.hero-f-clients-row {
    display: flex;
    gap: 22px;
    flex-wrap: wrap;
    align-items: center;
}

.hero-f-clients-row span {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(17, 16, 8, 0.28);
    transition: color 0.2s;
    cursor: default;
}

.hero-f-clients-row span:hover {
    color: rgba(17, 16, 8, 0.65);
}

.hero-f-stats {
    display: flex;
    gap: 36px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(22px);
}

.hero-f-stat-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-f-stat-val {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    color: #111008;
    letter-spacing: -0.02em;
    line-height: 1;
}

.hero-f-stat-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-weight: 300;
    font-size: 9px;
    letter-spacing: 0.1em;
    color: rgba(17, 16, 8, 0.4);
    text-transform: uppercase;
}

/* -- RIGHT: Globe Column -- */
.hero-f-right {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.96);
}

.hero-f-dust {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-f-globe-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 520px;
    will-change: transform;
}

.hero-f-globe-canvas {
    width: 100%;
    height: 100%;
    min-height: 520px;
}

.hero-f-globe-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Floating stat badges */
.hero-f-annotations {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-f-badge {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: rgba(244, 242, 235, 0.82);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(17, 16, 8, 0.08);
    border-radius: 8px;
    padding: 10px 14px;
    box-shadow: 0 4px 20px rgba(17, 16, 8, 0.06);
}

.hero-f-badge--tr {
    top: 8%;
    right: 2%;
}

.hero-f-badge--bl {
    bottom: 12%;
    left: 2%;
}

.hero-f-badge--mr {
    top: 48%;
    right: 2%;
}

.hero-f-badge-val {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: #111008;
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-f-badge-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(17, 16, 8, 0.4);
    text-transform: uppercase;
}

/* Border bottom */
.hero-f-border-bottom {
    position: absolute;
    bottom: 0;
    left: 5%;
    right: 5%;
    height: 1px;
    background: rgba(17, 16, 8, 0.1);
    pointer-events: none;
}

/* Rise animation */
.f-anim-rise {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1), transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* -- Responsive -- */
@media (max-width: 1024px) {
    .hero-f-container {
        grid-template-columns: 1fr;
        padding: 120px 32px 60px;
        gap: 40px;
        min-height: auto;
    }

    .hero-f-right {
        min-height: 400px;
    }

    .hero-f-globe-wrap,
    .hero-f-globe-canvas {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .hero-f-title {
        font-size: clamp(36px, 8vw, 52px);
    }

    .hero-f-stats {
        gap: 24px;
    }

    .hero-f-badge {
        display: none;
    }
}

/* ============================================
   GLOBE FIX ? FULL BLEED, NOT CONTAINED
   ============================================ */
.hero-f-wrapper {
    overflow: visible !important;
}

.hero-f-container {
    overflow: visible !important;
    align-items: stretch;
}

/* Right column ? position sticky to fill section height */
.hero-f-right {
    position: relative;
    min-height: 0 !important;
    height: auto !important;
    opacity: 0;
    transform: scale(0.96);
    overflow: visible !important;
}

.hero-f-globe-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 130%;
    height: 130%;
    min-height: 0 !important;
    overflow: visible !important;
}

.hero-f-globe-canvas {
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: visible;
}

.hero-f-globe-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
}

#fCoreContainer {
    overflow: visible !important;
}

#threeGlobeContainer {
    overflow: visible !important;
}

#threeGlobeContainer canvas {
    border-radius: 0 !important;
    display: block;
    width: 100% !important;
    height: 90% !important;
}

/* ============================================
   HERO v3 ? ABSOLUTE GLOBE, NO CLIPPING
   ============================================ */
.hero-f-wrapper {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background: #F4F2EB;
    display: flex;
    align-items: center;
}

/* Globe section: fills the entire right half of the screen absolutely */
.hero-f-globe-section {
    position: absolute;
    top: -10%;
    right: -8%;
    width: 58%;
    height: 120%;
    pointer-events: none;
    z-index: 1;
}

.hero-f-globe-section .hero-f-dust {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-f-globe-section .hero-f-globe-wrap {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: auto;
}

.hero-f-globe-section .hero-f-globe-canvas {
    width: 100%;
    height: 100%;
}

.hero-f-globe-section .hero-f-globe-canvas canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Annotations on top of globe */
.hero-f-globe-section .hero-f-annotations {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.hero-f-globe-section .hero-f-badge {
    pointer-events: auto;
}

/* Text wrap: left half, z-index above globe */
.hero-f-text-wrap {
    position: relative;
    z-index: 10;
    max-width: 600px;
    width: 48%;
    padding: 120px 0 80px 6vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 100vh;
    box-sizing: border-box;
}

@media (max-width: 1024px) {
    .hero-f-globe-section {
        position: relative;
        top: 0;
        right: 0;
        width: 100%;
        height: 400px;
        order: 2;
    }

    .hero-f-text-wrap {
        width: 100%;
        padding: 120px 24px 40px;
        min-height: auto;
        order: 1;
    }

    .hero-f-wrapper {
        flex-direction: column;
        overflow: hidden;
        min-height: auto;
    }
}

/* ============================================
   ZS-HERO ? CLEAN REWRITE (overrides all old)
   ============================================ */
.zs-hero {
    position: relative;
    background: #F4F2EB;
    overflow: hidden;
    min-height: 100vh;
}

.zs-hero__bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 16, 8, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.zs-hero__grid {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 100vh;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

/* -- LEFT -- */
.zs-hero__left {
    background: #ffffff !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 110px 40px 80px 0;
    position: relative;
    z-index: 2;
}

.zs-hero__left::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(40, 161, 197, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.zs-hero__tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(18px);
}

.zs-hero__tag-line {
    display: inline-block;
    width: 30px;
    height: 2px;
    background: var(--accent-cyan);
    flex-shrink: 0;
}

.zs-hero__tag-text {
    font-family: 'Outfit', sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    text-transform: uppercase;
}

.zs-hero__h1 {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: clamp(40px, 5.2vw, 62px);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin: 0 0 24px;
    opacity: 0;
    transform: translateY(18px);
}

.zs-hero__h1 span {
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.zs-hero__sub {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(16px, 1.2vw, 19px);
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.01em;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 0 40px;
    opacity: 0;
    transform: translateY(18px);
}

.zs-hero__ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
}

.zs-hero__btn-dark {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    background: var(--cyan-gradient);
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 8px 24px rgba(40, 161, 197, 0.25);
}

.zs-hero__btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(40, 161, 197, 0.35);
}

.zs-hero__btn-ghost {
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    font-weight: 700;
    padding: 16px 36px;
    border-radius: 50px;
    color: var(--navy);
    background: transparent;
    border: 2px solid rgba(1, 0, 76, 0.1);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.zs-hero__btn-ghost:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(40, 161, 197, 0.05);
}

.zs-hero__rule {
    border: none;
    border-top: 1px solid rgba(17, 16, 8, 0.1);
    margin: 0 0 28px;
    opacity: 0;
    transform: translateY(18px);
}

.zs-hero__clients {
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(18px);
}

.zs-hero__clients-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.12em;
    color: rgba(17, 16, 8, 0.28);
    text-transform: uppercase;
    margin: 0 0 10px;
}

.zs-hero__clients-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.zs-hero__clients-row span {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    color: rgba(17, 16, 8, 0.26);
    transition: color 0.2s;
    cursor: default;
}

.zs-hero__clients-row span:hover {
    color: rgba(17, 16, 8, 0.6);
}

.zs-hero__stats {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(18px);
}

.zs-hero__stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.zs-hero__stat strong {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 28px;
    color: #111008;
    letter-spacing: -0.02em;
    line-height: 1;
}

.zs-hero__stat small {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(17, 16, 8, 0.38);
    text-transform: uppercase;
}

/* -- RIGHT: Globe -- */
.zs-hero__right {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: scale(0.97);
}

.zs-hero__globe {
    width: 100%;
    height: 100%;
    min-height: 100vh;
}

.zs-hero__globe canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
}

/* Floating pills */
.zs-hero__pills {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 5;
}

.zs-pill {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: rgba(244, 242, 235, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(17, 16, 8, 0.09);
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 4px 24px rgba(17, 16, 8, 0.08);
    pointer-events: auto;
}

.zs-pill strong {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: #111008;
    line-height: 1;
    letter-spacing: -0.02em;
}

.zs-pill span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(17, 16, 8, 0.4);
    text-transform: uppercase;
}

.zs-pill--a {
    top: 18%;
    right: 6%;
}

.zs-pill--b {
    bottom: 20%;
    left: 4%;
}

.zs-pill--c {
    top: 52%;
    right: 4%;
}

/* Rise animation */
.f-anim-rise {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    transition: opacity 0.85s cubic-bezier(0.16, 1, 0.3, 1),
        transform 0.85s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Responsive */
@media (max-width: 960px) {
    .zs-hero__grid {
        grid-template-columns: 1fr;
        padding: 0 24px;
    }

    .zs-hero__left {
        background: #F4F2EB !important;
        padding: 110px 0 40px;
    }

    .zs-hero__right {
        min-height: 420px;
    }

    .zs-hero__globe {
        min-height: 420px;
    }

    .zs-pill--b {
        display: none;
    }
}

/* ============================================
   GLOBE SIZE & INTEGRATION FIX
   ============================================ */

/* Hero section: stretch to full viewport height */
.zs-hero {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
}

.zs-hero__grid {
    align-items: stretch;
    min-height: 100vh;
}

/* Right column: fill full height, no overflow clipping */
.zs-hero__right {
    position: relative;
    overflow: visible;
    min-height: 100vh;
}

/* Globe div fills full column height */
.zs-hero__globe {
    position: absolute;
    inset: 0;
    width: 165%;
    height: 100%;
    min-height: 100vh;
    overflow: visible;
}

/* Canvas fills its parent */
.zs-hero__globe canvas {
    display: block;
    width: 100% !important;
    height: 100% !important;
    border-radius: 0 !important;
}

/* Soft gradient fade on the LEFT edge so the globe 
   blends seamlessly into the background without a hard cut */
.zs-hero__right::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 80px;
    background: linear-gradient(to right, #F4F2EB, transparent);
    z-index: 4;
    pointer-events: none;
}

/* Soft fade at top and bottom of globe too */
.zs-hero__right::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 120px;
    background: linear-gradient(to top, #F4F2EB, transparent);
    z-index: 4;
    pointer-events: none;
}

/* ============================================
   HERO LEFT SPACING FIX
   ============================================ */
.zs-hero__grid {
    max-width: 100% !important;
    padding: 0 0 0 0 !important;
    margin: 0 !important;
}

.zs-hero__left {
    background: #F4F2EB !important;
    padding: 120px 40px 80px 6vw !important;
}

/* ============================================
   HERO FINAL DEFINITIVE FIX
   ============================================ */
.zs-hero {
    position: relative !important;
    background: #F4F2EB !important;
    overflow: hidden !important;
    min-height: 100vh !important;
    display: block !important;
}

.zs-hero__bg-dots {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(17, 16, 8, 0.12) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
    z-index: 0;
}

.zs-hero__grid {
    position: relative !important;
    z-index: 2 !important;
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    min-height: 100vh !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    align-items: stretch !important;
}

.zs-hero__left {
    background: #F4F2EB !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 120px 60px 80px 7vw !important;
    box-sizing: border-box !important;
    z-index: 5;
}

.zs-hero__right {
    position: relative !important;
    display: block !important;
    min-height: 100vh !important;
    overflow: visible !important;
}

.zs-hero__globe {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    overflow: visible;
}

.zs-hero__globe canvas {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
}

.zs-hero__right::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: -2px;
    width: 100px;
    background: linear-gradient(to right, #F4F2EB 30%, transparent);
    z-index: 4;
    pointer-events: none;
}

.zs-hero__right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to top, #F4F2EB, transparent);
    z-index: 4;
    pointer-events: none;
}

.zs-hero__pills {
    position: absolute !important;
    inset: 0 !important;
    pointer-events: none !important;
    z-index: 10 !important;
}

.zs-pill {
    position: absolute;
    display: flex;
    flex-direction: column;
    gap: 3px;
    background: rgba(244, 242, 235, 0.92);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(17, 16, 8, 0.09);
    border-radius: 10px;
    padding: 10px 16px;
    box-shadow: 0 4px 24px rgba(17, 16, 8, 0.08);
    pointer-events: auto;
}

.zs-pill strong {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: 22px;
    color: #111008;
    line-height: 1;
}

.zs-pill span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 8px;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(17, 16, 8, 0.4);
    text-transform: uppercase;
}

.zs-pill--a {
    top: 20%;
    right: 8%;
}

.zs-pill--b {
    bottom: 22%;
    left: 5%;
}

.zs-pill--c {
    top: 54%;
    right: 6%;
}

@media (max-width: 960px) {
    .zs-hero__grid {
        grid-template-columns: 1fr !important;
    }

    .zs-hero__left {
        background: #F4F2EB !important;
        padding: 120px 24px 40px 24px !important;
    }

    .zs-hero__right {
        min-height: 400px !important;
    }
}

/* ============================================
   ZF-FEATURES ? BENTO REDESIGN
   ============================================ */
.zf-features {
    padding: 100px 6vw 120px;
    background: #FAFAF8;
    position: relative;
    overflow: hidden;
}

.zf-features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(17, 16, 8, 0.12), transparent);
}

/* Header */
.zf-features__header {
    max-width: 680px;
    margin: 0 auto 72px;
    text-align: center;
}

.zf-features__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: black;
    margin-bottom: 20px;
}

.zf-features__eyebrow-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #1e84d8;
    display: inline-block;
}

.zf-features__title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 4vw, 56px);
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--navy);
    margin: 0 0 20px;
}

.zf-features__title em {
    font-style: normal;
    color: var(--accent-cyan);
}

.zf-features__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    line-height: 1.75;
    color: rgba(17, 16, 8, 0.5);
    margin: 0;
}

.desk-only {
    display: inline;
}

@media (max-width: 768px) {
    .desk-only {
        display: none;
    }
}

/* Bento grid */
.zf-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 16px;
    max-width: 1280px;
    margin: 0 auto;
}

/* Base card */
.zf-card {
    background: #ffffff;
    border: 1px solid rgba(17, 16, 8, 0.07);
    border-radius: 20px;
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.3s;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.zf-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(17, 16, 8, 0.08);
    border-color: rgba(17, 16, 8, 0.12);
}

.zf-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
    border-radius: 20px 20px 0 0;
    transition: background 0.3s;
}

.zf-card:hover::after {
    background: linear-gradient(135deg, #1e84d8, #0176d8);
}

/* Wide card ? spans 2 columns */
.zf-card--wide {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
}

.zf-card--wide .zf-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Alt wide card ? spans 2 columns, bottom row */
.zf-card--wide-alt {
    grid-column: span 2;
    flex-direction: row;
    align-items: flex-start;
    gap: 28px;
}

.zf-card--wide-alt .zf-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* Stat card */
.zf-card--stat {
    background: linear-gradient(145deg, #0D1F5C 0%, #1A36A8 100%);
    border-color: transparent;
    color: white;
}

.zf-card--stat .zf-card__num {
    color: rgba(255, 255, 255, 0.15);
}

.zf-card--stat .zf-card__title {
    color: white;
}

.zf-card--stat .zf-card__desc {
    color: rgba(255, 255, 255, 0.65);
}

.zf-card--stat:hover {
    border-color: transparent;
}

.zf-card--stat::after {
    display: none;
}

/* Number label */
.zf-card__num {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.08em;
    color: rgba(17, 16, 8, 0.15);
}

/* Icon wrap */
.zf-card__icon-wrap {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: transform 0.3s;
}

.zf-card:hover .zf-card__icon-wrap {
    transform: scale(1.08) rotate(-3deg);
}

.zf-card__icon-wrap--amber {
    background: rgba(40, 161, 197, 0.1);
    color: #1e84d8;
}

.zf-card__icon-wrap--teal {
    background: rgba(75, 158, 156, 0.1);
    color: #4B9E9C;
}

.zf-card__icon-wrap--blue {
    background: rgba(26, 54, 168, 0.1);
    color: #1A36A8;
}

.zf-card--stat .zf-card__icon-wrap--blue {
    background: rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.9);
}

/* Title & desc */
.zf-card__title {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #111008;
    margin: 0;
    line-height: 1.3;
}

.zf-card__desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    line-height: 1.75;
    color: rgba(17, 16, 8, 0.52);
    margin: 0;
}

/* Core tag */
.zf-card__tag {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1e84d8;
    padding: 5px 10px;
    background: rgba(40, 161, 197, 0.08);
    border: 1px solid rgba(40, 161, 197, 0.2);
    border-radius: 6px;
    align-self: flex-start;
    margin-top: auto;
    white-space: nowrap;
}

/* Stat big number */
.zf-stat-big {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-size: 52px;
    font-weight: 400;
    color: white;
    line-height: 1;
    letter-spacing: -0.02em;
}

.zf-stat-big span {
    font-size: 0.55em;
    vertical-align: super;
}

.zf-stat-lbl {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 12px;
}

/* Security badges */
.zf-security-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: auto;
}

.zf-security-badges span {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 5px 10px;
    border-radius: 6px;
    background: rgba(75, 158, 156, 0.08);
    border: 1px solid rgba(75, 158, 156, 0.2);
    color: #4B9E9C;
}

/* Responsive */
@media (max-width: 1024px) {
    .zf-bento {
        grid-template-columns: repeat(2, 1fr);
    }

    .zf-card--wide,
    .zf-card--wide-alt {
        grid-column: span 2;
    }
}

@media (max-width: 640px) {
    .zf-bento {
        grid-template-columns: 1fr;
    }

    .zf-card--wide,
    .zf-card--wide-alt {
        grid-column: span 1;
        flex-direction: column;
    }

    .zf-features {
        padding: 72px 24px 80px;
    }
}

/* ZF-FEATURES: Full-width bottom card */
.zf-card--full {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    gap: 32px;
    padding: 36px 40px;
}

.zf-card--full .zf-card__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.zf-card--full .zf-security-badges {
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

@media (max-width: 640px) {
    .zf-card--full {
        flex-direction: column;
        align-items: flex-start;
    }

    .zf-card--full .zf-security-badges {
        justify-content: flex-start;
    }
}

/* ============================================
   ZC-SECTION ? CAPABILITY REDESIGN
   ============================================ */
.zc-section {
    position: relative;
    background: #ffffff;
    padding: 100px 6vw 0;
}

.zc-inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 80px;
    align-items: start;
    padding-bottom: 100px;
}

/* -- Left column -- */
.zc-left {
    position: sticky;
    top: 100px;
}

.zc-eyebrow {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: 'JetBrains Mono', monospace;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: black;
    margin-bottom: 24px;
}

.zc-eyebrow-line {
    display: inline-block;
    width: 22px;
    height: 1px;
    background: #1A36A8;
    flex-shrink: 0;
}

.zc-headline {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: clamp(36px, 3.8vw, 54px);
    line-height: 1.15;
    letter-spacing: -0.022em;
    color: var(--navy);
    margin: 0 0 24px;
}

.zc-headline em {
    font-style: normal;
    color: var(--accent-cyan);
}

.zc-body {
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    line-height: 1.8;
    color: rgba(17, 16, 8, 0.5);
    margin: 0 0 36px;
    max-width: 340px;
}

.zc-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'DM Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #111008;
    text-decoration: none;
    border-bottom: 1px solid rgba(17, 16, 8, 0.2);
    padding-bottom: 2px;
    transition: color 0.2s, border-color 0.2s, gap 0.2s;
}

.zc-link:hover {
    color: #1A36A8;
    border-color: #1A36A8;
    gap: 12px;
}

/* -- Right column ? 2?2 grid -- */
.zc-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: rgba(17, 16, 8, 0.06);
    border: 1px solid rgba(17, 16, 8, 0.06);
    border-radius: 20px;
    overflow: hidden;
}

.zc-cap {
    background: #ffffff;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: background 0.25s;
    position: relative;
}

.zc-cap:hover {
    background: #FAFAF8;
}

/* Top-left corner radius */
.zc-cap:nth-child(1) {
    border-radius: 18px 0 0 0;
}

.zc-cap:nth-child(2) {
    border-radius: 0 18px 0 0;
}

.zc-cap:nth-child(3) {
    border-radius: 0 0 0 18px;
}

.zc-cap:nth-child(4) {
    border-radius: 0 0 18px 0;
}

/* Accent top bar on hover */
.zc-cap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.zc-cap--amber::before,
.zc-cap:nth-child(1)::before,
.zc-cap:nth-child(4)::before {
    background: linear-gradient(to right, #1e84d8, #D4A843);
}

.zc-cap--blue::before,
.zc-cap:nth-child(2)::before {
    background: linear-gradient(to right, #1A36A8, #4B9E9C);
}

.zc-cap--teal::before,
.zc-cap:nth-child(3)::before {
    background: linear-gradient(to right, #4B9E9C, #1A36A8);
}

.zc-cap:hover::before {
    transform: scaleX(1);
}

/* Icon */
.zc-cap__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.zc-cap:hover .zc-cap__icon {
    transform: scale(1.1) rotate(-4deg);
}

.zc-cap__icon--amber {
    background: rgba(40, 161, 197, 0.1);
    color: #1e84d8;
}

.zc-cap__icon--blue {
    background: rgba(26, 54, 168, 0.1);
    color: #1A36A8;
}

.zc-cap__icon--teal {
    background: rgba(75, 158, 156, 0.1);
    color: #4B9E9C;
}

/* Text */
.zc-cap__content h3 {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111008;
    margin: 0 0 8px;
    line-height: 1.3;
}

.zc-cap__content p {
    font-family: 'DM Sans', sans-serif;
    font-size: 13.5px;
    line-height: 1.7;
    color: rgba(17, 16, 8, 0.5);
    margin: 0;
}

/* Bottom rule */
.zc-rule {
    max-width: 1280px;
    margin: 0 auto;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(17, 16, 8, 0.1), transparent);
}

/* Responsive */
@media (max-width: 1024px) {
    .zc-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .zc-left {
        position: static;
    }

    .zc-body {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .zc-right {
        grid-template-columns: 1fr;
    }

    .zc-cap:nth-child(1) {
        border-radius: 18px 18px 0 0;
    }

    .zc-cap:nth-child(2) {
        border-radius: 0;
    }

    .zc-cap:nth-child(3) {
        border-radius: 0;
    }

    .zc-cap:nth-child(4) {
        border-radius: 0 0 18px 18px;
    }

    .zc-section {
        padding: 72px 24px 0;
    }
}

/* ============================================
   ZS-STATS ? REDESIGNED STATS BANNER
   ============================================ */
.zs-stats {
    position: relative;
    background: var(--cyan-gradient);
    overflow: hidden;
    padding: 0;
}

/* Subtle dot-grid texture */
.zs-stats__grid-bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Ambient glow blobs */
.zs-stats__glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    opacity: 0.18;
}

.zs-stats__glow--left {
    background: #4B9E9C;
    left: -150px;
    top: -150px;
}

.zs-stats__glow--right {
    background: #1A36A8;
    right: -150px;
    bottom: -150px;
}

/* Inner layout */
.zs-stats__inner {
    position: relative;
    z-index: 2;
    max-width: 1320px;
    margin: 0 auto;
    padding: 64px 6vw;
    display: flex;
    align-items: center;
    gap: 0;
}

/* Left label block */
.zs-stats__intro {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-right: 56px;
}

.zs-stats__intro-line {
    width: 28px;
    height: 2px;
    background: #1e84d8;
    border-radius: 2px;
}

.zs-stats__intro-text {
    font-family: 'Instrument Serif', Georgia, serif;
    font-style: italic;
    font-weight: 400;
    font-size: clamp(18px, 1.8vw, 26px);
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Vertical rule */
.zs-stats__vr {
    width: 1px;
    align-self: stretch;
    background: rgba(255, 255, 255, 0.12);
    flex-shrink: 0;
    margin-right: 56px;
}

/* Stats row */
.zs-stats__nums {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 0;
}

/* Individual stat */
.zs-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 0 32px;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.zs-stat:hover {
    transform: translateY(-3px);
}

.zs-stat__val .num {
    font-family: 'Outfit', sans-serif;
    font-style: normal;
    font-weight: 600;
    font-size: clamp(36px, 3.8vw, 56px);
    color: #ffffff;
    letter-spacing: -0.02em;
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums;
}

.zs-stat__label {
    font-family: 'DM Sans', sans-serif;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.3;
}

.zs-stat__desc {
    font-family: 'JetBrains Mono', monospace;
    font-size: 9px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
}

/* Separators between stats */
.zs-stat__sep {
    width: 1px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
    align-self: center;
}

/* Accent underline on first stat (highlight) */
.zs-stat:first-child .zs-stat__val::after {
    content: '';
    display: block;
    width: 32px;
    height: 2px;
    background: #1e84d8;
    border-radius: 2px;
    margin-top: 10px;
}

/* Responsive */
@media (max-width: 1024px) {
    .zs-stats__intro {
        display: none;
    }

    .zs-stats__vr {
        display: none;
    }

    .zs-stats__nums {
        gap: 0;
    }

    .zs-stat {
        padding: 0 20px;
    }
}

@media (max-width: 640px) {
    .zs-stats__inner {
        flex-direction: column;
        padding: 48px 24px;
        gap: 32px;
    }

    .zs-stats__nums {
        flex-wrap: wrap;
        gap: 24px;
        width: 100%;
    }

    .zs-stat {
        flex: 0 0 calc(50% - 12px);
        padding: 0;
    }

    .zs-stat__sep {
        display: none;
    }
}



.video-hero__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    /* Soft white overlay to ensure text is readable */
    background: #FAFAF8;
}

.video-hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(250, 250, 248, 0.9) 0%, rgba(250, 250, 248, 0.4) 40%, transparent 100%);
    z-index: 1;
}

.video-hero__bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform-origin: right center;
    transform: scale(1.8);
}

.video-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 120px 6vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.video-hero__tag {
    margin-bottom: 24px;
}

.video-hero__tag-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #111008;
    letter-spacing: 0.05em;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(17, 16, 8, 0.1);
    border-radius: 100px;
}

.video-hero__h1 {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(48px, 6.5vw, 88px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.04em;
    color: #111008;
    margin: 0 0 28px 0;
    max-width: 800px;
}

.video-hero__sub {
    font-family: 'DM Sans', sans-serif;
    font-size: clamp(16px, 1.5vw, 22px);
    line-height: 1.6;
    color: rgba(17, 16, 8, 0.75);
    margin: 0 0 48px 0;
    max-width: 580px;
}

.video-hero__ctas {
    display: flex;
    gap: 16px;
    align-items: center;
    flex-wrap: wrap;
}

.video-hero__btn-primary {
    background: #111008;
    color: #ffffff;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 18px 36px;
    border-radius: 100px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.video-hero__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 16, 8, 0.2);
}

.video-hero__btn-secondary {
    background: transparent;
    color: #111008;
    font-family: 'DM Sans', sans-serif;
    font-size: 15px;
    font-weight: 600;
    padding: 16px 32px;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid rgba(17, 16, 8, 0.2);
    transition: background 0.2s, border-color 0.2s;
}

.video-hero__btn-secondary:hover {
    background: rgba(17, 16, 8, 0.05);
    border-color: rgba(17, 16, 8, 0.4);
}

@media (max-width: 768px) {
    .video-hero__bg video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transform-origin: right center;
        transform: scale(1.8);
    }

    .video-hero__bg::after {
        background: linear-gradient(to right, rgba(250, 250, 248, 0.95) 0%, rgba(250, 250, 248, 0.7) 60%, transparent 100%);
    }
}





/* ============================================
   RESPONSIVE OPTIMIZATIONS (Tablet & Mobile)
   ============================================ */

/* Desktop Default Video Transform */
.zs-hero__globe {
    transform: scale(1.25);
    transform-origin: right center;
}

/* Tablet / Small Desktop (max-width: 1024px) */
@media (max-width: 1024px) {
    .zs-hero__h1 {
        font-size: clamp(36px, 6vw, 64px) !important;
    }

    .zs-hero__left {
        padding: 100px 30px 60px 4vw !important;
    }
}

/* Mobile (max-width: 960px - Grid collapses to 1 column) */
@media (max-width: 960px) {
    .zs-hero__grid {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto 50vh !important;
    }

    .zs-hero__left {
        padding: 100px 24px 40px 24px !important;
        z-index: 10;
        background: #F4F2EB !important;
    }

    .zs-hero__right {
        min-height: 50vh !important;
        width: 100% !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05);
    }

    /* Since mobile column is 100% width, we MUST scale video massively 
       to push the baked-in text (left 40%) completely off-screen. */
    .zs-hero__globe {
        transform: scale(2.6) translateY(5%) !important;
        transform-origin: right center !important;
    }

    .zs-hero__pills {
        display: none !important;
        /* Hide floating pills on small screens to reduce clutter */
    }

    .zf-features {
        padding: 60px 24px 80px;
    }

    .zf-features__header {
        margin-bottom: 40px;
    }

    .zc-cap__grid {
        grid-template-columns: 1fr;
    }

    .zc-cap__left {
        position: static;
        padding-bottom: 24px;
    }

    .zs-stats__grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* Small Mobile (max-width: 480px) */
@media (max-width: 480px) {
    .zs-hero__h1 {
        font-size: 40px !important;
        margin-bottom: 24px !important;
    }

    .zs-hero__ctas {
        flex-direction: column;
        width: 100%;
    }

    .zs-hero__btn-dark,
    .zs-hero__btn-ghost {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .zs-hero__stats {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
}

/* ============================================
   PREMIUM CSS VISUAL (No Video)
   ============================================ */
.zs-hero__visual {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Ambient glowing orbs */
.zs-hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    opacity: 0.7;
    animation: zsOrbFloat 12s ease-in-out infinite alternate;
    z-index: 1;
}

.zs-hero__orb--1 {
    width: 350px;
    height: 350px;
    background: #1A36A8;
    top: 5%;
    right: 5%;
}

.zs-hero__orb--2 {
    width: 450px;
    height: 450px;
    background: rgba(75, 158, 156, 0.8);
    bottom: 5%;
    left: 0%;
    animation-delay: -6s;
    animation-direction: alternate-reverse;
}

@keyframes zsOrbFloat {
    0% {
        transform: translate(0, 0) scale(1);
    }

    100% {
        transform: translate(-40px, 60px) scale(1.15);
    }
}

/* Main Glass Card */
.zs-hero__glass-card {
    position: relative;
    z-index: 3;
    width: 380px;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(32px);
    -webkit-backdrop-filter: blur(32px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 32px 64px rgba(17, 16, 8, 0.08), inset 0 2px 0 rgba(255, 255, 255, 1);
    transform: rotateX(2deg) rotateY(-4deg) translateZ(0);
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.zs-hero__glass-card:hover {
    transform: rotateX(0) rotateY(0) translateY(-10px);
}

.zs-hero__glass-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 48px;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: #111008;
    letter-spacing: 0.02em;
}

.zs-hero__pulse-dot {
    width: 10px;
    height: 10px;
    background: #4B9E9C;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(75, 158, 156, 0.6);
    animation: zsPulse 2s infinite cubic-bezier(0.66, 0, 0, 1);
}

@keyframes zsPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(75, 158, 156, 0.6);
    }

    70% {
        box-shadow: 0 0 0 12px rgba(75, 158, 156, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(75, 158, 156, 0);
    }
}

/* Abstract CSS Chart */
.zs-hero__chart {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    height: 160px;
    gap: 16px;
}

.zs-hero__bar {
    flex: 1;
    background: linear-gradient(to top, rgba(26, 54, 168, 0.05), rgba(26, 54, 168, 0.8));
    border-radius: 8px;
    height: 0;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.5);
    animation: zsBarGrow 1.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.zs-hero__bar:nth-child(1) {
    animation-delay: 0.2s;
}

.zs-hero__bar:nth-child(2) {
    animation-delay: 0.3s;
}

.zs-hero__bar:nth-child(3) {
    animation-delay: 0.4s;
}

.zs-hero__bar:nth-child(4) {
    animation-delay: 0.5s;
    background: linear-gradient(to top, rgba(75, 158, 156, 0.05), #4B9E9C);
}

.zs-hero__bar:nth-child(5) {
    animation-delay: 0.6s;
}

@keyframes zsBarGrow {
    from {
        height: 0;
        opacity: 0;
    }

    to {
        height: var(--h);
        opacity: 1;
    }
}

/* Reset pills inside new visual */
.zs-hero__pills {
    z-index: 10;
}

/* ============================================
   GLOBAL MOBILE & IPAD OVERLAP HOTFIXES
   ============================================ */
/* 1. Prevent vertical & horizontal overflow globally */
html,
body {
    overflow-x: hidden !important;
    width: 100%;
    margin: 0;
    padding: 0;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

/* 2. Hero Visual Mobile Fixes (Prevent Glass Card Overflow) */
.zs-hero__glass-card {
    max-width: 90%;
    /* Ensures it never touches screen edges on mobile */
    margin: 0 auto;
}

@media (max-width: 960px) {
    .zs-hero__grid {
        grid-template-rows: auto auto !important;
        /* Let content dictate height, not fixed 50vh */
        min-height: auto !important;
    }

    .zs-hero__left {
        min-height: auto !important;
        padding-bottom: 60px !important;
    }

    .zs-hero__right {
        min-height: auto !important;
        overflow: hidden !important;
        /* Critical: Stops orbs/cards from bleeding into next section */
        padding: 40px 0 60px 0;
    }

    .zs-hero__visual {
        min-height: 380px !important;
        padding: 20px 0;
    }

    .zs-hero__glass-card {
        width: 100%;
        padding: 24px;
        border-radius: 20px;
    }

    .zs-hero__glass-header {
        font-size: 13px;
        margin-bottom: 24px;
    }

    .zs-hero__chart {
        height: 100px;
        gap: 8px;
    }

    /* Scale down orbs to prevent massive blurring overflow */
    .zs-hero__orb--1 {
        width: 200px;
        height: 200px;
        top: -10%;
        right: -10%;
    }

    .zs-hero__orb--2 {
        width: 250px;
        height: 250px;
        bottom: -10%;
        left: -10%;
    }
}

/* 3. iPad/Tablet Specific Adjustments (Landscape & Portrait) */
@media (max-width: 1100px) and (min-width: 961px) {
    .zs-hero__glass-card {
        width: 320px;
        padding: 30px;
    }

    .zs-hero__chart {
        height: 120px;
    }

    .zs-pill {
        transform: scale(0.85);
        /* Shrink floating pills slightly so they don't overlap the card */
    }

    .zs-pill--a {
        top: 15%;
        left: -5%;
    }

    .zs-pill--b {
        bottom: 15%;
        left: -10%;
    }

    .zs-pill--c {
        top: 50%;
        right: -5%;
    }
}

/* 4. Ensure all Bento features/grids never overflow horizontally */
@media (max-width: 768px) {

    .zf-features,
    .zc-cap,
    .zs-stats {
        padding-left: 20px !important;
        padding-right: 20px !important;
        overflow: hidden;
        /* Stop any internal absolute elements from breaking viewport width */
    }

    img,
    video,
    canvas {
        max-width: 100%;
        height: auto;
    }
}

/* ============================================
   MASTER LAYOUT CLEANUP (REMOVING VIDEO GHOSTS)
   ============================================ */

/* 1. Eliminate the old video fade gradients that look like ugly white smudges over the new visual */
.zs-hero__right::before,
.zs-hero__right::after {
    display: none !important;
    content: none !important;
    opacity: 0 !important;
    background: transparent !important;
}

/* 2. Absolute foolproof mobile stacking for the Hero Grid */
@media (max-width: 960px) {
    .zs-hero__grid {
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .zs-hero__left {
        width: 100% !important;
        flex: 0 0 auto !important;
        padding: 120px 24px 20px 24px !important;
        height: auto !important;
    }

    .zs-hero__right {
        width: 100% !important;
        flex: 0 0 auto !important;
        height: auto !important;
        padding: 20px 0 60px 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
        min-height: 0 !important;
        border-top: none !important;
    }

    /* Ensure the glass card respects mobile bounds perfectly */
    .zs-hero__glass-card {
        width: 90% !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }

    /* Reposition orbs strictly inside the container */
    .zs-hero__orb--1 {
        top: 0;
        right: 0;
    }

    .zs-hero__orb--2 {
        bottom: 0;
        left: 0;
    }
}

/* 3. Global Mobile Typography Sanity Check */
@media (max-width: 480px) {
    .zs-hero__h1 {
        font-size: 36px !important;
        line-height: 1.1 !important;
    }

    .zs-hero__sub {
        font-size: 15px !important;
    }
}

/* ============================================================
   DEFINITIVE MOBILE & IPAD RESPONSIVE SYSTEM
   (Authoritative final layer — overrides all previous rules)
   ============================================================ */

/* ---- DESKTOP BASE (>1024px) ---- */
@media (min-width: 1025px) {
    .zs-hero {
        position: relative;
        background: #F4F2EB;
        overflow: hidden;
        min-height: 100vh;
    }

    .zs-hero__grid {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        min-height: 100vh !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .zs-hero__left {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 120px 60px 80px 6vw !important;
        background: #F4F2EB !important;
        z-index: 2 !important;
        position: relative !important;
    }

    .zs-hero__right {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 100vh !important;
        overflow: hidden !important;
    }

    .zs-hero__right::before,
    .zs-hero__right::after {
        display: none !important;
    }
}

/* ---- IPAD / TABLET (768px – 1024px) ---- */
@media (max-width: 1024px) and (min-width: 769px) {
    .zs-hero {
        min-height: auto !important;
        overflow: hidden !important;
        background: #F4F2EB !important;
    }

    .zs-hero__grid {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .zs-hero__left {
        width: 100% !important;
        padding: 130px 48px 60px 48px !important;
        background: #F4F2EB !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        z-index: 2 !important;
        position: relative !important;
    }

    .zs-hero__h1 {
        font-size: clamp(44px, 6vw, 68px) !important;
    }

    .zs-hero__sub {
        font-size: 16px !important;
        max-width: 100% !important;
    }

    .zs-hero__ctas {
        flex-wrap: wrap !important;
    }

    .zs-hero__right {
        width: 100% !important;
        min-height: 420px !important;
        max-height: 480px !important;
        overflow: hidden !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .zs-hero__right::before,
    .zs-hero__right::after {
        display: none !important;
    }

    .zs-hero__visual {
        width: 100% !important;
        height: 420px !important;
        min-height: 0 !important;
        padding: 0 48px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        overflow: hidden !important;
    }

    .zs-hero__glass-card {
        width: 100% !important;
        max-width: 480px !important;
        padding: 32px !important;
        border-radius: 20px !important;
        transform: none !important;
    }

    .zs-hero__pills {
        display: none !important;
    }

    .zs-hero__orb--1 {
        width: 220px !important;
        height: 220px !important;
        top: -20px !important;
        right: -20px !important;
    }

    .zs-hero__orb--2 {
        width: 280px !important;
        height: 280px !important;
        bottom: -20px !important;
        left: -20px !important;
    }
}

/* ---- MOBILE (<=768px) ---- */
@media (max-width: 768px) {
    .zs-hero {
        min-height: auto !important;
        overflow: hidden !important;
        background: #F4F2EB !important;
    }

    .zs-hero__grid {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
    }

    .zs-hero__left {
        width: 100% !important;
        padding: 110px 20px 40px 20px !important;
        background: #F4F2EB !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        z-index: 2 !important;
        position: relative !important;
        box-sizing: border-box !important;
    }

    .zs-hero__tag {
        margin-bottom: 20px !important;
    }

    .zs-hero__h1 {
        font-size: 38px !important;
        line-height: 1.1 !important;
        letter-spacing: -0.02em !important;
        margin-bottom: 16px !important;
    }

    .zs-hero__sub {
        font-size: 15px !important;
        max-width: 100% !important;
        margin-bottom: 28px !important;
        line-height: 1.7 !important;
    }

    .zs-hero__ctas {
        flex-direction: column !important;
        gap: 12px !important;
        margin-bottom: 32px !important;
        align-items: stretch !important;
    }

    .zs-hero__btn-dark,
    .zs-hero__btn-ghost {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .zs-hero__rule {
        margin: 0 0 20px !important;
    }

    .zs-hero__clients {
        margin-bottom: 24px !important;
    }

    .zs-hero__clients-row {
        gap: 12px !important;
        flex-wrap: wrap !important;
    }

    .zs-hero__clients-row span {
        font-size: 12px !important;
    }

    .zs-hero__stats {
        gap: 20px !important;
        flex-wrap: nowrap !important;
    }

    .zs-hero__stat strong {
        font-size: 22px !important;
    }

    .zs-hero__right {
        width: 100% !important;
        min-height: 0 !important;
        max-height: none !important;
        overflow: hidden !important;
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 0 0 48px 0 !important;
        box-sizing: border-box !important;
    }

    .zs-hero__right::before,
    .zs-hero__right::after {
        display: none !important;
    }

    .zs-hero__visual {
        width: 100% !important;
        min-height: 0 !important;
        padding: 20px 20px 0 20px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
        overflow: hidden !important;
        box-sizing: border-box !important;
    }

    .zs-hero__glass-card {
        width: 100% !important;
        max-width: 340px !important;
        padding: 24px !important;
        border-radius: 18px !important;
        transform: none !important;
        position: relative !important;
        z-index: 2 !important;
        box-sizing: border-box !important;
    }

    .zs-hero__glass-header {
        font-size: 12px !important;
        margin-bottom: 20px !important;
    }

    .zs-hero__chart {
        height: 90px !important;
        gap: 8px !important;
    }

    .zs-hero__pills {
        display: none !important;
    }

    .zs-hero__orb--1 {
        width: 160px !important;
        height: 160px !important;
        top: -10px !important;
        right: -10px !important;
        filter: blur(60px) !important;
    }

    .zs-hero__orb--2 {
        width: 200px !important;
        height: 200px !important;
        bottom: -10px !important;
        left: -10px !important;
        filter: blur(60px) !important;
    }
}

/* ---- VERY SMALL MOBILE (<=375px) ---- */
@media (max-width: 375px) {
    .zs-hero__h1 {
        font-size: 32px !important;
    }

    .zs-hero__left {
        padding: 100px 16px 32px 16px !important;
    }

    .zs-hero__glass-card {
        padding: 18px !important;
    }
}

/* ============================================================
   HERO: MOBILE & IPAD — TEXT-ONLY, NO VISUAL
   Hide right column entirely; make text section fill & shine
   ============================================================ */

@media (max-width: 1024px) {

    /* Grid becomes single column; right side hidden */
    .zs-hero__grid {
        display: flex !important;
        flex-direction: column !important;
        min-height: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        height: auto !important;
    }

    /* Kill the visual column completely */
    .zs-hero__right {
        display: none !important;
    }

    /* Left column becomes a full, beautiful standalone hero */
    .zs-hero__left {
        width: 100% !important;
        min-height: 100svh !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        padding: 120px 32px 80px 32px !important;
        background: #F4F2EB !important;
        box-sizing: border-box !important;
        position: relative !important;
        z-index: 2 !important;
    }

    .zs-hero__h1 {
        font-size: clamp(40px, 8vw, 64px) !important;
        line-height: 1.08 !important;
    }

    .zs-hero__sub {
        font-size: 16px !important;
        max-width: 600px !important;
        margin-bottom: 32px !important;
    }

    .zs-hero__ctas {
        flex-wrap: wrap !important;
        gap: 12px !important;
    }
}

/* Phones — tighter padding, stacked buttons */
@media (max-width: 600px) {
    .zs-hero__left {
        padding: 100px 20px 60px 20px !important;
        min-height: 100svh !important;
    }

    .zs-hero__h1 {
        font-size: 36px !important;
        line-height: 1.1 !important;
    }

    .zs-hero__sub {
        font-size: 15px !important;
        line-height: 1.7 !important;
        margin-bottom: 28px !important;
    }

    .zs-hero__ctas {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .zs-hero__btn-dark,
    .zs-hero__btn-ghost {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        display: flex !important;
        align-items: center !important;
    }

    .zs-hero__clients-row {
        gap: 10px !important;
        flex-wrap: wrap !important;
    }

    .zs-hero__stats {
        gap: 24px !important;
    }

    .zs-hero__stat strong {
        font-size: 22px !important;
    }
}

/* Very small phones */
@media (max-width: 375px) {
    .zs-hero__left {
        padding: 90px 16px 48px 16px !important;
    }

    .zs-hero__h1 {
        font-size: 30px !important;
    }
}

/* ============================================================
   INDUSTRIES PAGE — PREMIUM REDESIGN
   ============================================================ */

/* Section wrapper */
.ind-section {
    padding: 80px 5% 100px;
    background: #fff;
}

/* Header block */
.ind-header {
    text-align: center;
    margin-bottom: 64px;
}

.ind-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1.5px solid rgba(40, 161, 197, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #1e84d8;
    background: rgba(40, 161, 197, 0.06);
    margin-bottom: 24px;
}

.ind-title {
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 800;
    color: #01004C;
    line-height: 1.15;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.ind-title--cyan {
    color: #1e84d8;
}

.ind-underline {
    width: 48px;
    height: 3px;
    background: linear-gradient(135deg, #1e84d8, #0176d8);
    border-radius: 2px;
    margin: 0 auto 20px;
}

.ind-subtitle {
    font-size: 16px;
    color: #5b6770;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto;
}

/* Cards Grid — 3 columns desktop */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Individual card */
.ind-card {
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 36px 28px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.ind-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.14);
}

/* Icon circle */
.ind-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}

/* Title */
.ind-card__title {
    font-size: 17px;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
}

/* Description */
.ind-card__desc {
    font-size: 14px;
    color: #5b6770;
    line-height: 1.75;
    margin: 0;
}

/* CTA Banner */
.ind-cta {
    margin: 0 5% 80px;
    border-radius: 28px;
    background: var(--accent-cyan);
    padding: 72px 10%;
    text-align: center;
}

.ind-cta__inner {
    max-width: 640px;
    margin: 0 auto;
}

.ind-cta__title {
    font-size: clamp(26px, 4vw, 42px);
    font-weight: 800;
    color: #fff;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.ind-cta__sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0 0 36px;
}

.ind-cta__btn,
.btn-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    background: #fff;
    color: var(--accent-cyan);
    font-size: 16px;
    font-weight: 700;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ind-cta__btn:hover,
.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Responsive — iPad (2 columns) */
@media (max-width: 1024px) {
    .ind-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .ind-cta {
        margin: 0 3% 60px;
        padding: 56px 8%;
    }
}

/* Responsive — Mobile (1 column) */
@media (max-width: 640px) {
    .ind-section {
        padding: 60px 20px 80px;
    }

    .ind-header {
        margin-bottom: 40px;
    }

    .ind-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ind-card {
        padding: 24px 20px;
    }

    .ind-cta {
        margin: 0 0 48px;
        border-radius: 0;
        padding: 48px 20px;
    }

    .ind-subtitle br {
        display: none;
    }
}

/* ============================================================
   VISIONIQ PNG LOGO — NAVBAR & FOOTER
   ============================================================ */

/* Navbar logo image */
.nav-logo__img {
    height: 80px;
    width: auto;
    display: block;
    object-fit: contain;
}




/* ============================================================
   INDUSTRY SUB-PAGES — COMPLETE STYLES
   ============================================================ */

/* --- Hero --- */
.ind-hero {
    position: relative;
    background: linear-gradient(135deg, #01004C 0%, #1A36A8 55%, var(--ind-color, #4B9E9C) 100%);
    color: #fff;
    padding: 140px 6vw 80px;
    overflow: hidden;
}

.ind-hero__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
    pointer-events: none;
}

.ind-hero__breadcrumb {
    position: absolute;
    top: 100px;
    left: 6vw;
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.ind-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
}

.ind-hero__breadcrumb a:hover {
    color: #fff;
}

.ind-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

.ind-hero__title {
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.025em;
    margin: 0 0 20px;
    max-width: 700px;
}

.ind-hero__sub {
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
    max-width: 580px;
    margin: 0 0 36px;
}

.ind-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: #01004C;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.ind-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* --- Intro --- */
.ind-intro-sec {
    background: #fff;
    padding: 72px 6vw;
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ind-intro-sec__inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.ind-intro-sec__text p {
    font-size: 17px;
    line-height: 1.85;
    color: #3a4050;
    margin: 0 0 16px;
}

.ind-intro-sec__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 28px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    width: fit-content;
    transition: opacity 0.2s, transform 0.2s;
}

.ind-intro-sec__btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* --- Topics --- */
.ind-topics {
    background: #FAFAF8;
    padding: 72px 6vw;
}

.ind-topics__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ind-topics__title {
    font-size: 26px;
    font-weight: 800;
    color: #01004C;
    margin: 0 0 40px;
    letter-spacing: -0.01em;
}

.ind-topics__grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.ind-topic {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 14px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.ind-topic:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.ind-topic__icon {
    font-size: 22px;
    width: 28px;
    text-align: center;
    flex-shrink: 0;
}

.ind-topic__label {
    font-size: 14px;
    font-weight: 500;
    color: #1a1a2e;
    line-height: 1.4;
}

/* --- Case Studies --- */
.ind-cases {
    background: #fff;
    padding: 72px 6vw;
}

.ind-cases__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ind-cases__note {
    font-size: 14px;
    color: #888;
    margin: 0 0 20px;
    line-height: 1.6;
}

.ind-cases__title {
    font-size: 26px;
    font-weight: 800;
    color: #01004C;
    margin: 0 0 40px;
}

.ind-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.ind-case {
    padding: 28px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.ind-case:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.ind-case__title {
    font-size: 15px;
    font-weight: 700;
    color: #01004C;
    margin: 0;
    line-height: 1.4;
}

.ind-case__excerpt {
    font-size: 13px;
    color: #5b6770;
    line-height: 1.7;
    margin: 0;
}

.ind-case__link {
    font-size: 13px;
    font-weight: 700;
    color: #1A36A8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.ind-case__link:hover {
    gap: 10px;
}

/* --- Blog --- */
.ind-blog {
    background: #FAFAF8;
    padding: 72px 6vw;
}

.ind-blog__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ind-blog__title {
    font-size: 26px;
    font-weight: 800;
    color: #01004C;
    margin: 0 0 40px;
}

.ind-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 40px;
}

.ind-blog-card {
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.ind-blog-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.ind-blog-card__cat {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #1A36A8;
    background: rgba(26, 54, 168, 0.07);
    padding: 4px 10px;
    border-radius: 100px;
    width: fit-content;
}

.ind-blog-card__title {
    font-size: 15px;
    font-weight: 700;
    color: #01004C;
    margin: 0;
    line-height: 1.4;
}

.ind-blog-card__excerpt {
    font-size: 13px;
    color: #5b6770;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.ind-blog-card__meta {
    display: flex;
    gap: 12px;
    font-size: 11px;
    color: #aaa;
    flex-wrap: wrap;
}

.ind-blog-card__link {
    font-size: 13px;
    font-weight: 700;
    color: #1A36A8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.ind-blog-card__link:hover {
    gap: 10px;
}

.ind-blog__cta {
    text-align: center;
}

.ind-blog__view-all {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    border: 2px solid #01004C;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    color: #01004C;
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
}

.ind-blog__view-all:hover {
    background: #01004C;
    color: #fff;
}

/* --- Industry Nav Sidebar --- */
.ind-nav-sec {
    background: #fff;
    padding: 48px 6vw;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
}

.ind-nav-sec__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ind-nav-sec__title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaa;
    margin: 0 0 20px;
}

.ind-nav-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.ind-nav-list a {
    display: inline-block;
    padding: 8px 20px;
    border: 1.5px solid rgba(0, 0, 0, 0.1);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    color: #3a4050;
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ind-nav-list a:hover,
.ind-nav-list a.active {
    border-color: #01004C;
    background: #01004C;
    color: #fff;
}

/* --- Subscribe --- */
.ind-subscribe {
    background: linear-gradient(135deg, #01004C, #1A36A8);
    padding: 64px 6vw;
}

.ind-subscribe__inner {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.ind-subscribe__title {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 24px;
}

.ind-subscribe__form {
    display: flex;
    gap: 12px;
}

.ind-subscribe__input {
    flex: 1;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    outline: none;
}

.ind-subscribe__btn {
    padding: 14px 28px;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
}

.ind-subscribe__btn:hover {
    opacity: 0.9;
}

/* --- Mobile nav sub items --- */
.mobile-nav-sep {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #aaa;
    padding: 16px 0 8px;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin-top: 8px;
    list-style: none;
}

.mobile-nav-sub {
    padding-left: 12px !important;
    font-size: 0.95rem !important;
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .ind-blog__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ind-cases__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .ind-hero {
        padding: 120px 20px 60px;
    }

    .ind-intro-sec,
    .ind-topics,
    .ind-cases,
    .ind-blog,
    .ind-nav-sec,
    .ind-subscribe {
        padding-left: 20px;
        padding-right: 20px;
    }

    .ind-blog__grid {
        grid-template-columns: 1fr;
    }

    .ind-subscribe__form {
        flex-direction: column;
    }

    .ind-topics__grid {
        grid-template-columns: 1fr;
    }
}

/* Industry page blog card thumbnail */
.ind-blog-card__thumb {
    width: 100%;
    height: 120px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.8rem;
    margin-bottom: 4px;
}

/* ============================================================
   SERVICE SUB-PAGES — COMPLETE STYLES
   ============================================================ */

/* Hero */
.svc-hero {
    position: relative;
    background: linear-gradient(135deg, #01004C 0%, var(--svc-color, #1A36A8) 100%);
    color: #fff;
    padding: 140px 6vw 80px;
    overflow: hidden;
}

.svc-hero__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 26px 26px;
    pointer-events: none;
}

.svc-hero__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.svc-hero__content {
    max-width: 750px;
}

.svc-hero__breadcrumb {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 28px;
    position: relative;
}

.svc-hero__breadcrumb a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
}

.svc-hero__breadcrumb a:hover {
    color: #fff;
}

.svc-hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 20px;
}

.svc-hero__title {
    font-size: clamp(34px, 4.5vw, 56px);
    font-weight: 800;
    letter-spacing: -0.025em;
    line-height: 1.1;
    margin: 0 0 16px;
}

.svc-hero__headline {
    font-size: clamp(17px, 2vw, 22px);
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 14px;
}

.svc-hero__sub {
    font-size: 15px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0 36px;
    font-weight: 700;
}

.svc-hero__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: #fff;
    color: #01004C;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}

.svc-hero__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

/* Service nav pills row */
.svc-nav {
    background: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 72px;
    z-index: 100;
}

.svc-nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
    display: flex;
    justify-content: center;
    gap: 4px;
    overflow-x: auto;
    scrollbar-width: none;
}

.svc-nav__inner::-webkit-scrollbar {
    display: none;
}

.svc-nav__pill {
    flex-shrink: 0;
    padding: 16px 20px;
    font-size: 13px;
    font-weight: 600;
    color: #5b6770;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    white-space: nowrap;
}

.svc-nav__pill:hover {
    color: #01004C;
}

.svc-nav__pill.active {
    color: #01004C;
    border-bottom-color: #01004C;
}

/* Service items grid */
.svc-items {
    background: #FAFAF8;
    padding: 72px 6vw;
}

.svc-items__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.svc-items__title {
    font-size: 24px;
    font-weight: 800;
    color: #01004C;
    margin: 0 0 40px;
}

.svc-items__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.svc-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 28px;
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.svc-item:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.svc-item__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.svc-item__body h3 {
    font-size: 16px;
    font-weight: 700;
    color: #01004C;
    margin: 0 0 8px;
}

.svc-item__body p {
    font-size: 14px;
    color: #5b6770;
    line-height: 1.7;
    margin: 0;
}

/* Quote block */
.svc-quote {
    background: linear-gradient(135deg, #01004C, #1A36A8);
    padding: 72px 6vw;
}

.svc-quote__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.svc-quote__mark {
    font-size: 120px;
    line-height: 0.7;
    color: rgba(255, 255, 255, 0.15);
    font-family: Georgia, serif;
    margin-bottom: 16px;
}

.svc-quote__text {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.88);
    font-style: italic;
    margin: 0 0 36px;
}

.svc-quote__person {
    display: flex;
    align-items: center;
    gap: 16px;
    justify-content: center;
}

.svc-quote__avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.svc-quote__person strong {
    color: #fff;
    font-size: 15px;
    display: block;
}

.svc-quote__person span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

/* FAQs */
.svc-faqs {
    background: #fff;
    padding: 72px 6vw;
}

.svc-faqs__inner {
    max-width: 860px;
    margin: 0 auto;
}

.svc-faqs__title {
    font-size: 26px;
    font-weight: 800;
    color: #01004C;
    margin: 0 0 36px;
}

.svc-faqs__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.svc-faq {
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.svc-faq[open] {
    border-color: rgba(0, 0, 0, 0.15);
}

.svc-faq__q {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 600;
    color: #01004C;
    cursor: pointer;
    list-style: none;
}

.svc-faq__q::-webkit-details-marker {
    display: none;
}

.svc-faq__q i {
    font-size: 12px;
    color: #999;
    flex-shrink: 0;
    transition: transform 0.25s;
}

.svc-faq[open] .svc-faq__q i {
    transform: rotate(180deg);
}

.svc-faq__a {
    padding: 0 24px 20px;
    font-size: 14px;
    color: #5b6770;
    line-height: 1.75;
    margin: 0;
}

/* Latest insights */
.svc-insights {
    background: #FAFAF8;
    padding: 72px 6vw;
}

.svc-insights__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.svc-insights__title {
    font-size: 26px;
    font-weight: 800;
    color: #01004C;
    margin: 0 0 36px;
}

.svc-insights__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.svc-insight-card {
    background: #fff;
    border: 1.5px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.svc-insight-card:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.svc-insight-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #01004C;
    margin: 0;
    line-height: 1.4;
}

.svc-insight-card p {
    font-size: 13px;
    color: #5b6770;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.svc-insight-card a {
    font-size: 13px;
    font-weight: 700;
    color: #1A36A8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.svc-insight-card a:hover {
    gap: 10px;
}

/* Case studies */
.svc-cases {
    background: #fff;
    padding: 72px 6vw;
}

.svc-cases__inner {
    max-width: 1100px;
    margin: 0 auto;
}

.svc-cases__note {
    font-size: 13px;
    color: #aaa;
    margin: 0 0 12px;
}

.svc-cases__title {
    font-size: 26px;
    font-weight: 800;
    color: #01004C;
    margin: 0 0 36px;
}

.svc-cases__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.svc-case {
    padding: 28px;
    border: 1.5px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    transition: box-shadow 0.2s, transform 0.2s;
}

.svc-case:hover {
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.07);
    transform: translateY(-3px);
}

.svc-case h3 {
    font-size: 15px;
    font-weight: 700;
    color: #01004C;
    margin: 0;
    line-height: 1.4;
}

.svc-case p {
    font-size: 13px;
    color: #5b6770;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

.svc-case a {
    font-size: 13px;
    font-weight: 700;
    color: #1A36A8;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: auto;
}

.svc-case a:hover {
    gap: 10px;
}

/* Get in touch CTA */
.svc-cta {
    background: #FAFAF8;
    padding: 80px 6vw;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.svc-cta__inner {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
}

.svc-cta__inner h2 {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: #01004C;
    margin: 0 0 12px;
}

.svc-cta__inner>p {
    font-size: 15px;
    color: #5b6770;
    line-height: 1.7;
    margin: 0 0 36px;
}

.svc-cta__form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
}

.svc-cta__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.svc-cta__input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.svc-cta__input:focus {
    border-color: #01004C;
}

.svc-cta__input--full {
    resize: vertical;
}

.svc-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 32px;
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    align-self: center;
    transition: opacity 0.2s, transform 0.2s;
}

.svc-cta__btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 1024px) {
    .svc-items__grid {
        grid-template-columns: 1fr;
    }

    .svc-insights__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .svc-cases__grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .svc-hero {
        padding: 120px 20px 60px;
    }

    .svc-items,
    .svc-quote,
    .svc-faqs,
    .svc-insights,
    .svc-cases,
    .svc-cta {
        padding-left: 20px;
        padding-right: 20px;
    }

    .svc-insights__grid {
        grid-template-columns: 1fr;
    }

    .svc-cta__row {
        grid-template-columns: 1fr;
    }

    .svc-nav__pill {
        padding: 14px 14px;
        font-size: 12px;
    }
}

/* ============================================
   PREMIUM CASE STUDIES WIDGET
   ============================================ */
.cs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 40px;
}

.cs-card {
    background: #fff;
    border-radius: 20px;
    padding: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 20px rgba(1, 0, 76, 0.03);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    z-index: 1;
}

.cs-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(40, 161, 197, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.cs-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(1, 0, 76, 0.08);
    border-color: rgba(40, 161, 197, 0.2);
}

.cs-card:hover::before {
    opacity: 1;
}

.cs-card__cat {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--accent-cyan);
    margin-bottom: 24px;
}

.cs-card__cat i {
    font-size: 14px;
}

.cs-card__title {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.3;
    margin: 0 0 16px;
    transition: color 0.3s;
}

.cs-card:hover .cs-card__title {
    color: var(--accent-cyan);
}

.cs-card__excerpt {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0 0 32px;
    flex: 1;
}

.cs-card__metric-box {
    margin-top: auto;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.cs-card__metric {
    font-family: 'Instrument Serif', serif;
    font-size: 42px;
    font-style: italic;
    font-weight: 400;
    line-height: 1;
    background: var(--cyan-gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 4px;
}

.cs-card__metric-sub {
    font-size: 12px;
    font-weight: 600;
    color: var(--navy);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cs-card__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(40, 161, 197, 0.08);
    color: var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.cs-card:hover .cs-card__arrow {
    background: var(--accent-cyan);
    color: white;
    transform: translateX(4px);
}

.cs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}

.cs-header__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: all 0.3s;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(40, 161, 197, 0.08);
}

.cs-header__btn:hover {
    background: var(--accent-cyan);
    color: white;
}

/* ============================================
   INDUSTRY NAV PILLS
   ============================================ */
.ind-nav {
    background: #fff;
    padding: 24px 6vw 0;
    max-width: 1200px;
    margin: 0 auto;
    position: sticky;
    top: 72px;
    z-index: 100;
}

.ind-nav__inner {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ind-nav__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #a0a5aa;
}

.ind-nav__pills {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
    padding-bottom: 12px;
}

.ind-nav__pills::-webkit-scrollbar {
    display: none;
}

.ind-nav__pill {
    flex-shrink: 0;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 500;
    color: #01004C;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.2s;
}

.ind-nav__pill:hover {
    border-color: #01004C;
}

.ind-nav__pill.active {
    background: #01004C;
    color: #fff;
    border-color: #01004C;
}

/* ============================================
   SVC CTA SUBMIT ROW
   ============================================ */
.svc-cta__submit-row {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* ============================================
   ABOUT US REDESIGN
   ============================================ */
.about-story-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    animation: float 6s ease-in-out infinite;
}

/* New Team Grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-card-v2 {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.team-card-v2:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(40, 161, 197, 0.15);
}

.team-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.team-card-v2:hover .team-photo {
    transform: scale(1.05);
}

.team-social-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(1, 0, 76, 0.8), transparent);
    display: flex;
    justify-content: flex-end;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card-v2:hover .team-social-overlay {
    opacity: 1;
}

.team-social-overlay a {
    color: white;
    background: var(--primary-cyan);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s;
}

.team-social-overlay a:hover {
    transform: scale(1.1);
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h4 {
    margin: 0 0 8px;
    color: var(--primary-navy);
    font-size: 1.25rem;
}

.team-info p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.95rem;
    font-weight: 500;
}

/* ============================================
   LEGAL PAGES (Terms, Privacy, Cookies)
   ============================================ */
.legal-page {
    background: #fdfdfd;
    padding: 80px 5%;
}

.legal-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 60px;
    align-items: start;
}

@media (max-width: 768px) {
    .legal-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

.legal-sidebar {
    position: sticky;
    top: 100px;
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.legal-sidebar h3 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.legal-nav a {
    text-decoration: none;
    color: var(--text-gray);
    font-weight: 500;
    font-size: 1.05rem;
    transition: color 0.2s;
    display: block;
    padding: 8px 12px;
    border-radius: 8px;
}

.legal-nav a:hover {
    color: var(--primary-cyan);
    background: rgba(40, 161, 197, 0.05);
}

.legal-nav a.active {
    color: white;
    background: var(--primary-cyan);
}

.legal-content {
    background: white;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 30px;
    }
}

.legal-content h1 {
    font-size: 2.5rem;
    color: var(--primary-navy);
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.legal-content h2 {
    font-size: 1.5rem;
    color: var(--primary-navy);
    margin: 40px 0 16px;
}

.legal-content h3 {
    font-size: 1.2rem;
    color: #333;
    margin: 24px 0 12px;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 24px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.legal-content strong {
    color: var(--primary-navy);
}

/* ==========================================================================
   ABOUT PAGE STYLES
   ========================================================================== */

.about-intro-section {
    padding: 100px 5%;
    background: white;
}

.about-intro-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.about-intro-text {
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    align-items: flex-start;
}

.about-intro-left {
    flex: 1 1 400px;
}

.about-intro-left p {
    font-size: 1.15rem;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 24px;
}

.about-intro-left p:last-child {
    margin-bottom: 0;
}

.about-intro-right {
    flex: 1 1 400px;
    background: var(--cyan-gradient);
    border-radius: 28px;
    padding: 60px 40px;
    color: white;
    text-align: center;
    box-shadow: 0 20px 40px rgba(30, 132, 216, 0.15);
}

.about-intro-right h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.about-intro-right p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
}

/* Core Values Grid */
.about-core-section {
    padding: 100px 5%;
    background: #F8F9FE;
}

.about-core-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    align-items: stretch;
}

/* ── New 2-col MVC layout ── */
.about-mvc-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: stretch;
}

.about-mvc-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.about-mvc-left .about-core-card {
    flex: 1;
}

.about-mvc-right {
    display: flex;
}

.about-mvc-right .about-core-card {
    flex: 1;
}

.about-core-card {
    background: white;
    padding: 50px 40px;
    border-radius: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.about-core-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    border-top-color: var(--accent-cyan);
}

.about-core-icon {
    width: 70px;
    height: 70px;
    background: rgba(30, 132, 216, 0.1);
    color: var(--accent-cyan);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin-bottom: 30px;
    transition: var(--transition);
}

.about-core-card:hover .about-core-icon {
    background: var(--cyan-gradient);
    color: white;
}

.about-core-card h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 20px;
}

.about-core-card p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 16px;
}

.about-core-card p:last-child {
    margin-bottom: 0;
}

/* ── Culture pillars ── */
.about-culture-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.about-culture-pillar {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 132, 216, 0.06);
    border-radius: 12px;
    padding: 12px 16px;
    transition: background 0.2s;
}

.about-culture-pillar:hover {
    background: rgba(30, 132, 216, 0.12);
}

.about-culture-pillar i {
    color: var(--accent-cyan);
    font-size: 16px;
    flex-shrink: 0;
}

.about-culture-pillar span {
    font-size: 14px;
    font-weight: 600;
    color: var(--navy);
}

/* ── Responsive ── */
@media (max-width: 900px) {
    .about-mvc-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {

    .about-intro-section,
    .about-core-section {
        padding: 60px 5%;
    }

    .about-core-grid {
        grid-template-columns: 1fr;
    }

    .about-culture-pillars {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 480px) {
    .about-culture-pillars {
        grid-template-columns: 1fr;
    }
}

/* ---- GLOBE ---- */
.globe {
  width: 100%;
  height: 560px;
  background: radial-gradient(circle at 60% 40%, #eaf3fc, #f6fafe);
  border-radius: 24px;
  border: 1px solid var(--line-color, #e3e9f2);
  overflow: hidden;
}

.globe canvas {
  display: block;
  margin: 0 auto;
}

.globe-pin {
  filter: drop-shadow(0 0 3px rgba(1, 118, 216, .6));
  transition: opacity .25s ease;
  will-change: opacity;
}

.globe-pin svg {
  display: block;
}

.globe-hint {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #5b6b80;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  pointer-events: none;
  z-index: 10;
}

.sampling {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--line-color, #e3e9f2);
  padding: 8px 14px;
  border-radius: 24px;
  color: #0f1f33;
  box-shadow: 0 1px 3px rgba(15, 31, 51, .06), 0 10px 30px rgba(15, 31, 51, .05);
}

.sampling .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0176d8;
  box-shadow: 0 0 10px rgba(1, 118, 216, .6);
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  50% {
    opacity: .4;
  }
}

/* ============================================
   ZF-CARD IMAGE LAYOUT
============================================ */
.zf-card--img-layout {
    padding: 0;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.zf-card--img-layout .zf-card__img-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.zf-card--img-layout .zf-card__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.zf-card--img-layout:hover .zf-card__img-wrap img {
    transform: scale(1.06);
}

.zf-card--img-layout .zf-card__content-box {
    position: relative;
    z-index: 1;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    margin: 16px;
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(17, 16, 8, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.zf-card--img-layout .zf-card__num {
    position: absolute;
    top: 20px;
    right: 20px;
    color: rgba(17, 16, 8, 0.2);
}

.zf-card--img-layout .zf-card__title {
    font-size: 18px;
    margin: 0;
}

.zf-card--img-layout .zf-card__desc {
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}