:root {
    /* Color Palette */
    --clr-anthracite-900: #1c1e22;
    --clr-anthracite-800: #2a2e33;
    --clr-anthracite-700: #373D43; /* Base Anthracite */
    --clr-anthracite-600: #4a5259; 
    
    --clr-ocean-900: #14306e;
    --clr-ocean-700: #1e45a0;
    --clr-ocean-500: #2D64DB; /* Base Ocean Blue */
    --clr-ocean-400: #5783e3;
    --clr-ocean-300: #82a3eb;
    
    --clr-white: #ffffff;
    --clr-light-100: #f8fafc;
    --clr-light-200: #f1f5f9;
    --clr-light-300: #e2e8f0;
    
    --clr-text-main: #334155;
    --clr-text-muted: #64748b;
    
    --clr-accent: #0ea5e9;

    /* Typography */
    --ff-primary: 'Outfit', sans-serif;
    --ff-body: 'Atkinson Hyperlegible', sans-serif;

    /* Shadows & Effects */
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-glow: 0 0 20px rgba(45, 100, 219, 0.4);

    --border-radius-sm: 0.375rem;
    --border-radius-md: 0.5rem;
    --border-radius-lg: 1rem;
    --border-radius-xl: 1.5rem;
    
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--ff-body);
    color: var(--clr-text-main);
    background-color: var(--clr-light-100);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .logo {
    font-family: var(--ff-primary);
    color: var(--clr-anthracite-900);
    line-height: 1.2;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 3.5rem 0; /* Reduced from 5rem */
}

.section-header {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--clr-anthracite-800);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--clr-text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-alt {
    background-color: var(--clr-light-100);
}

.container-narrow {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography elements */
span.highlight {
    color: var(--clr-ocean-500);
}

/* ==================================
   BUTTONS
   ================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius-sm);
    font-family: var(--ff-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--clr-ocean-500), var(--clr-ocean-700));
    color: var(--clr-white);
    box-shadow: var(--shadow-md);
    min-width: 160px; /* Stabilize button width for i18n */
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--clr-ocean-400), var(--clr-ocean-500));
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--clr-white);
}

.btn-outline {
    background: transparent;
    color: var(--clr-anthracite-800);
    border-color: var(--clr-anthracite-800);
}

.btn-outline:hover {
    background: var(--clr-anthracite-800);
    color: var(--clr-white);
}

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

.btn-outline-light:hover {
    background: var(--clr-white);
    color: var(--clr-ocean-900);
}

/* ==================================
   NAVBAR
   ================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--clr-light-200);
    transition: all var(--transition-normal);
    padding: 1rem 0;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-bold {
    font-weight: 700;
    color: var(--clr-anthracite-800);
}

.logo-light {
    font-weight: 300;
    color: var(--clr-ocean-500);
}

.logo-img {
    height: 60px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    color: var(--clr-text-main);
    position: relative;
    padding-bottom: 0.25rem;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--clr-ocean-500);
    transition: width var(--transition-normal);
}

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

.nav-links a:hover,
.nav-links a.active {
    color: var(--clr-ocean-500);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--clr-anthracite-800);
    position: absolute;
    transition: all var(--transition-normal);
}

.mobile-toggle span:nth-child(1) { top: 0; }
.mobile-toggle span:nth-child(2) { top: 11px; }
.mobile-toggle span:nth-child(3) { top: 22px; }

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

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

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

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--clr-text-muted);
    cursor: pointer;
    padding: 2px 4px;
    transition: color var(--transition-fast);
}

.lang-btn.active {
    color: var(--clr-ocean-500);
}

.lang-btn:hover:not(.active) {
    color: var(--clr-anthracite-800);
}

.lang-divider {
    color: var(--clr-light-300);
}

.mobile-lang-switcher {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--clr-white);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: all var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.mobile-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    font-size: 1.25rem;
}

/* ==================================
   HERO SECTION
   ================================== */
.hero {
    position: relative;
    min-height: 85vh; /* Reduced from 100vh */
    padding-top: 100px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--clr-light-100) 0%, var(--clr-light-300) 100%);
    overflow: hidden;
}

.hero-bg-shapes .shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    opacity: 0.6;
}

.shape-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45,100,219,0.2) 0%, rgba(45,100,219,0) 70%);
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(55,61,67,0.15) 0%, rgba(55,61,67,0) 70%);
    bottom: -200px;
    right: -100px;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem; /* Standardized small gap */
    position: relative;
    z-index: 10;
    max-width: 900px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    min-height: 380px; /* Increased to accommodate longer translations */
}

/* Base style for title to prevent jump */
.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--clr-anthracite-900);
    min-height: auto; /* Changed from fixed height to auto for flexibility */
    line-height: 1.2;
}

.hero-title span {
    color: var(--clr-ocean-500);
    background: linear-gradient(to right, var(--clr-ocean-500), var(--clr-ocean-300));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--clr-text-main);
    margin-bottom: 2rem; /* Reduced from 2.5rem */
    max-width: 650px;
    min-height: 4rem; /* Space for 2 lines of description */
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    border-top: 1px solid var(--clr-light-300);
    padding-top: 1.5rem;
    margin-top: 0.5rem; /* Reduced to match red arrows */
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    font-family: var(--ff-primary);
    color: var(--clr-anthracite-800);
}

.stat-label {
    font-size: 0.875rem;
    color: var(--clr-text-muted);
}

/* New Simplified Hero Visual */
.hero-visual-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 0.5rem; /* Standardized small gap */
    width: 100%;
}

.connection-visual {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.25rem 2rem 0.9rem 2rem; /* Reduced horizontal padding */
    background: var(--clr-white); /* Solid white for better stability */
    border-radius: var(--border-radius-xl);
    border: 1px solid var(--clr-light-200);
    box-shadow: var(--shadow-xl);
    max-width: 100%; /* Ensure it doesn't overflow container */
}

.node-talent, .node-company {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    font-weight: 700;
    color: var(--clr-anthracite-800);
}

.node-icon {
    width: 80px;
    height: 80px;
    background-color: var(--clr-light-200); /* Darker than light-100 for better contrast */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--clr-light-300);
}

.connection-flow {
    position: relative;
    width: 100px; /* Reduced from 200px for better mobile fit */
    height: 4px;
    background-color: var(--clr-light-300);
    border-radius: 2px;
    margin-top: -30px; /* Center horizontally with the icons */
}

.flow-line {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, var(--clr-ocean-500), var(--clr-ocean-300));
    opacity: 0.3;
}

.flow-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

@keyframes travelSphere {
    0% { left: 0; }
    50% { left: calc(100% - 16px); }
    100% { left: 0; }
}

.flow-particles span {
    position: absolute;
    width: 16px;
    height: 16px;
    background: radial-gradient(circle, var(--clr-ocean-300) 0%, var(--clr-ocean-500) 70%);
    border-radius: 50%;
    top: -6px;
    left: 0;
    box-shadow: 0 0 15px var(--clr-ocean-500);
    animation: travelSphere 4s linear infinite; /* Constant speed loop */
}

/* ==================================
   NEURODIVERSITY SECTION
   ================================== */
.neuro-section {
    background-color: var(--clr-white);
    position: relative;
}

.neuro-container-small {
    max-width: 900px;
    margin: 0 auto;
}

.neuro-text {
    font-size: 1.25rem;
    color: var(--clr-text-main);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.neuro-tags {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tag {
    background-color: var(--clr-light-200);
    color: var(--clr-ocean-700);
    padding: 0.5rem 1.25rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    border: 1px solid var(--clr-light-300);
}

/* ==================================
   ABOUT SECTION
   ================================== */
.about {
    text-align: center;
}

.section-desc {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    color: var(--clr-text-main);
    line-height: 1.8;
}

.mission-icons {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.mission-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.m-icon {
    font-size: 2.5rem;
}

.m-text {
    font-weight: 700;
    font-family: var(--ff-primary);
    color: var(--clr-anthracite-800);
}

/* ==================================
   SERVICES SECTION
   ================================== */
.services {
    background-color: var(--clr-white);
}

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

.service-card {
    background-color: var(--clr-light-100);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    border: 1px solid var(--clr-light-200);
    transition: all var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    background-color: var(--clr-white);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: #e0f2fe;
    color: var(--clr-ocean-500);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-md);
    margin-bottom: 1.5rem;
    transition: all var(--transition-normal);
}

.service-card:hover .service-icon {
    background-color: var(--clr-ocean-500);
    color: var(--clr-white);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-description {
    color: var(--clr-text-muted);
    margin-bottom: 1.5rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--clr-anthracite-700);
}

.service-features li::before {
    content: "✓";
    color: var(--clr-ocean-500);
    font-weight: bold;
}

.service-card.highlighted {
    background: linear-gradient(to bottom right, var(--clr-anthracite-800), var(--clr-anthracite-900));
    color: var(--clr-white);
    border: none;
    box-shadow: var(--shadow-xl);
}

.service-card.highlighted .service-title,
.service-card.highlighted .service-features li {
    color: var(--clr-white);
}

.service-card.highlighted .service-description {
    color: rgba(255,255,255,0.7);
}

.service-card.highlighted .service-icon {
    background-color: rgba(255,255,255,0.1);
    color: var(--clr-white);
}

.service-card.highlighted:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-glow);
}

/* ==================================
   DUAL TARGET SECTION (CTA)
   ================================== */
.dual-target {
    padding: 0;
}

.dual-target-container {
    display: flex;
    max-width: 100%;
    padding: 0;
    overflow: hidden; /* Prevent any horizontal expansion leaks */
}

.split-content {
    flex: 1;
    padding: 6rem 4rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.for-talent {
    background: linear-gradient(135deg, var(--clr-ocean-700), var(--clr-ocean-900));
    color: var(--clr-white);
}

.for-company {
    background-color: var(--clr-light-200);
}

.split-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.split-title {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    color: inherit;
}

.split-desc {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 480px;
}

/* ==================================
   FOOTER
   ================================== */
.footer {
    background-color: var(--clr-anthracite-900);
    color: var(--clr-light-300);
    padding: 4rem 0 1rem;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 1rem;
    background-color: var(--clr-white);
    padding: 0.5rem;
    border-radius: var(--border-radius-sm);
}

.footer-text {
    color: rgba(255,255,255,0.6);
    max-width: 320px;
}

.footer-heading {
    color: var(--clr-white);
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.footer-links-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-group a {
    color: rgba(255,255,255,0.6);
}

.footer-links-group a:hover {
    color: var(--clr-ocean-300);
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    color: var(--clr-white);
}

.social-links a:hover {
    background-color: var(--clr-ocean-500);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.4);
    font-size: 0.875rem;
}

/* ==================================
   RESPONSIVE DESIGN
   ================================== */
@media (max-width: 1024px) {
    .hero-container {
        gap: 2rem;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .dual-target-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-links, .nav-actions .btn {
        display: none;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        padding-top: 80px;
        min-height: auto;
    }

    .hero-container {
        display: flex; /* Ensure flex for mobile */
        flex-direction: column;
        text-align: center;
        padding-top: 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
        min-height: auto;
    }

    .hero-description {
        margin: 0 auto 1.5rem;
        font-size: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        width: 100%;
        gap: 0.75rem;
    }

    .hero-buttons .btn {
        width: 100%;
    }
    
    .connection-visual {
        gap: 1rem;
        padding: 1rem;
    }

    .node-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .connection-flow {
        width: 60px;
    }

    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
        width: 100%;
    }

    .stat-number {
        font-size: 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .split-content {
        padding: 4rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.875rem;
    }

    .connection-visual {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .connection-flow {
        height: 40px;
        width: 4px;
        margin-top: 0;
    }

    .flow-particles span {
        top: 0;
        left: -6px;
        animation: travelSphereVertical 4s linear infinite;
    }

    @keyframes travelSphereVertical {
        0% { top: 0; }
        50% { top: calc(100% - 16px); }
        100% { top: 0; }
    }
}

/* ==================================
   INNER PAGES
   ================================== */

/* Page Hero - shorter than main hero */
.page-hero {
    background: linear-gradient(135deg, var(--clr-light-100) 0%, var(--clr-light-300) 100%);
    padding: 8rem 0 3rem;
    color: var(--clr-anthracite-900);
    text-align: center;
}

.page-hero h1 {
    font-family: var(--ff-primary);
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--clr-anthracite-900);
}

.page-hero .breadcrumbs {
    color: var(--clr-text-muted);
    font-size: 0.875rem;
}

.page-hero .breadcrumbs a {
    color: var(--clr-ocean-500);
    text-decoration: none;
}

.page-hero .breadcrumbs a:hover {
    text-decoration: underline;
}

/* Content Body */
.content-body {
    padding: 4rem 0;
}

.content-section {
    margin-bottom: 3rem;
}

.content-section h2 {
    font-family: var(--ff-primary);
    font-size: 1.875rem;
    font-weight: 600;
    color: var(--clr-anthracite-900);
    margin-bottom: 1rem;
}

.content-section h3 {
    font-family: var(--ff-primary);
    font-size: 1.375rem;
    font-weight: 600;
    color: var(--clr-anthracite-800);
    margin-bottom: 0.75rem;
}

.content-section p {
    color: var(--clr-text-main);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.content-section ul, .content-section ol {
    color: var(--clr-text-main);
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}

.content-section li {
    margin-bottom: 0.5rem;
}

/* Stats Grid for inner pages */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.stat-card {
    background: var(--clr-light-100);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--clr-light-300);
}

.stat-card .stat-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.stat-card h3 {
    font-family: var(--ff-primary);
    font-size: 1.125rem;
    color: var(--clr-anthracite-900);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

/* Service Detail Grid */
.service-detail-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.service-detail-card {
    background: var(--clr-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border: 1px solid var(--clr-light-300);
    transition: var(--transition-normal);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-2px);
}

.service-detail-card h3 {
    font-family: var(--ff-primary);
    color: var(--clr-ocean-700);
    margin-bottom: 0.75rem;
}

.service-detail-card .tier-label {
    display: inline-block;
    background: var(--clr-ocean-500);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Profile Cards */
.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.profile-card {
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    border-left: 4px solid var(--clr-ocean-500);
    background: var(--clr-light-100);
}

.profile-card.creative {
    border-left-color: #8b5cf6;
}

.profile-card.analytical {
    border-left-color: #06b6d4;
}

.profile-card.stabilizer {
    border-left-color: #10b981;
}

.profile-card h3 {
    font-family: var(--ff-primary);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.profile-card .profile-roles {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.profile-card .role-tag {
    background: var(--clr-white);
    border: 1px solid var(--clr-light-300);
    padding: 0.25rem 0.75rem;
    border-radius: 999px;
    font-size: 0.8rem;
    color: var(--clr-text-muted);
}

/* Steps / Process */
.steps-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--clr-ocean-500);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--ff-primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.step-content h3 {
    font-family: var(--ff-primary);
    margin-bottom: 0.25rem;
}

.step-content p {
    color: var(--clr-text-muted);
}

/* FAQ Accordion */
.faq-list {
    margin: 2rem 0;
}

.faq-item {
    border-bottom: 1px solid var(--clr-light-300);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.25rem 0;
    font-family: var(--ff-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--clr-anthracite-900);
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--clr-ocean-500);
    transition: var(--transition-fast);
}

.faq-item.active .faq-question::after {
    content: '\2212';
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    color: var(--clr-text-main);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: 1.25rem;
}

/* Legal Content */
.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-content h2 {
    margin-top: 2rem;
}

.legal-content p, .legal-content li {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Two Column Layout */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin: 2rem 0;
}

/* CTA Section */
.page-cta {
    background: linear-gradient(135deg, var(--clr-ocean-900) 0%, var(--clr-ocean-700) 100%);
    padding: 4rem 0;
    text-align: center;
    color: var(--clr-white);
}

.page-cta h2 {
    font-family: var(--ff-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.page-cta p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background-color: var(--clr-light-100);
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-card {
    background: var(--clr-white);
    border-radius: var(--border-radius-lg);
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--clr-light-300);
    transition: var(--transition-normal);
}

.contact-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.contact-card .contact-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-family: var(--ff-primary);
    color: var(--clr-anthracite-900);
    margin-bottom: 0.5rem;
}

.contact-card p {
    color: var(--clr-text-muted);
    font-size: 0.9rem;
}

.contact-card a {
    color: var(--clr-ocean-500);
    text-decoration: none;
    font-weight: 500;
}

.contact-card a:hover {
    text-decoration: underline;
}

/* Inner page nav - simplified */
.nav-inner .nav-links {
    display: none;
}

.nav-inner .nav-actions .btn {
    display: inline-flex;
}

/* ==================================
   INNER PAGES RESPONSIVE
   ================================== */
@media (max-width: 1024px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 6rem 0 2rem;
    }

    .page-hero h1 {
        font-size: 2rem;
    }

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

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

    .step-item {
        flex-direction: column;
        gap: 0.75rem;
    }

    .content-body {
        padding: 2.5rem 0;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .page-hero h1 {
        font-size: 1.75rem;
    }

    .service-detail-grid {
        grid-template-columns: 1fr;
    }
}