/* Homepage-specific styles */

.section-title, .stat-number,
.hero h1, .cta-section h2 {
    font-family: var(--font-display);
}

/* Hero Section */
.hero {
    position: relative;
    background: var(--navy-deep);
    color: white;
    padding: 180px 3rem 140px;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(37, 99, 235, 0.2) 0%, transparent 70%),
        radial-gradient(ellipse 60% 80% at 20% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 60%),
        url('/assets/hero.jpg') center center / cover no-repeat;
    opacity: 0.5;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(135deg, rgba(11, 22, 40, 0.95) 0%, rgba(19, 32, 64, 0.85) 50%, rgba(11, 22, 40, 0.9) 100%);
    z-index: 1;
}

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

.hero-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.5rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(16, 185, 129, 0.3);
    color: #6EE7B7;
    letter-spacing: 0;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #fff;
    -webkit-text-fill-color: unset;
}

.hero h1 .text-gradient {
    background: linear-gradient(135deg, #60A5FA 0%, #34D399 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    color: #94A3B8;
    max-width: 680px;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Stats Bar */
.stats-bar {
    background: var(--surface);
    padding: 2.5rem 3rem;
    margin: -70px auto 0;
    max-width: 1100px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 3;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    border: 1px solid var(--border);
}

.stat-item {
    text-align: center;
    position: relative;
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -1rem;
    top: 15%;
    height: 70%;
    width: 1px;
    background: var(--border);
}

.stat-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--navy-deep);
    margin-bottom: 0.3rem;
    letter-spacing: -0.03em;
}

.stat-label {
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Sections */
section {
    padding: 64px 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

/* Section Dividers */
.section-divider {
    height: 40px;
    position: relative;
    overflow: hidden;
}

.section-divider--to-dark { background: var(--surface); }
.section-divider--to-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--navy-deep);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-divider--to-light { background: var(--navy-deep); }
.section-divider--to-light::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--surface);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-divider--to-alt { background: var(--surface); }
.section-divider--to-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--surface-alt);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-divider--from-alt { background: var(--surface-alt); }
.section-divider--from-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--surface);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-divider--alt-to-dark { background: var(--surface-alt); }
.section-divider--alt-to-dark::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--navy-deep);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.section-divider--dark-to-alt { background: var(--navy-deep); }
.section-divider--dark-to-alt::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 110%;
    height: 100%;
    background: var(--surface-alt);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

/* Services Grouped */
.services-grouped {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    margin-top: 2.5rem;
}

.service-group {
    display: grid;
    grid-template-columns: 1fr 2.5fr;
    gap: 2.5rem;
    align-items: start;
}

.service-group-intro {
    position: sticky;
    top: 100px;
}

.service-group-label {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.service-group-number {
    font-family: var(--font-mono);
    font-size: 0.85rem;
    font-weight: 600;
    color: #10B981;
    background: rgba(16, 185, 129, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 6px;
}

.service-group-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.service-card {
    background: var(--surface);
    padding: 1.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--blue-primary) 0%, var(--emerald) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

.service-icon {
    width: 40px;
    height: 40px;
    background: var(--blue-wash);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    color: var(--blue-primary);
}

.service-icon svg { width: 20px; height: 20px; }

.service-card:hover .service-icon {
    background: var(--emerald);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.service-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.88rem;
}

/* Specialisations */
.specialisations {
    background: var(--surface-alt);
    padding: 64px 3rem;
    position: relative;
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.spec-item {
    background: var(--surface);
    padding: 1.25rem 1.5rem;
    border-radius: 10px;
    border-left: 3px solid var(--emerald);
    border-top: none;
    border-right: none;
    border-bottom: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.spec-item:hover {
    transform: translateX(6px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    border-left-color: var(--emerald);
}

.spec-item h4 {
    font-family: var(--font-display);
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 0.3rem;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.spec-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.88rem;
}

/* Global Delivery */
.global-delivery {
    background: var(--navy-deep);
    color: white;
    padding: 64px 3rem;
    position: relative;
    overflow: hidden;
}

.global-delivery::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 50% 50% at 80% 20%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 10% 80%, rgba(16, 185, 129, 0.1) 0%, transparent 60%);
}

.global-delivery::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
    opacity: 0.4;
    pointer-events: none;
}

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

.global-delivery .section-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #6EE7B7;
    border: none;
}

.global-delivery .section-title { color: white; }
.global-delivery .section-subtitle { color: #94A3B8; }

.global-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

.stat-card:hover {
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-card .stat-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: white;
    -webkit-text-fill-color: unset;
    margin-bottom: 0.8rem;
}

.stat-card .stat-label {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: white;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: none;
    letter-spacing: -0.02em;
}

.stat-card .stat-description {
    color: #94A3B8;
    line-height: 1.7;
    font-size: 0.95rem;
}

.global-locations {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.location-badge {
    background: rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2.2rem;
    border-radius: 12px;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    letter-spacing: -0.01em;
}

.location-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

.global-description {
    margin-top: 3rem;
    color: #94A3B8;
    font-size: 1.1rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

/* Benefits */
.benefits-section { background: var(--surface-alt); }

.benefits-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: start;
}

.benefits-intro {
    position: sticky;
    top: 100px;
}

.benefits-intro .section-subtitle {
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.benefit-card {
    text-align: center;
    padding: 1.5rem 1.25rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border);
    background: var(--surface);
}

.benefit-card:hover {
    background: var(--surface-alt);
    border-color: var(--blue-pale);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.benefit-icon {
    width: 56px;
    height: 56px;
    background: var(--navy-deep);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.benefit-icon svg { width: 24px; height: 24px; }

.benefit-card:hover .benefit-icon {
    transform: scale(1.08) rotate(3deg);
    background: var(--emerald);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.35);
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.02em;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.88rem;
}

/* Innovation Section */
.innovation-section {
    background: var(--navy-deep);
    color: white;
    padding: 64px 3rem;
    position: relative;
    overflow: hidden;
}

.innovation-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 60% 40% at 20% 50%, rgba(37, 99, 235, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 80% 80%, rgba(16, 185, 129, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.06) 0%, transparent 40%);
}

.innovation-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    position: relative;
    z-index: 1;
}

.innovation-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.innovation-card:hover {
    transform: translateY(-6px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.12);
}

.innovation-icon {
    width: 44px;
    height: 44px;
    background: rgba(16, 185, 129, 0.12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    transition: all 0.3s ease;
    color: #6EE7B7;
}

.innovation-card:hover .innovation-icon {
    transform: scale(1.05);
    background: rgba(16, 185, 129, 0.2);
}

.innovation-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    margin-bottom: 0.4rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.02em;
}

.innovation-card p {
    color: #94A3B8;
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.88rem;
}

.innovation-benefits {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.innovation-benefits li {
    color: #CBD5E1;
    padding: 0.4rem 0;
    font-size: 0.9rem;
    font-family: var(--font-mono);
}

.innovation-benefits li::before {
    content: "// ";
    color: var(--emerald);
    font-weight: 500;
}

.innovation-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    position: relative;
    z-index: 1;
}

.innovation-cta h3 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -0.02em;
}

.innovation-section .section-badge {
    background: rgba(16, 185, 129, 0.15);
    color: #6EE7B7;
}

.innovation-section .section-title { color: white; }
.innovation-section .section-subtitle { color: #94A3B8; }
.innovation-section .section-header { position: relative; z-index: 1; }

/* Target Clients */
.target-clients { background: var(--surface-alt); }

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

.client-card {
    background: var(--surface);
    padding: 3.5rem 3rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    border: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-primary) 0%, var(--emerald) 100%);
}

.client-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
    border-color: var(--blue-pale);
}

.client-card h3 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    font-weight: 800;
    letter-spacing: -0.03em;
}

.client-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* CTA Section */
.cta-section {
    background: var(--navy-deep);
    text-align: center;
    padding: 120px 3rem;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(ellipse 50% 50% at 50% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 70%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.08) 0%, transparent 50%);
}

.cta-content { position: relative; z-index: 2; }

.cta-section h2 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.cta-section p {
    font-size: 1.2rem;
    color: #94A3B8;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-section .primary-button {
    font-size: 1.15rem;
    padding: 1.3rem 3rem;
}

.cta-addresses {
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.cta-address {
    color: #64748B;
    font-size: 1rem;
    line-height: 1.8;
}

.cta-address strong {
    color: #475569;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Latest Posts Section */
.latest-posts { background: var(--surface-alt); }

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

.post-card {
    background: var(--surface);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    color: inherit;
    display: block;
}

.post-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: var(--blue-pale);
}

.post-card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--blue-wash);
}

.post-card-image-placeholder {
    background: linear-gradient(135deg, #0B1628 0%, #132040 40%, #1a3a5c 70%, #0f2d4a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.post-card-image-placeholder::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background:
        radial-gradient(circle at 30% 70%, rgba(16, 185, 129, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(37, 99, 235, 0.12) 0%, transparent 50%);
    border-radius: inherit;
}

.post-card-body { padding: 1.5rem; }

.post-card-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.8rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.post-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

.post-card-body p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}

.view-all-link {
    text-align: center;
    margin-top: 3rem;
}

.view-all-link a {
    color: var(--blue-primary);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.view-all-link a:hover { color: var(--emerald); }

/* Homepage Responsive */
@media (max-width: 1200px) {
    .hero h1 { font-size: 3.5rem; }
}

@media (max-width: 768px) {
    .hero {
        padding: 140px 2rem 100px;
    }

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

    section { padding: 56px 2rem; }

    .stats-bar {
        margin: -50px auto 0;
        padding: 2rem;
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .stat-item:not(:last-child)::after { display: none; }

    .service-group {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .service-group-intro {
        position: static;
    }

    .services-grid,
    .spec-grid,
    .benefits-grid,
    .global-stats,
    .client-types,
    .innovation-grid {
        grid-template-columns: 1fr;
    }

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

    .benefits-intro {
        position: static;
        text-align: center;
    }

    .benefits-intro .section-title,
    .benefits-intro .section-subtitle {
        text-align: center !important;
    }

    .specialisations,
    .innovation-section,
    .global-delivery {
        padding: 56px 2rem;
    }

    .cta-section h2 { font-size: 2.2rem; }
    .cta-section p { font-size: 1.05rem; }

    .section-divider { height: 30px; }
    .posts-grid { grid-template-columns: 1fr; }
}
