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

:root {
    --primary-color: #2656c6;
    --dark-color: #1A1A2E;
    --text-primary: #1A1A2E;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #FFFFFF;
    --bg-light: #F7F7F7;
    --bg-lighter: #FAFAFA;
    --border-color: #E5E5E5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    background: var(--bg-white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

/* Top Bar */
.top-bar {
    background: var(--bg-lighter);
    border-bottom: 1px solid var(--border-color);
    padding: 10px 0;
    font-size: 14px;
}

.top-bar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-link {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.top-bar-link:hover {
    color: var(--primary-color);
}

.top-bar-link svg {
    flex-shrink: 0;
}

.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
}

.lang-active {
    color: var(--primary-color);
}

.lang-separator {
    color: var(--border-color);
}

.lang-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.lang-link:hover {
    color: var(--primary-color);
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    text-decoration: none;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-text {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
}

.logo-subtext {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-primary);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-link:hover {
    color: var(--primary-color);
}

.dropdown-icon {
    transition: transform 0.3s ease;
}

.nav-item.has-megamenu:hover .dropdown-icon {
    transform: rotate(180deg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: all 0.3s ease;
}

/* Mega Menu */
.megamenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.nav-item.has-megamenu:hover .megamenu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.megamenu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 50px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
}

.megamenu-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.megamenu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.megamenu-list a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 15px;
    transition: all 0.3s ease;
    display: block;
    padding-left: 0;
}

.megamenu-list a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.megamenu-articles {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 8px;
}

.megamenu-note {
    font-size: 13px;
    color: var(--text-secondary);
    font-style: italic;
}

.megamenu-blog li {
    font-size: 14px;
}

.megamenu-blog a {
    font-size: 14px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 14px rgba(91, 79, 255, 0.3);
}

.btn-primary:hover {
    background: #4A3FE8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(91, 79, 255, 0.4);
}

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

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-white {
    background: white;
    color: var(--primary-color);
}

.btn-white:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.btn-hero {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--text-primary);
}

.btn-hero:hover {
    background: var(--text-primary);
    color: white;
}

/* Hero Section */
.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #F7F7FF 0%, #FFFFFF 100%);
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-title {
    font-size: 72px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.hero-main {
    display: block;
}

.hero-rotating-words {
    display: block;
    height: 90px;
    position: relative;
    overflow: hidden;
}

.hero-rotating-words .word {
    position: absolute;
    color: var(--primary-color);
    opacity: 0;
    transform: translateY(100%);
    animation: rotateWords 8s infinite;
}

.hero-rotating-words .word:nth-child(1) {
    animation-delay: 0s;
}

.hero-rotating-words .word:nth-child(2) {
    animation-delay: 2s;
}

.hero-rotating-words .word:nth-child(3) {
    animation-delay: 4s;
}

.hero-rotating-words .word:nth-child(4) {
    animation-delay: 6s;
}

@keyframes rotateWords {
    0%, 25% {
        opacity: 0;
        transform: translateY(100%);
    }
    5%, 20% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateY(-100%);
    }
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 40px;
    max-width: 550px;
}

.hero-illustration {
    display: flex;
    justify-content: center;
    align-items: center;
}

.illustration-placeholder svg {
    width: 100%;
    max-width: 400px;
    height: auto;
}

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

.section-title {
    font-size: 42px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 30px;
    line-height: 1.2;
}

.section-title.centered {
    text-align: center;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 50px;
    max-width: 900px;
}

.link-underline {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.link-underline:hover {
    opacity: 0.8;
}

.centered-link {
    display: block;
    text-align: center;
    margin-top: 40px;
}

.mb-large {
    margin-bottom: 60px;
}

/* Clients Section */
.clients {
    background: var(--bg-white);
    padding: 60px 0;
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.client-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.client-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

.clients-more {
    text-align: center;
    font-size: 18px;
    color: var(--text-primary);
    font-weight: 600;
    margin: 30px 0 20px;
}

/* Gold Partner Section */
.gold-partner {
    background: var(--bg-lighter);
    padding: 100px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin: 60px 0;
}

.feature-box {
    padding: 40px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-box h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Services Section */
.services {
    background: white;
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.service-card {
    padding: 40px;
    background: var(--bg-lighter);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-link::after {
    content: '→';
}

.service-link:hover {
    gap: 12px;
}

/* CTA Banner */
.cta-banner {
    background: var(--primary-color);
    color: white;
    text-align: center;
    padding: 80px 24px;
}

.cta-banner h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Industries Section */
.industries {
    padding: 100px 0;
    background: var(--bg-lighter);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.industry-card {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.industry-icon {
    color: var(--primary-color);
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.industry-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    min-height: 50px;
}

.industry-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
}

.industry-link:hover {
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: white;
}

.testimonials-slider {
    position: relative;
    margin: 60px 0;
}

.testimonial-card {
    display: none;
    padding: 50px;
    background: var(--bg-lighter);
    border-radius: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial-card.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

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

.testimonial-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
    font-style: italic;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-secondary);
}

.testimonial-author strong {
    color: var(--text-primary);
    font-weight: 700;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--border-color);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-dot.active {
    background: var(--primary-color);
    width: 32px;
    border-radius: 6px;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: var(--bg-lighter);
    text-align: center;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 60px;
    text-align: left;
}

.process-step {
    padding: 40px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.step-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.process-step h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.contact-person h3,
.contact-locations h3,
.contact-map h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
}

.person-card {
    padding: 30px;
    background: var(--bg-lighter);
    border-radius: 12px;
    text-align: center;
}

.person-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #7C3AED);
    margin: 0 auto 20px;
}

.person-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 8px;
}

.person-card p {
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.location {
    margin-bottom: 30px;
}

.location h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
}

.location p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-map {
    text-align: center;
    margin-top: 60px;
}

.contact-map p {
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.map-placeholder {
    background: var(--bg-light);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.map-placeholder svg {
    width: 100%;
    height: auto;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-intro {
    margin-bottom: 60px;
    max-width: 800px;
}

.footer-intro h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.footer-intro p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 30px;
}

.footer-badge {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-badge p {
    margin: 0;
}

.footer-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 24px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

/* Page-Specific Styles */
.page-hero {
    background: linear-gradient(135deg, #F7F7FF 0%, #FFFFFF 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.page-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.content-main h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.content-main h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin: 40px 0 20px;
}

.content-main h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.content-main p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin: 40px 0;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--bg-lighter);
    border-radius: 12px;
}

.feature-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.feature-item h4 {
    margin: 0 0 8px 0;
    font-size: 18px;
}

.feature-item p {
    margin: 0;
    font-size: 16px;
}

.process-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin: 40px 0;
}

.process-box {
    padding: 30px;
    background: var(--bg-lighter);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.process-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.process-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.process-box p {
    margin: 0;
    font-size: 15px;
}

/* Sidebar Styles */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.sidebar-box {
    padding: 30px;
    background: var(--bg-lighter);
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.sidebar-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.sidebar-box p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

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

.benefit-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
    color: var(--text-primary);
}

.benefit-list li:last-child {
    border-bottom: none;
}

.benefit-list li:before {
    content: "✓ ";
    color: var(--primary-color);
    font-weight: 700;
    margin-right: 8px;
}

.cta-box {
    background: var(--primary-color);
    color: white;
    text-align: center;
}

.cta-box h3,
.cta-box p {
    color: white;
}

.full-width {
    width: 100%;
    display: block;
}

.small-text {
    font-size: 14px;
}

/* Additional Page Styles */
.page-intro {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 30px auto;
}

.intro-text.centered {
    text-align: center;
    max-width: 900px;
}

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

.content-boxes {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 40px 0;
}

.content-box {
    padding: 30px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
}

.highlight-box {
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.highlight-box h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.check-list {
    list-style: none;
    padding-left: 0;
    margin: 20px 0;
}

.check-list li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
    line-height: 1.7;
}

.check-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
    font-size: 18px;
}

.content-list {
    padding-left: 20px;
    margin: 20px 0;
}

.content-list li {
    margin: 12px 0;
    line-height: 1.7;
}

.centered-button {
    text-align: center;
    margin: 40px 0;
}

.section-number {
    font-size: 64px;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 20px;
}

.subsection {
    margin: 40px 0;
}

.subsection h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.subsection p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Process Steps Horizontal */
.process-overview {
    background: var(--bg-lighter);
    padding: 60px 0;
}

.process-steps-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.process-step-h {
    flex: 1;
    min-width: 120px;
    padding: 20px 15px;
    background: white;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
    transition: all 0.3s ease;
}

.process-step-h:hover {
    border-color: var(--primary-color);
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(91, 79, 255, 0.15);
}

.news-section {
    padding: 80px 0;
    background: var(--bg-white);
}

/* Implementation Page Styles */
.two-column-boxes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.problem-box,
.solution-box {
    padding: 30px;
    border-radius: 12px;
}

.problem-box {
    background: #fff;
    border: 1px solid #e0e0e0;
}

.solution-box {
    background: var(--bg-lighter);
    border: 1px solid var(--primary-color);
}

.problem-box h3,
.solution-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.cross-list {
    list-style: none;
    padding: 0;
}

.cross-list li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.6;
}

.cross-list li:before {
    content: "✕";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
}

.process-steps-horizontal {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin: 50px 0;
    position: relative;
}

.process-steps-horizontal::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: var(--primary-color);
    z-index: 0;
}

.process-step {
    flex: 1;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-lighter);
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 24px;
}

.process-step p {
    font-size: 14px;
    line-height: 1.4;
    margin: 10px 0 0;
}

.implementation-step {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid #e0e0e0;
}

.implementation-step h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.implementation-step h4 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-primary);
    font-weight: 600;
}

.implementation-step p {
    margin-bottom: 15px;
}

.service-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 40px 0;
}

.service-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--primary-color);
}

.service-icon {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
    margin: 40px 0;
}

.logo-item {
    background: #fff;
    padding: 20px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-weight: 600;
    color: var(--text-secondary);
}

.note-text {
    opacity: 0.7;
    font-style: italic;
    margin-top: 30px;
}

.small-text {
    font-size: 14px;
}

.arrow-link {
    display: inline-block;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
}

.arrow-link:after {
    content: " →";
}

.hero-content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 30px;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.cta-box-large {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    align-items: center;
    background: var(--bg-lighter);
    padding: 50px;
    border-radius: 16px;
}

.cta-image img {
    width: 100%;
    border-radius: 12px;
}

.cta-content h2 {
    margin-bottom: 30px;
}

@media (max-width: 968px) {
    .two-column-boxes,
    .service-grid-2x2,
    .hero-content-split,
    .cta-box-large {
        grid-template-columns: 1fr;
    }
    
    .process-steps-horizontal {
        flex-direction: column;
    }
    
    .process-steps-horizontal::before {
        display: none;
    }
    
    .logo-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

/* Enterprise Page Styles */
.highlight-text {
    font-size: 19px;
    line-height: 1.8;
    color: var(--text-primary);
    margin: 30px 0;
    padding: 30px;
    background: var(--bg-lighter);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
}

/* Manufacturing Features Flow */
.manufacturing-features-flow {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 50px 0;
    position: relative;
    padding: 0 20px;
}

.manufacturing-features-flow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #e3f2fd;
    z-index: 1;
}

.feature-flow-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 2;
    background: white;
    padding: 20px 10px;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e3f2fd;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-flow-item h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    text-align: center;
    margin: 0;
    line-height: 1.3;
}

@media (max-width: 768px) {
    .manufacturing-features-flow {
        flex-direction: column;
        gap: 30px;
    }
    
    .manufacturing-features-flow::before {
        display: none;
    }
    
    .feature-flow-item {
        padding: 0;
    }
}

/* End Manufacturing Features Flow */

/* Blog Page Styles */
.blog-header {
    background: linear-gradient(135deg, #F7F7FF 0%, #FFFFFF 100%);
    padding: 120px 0 80px;
    text-align: center;
}

.blog-breadcrumb {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: var(--text-secondary);
}

.blog-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-title {
    font-size: 48px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 20px;
    line-height: 1.2;
}

.blog-meta {
    margin-bottom: 30px;
}

.blog-date {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.blog-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-primary);
}

.blog-content p {
    margin-bottom: 20px;
}

.challenge-item {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.challenge-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.integration-item {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.integration-item h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.business-step {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.business-step h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.integration-comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.challenges, .benefits {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.challenges h3 {
    color: #e74c3c;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.benefits h3 {
    color: #27ae60;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
}

.image-caption {
    font-style: italic;
    color: var(--text-secondary);
    margin: 20px 0;
    text-align: center;
}

.related-topics {
    margin: 40px 0;
}

.related-topics h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.related-links {
    list-style: none;
    padding: 0;
}

.related-links li {
    margin-bottom: 10px;
}

.related-links a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.related-links a:hover {
    text-decoration: underline;
}

.learn-more {
    margin: 40px 0;
}

.learn-more h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.learn-more-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.learn-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    padding: 10px 0;
}

.learn-link:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .blog-title {
        font-size: 36px;
    }
    
    .integration-comparison {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .challenge-item,
    .integration-item,
    .business-step,
    .challenges,
    .benefits {
        padding: 20px;
    }
    
    .learn-more-links {
        flex-direction: column;
    }
}

/* Success Stories Page Styles */
.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.success-story-item {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.success-story-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.success-story-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 25px;
}

.success-metrics {
    display: flex;
    justify-content: space-around;
    gap: 20px;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.metric-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

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

.testimonial-item {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
    margin: 0;
}

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

.testimonial-author strong {
    display: block;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.testimonial-author span {
    font-size: 14px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
    }
    
    .success-metrics {
        flex-direction: column;
        gap: 15px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .metric-number {
        font-size: 24px;
    }
}

/* Odoo Integrations Page Styles */
.integrations-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    color: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    margin: 40px 0;
}

.integrations-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: 1px;
}

.integration-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

@media (max-width: 768px) {
    .integrations-banner {
        padding: 30px 20px;
    }
    
    .integrations-text {
        font-size: 18px;
    }
    
    .integration-title {
        font-size: 24px;
    }
}

/* AI ERP Integration Page Styles */
.ai-nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin: 30px 0;
}

.ai-nav-link {
    display: inline-block;
    padding: 12px 20px;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.ai-nav-link:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.challenges-box {
    background: var(--bg-lighter);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.challenges-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.challenges-list li {
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-weight: 500;
}

.challenges-list li:last-child {
    border-bottom: none;
}

.success-list,
.prognosis-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.success-list li,
.prognosis-list li {
    padding: 10px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.success-list li:before,
.prognosis-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.success-list li:last-child,
.prognosis-list li:last-child {
    border-bottom: none;
}

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

.comparison-item {
    padding: 25px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border: 2px solid var(--primary-color);
}

.comparison-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.study-highlight {
    text-align: center;
    padding: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    margin: 40px 0;
}

.study-highlight h3 {
    font-size: 24px;
    font-weight: 700;
    margin: 0;
}

.chart-section {
    background: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin: 30px 0;
    text-align: center;
}

.chart-source {
    font-style: italic;
    color: var(--text-secondary);
    font-size: 14px;
    margin-top: 10px;
}

.expert-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.expert-benefits li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 25px;
}

.expert-benefits li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.expert-benefits li:last-child {
    border-bottom: none;
}

.study-benefits {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.study-benefits li {
    padding: 15px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 30px;
}

.study-benefits li:before {
    content: "📊";
    position: absolute;
    left: 0;
    font-size: 18px;
}

.study-benefits li:last-child {
    border-bottom: none;
}

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

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

.resource-category h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

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

.resource-links li {
    margin-bottom: 10px;
}

.resource-links a {
    color: var(--text-primary);
    text-decoration: none;
    padding: 8px 0;
    display: block;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.resource-links a:hover {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
}

.services-cta {
    text-align: center;
    padding: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    margin: 40px 0;
}

.services-cta h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .ai-nav-links {
        flex-direction: column;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
    }
    
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    .challenges-box,
    .study-highlight,
    .chart-section,
    .services-cta {
        padding: 20px;
    }
}

/* Germany Starter Pack Page Styles */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.pricing-item {
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
    border: 2px solid var(--primary-color);
}

.pricing-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.total-price {
    text-align: center;
    margin: 40px 0;
    padding: 30px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
}

.total-price h3 {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 20px;
}

.comparison {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.comparison-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.comparison-item h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

.feature-column {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.feature-column h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

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

.feature-column li {
    padding: 5px 0;
    border-bottom: 1px solid #eee;
}

.feature-column li:last-child {
    border-bottom: none;
}

.highlight-box {
    background: var(--bg-lighter);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    margin: 30px 0;
}

.highlight-box h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.translation-examples {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin: 30px 0;
}

.example-item {
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.example-item h4 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

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

.team-member {
    text-align: center;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.team-member p {
    color: var(--text-secondary);
    font-weight: 500;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .translation-examples {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 20px;
    }
}

/* Enhanced Odoo Page Styles */
.odoo-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.odoo-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.badge-icon {
    font-size: 16px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.hero-actions .btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-actions .btn-primary {
    background: white;
    color: var(--primary-color);
}

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

.hero-actions .btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.hero-actions .btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stats .stat-item {
    text-align: center;
}

.hero-stats .stat-number {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 4px;
}

.hero-stats .stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 300px;
    height: 200px;
    opacity: 0.9;
}

.odoo-dashboard-preview {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-15deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.odoo-dashboard-preview:hover {
    transform: perspective(1000px) rotateY(-10deg) rotateX(2deg);
}

.dashboard-header {
    background: #f8f9fa;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid #e9ecef;
}

.dashboard-dots {
    display: flex;
    gap: 4px;
}

.dashboard-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
}

.dashboard-dots span:first-child {
    background: #ff5f57;
}

.dashboard-dots span:nth-child(2) {
    background: #ffbd2e;
}

.dashboard-dots span:last-child {
    background: #28ca42;
}

.dashboard-title {
    font-size: 12px;
    font-weight: 600;
    color: #495057;
}

.dashboard-content {
    padding: 16px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.dashboard-widget {
    background: #f8f9fa;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #e9ecef;
}

.widget-icon {
    font-size: 20px;
    margin-bottom: 4px;
}

.widget-text {
    font-size: 10px;
    font-weight: 600;
    color: #495057;
}

.enhanced-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.stat-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-icon {
    font-size: 32px;
    margin-bottom: 12px;
}

.stat-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 8px;
    line-height: 1.4;
}

.stat-trend {
    font-size: 12px;
    color: #28a745;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.feature-card {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.feature-icon {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feature-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

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

.benefit-card {
    background: white;
    padding: 28px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.benefit-highlight {
    background: var(--bg-lighter);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary-color);
    display: inline-block;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.expertise-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.expertise-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.expertise-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.expertise-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.enhanced-faq {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    margin-bottom: 24px;
    overflow: hidden;
}

.faq-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px;
    background: var(--bg-lighter);
    border-bottom: 1px solid #e9ecef;
}

.faq-header h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.faq-icon {
    font-size: 20px;
}

.faq-content {
    padding: 24px;
}

.comparison-box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 20px 0;
}

.comparison-item {
    background: var(--bg-lighter);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid #e9ecef;
}

.comparison-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.comparison-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Enhanced Table of Contents */
.toc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.toc-card {
    background: white;
    padding: 28px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.toc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
}

.toc-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.toc-icon {
    font-size: 32px;
    margin-bottom: 16px;
}

.toc-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.toc-desc {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.4;
}

.toc-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

.toc-link:hover {
    color: var(--primary-dark);
    transform: translateX(4px);
}

/* Enhanced Security Section */
.security-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.security-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.security-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.security-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.security-desc {
    font-size: 12px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.security-badge {
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
    padding: 24px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin: 40px 0;
    text-align: center;
    justify-content: center;
}

.badge-icon {
    font-size: 32px;
}

.badge-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.badge-text strong {
    font-size: 18px;
    font-weight: 600;
}

.badge-text span {
    font-size: 14px;
    opacity: 0.9;
}

/* Enhanced Architecture Section */
.architecture-overview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.arch-card {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.arch-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.arch-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.arch-desc {
    font-size: 12px;
    color: var(--text-secondary);
}

.framework-section {
    margin: 60px 0;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.framework-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: var(--bg-lighter);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.benefit-text strong {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.benefit-text span {
    font-size: 12px;
    color: var(--text-secondary);
}

.modular-section {
    margin: 60px 0;
    padding: 40px;
    background: var(--bg-lighter);
    border-radius: 16px;
    border: 1px solid #e9ecef;
}

.modular-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.stat-box {
    text-align: center;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    min-width: 120px;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
}

.modular-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.feature-text {
    font-size: 14px;
    color: var(--text-primary);
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero-visual {
        position: relative;
        transform: none;
        width: 100%;
        height: auto;
        margin-top: 30px;
    }
    
    .odoo-dashboard-preview {
        transform: none;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .enhanced-stats {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .enhanced-benefits {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .comparison-box {
        grid-template-columns: 1fr;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
    
    .security-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .architecture-overview {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .framework-benefits {
        grid-template-columns: 1fr;
    }
    
    .modular-stats {
        flex-direction: column;
        align-items: center;
    }
    
    .modular-features {
        grid-template-columns: 1fr;
    }
    
    .framework-section,
    .modular-section {
        padding: 20px;
    }
}

/* About Page Styles */
.about-hero {
    background: linear-gradient(135deg, #F7F7FF 0%, #FFFFFF 100%);
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.about-hero .page-title {
    color: var(--text-primary);
}

.about-hero .page-intro {
    color: var(--text-secondary);
}

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

.value-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 36px;
    height: 36px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 8px;
    color: white;
    transition: all 0.3s ease;
}

.value-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.value-card:hover .value-icon {
    transform: scale(1.1);
    box-shadow: 0 4px 20px rgba(91, 79, 255, 0.3);
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.value-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Modern Stats Grid */
.modern-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 30px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
}

.stat-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-description {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* Achievement Badge */
.achievement-badge {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 20px;
    color: white;
    margin-top: 50px;
    position: relative;
    overflow: hidden;
}

.achievement-badge::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.badge-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.badge-icon svg {
    width: 30px;
    height: 30px;
    fill: currentColor;
}

.badge-content {
    position: relative;
    z-index: 1;
}

.badge-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 8px;
    color: white;
}

.badge-content p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Trust Grid */
.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin: 50px 0;
}

.trust-card {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.trust-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
}

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

.trust-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 16px;
    color: white;
}

.trust-icon svg {
    width: 28px;
    height: 28px;
    fill: currentColor;
}

.trust-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.trust-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Competencies Grid */
.competencies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin: 50px 0;
}

.competency-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 40px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.competency-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
}

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

.competency-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.competency-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.competency-content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* Mission Statement */
.mission-statement {
    text-align: center;
    padding: 80px 40px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    border-radius: 24px;
    color: white;
    position: relative;
    overflow: hidden;
}

.mission-statement::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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.mission-title {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.mission-subtitle {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 24px;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.mission-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.mission-statement .btn {
    position: relative;
    z-index: 1;
    background: white;
    color: var(--primary-color);
    border: none;
    font-weight: 600;
}

.mission-statement .btn:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.quote-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
    border-radius: 16px;
    margin: 40px 0;
}

.quote-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
}

.quote-author {
    font-size: 18px;
    font-weight: 600;
    opacity: 0.9;
    margin: 0;
}

.team-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 24px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    color: var(--text-primary);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

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

.team-member {
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.member-photo {
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    font-size: 16px;
    text-align: center;
    padding: 20px;
}

.photo-placeholder {
    font-size: 14px;
    line-height: 1.3;
}

.member-info {
    padding: 24px;
    text-align: center;
}

.member-info h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.member-info p {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
    margin: 0;
}

.timeline {
    position: relative;
    margin: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-color), #7c3aed);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 80px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 8px;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border-radius: 50%;
    border: 4px solid white;
    box-shadow: 0 0 0 4px var(--primary-color);
}

.timeline-date {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.timeline-content {
    background: white;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.timeline-content p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.5;
    margin: 0;
}

.cta-section {
    text-align: center;
    padding: 40px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    margin: 40px 0;
}

.cta-section h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.cta-section .btn {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .modern-stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .stat-item {
        padding: 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .achievement-badge {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 30px 20px;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .trust-card {
        padding: 30px 20px;
    }
    
    .competencies-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .competency-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
        gap: 20px;
    }
    
    .mission-statement {
        padding: 60px 20px;
    }
    
    .mission-title {
        font-size: 36px;
    }
    
    .mission-subtitle {
        font-size: 24px;
    }
    
    .quote-section h2 {
        font-size: 24px;
    }
    
    .team-filters {
        flex-direction: column;
        align-items: center;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .timeline::before {
        left: 15px;
    }
    
    .timeline-item {
        padding-left: 50px;
    }
    
    .timeline-item::before {
        left: 5px;
    }
    
    .value-card,
    .highlight-item,
    .team-member {
        padding: 20px;
    }
}

/* Career Page Styles */
.career-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, #7c3aed 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.career-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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

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

.stat-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 500;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    margin: 40px 0;
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), #7c3aed);
}

.testimonial-quote {
    margin-bottom: 20px;
}

.testimonial-quote h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
    line-height: 1.3;
}

.testimonial-author {
    font-size: 14px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.testimonial-content p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-primary);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.gallery-item {
    aspect-ratio: 4/3;
    border-radius: 12px;
    overflow: hidden;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
}

.quote-section {
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
    border-radius: 16px;
    margin: 40px 0;
}

.quote-section h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 20px 0;
    line-height: 1.2;
}

.why-much-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin: 40px 0;
}

.why-much-card {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
}

.why-much-card h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.benefits-list,
.requirements-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.benefits-list li,
.requirements-list li {
    padding: 12px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.requirements-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.benefits-list li:last-child,
.requirements-list li:last-child {
    border-bottom: none;
}

.new-members-placeholder,
.positions-placeholder {
    background: var(--bg-lighter);
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: var(--text-secondary);
    font-style: italic;
}

.tips-section {
    margin: 40px 0;
    padding: 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.tips-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.application-documents {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin: 40px 0;
}

.document-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

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

.document-card h4 {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.case-study-section,
.interview-section {
    margin: 40px 0;
    padding: 30px;
    background: var(--bg-lighter);
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.case-study-section h3,
.interview-section h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.case-study-tips,
.interview-tips {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.case-study-tips li,
.interview-tips li {
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    position: relative;
    padding-left: 25px;
}

.case-study-tips li:before,
.interview-tips li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.case-study-tips li:last-child,
.interview-tips li:last-child {
    border-bottom: none;
}

.initiative-cta {
    text-align: center;
    margin: 40px 0;
}

.initiative-cta .btn {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
}

@media (max-width: 768px) {
    .team-stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .quote-section h2 {
        font-size: 24px;
    }
    
    .why-much-grid {
        grid-template-columns: 1fr;
    }
    
    .application-documents {
        grid-template-columns: 1fr;
    }
    
    .testimonial-card {
        padding: 20px;
    }
    
    .testimonial-quote h3 {
        font-size: 20px;
    }
}

/* Odoo Page Styles */
.toc-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.toc-list li {
    margin-bottom: 10px;
}

.toc-list a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.toc-list a:hover {
    text-decoration: underline;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-lighter);
    border-radius: 8px;
}

.stat-number {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.4;
}

.features-list {
    margin: 30px 0;
}

.additional-info {
    margin-top: 30px;
    padding: 20px;
    background: var(--bg-lighter);
    border-radius: 8px;
}

.additional-info p {
    margin-bottom: 10px;
    font-weight: 500;
}

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

.audience-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.audience-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
}

.security-note {
    font-style: italic;
    color: var(--text-secondary);
    margin-top: 20px;
}

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

.benefit-item {
    padding: 30px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.benefit-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.faq-item {
    margin-bottom: 40px;
    padding: 30px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.faq-item p {
    margin-bottom: 15px;
    line-height: 1.6;
}

.faq-item p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .target-audience {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .stat-number {
        font-size: 24px;
    }
    
    .faq-item {
        padding: 20px;
    }
}

.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 50px 0;
}

.feature-box-large {
    padding: 40px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-box-large h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.feature-box-large p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
}

.compliance-list {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.compliance-list li {
    padding: 16px 20px;
    margin: 12px 0;
    background: var(--bg-lighter);
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 17px;
    line-height: 1.7;
}

.case-studies {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin: 50px 0;
}

.case-study {
    padding: 40px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.case-study h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.case-study p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 56px;
    }
    
    .hero-container,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .megamenu-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .top-bar-left {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 135px;
        flex-direction: column;
        background: white;
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 40px 0;
        gap: 20px;
        align-items: center;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .nav-cta {
        display: none;
    }
    
    .megamenu {
        position: static;
        box-shadow: none;
        border: none;
    }
    
    .megamenu-container {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 24px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .clients-grid,
    .industries-grid,
    .process-steps,
    .footer-columns {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .page-title {
        font-size: 36px;
    }
    
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .process-boxes {
        grid-template-columns: 1fr;
    }
    
    .process-steps-horizontal {
        flex-direction: column;
    }
    
    .process-step-h {
        min-width: 100%;
    }
    
    .features-grid-3 {
        grid-template-columns: 1fr;
    }
}

/* Team Gallery Styles */
.team-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.team-member-card {
    background: white;
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.team-member-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.team-member-card .member-photo {
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid #f8f9fa;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    position: relative;
}

.team-member-card .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.3s ease;
    display: block;
    transform: scale(1.3);
    filter: grayscale(100%);
}

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

.team-member-card .member-info h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.team-member-card .member-info p {
    font-size: 14px;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@media (max-width: 768px) {
    .team-gallery {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .team-member-card {
        padding: 20px;
    }
    
    .team-member-card .member-photo {
        width: 180px;
        height: 180px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .btn {
        width: 100%;
    }
    
    .team-gallery {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

/* ===============================================
   Approach Blocks (ERP Consulting Page)
   =============================================== */
.approach-block {
    background: #f9fafb;
    padding: 2.5rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.approach-block-inner {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
}

.approach-number {
    min-width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.approach-content {
    flex: 1;
}

.approach-content h3 {
    font-size: 1.5rem;
    color: var(--text-primary);
    margin: 0 0 1rem 0;
    font-weight: 700;
}

.approach-content > p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.approach-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.approach-feature strong {
    display: block;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.approach-feature p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.approach-highlight {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    border: 2px solid transparent;
}

.approach-highlight p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.6;
}

.approach-tags {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.approach-tags span {
    background: white;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Responsive Design for Approach Blocks */
@media (max-width: 768px) {
    .approach-block {
        padding: 1.5rem;
    }
    
    .approach-block-inner {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .approach-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .approach-content h3 {
        font-size: 1.25rem;
    }
    
    .approach-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
}

/* ===============================================
   Detail Blocks (ERP Consulting Detailed Sections)
   =============================================== */
.section-header-detail {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), #7c3aed);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-header-detail .section-title {
    margin-bottom: 0.75rem;
}

.section-intro {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.detail-blocks {
    display: grid;
    gap: 2rem;
    margin-top: 3rem;
}

.detail-block {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.detail-block:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.detail-block-header {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    border-bottom: 3px solid var(--primary-color);
}

.detail-number {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
}

.detail-block-header h3 {
    margin: 0;
    font-size: 1.375rem;
    color: var(--text-primary);
    font-weight: 700;
}

.detail-block-content {
    padding: 2rem;
}

.detail-block-content > p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.detail-block-content > p:last-child {
    margin-bottom: 0;
}

.detail-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-feature-item strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.detail-feature-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
}

.detail-deliverable {
    background: #e7f3ff;
    border-left: 4px solid var(--primary-color);
    padding: 1rem 1.5rem;
    margin-top: 1.5rem;
    border-radius: 6px;
}

.detail-deliverable strong {
    color: var(--primary-color);
    font-weight: 600;
}

.detail-list {
    display: grid;
    gap: 1rem;
    margin: 1.5rem 0;
}

.detail-list-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.detail-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.detail-list-item strong {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.detail-list-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
}

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

.detail-highlight-box h4 {
    margin: 0 0 1rem 0;
    color: var(--text-primary);
    font-size: 1.125rem;
    font-weight: 600;
}

.detail-highlight-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-highlight-box li {
    padding: 0.5rem 0;
    color: var(--text-color);
    line-height: 1.6;
}

.detail-highlight-box li strong {
    color: var(--primary-color);
}

/* Responsive Design for Detail Blocks */
@media (max-width: 768px) {
    .detail-block-header {
        padding: 1.25rem 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .detail-number {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .detail-block-header h3 {
        font-size: 1.125rem;
    }
    
    .detail-block-content {
        padding: 1.5rem;
    }
    
    .detail-features {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem;
    }
}
