/* ========== Inner page hero ========== */
.page-hero {
    padding: 100px 0 48px;
    position: relative;
    z-index: 2;
}
.page-hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}
.page-hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ========== Industry grid (services) ========== */
.industry-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    height: 100%;
}
.industry-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
}
.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 0 4px 4px 0;
    transition: height var(--transition);
}
.industry-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.industry-card:hover::before { height: 100%; }
.industry-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-dim);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.industry-card:hover .industry-card-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}
.industry-card h4 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    flex-grow: 1;
}
.industry-card-arrow {
    color: var(--text-muted);
    font-size: 0.9rem;
    transition: var(--transition);
}
.industry-card:hover .industry-card-arrow {
    color: var(--primary);
    transform: translateX(4px);
}

/* ========== Platform capabilities ========== */
.section-desc {
    max-width: 560px;
    color: var(--text-muted);
    font-size: 16px;
}
.capability-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.75rem;
    height: 100%;
    transition: var(--transition);
}
.capability-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.capability-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--primary-dim);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}
.capability-card h4 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.capability-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

/* ========== Technology section ========== */
.tech-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.tech-feature-list li {
    padding: 0.5rem 0;
    padding-left: 0;
    color: var(--text-muted);
}
.tech-stat-inline {
    display: inline-flex;
    align-items: baseline;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: var(--primary-dim);
    border-radius: var(--radius);
}
.tech-stat-num {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--primary);
}
.tech-stat-label {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.tech-cards-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.tech-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: var(--transition);
}
.tech-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.tech-card i {
    font-size: 1.5rem;
    color: var(--primary);
    flex-shrink: 0;
    margin-top: 0.15rem;
}
.tech-card h5 {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 0.35rem;
}
.tech-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
}

/* ========== CTA section ========== */
.cta-section .cta-box-v {
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
}
.cta-section .section-title { margin-bottom: 0; }

/* Ready to Transform CTA */
.transform-cta-section {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
}
.transform-cta-box {
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
}
.transform-cta-box h2 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    color: var(--text);
    margin-bottom: 0.75rem;
}
.transform-cta-box .transform-cta-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 2rem;
}
.transform-cta-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}
.transform-cta-btns .btn-hero { display: inline-flex; }

/* ========== Solution page with sidebar ========== */
.solution-page-wrap {
    padding-top: 88px;
    padding-bottom: 2rem;
    position: relative;
    z-index: 2;
    min-height: 0;
}
.solution-page-wrap .row {
    display: flex;
    flex-wrap: wrap;
}
.solution-page-wrap .solution-main {
    display: block !important;
    visibility: visible !important;
    min-height: 1px;
}
.solution-page-wrap .solution-hero-img,
.solution-page-wrap .solution-hero {
    display: block !important;
    visibility: visible !important;
}
.solution-sidebar {
    position: sticky;
    top: 100px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}
.solution-sidebar-title {
    font-size:1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-black);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.solution-sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
.solution-sidebar-nav a {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.6rem 0.75rem;
    margin-bottom: 0.25rem;
    border-radius: 10px;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: var(--transition);
}
.solution-sidebar-nav a:hover {
    background: var(--bg-muted);
    color: var(--primary);
}
.solution-sidebar-nav a.solution-nav-active {
    background: var(--primary-dim);
    color: var(--primary);
    font-weight: 600;
}
.solution-sidebar-nav a i {
    font-size: 0.85rem;
    width: 1.25em;
    text-align: center;
    opacity: 0.8;
}
.solution-sidebar-divider {
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}
.solution-sidebar .sidebar-link-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-top: 0.5rem;
    transition: var(--transition);
}
.solution-sidebar .sidebar-link-all:hover { color: var(--accent); }
@media (max-width: 991.98px) {
    .solution-sidebar {
        display: none;
    }
}

.solution-hero-img {
    margin-bottom: 1.5rem;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--bg-muted);
}
.solution-hero-img img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

/* ========== Solution page hero (with sidebar layout) ========== */
.solution-hero {
    padding: 1.5rem 0 2rem;
    position: relative;
    z-index: 2;
}
.solution-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    border: 1px solid var(--border);
}
.solution-hero h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.15;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}
.solution-hero .lead {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.65;
    max-width: 720px;
}

/* ========== Technology page – tab panels (show one at a time) ========== */
.tech-tab-panel { display: none; }
.tech-tab-panel.active { display: block; }
.tech-tab-panel .tech-panel-img {
    margin-bottom: 1.5rem;
}

/* ========== Solution content blocks ========== */
.solution-main .solution-block {
    padding: 0rem 0;
    border-bottom: 1px solid var(--border);
}
.solution-main .solution-block:last-of-type { border-bottom: none; }
.solution-block h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.solution-block h3::before {
    content: '';
    width: 4px;
    height: 1.2em;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
}
.solution-block p, .solution-block ul {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.7;
}
.solution-block ul {
    padding-left: 1.25rem;
}
.solution-block ul li { margin-bottom: 0.5rem; }
.solution-highlight {
    background: linear-gradient(135deg, var(--bg-muted) 0%, var(--bg-card) 100%);
    border-radius: var(--radius);
    padding: 1.5rem 1.75rem;
    margin: 1.5rem 0;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
}
.solution-suite {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}
.solution-suite-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    transition: var(--transition);
}
.solution-suite-item:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.solution-suite-item i {
    color: var(--primary);
    margin-top: 0.2rem;
}
.solution-suite-item strong { display: block; margin-bottom: 0.25rem; }
.solution-suite-item span { font-size: 16px; color: var(--text-muted); }

/* ========== About page ========== */
.about-story-section {
    padding: 3rem 0;
}
.about-story-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
}
.about-story-section p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.case-study-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
}
.case-study-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
.case-study-card .snapshot {
    display: inline-block;
    background: var(--primary-dim);
    color: var(--primary);
    padding: 0.4rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}
.case-study-card h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}
.case-study-card h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 1.25rem 0 0.5rem;
    color: var(--text);
}
.case-study-card p, .case-study-card ul {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}
.case-study-card ul { padding-left: 1.25rem; }

/* Case Studies page - modern cards */
.case-study-modern {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.case-study-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.case-study-modern:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.case-study-modern:hover::before { transform: scaleX(1); }
.case-study-modern-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    background: var(--primary-dim);
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 1rem;
}
.case-study-modern-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.25rem;
}
.case-study-modern-stats .case-stat {
    font-size: 0.95rem;
    color: var(--text-muted);
}
.case-study-modern-stats .case-stat strong {
    color: var(--primary);
    font-size: 1.25rem;
    margin-right: 0.25rem;
}
.case-study-modern h3 {
    font-weight: 700;
    font-size: 1.35rem;
    margin-bottom: 1rem;
    color: var(--text);
}
.case-study-modern p {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}
.case-study-modern-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}
.case-study-modern-list li {
    font-size: 16px;
    color: var(--text-muted);
    padding: 0.35rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.case-study-modern-list li i {
    color: var(--primary);
    font-size: 0.75rem;
}
.case-study-cta {
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.case-study-cta:hover { color: var(--accent); gap: 0.75rem; }
.case-studies-intro { margin-bottom: 2rem; }
.case-studies-subtext { color: var(--text-muted); font-size: 16px; margin: 0; }
.case-study-situation { margin-bottom: 1.25rem; }
.case-studies-grid .col-lg-4 { max-width: 380px; }
.case-studies-section .case-study-modern { padding: 2.25rem; }
@media (min-width: 992px) {
    .case-studies-section .case-study-modern { min-height: 420px; display: flex; flex-direction: column; }
    .case-studies-section .case-study-modern .case-study-cta { margin-top: auto; }
}

/* ========== Case Studies – Full-Width Alternating Layout ========== */
.case-hero {
    padding: 100px 0 30px;
    text-align: center;
    position: relative;
    z-index: 2;
}
.case-hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1rem;
}
.case-hero-headline {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}
.case-hero-sub {
    font-size: 16px;
    color: var(--text-muted);
}

/* Full-width case blocks */
.case-block {
    padding: 1rem 0;
    position: relative;
    z-index: 2;
}
.case-block:nth-child(even) {
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(14, 160, 149, 0.03) 50%, rgba(255,255,255,0) 100%);
}
.case-block-inner {
    display: grid;
    gap: 3rem;
    align-items: center;
    grid-template-columns: 1fr;
}
@media (min-width: 992px) {
    .case-block-inner {
        grid-template-columns: 1fr 1fr;
        gap: 4rem;
    }
}
.case-block-content {
    max-width: 640px;
}
.case-block-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary);
    margin-bottom: 1rem;
}
.case-block-snapshot {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding: 0.75rem 1rem;
    background: var(--primary-dim);
    border-radius: var(--radius);
    border-left: 3px solid var(--primary);
}
.case-section {
    margin-bottom: 1.5rem;
}
.case-section-title {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.case-block-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3vw, 2rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}
.case-block-text {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 0.75rem;
}
.case-section .case-block-text:last-child {
    margin-bottom: 0;
}
.case-block-stats {
    display: flex;
    gap: 2.5rem;
    margin-bottom: 2rem;
}
.case-stat-item {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
}
.case-stat-num {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 2rem;
    color: var(--primary);
    line-height: 1;
}
.case-stat-unit {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}
.case-stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-left: 0.35rem;
}
.case-block-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
}
.case-block-list li {
    font-size: 16px;
    color: var(--text-muted);
    padding: 0.5rem 0;
    padding-left: 1.75rem;
    position: relative;
    line-height: 1.5;
}
.case-block-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.85em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}
.case-block-cta {
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.case-block-cta:hover {
    color: var(--accent);
    gap: 0.75rem;
}
.case-block-cta i { font-size: 0.85rem; }

/* Visual side – vertical portrait images */
.case-block-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    aspect-ratio: 3 / 4;
    min-height: 380px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.case-block-img-wrap {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    overflow: hidden;
}
.case-block-img-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.2) 0%, rgba(15, 23, 42, 0.5) 100%);
    pointer-events: none;
}
.case-block-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}
/* ========== Careers page ========== */
.careers-hero {
    padding: 100px 0 48px;
    text-align: center;
}
.careers-hero h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: 0.75rem;
}
.careers-hero p {
    color: var(--text-muted);
    font-size: 16px;
}
.job-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.job-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.job-card h3 {
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.job-meta {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
}
.job-meta span { margin-right: 1rem; }
.job-meta-badge {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}
.job-meta-badge span {
    padding: 0.4rem 0.85rem;
    background: var(--primary-dim);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 500;
}
.job-description {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.7;
}
.job-description h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text);
    margin: 1.25rem 0 0.5rem;
}
.job-description ul {
    padding-left: 1.25rem;
    margin-bottom: 0.75rem;
}
.job-description li { margin-bottom: 0.35rem; }
.job-apply-wrap {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}
.careers-cta-box {
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    text-align: center;
    margin-top: 3rem;
}
.job-listing-card {
    display: block;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
    position: relative;
}
.job-listing-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
    color: inherit;
}
.job-listing-icon {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: var(--primary-dim);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.job-listing-card:hover .job-listing-icon {
    background: var(--primary);
    color: #fff;
}
.job-listing-card h3 {
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.job-listing-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1rem;
}
.job-listing-meta i { margin-right: 0.35rem; color: var(--primary); }
.job-listing-card > p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.job-listing-cta {
    font-weight: 600;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}
.job-listing-card:hover .job-listing-cta { gap: 0.75rem; }
.careers-portal-link { margin-bottom: 0; }

/* ========== Career Detail Page – Modern Design ========== */
.career-detail-hero-modern {
    padding: 120px 0 4rem;
    position: relative;
    overflow: hidden;
}
.career-detail-hero-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dim) 0%, rgba(14, 160, 149, 0.05) 50%, var(--accent-dim) 100%);
    z-index: 0;
}
.career-detail-hero-modern .container { position: relative; z-index: 1; }
.career-back-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    margin-bottom: 1rem;
    transition: var(--transition);
}
.career-back-link:hover { color: var(--accent); }
.career-detail-label { display: inline-block; margin-bottom: 0.75rem; }
.career-detail-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.25rem;
}
.career-detail-meta { display: flex; flex-wrap: wrap; gap: 0.75rem; }
.career-meta-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}
.career-detail-content { background: var(--bg-main); }
.career-section-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}
.career-section-card:hover {
    border-color: rgba(14, 160, 149, 0.3);
    box-shadow: var(--shadow);
}
.career-section-card.career-section-highlight {
    border-left: 4px solid var(--primary);
    background: linear-gradient(135deg, var(--bg-card) 0%, rgba(14, 160, 149, 0.04) 100%);
}
.career-section-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.25rem; }
.career-section-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    border-radius: 12px;
    color: var(--primary);
    font-size: 1.25rem;
}
.career-section-title {
    font-family: var(--font-head);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}
.career-section-card p {
    color: var(--text-muted);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.career-list-modern { list-style: none; padding: 0; margin: 0; }
.career-list-modern li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.85rem;
    color: var(--text-muted);
    line-height: 1.7;
}
.career-list-modern li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6em;
    width: 6px;
    height: 6px;
    background: var(--primary);
    border-radius: 50%;
}
.career-list-benefits li::before { display: none; }
.career-apply-sidebar { position: sticky; top: 100px; }
.career-apply-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}
.career-apply-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(14, 160, 149, 0.15) 0%, transparent 50%);
    pointer-events: none;
}
.career-apply-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.career-apply-desc { font-size: 16px; opacity: 0.9; margin-bottom: 1.5rem; }
.career-apply-card .btn-hero { margin-bottom: 1rem; }
.career-apply-back {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
}
.career-apply-back:hover { color: #fff; }
.career-quick-info {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}
.career-quick-info h5 { font-size: 1rem; font-weight: 700; margin-bottom: 1rem; }
.career-quick-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--border);
}
.career-quick-item:last-child { border-bottom: none; }
.career-quick-label { font-size: 0.9rem; color: var(--text-muted); }
.career-quick-item span:last-child { font-size: 0.9rem; font-weight: 500; color: var(--text); }
@media (max-width: 991.98px) {
    .career-apply-sidebar { position: static; }
    .career-detail-hero-modern { padding: 100px 0 2.5rem; }
}
@media (max-width: 575.98px) {
    .career-section-card { padding: 1.5rem; }
    .career-apply-card { padding: 1.5rem; }
    .career-meta-pill { font-size: 0.85rem; padding: 0.4rem 0.85rem; }
}

/* ========== Contact page ========== */
.contact-hero {
    padding: 100px 0 48px;
    text-align: center;
}
.contact-hero h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    margin-bottom: 0.75rem;
}
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    margin-bottom: 2rem;
}
.contact-form-v .form-label {
    font-weight: 600;
    color: var(--text);
}
.contact-form-v .form-control {
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
}
.contact-form-v .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-dim);
}
.chat-widget-placeholder {
    background: var(--bg-muted);
    border: 2px dashed var(--border);
    border-radius: var(--radius);
    padding: 2rem;
    text-align: center;
    color: var(--text-muted);
}
.chat-widget-placeholder i {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    display: block;
    color: var(--primary);
}

/* ========== About page – modern creative ========== */
.about-hero-modern {
    min-height: 100vh;
    padding: 120px 0 80px;
    position: relative;
    z-index: 2;
    overflow: hidden;
    display: flex;
    align-items: center;
}
.about-hero-mesh {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 70% 20%, var(--primary-dim) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 20% 80%, var(--accent-dim) 0%, transparent 50%),
        linear-gradient(180deg, var(--bg-main) 0%, var(--bg-muted) 100%);
    animation: aboutMesh 15s ease-in-out infinite;
}
@keyframes aboutMesh {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.9; transform: scale(1.02); }
}
.about-hero-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}
.about-shape {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.06;
    animation: aboutShapeFloat 12s ease-in-out infinite;
}
.about-shape-1 { width: 300px; height: 300px; top: 10%; right: 15%; animation-delay: 0s; }
.about-shape-2 { width: 200px; height: 200px; bottom: 20%; left: 10%; animation-delay: -4s; }
.about-shape-3 { width: 150px; height: 150px; top: 50%; right: 30%; animation-delay: -8s; }
@keyframes aboutShapeFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -20px) scale(1.1); }
    66% { transform: translate(-10px, 10px) scale(0.95); }
}
.about-hero-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 1.25rem;
    padding: 0.4rem 1rem;
    background: var(--primary-dim);
    border-radius: 50px;
    border: 1px solid rgba(13, 148, 136, 0.2);
}
.about-hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.75rem, 5vw, 2.75rem);
    line-height: 1.08;
    color: var(--text);
    margin-bottom: 1.25rem;
    letter-spacing: -0.03em;
}
.about-hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    max-width: 520px;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}
.about-hero-cta .btn-hero { display: inline-flex; }
.about-hero-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
}
.about-hero-image img {
    width: 100%;
    height: auto;
    max-height: 420px;
    object-fit: cover;
    display: block;
}
.about-hero-visual {
    position: relative;
    display: inline-flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}
.about-visual-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    animation: aboutCardFloat 4s ease-in-out infinite;
}
.about-visual-card i { color: var(--primary); font-size: 1.25rem; }
.about-visual-card span { font-weight: 600; font-size: 0.95rem; color: var(--text); }
.about-visual-card-1 { animation-delay: 0s; }
.about-visual-card-2 { animation-delay: 0.5s; }
.about-visual-card-3 { animation-delay: 1s; }
.about-visual-card:hover {
    transform: translateX(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}
@keyframes aboutCardFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.about-hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}
.about-scroll-text {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
}
.about-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, var(--primary), transparent);
    border-radius: 2px;
    animation: aboutScrollLine 2s ease-in-out infinite;
}
@keyframes aboutScrollLine {
    0%, 100% { opacity: 0.3; transform: scaleY(0.5); transform-origin: top; }
    50% { opacity: 1; transform: scaleY(1); }
}

.about-story-modern {
    padding: 4rem 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-muted) 50%, var(--bg-main) 100%);
}
.about-story-wrapper {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}
.about-story-content .section-label {
    display: inline-block;
    margin-bottom: 1.5rem;
}
.about-story-block {
    position: relative;
    padding-left: 3rem;
    margin-bottom: 2rem;
}
.about-story-block:last-child {
    margin-bottom: 0;
}
.about-story-icon {
    position: absolute;
    left: 0;
    top: 0.15rem;
    width: 2.25rem;
    height: 2.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1rem;
}
.about-story-challenge .about-story-icon {
    background: rgba(225, 29, 72, 0.1);
    color: var(--coral);
}
.about-story-solution .about-story-icon {
    background: var(--primary-dim);
    color: var(--primary);
}
.about-story-p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
    margin: 0;
}
.about-story-quote-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1e293b 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 240px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.about-story-quote-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(14, 160, 149, 0.12) 0%, rgba(124, 58, 237, 0.08) 100%);
    pointer-events: none;
}
.about-story-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 2.5rem;
    color: rgba(255, 255, 255, 0.06);
}
.about-story-quote-text {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.4;
    position: relative;
    z-index: 1;
    margin: 0;
}
.about-story-quote-text strong {
    color: var(--primary-light);
    font-weight: 800;
}
.about-story-quote-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 4px;
    height: 60%;
    background: linear-gradient(180deg, var(--primary), var(--primary-light));
    border-radius: 0 4px 4px 0;
}
.about-story-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.75rem, 3.2vw, 2.5rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1.5rem;
}
.about-quote-modern {
    background: var(--bg-dark);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 3rem;
    position: relative;
    overflow: hidden;
}
.about-quote-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.15) 0%, rgba(124, 58, 237, 0.1) 100%);
    pointer-events: none;
}
.about-quote-icon {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    color: rgba(255,255,255,0.08);
}
.about-quote-text {
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    margin: 0;
}
.about-quote-text strong { color: var(--primary-light); }

.about-values {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, transparent 0%, var(--bg-muted) 30%, var(--bg-muted) 70%, transparent 100%);
}
.about-value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    height: 100%;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.about-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}
.about-value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}
.about-value-card:hover::before { transform: scaleX(1); }
.about-value-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.about-value-card:hover .about-value-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    transform: scale(1.08);
}
.about-value-card h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.about-value-card p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.about-timeline {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}
.about-timeline-wrap {
    position: relative;
    max-width: 640px;
    margin: 0 auto;
}
.about-timeline-line {
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
    opacity: 0.4;
}
.about-timeline-item {
    position: relative;
    padding-left: 56px;
    padding-bottom: 3rem;
}
.about-timeline-item:last-child { padding-bottom: 0; }
.about-timeline-dot {
    position: absolute;
    left: 12px;
    top: 0.25rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 3px solid var(--primary);
    box-shadow: 0 0 0 4px var(--primary-dim);
    transition: var(--transition);
}
.about-timeline-item:hover .about-timeline-dot {
    transform: scale(1.2);
    box-shadow: 0 0 0 8px var(--primary-dim);
}
.about-timeline-content h4 {
    font-weight: 700;
    font-size: 1.15rem;
    margin-bottom: 0.35rem;
    color: var(--text);
}
.about-timeline-content p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

.about-stats-modern {
    padding: 2.5rem 0;
    position: relative;
    z-index: 2;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-card);
}
.about-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
    align-items: center;
}
@media (max-width: 767.98px) {
    .about-stats-row { grid-template-columns: 1fr; }
}
.about-stat-modern {
    padding: 1.5rem;
    border-radius: var(--radius);
    background: var(--bg-main);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.about-stat-modern:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow);
}
.about-stat-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    display: inline;
    letter-spacing: -0.02em;
}
.about-stat-suffix {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}
.about-stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-top: 0.25rem;
}

.about-cta-modern {
    padding: 3rem 0;
    position: relative;
    z-index: 2;
}
.about-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
@media (max-width: 991.98px) {
    .about-cta-grid { grid-template-columns: 1fr; }
}
.about-cta-tile {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
}
.about-cta-tile::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition);
}
.about-cta-tile:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
    color: inherit;
    transform: translateY(-4px);
}
.about-cta-tile:hover::after { transform: scaleX(1); transform-origin: left; }
.about-cta-tile:hover .about-cta-arrow { transform: translateX(6px); color: var(--primary); }
.about-cta-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: var(--primary-dim);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.25rem;
    transition: var(--transition);
}
.about-cta-tile:hover .about-cta-icon {
    background: var(--primary);
    color: #fff;
    transform: scale(1.05);
}
.about-cta-tile h4 {
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text);
}
.about-cta-tile p {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0 0 1rem;
    line-height: 1.5;
}
.about-cta-arrow {
    font-size: 0.9rem;
    color: var(--text-muted);
    transition: var(--transition);
}

/* ========== Contact page - modern ========== */
.contact-hero-modern {
    padding: 100px 0 48px;
    position: relative;
    z-index: 2;
}
.contact-hero-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
}
.contact-hero-desc {
    color: var(--text-muted);
    font-size: 16px;
    margin-bottom: 2rem;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--bg-muted);
    border-radius: var(--radius);
    transition: var(--transition);
}
.contact-info-item:hover {
    background: var(--primary-dim);
}
.contact-info-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.15rem;
}
.contact-info-item strong { display: block; margin-bottom: 0.25rem; }
.contact-info-item span { font-size: 0.9rem; color: var(--text-muted); }
.contact-info-item-link { text-decoration: none; color: inherit; }
.contact-info-item-link:hover { color: inherit; }
.contact-form-modern,
.form-card-book-demo {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.form-card-book-demo {
    border-top: 4px solid var(--primary);
}
.form-card-contact {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}
.contact-form-heading {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.5rem;
}
.contact-form-sub {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}
.contact-page-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; }
.btn-link-demo {
    background: none;
    border: none;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    padding: 0;
    text-decoration: underline;
    font-size: inherit;
}
.btn-link-demo:hover { color: var(--accent); }
.book-demo-page-hero .contact-hero-desc { max-width: 540px; margin-left: auto; margin-right: auto; }
.modal-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem 4rem;
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}
.modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.modal-demo-box {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    width: 100%;
    max-width: 560px;
    position: relative;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
    margin: auto;
    transform: translateY(-20px);
    transition: transform 0.3s;
}
.modal-overlay.is-open .modal-demo-box { transform: translateY(0); }
.modal-demo-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border: none;
    background: var(--bg-muted);
    border-radius: 50%;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.modal-demo-close:hover { background: var(--primary-dim); color: var(--primary); }
.modal-demo-title {
    font-family: var(--font-head);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.35rem;
}
.modal-demo-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.form-card-careers {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--accent);
}
.form-control-modern {
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}
.form-control-modern:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-dim);
}
.careers-apply-form-wrap { max-width: 800px; margin: 0 auto 2rem; }
.form-section { margin-bottom: 2rem; }
.form-section-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}
.careers-apply-form .form-label,
.contact-form-modern .form-label { font-weight: 600; color: var(--text); }
.careers-apply-form input[type="file"].form-control-modern { padding: 0.5rem; }

/* ========== Nav active state ========== */
.nav-link.active {
    color: var(--text) !important;
    font-weight: 600;
}
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

/* Outline button on light pages */
.theme-light .btn-hero-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.theme-light .btn-hero-outline:hover {
    background: var(--primary-dim);
    color: var(--primary);
    border-color: var(--primary);
}

/* ========== Responsive – all devices ========== */
@media (max-width: 991.98px) {
    .page-hero { padding: 88px 0 2rem; }
    .about-hero-modern { min-height: auto; height: auto; padding: 100px 0 2rem; }
    .about-hero-title { font-size: clamp(1.85rem, 5vw, 2.5rem); }
    .about-hero-desc { font-size: 16px; margin-bottom: 1.25rem; }
    .about-hero-image { margin-top: 1.5rem; }
    .about-hero-image img { max-height: 320px; }
    .about-story-modern,
    .about-values,
    .about-timeline { padding: 2rem 0; }
    .about-story-wrapper { padding: 1.75rem; }
    .about-story-quote-card { min-height: 200px; padding: 2rem; }
    .about-story-quote-text { font-size: 1.35rem; }
    .about-story-block { padding-left: 2.75rem; margin-bottom: 1.5rem; }
    .about-story-title { font-size: clamp(1.5rem, 4vw, 2rem); }
    .about-quote-modern { padding: 2rem; }
    .about-stats-modern { padding: 1.5rem 0; }
    .about-stats-row { gap: 1rem; }
    .about-stat-modern { padding: 1rem; }
    .about-stat-num { font-size: 2.25rem; }
    .solution-page-wrap { padding-top: 88px; padding-bottom: 1.5rem; }
    .solution-hero { padding: 1rem 0 1.5rem; }
    .solution-hero-img { margin-bottom: 1rem; }
    .solution-hero-img img { height: 180px; }
    .solution-hero h1 { font-size: clamp(1.5rem, 4vw, 2rem); }
    .solution-block { padding: 1rem 0; }
    .contact-hero-modern,
    .contact-hero { padding: 88px 0 2rem; }
    .contact-hero-modern .row.align-items-center { padding-top: 0.5rem; padding-bottom: 0.5rem; --bs-gutter-y: 1rem; }
    .contact-hero-modern .contact-hero-desc { margin-bottom: 1rem; }
    .contact-hero-modern .form-card-contact { margin-top: 0; }
    .careers-hero { padding: 88px 0 2rem; }
}
@media (max-width: 767.98px) {
    .page-hero { padding: 80px 0 1.5rem; }
    .page-hero-title { font-size: clamp(1.5rem, 6vw, 2rem); }
    .about-hero-modern { min-height: auto; height: auto; padding: 88px 0 0.5rem; }
    .about-hero-badge { font-size: 0.7rem; padding: 0.35rem 0.75rem; }
    .about-hero-title { font-size: clamp(1.6rem, 7vw, 2rem); margin-bottom: 1rem; }
    .about-hero-desc { font-size: 16px; margin-bottom: 1rem; }
    .about-hero-image img { max-height: 260px; }
    .about-hero-scroll { display: none; }
    .about-story-modern,
    .about-values,
    .about-timeline { padding: 1.5rem 0; }
    .about-story-wrapper { padding: 1.25rem; }
    .about-story-quote-card { min-height: auto; padding: 1.75rem; }
    .about-story-quote-text { font-size: 1.2rem; }
    .about-story-p { font-size: 16px; }
    .about-value-card { padding: 1.5rem; }
    .about-value-icon { width: 48px; height: 48px; font-size: 1.2rem; }
    .about-timeline-item { padding-left: 48px; padding-bottom: 2rem; }
    .about-timeline-dot { width: 14px; height: 14px; left: 9px; }
    .about-stats-row { gap: 0.75rem; }
    .about-stat-num { font-size: 2rem; }
    .about-stat-suffix { font-size: 1.25rem; }
    .solution-hero-img img { height: 160px; }
    .solution-hero h1 { font-size: 1.5rem; }
    .solution-hero .lead { font-size: 16px; }
    .industry-card { padding: 1.25rem; }
    .industry-card-icon { width: 44px; height: 44px; font-size: 1.2rem; }
    .industry-card h4 { font-size: 1rem; }
    .capability-card { padding: 1.25rem; }
    .capability-card h4 { font-size: 1.35rem; }
}
@media (max-width: 575.98px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    .about-hero-title { font-size: 1.5rem; }
    .about-stat-num { font-size: 1.75rem; }
    .section-title { font-size: 1.75rem; }
    .section-head .section-label { font-size: 1rem; }
}

/* ========== Live Chat Button (floating) ========== */
.live-chat-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(14, 160, 149, 0.4);
    transition: var(--transition);
    animation: chatPulse 2.5s ease-in-out infinite;
}
.live-chat-btn:hover {
    transform: scale(1.05);
    color: #fff;
    box-shadow: 0 6px 28px rgba(14, 160, 149, 0.5);
}
.live-chat-btn i {
    font-size: 1.2rem;
}
@keyframes chatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(14, 160, 149, 0.4); }
    50% { box-shadow: 0 4px 28px rgba(14, 160, 149, 0.6); }
}
@media (max-width: 575.98px) {
    .live-chat-btn span { display: none; }
    .live-chat-btn { padding: 0.85rem 1rem; bottom: 1rem; right: 1rem; }
}

/* ========== Legal / content pages (Security, Terms, Privacy) ========== */
.mt-nav {
    padding: 120px 2rem 3rem;
    position: relative;
    z-index: 2;
    overflow: visible;
}
.mt-nav .container {
    overflow: visible;
    padding-left: 1rem;
    padding-right: 1rem;
    max-width: 100%;
}
.mt-nav .row {
    margin-left: 0;
    margin-right: 0;
}
.mt-nav .row > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
    max-width: 100%;
}
.mt-nav .content-prose {
    padding-top: 1rem;
}
.mt-nav .content-prose h1 {
    padding-top: 0;
    margin-top: 0;
    line-height: 1.25;
}
@media (max-width: 991.98px) {
    .mt-nav { padding-top: 100px; padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 575.98px) {
    .mt-nav { padding-left: 1.25rem; padding-right: 1.25rem; }
}
.content-prose {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
}
.content-prose h1 {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: clamp(1.5rem, 3.5vw, 2.25rem);
    line-height: 1.2;
    color: var(--text);
    margin-bottom: 1rem;
    margin-left: 0;
    letter-spacing: 0;
    padding-left: 0;
    overflow: visible;
}
.content-prose .lead {
    font-size: 16px;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}
.content-prose h2,
.content-prose .h5 {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--text);
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}
.content-prose h2:first-of-type,
.content-prose .h5:first-of-type { margin-top: 0; }
.content-prose p {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
}
.content-prose ul,
.content-prose ol {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.content-prose li { margin-bottom: 0.35rem; }
.content-prose a {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
}
.content-prose a:hover { text-decoration: underline; color: var(--accent); }
.content-prose .text-muted { color: var(--text-muted); font-size: 0.9rem; }

/* ========== Workforce Solutions page ========== */
.wf-hero {
    padding: 100px 0 2rem;
    position: relative;
    z-index: 2;
    min-height: 0;
}
.wf-hero-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    /* background: #fff; */
    /* min-height: 320px; */
    display: flex;
    align-items: center;
    justify-content: center;
    /* border: 1px solid var(--border); */
    /* box-shadow: var(--shadow-lg); */
}
.wf-hero-visual i {
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.4;
}
.lead-capture-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem 2.25rem;
    box-shadow: var(--shadow-lg);
    margin-top: 2rem;
    transition: var(--transition);
}
.lead-capture-card:hover { border-color: var(--primary-dim); box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.15); }
.lead-capture-card .form-control,
.lead-capture-card .form-select {
    border-radius: 12px;
    border: 1px solid var(--border);
    padding: 0.75rem 1rem;
}
.lead-capture-card .form-control:focus,
.lead-capture-card .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-dim);
}
.wf-two-col {
    padding: 2.25rem 0;
    position: relative;
    z-index: 2;
}
.wf-two-col:nth-child(even) { background: linear-gradient(180deg, var(--bg-main) 0%, var(--bg-muted) 100%); }

/* Workforce Solutions – feature bullets (Productivity) */
.wf-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}
.wf-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.9rem;
    padding: 1rem 1.1rem;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}
.wf-feature-item:hover {
    border-color: var(--primary-dim);
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}
.wf-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    border: 1px solid var(--border);
    color: var(--primary);
    transition: var(--transition);
}
.wf-feature-item:hover .wf-feature-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.04);
}
.wf-feature-text {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.55;
    padding-top: 0.15rem;
}

/* Workforce Solutions – Process timeline/cards */
.wf-process-section {
    position: relative;
    overflow: visible;
}
.wf-process-section::before {
    content: '';
    position: absolute;
    inset: -40% -20%;
    background:
        radial-gradient(ellipse 40% 30% at 20% 20%, var(--primary-dim) 0%, transparent 60%),
        radial-gradient(ellipse 45% 35% at 80% 30%, var(--accent-dim) 0%, transparent 60%),
        radial-gradient(ellipse 50% 35% at 50% 90%, rgba(14, 160, 149, 0.06) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}
.wf-process-section > .container { position: relative; z-index: 1; }

.wf-process {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.5rem;
    padding-top: 0;
}
.wf-process-item {
    background: linear-gradient(180deg, rgba(255,255,255,0.9) 0%, var(--bg-card) 55%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 3.25rem 2rem 2rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
    overflow: visible;
}
.wf-process-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-dim) 0%, transparent 45%, var(--accent-dim) 100%);
    opacity: 0;
    transition: opacity var(--transition);
    border-radius: inherit;
}
.wf-process-item:hover {
    border-color: var(--primary-dim);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.wf-process-item:hover::before { opacity: 1; }
.wf-process-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    opacity: 0.22;
    border-radius: 4px 0 0 4px;
}

.wf-process-node {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -45%);
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: var(--bg-main);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
    z-index: 5;
}
.wf-process-node::before {
    content: '';
    position: absolute;
    inset: -7px;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    opacity: 0.7;
    z-index: -1;
}
.wf-process-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
    color: var(--primary);
    background: var(--primary-dim);
    border: 1px solid var(--border);
}
.wf-process-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
    border: 1px solid var(--border);
    color: var(--primary);
    transition: var(--transition);
    margin: 0 auto 1rem;
}
.wf-process-item:hover .wf-process-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #fff;
    border-color: rgba(255, 255, 255, 0.15);
    transform: scale(1.04);
}
.wf-process-title {
    font-family: var(--font-head);
    font-weight: 800;
    font-size: 1.2rem;
    line-height: 1.25;
    color: var(--text);
    margin: 0 0 0.5rem 0;
    text-align: center;
}
.wf-process-desc {
    font-size: 16px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.65;
    text-align: center;
}
.wf-process-points {
    list-style: none;
    padding: 0;
    margin: 1.1rem 0 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}
.wf-process-points li {
    position: relative;
    padding-left: 1.25rem;
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.55;
}
.wf-process-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65em;
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
}
.wf-process-item :is(h3, p, ul) { position: relative; z-index: 1; }

@media (max-width: 991.98px) {
    .wf-process {
        grid-template-columns: 1fr;
        padding-top: 0;
        gap: 1.5rem;
    }
    .wf-process-item {
        padding: 1.75rem 1.25rem 1.5rem;
        padding-left: 1.5rem;
    }
    .wf-process-node {
        position: static;
        transform: none;
        width: auto;
        height: auto;
        min-width: 48px;
        background: linear-gradient(135deg, var(--primary-dim), var(--accent-dim));
        border: 1px solid var(--border);
        border-radius: 999px;
        box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08);
        margin-bottom: 0.85rem;
        justify-content: center;
        padding: 0.4rem 0;
    }
    .wf-process-node::before { display: none; }
    .wf-process-badge {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
    .wf-process-title,
    .wf-process-desc { text-align: left; }
    .wf-process-icon { margin-left: 0; margin-right: 0; }
}
.wf-step-process {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 2rem;
}
.wf-step-item {
    flex: 1;
    min-width: 260px;
    max-width: 320px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2rem;
    position: relative;
    transition: var(--transition);
    box-shadow: var(--shadow);
}
.wf-step-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 4px 0 0 4px;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform var(--transition);
}
.wf-step-item:hover {
    border-color: var(--primary-dim);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}
.wf-step-item:hover::before { transform: scaleY(1); }
.wf-step-num {
    font-family: var(--font-head);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.5rem;
}
.wf-step-item h4 { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.5rem; color: var(--text); }
.wf-step-item p { font-size: 16px; color: var(--text-muted); margin: 0; line-height: 1.6; }
.wf-global-visual {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-muted) 0%, var(--bg-card) 100%);
    border: 1px solid var(--border);
    width: 60%;
    height: 350px;
    max-height: 350px;
    display: flex;
    align-items: center;
    margin: 0 auto;
    justify-content: center;
}
.wf-global-visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.wf-global-visual i { font-size: 4rem; color: var(--primary); opacity: 0.35; }
@media (max-width: 991.98px) {
    .wf-hero { padding: 100px 0 2rem; }
    .wf-hero-visual { min-height: auto !important; margin-top: 1.5rem; height: auto; }
    .wf-global-visual {
        height: 260px;
        min-height: 200px;
        max-height: 280px;
    }
    .wf-global-visual img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
}