/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

/* Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

nav.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav .container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

nav a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

nav a:first-child {
    margin-right: auto;
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    letter-spacing: -0.5px;
}

nav a:not(:first-child)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #D4AF37;
    transition: width 0.3s ease;
}

nav a:not(:first-child):hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    height: 100vh;
    background-color: #000;
    padding: 0;
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 1s ease-in-out, transform 7s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1);
}

.hero-text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, calc(-50% + 50px));
    opacity: 0;
    width: 100%;
    text-align: center;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 2rem;
    pointer-events: none;
    will-change: opacity, transform;
}

.hero-text.active {
    opacity: 1;
    transform: translate(-50%, -50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.hero-text.active h1 {
    transform: translateY(0);
}

.hero p {
    font-size: 1.25rem;
    opacity: 0;
    color: #D4AF37;
    max-width: 800px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
    will-change: opacity, transform;
    line-height: 1.6;
}

.hero-text.active p {
    opacity: 0.9;
    transform: translateY(0);
}

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

/* Main Content */
main {
    padding: 6rem 0;
    background-color: #f8f8f8;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #000;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #000;
    letter-spacing: -0.3px;
}

p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Grid Layout */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin: 4rem 0;
}

.card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
}

/* Case Study Cards */
.case-study-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.case-study-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-radius: 12px 12px 0 0;
}

.case-study-content {
    padding: 2.5rem;
}

.metrics {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    margin: 1rem 0;
    padding: 0.75rem;
    background: #000;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.metrics:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.metric {
    flex: 1;
    text-align: center;
    padding: 0.375rem;
    position: relative;
}

.metric:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.2);
}

.metric-number {
    display: block;
    color: #D4AF37;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.metrics:hover .metric-number {
    transform: scale(1.1);
}

.metric-label {
    display: block;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.25px;
    opacity: 0.9;
}

.metric-note {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-top: 2rem;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .metrics {
        padding: 0.625rem;
        gap: 0.5rem;
    }

    .metric {
        padding: 0.25rem;
    }

    .metric-number {
        font-size: 1rem;
    }

    .metric-label {
        font-size: 0.625rem;
    }
}

/* Stats Section */
.stats {
    background-color: #000;
    color: white;
    padding: 6rem 0;
    margin: 6rem 0;
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.1), transparent);
}

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

.stats .grid {
    text-align: center;
    gap: 4rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #D4AF37;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    font-weight: 500;
}

/* CTA Section */
.cta {
    text-align: center;
    padding: 6rem 0;
    background: #f1f1f1;
    position: relative;
    overflow: hidden;
}

.button {
    display: inline-block;
    padding: 1.25rem 2.5rem;
    background-color: #000;
    color: #D4AF37;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid #000;
    letter-spacing: 0.5px;
}

.button:hover {
    background-color: transparent;
    color: #000;
    border-color: #000;
    transform: translateY(-2px);
}

/* Form Styles */
.form-group {
    margin-bottom: 2rem;
}

label {
    display: block;
    margin-bottom: 0.75rem;
    color: #333;
    font-weight: 500;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fff;
}

input:focus, textarea:focus {
    outline: none;
    border-color: #D4AF37;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #333;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.quote::before {
    content: '"';
    color: #D4AF37;
    font-size: 3rem;
    line-height: 0;
    margin-right: 0.5rem;
    vertical-align: middle;
}

.testimonial-author {
    color: #666;
    font-weight: 600;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero h1 {
        font-size: 2.8rem;
        max-width: 800px;
    }
    
    .hero p {
        font-size: 1.1rem;
        max-width: 600px;
    }
}

@media (max-width: 768px) {
    nav .container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    nav a:first-child {
        width: 100%;
        margin-bottom: 0.5rem;
        text-align: center;
    }
    
    .hero {
        padding: 7rem 0 4rem;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero p {
        font-size: 1rem;
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .grid {
        grid-template-columns: 1fr;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .stats {
        padding: 4rem 0;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.mb-4 {
    margin-bottom: 2rem;
}

.mt-4 {
    margin-top: 2rem;
}

/* Custom styles */
.hover-scale {
    transition: transform 0.3s ease;
}

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

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Utility Classes */
.text-blue-600 {
    color: #2563eb;
}

.text-blue-700 {
    color: #1d4ed8;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-blue-700 {
    background-color: #1d4ed8;
}

.text-gray-100 {
    color: #f3f4f6;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-gray-800 {
    color: #1f2937;
}

.text-gray-900 {
    color: #111827;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-100 {
    background-color: #f3f4f6;
}

.bg-gray-800 {
    background-color: #1f2937;
}

.border-gray-700 {
    border-color: #374151;
}

.hover\:bg-blue-700:hover {
    background-color: #1d4ed8;
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

.hover\:text-gray-700:hover {
    color: #374151;
}

.hover\:text-white:hover {
    color: #ffffff;
}

.transition {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.rounded-md {
    border-radius: 0.375rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.shadow-md {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.shadow-lg {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Resources Page Styles */
.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin: 4rem 0;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000;
}

.info-section {
    margin-bottom: 2rem;
}

.info-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: #000;
}

.office-locations {
    display: grid;
    gap: 2rem;
}

.office h4 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.office p {
    color: #666;
    line-height: 1.5;
}

.contact-form form {
    display: grid;
    gap: 1.5rem;
}

.form-group {
    display: grid;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: #000;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

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

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Contact Page Specific Styles */
.contact-page {
    height: calc(100vh - 60px); /* Subtract nav height */
    margin-top: 60px;
    display: flex;
    align-items: center;
}

.contact-page .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.contact-page .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-page .contact-info h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #000;
}

.contact-page .info-section {
    margin-bottom: 2rem;
}

.contact-page .info-section:last-child {
    margin-bottom: 0;
}

.contact-page .office-locations {
    display: grid;
    gap: 1.5rem;
}

.contact-page .office h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #000;
}

.contact-page .office p {
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.contact-page .contact-form form {
    display: grid;
    gap: 1rem;
}

.contact-page .form-group {
    margin-bottom: 0.5rem;
}

.contact-page .form-group label {
    display: block;
    margin-bottom: 0.25rem;
    font-weight: 500;
    color: #000;
}

.contact-page .form-group input,
.contact-page .form-group textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.contact-page .form-group textarea {
    height: 100px;
    resize: none;
}

.contact-page .button {
    margin-top: 1rem;
    width: 100%;
    padding: 0.75rem;
    background-color: #000;
    color: #D4AF37;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-page .button:hover {
    background-color: #D4AF37;
    color: #000;
}

@media (max-width: 768px) {
    .contact-page {
        height: auto;
        padding: 2rem 0;
    }
    
    .contact-page .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* About Page Styles */
.about-page {
    padding-top: 80px;
    background: linear-gradient(to bottom, #f8f8f8, #fff);
}

.about-intro {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.about-intro h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.about-intro .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-experience {
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.experience-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 3rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.experience-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.differentiators,
.values-section,
.why-choose-section {
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.impact-section {
    text-align: left;
    margin: 6rem auto;
    max-width: 1200px;
    padding: 0 2rem;
}

.impact-section h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 3rem;
    text-align: left;
    padding-bottom: 0;
}

.impact-section h2::after {
    display: none;
}

.impact-section .metrics {
    margin-top: 3rem;
    background: #000;
    padding: 4rem;
    border-radius: 0;
    box-shadow: none;
}

.impact-section .metric {
    text-align: left;
    padding: 0;
}

.impact-section .metric:not(:last-child)::after {
    display: none;
}

.impact-section .metric-number {
    font-size: 5rem;
    color: #D4AF37;
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: none;
}

.impact-section .metric-label {
    color: #fff;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
}

.impact-section .metric-note {
    color: #fff;
    font-size: 1.2rem;
    margin-top: 3rem;
    opacity: 0.8;
    text-align: left;
}

@media (max-width: 768px) {
    .impact-section {
        padding: 0 1rem;
    }

    .impact-section h2 {
        font-size: 2.5rem;
        margin-bottom: 2rem;
    }

    .impact-section .metrics {
        padding: 2rem;
    }

    .impact-section .metric {
        margin-bottom: 2rem;
    }

    .impact-section .metric:last-child {
        margin-bottom: 0;
    }

    .impact-section .metric-number {
        font-size: 3.5rem;
    }

    .impact-section .metric-label {
        font-size: 1.1rem;
    }

    .impact-section .metric-note {
        font-size: 1rem;
        margin-top: 2rem;
    }
}

.about-page section h2 {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    padding-bottom: 1.5rem;
    font-size: 2.5rem;
    color: #000;
}

.about-page section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: #D4AF37;
}

.mission-section {
    max-width: 800px;
    margin: 6rem auto;
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.mission-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #333;
    max-width: 700px;
    margin: 0 auto;
}

.about-page .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 2.5rem;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.about-page .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-page .card h3 {
    color: #000;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.about-page .card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #D4AF37;
}

.about-page .card p {
    color: #555;
    line-height: 1.7;
    flex-grow: 1;
}

@media (max-width: 768px) {
    .about-page {
        padding-top: 60px;
    }

    .about-intro {
        padding: 3rem 1.5rem;
        margin-bottom: 4rem;
    }

    .about-intro h1 {
        font-size: 2.5rem;
    }

    .about-intro .lead {
        font-size: 1.1rem;
    }

    .experience-content {
        padding: 2rem;
    }

    .experience-content p {
        font-size: 1rem;
    }

    .mission-section {
        padding: 3rem 1.5rem;
        margin: 4rem auto;
    }

    .mission-section p {
        font-size: 1.1rem;
    }

    .about-page section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
    }
}

/* Services Page Styles */
.services-page {
    padding-top: 80px;
    background: linear-gradient(to bottom, #f8f8f8, #fff);
}

.services-intro {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Solutions Page Styles */
.solutions-page {
    padding-top: 80px;
    background: linear-gradient(to bottom, #f8f8f8, #fff);
}

.solutions-intro {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

/* Case Studies Page Styles */
.case-studies-page {
    padding-top: 80px;
    background: linear-gradient(to bottom, #f8f8f8, #fff);
}

.case-studies-intro {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.case-studies-intro h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.case-studies-intro .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.case-study-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    margin-bottom: 2rem;
}

.case-study-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
}

.case-study-content {
    padding: 3rem;
}

.case-study-summary {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.case-study-details {
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f8f8;
    border-radius: 12px;
}

.detail-section {
    margin-bottom: 1.5rem;
}

.detail-section:last-child {
    margin-bottom: 0;
}

.detail-section h4 {
    color: #D4AF37;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-section p {
    color: #555;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Clients Section Styles */
.clients-section {
    margin: 6rem 0;
    padding: 0 2rem;
}

.clients-section h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.section-lead {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: #666;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.client-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    text-align: left;
}

.client-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.1);
}

.client-card h4 {
    color: #000;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.client-card p {
    color: #D4AF37;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.client-card .achievement {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .case-studies-intro {
        padding: 3rem 1.5rem;
        margin-bottom: 4rem;
    }

    .case-studies-intro h1 {
        font-size: 2.5rem;
    }

    .case-study-content {
        padding: 2rem;
    }

    .case-study-details {
        padding: 1.5rem;
    }

    .clients-section {
        margin: 4rem 0;
        padding: 0 1rem;
    }

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

/* Resources Page Styles */
.resources-page {
    padding-top: 80px;
    background: linear-gradient(to bottom, #f8f8f8, #fff);
}

.resources-intro {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.newsletter {
    text-align: center;
    padding: 6rem 0;
    background: #000;
    margin: 6rem 0 0;
}

.newsletter h2 {
    color: #fff;
    margin-bottom: 1rem;
}

.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.newsletter-form .button {
    padding: 1rem 2rem;
    white-space: nowrap;
}

/* Shared Styles for All Pages */
.services-intro h1,
.solutions-intro h1,
.case-studies-intro h1,
.resources-intro h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.services-intro .lead,
.solutions-intro .lead,
.case-studies-intro .lead,
.resources-intro .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .services-page,
    .solutions-page,
    .case-studies-page,
    .resources-page {
        padding-top: 60px;
    }

    .services-intro,
    .solutions-intro,
    .case-studies-intro,
    .resources-intro {
        padding: 3rem 1.5rem;
        margin-bottom: 4rem;
    }

    .services-intro h1,
    .solutions-intro h1,
    .case-studies-intro h1,
    .resources-intro h1 {
        font-size: 2.5rem;
    }

    .services-intro .lead,
    .solutions-intro .lead,
    .case-studies-intro .lead,
    .resources-intro .lead {
        font-size: 1.1rem;
    }

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

    .newsletter-form {
        flex-direction: column;
        padding: 0 1rem;
    }

    .newsletter-form .button {
        width: 100%;
    }
}

/* People Page Styles */
.people-page {
    padding-top: 80px;
    background: linear-gradient(to bottom, #f8f8f8, #fff);
}

.people-intro {
    max-width: 900px;
    margin: 0 auto 6rem;
    text-align: center;
    padding: 4rem 2rem;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.people-intro h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 2rem;
    letter-spacing: -1px;
    line-height: 1.2;
}

.people-intro .lead {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.people-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 4rem;
}

.profile-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.profile-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.profile-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 3rem 3rem 0;
}

.profile-monogram {
    width: 90px;
    height: 90px;
    min-width: 90px;
    background: #000;
    color: #D4AF37;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.profile-title h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.25rem;
    letter-spacing: -0.5px;
}

.profile-role {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #D4AF37;
    letter-spacing: 0.5px;
}

.profile-body {
    padding: 2rem 3rem 3rem;
}

.profile-tagline {
    font-size: 1.2rem;
    font-weight: 500;
    color: #333;
    font-style: italic;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
}

.profile-bio p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.profile-bio p:last-child {
    margin-bottom: 0;
}

.profile-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    padding: 1.5rem 2rem;
    background: #000;
    border-radius: 10px;
}

.highlight {
    flex: 1;
    text-align: center;
    position: relative;
}

.highlight:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 60%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.highlight-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.highlight-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    letter-spacing: 0.3px;
}

@media (max-width: 768px) {
    .people-page {
        padding-top: 60px;
    }

    .people-intro {
        padding: 3rem 1.5rem;
        margin-bottom: 4rem;
    }

    .people-intro h1 {
        font-size: 2.5rem;
    }

    .people-intro .lead {
        font-size: 1.1rem;
    }

    .profile-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 2rem 2rem 0;
    }

    .profile-monogram {
        width: 70px;
        height: 70px;
        min-width: 70px;
        font-size: 1.5rem;
    }

    .profile-title h2 {
        font-size: 1.6rem;
    }

    .profile-body {
        padding: 1.5rem 2rem 2rem;
    }

    .profile-highlights {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .highlight:not(:last-child)::after {
        display: none;
    }

    .highlight {
        text-align: left;
        display: flex;
        align-items: baseline;
        gap: 0.75rem;
    }

    .highlight-number {
        font-size: 1.3rem;
        min-width: 50px;
    }

    .highlight-label {
        font-size: 0.85rem;
    }
}