/* Minimal CSS Framework - KL Photography Style */

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 18px;
    line-height: 1.6;
    color: #333333;
    background-color: #ffffff;
    scroll-behavior: smooth;
}

body {
    font-family: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    font-weight: 400;
    margin: 0;
    padding: 0;
    padding-top: 80px;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 300;
    line-height: 1.4;
    letter-spacing: -0.01em;
    margin-bottom: 1.5rem;
    color: #333333;
}

h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.75rem;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

h4 {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.7;
}

ul, ol {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    list-style-position: outside;
}

li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
    text-align: left;
}

strong {
    font-weight: 500;
}

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

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
}

/* Logo Styles */
.logo-section {
    text-align: center;
    margin: 2rem 0;
}

.company-logo {
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .company-logo {
        max-width: 250px;
    }
    
    .logo-section {
        margin: 1.5rem 0;
    }
}

@media (max-width: 480px) {
    .company-logo {
        max-width: 200px;
    }
    
    .logo-section {
        margin: 1rem 0;
    }
}

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

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


nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 0;
    padding: 0;
}

@media (max-width: 768px) {
    nav ul {
        gap: 30px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav .container {
        padding: 0 20px;
    }
}

nav a {
    text-decoration: none;
    color: #333333;
    font-size: 1rem;
    font-weight: 400;
    text-transform: lowercase;
    letter-spacing: 0.02em;
    transition: color 0.3s ease;
    position: relative;
}

nav a:hover {
    color: #6c757d;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 1px;
    background-color: #6c757d;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

nav a:hover::after {
    width: 100%;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.language-toggle a {
    padding: 0.25rem 0.5rem;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.language-toggle a:hover {
    color: #333;
}

.language-toggle a.active {
    color: #333;
    font-weight: 500;
}

.language-toggle .separator {
    color: #ccc;
    font-size: 0.9rem;
}

/* Main Content */
main {
    padding: 0;
}

section {
    margin-bottom: 80px;
}

section:last-child {
    margin-bottom: 60px;
}

/* Parallax Hero Section */
.parallax-hero {
    height: 100vh;
    background-image: url('images/finance10.jpg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

.parallax-title {
    font-size: 4rem;
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    max-width: 1000px;
    line-height: 1.2;
    margin: 0;
}

/* Content that scrolls over background */
.content-overlay {
    background: #ffffff;
    min-height: 100vh;
    position: relative;
    z-index: 10;
    padding: 80px 0;
    margin-top: 0;
}

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

.intro-image {
    margin: 2rem 0 3rem;
    text-align: center;
}

.lead {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: #333333;
}

.services-preview {
    background: #f8f9fa;
    padding: 3rem 2rem;
    border-radius: 12px;
    margin: 3rem 0;
}

.services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.services-list li {
    font-size: 1.1rem;
    color: #6c757d;
    margin-bottom: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.services-list li:before {
    content: '•';
    color: #333333;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.vision-statement {
    margin-top: 4rem;
}

.vision-statement h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 1.5rem;
}

.vision-statement p {
    font-size: 1.2rem;
    color: #6c757d;
    line-height: 1.7;
}

/* Legacy Hero styles for other pages */
.hero {
    text-align: center;
    padding: 40px 0 60px;
}

.hero ul {
    max-width: 800px;
    margin: 0 auto 1.5rem;
    text-align: center;
    padding-left: 0;
    list-style-position: inside;
}

.hero li {
    text-align: center;
}

/* Services Page - Left-align bullet points and vertically center with image */
#services .grid-2 {
    align-items: center;
}

#services .grid-2 ul {
    padding-left: 1.5rem;
    list-style-position: outside;
    text-align: left;
    margin: 0;
}

#services .grid-2 li {
    text-align: left;
    margin-bottom: 0.75rem;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: #333333;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.25rem;
    }
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    color: #6c757d;
    line-height: 1.7;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 60px;
    margin-bottom: 60px;
}

.grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

/* Cards */
.card {
    background: #ffffff;
    padding: 40px;
    border: 1px solid #f8f9fa;
    transition: all 0.3s ease;
}

.card:hover {
    border-color: #e9ecef;
    transform: translateY(-2px);
}

.card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 400;
}

.card p {
    margin-bottom: 0;
    color: #6c757d;
    font-size: 0.95rem;
}

/* Value Proposition Section */
.value-proposition {
    background: #f8f9fa;
    padding: 60px 0;
    margin: 80px 0;
}

.value-proposition h2 {
    text-align: center;
    margin-bottom: 1rem;
}

.value-proposition .subheadline {
    text-align: center;
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto 2.5rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.benefit-card {
    background: #ffffff;
    padding: 40px 30px;
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    border-color: #e9ecef;
    transform: translateY(-2px);
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: #333333;
}

.benefit-card p {
    margin: 0;
    font-size: 0.9rem;
    color: #6c757d;
    line-height: 1.6;
}

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

figure {
    margin: 40px 0;
    text-align: center;
}

figcaption {
    font-size: 0.9rem;
    color: #6c757d;
    margin-top: 1rem;
    font-style: italic;
}

/* Links */
a {
    color: #333333;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #6c757d;
}

/* Download Links */
.download-link {
    display: inline-block;
    padding: 12px 24px;
    background: #333333;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    transition: all 0.3s ease;
    margin: 10px 0;
}

.download-link:hover {
    background: #6c757d;
    color: #ffffff;
    transform: translateY(-1px);
}

/* Contact Section */
#contact {
    background: #f8f9fa;
    padding: 60px 0;
    text-align: center;
}

address {
    font-style: normal;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #6c757d;
    margin: 1.5rem 0;
}

address strong {
    color: #333333;
    font-size: 1.3rem;
    display: block;
    margin-bottom: 1rem;
}

address a {
    color: #333333;
    text-decoration: underline;
    text-decoration-color: #e9ecef;
    transition: all 0.3s ease;
}

address a:hover {
    color: #6c757d;
    text-decoration-color: #6c757d;
}

/* Simple CTA Section */
.simple-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    margin-top: 60px;
    text-align: center;
    color: white;
}

.simple-cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: white;
    font-weight: 600;
}

.simple-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-cta {
    display: inline-block;
    padding: 15px 40px;
    background: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.btn-cta:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Contact Section */
.contact-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
}

.contact-section.contact-page {
    margin-top: 0;
}

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

/* Left Side - Transformation Phases */
.contact-left h2 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 600;
}

.transformation-phases {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.phase {
    background: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.phase h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

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

.phase ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    color: #555;
    line-height: 1.6;
}

.phase ul li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #00A6B8;
    font-weight: bold;
}

.phase ul li strong {
    color: #2c3e50;
}

/* Right Side - Profile Card */
.contact-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.profile-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    text-align: center;
}

.profile-image {
    width: 200px;
    height: 200px;
    border-radius: 0;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 4px solid #f0f0f0;
}

.profile-card h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: #1a1a1a;
}

.profile-title {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.profile-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: left;
}

/* Stats Grid */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.stat {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #00A6B8;
    margin-bottom: 5px;
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Contact Information */
.contact-info {
    text-align: left;
    margin-top: 20px;
}

.contact-info h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 15px;
    display: flex;
    flex-direction: column;
}

.contact-label {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-item a {
    color: #00A6B8;
    text-decoration: none;
    font-size: 1rem;
}

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

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    color: white;
}

.cta-section h3 {
    color: white;
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 25px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.btn {
    padding: 12px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background: white;
    color: #667eea;
}

.btn-primary:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-left h2 {
        font-size: 2rem;
    }
    
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }
    
    .profile-image {
        width: 150px;
        height: 150px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

/* Footer */
footer {
    text-align: center;
    padding: 40px 0;
    border-top: 1px solid #f0f0f0;
    background: #ffffff;
}

footer small {
    font-size: 0.85rem;
    color: #6c757d;
}

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

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

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: fadeIn 0.3s ease-out;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 2rem;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.lightbox-close:hover {
    opacity: 0.7;
}

/* Merged Services Sections */
.services-detailed {
    padding: 30px 0 40px;
    background: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 30px;
}

.services-header h2 {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 1rem;
}

.services-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.services-image {
    margin: 0;
}

.services-categories {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-category h3 {
    font-size: 1.3rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 1rem;
}

.service-category ul {
    margin: 0;
    padding-left: 1.5rem;
}

.service-category li {
    margin-bottom: 0.75rem;
    color: #6c757d;
    line-height: 1.6;
}

/* Core Offerings Section */
.core-offerings {
    padding: 40px 0 60px;
    background: #f8f9fa;
}

.core-offerings .container {
    max-width: 1000px;
    margin: 0 auto;
}

.offerings-content-full {
    text-align: center;
}

.offerings-content-full h2 {
    font-size: 2rem;
    font-weight: 300;
    color: #333333;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.offerings-list {
    margin: 0 auto;
    padding-left: 1.5rem;
    max-width: 800px;
    text-align: left;
}

.offerings-list li {
    margin-bottom: 1.25rem;
    color: #6c757d;
    line-height: 1.7;
    font-size: 1rem;
}

.offerings-list strong {
    color: #333333;
    font-weight: 500;
}

/* Optimized Section Spacing */
.content-overlay {
    padding: 40px 0 20px;
}

.services-detailed {
    padding: 30px 0 40px;
}

.value-proposition {
    margin: 40px 0 60px;
}

/* Mobile Responsive for Merged Sections */
@media (max-width: 768px) {
    .services-main-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .services-categories {
        gap: 25px;
    }
    
    .core-offerings .container {
        max-width: 100%;
        padding: 0 20px;
    }
    
    .services-header h2 {
        font-size: 2rem;
    }
    
    .offerings-content-full h2 {
        font-size: 1.75rem;
    }
    
    .services-detailed {
        padding: 20px 0 30px;
    }
    
    .core-offerings {
        padding: 30px 0 50px;
    }
    
    .content-overlay {
        padding: 30px 0 15px;
    }
    
    .services-header {
        margin-bottom: 25px;
    }
}


.contact-content {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    margin-bottom: 2rem;
    color: #333333;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.5rem;
}

.contact-item p {
    margin: 0;
    font-size: 1.1rem;
}

.contact-item a {
    color: #333333;
    text-decoration: underline;
    text-decoration-color: #e9ecef;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #6c757d;
    text-decoration-color: #6c757d;
}

.expertise-areas {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.expertise-areas h3 {
    margin-bottom: 1.5rem;
    color: #333333;
}

.expertise-areas ul {
    margin: 0;
    padding-left: 1.5rem;
}

.expertise-areas li {
    margin-bottom: 0.75rem;
    color: #6c757d;
}

.profile-card {
    background: #ffffff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.profile-card:hover {
    border-color: #e9ecef;
    transform: translateY(-4px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.profile-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.profile-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.profile-info {
    padding: 2rem;
}

.profile-info h2 {
    margin-bottom: 0.5rem;
    font-size: 1.8rem;
    color: #333333;
}

.profile-info h3 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 400;
    color: #6c757d;
}

.profile-info p {
    margin-bottom: 2rem;
    color: #6c757d;
    line-height: 1.7;
}

.profile-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    text-align: center;
}

.highlight-item h4 {
    font-size: 1.4rem;
    font-weight: 500;
    color: #333333;
    margin-bottom: 0.25rem;
}

.highlight-item p {
    font-size: 0.9rem;
    color: #6c757d;
    margin: 0;
}

.call-to-action {
    background: #f8f9fa;
    padding: 80px 0;
    text-align: center;
}

.call-to-action h2 {
    margin-bottom: 1rem;
    color: #333333;
}

.call-to-action p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    color: #6c757d;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.download-link.secondary {
    background: transparent;
    color: #333333;
    border: 2px solid #333333;
}

.download-link.secondary:hover {
    background: #333333;
    color: #ffffff;
}

/* Parallax Mobile Responsive */
@media (max-width: 768px) {
    .parallax-hero {
        background-attachment: scroll;
        height: 70vh;
    }
    
    .parallax-title {
        font-size: 2.5rem;
        padding: 0 20px;
    }
    
    .content-overlay {
        padding: 60px 0;
    }
    
    .services-preview {
        padding: 2rem 1.5rem;
        margin: 2rem 0;
    }
    
    .vision-statement h2 {
        font-size: 1.75rem;
    }
}

/* Contact Page Mobile Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .profile-highlights {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .call-to-action {
        padding: 60px 0;
    }
}

/* Responsive Typography */
@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    body {
        padding-top: 70px;
    }
    
    nav {
        padding: 15px 0;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.75rem;
    }
    
    section {
        margin-bottom: 80px;
    }
    
    .value-proposition {
        padding: 60px 0;
        margin: 80px 0;
    }
    
    #contact {
        padding: 60px 0;
    }
}
/* == SME HERO == */
.hero-sme {
  position: relative;
  padding: 80px 0 60px;
  background: radial-gradient(1200px 600px at 85% -10%, rgba(0,166,184,0.25), transparent 60%),
              linear-gradient(135deg, #0f172a 0%, #111827 55%, #0b1220 100%);
  color: #fff;
  overflow: hidden;
}

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

@media (max-width: 992px) {
  .hero-sme__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-sme {
    padding: 60px 0 40px;
  }
}

/* Left Column */
.hero-sme__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-sme__headline {
  font-weight: 600;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin: 0;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 15px;
}

.hero-sme__logo-inline {
  height: 80px;
  width: auto;
  max-width: 140px;
  display: inline-block;
  vertical-align: middle;
}

@media (max-width: 768px) {
  .hero-sme__logo-inline {
    height: 60px;
    max-width: 100px;
  }
}

.hero-sme__description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
  margin: 0;
}

/* Right Column */
.hero-sme__right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}

.hero-sme__visual {
  position: relative;
  min-height: 280px;
  width: 100%;
}

.hero-sme__orb {
  position: absolute;
  right: 10%;
  top: 0;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #00A6B8, rgba(0,166,184,0.15) 60%, transparent 70%);
  filter: blur(0.5px);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .hero-sme__orb {
    width: 200px;
    height: 200px;
    right: 50%;
    transform: translateX(50%);
  }
  .hero-sme__visual {
    min-height: 200px;
  }
  .hero-sme__right {
    align-items: center;
  }
}

.hero-sme__grid {
  position: absolute;
  inset: -20% -10% -20% -10%;
  background-image: linear-gradient(rgba(255,255,255,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.06) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(80% 60% at 60% 40%, #000 60%, transparent 100%);
  opacity: 0.6;
}

.hero-sme__pmo-text {
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  color: #667eea;
  line-height: 1.6;
  margin: 0;
}

.hero-sme__pmo-text strong {
  color: #fff;
}

.hero-sme__note {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  margin: 0;
  text-align: right;
}

@media (max-width: 992px) {
  .hero-sme__note {
    text-align: center;
  }
}

/* == VISION IMAGE SECTION == */
.vision-image-section {
  background: #ffffff;
  padding: 60px 0 40px;
}

.vision-image {
  text-align: center;
  margin: 0 auto;
  max-width: 900px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.vision-image.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.vision-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.vision-image figcaption {
  font-size: 0.95rem;
  color: #6c757d;
  margin-top: 1.5rem;
  font-style: italic;
}

@media (max-width: 768px) {
  .vision-image-section {
    padding: 40px 0 30px;
  }
}

/* == METRICS BAND == */
.metrics-band {
  background: #f8f9fa;
  padding: 50px 0;
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}

.metrics-band__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 24px;
  align-items: stretch;
}

@media (max-width: 768px) {
  .metrics-band__grid { grid-template-columns: 1fr; }
}

.metric-card {
  background: #ffffff;
  border: 1px solid #f0f0f0;
  padding: 28px 24px;
  text-align: left;
  opacity: 0;
  transform: translateY(30px);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease, opacity 0.8s ease;
}

.metric-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.metric-card.fade-in:hover {
  transform: translateY(-3px);
  border-color: #e9ecef;
  box-shadow: 0 10px 26px rgba(16,24,40,0.06);
}

.metric-card__value {
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #00A6B8; /* your accent */
  line-height: 1;
  margin-bottom: 6px;
}

.metric-card__label {
  font-weight: 600;
  color: #1f2937;
  margin-bottom: 6px;
}

.metric-card__desc {
  color: #6c757d;
  font-size: 0.95rem;
  margin: 0;
}

/* == CASE STUDY CARDS == */
.case-studies-section {
  background: #ffffff;
  padding: 80px 0;
}

.case-studies-section h2 {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
}

.case-studies-section .subtitle {
  text-align: center;
  font-size: 1.2rem;
  color: #6c757d;
  margin-bottom: 50px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.case-study-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border: 2px solid #f0f0f0;
  border-radius: 12px;
  padding: 40px 30px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.case-study-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #00A6B8 0%, #667eea 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.case-study-card:hover {
  transform: translateY(-8px);
  border-color: #00A6B8;
  box-shadow: 0 15px 40px rgba(0, 166, 184, 0.15);
}

.case-study-card:hover::before {
  transform: scaleX(1);
}

.case-study-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #00A6B8 0%, #667eea 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: white;
}

.case-study-metric {
  font-size: 3rem;
  font-weight: 800;
  color: #00A6B8;
  line-height: 1;
  margin-bottom: 15px;
  letter-spacing: -0.02em;
}

.case-study-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.3;
}

.case-study-description {
  color: #6c757d;
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 768px) {
  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .case-studies-section {
    padding: 60px 0;
  }

  .case-studies-section h2 {
    font-size: 2rem;
  }
}

/* == PHASE CARDS SCROLL ANIMATION == */
.method-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.method-heading.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.phase-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.phase-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* == APPROACH PAGE SCROLL ANIMATIONS == */
.principle-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.principle-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.pmo-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.pmo-heading.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.pmo-card {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.pmo-card.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.why-heading {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.why-heading.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.why-item {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease;
}

.why-item.fade-in {
  opacity: 1;
  transform: translateY(0);
}

/* == HEADER LOGO RESPONSIVE == */
.header-logo-wrapper img {
  height: 160px;
  width: auto;
  max-width: 280px;
}

@media (max-width: 992px) {
  .header-logo-wrapper img {
    height: 120px;
    max-width: 200px;
  }
}

@media (max-width: 768px) {
  .header-logo-wrapper img {
    height: 100px;
    max-width: 160px;
  }
}

@media (max-width: 480px) {
  .header-logo-wrapper img {
    height: 80px;
    max-width: 140px;
  }
}

/* == HAMBURGER MENU == */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile Menu Overlay */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
  display: block;
  opacity: 1;
}

/* Mobile Navigation */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  nav ul {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    padding: 80px 0 30px;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    z-index: 1000;
    overflow-y: auto;
  }

  nav ul.active {
    right: 0;
  }

  nav ul li {
    width: 100%;
    padding: 0;
  }

  nav ul li a {
    display: block;
    padding: 18px 30px;
    font-size: 1.1rem;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
  }

  nav ul li a:hover {
    background: #f8f9fa;
  }

  nav ul li a::after {
    display: none;
  }

  .language-toggle {
    padding: 18px 30px;
    border-top: 2px solid #f0f0f0;
    margin-top: 20px;
    justify-content: flex-start;
  }

  nav .container {
    justify-content: space-between;
  }
}

/* == HEADER SECTION MOBILE RESPONSIVE == */
@media (max-width: 768px) {
  /* Header section adjustments */
  section[style*="padding: 80px 0"] {
    padding: 50px 0 !important;
  }

  /* Header flex layout mobile adjustments */
  div[style*="display: flex"][style*="gap: 40px"] {
    gap: 25px !important;
  }

  /* Header title mobile sizing */
  h1[style*="font-size: 2.5rem"] {
    font-size: 1.8rem !important;
  }

  /* Header description mobile sizing */
  p[style*="font-size: 1.3rem"] {
    font-size: 1.1rem !important;
  }

  /* Hide orb visual on mobile for better performance */
  div[style*="position: absolute"][style*="right: 10%"] {
    display: none !important;
  }

  /* Contact page - stack columns on mobile */
  div[style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  /* Portfolio page - make tables scrollable horizontally */
  table {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    font-size: 0.9rem;
  }

  table th,
  table td {
    white-space: nowrap;
    min-width: 80px;
  }

  /* Add subtle scroll indicator */
  div[style*="background: #f8f9fa"] table {
    position: relative;
  }

  div[style*="background: #f8f9fa"] table::after {
    content: '← Scroll →';
    position: absolute;
    bottom: -25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.75rem;
    color: #999;
    font-style: italic;
  }

  /* Results section - stack grid items */
  #results div[style*="display: grid"][style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 30px !important;
  }

  /* Case studies section - stack all grid layouts */
  #case-studies section[style*="display: grid"] {
    display: block !important;
  }

  #case-studies section[style*="display: grid"] > div {
    margin-bottom: 20px !important;
  }

  /* Reduce padding on mobile for case study cards */
  section[style*="border-left: 4px"] {
    padding: 25px !important;
  }
}

@media (max-width: 480px) {
  /* Extra small screens */
  section[style*="padding: 80px 0"] {
    padding: 40px 0 !important;
  }

  div[style*="display: flex"][style*="gap: 40px"] {
    gap: 20px !important;
  }

  h1[style*="font-size: 2.5rem"] {
    font-size: 1.5rem !important;
  }

  p[style*="font-size: 1.3rem"] {
    font-size: 1rem !important;
  }
}

/* == CLIENT LOGOS RESPONSIVE == */
@media (max-width: 768px) {
  /* Stack logos in 2 columns on tablet */
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }
}

@media (max-width: 480px) {
  /* Stack logos in 1 column on mobile */
  div[style*="grid-template-columns: repeat(4, 1fr)"] {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }
}

/* == VIDEO BANNER == */
.video-banner {
  position: relative;
  padding: 80px 0;
  color: white;
  overflow: hidden;
  min-height: 0;
  background: linear-gradient(135deg, #0f172a 0%, #111827 55%, #0b1220 100%);
}

.video-banner video {
  display: block;
}

.video-banner__video {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

.video-banner__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.55);
  z-index: 1;
}

.video-banner .container {
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .video-banner {
    padding: 50px 0;
  }
}

/* ===== Contact Form Styles ===== */

.contact-layout {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: start;
}

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

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 6px;
}

.contact-form label .required {
    color: #667eea;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 1rem;
    font-family: inherit;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: #f8f9fa;
    color: #333;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
    background: #fff;
}

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

.contact-info-panel {
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.next-steps-list {
    list-style: none;
    padding: 0;
    margin: 0;
    counter-reset: steps;
}

.next-steps-list li {
    counter-increment: steps;
    padding-left: 40px;
    position: relative;
    margin-bottom: 20px;
}

.next-steps-list li::before {
    content: counter(steps);
    position: absolute;
    left: 0;
    top: 2px;
    width: 28px;
    height: 28px;
    background: #667eea;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
}

.next-steps-list li strong {
    display: block;
    color: #333;
    font-size: 1rem;
    margin-bottom: 4px;
}

.next-steps-list li p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

/* Form Status Banner */
.form-status-banner {
    padding: 16px 20px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
}

.form-status-banner.success {
    background: #d4edda;
    color: #155724;
    border-bottom: 2px solid #28a745;
}

.form-status-banner.error {
    background: #f8d7da;
    color: #721c24;
    border-bottom: 2px solid #dc3545;
}

/* ===== Proof Band (Homepage) ===== */

.proof-band {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.proof-band .proof-item {
    text-align: center;
    padding: 25px 15px;
}

.proof-band .proof-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 8px;
    line-height: 1.1;
}

.proof-band .proof-label {
    font-size: 0.95rem;
    color: #6c757d;
    font-weight: 500;
}

@media (max-width: 768px) {
    .proof-band {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ===== Problem-Solution Cards ===== */

.problem-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.problem-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-top: 3px solid #667eea;
}

.problem-card h3 {
    color: #333;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.problem-card .problem-text {
    color: #dc3545;
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.problem-card .solution-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

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

/* ===== Service Pillars ===== */

.service-pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.service-pillar {
    background: white;
    padding: 35px 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.service-pillar h3 {
    color: #667eea;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.service-pillar ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.service-pillar ul li {
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.5;
}

.service-pillar ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
}

.service-pillar .pillar-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.service-pillar .pillar-link:hover {
    text-decoration: underline;
}

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

/* ===== Delivery Framework ===== */

.framework-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.framework-step {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    position: relative;
}

.framework-step .step-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.framework-step h3 {
    color: #333;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.framework-step p {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 768px) {
    .framework-steps {
        grid-template-columns: 1fr;
    }
}

/* ===== Featured Case Study (Portfolio) ===== */

.featured-case {
    background: white;
    padding: 40px;
    margin-bottom: 30px;
    border-left: 4px solid #667eea;
    border-radius: 8px;
}

.featured-case h3 {
    color: #333;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.featured-case .case-context {
    color: #667eea;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.featured-case .case-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 25px;
}

.featured-case .case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.featured-case .case-metric {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
}

.featured-case .case-metric .metric-value {
    font-size: 1.8rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 4px;
}

.featured-case .case-metric .metric-label {
    font-size: 0.85rem;
    color: #6c757d;
}

.featured-case .case-cta {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.featured-case .case-cta:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .featured-case {
        padding: 25px;
    }
    .featured-case .case-grid {
        grid-template-columns: 1fr;
    }
    .featured-case .case-metrics {
        grid-template-columns: 1fr;
    }
}