/* ===== CSS Variables ===== */
:root {
    --primary: #0d9488;
    --primary-dark: #0f766e;
    --primary-light: #14b8a6;
    --secondary: #111827;
    --accent: #06b6d4;
    --accent-light: #22d3ee;
    --text: #111827;
    --text-light: #4b5563;
    --text-lighter: #9ca3af;
    --bg: #ffffff;
    --bg-alt: #f9fafb;
    --bg-dark: #111827;
    --border: #e5e7eb;
    --success: #10b981;
    --shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --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;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    color: var(--secondary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

.highlight {
    color: var(--primary);
    font-weight: 700;
}

.highlight-gradient {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 16px;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: var(--primary);
    border-radius: 2px;
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 32px;
    font-size: 0.9375rem;
    font-weight: 600;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0.01em;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 4px 14px rgba(13, 148, 136, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(13, 148, 136, 0.4);
}

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

.btn-secondary:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(13, 148, 136, 0.05);
}

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

.btn-outline-light:hover {
    background: white;
    color: var(--primary);
    border-color: white;
}

.btn-full {
    width: 100%;
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.875rem;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid transparent;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--border);
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: baseline;
    gap: 6px;
    font-weight: 700;
    max-width: 100px;
}

.logo-text {
    font-size: 1.625rem;
    color: var(--secondary);
    letter-spacing: -0.02em;
}

.logo-inc {
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-light);
    position: relative;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
}

.nav-link::after {
    display: none;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(13, 148, 136, 0.08);
}

.nav-link.active {
    color: var(--primary);
    background: rgba(13, 148, 136, 0.1);
    font-weight: 600;
}

.nav-cta {
    margin-left: 16px;
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.875rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
}

.nav-toggle:hover {
    background: var(--bg-alt);
}

.nav-toggle span {
    width: 22px;
    height: 2px;
    background: var(--secondary);
    border-radius: 2px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 24px 100px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, #fafffe 0%, #ffffff 100%);
    z-index: -3;
}

.hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(13, 148, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(13, 148, 136, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: -2;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

.hero-glow-1 {
    top: 10%;
    right: 10%;
    width: 400px;
    height: 400px;
    background: rgba(13, 148, 136, 0.12);
}

.hero-glow-2 {
    bottom: 20%;
    left: 5%;
    width: 300px;
    height: 300px;
    background: rgba(6, 182, 212, 0.08);
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
    border: 1px solid rgba(13, 148, 136, 0.2);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 32px;
}

.hero-badge i {
    font-size: 0.75rem;
}

.hero-title {
    font-size: clamp(2.75rem, 5.5vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 28px;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--secondary);
}

.hero-title .highlight {
    display: block;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 48px;
    max-width: 640px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 64px;
}

.hero-clients {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.hero-clients-text {
    font-size: 0.875rem;
    color: var(--text-lighter);
    font-weight: 500;
}

.hero-clients-logos {
    display: flex;
    align-items: center;
    gap: 32px;
    opacity: 0.6;
}

.hero-clients-logos span {
    font-size: 1.25rem;
    color: var(--text-lighter);
    font-weight: 600;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-lighter);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.scroll-indicator i {
    animation: scrollBounce 2s infinite;
}

@keyframes scrollBounce {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}

/* ===== Mission Section ===== */
.mission {
    padding: 120px 0;
    background: var(--bg);
}

.mission-content {
    display: grid;
    gap: 64px;
}

.mission-text {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.mission-text h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.mission-text p {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
}

.mission-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

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

.value-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(6, 182, 212, 0.1));
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}

.value-card:hover .value-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
}

.value-icon i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: var(--transition);
}

.value-card:hover .value-icon i {
    color: white;
}

.value-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.value-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

/* ===== About Section ===== */
.about {
    padding: 120px 0;
    background: var(--bg-alt);
}

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

.about-content h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.about-intro {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    gap: 24px;
}

.feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature i {
    width: 48px;
    height: 48px;
    background: var(--bg);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: var(--shadow);
}

.feature h4 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.feature p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.about-visual {
    display: flex;
    justify-content: center;
}

.visual-box {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-xl);
    padding: 56px 48px;
    display: grid;
    gap: 40px;
    box-shadow: 0 25px 50px -12px rgba(13, 148, 136, 0.3);
    position: relative;
    overflow: hidden;
}

.visual-box::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

.stat-item {
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.stat-suffix {
    font-size: 1.75rem;
    font-weight: 600;
}

.stat-label {
    display: block;
    font-size: 0.9375rem;
    opacity: 0.85;
    margin-top: 10px;
    font-weight: 500;
}

/* ===== Testimonials Section ===== */
.testimonials {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.testimonial-card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    padding: 32px;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.testimonial-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-5px);
}

.testimonial-card.featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: none;
    color: white;
    padding: 40px;
}

.testimonial-card.featured .testimonial-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1.125rem;
}

.testimonial-card.featured .author-info h4 {
    color: white;
}

.testimonial-card.featured .author-info span {
    color: rgba(255, 255, 255, 0.8);
}

.testimonial-card.featured .author-avatar {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.testimonial-badge {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.25rem;
}

.testimonial-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.testimonial-rating i {
    color: #fbbf24;
    font-size: 0.875rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text);
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: var(--bg-alt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-lighter);
    font-size: 1.125rem;
}

.author-info h4 {
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 2px;
}

.author-info span {
    font-size: 0.8125rem;
    color: var(--text-light);
}

/* ===== Expertises Section ===== */
.expertises {
    padding: 100px 0;
    background: var(--bg);
}

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

.section-header h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.expertise-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px;
    text-align: center;
    transition: var(--transition);
    position: relative;
}

.expertise-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.expertise-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.08), rgba(6, 182, 212, 0.08));
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    transition: var(--transition);
}

.expertise-card:hover .expertise-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: scale(1.05);
}

.expertise-icon i {
    font-size: 2rem;
    color: var(--primary);
    transition: var(--transition);
}

.expertise-card:hover .expertise-icon i {
    color: white;
}

.expertise-card h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.expertise-card p {
    color: var(--text-light);
    font-size: 0.9375rem;
    line-height: 1.7;
}

.benefits-section {
    margin-top: 60px;
}

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

.benefits-card {
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
    padding: 32px;
}

.benefits-card h3 {
    font-size: 1.25rem;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.benefits-card h3 i {
    color: var(--primary);
}

.benefits-card ul {
    display: grid;
    gap: 12px;
}

.benefits-card li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: var(--text);
}

.benefits-card li i {
    color: var(--accent);
    font-size: 0.875rem;
}

/* ===== Approach Section ===== */
.approach {
    padding: 120px 0;
    background: var(--bg-alt);
}

.process-timeline {
    display: grid;
    gap: 24px;
    margin-bottom: 80px;
}

.process-step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.process-step:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--text-light);
}

.methodologies-title {
    font-size: 1.5rem;
    text-align: center;
    margin-bottom: 40px;
}

.methodology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.methodology-card {
    background: var(--bg);
    border-radius: var(--radius-lg);
    padding: 28px;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.methodology-card:hover {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.methodology-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--accent), #0891b2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.methodology-icon i {
    font-size: 1.25rem;
    color: white;
}

.methodology-card h4 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.methodology-card p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== Blog Section ===== */
.blog {
    padding: 120px 0;
    background: var(--bg);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-bottom: 48px;
}

.blog-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-alt), var(--border));
}

.blog-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.blog-placeholder i {
    font-size: 3rem;
    color: var(--primary);
    opacity: 0.5;
}

.blog-content {
    padding: 24px;
}

.blog-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.blog-content h3 {
    font-size: 1.125rem;
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.blog-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
}

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

.blog-keywords {
    text-align: center;
    padding: 32px;
    background: var(--bg-alt);
    border-radius: var(--radius-lg);
}

.blog-keywords h4 {
    font-size: 1rem;
    margin-bottom: 16px;
    color: var(--text-light);
}

.keywords-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.keyword {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 0.875rem;
    color: var(--text);
    transition: var(--transition);
}

.keyword:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== Contact Section ===== */
.contact {
    padding: 120px 0;
    background: var(--bg-dark);
    color: white;
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(13, 148, 136, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.contact .section-label {
    color: var(--accent);
}

.contact .section-label::before {
    background: var(--accent);
}

.contact h2 {
    color: white;
}

.contact .highlight {
    color: var(--accent);
}

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

.contact-info h2 {
    font-size: 2.75rem;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.contact-info > p {
    color: var(--text-lighter);
    margin-bottom: 40px;
    font-size: 1.125rem;
    line-height: 1.8;
}

.contact-details {
    display: grid;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-item i {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1.25rem;
}

.contact-item h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--text-lighter);
    font-size: 0.9375rem;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-link {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.125rem;
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.contact-form-container {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-xl);
    padding: 48px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-form {
    display: grid;
    gap: 20px;
}

.form-group {
    display: grid;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-lighter);
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: white;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

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

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

/* ===== Footer ===== */
.footer {
    background: #171932;
    padding: 80px 0 32px;
    color: var(--text-lighter);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand .logo-text {
    color: white;
}

.footer-brand p {
    font-size: 0.9375rem;
}

.footer-links h4,
.footer-newsletter h4 {
    color: white;
    font-size: 1rem;
    margin-bottom: 20px;
}

.footer-links ul {
    display: grid;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--text-lighter);
}

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

.footer-newsletter p {
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.newsletter-form {
    display: flex;
    gap: 8px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    color: white;
    font-size: 0.9375rem;
}

.newsletter-form input::placeholder {
    color: var(--text-lighter);
}

.newsletter-form button {
    padding: 12px 16px;
    background: var(--primary);
    border: none;
    border-radius: var(--radius);
    color: white;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-form button:hover {
    background: var(--primary-dark);
}

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.875rem;
}

/* ===== Réalisations Section ===== */
.realisations {
    padding: 120px 0;
    background: var(--bg-alt);
}

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

.realisation-card {
    background: var(--bg);
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.realisation-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
    border-color: transparent;
}

.realisation-image {
    position: relative;
    height: 200px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    overflow: hidden;
}

.realisation-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.realisation-placeholder i {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.3);
}

.realisation-overlay {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
}

.realisation-category {
    background: rgba(255, 255, 255, 0.95);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.realisation-content {
    padding: 24px;
}

.realisation-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.realisation-content p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin-bottom: 16px;
}

.realisation-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.realisation-tags span {
    padding: 4px 12px;
    background: var(--bg-alt);
    border-radius: 50px;
    font-size: 0.75rem;
    color: var(--text-light);
}

.realisations-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-lg);
    padding: 40px;
}

.realisation-stat {
    text-align: center;
    color: white;
}

.realisation-stat .stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.realisation-stat .stat-icon i {
    font-size: 1.5rem;
}

.realisation-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
}

.realisation-stat .stat-text {
    font-size: 0.9375rem;
    opacity: 0.9;
}

/* ===== Team Section ===== */
.team {
    padding: 120px 0;
    background: var(--bg);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.team-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    border-color: transparent;
    transform: translateY(-8px);
}

.team-photo {
    position: relative;
    height: 250px;
    background: linear-gradient(135deg, var(--bg-alt), var(--border));
    overflow: hidden;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
}

.team-placeholder i {
    font-size: 5rem;
    color: #94a3b8;
}

.team-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
    padding: 40px 16px 16px;
    display: flex;
    justify-content: center;
    gap: 12px;
    opacity: 0;
    transform: translateY(20px);
    transition: var(--transition);
}

.team-card:hover .team-social {
    opacity: 1;
    transform: translateY(0);
}

.team-social a {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-3px);
}

.team-info {
    padding: 24px;
}

.team-info h3 {
    font-size: 1.25rem;
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.875rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== Careers Section ===== */
.careers {
    padding: 120px 0;
    background: linear-gradient(135deg, var(--bg-dark), #1e293b);
    color: white;
    position: relative;
    overflow: hidden;
}

.careers::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60%;
    height: 60%;
    background: radial-gradient(ellipse at bottom left, rgba(6, 182, 212, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.careers .section-label {
    color: var(--accent);
}

.careers h2 {
    color: white;
}

.careers .highlight {
    color: var(--accent);
}

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

.careers-info p {
    color: var(--text-lighter);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.careers-perks {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.perk {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.perk:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(5px);
}

.perk i {
    font-size: 1.25rem;
    color: var(--accent);
}

.perk span {
    font-size: 0.9375rem;
    font-weight: 500;
}

.careers-jobs h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.jobs-list {
    display: grid;
    gap: 16px;
}

.job-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: 28px;
    transition: var(--transition);
}

.job-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.job-card.spontaneous {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2), rgba(6, 182, 212, 0.2));
    border-color: var(--primary);
}

.job-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.job-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.job-header h4 {
    color: white;
    font-size: 1.125rem;
    margin-bottom: 4px;
}

.job-type {
    font-size: 0.875rem;
    color: var(--text-lighter);
}

.job-card > p {
    color: var(--text-lighter);
    font-size: 0.9375rem;
    margin-bottom: 16px;
}

.job-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}

.job-tags span {
    padding: 4px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.75rem;
    color: white;
}

.job-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--accent);
    font-size: 0.9375rem;
    font-weight: 500;
    transition: var(--transition);
}

.job-apply:hover {
    color: white;
    gap: 12px;
}

.job-card.spontaneous .job-apply {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: var(--radius);
}

.job-card.spontaneous .job-apply:hover {
    background: var(--primary-dark);
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .about-grid,
    .contact-grid,
    .careers-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

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

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .testimonial-card.featured {
        order: -1;
    }

    .mission-cards,
    .expertise-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .nav-cta {
        display: none;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: flex-start;
        padding: 100px 32px 32px;
        gap: 8px;
        box-shadow: var(--shadow-xl);
        transition: var(--transition);
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-menu .nav-link {
        width: 100%;
        padding: 14px 16px;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .hero-title {
        font-size: 2.25rem;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .hero-clients-logos {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

    .btn {
        width: 100%;
        max-width: 320px;
    }

    .mission-text h2,
    .about-content h2,
    .section-header h2,
    .contact-info h2 {
        font-size: 2rem;
    }

    .process-step {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-brand {
        order: 1;
    }

    .footer-newsletter {
        order: 2;
    }

    .newsletter-form {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .testimonial-card {
        padding: 28px;
    }

    .testimonial-card.featured {
        padding: 32px;
    }
}

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

    .hero {
        padding: 100px 16px 60px;
    }

    .mission,
    .about,
    .expertises,
    .approach,
    .blog,
    .contact,
    .realisations,
    .team,
    .careers {
        padding: 60px 0;
    }

    .value-card,
    .expertise-card,
    .methodology-card,
    .benefits-card,
    .contact-form-container,
    .job-card {
        padding: 24px;
    }

    .visual-box {
        padding: 32px;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .careers-perks {
        grid-template-columns: 1fr;
    }

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

    .realisations-stats {
        padding: 24px;
    }

    .realisation-stat .stat-value {
        font-size: 2rem;
    }
}

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

.fade-in {
    animation: fadeInUp 0.6s ease forwards;
}

/* ===== Scroll Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ===== 3D Animations ===== */

/* 3D Card Tilt Effect */
.tilt-card {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.tilt-card .tilt-inner {
    transition: transform 0.5s ease;
    transform-style: preserve-3d;
}

/* 3D Floating Animation */
@keyframes float3D {
    0%, 100% {
        transform: translateY(0) rotateX(0) rotateY(0);
    }
    25% {
        transform: translateY(-10px) rotateX(2deg) rotateY(2deg);
    }
    50% {
        transform: translateY(-20px) rotateX(0) rotateY(-2deg);
    }
    75% {
        transform: translateY(-10px) rotateX(-2deg) rotateY(0);
    }
}

.float-3d {
    animation: float3D 6s ease-in-out infinite;
    transform-style: preserve-3d;
}

/* 3D Rotate Animation */
@keyframes rotate3D {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

/* 3D Pulse Animation */
@keyframes pulse3D {
    0%, 100% {
        transform: scale3d(1, 1, 1);
    }
    50% {
        transform: scale3d(1.05, 1.05, 1.05);
    }
}

/* Hero Background Elements - Clean Professional Style */
/* Grid and glow styles are defined above in the hero section */

/* 3D Cube Animation */
.cube-container {
    width: 60px;
    height: 60px;
    perspective: 200px;
}

.cube {
    width: 100%;
    height: 100%;
    position: relative;
    transform-style: preserve-3d;
    animation: rotateCube 10s infinite linear;
}

@keyframes rotateCube {
    0% { transform: rotateX(0deg) rotateY(0deg); }
    100% { transform: rotateX(360deg) rotateY(360deg); }
}

.cube-face {
    position: absolute;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.8;
    border: 1px solid rgba(255,255,255,0.3);
}

.cube-face.front { transform: translateZ(30px); }
.cube-face.back { transform: rotateY(180deg) translateZ(30px); }
.cube-face.right { transform: rotateY(90deg) translateZ(30px); }
.cube-face.left { transform: rotateY(-90deg) translateZ(30px); }
.cube-face.top { transform: rotateX(90deg) translateZ(30px); }
.cube-face.bottom { transform: rotateX(-90deg) translateZ(30px); }

/* 3D Card Hover Effect */
.card-3d {
    perspective: 1000px;
}

.card-3d-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
    position: relative;
}

.card-3d:hover .card-3d-inner {
    transform: rotateY(10deg) rotateX(5deg);
}

/* 3D Icon Flip */
.icon-3d {
    perspective: 500px;
}

.icon-3d-inner {
    transition: transform 0.6s;
    transform-style: preserve-3d;
}

.icon-3d:hover .icon-3d-inner {
    transform: rotateY(180deg);
}

/* 3D Button Effect */
.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.3s ease;
}

.btn-3d::before {
    content: '';
    position: absolute;
    inset: 0;
    background: inherit;
    border-radius: inherit;
    transform: translateZ(-10px);
    filter: brightness(0.7);
}

.btn-3d:hover {
    transform: translateZ(10px);
}

/* 3D Section Depth */
.section-3d {
    transform-style: preserve-3d;
    perspective: 2000px;
}

.section-3d > * {
    transform: translateZ(0);
    transition: transform 0.5s ease;
}

/* 3D Parallax Layers */
.parallax-3d {
    transform-style: preserve-3d;
    perspective: 1000px;
}

.parallax-layer {
    position: absolute;
    inset: 0;
    transition: transform 0.1s ease-out;
}

.parallax-layer-1 { transform: translateZ(-100px) scale(1.1); }
.parallax-layer-2 { transform: translateZ(-50px) scale(1.05); }
.parallax-layer-3 { transform: translateZ(0); }

/* 3D Glow Effect */
.glow-3d {
    position: relative;
}

.glow-3d::after {
    content: '';
    position: absolute;
    inset: -5px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    filter: blur(20px);
    transition: opacity 0.3s ease;
    transform: translateZ(-20px);
}

.glow-3d:hover::after {
    opacity: 0.5;
}

/* 3D Text Shadow */
.text-3d {
    text-shadow:
        1px 1px 0 rgba(0,0,0,0.1),
        2px 2px 0 rgba(0,0,0,0.08),
        3px 3px 0 rgba(0,0,0,0.06),
        4px 4px 0 rgba(0,0,0,0.04);
}

/* 3D Wave Animation */
@keyframes wave3D {
    0%, 100% {
        transform: rotateX(0) translateY(0);
    }
    50% {
        transform: rotateX(10deg) translateY(-5px);
    }
}

.wave-3d {
    animation: wave3D 3s ease-in-out infinite;
    transform-origin: center bottom;
    transform-style: preserve-3d;
}

/* Stagger Animation for Children */
.stagger-3d > *:nth-child(1) { animation-delay: 0.1s; }
.stagger-3d > *:nth-child(2) { animation-delay: 0.2s; }
.stagger-3d > *:nth-child(3) { animation-delay: 0.3s; }
.stagger-3d > *:nth-child(4) { animation-delay: 0.4s; }
.stagger-3d > *:nth-child(5) { animation-delay: 0.5s; }
.stagger-3d > *:nth-child(6) { animation-delay: 0.6s; }

/* 3D Flip Card */
.flip-card {
    perspective: 1000px;
    height: 100%;
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front,
.flip-card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: var(--radius-lg);
}

.flip-card-back {
    transform: rotateY(180deg);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 24px;
}

/* Old animated shapes removed for cleaner professional look */

/* Enhanced Button 3D */
.btn-3d {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
    box-shadow:
        0 4px 6px rgba(0, 0, 0, 0.1),
        0 1px 3px rgba(0, 0, 0, 0.08);
}

.btn-3d::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, transparent 50%);
    border-radius: inherit;
    pointer-events: none;
}

.btn-3d:hover {
    transform: translateY(-4px) rotateX(5deg);
    box-shadow:
        0 12px 20px rgba(37, 99, 235, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-3d:active {
    transform: translateY(-2px) rotateX(2deg);
}

/* 3D Card Shine Effect */
.tilt-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        transparent 40%,
        rgba(255, 255, 255, 0.1) 50%,
        transparent 60%,
        transparent 100%
    );
    border-radius: inherit;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 10;
}

.tilt-card:hover::before {
    opacity: 1;
    animation: shine 1.5s ease-in-out;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) rotate(25deg);
    }
    100% {
        transform: translateX(100%) rotate(25deg);
    }
}

/* 3D Number Counter Effect */
.stat-number {
    display: inline-block;
    transform-style: preserve-3d;
    animation: numberPop 0.5s ease-out;
}

@keyframes numberPop {
    0% {
        transform: scale(0.5) rotateY(-90deg);
        opacity: 0;
    }
    60% {
        transform: scale(1.1) rotateY(10deg);
    }
    100% {
        transform: scale(1) rotateY(0);
        opacity: 1;
    }
}

/* 3D Process Step Number */
.step-number {
    transform-style: preserve-3d;
    box-shadow:
        0 10px 30px rgba(37, 99, 235, 0.3),
        inset 0 -5px 10px rgba(0, 0, 0, 0.1),
        inset 0 5px 10px rgba(255, 255, 255, 0.2);
}

.process-step:hover .step-number {
    animation: stepBounce 0.5s ease;
}

@keyframes stepBounce {
    0%, 100% { transform: translateZ(0) scale(1); }
    50% { transform: translateZ(20px) scale(1.1); }
}
