

:root {
    
    --brand-blue:        #0D4256;
    --brand-blue-deep:   #0a3545;
    --brand-blue-mid:    #1a5d75;
    --brand-blue-light:  #1a6d8a;

    --accent-orange:     #E06F12;
    --accent-orange-soft:#f28c3a;

    --text-primary:      #3C3950;
    --text-secondary:    #5a6070;
    --text-muted:        #99A9B5;

    --bg-white:          #ffffff;
    --bg-tint:           #f8f9fb;
    --bg-dropdown-hover: #f5f7fa;

    --border-soft:       #e5e7eb;
    --border-dots:       #d0d5dd;
}

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

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-primary);
    line-height: 1.7;
    font-size: 16px;
    overflow-x: hidden;
    background: var(--bg-white);
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    line-height: 1.3;
    color: var(--brand-blue);
}

.container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 40px;
    box-sizing: border-box;
}

.reading-progress-bar {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--brand-blue);
    z-index: 10000;
    width: 0%;
    transition: width 0.1s linear;
}

.top-bar {
    background: var(--brand-blue);
    padding: 8px 0;
    font-size: 13px;
    color: var(--bg-white);
    z-index: 1000;
    position: relative;
}

.top-bar-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 24px;
}

.top-bar-link {
    color: var(--bg-white);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    transition: opacity 0.3s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.top-bar-link i {
    font-size: 12px;
    color: var(--accent-orange);
}

.header {
    background: var(--bg-white);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
}

.header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent-orange));
    z-index: 1000;
}

.header-content {
    display: flex;
    align-items: center;
    height: 80px;
}

.header-content .nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

.header-buttons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-item {
    position: relative;
}

.nav-link {
    padding: 10px 18px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
    letter-spacing: 0.3px;
}

.nav-link:hover {
    color: var(--brand-blue);
    border-bottom: 2px solid var(--accent-orange);
    padding-bottom: 8px;
}

.nav-link i {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.has-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

.header-home {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    margin-right: 16px;
    flex-shrink: 0;
    color: var(--brand-blue);
    transition: color 0.2s ease, transform 0.2s ease;
}

.header-home i {
    font-size: 20px;
}

.header-home:hover {
    color: var(--accent-orange);
    transform: translateY(-1px);
}

.header-home:focus-visible {
    outline: 2px solid var(--accent-orange);
    outline-offset: 2px;
    border-radius: 4px;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    min-width: 300px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 100;
}

.has-dropdown:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown li a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--text-primary);
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown li a:hover {
    background: var(--bg-dropdown-hover);
    color: var(--brand-blue);
    padding-left: 24px;
}

.header-cta {
    font-size: 14px;
    padding: 10px 24px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
    display: block;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.8px;
    cursor: pointer;
    border: none;
    transition: all 0.18s ease;
    text-align: center;
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
}

.btn-primary {
    background: var(--brand-blue);
    color: var(--bg-white);
    box-shadow: 0 2px 8px rgba(13, 66, 86, 0.2);
}

.btn-primary:hover {
    background: var(--accent-orange);
    color: var(--bg-white);
    box-shadow: 0 6px 16px rgba(224, 111, 18, 0.3);
    transform: translateY(-1px);
}

.btn-large {
    padding: 16px 40px;
    font-size: 17px;
}

.btn-secondary {
    background: transparent;
    color: var(--brand-blue);
    border: 2px solid var(--brand-blue);
}

.btn-secondary:hover {
    background: var(--brand-blue);
    color: var(--bg-white);
    transform: translateY(-1px);
}

.header-portal-link {
    font-size: 13px;
    padding: 8px 18px;
}

.ai-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-light));
    color: var(--bg-white);
    font-size: 10px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero {
    padding: 100px 0 120px;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background-color: var(--brand-blue-deep);
    background-image: url("../images/sections/ceosquare2.jpg");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 53, 69, 0.70) 0%, rgba(13, 66, 86, 0.70) 55%, rgba(26, 93, 117, 0.70) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero::after {
    content: "";
    position: absolute;
    inset: -15%;
    background:
        radial-gradient(ellipse 55% 45% at 28% 38%, rgba(26, 93, 117, 0.55) 0%, transparent 60%),
        radial-gradient(ellipse 40% 35% at 72% 68%, rgba(224, 111, 18, 0.12) 0%, transparent 55%);
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: screen;
    animation: heroAtmosphere 28s ease-in-out infinite alternate;
}

@keyframes heroAtmosphere {
    0%   { transform: translate(0%, 0%) scale(1); opacity: 0.75; }
    100% { transform: translate(8%, -4%) scale(1.08); opacity: 1; }
}

.hero > .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content > * {
    min-width: 0;
}

.hero-text h1,
.hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: var(--bg-white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(10, 53, 69, 0.55);
}

.hero-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.92);
    margin-bottom: 32px;
    line-height: 1.6;
    text-shadow: 0 1px 8px rgba(10, 53, 69, 0.50);
}

.hero .hero-text p,
.hero > .container > p {
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.65;
}

.hero .hero-text p:not(.hero-subtitle),
.hero > .container > p:not(.hero-subtitle) {
    margin-bottom: 28px;
}

.hero .hero-text p a:not(.btn),
.hero > .container > p a:not(.btn) {
    color: var(--accent-orange);
    text-decoration: underline;
}

.hero-text .btn + .btn {
    margin-left: 12px;
}

.hero .btn-primary,
.hero .btn-hero-cta {
    background: var(--bg-white);
    color: var(--brand-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

.hero .btn-primary:hover,
.hero .btn-hero-cta:hover {
    background: var(--accent-orange);
    color: var(--bg-white);
    box-shadow: 0 6px 16px rgba(224, 111, 18, 0.4);
    transform: translateY(-1px);
}

.hero .btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border: 2px solid rgba(255, 255, 255, 0.75);
}

.hero .btn-secondary:hover {
    background: var(--bg-white);
    color: var(--brand-blue);
    border-color: var(--bg-white);
}

body.loaded .hero .btn-hero-cta {
    animation: heroCtaPulseOnDark 1.6s ease-out 0.8s 2;
}

@keyframes heroCtaPulseOnDark {
    0%   { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(224, 111, 18, 0.55); }
    70%  { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 14px rgba(224, 111, 18, 0); }
    100% { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(224, 111, 18, 0); }
}

@keyframes kenBurns {
    0%   { transform: scale(1.00) translate(0, 0); }
    50%  { transform: scale(1.05) translate(-0.8%, -0.6%); }
    100% { transform: scale(1.02) translate(0.4%, -0.3%); }
}

@media (prefers-reduced-motion: no-preference) {
    .hero-image.hero-image-animated {
        will-change: transform;
        animation: kenBurns 22s ease-in-out infinite alternate;
    }
}

.hero-image {
    position: relative;
    z-index: 0;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.hero-image::before {
    content: "";
    position: absolute;
    top: -18px;
    left: -18px;
    width: 72px;
    height: 72px;
    background: var(--accent-orange);
    border-radius: 8px;
    z-index: -1;
}

.hero-image::after {
    content: "";
    position: absolute;
    bottom: -14px;
    right: -14px;
    width: 120px;
    height: 6px;
    background: var(--accent-orange);
    border-radius: 4px;
    z-index: -1;
}

.hero-image > img:first-child {
    border-radius: 12px;
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    position: relative;
    z-index: 1;
}

.hero-design-element {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    opacity: 0.6;
    z-index: -1;
}

.services-overview {
    padding: 80px 0;
    background: var(--bg-tint);
}

.services-overview-dark {
    position: relative;
    background-color: var(--brand-blue-deep);
    background-image: url("../images/sections/ceorec2.jpg");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.services-overview-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(10, 53, 69, 0.70) 0%, rgba(13, 66, 86, 0.70) 60%, rgba(26, 93, 117, 0.70) 100%);
    z-index: 0;
    pointer-events: none;
}

.services-overview-dark > .container {
    position: relative;
    z-index: 1;
}

.services-overview-dark .section-title {
    color: var(--bg-white);
}

.services-overview-dark .section-description {
    color: rgba(255, 255, 255, 0.78);
}

.section-title {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 16px;
}

.section-title::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--accent-orange);
    border-radius: 2px;
    transition: width 0.5s ease;
}

.section-title.is-visible::after,
.no-js .section-title::after {
    width: 48px;
}

.section-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.service-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 28px 24px 28px 28px;
    text-align: left;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent-orange);
    transition: width 0.3s ease;
}

.service-card:hover::before {
    width: 6px;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-card .card-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin-bottom: 4px;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-blue);
    border-radius: 50%;
    flex-shrink: 0;
}

.service-icon img {
    max-width: 28px;
    max-height: 28px;
}

.service-card h3 {
    font-size: 16px;
    color: var(--brand-blue);
    font-weight: 600;
    line-height: 1.3;
}

.learn-more {
    font-size: 13px;
    color: var(--brand-blue);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    padding: 8px 20px;
    border: 2px solid var(--brand-blue);
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: auto;
    align-self: flex-start;
}

.learn-more i {
    transition: transform 0.3s ease;
    font-size: 12px;
}

.service-card:hover .learn-more {
    color: var(--bg-white);
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    gap: 10px;
}

.service-card:hover .learn-more i {
    transform: translateX(4px);
}

.service-detail {
    padding: 80px 0;
}

.service-detail.alt-layout {
    position: relative;
    background-color: var(--brand-blue-deep);
    background-image: url("../images/sections/coaching-motivation.jpg");
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

.service-detail.alt-layout#assessment-services {
    background-image: url("../images/sections/rectangle-78.jpg");
}

.service-detail.alt-layout#team-services {
    background-image: url("../images/sections/orgteamsquare.jpg");
}

.service-detail.alt-layout#ai-assessment {
    background-image: url("../images/sections/diverse-team.jpg");
}

.service-detail.alt-layout::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 53, 69, 0.70) 0%, rgba(13, 66, 86, 0.66) 55%, rgba(26, 93, 117, 0.62) 100%);
    z-index: 0;
    pointer-events: none;
}

.service-detail.alt-layout > .container {
    position: relative;
    z-index: 1;
}

.service-detail.alt-layout .service-detail-text h2 {
    color: var(--bg-white);
}

.service-detail.alt-layout .service-detail-text p,
.service-detail.alt-layout .service-bullets li {
    color: rgba(255, 255, 255, 0.82);
}

.service-detail.alt-layout .service-detail-text p strong,
.service-detail.alt-layout .service-bullets li strong {
    color: var(--bg-white);
}

.service-detail.alt-layout .service-detail-subtitle {
    color: rgba(255, 255, 255, 0.92);
    border-left-color: var(--accent-orange);
}

.service-detail.alt-layout .btn-primary {
    background: var(--bg-white);
    color: var(--brand-blue);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

.service-detail.alt-layout .btn-primary:hover {
    background: var(--accent-orange);
    color: var(--bg-white);
    box-shadow: 0 6px 18px rgba(224, 111, 18, 0.4);
}

.service-detail.alt-layout .btn-secondary {
    background: transparent;
    color: var(--bg-white);
    border-color: var(--bg-white);
}

.service-detail.alt-layout .btn-secondary:hover {
    background: var(--accent-orange);
    color: var(--bg-white);
    border-color: var(--accent-orange);
}

.service-detail.alt-layout .service-detail-text a:not(.btn),
.service-detail.alt-layout .service-bullets a:not(.btn) {
    color: var(--accent-orange);
    text-decoration: underline;
    font-weight: 600;
}

.service-detail.alt-layout .service-detail-text a:not(.btn):hover,
.service-detail.alt-layout .service-bullets a:not(.btn):hover {
    color: var(--accent-orange-soft);
}

.service-detail-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-detail-content.reverse {
    direction: rtl;
}

.service-detail-content.reverse > * {
    direction: ltr;
}

.service-detail-image {
    position: relative;
    z-index: 0;
}

.service-detail-image img {
    border-radius: 12px;
    width: 100%;
    height: auto;
    max-height: 620px;
    object-fit: cover;
    
    object-position: center top;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
}

#svp-coaching .service-detail-image img {
    object-position: center 30%;
}

.service-detail:not(.alt-layout) .service-detail-image::before {
    content: "";
    position: absolute;
    inset: 20px -18px -18px 20px;
    background: var(--brand-blue);
    border-radius: 12px;
    z-index: 0;
    opacity: 0.92;
}

.service-detail-content.reverse .service-detail-image::before {
    inset: 20px 20px -18px -18px;
}

.service-detail-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 16px;
}

.service-detail-subtitle {
    font-size: 17px;
    font-weight: 500;
    color: var(--brand-blue);
    margin-bottom: 16px;
    font-style: italic;
    border-left: 3px solid var(--accent-orange);
    padding-left: 14px;
}

.service-detail-text p {
    margin-bottom: 16px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.service-bullets {
    margin: 20px 0;
    padding-left: 20px;
}

.service-bullets li {
    margin-bottom: 12px;
    color: var(--text-secondary);
    line-height: 1.7;
    position: relative;
    padding-left: 16px;
    list-style: none;
}

.service-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-orange);
}

.service-detail-text .btn {
    margin-top: 24px;
}

.team-building-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.team-building-images .tb-rect {
    grid-column: 1 / -1;
}

.transitioning-section {
    padding: 80px 0;
    background: var(--bg-tint);
}

.transitioning-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
}

.transitioning-image img {
    border-radius: 16px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.transitioning-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 16px;
}

.transitioning-text > p {
    color: var(--text-secondary);
    margin-bottom: 24px;
    line-height: 1.7;
}

.transition-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-top: 20px;
}

.transition-col h3 {
    font-size: 22px;
    color: var(--brand-blue);
    margin-bottom: 12px;
    font-weight: 600;
}

.transition-col p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
    font-size: 15px;
}

.cta-banner {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue) 40%, var(--brand-blue-mid) 100%);
    text-align: center;
}

.cta-banner h2 {
    color: var(--bg-white);
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 28px;
    padding-top: 28px;
    letter-spacing: 1px;
    position: relative;
}

.cta-banner h2::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 64px;
    height: 4px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 28px;
    text-transform: none;
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.cta-banner .btn-primary {
    background: var(--bg-white);
    color: var(--brand-blue);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.cta-banner .btn-primary:hover {
    background: var(--accent-orange);
    color: var(--bg-white);
    box-shadow: 0 6px 20px rgba(224, 111, 18, 0.4);
}

.testimonials {
    padding: 80px 0;
    background: var(--bg-white);
    overflow: hidden;
}

.testimonials-slider {
    position: relative;
    overflow: hidden;
    margin-top: 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 0 40px;
}

.testimonial-quote {
    background: var(--bg-tint);
    border-radius: 12px;
    padding: 40px;
    position: relative;
    margin-bottom: 24px;
    border-left: 4px solid var(--accent-orange);
}

.testimonial-quote i {
    color: var(--accent-orange);
    font-size: 28px;
    margin-bottom: 16px;
    display: block;
    opacity: 0.55;
}

.testimonial-quote p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-secondary);
    font-style: italic;
}

.testimonial-author {
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.testimonial-author strong {
    font-size: 18px;
    color: var(--brand-blue);
    font-weight: 700;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-muted);
}

.testimonials-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 32px;
}

.testimonial-prev,
.testimonial-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--brand-blue);
    background: transparent;
    color: var(--brand-blue);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.testimonial-prev:hover,
.testimonial-next:hover {
    background: var(--brand-blue);
    color: var(--bg-white);
}

.testimonial-dots {
    display: flex;
    gap: 8px;
}

.testimonial-dot {
    
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: transparent;
    position: relative;
    padding: 0;
    cursor: pointer;
    border: none;
}

.testimonial-dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border-dots);
    transition: all 0.3s ease;
}

.testimonial-dot.active::before {
    background: var(--brand-blue);
    width: 28px;
    border-radius: 5px;
}

.clients {
    padding: 60px 0 70px;
    background: linear-gradient(135deg, var(--brand-blue-deep) 0%, var(--brand-blue) 100%);
}

.clients .section-title {
    color: var(--bg-white);
}

.clients .section-description {
    color: rgba(255, 255, 255, 0.82);
}

.clients-carousel {
    position: relative;
    margin-top: 30px;
}

.clients-scroll-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.95);
    color: var(--brand-blue);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
    font-size: 15px;
    transition: background 0.2s ease, color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.clients-scroll-btn:hover {
    background: var(--accent-orange);
    color: var(--bg-white);
    transform: translateY(-50%) scale(1.08);
}

.clients-scroll-btn:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

.clients-scroll-prev { left: -14px; }
.clients-scroll-next { right: -14px; }

@media (max-width: 767px) {
    
    .clients-scroll-btn {
        display: none;
    }
}

.clients-grid {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 1fr);
    grid-auto-columns: 150px;
    gap: 14px;
    padding-bottom: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x proximity;
    scroll-padding: 0 20px;
    
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(255, 255, 255, 0.4) rgba(255, 255, 255, 0.08);
}

.clients-grid::-webkit-scrollbar {
    height: 8px;
}

.clients-grid::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 4px;
}

.clients-grid::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 4px;
}

.clients-grid::-webkit-scrollbar-thumb:hover {
    background: var(--accent-orange);
}

.client-logo {
    background: var(--bg-white);
    border-radius: 10px;
    padding: 14px 16px;
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    scroll-snap-align: start;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.client-logo img {
    max-width: 110px;
    max-height: 44px;
    object-fit: contain;
}

.jobs-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.jobs-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.jobs-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--brand-blue);
    margin-bottom: 16px;
}

.jobs-content .service-detail-subtitle {
    text-align: center;
}

.jobs-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer {
    background: var(--brand-blue);
    color: var(--bg-white);
    padding: 70px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.1fr;
    grid-template-rows: auto auto;
    grid-template-areas:
        "about sol  insights contact"
        "form  form form     form";
    column-gap: 32px;
    row-gap: 0;
}
.footer-about                        { grid-area: about; }
.footer-links-group--solutions       { grid-area: sol; }
.footer-links-group--insights        { grid-area: insights; }
.footer-contact-info                 { grid-area: contact; }
.footer-form-row                     { grid-area: form; }

.footer-links-group h4 {
    
    color: var(--bg-white);
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 10px;
    position: relative;
}
.footer-links-group h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
}
.footer-links-group ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links-group ul li {
    margin-bottom: 8px;
}
.footer-links-group ul li:last-child {
    margin-bottom: 0;
}
.footer-links-group ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s;
}
.footer-links-group ul li a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.footer-link-shimmer a {
    position: relative;
    display: inline-block;
    font-weight: 600;
    background: linear-gradient(
        100deg,
        rgba(255, 255, 255, 0.88) 0%,
        rgba(255, 255, 255, 0.88) 35%,
        rgba(255, 255, 255, 1)    47%,
        #ffd97d                   50%,
        rgba(255, 255, 255, 1)    53%,
        rgba(255, 255, 255, 0.88) 65%,
        rgba(255, 255, 255, 0.88) 100%
    );
    
    background-size: 300% 100%;
    background-position: 100% center;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
    animation: footer-link-shimmer 4s linear infinite;
    
    will-change: background-position;
}
.footer-link-shimmer a:hover {
    
    animation-play-state: paused;
    -webkit-text-fill-color: var(--bg-white);
    color: var(--bg-white);
    padding-left: 4px;
}
@keyframes footer-link-shimmer {
    
    0%, 12% { background-position: 100% center; }
    100%    { background-position: 0% center; }
}
@media (prefers-reduced-motion: reduce) {
    .footer-link-shimmer a {
        animation: none;
        -webkit-text-fill-color: var(--bg-white);
        color: var(--bg-white);
    }
}

.footer-form-row {
    min-width: 0;
    margin-top: 40px;
}
.footer-form-row h3 {
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
    position: relative;
}
.footer-form-row h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.footer-form-horizontal {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 28px;
    align-items: stretch;
}
.footer-form-horizontal > .ff-col {
    min-width: 0;
}
.footer-form-horizontal .ff-col-left {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.footer-form-horizontal .ff-col-right {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-form-horizontal .form-field {
    margin-bottom: 0;
}

.footer-form-horizontal .ff-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
}

.footer-form-horizontal .ff-company-title {
    overflow: hidden;
    max-height: 80px;       
    opacity: 1;
    margin-top: 0;
    transition: max-height 0.4s ease,
                opacity 0.3s ease,
                margin-top 0.4s ease;
}
.footer-form-horizontal .ff-company-title.is-collapsed {
    max-height: 0;
    opacity: 0;
    margin-top: -18px;      
    pointer-events: none;
}

.footer-form-horizontal .ff-email-phone {
    grid-template-columns: 1fr 0fr;
    column-gap: 0;
    transition: grid-template-columns 0.4s ease,
                column-gap 0.4s ease;
}
.footer-form-horizontal .ff-email-phone.is-expanded {
    grid-template-columns: 1fr 1fr;
    column-gap: 14px;
}
.footer-form-horizontal .ff-phone-wrap {
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease 0.15s;
}
.footer-form-horizontal .ff-email-phone.is-expanded .ff-phone-wrap {
    opacity: 1;
    pointer-events: auto;
}

.footer-form-horizontal .form-field--message {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.footer-form-horizontal .form-field--message textarea {
    flex: 1;
    height: 100%;
    min-height: 100%;
    resize: vertical;
}
.footer-form-horizontal button[type="submit"] {
    width: 100%;
    min-width: 0;
    margin: 0;
    
    height: 50px;
    padding: 0 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.footer-col {
    min-width: 0;
}

.footer-logo {
    max-width: 200px;
    margin-bottom: 12px;
}

.footer-about p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

.footer-col h3 {
    color: var(--bg-white);
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px;
    padding-bottom: 10px;
    font-family: 'Playfair Display', serif;
    position: relative;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 32px;
    height: 2px;
    background: var(--accent-orange);
    border-radius: 2px;
}

.footer-contact-info ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
.footer-contact-info ul li:last-child {
    margin-bottom: 0;
}
.footer-contact-info ul li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact-info ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-contact-info ul li a:hover {
    color: var(--bg-white);
}

.footer-contact-info ul li i {
    width: 16px;
    color: var(--accent-orange);
}

.footer-links ul li {
    margin-bottom: 10px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    transition: all 0.3s;
}

.footer-links ul li a:hover {
    color: var(--bg-white);
    padding-left: 4px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    margin-bottom: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--bg-white);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    transition: border-color 0.3s;
    outline: none;
}

.contact-form textarea {
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--accent-orange);
}

.contact-form .btn {
    width: 100%;
    padding: 12px;
}

.contact-form .btn-primary {
    background: var(--bg-white);
    color: var(--brand-blue);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.contact-form .btn-primary:hover {
    background: var(--accent-orange);
    color: var(--bg-white);
    box-shadow: 0 4px 16px rgba(224, 111, 18, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 0;
    margin-top: 18px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    
    color: rgba(255, 255, 255, 0.78);
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--brand-blue);
    color: var(--bg-white);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--accent-orange);
    transform: translateY(-3px);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
}

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

.portal-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 32px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.portal-feature {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    text-align: left;
}

.portal-feature i {
    font-size: 24px;
    color: var(--brand-blue);
    flex-shrink: 0;
    margin-top: 4px;
}

.portal-feature h3 {
    font-size: 18px;
    margin-bottom: 6px;
}

.portal-feature p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.portal-hub {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 40px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.hub-center {
    grid-column: 1 / -1;
    text-align: center;
    margin-bottom: 12px;
}

.hub-center .hub-label {
    display: inline-block;
    background: var(--brand-blue);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 12px;
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
}

.hub-spoke {
    text-align: center;
    padding: 24px 16px;
    background: var(--bg-white);
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hub-spoke:hover {
    background: var(--brand-blue);
    color: var(--bg-white);
}

.hub-spoke:hover h4,
.hub-spoke:hover p {
    color: var(--bg-white);
}

.hub-spoke h4 {
    font-size: 16px;
    color: var(--brand-blue);
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.hub-spoke p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    transition: color 0.3s ease;
}

.blog-article {
    max-width: 720px;
    margin: 0 auto;
    padding: 40px 0 80px;
}

.blog-breadcrumb {
    margin-bottom: 24px;
}

.blog-breadcrumb a {
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.blog-breadcrumb a:hover {
    color: var(--accent-orange);
}

.blog-article-hero {
    margin-bottom: 32px;
}

.blog-article-hero h1 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 12px;
    line-height: 1.25;
}

.blog-article-hero .blog-meta {
    font-size: 14px;
    color: var(--text-muted);
}

.blog-article-image {
    border-radius: 12px;
    width: 100%;
    height: auto;
    margin-bottom: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.blog-article-body {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

.blog-article-body p {
    margin-bottom: 20px;
}

.blog-article-body h2 {
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 16px;
}

.blog-article-body h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
}

.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--border-soft);
}

.related-posts h2 {
    font-size: 28px;
    margin-bottom: 24px;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

@media (max-width: 991px) {
    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero-image {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .service-detail-content,
    .service-detail-content.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
        direction: ltr;
    }

    .transitioning-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .transition-columns {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "about"
            "sol"
            "insights"
            "contact"
            "form";
        row-gap: 28px;
    }

    .footer-form-horizontal {
        grid-template-columns: 1fr;
        row-gap: 18px;
    }
    .footer-form-horizontal .form-field--message textarea {
        min-height: 96px;
    }

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

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

    .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 30px;
    }

    .service-detail-text h2 {
        font-size: 30px;
    }

    .cta-banner h2 {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .top-bar {
        display: none;
    }

    .header-content {
        height: 70px;
        position: relative;
        justify-content: space-between;
    }

    .header-home {
        margin-right: 0;
    }

    .logo {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -50%);
        z-index: 1;
    }

    .logo img {
        height: 40px;
    }

    .nav {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--bg-white);
        z-index: 1000;
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }

    .nav.active {
        opacity: 1;
        visibility: visible;
    }

    .nav-list {
        flex-direction: column;
        gap: 4px;
    }

    .nav-link {
        font-size: 20px;
        padding: 14px 24px;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .has-dropdown.open .dropdown {
        display: block;
    }

    .mobile-toggle {
        display: flex;
    }

    .header-buttons {
        display: none;
    }

    .hero {
        padding: 40px 0 60px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }


    .hero-text .btn {
        display: block;
        width: max-content;
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .hero-text .btn + .btn {
        margin-left: auto;
        margin-right: auto;
        margin-top: 14px;
    }

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

    .portal-features-grid {
        grid-template-columns: 1fr;
    }

    .portal-hub {
        grid-template-columns: 1fr;
    }

    .blog-article {
        padding: 20px 0 60px;
    }

    .blog-article-hero h1 {
        font-size: 28px;
    }

    .service-detail {
        padding: 50px 0;
    }

    .service-detail-text h2 {
        font-size: 26px;
    }

    .clients-grid {
        grid-auto-columns: 130px;
        gap: 12px;
    }

    .client-logo {
        padding: 14px;
        min-height: 60px;
    }

    .client-logo img {
        max-width: 80px;
        max-height: 35px;
    }

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

    .footer-form-horizontal {
        grid-template-columns: 1fr;
    }
    .footer-links ul {
        columns: 1;
    }
    .footer-form-horizontal button[type="submit"] {
        justify-self: stretch;
    }

    .testimonial-card {
        padding: 0 10px;
    }

    .testimonial-quote {
        padding: 24px;
    }

    .cta-banner {
        padding: 50px 0;
    }

    .cta-banner h2 {
        font-size: 22px;
    }

    .jobs-content h2 {
        font-size: 28px;
    }

    .team-building-images {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 28px;
    }

    .transitioning-text h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-auto-columns: 120px;
    }

    .hero-text h1 {
        font-size: 24px;
    }

    .container {
        padding: 0 16px;
    }
}

@media (min-width: 1600px) {
    .container {
        max-width: 1600px;
        padding: 0 60px;
    }

    .hero-text h1 {
        font-size: 56px;
    }

    .hero-content {
        gap: 80px;
    }

    .service-detail-content {
        gap: 80px;
    }

    .section-title {
        font-size: 42px;
    }

    .service-detail-text h2 {
        font-size: 40px;
    }

    .clients-grid {
        grid-auto-columns: 170px;
    }

    .footer-grid {
        gap: 60px;
    }
}

@media (min-width: 1920px) {
    .container {
        max-width: 1800px;
        padding: 0 80px;
    }

    .hero {
        padding: 80px 0 100px;
    }

    .services-overview,
    .service-detail,
    .testimonials,
    .clients,
    .jobs-section {
        padding: 100px 0;
    }
}

@keyframes heroCtaPulse {
    0%   { box-shadow: 0 2px 8px rgba(13, 66, 86, 0.2), 0 0 0 0 rgba(224, 111, 18, 0.45); }
    70%  { box-shadow: 0 2px 8px rgba(13, 66, 86, 0.2), 0 0 0 12px rgba(224, 111, 18, 0); }
    100% { box-shadow: 0 2px 8px rgba(13, 66, 86, 0.2), 0 0 0 0 rgba(224, 111, 18, 0); }
}

body.loaded .btn-hero-cta {
    animation: heroCtaPulse 1.6s ease-out 0.8s 2;
}

.header-cta.btn-primary {
    background: var(--accent-orange);
    color: var(--bg-white);
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(224, 111, 18, 0.25);
}

.header-cta.btn-primary:hover {
    background: var(--brand-blue);
    color: var(--bg-white);
    box-shadow: 0 6px 16px rgba(13, 66, 86, 0.3);
    transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
    body.loaded .btn-hero-cta,
    body.loaded .hero .btn-hero-cta {
        animation: none;
    }

    .section-title::after {
        transition: none;
    }

    .animate-on-scroll {
        transition-delay: 0s !important;
    }

    .services-overview-dark,
    .service-detail.alt-layout,
    .hero {
        background-attachment: scroll;
    }

    .hero-image.hero-image-animated,
    .hero::after {
        animation: none;
    }
}

@media (max-width: 1024px) {
    .services-overview-dark,
    .service-detail.alt-layout,
    .hero {
        background-attachment: scroll;
    }
}

.bg-white { background: var(--bg-white) !important; }
.bg-tint  { background: var(--bg-tint)  !important; }

.section-label {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--brand-blue);
    margin-bottom: 14px;
}

.service-detail.alt-layout .section-label,
.cta-banner .section-label,
.services-overview-dark .section-label,
.clients .section-label {
    color: var(--accent-orange);
}

.credibility-strip {
    background: var(--bg-tint);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    padding: 22px 0;
    text-align: center;
}

.credibility-strip p {
    margin: 0;
    color: var(--brand-blue);
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

.intro-band {
    padding: 80px 0;
    text-align: center;
}

.intro-band .intro-band-content {
    max-width: 820px;
    margin: 0 auto;
}

.intro-band h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 600;
    color: var(--brand-blue);
    margin-bottom: 20px;
    line-height: 1.25;
}

.intro-band p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
}

.outcomes-section {
    padding: 90px 0;
    background: var(--bg-white);
}

.outcomes-section .section-title-wrap {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.outcomes-grid.is-four {
    grid-template-columns: repeat(4, 1fr);
    max-width: 1180px;
}

.outcome-card {
    text-align: center;
    padding: 28px 18px;
    border-radius: 12px;
    background: var(--bg-tint);
    border: 1px solid var(--border-soft);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

a.outcome-card {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.outcome-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(13, 66, 86, 0.08);
}

a.outcome-card:hover,
a.outcome-card:focus-visible {
    border-color: var(--accent-orange);
    outline: none;
}

a.outcome-card:hover .outcome-icon,
a.outcome-card:focus-visible .outcome-icon {
    transform: scale(1.08);
}

.outcome-card .outcome-icon {
    color: var(--accent-orange);
    font-size: 28px;
    margin-bottom: 14px;
    transition: transform 0.25s ease;
}

.outcome-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--brand-blue);
    line-height: 1.4;
    margin: 0;
    text-transform: none;
}

@media (max-width: 991px) {
    .outcomes-grid,
    .outcomes-grid.is-four {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .outcomes-grid,
    .outcomes-grid.is-four {
        grid-template-columns: 1fr;
    }
}

.solutions-explore-cta {
    text-align: center;
    margin-top: 50px;
}
.solutions-explore-cta .btn-large i {
    margin-left: 8px;
    transition: transform 0.25s ease;
}
.solutions-explore-cta .btn-large:hover i {
    transform: translateX(4px);
}

.case-study-teaser-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 1180px;
    margin: 48px auto 0;
}

.case-study-teaser {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 28px 30px;
    border-radius: 14px;
    background: var(--bg-white, #ffffff);
    border: 1px solid var(--border-soft);
    border-left: 3px solid var(--accent-orange);
    text-decoration: none;
    color: inherit;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.case-study-teaser:hover,
.case-study-teaser:focus-visible {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(13, 66, 86, 0.10);
    border-left-color: var(--brand-blue);
}

.case-study-teaser .case-study-tag {
    align-self: flex-start;
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-orange);
}

.case-study-teaser h3 {
    margin: 0;
    font-family: 'Playfair Display', 'Inter', serif;
    font-size: 22px;
    font-weight: 600;
    line-height: 1.25;
    color: var(--brand-blue);
}

.case-study-teaser p {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    line-height: 1.55;
    color: var(--brand-blue);
}

.case-study-teaser .learn-more {
    margin-top: auto;
}

.case-study-teaser:hover .learn-more,
.case-study-teaser:focus-visible .learn-more {
    color: var(--bg-white);
    background: var(--accent-orange);
    border-color: var(--accent-orange);
    gap: 10px;
}
.case-study-teaser:hover .learn-more i,
.case-study-teaser:focus-visible .learn-more i {
    transform: translateX(4px);
}

@media (max-width: 768px) {
    .case-study-teaser-row {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 36px;
    }
    .case-study-teaser {
        padding: 24px 22px;
    }
}

.why-arcadia-section {
    padding: 90px 0;
    background: var(--bg-tint);
}

.why-arcadia-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.why-arcadia-list {
    list-style: none;
    padding: 0;
    margin: 36px 0 0;
    display: grid;
    gap: 18px;
    text-align: left;
}

.why-arcadia-list li {
    position: relative;
    padding: 16px 18px 16px 52px;
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    border-radius: 10px;
    color: var(--text-primary);
    line-height: 1.55;
    font-size: 16px;
    box-shadow: 0 1px 3px rgba(13, 66, 86, 0.04);
}

.why-arcadia-list li::before {
    content: "\f00c"; 
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--accent-orange);
    color: var(--bg-white);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solutions-overview-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 1080px;
    margin: 0 auto;
}

.solutions-overview-grid.is-five {
    grid-template-columns: repeat(6, 1fr);
    max-width: 1200px;
}

.solutions-overview-grid.is-five > .solution-card {
    grid-column: span 2;
}

.solutions-overview-grid.is-five > .solution-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.solutions-overview-grid.is-five > .solution-card:nth-child(5) {
    grid-column: span 2;
}

.solution-card {
    background: var(--bg-white);
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 36px 32px;
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    gap: 14px;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 66, 86, 0.10);
    border-color: var(--brand-blue);
}

.solution-card .solution-icon {
    color: var(--accent-orange);
    font-size: 26px;
}

.solution-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 600;
    color: var(--brand-blue);
    margin: 0;
    line-height: 1.3;
    text-transform: none;
}

.solution-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

.solution-card .learn-more {
    margin-top: auto;
    color: var(--brand-blue);
    font-weight: 600;
    font-size: 14px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.25s ease, color 0.25s ease;
}

.solution-card:hover .learn-more {
    color: var(--accent-orange);
    gap: 10px;
}

@media (max-width: 991px) {
    .solutions-overview-grid,
    .solutions-overview-grid.is-five {
        grid-template-columns: 1fr;
    }
    .solutions-overview-grid.is-five > .solution-card,
    .solutions-overview-grid.is-five > .solution-card:nth-child(4),
    .solutions-overview-grid.is-five > .solution-card:nth-child(5) {
        grid-column: auto;
    }
}

.themes-strip {
    padding: 36px 0;
    text-align: center;
    background: var(--brand-blue);
    color: rgba(255, 255, 255, 0.92);
}

.themes-strip .container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 14px 28px;
}

.themes-strip span {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
    white-space: nowrap;
}

.themes-strip span + span::before {
    content: "·";
    color: var(--accent-orange);
    margin-right: 28px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .themes-strip .container {
        flex-direction: column;
        gap: 8px;
    }
    .themes-strip span + span::before {
        display: none;
    }
}

.final-cta {
    padding: 90px 0;
    text-align: center;
    background: var(--bg-tint);
}

.final-cta .final-cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.final-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 34px;
    color: var(--brand-blue);
    margin-bottom: 18px;
    line-height: 1.25;
    font-weight: 600;
}

.final-cta p {
    color: var(--text-secondary);
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 28px;
}

.reveal-grid > * {
    opacity: 0;
    transform: translate3d(-10px, 28px, 0);
    transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}
.reveal-grid > .is-visible {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

.reveal-text {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    transition: opacity 0.85s cubic-bezier(0.22, 0.61, 0.36, 1),
                transform 0.85s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform, opacity;
}
.reveal-text.is-revealed {
    opacity: 1;
    transform: translate3d(0, 0, 0);
}

[data-counter] {
    display: inline-block;
    font-variant-numeric: tabular-nums;
    transition: color 0.4s ease;
}
[data-counter].is-counting { color: var(--accent-orange); }
[data-counter].is-counted  { color: inherit; }

.is-magnetic {
    transition: transform 0.35s cubic-bezier(0.22, 0.61, 0.36, 1);
    will-change: transform;
}

.tilt-card {
    transform-style: preserve-3d;
    transition: transform 0.45s cubic-bezier(0.22, 0.61, 0.36, 1),
                box-shadow 0.45s ease;
    will-change: transform;
}
.tilt-card.is-tilting {
    transition: transform 0.08s linear, box-shadow 0.3s ease;
}

.hero-img-kenburns,
.parallax-bg {
    --parallax-y: 0px;
    transform: translate3d(0, var(--parallax-y), 0);
}

.sticky-story {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 80px;
    padding: 60px 0;
    align-items: start;
}
.sticky-story-text {
    display: flex;
    flex-direction: column;
    gap: 70px;
}
.sticky-story-step {
    opacity: 0.32;
    transform: translateY(6px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.sticky-story-step.is-active {
    opacity: 1;
    transform: translateY(0);
}
.sticky-story-step .stage-number {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    color: var(--accent-orange);
    line-height: 1;
    margin-bottom: 14px;
}
.sticky-story-step h3 {
    font-size: 28px;
    color: var(--brand-blue);
    margin-bottom: 14px;
}
.sticky-story-step p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.75;
    margin-bottom: 14px;
}
.sticky-story-visual {
    position: sticky;
    top: 110px;
    aspect-ratio: 4 / 5;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 30px 60px -22px rgba(10, 53, 69, 0.28);
    background: var(--bg-tint);
}
.sticky-story-visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.06);
    transition: opacity 0.7s ease, transform 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.sticky-story-visual img.is-active {
    opacity: 1;
    transform: scale(1);
}
@media (max-width: 900px) {
    .sticky-story {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .sticky-story-visual {
        position: relative;
        top: auto;
        max-height: 420px;
    }
    .sticky-story-step { opacity: 1; }
}

.reveal-grid > *:not(.is-visible) .solution-icon,
.reveal-grid > *:not(.is-visible) .outcome-icon {
    opacity: 0;
    transform: scale(0.7) rotate(-8deg);
}
.solution-icon,
.outcome-icon {
    transition: opacity 0.6s ease 0.15s,
                transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) 0.15s;
    transform-origin: center;
}
.reveal-grid > .is-visible .solution-icon,
.reveal-grid > .is-visible .outcome-icon {
    opacity: 1;
    transform: scale(1) rotate(0);
}

.form-field {
    position: relative;
    margin-bottom: 18px;
}
.form-field input,
.form-field textarea,
.form-field select {
    width: 100%;
    padding: 22px 16px 8px;
    border: 1px solid var(--border-soft);
    border-radius: 8px;
    background: var(--bg-white);
    color: var(--text-primary);
    font: 500 15px 'Inter', -apple-system, sans-serif;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field textarea { padding-top: 26px; min-height: 120px; resize: vertical; }
.form-field input:focus,
.form-field textarea:focus,
.form-field select:focus {
    outline: none;
    border-color: var(--brand-blue-mid);
    box-shadow: 0 0 0 4px rgba(26, 93, 117, 0.12);
}
.form-field label {
    position: absolute;
    left: 16px;
    top: 16px;
    right: 16px;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    transform-origin: left top;
    transition: top 0.2s ease, font-size 0.2s ease, color 0.2s ease;
    background: transparent;
    
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.form-field input:focus ~ label,
.form-field textarea:focus ~ label,
.form-field input:not(:placeholder-shown) ~ label,
.form-field textarea:not(:placeholder-shown) ~ label,
.form-field select:focus ~ label,
.form-field select:not([data-empty]) ~ label {
    top: 5px;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--brand-blue-mid);
}
.form-field.has-error input,
.form-field.has-error textarea,
.form-field.has-error select {
    border-color: #c53030;
    box-shadow: 0 0 0 4px rgba(197, 48, 48, 0.10);
    animation: formShake 0.45s ease;
}

.footer-form .form-field {
    margin-bottom: 0;
}
.footer-form .form-field input,
.footer-form .form-field textarea,
.footer-form .form-field select {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.20);
    color: var(--bg-white);
    margin-bottom: 0;
}
.footer-form .form-field textarea {
    min-height: 96px;
}
.footer-form .form-field select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 38px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='%23ffffff' opacity='0.7'><path d='M6 8 0 0h12z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 10px 7px;
    cursor: pointer;
}
.footer-form .form-field select option {
    background: var(--brand-blue);
    color: var(--bg-white);
}
.footer-form .form-field input:focus,
.footer-form .form-field textarea:focus,
.footer-form .form-field select:focus {
    border-color: var(--accent-orange);
    box-shadow: 0 0 0 4px rgba(224, 111, 18, 0.18);
}
.footer-form .form-field label {
    color: rgba(255, 255, 255, 0.55);
}
.footer-form .form-field input:focus ~ label,
.footer-form .form-field textarea:focus ~ label,
.footer-form .form-field input:not(:placeholder-shown) ~ label,
.footer-form .form-field textarea:not(:placeholder-shown) ~ label,
.footer-form .form-field select:focus ~ label,
.footer-form .form-field select:not([data-empty]) ~ label {
    color: var(--accent-orange);
}
.footer-form .form-field input:-webkit-autofill,
.footer-form .form-field textarea:-webkit-autofill {
    -webkit-text-fill-color: var(--bg-white);
    -webkit-box-shadow: 0 0 0 1000px rgba(13, 66, 86, 0.65) inset;
    caret-color: var(--bg-white);
}
@keyframes formShake {
    0%, 100% { transform: translateX(0); }
    20%      { transform: translateX(-7px); }
    45%      { transform: translateX(6px); }
    70%      { transform: translateX(-3px); }
    90%      { transform: translateX(2px); }
}

@media (prefers-reduced-motion: reduce) {
    .reveal-grid > *,
    .reveal-text,
    .is-magnetic,
    .tilt-card,
    .hero-img-kenburns,
    .parallax-bg,
    .sticky-story-step,
    .sticky-story-visual img,
    .solution-icon,
    .outcome-icon,
    .form-field.has-error input,
    .form-field.has-error textarea,
    .form-field.has-error select {
        animation: none !important;
        transition: none !important;
        transform: none !important;
        opacity: 1 !important;
    }
    
    .sticky-story-visual img:first-of-type { opacity: 1 !important; }
}
