@import 'case-study-premium.css';
/* Importing Premium Case Study Styles */

:root {
    /* Colors */
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #F7F9FC;
    --color-bg-dark: #0B1F33;
    --color-bg-darker: #050E17;

    --color-text-main: #111111;
    --color-text-muted: #4A5568;
    --color-text-light: #F7F9FC;

    --color-accent: #C5A065;
    --color-accent-hover: #B08D55;
    --color-accent-light: rgba(197, 160, 101, 0.1);

    --color-border: #E2E8F0;
    --color-success: #10B981;
    --color-warning: #F59E0B;
    --color-error: #EF4444;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #0B1F33 0%, #1A3A52 100%);
    --gradient-accent: linear-gradient(135deg, #C5A065 0%, #8B6F47 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(11, 31, 51, 0.9) 0%, rgba(11, 31, 51, 0.7) 100%);

    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 3rem;
    --spacing-xl: 5rem;

    /* Layout */
    --container-max-width: 1200px;
    --header-height: 80px;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);

    /* Animations */
    --transition-standard: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-text-main);
    background-color: var(--color-bg-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    padding-top: var(--header-height);
    overflow-x: hidden;
    /* Prevent horizontal scroll */
}

section[id],
div[id] {
    scroll-margin-top: calc(var(--header-height) + 2rem);
}

/* Typography Defaults */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--color-bg-dark);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
}

h1 {
    font-size: 3.5rem;
    letter-spacing: -0.02em;
}

h2 {
    font-size: 2.5rem;
    letter-spacing: -0.01em;
}

h3 {
    font-size: 1.5rem;
}

p {
    font-size: 1.125rem;
    /* 18px */
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-sm);
}

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

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-xl) 0;
}

.bg-light {
    background-color: var(--color-bg-secondary);
}

.bg-dark {
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
}

.text-white {
    color: var(--color-text-light) !important;
}

.text-gray {
    color: rgba(255, 255, 255, 0.7) !important;
}

.section-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}


/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: var(--gradient-accent);
    z-index: 9999;
    transition: width 0.1s ease;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-weight: 500;
    font-size: 1rem;
    border-radius: 4px;
    letter-spacing: 0.02em;
    cursor: pointer;
    transition: var(--transition-standard);
    border: none;
    position: relative;
    overflow: hidden;
}

.btn i {
    width: 1.2em;
    height: 1.2em;
}

.btn-primary {
    background: var(--color-bg-dark);
    color: var(--color-text-light);
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    opacity: 0.9;
}

.btn-accent {
    background: var(--color-accent);
    color: white;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.btn-accent:hover {
    background: var(--color-accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 160, 101, 0.35);
}

.btn-ghost {
    background: transparent;
    color: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: var(--color-bg-dark);
    color: white;
    border-color: var(--color-bg-dark);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
}

.btn-small {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
}

.btn-block {
    width: 100%;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-bg-dark);
    border-bottom: 1px solid transparent;
    padding: 0;
    background: none;
}

.btn-text:hover {
    border-bottom-color: var(--color-bg-dark);
}

.btn-text i {
    margin-left: 0.5rem;
    width: 1.2em;
    height: 1.2em;
}

/* Header */
.header {
    height: var(--header-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.header.scrolled {
    box-shadow: var(--shadow-md);
    background-color: rgba(255, 255, 255, 1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo {
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    transition: var(--transition-standard);
}

.logo:hover {
    opacity: 0.8;
}

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

.logo-accent {
    color: var(--color-accent);
}

.nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-list {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-list a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
    padding: 0.5rem 0;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-accent);
    transition: width 0.3s ease;
}

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

.nav-list a:hover {
    color: var(--color-accent);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--color-bg-dark);
    padding: 0.5rem;
}

/* Hero Section */
.hero {
    position: relative;
    height: 85vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(160deg, #050E17 0%, #0B1F33 40%, #1A3A52 100%);
    overflow: hidden;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0.15;
    animation: float 20s infinite ease-in-out;
    will-change: transform;
    /* Hardware acceleration */
}

@media (prefers-reduced-motion: reduce) {
    .particle {
        animation: none;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) translateX(0);
    }

    25% {
        transform: translateY(-30px) translateX(20px);
    }

    50% {
        transform: translateY(-60px) translateX(-20px);
    }

    75% {
        transform: translateY(-30px) translateX(10px);
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    text-align: center;
}

.hero-title {
    margin-bottom: var(--spacing-md);
    font-size: 4rem;
    line-height: 1.1;
    color: var(--color-text-light);
    opacity: 0;
    animation: fadeUp 1s ease-out 0.2s forwards;
}

.hero-accent {
    color: var(--color-accent);
    -webkit-text-fill-color: var(--color-accent);
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 620px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
    animation: fadeUp 1s ease-out 0.4s forwards;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-sm);
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 1s ease-out 0.6s forwards;
}



/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Authority / Positioning Section */
.authority {
    background-color: var(--color-bg-secondary);
    padding: var(--spacing-xl) 0;
}

.authority-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.brand-positioning {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.5;
    font-family: var(--font-heading);
    color: var(--color-bg-dark);
    margin-bottom: var(--spacing-md);
}

.positioning-list {
    margin-top: var(--spacing-md);
}

.positioning-list p {
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-bottom: var(--spacing-sm);
}

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

.positioning-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.positioning-list i {
    color: var(--color-accent);
    width: 1.2em;
    height: 1.2em;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

/* Services Section */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto var(--spacing-lg) auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    font-weight: 400;
    margin-bottom: 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.service-card {
    padding: var(--spacing-lg);
    background: white;
    border: 2px solid var(--color-border);
    border-radius: 8px;
    transition: var(--transition-standard);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card.featured {
    border-color: var(--color-accent);
    box-shadow: 0 8px 30px rgba(197, 160, 101, 0.15);
}

.service-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-icon {
    color: var(--color-bg-dark);
    margin-bottom: var(--spacing-sm);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    border-radius: 8px;
}

.service-icon svg,
.service-icon i {
    width: 28px;
    height: 28px;
    color: var(--color-accent);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    color: var(--color-bg-dark);
}

.service-card>p {
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
}

.service-features {
    list-style: none;
    margin-bottom: var(--spacing-md);
    padding-left: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.service-features i {
    color: var(--color-success);
    width: 1em;
    height: 1em;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--color-accent);
    margin-top: auto;
    transition: var(--transition-standard);
}

.service-link:hover {
    gap: 0.75rem;
}

.service-link i {
    width: 1.2em;
    height: 1.2em;
}

/* Case Studies Section - Compact Design */

/* Featured Case Study */
.case-featured {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-lg);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition-standard);
}

.case-featured:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.case-featured-image {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.case-featured-image .case-study-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.case-featured-image .placeholder-icon {
    width: 80px;
    height: 80px;
    color: rgba(255, 255, 255, 0.15);
    transition: var(--transition-standard);
}

.case-featured:hover .placeholder-icon {
    color: var(--color-accent);
    transform: scale(1.1);
}

.case-featured-content {
    padding: var(--spacing-lg);
}

.case-featured-title {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: var(--color-bg-dark);
}

.case-featured-summary {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    margin-bottom: var(--spacing-md);
    line-height: 1.6;
}

.case-metrics-compact {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
}

.metric-compact {
    display: flex;
    flex-direction: column;
}

.metric-value-compact {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.metric-label-compact {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Case Studies Grid */
.case-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.case-card {
    position: relative;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-standard);
    aspect-ratio: 4/3;
    cursor: pointer;
}

.case-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

/* Background Image/Placeholder */
.case-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: var(--transition-smooth);
}

.case-card:hover .case-card-bg {
    filter: blur(8px);
    transform: scale(1.05);
}

.case-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 0;
    left: 0;
}

.case-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: relative;
    z-index: 1;
}

/* Hide placeholder when image is present */
.case-card-bg:has(.case-card-image) .case-card-placeholder {
    display: none;
}

/* Overlay Content */
/* Overlay Content */
.case-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    background: linear-gradient(to top,
            rgba(11, 31, 51, 0.95) 0%,
            rgba(11, 31, 51, 0.75) 30%,
            rgba(11, 31, 51, 0.4) 60%,
            rgba(11, 31, 51, 0.1) 85%,
            transparent 100%);
    backdrop-filter: blur(20px) saturate(1.8);
    -webkit-backdrop-filter: blur(20px) saturate(1.8);

    /* Fade out the top edge of the blur/element */
    -webkit-mask-image: linear-gradient(to top, black 50%, transparent 100%);
    mask-image: linear-gradient(to top, black 50%, transparent 100%);

    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: var(--spacing-md);
    padding-top: var(--spacing-xl);
    /* Add space for the fade */
    z-index: 2;
}

.case-card:hover .case-card-overlay {
    height: 100%;
    background: linear-gradient(135deg,
            rgba(11, 31, 51, 0.92) 0%,
            rgba(11, 31, 51, 0.95) 100%);
    backdrop-filter: blur(12px) saturate(1.3);
    -webkit-backdrop-filter: blur(12px) saturate(1.3);

    /* Remove mask on hover to show full overlay */
    -webkit-mask-image: none;
    mask-image: none;

    align-items: center;
    padding-top: var(--spacing-md);
    /* Reset padding */
}

/* Don't blur the background image on hover */
.case-card:hover .case-card-bg {
    filter: none;
    transform: scale(1.02);
}

.case-card-content {
    text-align: center;
    width: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.case-card-category {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.case-card:hover .case-card-category {
    opacity: 1;
    max-height: 30px;
}

.case-card-overlay h4 {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 0;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: all 0.3s ease;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.case-card:hover .case-card-overlay h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    text-shadow: none;
}

.case-card-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
    line-height: 1.5;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease 0.1s;
}

.case-card:hover .case-card-overlay p {
    max-height: 100px;
    opacity: 1;
    margin-bottom: var(--spacing-sm);
}

.case-card-stats {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    padding-top: 0;
    border-top: none;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 0;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease 0.2s;
}

.case-card:hover .case-card-stats {
    max-height: 50px;
    opacity: 1;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    margin-top: var(--spacing-sm);
}

.case-card-stats strong {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.1em;
}

/* Responsive Design */
@media (max-width: 900px) {
    .case-featured {
        grid-template-columns: 1fr;
    }

    .case-featured-image {
        aspect-ratio: 16/9;
    }

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

    .case-featured-title {
        font-size: 1.75rem;
    }

    .case-card {
        aspect-ratio: 16/9;
    }
}

@media (min-width: 901px) and (max-width: 1100px) {
    .case-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .case-card:last-child {
        grid-column: 1 / -1;
        max-width: 50%;
        margin: 0 auto;
    }
}

/* Testimonials Section */
.testimonials {
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.testimonial-card {
    background: var(--color-bg-secondary);
    border-radius: 10px;
    padding: 2rem;
    border: 1px solid var(--color-border);
    transition: var(--transition-standard);
}

.testimonial-card:hover {
    border-color: rgba(197, 160, 101, 0.3);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.testimonial-card-featured {
    background: var(--color-bg-dark);
    border-color: transparent;
}

.testimonial-card-featured:hover {
    border-color: var(--color-accent);
}

.testimonial-card-featured .testimonial-quote {
    color: rgba(255, 255, 255, 0.85);
}

.testimonial-card-featured .testimonial-info strong {
    color: white;
}

.testimonial-card-featured .testimonial-info span {
    color: rgba(255, 255, 255, 0.5);
}

.testimonial-rating {
    display: flex;
    gap: 0.2rem;
    margin-bottom: 1.25rem;
}

.testimonial-rating i {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    fill: var(--color-accent);
}

.testimonial-quote {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    line-height: 1.65;
    color: var(--color-text-main);
    font-style: italic;
    margin-bottom: 1.5rem;
    border: none;
    padding: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.testimonial-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
}

.testimonial-info strong {
    font-size: 0.95rem;
    color: var(--color-bg-dark);
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.team-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition-standard);
}

.team-card:hover {
    border-color: rgba(197, 160, 101, 0.3);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.team-photo {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
}

.team-photo-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-photo-placeholder i {
    width: 64px;
    height: 64px;
    color: rgba(255, 255, 255, 0.15);
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-img {
    display: block;
    transition: var(--transition-smooth);
}

.team-card:hover .team-img {
    transform: scale(1.05);
}

.team-details {
    padding: 1.75rem;
}

.team-role {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.team-card h3 {
    font-size: 1.35rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.75rem;
}

.team-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.team-social {
    display: flex;
    gap: 0.75rem;
}

.team-social a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-standard);
}

.team-social a:hover {
    background: var(--color-accent);
    color: white;
}

.team-social i {
    width: 16px;
    height: 16px;
}

/* Why Choose Us */
.why-us {
    background: var(--gradient-primary);
    padding: var(--spacing-xl) 0;
}

.why-us .section-header {
    margin-bottom: var(--spacing-lg);
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-us-card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 2rem 1.5rem;
    transition: var(--transition-standard);
}

.why-us-card:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--color-accent);
    transform: translateY(-4px);
}

.why-us-icon {
    width: 52px;
    height: 52px;
    background: var(--color-accent);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}

.why-us-icon i {
    width: 26px;
    height: 26px;
    color: white;
}

.why-us-card h3 {
    color: var(--color-text-light);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.why-us-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Process */
.process {
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: var(--spacing-md);
    text-align: center;
    counter-reset: step;
}

.step {
    position: relative;
    padding: 2rem 1rem;
}

.step-number {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--color-accent);
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
}

.step h3 {
    color: var(--color-bg-dark);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
}

.step p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    margin: 0;
}

.step::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -0.75rem;
    width: 6px;
    height: 1px;
    background: var(--color-border);
}

.step:last-child::after {
    display: none;
}

/* FAQ Section */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.faq-item {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-standard);
}

.faq-item.active {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
}

.faq-question {
    width: 100%;
    padding: var(--spacing-md);
    background: none;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-sm);
    cursor: pointer;
    text-align: left;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-bg-dark);
    transition: var(--transition-standard);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    flex-shrink: 0;
    width: 1.5em;
    height: 1.5em;
    color: var(--color-accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 var(--spacing-md) var(--spacing-md);
}

.faq-answer p {
    margin: 0;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    background: white;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.contact-info {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.contact-details {
    margin: var(--spacing-lg) 0;
}

.contact-item {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.contact-item i {
    width: 1.5em;
    height: 1.5em;
    color: var(--color-accent);
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item strong {
    display: block;
    color: var(--color-bg-dark);
    margin-bottom: 0.25rem;
}

.contact-item p {
    margin: 0;
    color: var(--color-text-muted);
}

.social-proof-mini {
    margin-top: var(--spacing-md);
}

.proof-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

.proof-text i {
    color: var(--color-success);
    width: 1.2em;
    height: 1.2em;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: white;
    padding: var(--spacing-lg);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--color-bg-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--color-border);
    border-radius: 6px;
    font-size: 1rem;
    font-family: var(--font-body);
    transition: var(--transition-standard);
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px var(--color-accent-light);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
}

.checkbox-group label {
    margin: 0;
    font-weight: 400;
    font-size: 0.9rem;
}

.checkbox-group a {
    color: var(--color-accent);
    text-decoration: underline;
}

.form-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-top: var(--spacing-sm);
    text-align: center;
}

.form-success {
    display: none;
    text-align: center;
    padding: var(--spacing-xl);
    background: white;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--color-border);
}

.form-success.show {
    display: block;
}

.form-success i {
    width: 4rem;
    height: 4rem;
    color: var(--color-success);
    margin-bottom: var(--spacing-sm);
}

.form-success h3 {
    color: var(--color-bg-dark);
    margin-bottom: var(--spacing-sm);
}

.form-success p {
    color: var(--color-text-muted);
}

/* Footer */
.footer {
    background: var(--gradient-primary);
    color: rgba(255, 255, 255, 0.7);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    font-size: 0.9rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.footer-col-brand p {
    margin-bottom: var(--spacing-md);
}

.footer-badges {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

.footer-badges img {
    height: 30px;
    border-radius: 4px;
}

.footer-logo {
    margin-bottom: var(--spacing-sm);
}

.footer-logo .logo-img {
    height: 28px;
    filter: brightness(0) invert(1);
}

.footer-logo .logo-accent {
    color: var(--color-accent);
}

.footer h4 {
    color: var(--color-text-light);
    font-size: 1rem;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-body);
    font-weight: 600;
}

.footer h5 {
    color: var(--color-text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-standard);
}

.footer-links a:hover {
    color: var(--color-accent);
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

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

.social-links a:hover {
    background: var(--color-accent);
    transform: translateY(-3px);
}

.social-links i {
    width: 1.2em;
    height: 1.2em;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 0.9rem;
}

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

.newsletter-form input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-form button {
    padding: 0.75rem 1rem;
    background: var(--gradient-accent);
    border: none;
    border-radius: 6px;
    color: white;
    cursor: pointer;
    transition: var(--transition-standard);
}

.newsletter-form button:hover {
    transform: scale(1.05);
}

.newsletter-form button i {
    width: 1.2em;
    height: 1.2em;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

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

.footer-bottom-links {
    display: flex;
    gap: var(--spacing-md);
}

.footer-bottom-links a {
    color: rgba(255, 255, 255, 0.5);
    transition: var(--transition-standard);
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    border-top: 1px solid var(--color-border);
    box-shadow: var(--shadow-xl);
    z-index: 9998;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.cookie-text h4 {
    margin-bottom: 0.5rem;
    color: var(--color-bg-dark);
}

.cookie-text p {
    margin: 0;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.cookie-actions {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    flex-shrink: 0;
}

.cookie-link {
    color: var(--color-accent);
    text-decoration: underline;
    font-size: 0.9rem;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-accent);
    color: white;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-standard);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.back-to-top i {
    width: 1.5em;
    height: 1.5em;
}

/* Responsive */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .contact-info {
        position: static;
    }

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

    .footer-col-brand {
        grid-column: 1 / -1;
    }

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

@media (max-width: 900px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3.5rem;
    }

    .logo-img {
        height: 26px;
    }

    .footer-logo .logo-img {
        height: 24px;
    }

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

    h1,
    .hero-title {
        font-size: 2.5rem;
    }

    h2,
    .section-title {
        font-size: 2rem;
    }

    .nav {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: white;
        padding: var(--spacing-md);
        border-bottom: 1px solid var(--color-border);
        flex-direction: column;
        align-items: flex-start;
        box-shadow: var(--shadow-lg);
        overflow-y: auto;
    }

    .nav.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        width: 100%;
        gap: var(--spacing-sm);
        margin-bottom: var(--spacing-md);
    }

    .nav-list li {
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: var(--spacing-sm);
        border-bottom: 1px solid var(--color-border);
    }

    .nav .btn-primary {
        width: 100%;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 600px;
        height: auto;
        padding: calc(var(--header-height) + var(--spacing-lg)) 0 var(--spacing-xl);
    }

    .hero-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .authority-grid,
    .why-us-grid {
        grid-template-columns: 1fr;
    }

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

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

    .portfolio-item-large {
        grid-row: span 1;
    }

    .portfolio-item {
        aspect-ratio: 16 / 9;
    }

    .portfolio-overlay {
        opacity: 1;
    }

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

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 450px;
    }

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

    .step::after {
        display: none;
    }

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

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-actions .btn {
        width: 100%;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 45px;
        height: 45px;
    }
}

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

    .logo-img {
        height: 22px;
    }

    .footer-logo .logo-img {
        height: 20px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .authority-stats {
        flex-direction: column;
        gap: var(--spacing-md);
    }

    .process-steps {
        grid-template-columns: 1fr;
    }

    .step::after {
        display: none;
    }
}

/* ============================================
   SERVICE PAGE STYLES
   ============================================ */

/* Service Hero — Split Layout */
.service-hero--split {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(160deg, #050E17 0%, #0B1F33 40%, #1A3A52 100%);
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.service-hero-split {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.service-hero-left {
    max-width: 560px;
}

.service-hero-label {
    display: inline-block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    font-weight: 600;
    padding: 0.5rem 1.25rem;
    border: 1px solid rgba(197, 160, 101, 0.3);
    border-radius: 30px;
    margin-bottom: var(--spacing-md);
    opacity: 0;
    animation: fadeUp 1s ease-out 0.1s forwards;
}

.service-hero-title {
    margin-bottom: var(--spacing-md);
    font-size: 3.75rem;
    line-height: 1.08;
    color: var(--color-text-light);
    opacity: 0;
    animation: fadeUp 1s ease-out 0.2s forwards;
}

.service-hero-subtitle {
    font-size: 1.15rem;
    max-width: 480px;
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
    opacity: 0;
    animation: fadeUp 1s ease-out 0.4s forwards;
}

.service-hero--split .hero-actions {
    opacity: 0;
    animation: fadeUp 1s ease-out 0.6s forwards;
    justify-content: flex-start;
}

/* Hero Showcase (right column) */
.service-hero-right {
    opacity: 0;
    animation: fadeUp 1s ease-out 0.5s forwards;
}

.hero-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.hero-showcase-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    backdrop-filter: blur(10px);
    transition: var(--transition-standard);
}

.hero-showcase-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 160, 101, 0.3);
    transform: translateY(-4px);
}

.showcase-stat-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.showcase-stat-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
}

.hero-showcase-trust {
    grid-column: 1 / -1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 1.5rem 2rem;
}

.trust-label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.trust-names {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.trust-names span {
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.02em;
}

/* Hero Showcase — Editorial card */
.hero-showcase-card--large {
    grid-column: 1 / -1;
}

.showcase-editorial {
    padding: 0.5rem 0;
}

.showcase-editorial-label {
    display: block;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.showcase-editorial-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 400;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin: 0;
}

/* Philosophy Section */
.philosophy-grid {
    display: grid;
    grid-template-columns: 45fr 55fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.philosophy-intro {
    position: sticky;
    top: 90px;
}

.philosophy-intro .section-title {
    text-align: left;
    font-size: 2.5rem;
}

.philosophy-lead {
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-bg-dark);
    margin-bottom: var(--spacing-md);
}

.philosophy-text p {
    font-size: 1.05rem;
    line-height: 1.75;
}

/* Philosophy Image */
.philosophy-image-wrap {
    position: relative;
    margin-top: var(--spacing-lg);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.philosophy-image {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
    min-height: 260px;
    object-fit: cover;
    display: block;
    border-radius: 16px;
    transition: transform 0.5s ease;
}

.philosophy-image-wrap:hover .philosophy-image {
    transform: scale(1.04);
}

.philosophy-image-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 500;
}

.philosophy-image-badge i {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
    flex-shrink: 0;
}


/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-md);
}

.capability-card {
    padding: var(--spacing-lg) var(--spacing-md);
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: var(--transition-standard);
}

.capability-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.capability-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-accent-light);
    border-radius: 10px;
    margin-bottom: var(--spacing-sm);
}

.capability-icon i {
    width: 24px;
    height: 24px;
    color: var(--color-accent);
}

.capability-card h3 {
    font-size: 1.15rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.5rem;
}

.capability-card p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Combined Services + Sub-services Card */
.services-combined-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.service-combined-card {
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 14px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-standard);
}

.service-combined-card:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
}

.scc-header {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    margin-bottom: 1rem;
}

.scc-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    background: var(--color-accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.scc-icon i {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
}

.scc-header-text h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.scc-header-text p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin: 0;
}

.scc-divider {
    height: 1px;
    background: var(--color-border);
    margin: 0.875rem 0;
}

.scc-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.25rem 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.scc-list li a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    color: var(--color-text);
    text-decoration: none;
    padding: 0.2rem 0;
    transition: color 0.2s ease;
}

.scc-list li a:hover {
    color: var(--color-accent);
}

.scc-list li a i {
    width: 11px;
    height: 11px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.scc-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    margin-top: auto;
    padding-top: 0.875rem;
    border-top: 1px solid var(--color-border);
}

.scc-cta i {
    width: 14px;
    height: 14px;
    transition: transform 0.2s ease;
}

.scc-cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 1024px) {
    .services-combined-grid {
        grid-template-columns: 1fr;
    }
    .scc-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Compact Services Grid (sub-services list) */
.services-compact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.875rem;
    margin-top: 2rem;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 1.125rem 1rem;
    background: white;
    border: 1px solid var(--color-border);
    border-radius: 10px;
    transition: var(--transition-standard);
}

.service-item:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.service-item-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
    background: var(--color-accent-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.service-item-icon i {
    width: 18px;
    height: 18px;
    color: var(--color-accent);
}

.service-item-body h3 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-bg-dark);
    margin-bottom: 0.2rem;
    line-height: 1.3;
}

.service-item-body p {
    font-size: 0.82rem;
    color: var(--color-text-muted);
    line-height: 1.45;
    margin: 0;
}

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

/* Service Cards — 3-column matching screenshot design */
.service-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.service-card-block {
    background: #ffffff;
    border: 1.5px solid var(--color-border);
    border-radius: 20px;
    padding: 2rem 1.75rem 1.75rem;
    display: flex;
    flex-direction: column;
    transition: var(--transition-standard);
}

.service-card-block.featured {
    border-color: var(--color-accent);
    box-shadow: 0 0 0 0.5px var(--color-accent);
}

.service-card-block:hover {
    border-color: var(--color-accent);
    box-shadow: 0 8px 32px rgba(197, 160, 101, 0.12);
    transform: translateY(-3px);
}

.scb-icon {
    width: 48px;
    height: 48px;
    background: var(--color-accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-shrink: 0;
}

.scb-icon i {
    width: 22px;
    height: 22px;
    color: var(--color-accent);
}

.scb-title {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    margin-bottom: 0.875rem;
    line-height: 1.2;
}

.scb-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.scb-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
}

.scb-features li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

.scb-features li i {
    width: 16px;
    height: 16px;
    color: var(--color-accent);
    flex-shrink: 0;
}

.scb-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    margin-top: auto;
    transition: gap 0.2s ease;
}

.scb-link i {
    width: 15px;
    height: 15px;
    transition: transform 0.2s ease;
}

.scb-link:hover i {
    transform: translateX(4px);
}

@media (max-width: 900px) {
    .service-cards-grid {
        grid-template-columns: 1fr;
    }
}

/* Service List — stacked row layout */
.service-list {
    margin-top: 2.5rem;
}

.service-row-item {
    display: grid;
    grid-template-columns: 2.25rem 1fr;
    gap: 0 1.75rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-border);
}

.service-row-item:first-child {
    border-top: 1px solid var(--color-border);
}

.sri-num {
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    color: var(--color-accent);
    padding-top: 0.55rem;
    line-height: 1;
}

.sri-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sri-top {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.sri-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--color-bg-dark);
    line-height: 1.15;
    margin: 0;
}

.sri-desc {
    font-size: 0.86rem;
    color: var(--color-text-muted);
    line-height: 1.65;
    max-width: 56ch;
    margin: 0;
}

.sri-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    list-style: none;
    padding: 0;
    margin: 0.3rem 0 0;
}

.sri-tags li {
    font-size: 0.73rem;
    color: var(--color-text-muted);
    padding: 0.22rem 0.7rem;
    background: var(--color-bg-secondary);
    border-radius: 100px;
    line-height: 1.5;
    white-space: nowrap;
}

.sri-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-bg-dark);
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: color 0.2s ease;
}

.sri-cta i {
    width: 13px;
    height: 13px;
    transition: transform 0.2s ease;
}

.sri-cta:hover {
    color: var(--color-accent);
}

.sri-cta:hover i {
    transform: translateX(3px);
}

@media (max-width: 640px) {
    .service-row-item {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .sri-num {
        padding-top: 0;
        margin-bottom: 0.5rem;
    }
    .sri-top {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* What Sets Us Apart (dark) */
.apart-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

.apart-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: var(--spacing-lg);
    transition: var(--transition-standard);
}

.apart-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(197, 160, 101, 0.3);
    transform: translateY(-4px);
}

.apart-number {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    margin-bottom: var(--spacing-sm);
    opacity: 0.6;
}

.apart-item h3 {
    color: var(--color-text-light);
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.apart-item p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Service Quote Section (standalone testimonial) */
.service-quote-section {
    background: white;
}

/* Service Process (Timeline) */
.service-process-steps {
    max-width: 750px;
    margin: 0 auto;
}

.service-step {
    display: flex;
    gap: var(--spacing-md);
    position: relative;
}

.service-step-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    width: 48px;
}

.service-step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--color-accent);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
    z-index: 1;
}

.service-step-line {
    width: 2px;
    flex: 1;
    background: var(--color-border);
    margin: 0.5rem 0;
}

.service-step-content {
    padding-bottom: var(--spacing-lg);
    flex: 1;
}

.service-step-content h3 {
    font-size: 1.25rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.5rem;
}

.service-step-content>p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.service-step-details {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

.service-step-details span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--color-accent);
    font-weight: 500;
}

.service-step-details i {
    width: 16px;
    height: 16px;
}

/* Case Study Spotlight */
.spotlight-case {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
    margin-bottom: var(--spacing-xl);
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--color-border);
    transition: var(--transition-standard);
}

.spotlight-case:hover {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-lg);
}

.spotlight-image {
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--gradient-primary);
}

.spotlight-image img {
    transition: var(--transition-smooth);
}

.spotlight-case:hover .spotlight-image img {
    transform: scale(1.03);
}

.spotlight-content {
    padding: var(--spacing-lg);
}

.spotlight-category {
    display: inline-block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.spotlight-content h3 {
    font-size: 2rem;
    color: var(--color-bg-dark);
    margin-bottom: 0.75rem;
}

.spotlight-content>p {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--spacing-md);
}

.spotlight-metrics {
    display: flex;
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm) 0;
}

.spotlight-metric-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.spotlight-metric-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    font-weight: 500;
}

/* Service Testimonial */
.service-testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-lg);
    background: var(--color-bg-dark);
    border-radius: 16px;
    border: 1px solid rgba(197, 160, 101, 0.2);
}

.service-testimonial .testimonial-rating {
    justify-content: center;
}

.service-testimonial .testimonial-quote {
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.15rem;
}

.service-testimonial .testimonial-author {
    justify-content: center;
}

.service-testimonial .testimonial-info strong {
    color: white;
}

.service-testimonial .testimonial-info span {
    color: rgba(255, 255, 255, 0.5);
}

/* Service CTA Section */
.service-cta {
    background: white;
}

.service-cta-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
}

.service-cta-content {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
}

.service-cta-content .section-title {
    text-align: left;
}

.cta-benefits {
    margin: var(--spacing-md) 0 var(--spacing-lg);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    color: var(--color-text-muted);
}

.cta-benefit i {
    color: var(--color-success);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

/* ============================================
   SERVICE PAGE RESPONSIVE
   ============================================ */

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

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

    .service-cta-content {
        position: static;
    }

    .spotlight-case {
        grid-template-columns: 1fr;
    }

    .spotlight-image {
        aspect-ratio: 16/9;
    }
}

@media (max-width: 900px) {
    .service-hero-split {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .service-hero-left {
        max-width: 100%;
    }

    .service-hero--split .hero-actions {
        justify-content: center;
    }

    .service-hero-title {
        font-size: 2.75rem;
    }

    .service-hero-subtitle {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }

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

    .trust-names {
        justify-content: center;
    }

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

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

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

@media (max-width: 640px) {
    .service-hero-title {
        font-size: 2.25rem;
    }

    .service-hero--split {
        min-height: auto;
        padding-top: calc(var(--header-height) + var(--spacing-lg));
        padding-bottom: var(--spacing-lg);
    }

    .hero-showcase {
        grid-template-columns: 1fr;
    }

    .hero-showcase-card:nth-child(2) {
        display: none;
    }

    .showcase-stat-value {
        font-size: 2.25rem;
    }
}

/* Animation Utilities */
.visible {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Print Styles */
@media print {

    .header,
    .menu-toggle,
    .cookie-banner,
    .back-to-top,
    .scroll-progress {
        display: none;
    }

    .hero {
        height: auto;
        min-height: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
        background: white;
    }
}

/* Case Detail Page Styles - Appended */
/* Hero Section for Case Detail */
.case-hero {
    position: relative;
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: radial-gradient(circle at top right, #1A3A52 0%, #0B1F33 50%, #050E17 100%);
    color: var(--color-text-light);
    overflow: hidden;
}

.case-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
    z-index: 1;
}

.case-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.case-hero-category {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-accent);
    font-weight: 700;
    margin-bottom: var(--spacing-md);
    padding: 0.6rem 1.75rem;
    border: 1px solid rgba(197, 160, 101, 0.3);
    background: rgba(197, 160, 101, 0.08);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.case-hero-title {
    font-size: 4.5rem;
    line-height: 1.05;
    margin-bottom: var(--spacing-md);
    font-family: var(--font-heading);
    background: linear-gradient(to right, #ffffff, #e0e0e0);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.case-hero-subtitle {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-lg);
    font-weight: 300;
}

/* Key Metrics Grid */
.case-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-lg);
    background: rgba(255, 255, 255, 0.05);
    padding: var(--spacing-lg);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: var(--spacing-xl);
    backdrop-filter: blur(12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease;
}

.case-metrics-grid:hover {
    transform: translateY(-5px);
    border-color: rgba(197, 160, 101, 0.3);
}

.case-metric-item {
    text-align: center;
}

.case-metric-value {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.case-metric-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Main Content Layout - Centered with Sidebar */
.case-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: var(--spacing-xxl);
    margin: var(--spacing-xl) 0;
    max-width: 1200px;
}

.case-main {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-muted);
}

.case-main h2 {
    font-size: 2rem;
    color: var(--color-bg-dark);
    margin: var(--spacing-lg) 0 var(--spacing-md);
}

.case-main p {
    margin-bottom: var(--spacing-md);
}

.case-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 2rem);
    height: fit-content;
}

.case-info-box {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.case-info-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-accent);
}

.case-info-item {
    margin-bottom: var(--spacing-md);
}

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

.case-info-label {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.case-info-value {
    font-size: 1.1rem;
    color: var(--color-bg-dark);
    font-weight: 500;
}

.tech-stack-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tech-tag {
    background: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    border: 1px solid var(--color-border);
    font-size: 0.85rem;
    color: var(--color-bg-dark);
}

/* Screenshots Gallery */
.case-gallery {
    margin: var(--spacing-xl) 0;
}

.gallery-grid {
    display: grid;
    gap: var(--spacing-md);
}

.gallery-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-standard);
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-main {
    margin-bottom: var(--spacing-md);
}

.gallery-secondary {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-md);
}

/* Quote/Testimonial in Case Study */
.case-quote {
    background: var(--color-accent-light);
    padding: var(--spacing-lg);
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    margin: var(--spacing-lg) 0;
}

.case-quote p {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    color: var(--color-bg-dark);
    margin-bottom: 1rem;
}

.case-quote cite {
    font-style: normal;
    font-weight: 600;
    color: var(--color-text-muted);
}

/* Challenge/Solution Cards */
.challenge-solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-md);
    margin: var(--spacing-lg) 0;
}

.cs-card {
    background: white;
    padding: var(--spacing-md);
    border-radius: 12px;
    border: 1px solid var(--color-border);
}

.cs-card h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.cs-card.challenge h3 {
    color: var(--color-error);
}

.cs-card.solution h3 {
    color: var(--color-success);
}

/* Enhancing CS Cards */
.cs-card {
    transition: var(--transition-standard);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.cs-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.cs-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    transition: width 0.3s ease;
}

.cs-card.challenge::after {
    background: var(--color-error);
}

.cs-card.solution::after {
    background: var(--color-success);
}

.cs-card:hover::after {
    width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .case-content-wrapper {
        grid-template-columns: 1fr;
    }

    .case-sidebar {
        position: static;
        margin-bottom: var(--spacing-xl);
        order: -1;
        /* Show info box first on mobile */
    }

    .case-metrics-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .challenge-solution-grid {
        grid-template-columns: 1fr;
    }

    .case-hero-title {
        font-size: 2.5rem;
    }

    .gallery-secondary {
        grid-template-columns: 1fr;
    }
}