:root {
    --white: #FFFFFF;
    --dark-navy: #0C1630;
    --orange: #FF8547;
    --orange-glow: rgba(255, 133, 71, 0.5);
    --primary: #142AE2;
    --primary-dark: #0A1EC4;
    --accent: #6BE0FF;
    --primary-dim: rgba(20, 42, 226, 0.2);
    --grey-400: #D0D9EC;
    --grey-500: #A2AEC7;
    --grey-600: #7F8CA8;
    --grey-700: #5E6B87;
    --bg-primary: var(--dark-navy);
    --bg-secondary: #131F3D;
    --bg-tertiary: #091126;
    --bg-bright: #1B2A52;
    --bg-card: #223157;
    --bg-card-hover: #2B3B68;
    --border-color: rgba(255, 255, 255, 0.12);
    --border-subtle: rgba(255, 255, 255, 0.04);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.08);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --shadow-card: 0 8px 30px rgba(0, 0, 0, 0.3);
    --shadow-card-lg: 0 12px 40px rgba(0, 0, 0, 0.35);
    --font-primary: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --section-padding: 120px 0;
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --transition-fast: 0.2s var(--ease-smooth);
    --transition-medium: 0.4s var(--ease-smooth);
}

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.7;
    color: var(--grey-400);
    background: var(--bg-primary);
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-fast);
}

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

::selection {
    background: var(--orange);
    color: var(--white);
}

/* ---- Typography ---- */
.section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    line-height: 1.12;
    color: var(--white);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 17px;
    color: var(--grey-400);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header {
    margin-bottom: 32px;
}

/* ---- Background Variants ---- */
.section-dark {
    background: var(--bg-primary);
}

.section-darker {
    background: var(--bg-secondary);
}

.section-darkest {
    background: var(--bg-tertiary);
}

/* ---- Buttons ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
    border: 1px solid transparent;
}

.btn-primary {
    color: var(--bg-primary);
    background: var(--accent);
    border-color: var(--accent);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--white);
}

.btn-outline {
    color: var(--white);
    background: transparent;
    border-color: rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    background: transparent;
    border-color: var(--primary);
    color: var(--primary);
}


/* ============================================
   HEADER
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition-medium);
    background: transparent;
}

.site-header .navbar {
    padding: 20px 0;
    transition: all var(--transition-medium);
}

.site-header.scrolled .navbar {
    padding: 10px 0;
}

.site-header.scrolled .brand-logo {
    height: 60px;
}

.site-header::before {
    content: '';
    position: absolute;
    inset: 0;
    transition: all var(--transition-medium);
    z-index: -1;
}

.site-header.scrolled::before {
    background: rgba(12, 22, 48, 0.94);
}

.brand-logo {
    height: 80px;
    width: auto;
    transition: height var(--transition-medium);
}

.brand-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.site-header .navbar-nav {
    gap: 2px;
    margin-left: auto;
}

.site-header .nav-link {
    position: relative;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    padding: 6px 10px !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.site-header .nav-link::after {
    content: '';
    position: absolute;
    left: 10px;
    right: 10px;
    bottom: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-medium);
}

.site-header .nav-link:hover,
.site-header .nav-link.active {
    color: var(--white);
}

.site-header .nav-link:hover::after,
.site-header .nav-link.active::after {
    transform: scaleX(1);
    transform-origin: right;
}

.navbar-toggler {
    padding: 4px;
    border: none;
    outline: none !important;
    box-shadow: none !important;
}

.toggler-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    margin: 6px 0;
    transition: all var(--transition-fast);
    border-radius: 2px;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .toggler-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}


/* ============================================
   HERO
   ============================================ */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 500px;
    overflow: hidden;
}

.hero-bottom {
    padding-bottom: 140px;
}

.hero-video-slider {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s ease;
    z-index: 1;
}

.hero-video.active {
    opacity: 1;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12, 22, 48, 0.8) 0%, rgba(12, 22, 48, 0.4) 50%, transparent 100%);
    z-index: 3;
}

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

.hero-heading {
    font-size: clamp(28px, 4vw, 60px);
    font-weight: 300;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtext {
    font-size: clamp(15px, 1.2vw, 16px);
    color: var(--white);
    margin-bottom: 36px;
    line-height: 1.7;
    max-width: 768px;
}

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

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Metrics Section */
.metrics-section {
    position: relative;
    z-index: 10;
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(8px);
}

.metrics-box {
    margin: 0 auto;
}

.metrics-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 80px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    text-align: center;
    position: relative;
    padding: 0 48px;
}

.metric-number {
    font-size: 36px;
    font-weight: 300;
    color: var(--white);
    line-height: 1;
    letter-spacing: -1px;
}

.metric-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--grey-500);
    letter-spacing: 0.5px;
    margin-top: 6px;
}



/* ============================================
   ABOUT
   ============================================ */
.about-section,
.services-section,
.industries-section,
.faq-section,
.talent-section {
    padding: var(--section-padding);
}

.about-text {
    font-size: 1rem;
    color: var(--grey-400);
    line-height: 1.7;
    margin-bottom: 32px;
}

.about-visual {
    width: 100%;
}

.about-visual-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 12px;
}

.about-visual-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 16px;
    height: 120px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-medium);
}

.about-visual-item:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

.about-visual-icon {
    font-size: 28px;
    color: var(--primary);
}

.about-visual-text {
    font-size: 13px;
    font-weight: 600;
    color: var(--dark-navy);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}


/* ============================================
   SERVICES CARDS
   ============================================ */
.service-card {
    padding: 32px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    transition: all var(--transition-medium);
    height: 100%;
}

.service-card:hover,
.industry-pill:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-card);
}

.service-card-icon,
.platform-card-icon,
.service-row-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-dim);
    border-radius: var(--radius-md);
    font-size: 20px;
    color: var(--white);
    transition: all var(--transition-medium);
}

.service-card-icon,
.platform-card-icon {
    margin-bottom: 20px;
}

.service-row-icon {
    flex-shrink: 0;
}

.service-card:hover .service-card-icon,
.platform-card:hover .platform-card-icon {
    background: var(--primary);
    color: var(--white);
}

.service-card-title,
.service-row-title,
.process-step-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.service-row-title {
    margin-bottom: 8px;
}

.service-card-text {
    font-size: 16px;
    color: var(--white);
    line-height: 1.7;
    margin-bottom: 16px;
}

.service-card-link {
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
    color: var(--grey-400);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap var(--transition-fast);
}

.service-card-link i {
    transition: transform var(--transition-fast);
}

.service-card-link:hover {
    gap: 10px;
}

.service-card-link:hover i {
    transform: translateX(3px);
}


/* ============================================
   SERVICES SPLIT LIST
   ============================================ */
.services-sticky {
    position: sticky;
    top: 120px;
}

.services-sticky .btn-primary {
    margin-top: 8px;
}

.service-row {
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 28px 0;
    border-bottom: 1px solid var(--border-color);
}

.service-row:first-child {
    padding-top: 6px;
}

.service-row:last-child {
    padding-bottom: 0;
    border-bottom: none;
}

.service-row-num {
    flex-shrink: 0;
    min-width: 30px;
    padding-top: 6px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--orange);
}

.service-row:hover .service-row-icon {
    background: var(--primary);
}

.service-row-body {
    flex: 1;
    padding-top: 2px;
}

.service-row-text,
.process-step-text {
    font-size: 15px;
    color: var(--white);
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   INDUSTRY LIST (Industries page)
   ============================================ */
.why-grid,
.capabilities-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 72px;
    align-items: start;
}

.why-grid .section-header,
.capabilities-grid .section-header {
    text-align: left;
    margin-bottom: 0;
}

.why-grid .section-subtitle,
.capabilities-grid .section-subtitle {
    margin: 0;
}

.industry-list,
.industry-list--six {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 44px 28px;
}

.industry-list--six {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.industry-list--row {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1399.98px) {
    .industry-list--row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 767.98px) {
    .industry-list--row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575.98px) {
    .industry-list--row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1199px) {
    .industry-list--six {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .industry-list--six {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }
}

.industry-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    text-align: left;
}

.industry-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    margin-top: 3px;
    font-size: 18px;
    line-height: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    color: var(--accent);
}

.industry-item-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
    transition: color var(--transition-fast);
}

.industry-item:hover .industry-item-title {
    color: var(--accent);
}

.industry-item-text {
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   SECTOR CARDS (Industries page)
   ============================================ */
.sector-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.sector-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: background var(--transition-medium);
}

.sector-card:hover {
    background: var(--bg-card-hover);
}

.sector-card-img {
    position: relative;
    aspect-ratio: 16 / 6;
    overflow: hidden;
}

.sector-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sector-card-body {
    display: flex;
    flex-direction: column;
    padding: 28px;
}

.sector-card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.sector-card-text {
    font-size: 14px;
    color: var(--white);
    line-height: 1.7;
    margin: 0;
}


/* ============================================
   WHY SUNSTRAHL (background image section)
   ============================================ */
.why-bg-section {
    position: relative;
    background-image: url('../images/hero-industries.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.why-bg-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(12, 22, 48, 0.92);
    z-index: 1;
}

.why-bg-section .container {
    position: relative;
    z-index: 2;
}


/* ============================================
   PLATFORM EXPERTISE
   ============================================ */
.platforms-section {
    padding: var(--section-padding);
    position: relative;
    background-image: url('../images/workforce.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.platforms-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(12, 22, 48, 0.94) 0%, rgba(12, 22, 48, 0.8) 50%, rgba(12, 22, 48, 0.45) 100%);
    z-index: 1;
}

.platforms-section .container {
    position: relative;
    z-index: 2;
}

.platforms-section .about-text,
.platforms-section .section-title {
    color: var(--white);
}

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

.platform-card {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 24px;
    transition: all var(--transition-medium);
}

.platform-card:hover {
    background: var(--bg-card-hover);
    transform: translateY(-2px);
}

.platform-card-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.platform-card-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.platform-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin: 0;
}

.platform-list li,
.platform-list li i {
    font-size: 14px;
    line-height: 1.6;
}

.platform-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--white);
}

.platform-list li i {
    color: var(--accent);
    flex-shrink: 0;
}


/* ============================================
   PLATFORM SHOWCASE (ERP page)
   ============================================ */
.platform-showcase {
    height: 100%;
    background: var(--bg-card);
    border-radius: 10px;
    overflow: hidden;
    transition: all var(--transition-medium);
}

.platform-showcase:hover {
    background: var(--bg-card-hover);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card-lg);
}

.platform-showcase-img {
    position: relative;
    aspect-ratio: 16 / 7;
    overflow: hidden;
}

.platform-showcase-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(12, 22, 48, 0.45), transparent 55%);
}

.platform-showcase-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.platform-showcase:hover .platform-showcase-img img {
    transform: scale(1.05);
}

.platform-showcase-body {
    padding: 28px;
}

.platform-showcase-body .platform-list {
    margin-top: 20px;
}

.platform-showcase-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.platform-showcase-text {
    font-size: 15px;
    color: var(--white);
    line-height: 1.7;
    margin: 0;
}

.platform-showcase--noimg .platform-showcase-body {
    padding: 40px 32px;
}

.platform-diagonal {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
    align-items: start;
}

.platform-diagonal .platform-showcase:nth-child(1) { grid-column: 1; }
.platform-diagonal .platform-showcase:nth-child(2) { grid-column: 2; }
.platform-diagonal .platform-showcase:nth-child(3) { grid-column: 3; }
.platform-diagonal .platform-showcase:nth-child(4) { grid-column: 2; }
.platform-diagonal .platform-showcase:nth-child(5) { grid-column: 3; }
.platform-diagonal .platform-showcase:nth-child(6) { grid-column: 4; }
.platform-diagonal .platform-showcase:nth-child(7) { grid-column: 3; }
.platform-diagonal .platform-showcase:nth-child(8) { grid-column: 4; }
.platform-diagonal .platform-showcase:nth-child(9) { grid-column: 5; }

@media (max-width: 1199.98px) {
    .platform-diagonal {
        grid-template-columns: repeat(2, 1fr);
    }

    .platform-diagonal .platform-showcase:nth-child(n) {
        grid-column: auto;
    }
}

@media (max-width: 575.98px) {
    .platform-diagonal {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   INDUSTRIES
   ============================================ */
.industry-pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 32px 16px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition-medium);
}

.industry-pill-icon {
    font-size: 32px;
    color: var(--accent);
}

.industry-pill-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.3;
}


/* ============================================
   TESTIMONIAL
   ============================================ */
.testimonial-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
    background: var(--bg-bright);
}

.testimonial-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(20, 42, 226, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(255, 133, 71, 0.04) 0%, transparent 50%);
}

.testimonial-grid {
    position: relative;
    z-index: 1;
}

.testimonial-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.07) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: var(--radius-xl);
    padding: 44px 32px;
    transition: all var(--transition-medium);
}

.testimonial-card:hover {
    background: var(--bg-card);
    transform: translateY(-4px);
}

.testimonial-quote-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--primary-dim);
    color: var(--primary);
    font-size: 26px;
    margin: 0 auto 28px;
}

.testimonial-text {
    flex: 1;
    font-size: 17px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 32px;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-author>div:last-child {
    text-align: left;
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px solid var(--orange-glow);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--white);
    font-style: normal;
}

.testimonial-role {
    font-size: 13px;
    color: var(--grey-500);
}


/* ============================================
   FAQ
   ============================================ */
.faq-accordion {
    --bs-accordion-border-color: var(--border-color);
    --bs-accordion-border-radius: var(--radius-md);
    --bs-accordion-inner-border-radius: var(--radius-md);
    --bs-accordion-bg: transparent;
    --bs-accordion-btn-bg: transparent;
    --bs-accordion-active-bg: transparent;
    --bs-accordion-active-color: var(--primary);
    --bs-accordion-btn-focus-box-shadow: none;
    --bs-accordion-btn-padding-y: 20px;
    --bs-accordion-body-padding-y: 0 24px 20px;
    --bs-accordion-color: var(--grey-400);
}

.faq-accordion .accordion-item {
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 8px;
    overflow: hidden;
}

.faq-accordion .collapsing {
    transition: height 0.4s var(--ease-smooth);
}

.faq-accordion .accordion-button {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    padding: 20px 24px;
    background: var(--bg-card);
    transition: color var(--transition-fast);
}

.faq-accordion .accordion-button:not(.collapsed) {
    color: var(--dark-navy);
    background: #FFFFFF;
    box-shadow: none;
}

.faq-accordion .accordion-button::after {
    color: var(--accent);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='currentColor'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    background-size: 14px;
    transition: transform var(--transition-fast);
}

.faq-accordion .accordion-body {
    font-size: 15px;
    color: var(--grey-700);
    line-height: 1.7;
    padding: 0 24px 20px;
    background: #FFFFFF;
}


/* ============================================
   CTA
   ============================================ */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
    background: var(--bg-bright);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
    background-size: 80px 80px;
}

.cta-section::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(20, 42, 226, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 50%, rgba(255, 133, 71, 0.04) 0%, transparent 50%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-subtext {
    font-size: 18px;
    color: var(--grey-400);
    margin-bottom: 36px;
    max-width: 768px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    position: relative;
    background: var(--bg-tertiary);
    overflow: hidden;
}

/* ---- Footer Main ---- */
.footer-main {
    padding: 72px 0 48px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px 48px;
}

.footer-brand {
    margin-bottom: 20px;
}

.footer-logo {
    height: 56px;
    width: auto;
}

.footer-brand-text {
    font-size: 22px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
}

.footer-company {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-desc {
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.8;
    margin-bottom: 28px;
    max-width: 380px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--grey-400);
    font-size: 16px;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
    transform: translateY(-2px);
}

.footer-contact-block {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.footer-subheading {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    margin-bottom: 12px;
}

.footer-contact-text {
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.8;
    margin-bottom: 0;
}

.footer-contact-text a {
    color: var(--grey-500);
    transition: color var(--transition-fast);
}

.footer-contact-text a:hover {
    color: var(--accent);
}

/* ---- Footer Nav Columns ---- */
.footer-heading {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    padding: 0;
    text-align: left;
    cursor: default;
}

.footer-acc-icon {
    display: none;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: var(--grey-500);
    transition: color var(--transition-fast);
}

.footer-links a::after {
    content: '\2192';
    display: inline-block;
    margin-left: 6px;
    color: var(--accent);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* ---- Footer Bottom ---- */
.footer-bottom {
    background: rgba(0, 0, 0, 0.22);
    border-top: 1px solid var(--border-subtle);
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding: 24px 0;
}

.footer-copy {
    font-size: 13px;
    color: var(--grey-600);
    margin-bottom: 0;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: var(--grey-600);
}

.footer-legal a {
    color: var(--grey-600);
    transition: color var(--transition-fast);
}

.footer-legal a:hover {
    color: var(--accent);
}

.footer-legal-sep {
    opacity: 0.5;
}

/* ---- Back to Top ---- */
.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 999;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--grey-400);
    font-size: 18px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: all var(--transition-medium);
    box-shadow: var(--shadow-card);
}

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

.back-to-top:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--bg-primary);
}


/* ============================================
   INNER PAGE HERO
   ============================================ */
.page-hero {
    position: relative;
    padding: 300px 0 180px;
    background: var(--bg-secondary);
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 18% 30%, rgba(20, 42, 226, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 82% 60%, rgba(255, 133, 71, 0.07) 0%, transparent 50%);
}

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

.page-hero-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 300;
    line-height: 1.15;
    color: var(--white);
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.page-hero--image {
    background: var(--bg-secondary);
}

.page-hero--image::before {
    content: '';
    position: absolute;
    inset: -35% 0 -12%;
    background: url('../images/hero-about.webp') center center / cover no-repeat;
    z-index: 0;
    transform: scale(var(--hero-bg-scale, 1.05)) translateY(var(--hero-bg-offset, 0px));
    transform-origin: center;
    will-change: transform;
}

.page-hero--image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
            rgba(12, 22, 48, 0.92) 0%,
            rgba(12, 22, 48, 0.74) 50%,
            rgba(12, 22, 48, 0.42) 100%);
    z-index: 1;
}

.page-hero--image .page-hero-content {
    z-index: 3;
}

.page-hero--image.page-hero--about::before,
.page-hero--image.page-hero--services::before,
.page-hero--image.page-hero--talent::before,
.page-hero--image.page-hero--erp::before,
.page-hero--image.page-hero--industries::before,
.page-hero--image.page-hero--contact::before {
    background-image: url('../images/hero-about.webp');
}

.page-hero--image.page-hero--services::before {
    background-image: url('../images/hero-services.webp');
}

.page-hero--image.page-hero--talent::before {
    background-image: url('../images/hero-talent.webp');
}

.page-hero--image.page-hero--erp::before {
    background-image: url('../images/hero-erp.webp');
}

.page-hero--image.page-hero--industries::before {
    background-image: url('../images/hero-industries.webp');
}

.page-hero--image.page-hero--contact::before {
    background-image: url('../images/hero-contact.webp');
}

.page-hero--image.page-hero--consulting::before {
    background-image: url('../images/hero-services.webp');
}

.page-hero--image.page-hero--insights::before {
    background-image: url('../images/hero-about.webp');
}

.page-hero--image.page-hero--careers::before {
    background-image: url('../images/hero-talent.webp');
}

.page-hero--image.page-hero--media::before {
    background-image: url('../images/hero-industries.webp');
}


/* ============================================
   PROCESS STEPS
   ============================================ */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.process-step {
    position: relative;
    padding: 32px 28px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    height: 100%;
    transition: all var(--transition-medium);
}

.process-step:hover {
    background: var(--bg-card-hover);
    transform: translateY(-3px);
}

.process-step-number {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--orange);
    margin-bottom: 14px;
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 28px;
}

.process-timeline .process-step {
    position: relative;
    height: 100%;
    margin: 0;
    padding: 26px 28px;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    transition: all var(--transition-medium);
}

.process-timeline .process-step:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
    transform: none;
}

@media (max-width: 1199.98px) {
    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575.98px) {
    .process-timeline {
        grid-template-columns: 1fr;
    }
}


/* ============================================
   CONTACT
   ============================================ */
.contact-section {
    padding: var(--section-padding);
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    margin-bottom: 16px;
    transition: all var(--transition-medium);
}

.contact-info-item:hover {
    background: var(--bg-card-hover);
}

.contact-info-item i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    font-size: 22px;
    color: var(--accent);
    flex-shrink: 0;
}

.contact-info-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 6px;
}

.contact-info-item p,
.contact-info-item a {
    font-size: 14px;
    color: var(--grey-500);
    line-height: 1.7;
    margin: 0;
}

.contact-info-item a:hover {
    color: var(--accent);
}

.contact-form {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form .form-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
}

.contact-form .form-control,
.contact-form .form-select {
    background-color: var(--glass-bg);
    border: 1px solid var(--border-color);
    color: var(--white);
    border-radius: 6px;
    transition: all var(--transition-fast);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    background-color: var(--glass-bg-hover);
    border-color: var(--accent);
    color: var(--white);
    box-shadow: none;
}

.contact-form .form-control {
    padding: 12px 16px;
}

.contact-form .form-control::placeholder {
    color: var(--grey-600);
}

.contact-form .form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='none' stroke='%236BE0FF' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5'%3e%3cpath d='m2 6 6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px 16px;
    padding: 12px 44px 12px 16px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
}

.contact-form .form-select option {
    background-color: var(--dark-navy);
    color: var(--white);
}

.contact-form textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form .form-control[type="file"] {
    padding: 9px 16px;
}

.contact-form .form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.contact-form .form-check-label {
    font-size: 13px;
    color: var(--grey-500);
    line-height: 1.6;
}

.contact-form .form-check-label a {
    color: var(--accent);
    text-decoration: underline;
}

.contact-alert {
    padding: 16px 20px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 24px;
    border: 1px solid rgba(107, 224, 255, 0.35);
    color: var(--accent);
    background: rgba(107, 224, 255, 0.08);
}


/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll[data-animation="fade-right"] {
    transform: translateX(40px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ---- Word Reveal ---- */
.word-reveal {
    display: inline-block;
    opacity: 0;
    transform: translateY(14px);
    transition: opacity 0.45s var(--ease-smooth), transform 0.45s var(--ease-smooth);
}

.word-reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.word-chevron {
    display: inline-block;
    font-size: 0.62em;
    color: var(--accent);
    margin: 0 12px;
    vertical-align: middle;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.45s var(--ease-smooth), transform 0.45s var(--ease-smooth);
}

.word-chevron.visible {
    opacity: 1;
    transform: translateX(0);
}


/* ============================================
   PROMISE / VISION-MISSION / CHECKLIST
   ============================================ */
.promise-block {
    margin-top: 72px;
    padding: 40px 32px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    text-align: center;
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

.promise-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 12px;
}

.promise-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 300;
    color: var(--white);
    margin-bottom: 16px;
}

.promise-text {
    font-size: 17px;
    color: var(--grey-400);
    line-height: 1.7;
    max-width: 640px;
    margin: 0 auto;
}

.checklist {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
}

.checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--white);
    line-height: 1.6;
}

.checklist li i {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 3px;
}