/* ===================================
   Next BRG - Modern CSS Framework
   =================================== */

/* Root Variables - Modern Tech Theme */
:root {
    --primary: #0284c7;
    --primary-dark: #075985;
    --primary-light: #0ea5e9;
    --accent: #0891b2;
    --accent-dark: #065f73;
    --danger: #dc2626;
    --warning: #ea580c;
    --success: #059669;
    
    --text-dark: #020617;
    --text-body: #334155;
    --text-light: #475569;
    --text-muted: #64748b;
    
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #f1f5f9;
    --bg-dark: #020617;
    --bg-gradient: linear-gradient(135deg, #0284c7 0%, #0891b2 100%);
    
    --border: #cbd5e1;
    --border-light: #e2e8f0;
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    
    --radius: 0.5rem;
    --radius-lg: 1rem;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-body);
    background: var(--bg-primary);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-dark);
}

.text-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #0891b2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-text {
    color: var(--text-dark);
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: var(--text-body);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-link.active::after,
.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary);
    color: white !important;
    padding: 0.5rem 1.25rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 3px 0;
    transition: var(--transition);
}

/* Main Content Spacing */
main {
    margin-top: 60px;
}


.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
}

.stat-label {
    color: #94a3b8;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.1;
}

.grid-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: 2px solid transparent;
    transition: var(--transition);
    cursor: pointer;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-secondary:hover {
    background: var(--bg-secondary);
}

.btn-outline {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-outline:hover {
    background: white;
    color: var(--primary);
}

.btn-white {
    background: white;
    color: var(--primary);
}

.btn-white:hover {
    background: var(--bg-secondary);
    transform: translateY(-2px);
}

/* Sections */
section {
    padding: 5rem 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-body);
    max-width: none;
    margin: 0 auto;
    white-space: nowrap;
}

.section-tag {
    display: inline-block;
    background: var(--bg-tertiary);
    color: var(--primary);
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-light);
    width: 100%;
    max-width: none;
    margin: 0 auto;
}

/* Page Headers */
.page-header {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 100%);
    padding: 7rem 0 3rem;
    text-align: center;
}

.page-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.page-tag {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 0.25rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.page-title {
    margin-bottom: 1rem;
}

.page-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    line-height: 1.6;
}

/* Features Grid */
.features {
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white;
}

/* Industries */
.industries {
    background: white;
}

.industries-carousel {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.industry-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: var(--transition);
}

.industry-item:hover {
    background: var(--bg-secondary);
    transform: translateY(-5px);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.industry-item:hover .industry-icon {
    background: var(--primary);
    color: white;
}

/* Services */

/* Service Implementation Section */
.service-implementation {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.implementation-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.process-column h3,
.benefits-column h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.process-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.process-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.process-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.process-content p {
    color: var(--text-body);
    line-height: 1.6;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.benefit-metric {
    display: flex;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.benefit-metric:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.metric-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--bg-gradient);
    color: white;
    border-radius: 50%;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.metric-info h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.metric-info p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 768px) {
    .implementation-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .process-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .benefit-metric {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
}
.services-section {
    padding: 5rem 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
    max-width: 1200px;
}

.service-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.service-thumbnail {
    position: relative;
    height: 200px;
    background: var(--bg-tertiary);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image {
    transform: scale(1.05);
}

.service-svg {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.service-svg svg {
    width: 80%;
    height: 80%;
    max-width: 160px;
    max-height: 160px;
}

.service-card:hover .service-svg {
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
}

.thumbnail-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 3rem;
    color: var(--primary);
}

.service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.service-card:hover .service-overlay {
    opacity: 0.95;
}

.overlay-btn {
    background: white;
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.overlay-btn:hover {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-features {
    margin: 1rem 0;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-light);
    font-size: 0.875rem;
}

.feature-item i {
    color: var(--accent);
}

.service-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 0.75rem;
}

/* Process Timeline */
.service-process {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.service-process .process-timeline {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-process .timeline-item {
    text-align: center;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 2.5rem;
    top: 5rem;
    width: 2px;
    height: calc(100% + 1.5rem);
    background: var(--border);
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.timeline-content {
    text-align: center;
}

.timeline-content h3 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-content p {
    font-size: 0.875rem;
    color: var(--text-body);
}

/* Benefits */
.benefits {
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
}

@media (max-width: 1200px) {
    .benefits-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

.benefit-card {
    text-align: center;
    padding: 2rem;
    border-radius: var(--radius-lg);
    background: var(--bg-secondary);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 1.25rem;
}

/* Technologies */
.technologies {
    background: var(--bg-secondary);
}

.tech-logos {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
}

.tech-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--radius);
    transition: var(--transition);
}

.tech-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.tech-item i {
    font-size: 2rem;
    color: var(--primary);
}

/* About Page */
.mission {
    background: white;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
}

.stat-label {
    color: var(--text-light);
    font-size: 0.875rem;
}

.mission-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.visual-container {
    position: relative;
    width: 300px;
    height: 300px;
}

.circle-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 50%;
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.icon-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
    box-shadow: var(--shadow-xl);
}

.values {
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: var(--primary);
}

.technology {
    background: white;
}

.tech-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-features {
    list-style: none;
    margin-top: 1.5rem;
}

.tech-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.tech-features i {
    color: var(--accent);
}

.tech-stack {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: var(--radius-lg);
}

.stack-item {
    margin-bottom: 1.5rem;
}

.stack-label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.stack-bar {
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 4px;
    position: relative;
    overflow: hidden;
}

.stack-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s infinite;
}

.team {
    background: var(--bg-secondary);
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.highlight-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: var(--transition);
}

.highlight-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.highlight-card i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.about-cta {
    background: var(--bg-tertiary);
    color: var(--text-dark);
    text-align: center;
}

.about-cta .cta-content h2 {
    color: var(--text-dark);
}

.about-cta .cta-content p {
    color: var(--text-body);
}

/* Contact Page */
.contact-section {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
}

.form-header {
    margin-bottom: 2rem;
}

.modern-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-field {
    display: flex;
    flex-direction: column;
}

.form-field label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 0.75rem;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    align-self: flex-start;
    padding: 1rem 2rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--bg-secondary);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
}

.info-card h3 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.info-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: var(--primary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.info-content h4 {
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.info-content p {
    color: var(--text-light);
    margin: 0;
}

.response-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.response-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-body);
}

.response-item i {
    color: var(--accent);
}

.social-links-contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    background: white;
    border-radius: var(--radius);
    text-decoration: none;
    color: var(--text-body);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

/* FAQ Section */
.faq-section {
    background: var(--bg-secondary);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-card {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.faq-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.faq-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-tertiary);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 1.25rem;
    color: var(--primary);
}

/* CTA Sections */
.cta,
.services-cta {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 5rem 0;
    text-align: center;
    color: white;
}

.cta-content h2,
.services-cta .cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p,
.services-cta .cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Flash Messages */
.flash-messages {
    position: fixed;
    top: 80px;
    right: 1.5rem;
    z-index: 1001;
    max-width: 400px;
}

.flash-message {
    background: white;
    border-left: 4px solid var(--accent);
    border-radius: var(--radius);
    padding: 1rem;
    margin-bottom: 1rem;
    box-shadow: var(--shadow-lg);
    animation: slideIn 0.3s ease;
}

.flash-message.flash-success {
    border-left-color: var(--success);
}

.flash-message.flash-error {
    border-left-color: var(--danger);
}

.flash-message.flash-warning {
    border-left-color: var(--warning);
}

.flash-message.flash-info {
    border-left-color: var(--primary);
}

.flash-success .flash-content i {
    color: var(--success);
}

.flash-error .flash-content i {
    color: var(--danger);
}

.flash-warning .flash-content i {
    color: var(--warning);
}

.flash-info .flash-content i {
    color: var(--primary);
}

.flash-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.flash-content i {
    color: var(--accent);
    font-size: 1.25rem;
}

.flash-close {
    margin-left: auto;
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.25rem;
    font-size: 1.25rem;
    transition: var(--transition);
}

.flash-close:hover {
    color: var(--text-dark);
}

/* Footer */
.footer {
    background: var(--bg-secondary);
    color: var(--text-dark);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid var(--border-light);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2.5fr;
    gap: 4rem;
    margin-bottom: 2rem;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
}

.footer-desc {
    color: var(--text-body);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 500;
}

.social-links {
    display: flex;
    gap: 0.75rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
}

.contact-compact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem 3.5rem;
    max-width: none;
    width: 100%;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-body);
}

.contact-row i {
    color: var(--primary);
    width: 16px;
    font-size: 0.875rem;
    flex-shrink: 0;
}

.contact-row span {
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 600;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-body);
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 2rem;
}

.footer-bottom-links a {
    color: var(--text-body);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom-links a:hover {
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .mission-content,
    .tech-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: 0;
        background: white;
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        overflow-y: auto;
        z-index: 999;
    }
    
    .nav-menu.active {
        transform: translateX(0);
    }
    
    .mobile-toggle {
        display: flex;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .services-grid,
    .features-grid,
    .values-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .contact-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: center;
    }
    
    .contact-row {
        justify-content: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Mobile devices - iPhone SE (375px) and small Android */
@media (max-width: 480px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.5rem; }
    
    .container {
        padding: 0 1rem;
    }
    
    section {
        padding: 3rem 0;
    }
    
    .industries-carousel {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-stats {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile optimizations */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        text-align: center;
    }
    
    .contact-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: center;
        max-width: 280px;
        margin: 0 auto;
    }
    
    .contact-row {
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .contact-row span {
        font-size: 0.8rem;
        word-break: break-word;
        text-align: center;
    }
}

/* iPhone 12/13/14 and Galaxy S series (390px-414px) */
@media (min-width: 481px) and (max-width: 414px) {
    .contact-compact {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        text-align: center;
    }
    
    .contact-row span {
        font-size: 0.85rem;
    }
}

/* Larger phones like iPhone 14 Plus, Galaxy Note (414px+) */
@media (min-width: 415px) and (max-width: 767px) {
    .contact-compact {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem 1.5rem;
    }
    
    .contact-row {
        justify-content: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: left;
    }
}

/* Touch-friendly improvements for all mobile devices */
@media (max-width: 767px) {
    /* Ensure minimum touch target size of 44px */
    .btn {
        min-height: 44px;
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .nav-link {
        min-height: 44px;
        display: flex;
        align-items: center;
    }
    
    .mobile-toggle {
        min-width: 44px;
        min-height: 44px;
        padding: 0.75rem;
    }
    
    /* Better text readability on mobile */
    .footer-desc {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .contact-row i {
        font-size: 1rem;
        min-width: 20px;
    }
    
    /* Prevent horizontal scrolling */
    .container {
        max-width: 100%;
        overflow-x: hidden;
    }
    
    /* Better spacing for mobile footer */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}

/* Modern Tech Company Enhancements */
.ai-gradient-bg {
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.ai-mesh-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(6, 182, 212, 0.08) 0%, transparent 50%);
    z-index: -1;
}

.tech-card {
    background: linear-gradient(135deg, #fff 0%, #f8fdff 100%);
    border: 1px solid rgba(14, 165, 233, 0.15);
    transition: all 0.3s ease;
}

.tech-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.12);
    transform: translateY(-5px);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    position: relative;
}

.lang-button {
    background: transparent;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.4rem 0.8rem;
    color: var(--text-body);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.lang-button:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    color: var(--primary);
}

.lang-button.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.lang-button i {
    font-size: 0.75rem;
}

/* Neural Network Animation Background */
@keyframes neural-pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

.neural-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

.neural-bg::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(14, 165, 233, 0.03) 35px, rgba(14, 165, 233, 0.03) 70px),
        repeating-linear-gradient(-45deg, transparent, transparent 35px, rgba(6, 182, 212, 0.03) 35px, rgba(6, 182, 212, 0.03) 70px);
    animation: neural-pulse 4s ease-in-out infinite;
}

/* Modern service cards */
.service-card {
    background: #ffffff;
    border: 1px solid var(--border);
}

.service-card:hover {
    background: #ffffff;
    border-color: var(--primary-light);
    box-shadow: 0 10px 30px rgba(14, 165, 233, 0.1);
}

/* Subtle glow effect */
.ai-glow {
    box-shadow: 
        0 0 20px rgba(14, 165, 233, 0.2),
        0 0 40px rgba(6, 182, 212, 0.1);
}

/* Tech stack visual enhancement */
.stack-bar {
    background: linear-gradient(90deg, var(--primary) 0%, var(--accent) 100%);
    border-radius: 4px;
    height: 8px;
    position: relative;
    overflow: hidden;
}

.stack-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

/* Data flow animation */
.data-flow {
    position: relative;
    overflow: hidden;
}

.data-flow::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    animation: flow 3s linear infinite;
}

@keyframes flow {
    0% { transform: translateY(-100%); }
    100% { transform: translateY(100%); }
}

/* Technology Excellence Section */
.tech-excellence {
    padding: 5rem 0;
    background: white;
}

.tech-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.tech-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.tech-content .lead {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.tech-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.tech-stats .stat-item {
    text-align: center;
}

.tech-stats .stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.tech-stats .stat-label {
    font-size: 0.95rem;
    color: var(--text-body);
}

.tech-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.tech-box {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
}

.tech-layer {
    position: absolute;
    background: white;
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.tech-layer i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.tech-layer span {
    font-weight: 600;
    color: var(--text-dark);
}

.tech-layer.layer-1 {
    top: 0;
    left: 0;
    width: 200px;
    height: 150px;
    z-index: 3;
}

.tech-layer.layer-2 {
    top: 80px;
    left: 120px;
    width: 200px;
    height: 150px;
    z-index: 2;
}

.tech-layer.layer-3 {
    top: 160px;
    left: 60px;
    width: 200px;
    height: 150px;
    z-index: 1;
}

.tech-box:hover .tech-layer {
    transform: translateY(-10px);
}

.tech-box:hover .tech-layer.layer-1 {
    transform: translate(-10px, -10px);
}

.tech-box:hover .tech-layer.layer-2 {
    transform: translate(0, -5px);
}

.tech-box:hover .tech-layer.layer-3 {
    transform: translate(10px, 0);
}

/* Main Hero Section */
.hero-main {
    padding: 120px 0 100px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.hero-main::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(2, 132, 199, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(8, 145, 178, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-content {
    position: relative;
    z-index: 2;
}


.hero-main .hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    text-align: left;
}

.hero-main .accent-text {
    color: var(--primary);
    display: block;
    margin-top: 0.5rem;
}

.hero-main .hero-description {
    font-size: 1.125rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    max-width: 500px;
}


.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    margin-top: 2rem;
}

.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-illustration {
    width: 120%;
    max-width: none;
    height: auto;
    position: relative;
    right: -10%;
}

.hero-illustration svg {
    width: 100%;
    height: auto;
    opacity: 0.9;
}

.btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--text-dark);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}


/* Capabilities Section */
.capabilities {
    padding: 5rem 0;
    background: white;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.capability-card {
    text-align: center;
}

.capability-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.capability-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.capability-card p {
    color: var(--text-body);
    line-height: 1.6;
}

/* Key Features Bar */
.key-features {
    padding: 3rem 0;
    background: white;
    border-bottom: 1px solid var(--border);
}

.features-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-item i {
    font-size: 1.5rem;
    color: var(--primary);
}

.feature-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
}

/* Services Overview */
.services-overview {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.services-grid-home {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card-home {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.service-card-home:hover {
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.service-icon {
    width: 48px;
    height: 48px;
    background: var(--bg-secondary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.service-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.service-card-home h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.service-card-home p {
    color: var(--text-body);
    line-height: 1.6;
    margin: 0;
}

/* Page Headers */
.page-header-dark {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    text-align: center;
    color: var(--text-dark);
}

.page-header-dark h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header-dark .lead {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.4;
}

.page-header {
    padding: 100px 0 60px;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.page-header .lead {
    font-size: 1.25rem;
    color: var(--text-body);
    max-width: 600px;
    margin: 0 auto;
}

/* Mission Section - Redesigned */
.mission-section {
    padding: 5rem 0;
    background: white;
}

.mission-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mission-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.mission-main {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.mission-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.mission-lead {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.mission-description {
    font-size: 1.125rem;
    color: var(--text-body);
    line-height: 1.8;
}

.mission-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.mission-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mission-card .card-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission-card .card-icon i {
    font-size: 1.75rem;
    color: white;
}

.mission-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.mission-card p {
    font-size: 0.95rem;
    color: var(--text-body);
    margin: 0;
}

/* Old mission styles for backward compatibility */
.mission {
    padding: 5rem 0;
    background: white;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.mission-statement {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.mission-values {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.value-item i {
    font-size: 1.25rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.value-item h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    color: var(--text-dark);
}

.value-item p {
    font-size: 0.875rem;
    color: var(--text-body);
    margin: 0;
}

/* Deliver Value Section */
.deliver-value {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.value-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
}

.timeline-line {
    position: absolute;
    top: 40px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 0;
}

.value-step {
    position: relative;
    z-index: 1;
    text-align: center;
}

.step-number {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: white;
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    position: relative;
}

.value-step:hover .step-number {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.step-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.step-content p {
    font-size: 0.95rem;
    color: var(--text-body);
    line-height: 1.6;
}

/* Process Section */
.process {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.process .section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.process-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 10%;
    right: 10%;
    height: 2px;
    background: var(--border);
    z-index: 0;
}

.timeline-item {
    position: relative;
    z-index: 1;
    text-align: center;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.timeline-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-item p {
    font-size: 0.875rem;
    color: var(--text-body);
}

/* Approach Section */
.approach {
    padding: 4rem 0;
    background: white;
}

.approach-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.approach-item {
    text-align: center;
}

.approach-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.2;
    margin-bottom: 1rem;
}

.approach-item h4 {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.approach-item p {
    font-size: 0.875rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* Additional Mobile Styles */
@media (max-width: 768px) {
    .nav-menu li {
        margin: 1rem 0;
    }
    
    .nav-link {
        font-size: 1.125rem;
        padding: 0.75rem 0;
        display: block;
        border-bottom: 1px solid var(--border-light);
    }
    
    .lang-switcher {
        margin: 2rem 0;
        justify-content: center;
    }
    
    .mobile-toggle {
        display: flex;
        z-index: 1000;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    /* Hero Section */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero-content {
        order: 2;
    }
    
    .hero-visual {
        order: 1;
    }
    
    .hero-main .hero-title {
        font-size: 2.5rem;
        text-align: center;
    }
    
    .hero-main .hero-description {
        font-size: 1rem;
        margin: 0 auto 2rem;
    }
    
    .hero-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-illustration {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
        transform: scale(0.7);
    }
    
    .hero-illustration svg {
        width: 100%;
        height: auto;
    }
    
    /* Grids */
    .features-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .services-grid-home {
        grid-template-columns: 1fr;
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .process-timeline::before {
        display: none;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* About page responsive */
    .mission-features {
        grid-template-columns: 1fr;
    }
    
    .value-timeline {
        grid-template-columns: 1fr;
    }
    
    .timeline-line {
        display: none;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .tech-box {
        margin: 0 auto;
        transform: scale(0.8);
    }
    
    .tech-stats {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Close mobile styles media query */









