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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #333;
    text-decoration: none;
}

.logo::before {
    content: "";
    background-image: url('img/favicon-orig.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 32px;
    height: 32px;
    margin-right: 10px;
    display: inline-block;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #6366f1;
}

.btn-primary {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s, box-shadow 0.3s;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 25%, #3b82f6 50%, #06b6d4 75%, #f59e0b 100%);
    color: white;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.hero-text {
    flex: 1;
    max-width: 600px;
}

.hero-logo {
    flex-shrink: 0;
}

.hero-logo img {
    max-width: 400px;
    height: auto;
    display: block;
}

.hero-subtitle {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: black;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    color: black;
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #2d3748;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #718096;
    max-width: 600px;
    margin: 0 auto;
}

/* Manifesto Section */
.manifesto {
    background: #f7fafc;
}

.manifesto-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.manifesto-card {
    background: white;
    padding: 3rem 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
}

.manifesto-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.manifesto-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.manifesto-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2d3748;
    font-weight: 600;
}

.manifesto-card p {
    color: #4a5568;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* KPI Targets Section */
.kpi-targets-section {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 25%, #3b82f6 50%, #06b6d4 75%, #f59e0b 100%);
    color: white;
    margin-bottom: 0;
    animation: fadeInUp 0.8s ease-out 0.2s both;
    position: relative;
    overflow: hidden;
}

.kpi-targets-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.kpi-targets-container {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(20px);
    border-radius: 30px;
    padding: 40px;
    border: 1px solid rgba(255,255,255,0.2);
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
    z-index: 2;
}

.kpi-section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
}

.kpi-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    gap: 20px;
    min-height: 200px;
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.kpi-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.kpi-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

.kpi-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.kpi-content h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.3;
}

.kpi-description {
    font-size: 0.85rem;
    color: #4a5568;
    line-height: 1.4;
    margin-bottom: 4px;
}

.kpi-subtitle {
    font-size: 1rem;
    color: #7c3aed;
    font-style: italic;
    margin-bottom: 12px;
}

.kpi-target {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    justify-content: flex-start;
    min-height: 3rem;
    margin-top: auto;
    font-variant-numeric: tabular-nums;
    text-align: left;
}

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

/* Services Section */
.services {
    background: #f7fafc;
}

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

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

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.service-card p {
    color: #718096;
    line-height: 1.6;
}

/* Portfolio Section */
.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
}

.portfolio-item {
    aspect-ratio: 1;
    background: #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    transition: transform 0.3s;
}

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

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Testimonial Section */
.testimonial {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 25%, #3b82f6 50%, #06b6d4 75%, #f59e0b 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial .section-header h2 {
    color: white;
}

.testimonial h3 {
    font-size: 2rem;
    color: white;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.author-info h4 {
    color: white;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

/* Team Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

.member-photo {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    background: #e2e8f0;
    margin: 0 auto 1.5rem;
}

.team-member h4 {
    font-size: 1.3rem;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #718096;
}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, #4c1d95 0%, #7c3aed 25%, #3b82f6 50%, #06b6d4 75%, #f59e0b 100%);
    color: white;
    text-align: center;
}

.cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Client Logos */
.clients {
    background: #f7fafc;
}

.client-logos {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.client-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    min-width: 180px;
    text-align: center;
}

.client-logo::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.client-logo:hover::before {
    transform: scaleX(1);
}

.client-logo:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.logo-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.logo-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

.client-logo:hover .logo-icon::before {
    opacity: 0.2;
}

.compliance-icon {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 50%, #60a5fa 100%);
    color: white;
}

.compliance-icon::before {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent);
}

.finance-icon {
    background: linear-gradient(135deg, #7c3aed 0%, #8b5cf6 50%, #a855f7 100%);
    color: #FFD700;
}

.finance-icon::before {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent);
}

.cx-icon {
    background: linear-gradient(135deg, #0d9488 0%, #14b8a6 50%, #2dd4bf 100%);
    color: white;
}

.cx-icon::before {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent);
}

.hr-icon {
    background: linear-gradient(135deg, #ea580c 0%, #f97316 50%, #fb923c 100%);
    color: white;
}

.hr-icon::before {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent);
}

.pdc-icon {
    background: linear-gradient(135deg, #eab308 0%, #fbbf24 50%, #facc15 100%);
    color: white;
}

.pdc-icon::before {
    background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.3), transparent);
}

.logo-text {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.client-logo:hover .logo-text {
    color: #1a202c;
}

.client-logo:hover .logo-icon {
    transform: scale(1.1);
}

/* Logo Icon Animations */
.logo-icon svg {
    transition: all 0.3s ease;
}

.client-logo:hover .logo-icon svg {
    transform: scale(1.1);
}

/* Individual Logo Hover Effects */
.client-logo:hover .compliance-icon {
    box-shadow: 0 0 30px rgba(220, 38, 38, 0.4);
}

.client-logo:hover .finance-icon {
    box-shadow: 0 0 30px rgba(5, 150, 105, 0.4);
}

.client-logo:hover .cx-icon {
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.4);
}

.client-logo:hover .hr-icon {
    box-shadow: 0 0 30px rgba(234, 88, 12, 0.4);
}

.client-logo:hover .pdc-icon {
    box-shadow: 0 0 30px rgba(234, 179, 8, 0.4);
}

/* AI Hub Squads Section */
.ai-squads {
    background: #f7fafc;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 250px;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.card p {
    color: #718096;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: auto;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #718096;
}

.meta-icon {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
}

.project-count {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: none;
}

.project-count-display {
    background: rgb(168 168 168 / 10%);
    color: #000000;
    padding: 4px 8px;
    border-radius: 5px;
    font-size: 0.75rem;
    font-weight: 500;
    border: 1px solid rgb(255 255 255 / 20%);
}

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

.card-enter {
    animation: cardEntry 0.6s ease-out forwards;
}

/* Modal Overlay Styles */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

.modal-container {
    background: white;
    border-radius: 20px;
    width: 95%;
    max-width: 1400px;
    max-height: 95vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    animation: modalSlideIn 0.3s ease-out;
    position: relative;
}

.modal-header {
    position: sticky;
    top: 0;
    background: white;
    padding: 20px;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    z-index: 10001;
}

.modal-close {
    background: none;
    border: none;
    font-size: 2rem;
    color: #718096;
    cursor: pointer;
    padding: 5px 10px;
    border-radius: 50%;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: #f7fafc;
    color: #2d3748;
    transform: scale(1.1);
}

.modal-content {
    padding: 0 30px 30px;
    overflow-y: auto;
    max-height: calc(95vh - 80px);
}

.modal-squad-header {
    text-align: center;
    margin-bottom: 40px;
    padding: 20px 0;
}

.modal-squad-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 15px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.squad-description {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Gantt Chart Styles (adapted from AI_Tribe.html) */
.gantt-container {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.gantt-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
}

.gantt-title h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2d3748;
}

.gantt-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
    margin-bottom: 20px;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 20px;
}

.gantt-timeline-header {
    display: grid;
    grid-template-columns: repeat(30, 1fr);
    gap: 1px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 5px;
    border: 1px solid #e2e8f0;
}

.gantt-month-header {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 8px 4px;
    text-align: center;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 6px;
    margin-bottom: 2px;
}

.gantt-week-header {
    background: #ffffff;
    color: #64748b;
    padding: 6px 2px;
    text-align: center;
    font-size: 0.6rem;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid #e2e8f0;
}

.gantt-body {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 20px;
}

.gantt-phases {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gantt-phase-label {
    height: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 8px 15px;
    background: #f8fafc;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 500;
    color: #2d3748;
    border: 1px solid #e2e8f0;
    overflow: hidden;
    margin-bottom: 8px;
}

.gantt-timeline {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.gantt-timeline-row {
    display: flex;
    height: 50px;
    background: #f8fafc;
    border-radius: 8px;
    padding: 10px 5px;
    border: 1px solid #e2e8f0;
    position: relative;
    margin-bottom: 8px;
}

.gantt-timeline-bar {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 28px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
    font-weight: 600;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.gantt-timeline-bar:hover {
    transform: translateY(-50%) scale(1.02);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
}

.gantt-timeline-bar.color-1 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.gantt-timeline-bar.color-2 {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.gantt-timeline-bar.color-3 {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.gantt-timeline-bar.color-4 {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.gantt-timeline-bar.color-5 {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.gantt-timeline-bar.color-6 {
    background: linear-gradient(135deg, #a8edea 0%, #fed6e3 100%);
}

.gantt-timeline-bar.color-7 {
    background: linear-gradient(135deg, #ffecd2 0%, #fcb69f 100%);
}

.gantt-timeline-bar.color-8 {
    background: linear-gradient(135deg, #ff8a80 0%, #ea6100 100%);
}

.gantt-timeline-bar.color-9 {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}

.gantt-timeline-bar.color-10 {
    background: linear-gradient(135deg, #a6c1ee 0%, #fbc2eb 100%);
}

/* Squad KPI Section Styles */
.squad-kpi-section {
    margin: 40px 0;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.squad-kpi-container {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.3);
}

.squad-kpi-title {
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.kpi-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 30px;
}

.kpi-metric-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.kpi-metric-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
}

.kpi-metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.kpi-metric-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.kpi-metric-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.kpi-metric-header h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.kpi-chart-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.kpi-line-labels {
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}

.kpi-line-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.kpi-line-label-text {
    font-size: 0.8rem;
    font-weight: 500;
    color: #4a5568;
}

.kpi-line-label-value {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
}

.kpi-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: 8px;
    border: 1px solid #e2e8f0;
}

.kpi-trend-positive {
    font-weight: 600;
    color: #10b981;
    font-size: 0.9rem;
}

.kpi-trend-text {
    font-size: 0.8rem;
    color: #6b7280;
}

/* Projects Section Styles */
.projects-section {
    margin-top: 40px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin-top: 20px;
}

.project-card {
    background: #f8fafc;
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.project-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 15px;
}

.pic-info {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #e2e8f0;
}

.pic-info div {
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: #4a5568;
}

.pic-info div:last-child {
    margin-bottom: 0;
}

.pic-info strong {
    color: #2d3748;
    font-weight: 600;
}

.project-phases {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.phase-card {
    background: #ffffff;
    border-radius: 8px;
    padding: 15px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #7c3aed;
}

.phase-card h5 {
    font-size: 0.9rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 10px;
    line-height: 1.3;
}

.phase-timeline-summary {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.timeline-month-tag {
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 500;
}

/* Hierarchical Projects Structure Styles */
.projects-hierarchy {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 20px;
}

.initiative-card {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.initiative-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
}

.initiative-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.initiative-header {
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #e2e8f0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.initiative-header:hover {
    border-bottom-color: #7c3aed;
}

.initiative-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.initiative-title::after {
    content: '▼';
    font-size: 0.8rem;
    color: #7c3aed;
    transition: transform 0.3s ease;
}

.initiative-card.collapsed .initiative-title::after {
    transform: rotate(-90deg);
}

.projects-container {
    transition: all 0.3s ease;
    overflow: hidden;
}

.initiative-card.collapsed .projects-container {
    max-height: 0;
    opacity: 0;
    margin-top: 0;
}

.nested-projects {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.project-item {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #e2e8f0;
    border-left: 4px solid #3b82f6;
    transition: all 0.3s ease;
}

.project-item:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left-color: #7c3aed;
}

.project-header {
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
}

.project-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
}

.project-pic-info {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 0.85rem;
    color: #4a5568;
}

.project-pic-info div {
    display: flex;
    align-items: center;
    gap: 5px;
}

.project-pic-info strong {
    color: #2d3748;
    font-weight: 600;
}

.tasks-list {
    margin-top: 10px;
}

.tasks-header {
    font-size: 0.95rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.tasks-header::before {
    content: '📋';
    font-size: 0.8rem;
}

.task-item {
    background: #ffffff;
    border-radius: 8px;
    padding: 12px 15px;
    margin-bottom: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.task-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, #7c3aed 0%, #3b82f6 50%, #06b6d4 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.task-item:hover::before {
    transform: scaleY(1);
}

.task-item:hover {
    transform: translateX(3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.task-name {
    font-size: 0.9rem;
    color: #2d3748;
    font-weight: 500;
    line-height: 1.4;
}

.no-content {
    text-align: center;
    padding: 30px;
    color: #718096;
    font-style: italic;
    background: #f8fafc;
    border-radius: 8px;
    border: 1px dashed #e2e8f0;
}

/* Empty State Styles */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: #4a5568;
}

.empty-state h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.empty-state p {
    font-size: 1rem;
    opacity: 0.8;
}

/* Project Request Form Styles */
.project-request-form {
    max-width: 800px;
    margin: 0 auto;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0aec0;
}

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

.form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.btn-secondary {
    background: #f7fafc;
    color: #4a5568;
    padding: 12px 24px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: #edf2f7;
    border-color: #cbd5e0;
    color: #2d3748;
}

/* Dark theme form styles */
.dark-theme .form-group label {
    color: var(--text-primary);
}

.dark-theme .form-group input,
.dark-theme .form-group textarea {
    background: var(--bg-tertiary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.dark-theme .form-group input:focus,
.dark-theme .form-group textarea:focus {
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.dark-theme .form-group input::placeholder,
.dark-theme .form-group textarea::placeholder {
    color: var(--text-muted);
}

.dark-theme .form-actions {
    border-top-color: var(--border-color);
}

.dark-theme .btn-secondary {
    background: var(--bg-tertiary);
    color: var(--text-secondary);
    border-color: var(--border-color);
}

.dark-theme .btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--text-muted);
    color: var(--text-primary);
}

/* Modal Animations */
@keyframes modalFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Theme Toggle Styles */
.theme-toggle {
    display: flex;
    align-items: center;
    margin: 0 1rem;
}

.theme-switch {
    display: none;
}

.theme-label {
    position: relative;
    display: flex;
    align-items: center;
    width: 60px;
    height: 30px;
    background: #e2e8f0;
    border-radius: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    padding: 3px;
}

.theme-label:hover {
    background: #cbd5e0;
}

.theme-icon {
    position: absolute;
    font-size: 16px;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
}

.theme-icon.sun {
    left: 3px;
    opacity: 1;
}

.theme-icon.moon {
    right: 3px;
    opacity: 0;
}

.theme-label::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
    left: 3px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.theme-switch:checked + .theme-label {
    background: #4a5568;
}

.theme-switch:checked + .theme-label::after {
    transform: translateX(30px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.theme-switch:checked + .theme-label .sun {
    opacity: 0;
}

.theme-switch:checked + .theme-label .moon {
    opacity: 1;
}

/* Dark Theme Styles */
.dark-theme {
    --bg-primary: #1a202c;
    --bg-secondary: #2d3748;
    --bg-tertiary: #4a5568;
    --text-primary: #f7fafc;
    --text-secondary: #e2e8f0;
    --text-muted: #a0aec0;
    --border-color: #4a5568;
    --card-bg: #2d3748;
    --modal-bg: #2d3748;
}

.dark-theme body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
}

.dark-theme header {
    background: rgba(26, 32, 44, 0.95);
    backdrop-filter: blur(10px);
}

.dark-theme .logo,
.dark-theme .nav-links a {
    color: var(--text-primary);
}

.dark-theme .nav-links a:hover {
    color: #667eea;
}

.dark-theme .hero h1,
.dark-theme .hero p {
    color: var(--text-primary);
}

.dark-theme .manifesto {
    background: var(--bg-secondary);
}

.dark-theme .manifesto-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.dark-theme .manifesto-card h3 {
    color: var(--text-primary);
}

.dark-theme .manifesto-card p {
    color: var(--text-secondary);
}

.dark-theme .section-header h2 {
    color: var(--text-primary);
}

.dark-theme .section-header p {
    color: var(--text-muted);
}

.dark-theme .kpi-card {
    background: rgba(45, 55, 72, 0.95);
    border: 1px solid var(--border-color);
}

.dark-theme .kpi-content h3 {
    color: var(--text-primary);
}

.dark-theme .kpi-description {
    color: var(--text-secondary);
}

.dark-theme .ai-squads {
    background: var(--bg-secondary);
}

.dark-theme .card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
}

.dark-theme .card h3 {
    color: var(--text-primary);
}

.dark-theme .card p {
    color: var(--text-secondary);
}

.dark-theme .clients {
    background: var(--bg-secondary);
}

.dark-theme .client-logo {
    background: rgba(45, 55, 72, 0.8);
    border: 1px solid var(--border-color);
}

.dark-theme .client-logo:hover {
    background: rgba(45, 55, 72, 0.95);
}

.dark-theme .logo-text {
    color: var(--text-primary);
}

.dark-theme .client-logo:hover .logo-text {
    color: var(--text-primary);
}

.dark-theme .team {
    background: var(--bg-primary);
}

.dark-theme .team .section-header h2 {
    color: var(--text-primary);
}

.dark-theme .team .section-header p {
    color: var(--text-muted);
}

.dark-theme .team-member h4 {
    color: var(--text-primary);
}

.dark-theme .team-member p {
    color: var(--text-muted);
}

.dark-theme .member-photo {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.dark-theme .testimonial .section-header h2,
.dark-theme .testimonial h3 {
    color: var(--text-primary);
}

.dark-theme .author-avatar {
    background: rgba(45, 55, 72, 0.6);
    border: 2px solid var(--border-color);
}

.dark-theme .author-info h4 {
    color: var(--text-primary);
}

.dark-theme .author-info p {
    color: var(--text-secondary);
}

/* Modal Dark Theme */
.dark-theme .modal-container {
    background: var(--modal-bg);
    border: 1px solid var(--border-color);
}

.dark-theme .modal-header {
    background: var(--modal-bg);
    border-bottom: 1px solid var(--border-color);
}

.dark-theme .modal-close {
    color: var(--text-muted);
}

.dark-theme .modal-close:hover {
    background: var(--bg-tertiary);
    color: var(--text-primary);
}

.dark-theme .modal-squad-header h1 {
    color: var(--text-primary);
}

.dark-theme .squad-description {
    color: var(--text-secondary);
}

.dark-theme .gantt-container {
    background: rgba(45, 55, 72, 0.95);
    border: 1px solid var(--border-color);
}

.dark-theme .gantt-title h3 {
    color: var(--text-primary);
}

.dark-theme .gantt-phase-label {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.dark-theme .gantt-timeline-row {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.dark-theme .gantt-timeline-header {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.dark-theme .gantt-week-header {
    background: var(--card-bg);
    color: var(--text-muted);
    border: 1px solid var(--border-color);
}

.dark-theme .squad-kpi-container {
    background: rgba(45, 55, 72, 0.95);
    border: 1px solid var(--border-color);
}

.dark-theme .squad-kpi-title {
    color: var(--text-primary);
}

.dark-theme .kpi-metric-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.dark-theme .kpi-metric-header h4 {
    color: var(--text-primary);
}

.dark-theme .kpi-line-label-text,
.dark-theme .kpi-line-label-value {
    color: var(--text-secondary);
}

.dark-theme .kpi-trend {
    background: rgba(45, 55, 72, 0.7);
    border: 1px solid var(--border-color);
}

.dark-theme .kpi-trend-text {
    color: var(--text-muted);
}

.dark-theme .project-card {
    background: var(--bg-tertiary);
    border: 1px solid var(--border-color);
}

.dark-theme .project-card h4 {
    color: var(--text-primary);
}

.dark-theme .pic-info {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
}

.dark-theme .pic-info strong {
    color: var(--text-primary);
}

.dark-theme .empty-state h3 {
    color: var(--text-primary);
}

.dark-theme .empty-state p {
    color: var(--text-secondary);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .hero-logo img {
        max-width: 250px;
    }

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

    .manifesto-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .manifesto-card {
        padding: 2rem 1.5rem;
    }

    /* KPI Targets Mobile Styles */
    .kpi-section-title {
        font-size: 2rem;
    }
    
    .kpi-targets-container {
        padding: 25px;
        border-radius: 20px;
    }
    
    .kpi-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .kpi-card {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .kpi-icon {
        align-self: center;
    }

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

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

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

    /* AI Hub Squads Mobile Styles */
    .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .card {
        padding: 20px;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .card p {
        font-size: 0.9rem;
    }
    
    .card-meta {
        gap: 15px;
        margin-bottom: 15px;
    }
    
    .meta-item {
        font-size: 0.8rem;
    }
    
    .project-count {
        font-size: 0.75rem;
        padding: 5px 10px;
    }

    /* Modal Mobile Styles */
    .modal-container {
        width: 98%;
        max-height: 98vh;
        margin: 1vh;
    }

    .modal-content {
        padding: 0 20px 20px;
    }

    .modal-squad-header h1 {
        font-size: 2rem;
    }

    .squad-description {
        font-size: 1rem;
    }

    .gantt-header {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gantt-body {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gantt-timeline-header {
        grid-template-columns: repeat(auto-fit, minmax(20px, 1fr));
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .kpi-metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .squad-kpi-title {
        font-size: 1.5rem;
    }

    .squad-kpi-container {
        padding: 20px;
    }

    .kpi-metric-card {
        padding: 20px;
    }

    .project-card {
        padding: 20px;
    }

    /* Client Logos Mobile Styles */
    .client-logos {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        justify-items: center;
    }
    
    .client-logo {
        min-width: 140px;
        padding: 1.5rem 1rem;
        gap: 0.8rem;
    }
    
    .logo-icon {
        width: 60px;
        height: 60px;
    }
    
    .logo-text {
        font-size: 0.9rem;
    }

    /* Project Request Form Mobile Styles */
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 15px;
    }

    .form-group {
        margin-bottom: 15px;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 10px;
        margin-top: 20px;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
    }
}
