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

html {
    scroll-behavior: smooth;
    height: 100%;
}

body {
    font-family: 'Inter', 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

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

#main {
    flex: 1;
    padding-bottom: 120px;
}

@media (max-width: 768px) {
    #main {
        padding-bottom: 0;
    }
}

.contact-section {
    background: #f8f9fa;
    padding: 4rem 0;
}

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

.contact-methods {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

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

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

.contact-link {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #3498db;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 0;
    }
    
    .contact-methods {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .contact-item {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-icon {
        font-size: 1.5rem;
        margin-bottom: 0;
        margin-right: 0.5rem;
    }
    
    .contact-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .contact-section {
        padding: 1.5rem 0;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-icon {
        font-size: 1.2rem;
    }
    
    .contact-link {
        font-size: 0.9rem;
    }
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
}

.skip-link:focus {
    top: 6px;
}

.site-header {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.brand {
    text-decoration: none;
    color: inherit;
}

.brand-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.brand-subtitle {
    font-size: 0.9rem;
    opacity: 0.9;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a:focus {
    background-color: rgba(255,255,255,0.1);
}

.nav-menu a.active {
    background-color: rgba(255,255,255,0.2);
}

.language-switcher {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.lang-btn {
    background: none;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.lang-btn:hover,
.lang-btn.active {
    background: rgba(255,255,255,0.2);
    border-color: rgba(255,255,255,0.6);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.trust-indicators {
    background: linear-gradient(135deg, #34495e, #2c3e50);
    color: white;
    padding: 1rem 0;
}

.trust-content {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 0.9rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.trust-icon {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 6rem 0;
    text-align: center;
}

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

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin: 2rem 0;
    font-size: 0.95rem;
}

.hero-highlights span {
    background: rgba(255,255,255,0.1);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.hero-quote {
    margin: 2rem auto;
    font-size: 1.1rem;
    opacity: 0.95;
    font-style: italic;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background: #e74c3c;
    color: white;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.cta-button:hover,
.cta-button:focus {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4);
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.client-success {
    background: #f8f9fa;
}

.sector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.sector-item {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.sector-item:hover {
    transform: translateY(-5px);
}

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

.sector-title {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
}

.bridge-quote {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    font-size: 1.1rem;
    margin-top: 2rem;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.services {
    padding: 5rem 0;
}

.services-intro {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.1rem;
    color: #2c3e50;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-left: 4px solid #3498db;
}

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

.service-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-benefit {
    color: #27ae60;
    font-weight: 500;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.service-benefit::before {
    content: "•";
    color: #27ae60;
    position: absolute;
    left: 0;
}

.service-proof {
    background: #f0f8f0;
    padding: 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    border-left: 3px solid #27ae60;
}

.service-proof strong {
    color: #27ae60;
}

.about {
    background: white;
    padding: 5rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.profile-image {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #3498db, #2c3e50);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: white;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.about-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.career-timeline,
.leadership-examples {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #3498db;
}

.career-timeline h4,
.leadership-examples h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.linkedin-stats {
    display: flex;
    gap: 1rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}

.stat-item {
    background: #3498db;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.innovation-quote {
    font-style: italic;
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: #ecf0f1;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.competencies {
    list-style: none;
    margin-top: 1.5rem;
}

.competencies li {
    padding: 0.5rem 0;
    color: #2c3e50;
    position: relative;
    padding-left: 1.5rem;
}

.competencies li::before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.case-studies {
    background: #2c3e50;
    color: white;
    padding: 5rem 0;
}

.case-studies .section-title {
    color: white;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.testimonial {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    backdrop-filter: blur(10px);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    font-weight: 600;
    color: #3498db;
    margin-bottom: 0.25rem;
}

.testimonial-role {
    color: #bdc3c7;
    font-size: 0.9rem;
}

.projects-title {
    color: white;
    text-align: center;
    margin-bottom: 3rem;
    font-size: 1.5rem;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.project-card {
    background: rgba(255,255,255,0.05);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #3498db;
    backdrop-filter: blur(10px);
}

.project-card h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.project-details {
    margin-bottom: 1rem;
}

.project-details strong {
    color: #ecf0f1;
    display: block;
    margin-bottom: 0.5rem;
}

.site-footer {
    background: #34495e;
    color: white;
    padding: 3rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #3498db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p,
.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    line-height: 1.6;
}

.footer-section a:hover {
    color: #3498db;
}

.social-proof {
    background: rgba(52, 152, 219, 0.1);
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
    border-left: 4px solid #3498db;
}

.footer-bottom {
    border-top: 1px solid #4a5f7a;
    padding-top: 2rem;
    text-align: center;
    color: #95a5a6;
    font-size: 0.9rem;
}

.page-hero {
    background: linear-gradient(135deg, #2c3e50, #3498db);
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-content {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 2rem;
}

.main-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    max-width: 600px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

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

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

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

.solution-box {
    background: #fff;
    border: 2px solid #3498db;
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.impact-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.impact-list li {
    background: #f8f9fa;
    margin: 0.5rem 0;
    padding: 0.8rem;
    border-left: 4px solid #27ae60;
    border-radius: 4px;
}

.results-tagline,
.numbers-tagline {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    margin: 1rem 0;
    font-size: 1.1rem;
}

.proof-item {
    background: #f8f9fa;
    border-radius: 6px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-left: 4px solid #e74c3c;
}

.proof-item h4 {
    color: #e74c3c;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.approach-item {
    margin: 1.5rem 0;
    padding: 1rem;
    border-left: 3px solid #3498db;
    background: #f9f9f9;
    border-radius: 4px;
}

.approach-item h4 {
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.approach-item em {
    display: block;
    text-align: center;
    margin-top: 0.5rem;
    font-style: italic;
    color: #7f8c8d;
}

.client-testimonials {
    background: #ecf0f1;
    padding: 2rem 0;
    border-radius: 8px;
    margin: 2rem 0;
}

.testimonial-box {
    background: white;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border-left: 4px solid #3498db;
}

.testimonial-box blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
    line-height: 1.6;
}

.testimonial-box cite {
    color: #7f8c8d;
    font-size: 0.95rem;
    font-weight: 500;
}

.client-list {
    background: white;
    padding: 1.5rem;
    margin: 1rem 0;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
}

.client-header {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

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

.client-list li {
    padding: 0.3rem 0;
    color: #27ae60;
    font-weight: 500;
}

.testimonial-highlight {
    background: white;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 6px;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-highlight blockquote {
    font-style: italic;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.testimonial-highlight cite {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.project-example {
    background: #f8f9fa;
    padding: 1rem;
    margin: 0.8rem 0;
    border-radius: 4px;
    border-left: 3px solid #27ae60;
}

.project-example strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-proof h5 {
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-size: 1.1rem;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 0.3rem;
}

.endorsements-section {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #27ae60;
}

.endorsements-section h4 {
    color: #2c3e50;
    margin-bottom: 1rem;
}

.endorsements-section ul {
    list-style: none;
    padding-left: 0;
}

.endorsements-section li {
    padding: 0.3rem 0;
    color: #27ae60;
    font-weight: 500;
}

.innovation-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #7f8c8d;
    font-style: normal;
}

.tech-item {
    cursor: default !important;
    transition: none !important;
}

.tech-item:hover {
    background: rgba(0, 102, 204, 0.05) !important;
    border-left-color: var(--primary-blue) !important;
    transform: none !important;
    box-shadow: none !important;
}

.margin-top-1-5 {
    margin-top: 1.5rem;
}

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

.margin-top-3 {
    margin-top: 3rem;
}

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

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

.section-light-bg {
    background: #f8f9fa;
}

.section-dark-bg {
    background: #2c3e50;
    color: white;
}

.section-dark-bg .section-title {
    color: white;
}

.project-card-white {
    background: white;
    color: #333;
}

.cta-button-red {
    background: #e74c3c;
}

.cta-button-full-width {
    width: 100%;
}

.endorsement-box {
    background: #f0f8f0;
    padding: 1rem;
    border-radius: 6px;
    margin: 1rem 0;
    border-left: 3px solid #27ae60;
}

.endorsement-list {
    list-style: none;
    padding-left: 0;
    font-size: 0.9rem;
}

.info-box {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.tagline-box {
    background: #ecf0f1;
    padding: 1rem;
    border-radius: 6px;
    margin-top: 1rem;
    text-align: center;
}

.tagline-text {
    margin: 0;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .header-content {
        flex-direction: column;
        text-align: center;
    }
    
    .main-nav {
        order: 3;
        width: 100%;
        margin-top: 1rem;
    }
    
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(0,0,0,0.1);
        padding: 1rem;
        border-radius: 8px;
        gap: 0.5rem;
    }
    
    .nav-menu.show {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-highlights {
        gap: 1rem;
        font-size: 0.85rem;
    }
    
    .trust-content {
        gap: 1rem;
        font-size: 0.8rem;
        flex-direction: column;
        align-items: center;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .service-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials {
        grid-template-columns: 1fr;
    }
    
    .project-grid {
        grid-template-columns: 1fr;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .linkedin-stats {
        justify-content: center;
    }
    
    .solution-box {
        padding: 1rem;
        margin: 1rem auto;
    }
    
    .impact-list li {
        padding: 0.6rem;
        font-size: 0.95rem;
    }
    
    .proof-item {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .approach-item {
        padding: 0.8rem;
        margin: 1rem 0;
    }
    
    .testimonial-box {
        padding: 1rem;
        margin: 0.8rem 0;
    }
    
    .testimonial-box blockquote {
        font-size: 1rem;
    }
    
    .project-example {
        padding: 0.8rem;
        margin: 0.6rem 0;
    }
    
    .endorsements-section {
        padding: 1rem;
        margin: 1rem 0;
    }
    
    .trust-indicators {
        padding: 1rem 0;
    }
}

@media (max-width: 480px) {
    .brand-title {
        font-size: 1.5rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-card,
    .testimonial,
    .project-card {
        padding: 1.5rem;
    }
}

@media print {
    .site-header,
    .cta-button,
    .mobile-menu-toggle,
    .language-switcher {
        display: none;
    }
    
    .hero {
        background: none;
        color: #000;
    }
    
    * {
        color-adjust: exact;
    }
}