/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: clip;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE & Edge */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: #F8FAFC;
    color: #334155;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: clip;
    scrollbar-width: none;
    /* Firefox */
    -ms-overflow-style: none;
    /* IE & Edge */
}

/* Hide WebKit Scrollbars globally (Chrome, Safari, Edge, Opera) */
html::-webkit-scrollbar,
body::-webkit-scrollbar,
*::-webkit-scrollbar {
    display: none !important;
    width: 0 !important;
    height: 0 !important;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Keyboard Focus Accessibility */
a:focus-visible,
button:focus-visible {
    outline: 2px solid #2563EB;
    outline-offset: 3px;
    border-radius: 4px;
}

.btn:focus-visible,
.nav-links a:focus-visible {
    border-radius: 40px;
}

/* ============================================================
   CONTAINER & SECTION SPACING
   ============================================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 32px);
}

section {
    padding: clamp(48px, 7vw, 112px) 0;
}

/* ============================================================
   FULL-WIDTH ENTERPRISE NAVIGATION HEADER
   ============================================================ */
.site-header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    transition: height 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    height: 76px;
    display: flex;
    align-items: center;
}

.site-header.scrolled {
    height: 64px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06);
    border-bottom-color: #CBD5E1;
}

.header-container {
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 clamp(16px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(16px, 3vw, 48px);
}

/* Logo */
.logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 0;
    margin: 0;
    box-shadow: none;
}

.brand-logo,
.logo img {
    height: 70px;
    width: auto;
    max-height: 70px;
    object-fit: contain;
    flex-shrink: 0;
    display: block;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    background: transparent;
    border: none;
    box-shadow: none;
    filter: none;
    padding: 0;
    margin: 0;
    transition: height 0.3s ease, transform 0.25s ease;
}

.site-header.scrolled .brand-logo,
.site-header.scrolled .logo img {
    height: 44px;
    max-height: 44px;
}

.logo-icon {
    display: none;
}

/* Center Main Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 14.5px;
    font-weight: 500;
    color: #475569;
    white-space: nowrap;
    position: relative;
    padding: 6px 0;
    transition: color 0.25s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2563EB;
    border-radius: 2px;
    transition: width 0.25s ease;
}

.nav-links a:hover {
    color: #2563EB;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: #2563EB;
    font-weight: 600;
}

.nav-links a.active::after {
    width: 100%;
}

/* Right Header CTA & Mobile Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    padding: 10px 22px;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.btn-header-cta,
.btn-primary {
    background: #2563EB;
    color: #ffffff;
    border-color: #2563EB;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}

.btn-header-cta:hover,
.btn-primary:hover {
    background: #1D4ED8;
    border-color: #1D4ED8;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.btn-outline {
    background: #ffffff;
    color: #0F172A;
    border-color: #CBD5E1;
}

.btn-outline:hover {
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

/* Responsive Mobile Navigation */
@media (max-width: 960px) {
    .header-container {
        padding: 0 24px;
        gap: 24px;
    }

    .brand-logo,
    .logo img {
        height: 38px;
        max-height: 38px;
    }

    .nav-toggle {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        width: 24px;
        height: 18px;
        z-index: 1001;
    }

    .nav-toggle span {
        display: block;
        width: 100%;
        height: 2px;
        background: #0F172A;
        border-radius: 2px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #ffffff;
        box-shadow: -8px 0 30px rgba(15, 23, 42, 0.1);
        padding: 100px 32px 40px 32px;
        transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        z-index: 1000;
        align-items: flex-start;
    }

    .main-nav.open {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .nav-links a {
        font-size: 16px;
    }
}

/* ============================================================
   HERO SECTION (Single Viewport Layout)
   ============================================================ */
section.hero {
    padding: 60px 0 56px 0 !important;
    margin-top: 0 !important;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

section.hero .container {
    width: 100%;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

section.hero .hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

section.hero .hero-content {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #2563EB;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    padding: 4px 12px;
    border-radius: 20px;
}

.badge span {
    font-weight: 800;
    letter-spacing: 0.04em;
}

.hero-content h1 {
    font-size: clamp(26px, 4.5vw, 42px);
    font-weight: 800;
    color: #0F172A;
    line-height: 1.16;
    letter-spacing: -0.025em;
    margin: 14px 0 16px 0;
}

.hero-content h1 .highlight {
    color: #2563EB;
}

.hero-content p {
    font-size: clamp(14px, 1.8vw, 15.5px);
    color: #475569;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 28px;
    flex-wrap: wrap;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid #F1F5F9;
    flex-wrap: wrap;
}

.avatars {
    display: flex;
    align-items: center;
}

.avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #EFF6FF;
    border: 2px solid #ffffff;
    color: #2563EB;
    font-size: 9.5px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: -8px;
    box-shadow: 0 2px 6px rgba(15, 23, 42, 0.06);
}

.avatars span:first-child {
    margin-left: 0;
}

.trust-text {
    font-size: 13.5px;
    color: #64748B;
}

.trust-text strong {
    color: #0F172A;
    font-weight: 700;
}

.hero-visual {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-container {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.visual-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Tablet: Stack into single column, image fills width */
@media (max-width: 960px) {
    section.hero {
        padding: 40px 0 48px 0 !important;
    }

    section.hero .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .visual-container {
        width: 100%;
        max-height: none;
        aspect-ratio: 16 / 9;
        min-height: 260px;
        border-radius: 16px;
    }
}

/* Mobile: Compact layout, full-width image */
@media (max-width: 640px) {
    section.hero {
        padding: 32px 0 40px 0 !important;
    }

    section.hero .hero-grid {
        gap: 28px;
    }

    .hero-content h1 br {
        display: none;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        margin-bottom: 20px;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .visual-container {
        aspect-ratio: 4 / 3;
        min-height: 220px;
        border-radius: 14px;
    }
}

/* Small Mobile: Ultra-compact adjustments */
@media (max-width: 480px) {
    section.hero {
        padding: 28px 0 36px 0 !important;
    }

    section.hero .hero-grid {
        gap: 24px;
    }

    .badge {
        font-size: 11px;
        padding: 3px 10px;
    }

    .hero-trust {
        gap: 10px;
    }

    .trust-text {
        font-size: 12.5px;
    }

    .btn-header-cta {
        padding: 8px 14px;
        font-size: 13px;
    }

    .visual-container {
        min-height: 200px;
        border-radius: 12px;
    }
}

/* ============================================================
   INDUSTRY NAVIGATOR (Horizontal Timeline Experience)
   ============================================================ */
.industries-section {
    padding: 112px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

/* Scrollable timeline nav */
.timeline-nav-wrapper {
    position: relative;
    margin: 36px 0 44px 0;
    padding: 0 10px 16px 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.timeline-nav-wrapper::-webkit-scrollbar {
    display: none;
}

.timeline-track-bg {
    position: absolute;
    top: 23px;
    left: 5%;
    width: 90%;
    height: 2px;
    background: #E2E8F0;
    z-index: 1;
    pointer-events: none;
}

.timeline-track-fill {
    position: absolute;
    top: 23px;
    left: 5%;
    width: 0%;
    height: 2px;
    background: #2563EB;
    z-index: 2;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
}

.timeline-nodes {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-width: 540px;
    /* allow narrower scroll without overflow */
    padding-bottom: 4px;
}

.industry-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
    outline: none;
    transition: transform 0.2s ease;
    min-height: 44px;
    min-width: 44px;
}

.industry-node:hover {
    transform: translateY(-2px);
}

.node-indicator {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #ffffff;
    border: 2.5px solid #CBD5E1;
    margin-bottom: 10px;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.industry-node:hover .node-indicator {
    border-color: #2563EB;
}

.industry-node.active .node-indicator {
    background: #2563EB;
    border-color: #2563EB;
    box-shadow: 0 0 0 5px rgba(37, 99, 235, 0.16);
    transform: scale(1.2);
}

.node-label {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.industry-node:hover .node-label {
    color: #0F172A;
}

.industry-node.active .node-label {
    color: #2563EB;
    font-weight: 700;
}

/* Editorial Content Area */
.industry-display-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: clamp(20px, 4vw, 48px);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: clamp(24px, 4vw, 48px);
    align-items: center;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    min-height: 320px;
}

.industry-details-col h3 {
    font-size: clamp(18px, 3vw, 26px);
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin-bottom: 14px;
}

.industry-details-col p {
    font-size: clamp(14px, 2vw, 15.5px);
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}

.capability-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.cap-tag {
    background: #ffffff;
    color: #334155;
    border: 1px solid #E2E8F0;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.cap-tag::before {
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #2563EB;
    flex-shrink: 0;
}

.industry-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #2563EB;
    transition: gap 0.2s ease, color 0.2s ease;
}

.industry-link:hover {
    gap: 12px;
    color: #1D4ED8;
}

/* Visual column: fluid height */
.industry-visual-col {
    display: flex;
    align-items: stretch;
    justify-content: center;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    min-height: 220px;
    max-height: 320px;
}

.industry-visual-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}

/* Responsive: stack on mobile */
@media (max-width: 960px) {
    .industry-display-box {
        grid-template-columns: 1fr;
        min-height: auto;
        gap: 24px;
    }

    .industry-visual-col {
        max-height: 240px;
        min-height: 180px;
    }
}

@media (max-width: 640px) {
    .industries-section {
        padding: 64px 0;
    }

    .timeline-nav-wrapper {
        margin: 24px 0 32px 0;
    }

    .industry-display-box {
        padding: 20px;
        border-radius: 16px;
        gap: 20px;
    }

    .industry-visual-col {
        max-height: 200px;
        min-height: 150px;
    }

    .cap-tag {
        font-size: 12px;
        padding: 5px 11px;
    }
}

.nav-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* ============================================================
   HERO & SECTION HEADERS
   ============================================================ */
.hero {
    padding: 160px 0 90px 0;
    background: radial-gradient(circle at top right, rgba(37, 99, 235, 0.05), transparent 50%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 56px;
    align-items: center;
}

.hero-content .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #EFF6FF;
    color: #2563EB;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 30px;
    border: 1px solid #DBEAFE;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: 46px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin-bottom: 20px;
}

.hero-content h1 .highlight {
    color: #2563EB;
}

.hero-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 620px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 40px;
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 13.5px;
    color: #64748B;
}

.hero-trust .avatars {
    display: flex;
}

.hero-trust .avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #2563EB;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    margin-left: -8px;
}

.hero-trust .avatars span:first-child {
    margin-left: 0;
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px auto;
}

.section-label {
    display: inline-block;
    font-size: 12.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #2563EB;
    background: #EFF6FF;
    padding: 4px 14px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.section-title {
    font-size: 34px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust {
    padding: 48px 0;
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.trust-label {
    text-align: center;
    font-size: 12.5px;
    font-weight: 600;
    color: #94A3B8;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 32px;
    align-items: center;
}

.logo-placeholder {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0.75;
    transition: opacity 0.2s;
}

.logo-placeholder:hover {
    opacity: 1;
}

/* ============================================================
   NEW SECTIONS STYLING (WHO WE ARE, EXPANDABLE CARDS, EXPERTISE, WHY US, PROCESS, ENGAGEMENT, FAQ)
   ============================================================ */
.who-we-are-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.who-we-are-content h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin: 12px 0 20px 0;
    line-height: 1.25;
}

.who-we-are-content p {
    color: #334155;
    font-size: 15.5px;
    line-height: 1.75;
    margin-bottom: 16px;
}

/* Expandable Services */
.expandable-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.service-card-expandable {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 36px 32px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.service-card-expandable:hover {
    border-color: #2563EB;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
}

.card-summary-header {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.card-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.icon-wrap {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-wrap svg {
    width: 22px;
    height: 22px;
}

.expand-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    color: #2563EB;
    background: #EFF6FF;
    padding: 5px 12px;
    border-radius: 20px;
}

.expand-icon {
    transition: transform 0.25s ease;
}

.card-short {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
}

.card-details {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.service-card-expandable.is-expanded .card-details {
    max-height: 500px;
    opacity: 1;
    margin-top: 20px;
    border-top: 1px solid #F1F5F9;
    padding-top: 20px;
}

.service-card-expandable.is-expanded .expand-icon {
    transform: rotate(180deg);
}

.details-heading {
    font-size: 13px;
    font-weight: 700;
    color: #0F172A;
    margin: 14px 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.details-list {
    list-style: none;
    margin-bottom: 16px;
}

.details-list li {
    font-size: 14px;
    color: #334155;
    margin-bottom: 6px;
}

.use-cases {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.case-tag {
    font-size: 11.5px;
    font-weight: 600;
    color: #475569;
    background: #F1F5F9;
    padding: 3px 10px;
    border-radius: 4px;
}

.learn-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13.5px;
    font-weight: 600;
    color: #2563EB;
}

/* ============================================================
   TECHNOLOGY ECOSYSTEM (Interactive Radial Network Split View)
   ============================================================ */
.expertise {
    padding: 112px 0;
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
}

.eco-split-grid {
    display: grid;
    grid-template-columns: 0.48fr 0.52fr;
    gap: 40px;
    align-items: center;
    margin-top: 32px;
}

.eco-diagram-col {
    position: relative;
    width: 100%;
}

.eco-network-wrapper {
    position: relative;
    width: 100%;
    height: 440px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-network-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.eco-line {
    stroke: #CBD5E1;
    stroke-width: 1.5;
    stroke-dasharray: 6 4;
    transition: stroke 0.3s ease, stroke-width 0.3s ease;
}

.eco-line.active {
    stroke: #2563EB;
    stroke-width: 2.5;
    stroke-dasharray: none;
}

.eco-mesh {
    fill: none;
    stroke: #E2E8F0;
    stroke-width: 1;
    stroke-dasharray: 4 4;
    opacity: 0.6;
}

/* Central Circular Hub */
.eco-hub {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 128px;
    height: 128px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eco-hub-ring {
    position: absolute;
    inset: -10px;
    border-radius: 50%;
    border: 1.5px dashed #CBD5E1;
    animation: ecoHubSpin 35s linear infinite;
    pointer-events: none;
}

@keyframes ecoHubSpin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.eco-hub-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #2563EB;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-hub-inner:hover {
    transform: scale(1.04);
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

.eco-hub-label {
    font-size: 12px;
    line-height: 1.35;
    color: #0F172A;
    font-weight: 500;
}

.eco-hub-label strong {
    font-size: 13.5px;
    color: #2563EB;
    font-weight: 700;
}

/* Radial Nodes Container & Nodes */
.eco-nodes-container {
    position: absolute;
    inset: 0;
    z-index: 4;
}

.eco-node {
    position: absolute;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.eco-node-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #CBD5E1;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.eco-node-icon svg {
    width: 20px !important;
    height: 20px !important;
    max-width: 20px !important;
    max-height: 20px !important;
    stroke-width: 2px;
    display: block;
}

.eco-node-label {
    font-size: 12px;
    font-weight: 600;
    color: #475569;
    white-space: nowrap;
    transition: color 0.3s ease, font-weight 0.3s ease, border-color 0.3s ease, background 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    padding: 3px 9px;
    border-radius: 12px;
    border: 1px solid #E2E8F0;
    box-shadow: 0 1px 4px rgba(15, 23, 42, 0.03);
}

.eco-node:hover .eco-node-icon {
    border-color: #2563EB;
    color: #2563EB;
    transform: scale(1.08);
}

.eco-node:hover .eco-node-label {
    color: #0F172A;
}

.eco-node.active .eco-node-icon {
    background: #2563EB;
    border-color: #2563EB;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    transform: scale(1.12);
}

.eco-node.active .eco-node-label {
    color: #2563EB;
    font-weight: 700;
    border-color: #DBEAFE;
    background: #EFF6FF;
}

/* Dimmed non-active nodes */
.eco-nodes-container.has-active .eco-node:not(.active) {
    opacity: 0.45;
}

.eco-nodes-container.has-active .eco-node:not(.active):hover {
    opacity: 0.9;
}

/* Dedicated Information Panel */
.eco-panel-col {
    position: relative;
    width: 100%;
}

.eco-info-panel {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 24px;
    padding: 40px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.eco-info-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.eco-info-content p {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 20px;
}

.eco-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

/* Tablet & Mobile Layout Stacking for Technology Ecosystem */
@media (max-width: 960px) {
    .eco-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .eco-network-wrapper {
        height: 380px;
        max-width: 480px;
        margin: 0 auto;
    }

    .eco-hub {
        width: 110px;
        height: 110px;
    }

    .eco-hub-label {
        font-size: 11px;
    }

    .eco-hub-label strong {
        font-size: 12px;
    }

    .eco-info-panel {
        min-height: auto;
        padding: 28px 24px;
    }
}

@media (max-width: 640px) {
    .eco-network-wrapper {
        height: 320px;
        max-width: 360px;
    }

    .eco-hub {
        width: 90px;
        height: 90px;
    }

    .eco-hub-label {
        font-size: 10px;
    }

    .eco-hub-label strong {
        font-size: 11px;
    }

    .eco-node-icon {
        width: 40px;
        height: 40px;
    }

    .eco-node-icon svg {
        width: 16px !important;
        height: 16px !important;
    }

    .eco-node-label {
        font-size: 10.5px;
        padding: 2px 7px;
    }

    .eco-info-panel {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .eco-info-content h3 {
        font-size: 20px;
    }

    .eco-info-content p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .eco-network-wrapper {
        height: 280px;
        max-width: 300px;
    }

    .eco-hub {
        width: 78px;
        height: 78px;
    }

    .eco-hub-label {
        font-size: 9px;
    }

    .eco-hub-label strong {
        font-size: 10.5px;
    }

    .eco-node-icon {
        width: 34px;
        height: 34px;
    }

    .eco-node-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .eco-node-label {
        font-size: 9.5px;
        padding: 2px 6px;
    }
}

/* ============================================================
   TRUST JOURNEY (Interactive Vertical Timeline)
   ============================================================ */
.why-us {
    padding: 112px 0;
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.trust-journey-grid {
    display: grid;
    grid-template-columns: 0.44fr 0.56fr;
    gap: 64px;
    align-items: flex-start;
}

.trust-intro-col {
    position: sticky;
    top: 120px;
}

.trust-intro-col h2 {
    font-size: 34px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    line-height: 1.25;
    margin: 14px 0 20px 0;
}

.trust-intro-col p {
    font-size: 16px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
}

/* Vertical Timeline */
.trust-timeline-col {
    position: relative;
}

.trust-timeline {
    position: relative;
    padding-left: 36px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

/* Vertical Track Line */
.trust-line-bg {
    position: absolute;
    top: 14px;
    bottom: 14px;
    left: 11px;
    width: 2px;
    background: #E2E8F0;
    z-index: 1;
}

.trust-line-fill {
    position: absolute;
    top: 14px;
    height: 0%;
    left: 11px;
    width: 2px;
    background: #2563EB;
    z-index: 2;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Milestone Item */
.trust-milestone {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Circular Node Indicator on Line */
.milestone-indicator {
    position: absolute;
    left: -36px;
    top: 4px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    z-index: 4;
}

.milestone-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #CBD5E1;
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.trust-milestone:hover .milestone-dot,
.trust-milestone.active .milestone-dot {
    background: #2563EB;
    border-color: #2563EB;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.15);
    transform: scale(1.15);
}

.milestone-content {
    padding-bottom: 16px;
    border-bottom: 1px dashed #F1F5F9;
    width: 100%;
}

.trust-milestone:last-child .milestone-content {
    border-bottom: none;
    padding-bottom: 0;
}

.milestone-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 6px;
}

.milestone-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #64748B;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.milestone-icon svg {
    width: 16px;
    height: 16px;
}

.trust-milestone:hover .milestone-icon,
.trust-milestone.active .milestone-icon {
    background: #EFF6FF;
    border-color: #DBEAFE;
    color: #2563EB;
    transform: scale(1.06);
}

.milestone-header h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.01em;
    transition: color 0.3s ease;
}

.trust-milestone:hover .milestone-header h4,
.trust-milestone.active .milestone-header h4 {
    color: #2563EB;
}

.milestone-content p {
    font-size: 14.5px;
    color: #64748B;
    line-height: 1.6;
    transition: color 0.3s ease;
}

.trust-milestone:hover .milestone-content p,
.trust-milestone.active .milestone-content p {
    color: #334155;
}

/* Dim inactive milestones when hovering timeline */
.trust-timeline:hover .trust-milestone:not(:hover) {
    opacity: 0.45;
}

@media (max-width: 960px) {
    .trust-journey-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .trust-intro-col {
        position: relative;
        top: auto;
    }
}

/* ============================================================
   DELIVERY METHODOLOGY (Interactive Roadmap Timeline)
   ============================================================ */
/* ============================================================
   DELIVERY METHODOLOGY (Interactive Roadmap Timeline)
   ============================================================ */
.process {
    padding: 64px 0 56px 0;
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.process .section-header {
    margin-bottom: 24px;
}

.process-roadmap-wrapper {
    position: relative;
    max-width: 960px;
    margin: 24px auto 28px auto;
    padding: 0 20px;
}

.process-track-bg {
    position: absolute;
    top: 22px;
    left: 40px;
    right: 40px;
    height: 2px;
    background: #E2E8F0;
    z-index: 1;
}

.process-track-fill {
    position: absolute;
    top: 22px;
    left: 40px;
    width: 0%;
    height: 2px;
    background: #2563EB;
    z-index: 2;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.process-milestones-track {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.proc-milestone {
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.proc-node-badge {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1.5px solid #CBD5E1;
    color: #475569;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

.proc-node-num {
    font-size: 9px;
    font-weight: 700;
    color: #94A3B8;
    line-height: 1;
    transition: color 0.3s ease;
}

.proc-node-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

.proc-node-icon svg {
    width: 16px !important;
    height: 16px !important;
    stroke-width: 2px;
}

.proc-node-label {
    font-size: 12.5px;
    font-weight: 600;
    color: #475569;
    transition: color 0.3s ease, font-weight 0.3s ease;
}

.proc-milestone:hover .proc-node-badge {
    border-color: #2563EB;
    color: #2563EB;
    transform: scale(1.08);
}

.proc-milestone:hover .proc-node-num {
    color: #2563EB;
}

.proc-milestone:hover .proc-node-label {
    color: #0F172A;
}

.proc-milestone.active .proc-node-badge {
    background: #2563EB;
    border-color: #2563EB;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
    transform: scale(1.12);
}

.proc-milestone.active .proc-node-num {
    color: rgba(255, 255, 255, 0.85);
}

.proc-milestone.active .proc-node-label {
    color: #2563EB;
    font-weight: 700;
}

.process-milestones-track:hover .proc-milestone:not(:hover) {
    opacity: 0.5;
}

/* Process Content Panel Below */
.process-content-panel {
    max-width: 860px;
    margin: 0 auto;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 26px 36px;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.proc-panel-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 12px;
    border-bottom: 1px solid #E2E8F0;
    padding-bottom: 12px;
}

.proc-stage-tag {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    color: #2563EB;
    background: #EFF6FF;
    padding: 3px 9px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 6px;
}

.proc-panel-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    letter-spacing: -0.02em;
}

.proc-duration-badge {
    text-align: right;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    padding: 6px 14px;
    border-radius: 10px;
}

.proc-duration-badge .dur-label {
    display: block;
    font-size: 10.5px;
    color: #64748B;
    font-weight: 500;
}

.proc-duration-badge strong {
    font-size: 12.5px;
    color: #2563EB;
    font-weight: 700;
}

.proc-stage-desc {
    font-size: 15px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 24px;
}

.proc-grid-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.proc-detail-box {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 20px;
}

.box-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #0F172A;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}

.box-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

/* ── Process Roadmap: Touch-scrollable wrapper ── */
@media (max-width: 960px) {
    .process-roadmap-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        padding-bottom: 16px;
    }

    .process-roadmap-wrapper::-webkit-scrollbar {
        display: none;
    }

    .process-milestones-track {
        min-width: 640px;
        /* 6 steps × ~107px each */
        justify-content: space-between;
    }

    .process-content-panel {
        padding: 22px 20px;
    }
}

@media (max-width: 768px) {
    .process-roadmap-wrapper {
        padding: 0 8px 16px 8px;
        margin-bottom: 20px;
    }

    .process-milestones-track {
        gap: 8px;
    }

    .process-track-bg,
    .process-track-fill {
        display: none;
        /* hide track line when horizontally scrolling */
    }

    .proc-milestone {
        gap: 6px;
    }

    .proc-node-badge {
        width: 38px;
        height: 38px;
    }

    .proc-node-label {
        font-size: 11px;
        white-space: nowrap;
    }

    .proc-panel-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .proc-duration-badge {
        text-align: left;
    }

    .proc-grid-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-content-panel {
        padding: 18px 16px;
        border-radius: 16px;
    }

    .proc-panel-header h3 {
        font-size: 18px;
    }

    .proc-stage-desc {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .proc-node-badge {
        width: 34px;
        height: 34px;
    }

    .proc-node-num {
        font-size: 8px;
    }

    .proc-node-icon svg {
        width: 13px !important;
        height: 13px !important;
    }

    .proc-node-label {
        font-size: 10px;
    }

    .process-content-panel {
        padding: 16px 14px;
    }
}

/* ============================================================
   ENGAGEMENT MODELS (3-Column Comparison Grid)
   ============================================================ */
.engagement {
    padding: 112px 0;
    background: #ffffff;
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-top: 48px;
}

.engagement-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 36px 28px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.engagement-card.featured {
    border: 1.5px solid #2563EB;
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.1);
    transform: scale(1.02);
}

.popular-badge {
    position: absolute;
    top: -12px;
    right: 24px;
    background: #2563EB;
    color: #ffffff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 3px 12px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.25);
}

.engagement-card:hover {
    border-color: #2563EB;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.engagement-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.card-header {
    margin-bottom: 20px;
}

.model-badge {
    font-size: 11px;
    font-weight: 700;
    color: #475569;
    background: #F1F5F9;
    padding: 4px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 12px;
}

.featured-badge {
    color: #2563EB;
    background: #EFF6FF;
}

.card-header h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 6px;
    letter-spacing: -0.01em;
}

.model-desc {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
}

.card-divider {
    height: 1px;
    background: #F1F5F9;
    margin-bottom: 24px;
}

.card-body {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefits-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: #334155;
    line-height: 1.45;
}

.benefits-list li svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

.best-for-chip {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 10px;
    padding: 10px 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 28px;
}

.chip-label {
    font-size: 10.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #2563EB;
    background: #EFF6FF;
    padding: 2px 8px;
    border-radius: 4px;
    flex-shrink: 0;
}

.chip-text {
    font-size: 13px;
    color: #475569;
    font-weight: 500;
}

.card-footer {
    margin-top: auto;
}

.btn.full-width {
    width: 100%;
    text-align: center;
    justify-content: center;
}

@media (max-width: 960px) {
    .engagement-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .engagement-card.featured {
        transform: none;
    }

    .engagement-card.featured:hover {
        transform: translateY(-4px);
    }
}

/* Statistics Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.stat-item {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.stat-item .stat-number {
    font-size: 40px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-item .stat-number .accent {
    color: #2563EB;
}

.stat-item .stat-label {
    font-size: 13.5px;
    color: #64748B;
    font-weight: 500;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card .quote {
    font-size: 14.5px;
    color: #334155;
    line-height: 1.75;
    margin-bottom: 24px;
}

.testimonial-card .author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-card .avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2563EB;
    color: #ffffff;
    font-weight: 700;
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-card .name {
    font-size: 14px;
    font-weight: 700;
    color: #0F172A;
}

.testimonial-card .company {
    font-size: 12px;
    color: #64748B;
}

/* FAQ Accordion */
.faq-container {
    max-width: 840px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.faq-item.is-open {
    border-color: #2563EB;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 24px 28px;
    font-family: inherit;
    font-size: 16px;
    font-weight: 600;
    color: #0F172A;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    gap: 16px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease, padding 0.3s ease;
    padding: 0 28px;
    color: #475569;
    font-size: 14.5px;
    line-height: 1.7;
}

.faq-item.is-open .faq-answer {
    max-height: 300px;
    opacity: 1;
    padding: 0 28px 24px 28px;
}

.faq-icon {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.faq-item.is-open .faq-icon {
    transform: rotate(180deg);
    color: #2563EB;
}

/* CTA */
.cta {
    background: #ffffff;
    border-top: 1px solid #E2E8F0;
}

.cta-inner {
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 64px 40px;
}

.cta-inner h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    margin-bottom: 16px;
    line-height: 1.25;
}

.cta-inner p {
    font-size: 16px;
    color: #475569;
    margin-bottom: 32px;
    line-height: 1.65;
}

/* ============================================================
   BLOG POSTS SECTION (Homepage Preview Grid)
   ============================================================ */
.blog-posts {
    padding: clamp(64px, 8vw, 112px) 0;
    background: #F8FAFC;
    border-top: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
}

.blog-posts .section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px auto;
}

.blog-posts .section-header .section-title {
    font-size: clamp(26px, 3.5vw, 38px);
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.022em;
    line-height: 1.2;
    margin-bottom: 14px;
}

.blog-posts .section-header .section-title .highlight {
    color: #2563EB;
}

.blog-posts .section-header .section-subtitle {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.68;
    max-width: 580px;
    margin: 0 auto;
}

/* Grid Layout */
.blog-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    align-items: stretch;
    margin-bottom: 56px;
}

/* Individual Blog Card */
.blog-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        box-shadow 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        border-color 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(15, 23, 42, 0.10);
    border-color: #BFDBFE;
}

/* Featured Image Area */
.blog-card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 14px 14px 0 0;
    flex-shrink: 0;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

/* Card Body */
.blog-card-body {
    padding: 22px 24px 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* Category Badges (Pill style as in reference design) */
.blog-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 14px;
}

.blog-cat-badge {
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 600;
    color: #1E40AF;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    padding: 4px 12px;
    border-radius: 100px;
}

.blog-cat-badge.secondary {
    color: #475569;
    background: #F1F5F9;
    border-color: #E2E8F0;
}

/* Blog Title */
.blog-card-title {
    font-size: 18px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.35;
    letter-spacing: -0.015em;
    margin-bottom: 10px;
    transition: color 0.25s ease;
}

.blog-card:hover .blog-card-title {
    color: #2563EB;
}

/* Excerpt */
.blog-card-excerpt {
    font-size: 14px;
    color: #64748B;
    line-height: 1.65;
    margin-bottom: 22px;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read More / Read Now Link */
.blog-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #2563EB;
    text-decoration: none;
    transition: gap 0.25s ease, color 0.2s ease;
    margin-top: auto;
}

.blog-read-more svg {
    width: 16px;
    height: 16px;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.blog-card:hover .blog-read-more {
    gap: 8px;
    color: #1D4ED8;
}

.blog-card:hover .blog-read-more svg {
    transform: translateX(4px);
}

/* View All Button Container */
.blog-posts-cta {
    text-align: center;
}

/* Responsive: Tablet — 2 columns */
@media (max-width: 1024px) {
    .blog-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

/* Responsive: Mobile — 1 column */
@media (max-width: 640px) {
    .blog-posts {
        padding: 56px 0;
    }

    .blog-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 40px;
    }

    .blog-posts .section-header {
        margin-bottom: 40px;
    }

    .blog-card-body {
        padding: 18px 20px 20px;
    }

    .blog-card-title {
        font-size: 16px;
    }
}

/* Footer */
.footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 80px 0 40px 0;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 64px;
}

.footer-brand .logo {
    color: #ffffff;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-logo-img {
    height: 54px;
    width: auto;
    max-height: 60px;
    object-fit: contain;
    display: block;
    image-rendering: -webkit-optimize-contrast;
}

.footer-brand p {
    color: #94A3B8;
    font-size: 13.5px;
    line-height: 1.6;
    max-width: 280px;
}

.footer-col h5 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul a {
    color: #94A3B8;
    transition: color 0.2s;
}

.footer-col ul a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #1E293B;
    padding-top: 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
}

.legal {
    display: flex;
    gap: 20px;
}

.legal a {
    color: #94A3B8;
}

.legal a:hover {
    color: #ffffff;
}

/* Responsive Breakpoints */

@media (max-width: 1024px) {

    .hero-grid,
    .who-we-are-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .engagement-grid,
    .testimonials-grid,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    .engagement-card.featured {
        transform: none;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
}

@media (max-width: 960px) {
    .eco-split-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .eco-network-wrapper {
        height: 360px;
    }

    .eco-info-panel {
        min-height: auto;
        padding: 28px 20px;
    }

    .process-roadmap-wrapper {
        overflow-x: auto;
        padding-bottom: 8px;
        scrollbar-width: none;
    }

    .process-roadmap-wrapper::-webkit-scrollbar {
        display: none;
    }

    .process-milestones-track {
        min-width: 620px;
        justify-content: space-between;
    }

    .process-content-panel {
        padding: 22px 20px;
    }

    .trust-journey-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .trust-intro-col {
        position: static;
    }
}

@media (max-width: 768px) {

    .expandable-grid,
    .engagement-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .proc-panel-header {
        flex-direction: column;
        gap: 10px;
        align-items: flex-start;
    }

    .proc-duration-badge {
        text-align: left;
    }

    .proc-grid-details {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
    }
}

@media (max-width: 640px) {
    .faq-question {
        padding: 18px 20px;
        font-size: 15px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .faq-item.is-open .faq-answer {
        padding: 0 20px 20px 20px;
    }
}

@media (max-width: 480px) {
    .who-we-are-visual img {
        height: 220px !important;
    }

    .who-we-are-content .btn {
        width: 100%;
        justify-content: center;
    }

    .service-card-expandable {
        padding: 24px 18px;
    }

    .eco-network-wrapper {
        height: 300px;
    }

    .eco-hub {
        width: 104px;
        height: 104px;
    }

    .eco-node-icon {
        width: 40px;
        height: 40px;
    }

    .eco-node-label {
        font-size: 11px;
        padding: 2px 7px;
    }

    .engagement-card {
        padding: 24px 18px;
    }

    .best-for-chip {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-item {
        padding: 18px 12px;
    }

    .stat-item .stat-number {
        font-size: clamp(24px, 6vw, 32px);
    }

    .testimonial-card {
        padding: 20px 16px;
    }

    .faq-question {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-item.is-open .faq-answer {
        padding: 0 16px 16px 16px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .eco-network-wrapper {
        height: 270px;
    }
}

/* Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: #2563EB;
    z-index: 10000;
    pointer-events: none;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    #scroll-progress {
        display: none !important;
    }
}

/* ============================================================
   SUBPAGE BANNER & PLACEHOLDER CONTENT
   ============================================================ */
.page-banner {
    padding: 88px 0 104px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
    text-align: center;
    min-height: calc(100vh - 76px - 320px);
    display: flex;
    align-items: center;
}

.page-banner-content {
    max-width: 720px;
    margin: 0 auto;
}

.page-banner-tag {
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2563EB;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    padding: 4px 14px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.page-banner h1 {
    font-size: 44px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.025em;
    margin-bottom: 14px;
}

.page-banner p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 36px;
}

.placeholder-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 40px 36px;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 560px;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.03);
}

.placeholder-card svg {
    width: 32px;
    height: 32px;
    color: #2563EB;
}

.placeholder-card strong {
    font-size: 17px;
    color: #0F172A;
    font-weight: 700;
}

.placeholder-card span {
    font-size: 14px;
    color: #64748B;
    line-height: 1.5;
}

/* ============================================================
   ABOUT US PAGE STYLES
   ============================================================ */

/* 1. About Hero Section */
.about-hero {
    padding: 64px 0 80px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.about-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.about-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin: 14px 0 18px 0;
}

.about-hero-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 580px;
}

.about-hero-visual {
    position: relative;
}

.about-hero-img-box {
    width: 100%;
    max-height: 440px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.about-hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Floating Trust Badge on Hero Visual */
.about-hero-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.about-hero-badge .badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-badge .badge-text strong {
    display: block;
    font-size: 15px;
    color: #0F172A;
    font-weight: 800;
    line-height: 1.2;
}

.about-hero-badge .badge-text span {
    font-size: 12px;
    color: #64748B;
}

/* 2. Company Overview Section */
.company-overview {
    padding: 104px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 56px;
    align-items: flex-start;
}

.overview-left h2 {
    font-size: 32px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin: 12px 0 20px 0;
    line-height: 1.25;
}

.overview-left p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 18px;
}

.overview-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.overview-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.overview-card:hover {
    border-color: #2563EB;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.06);
}

.overview-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.overview-card-content h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 4px;
}

.overview-card-content p {
    font-size: 13.5px;
    color: #64748B;
    margin: 0;
    line-height: 1.5;
}

/* 3. Our Story Timeline Section */
.our-story {
    padding: 104px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.story-intro {
    max-width: 720px;
    margin: 0 auto 56px auto;
    text-align: center;
}

.story-timeline {
    position: relative;
    max-width: 840px;
    margin: 0 auto;
    padding-left: 60px;
}

.story-line-track {
    position: absolute;
    top: 24px;
    bottom: 24px;
    left: 21px;
    width: 2px;
    background: #E2E8F0;
}

.story-line-fill {
    position: absolute;
    top: 24px;
    left: 21px;
    width: 2px;
    height: 0%;
    background: #2563EB;
    transition: height 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.story-item {
    position: relative;
    margin-bottom: 40px;
}

.story-item:last-child {
    margin-bottom: 0;
}

.story-badge {
    position: absolute;
    left: -60px;
    top: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 2px solid #CBD5E1;
    color: #2563EB;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.story-item:hover .story-badge,
.story-item.active .story-badge {
    background: #2563EB;
    border-color: #2563EB;
    color: #ffffff;
    box-shadow: 0 4px 14px rgba(37, 99, 235, 0.3);
}

.story-content-box {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 24px 28px;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.story-item:hover .story-content-box {
    border-color: #2563EB;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.story-content-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 6px;
}

.story-content-box p {
    font-size: 14.5px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* 4. Mission & Vision Section */
.mission-vision {
    padding: 104px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.mv-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.mv-card:hover {
    border-color: #2563EB;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.mv-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.mv-icon-badge {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mv-card-header h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.01em;
}

.mv-quote {
    font-size: 15.5px;
    color: #334155;
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
}

/* 5. Core Values Section */
.core-values {
    padding: 104px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-top: 48px;
}

.value-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 20px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    border-color: #2563EB;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.value-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    background: #2563EB;
    color: #ffffff;
}

.value-card h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.5;
    margin: 0;
}

/* 6. Looking Ahead Section */
.looking-ahead {
    padding: 104px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.ahead-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.ahead-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.ahead-card:hover {
    border-color: #2563EB;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.ahead-tag {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2563EB;
    background: #EFF6FF;
    padding: 3px 10px;
    border-radius: 6px;
    display: inline-block;
    margin-bottom: 14px;
}

.ahead-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.ahead-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* 7. Final CTA Section */
.about-cta {
    padding: 104px 0;
    background: #ffffff;
    text-align: center;
}

.about-cta-inner {
    max-width: 720px;
    margin: 0 auto;
}

.about-cta-inner h2 {
    font-size: 36px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin: 14px 0 16px 0;
}

.about-cta-inner p {
    font-size: 16px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 32px;
}

/* Responsive Media Queries for About Us Page */
@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 960px) {

    .about-hero-grid,
    .overview-grid,
    .mv-grid,
    .ahead-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .about-hero-content h1 {
        font-size: 34px;
    }
}

/* ============================================================
   NEW SPACIOUS CORE VALUES ROW (5-Column Minimal Grid)
   ============================================================ */
.values-row-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    margin-top: 56px;
    position: relative;
}

.value-item {
    position: relative;
    padding: 32px 20px;
    background: #ffffff;
    border-radius: 12px;
    border-right: 1px solid #F1F5F9;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.value-item:last-child {
    border-right: none;
}

.value-item-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
}

.value-num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: #2563EB;
    background: #EFF6FF;
    padding: 4px 10px;
    border-radius: 20px;
    border: 1px solid #DBEAFE;
}

.value-icon-box {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: #F8FAFC;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.value-icon-box svg {
    width: 20px;
    height: 20px;
}

.value-item h3 {
    font-size: 20px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.01em;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.value-item p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
    flex-grow: 1;
}

/* Subtle Animated Bottom Accent Underline */
.value-accent-line {
    width: 0%;
    height: 2px;
    background: #2563EB;
    margin-top: 24px;
    border-radius: 2px;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Hover Interactions */
.value-item:hover {
    transform: translateY(-4px);
}

.value-item:hover .value-icon-box {
    background: #2563EB;
    color: #ffffff;
    transform: translateY(-2px);
}

.value-item:hover h3 {
    color: #2563EB;
}

.value-item:hover .value-accent-line {
    width: 100%;
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
    .values-row-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .value-item {
        border-right: none;
        border: 1px solid #F1F5F9;
    }
}

@media (max-width: 640px) {
    .values-row-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .value-item {
        border: 1px solid #E2E8F0;
        padding: 24px 20px;
    }
}

/* ============================================================
   SERVICES PAGE STYLES
   ============================================================ */

/* 1. Services Hero Section */
.services-hero {
    padding: 64px 0 80px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.services-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.services-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin: 14px 0 18px 0;
}

.services-hero-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 580px;
}

.services-hero-visual {
    position: relative;
}

.services-hero-img-box {
    width: 100%;
    max-height: 440px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.services-hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.services-hero-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.services-hero-badge .badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-badge .badge-text strong {
    display: block;
    font-size: 15px;
    color: #0F172A;
    font-weight: 800;
    line-height: 1.2;
}

.services-hero-badge .badge-text span {
    font-size: 12px;
    color: #64748B;
}

/* 2. Services Overview Section (Pillar Blocks) */
.services-overview {
    padding: 104px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.serv-pillars-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    margin-top: 48px;
}

.serv-pillar-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 20px;
    padding: 40px 36px;
    box-shadow: 0 4px 16px rgba(15, 23, 42, 0.03);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.serv-pillar-card:hover {
    border-color: #2563EB;
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.pillar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.pillar-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #2563EB;
    background: #EFF6FF;
    padding: 4px 10px;
    border-radius: 6px;
    border: 1px solid #DBEAFE;
}

.pillar-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serv-pillar-card h3 {
    font-size: 26px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.02em;
    margin-bottom: 12px;
}

.serv-pillar-card p {
    font-size: 15.5px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
    flex-grow: 1;
}

.pillar-tags-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #94A3B8;
    margin-bottom: 10px;
    display: block;
}

.pillar-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.pillar-chip {
    font-size: 12.5px;
    font-weight: 600;
    color: #334155;
    background: #F1F5F9;
    border: 1px solid #E2E8F0;
    padding: 5px 12px;
    border-radius: 20px;
    transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.serv-pillar-card:hover .pillar-chip {
    background: #EFF6FF;
    color: #2563EB;
    border-color: #DBEAFE;
}

/* 3. Staff Augmentation Deep Dive Section */
.augmentation-deepdive {
    padding: 104px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.aug-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.aug-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.aug-card:hover {
    border-color: #2563EB;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.aug-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.aug-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.aug-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* 4. Benefits & Business Outcomes Section */
.business-outcomes {
    padding: 104px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.outcome-metric-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 28px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.outcome-metric-card:hover {
    border-color: #2563EB;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.outcome-number {
    font-size: 32px;
    font-weight: 800;
    color: #2563EB;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    display: block;
}

.outcome-metric-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.outcome-metric-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* 5. Industries & Technologies Section */
.ind-tech-section {
    padding: 104px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.ind-tech-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    margin-top: 48px;
}

.ind-box h3,
.tech-box h3 {
    font-size: 24px;
    font-weight: 800;
    color: #0F172A;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.ind-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.ind-tag {
    font-size: 13.5px;
    font-weight: 600;
    color: #0F172A;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    padding: 10px 18px;
    border-radius: 10px;
    transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.ind-tag:hover {
    background: #EFF6FF;
    border-color: #2563EB;
    color: #2563EB;
    transform: translateY(-2px);
}

.tech-categories-stack {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-cat-row {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 12px;
    padding: 16px 20px;
}

.tech-cat-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 10px;
    display: block;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tech-pill {
    font-size: 13px;
    font-weight: 600;
    color: #334155;
    background: #ffffff;
    border: 1px solid #CBD5E1;
    padding: 4px 12px;
    border-radius: 6px;
}

/* 6. Engagement Models Section */
.serv-engagement {
    padding: 104px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.serv-engagement-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.serv-eng-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 32px 24px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.serv-eng-card:hover {
    border-color: #2563EB;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.serv-eng-badge {
    font-size: 10.5px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2563EB;
    background: #EFF6FF;
    padding: 3px 8px;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 14px;
}

.serv-eng-card h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 8px;
}

.serv-eng-card p {
    font-size: 13.5px;
    color: #64748B;
    line-height: 1.55;
    margin: 0;
}

/* 7. Delivery Methodology Section */
.serv-delivery {
    padding: 104px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.serv-steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.serv-step-card {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 24px 20px;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.serv-step-card:hover {
    border-color: #2563EB;
    transform: translateY(-3px);
}

.step-num-badge {
    font-size: 12px;
    font-weight: 800;
    color: #2563EB;
    background: #EFF6FF;
    border: 1px solid #DBEAFE;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.serv-step-card h4 {
    font-size: 16px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

/* Responsive Media Queries for Services Page */
@media (max-width: 1024px) {

    .aug-grid,
    .serv-engagement-grid,
    .serv-steps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .outcomes-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ind-tech-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 960px) {

    .services-hero-grid,
    .serv-pillars-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .services-hero-content h1 {
        font-size: 34px;
    }
}

@media (max-width: 640px) {

    .aug-grid,
    .outcomes-grid,
    .serv-engagement-grid,
    .serv-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   CAREERS PAGE STYLES
   ============================================================ */

/* 1. Careers Hero Section */
.careers-hero {
    padding: 64px 0 80px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.careers-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 56px;
    align-items: center;
}

.careers-hero-content h1 {
    font-size: 42px;
    font-weight: 800;
    color: #0F172A;
    line-height: 1.18;
    letter-spacing: -0.025em;
    margin: 14px 0 18px 0;
}

.careers-hero-content p {
    font-size: 16px;
    color: #475569;
    line-height: 1.65;
    margin-bottom: 28px;
    max-width: 580px;
}

.careers-hero-visual {
    position: relative;
}

.careers-hero-img-box {
    width: 100%;
    max-height: 440px;
    aspect-ratio: 4 / 3;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #E2E8F0;
    box-shadow: 0 12px 32px rgba(15, 23, 42, 0.08);
}

.careers-hero-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.careers-hero-badge {
    position: absolute;
    bottom: -16px;
    left: -16px;
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 14px;
    padding: 14px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.careers-hero-badge .badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
}

.careers-hero-badge .badge-text strong {
    display: block;
    font-size: 15px;
    color: #0F172A;
    font-weight: 800;
    line-height: 1.2;
}

.careers-hero-badge .badge-text span {
    font-size: 12px;
    color: #64748B;
}

/* 2. Why Join APT Section */
.why-join-section {
    padding: 104px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

.why-join-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 48px;
}

.why-card {
    background: #ffffff;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    padding: 36px 28px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.03);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.why-card:hover {
    border-color: #2563EB;
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
}

.why-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
}

.why-card p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
}


/* 3. Our Commitment — Ghost Number Feature Grid */
.employee-promise {
    padding: 112px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

/*
  6-column CSS grid trick for 3+2 layout:
  Row 1: items 1–3 each span 2 cols  → positions 1-2, 3-4, 5-6
  Row 2: item 4 starts at col 2      → positions 2-3
          item 5 starts at col 4      → positions 4-5
  Result: row 2 is visually centered.
*/
.promise-feature-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    row-gap: 0;
    column-gap: 0;
    margin-top: 64px;
    border-top: 1px solid #E2E8F0;
    border-left: 1px solid #E2E8F0;
}

.pf-item {
    grid-column: span 2;
    position: relative;
    padding: 44px 36px 40px;
    border-right: 1px solid #E2E8F0;
    border-bottom: 1px solid #E2E8F0;
    background: #ffffff;
    overflow: hidden;
    transition: background 0.3s ease;
    cursor: default;
}

.pf-item--row2:nth-child(4) {
    grid-column: 2 / span 2;
}

.pf-item--row2:nth-child(5) {
    grid-column: 4 / span 2;
}

/* Hover state: very subtle blue tint wash */
.pf-item:hover {
    background: #F0F6FF;
}

/* Giant ghost watermark number — sits behind content */
.pf-ghost {
    position: absolute;
    top: -12px;
    right: 20px;
    font-size: 88px;
    font-weight: 900;
    letter-spacing: -0.04em;
    color: #E2E8F0;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    font-variant-numeric: tabular-nums;
    transition: color 0.35s ease;
}

.pf-item:hover .pf-ghost {
    color: #DBEAFE;
}

/* Short top accent bar — expands on hover */
.pf-accent-bar {
    width: 32px;
    height: 3px;
    background: #2563EB;
    border-radius: 2px;
    margin-bottom: 20px;
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.pf-item:hover .pf-accent-bar {
    width: 56px;
}

.pf-item h4 {
    font-size: 19px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 10px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    transition: color 0.25s ease;
}

.pf-item:hover h4 {
    color: #1D4ED8;
}

.pf-item p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.65;
    margin: 0;
    position: relative;
    z-index: 1;
    transition: color 0.25s ease;
}

.pf-item:hover p {
    color: #334155;
}


/* 4. Hiring Process — Editorial Row Layout */
.careers-hiring-process {
    padding: 112px 0;
    background: #F8FAFC;
    border-bottom: 1px solid #E2E8F0;
}

/* Two-column wrapper: sticky left header + scrollable right list */
.journey-editorial-wrapper {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 80px;
    align-items: start;
}

.journey-editorial-header {
    position: sticky;
    top: 100px;
}

.journey-editorial-header .section-label {
    margin-bottom: 16px;
    display: inline-block;
}

.journey-editorial-header .section-title {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.22;
    text-align: left;
    margin-bottom: 0;
}

/* Right column: numbered rows */
.journey-editorial-list {
    display: flex;
    flex-direction: column;
}

/* Each row */
.jer-row {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 24px;
    align-items: start;
    padding: 28px 0;
    border-top: 1px solid #E2E8F0;
    position: relative;
    overflow: hidden;
    cursor: default;
    transition: padding-left 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.jer-row:last-child {
    border-bottom: 1px solid #E2E8F0;
}

/* Animated left-accent bar */
.jer-row::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: #2563EB;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.jer-row:hover::before {
    transform: scaleY(1);
}

.jer-row:hover {
    padding-left: 16px;
}

/* Large display number */
.jer-num {
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: #CBD5E1;
    line-height: 1;
    padding-top: 5px;
    transition: color 0.3s ease;
    font-variant-numeric: tabular-nums;
}

.jer-row:hover .jer-num {
    color: #2563EB;
}

/* Title + description */
.jer-body h4 {
    font-size: 17px;
    font-weight: 700;
    color: #0F172A;
    margin-bottom: 6px;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.jer-row:hover .jer-body h4 {
    color: #2563EB;
}

.jer-body p {
    font-size: 14px;
    color: #64748B;
    line-height: 1.6;
    margin: 0;
    transition: color 0.25s ease;
}

.jer-row:hover .jer-body p {
    color: #334155;
}


/* 5. Technology Expertise Section (Accordion List) */
.tech-expertise-section {
    padding: 104px 0;
    background: #ffffff;
    border-bottom: 1px solid #E2E8F0;
}

.tech-accordion-container {
    max-width: 900px;
    margin: 48px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tech-acc-item {
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    border-radius: 16px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.tech-acc-item.is-open {
    border-color: #2563EB;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.04);
}

.tech-acc-header {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    text-align: left;
}

.tech-acc-title-group {
    display: flex;
    align-items: center;
    gap: 14px;
}

.tech-acc-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #EFF6FF;
    color: #2563EB;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.tech-acc-header h4 {
    font-size: 18px;
    font-weight: 700;
    color: #0F172A;
    margin: 0;
}

.tech-acc-arrow {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #CBD5E1;
    color: #475569;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}

.tech-acc-item.is-open .tech-acc-arrow {
    transform: rotate(180deg);
    background: #2563EB;
    color: #ffffff;
    border-color: #2563EB;
}

.tech-acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
}

.tech-acc-item.is-open .tech-acc-body {
    max-height: 360px;
    padding: 0 24px 24px 24px;
}

.tech-acc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    border-top: 1px solid #E2E8F0;
    padding-top: 20px;
}

.tech-acc-box h5 {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2563EB;
    margin-bottom: 6px;
}

.tech-acc-box p {
    font-size: 14px;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Responsive Media Queries for Careers Page */
@media (max-width: 1024px) {
    .why-join-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* On tablet: collapse 6-col to simple 2-col */
    .promise-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .pf-item,
    .pf-item--row2:nth-child(4),
    .pf-item--row2:nth-child(5) {
        grid-column: span 1;
    }

    .journey-editorial-wrapper {
        grid-template-columns: 260px 1fr;
        gap: 48px;
    }
}

@media (max-width: 960px) {
    .careers-hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .careers-hero-content h1 {
        font-size: 34px;
    }

    .tech-acc-grid {
        grid-template-columns: 1fr;
    }

    .journey-editorial-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .journey-editorial-header {
        position: static;
    }

    .journey-editorial-header .section-title {
        max-width: 100% !important;
    }
}

@media (max-width: 640px) {
    .why-join-grid {
        grid-template-columns: 1fr;
    }

    /* Stack to single column on mobile */
    .promise-feature-grid {
        grid-template-columns: 1fr;
        border-left: none;
    }

    .pf-item,
    .pf-item--row2:nth-child(4),
    .pf-item--row2:nth-child(5) {
        grid-column: span 1;
        border-right: none;
    }

    .pf-ghost {
        font-size: 64px;
        top: -8px;
        right: 16px;
    }

    .jer-row {
        grid-template-columns: 48px 1fr;
        gap: 16px;
        padding: 20px 0;
    }
}