/* ================================================================ */
/* ===== RESET & BASE ============================================= */
/* ================================================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1A2A3A;
    --primary-light: #2A3A4A;
    --gold: #C9A96E;
    --gold-dark: #B8994F;
    --gold-light: #E8D5A8;
    --cream: #F8F6F0;
    --white: #FFFFFF;
    --text-dark: #1A2A3A;
    --text-light: #6B7A8A;
    --shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 20px 60px rgba(0, 0, 0, 0.15);
    --radius: 12px;
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--cream);
    line-height: 1.7;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

a {
    text-decoration: none;
    color: inherit;
}

.gold {
    color: var(--gold);
}

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    padding: 4px 18px;
    border-radius: 50px;
    margin-bottom: 12px;
}

.section-header {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px auto 24px;
    max-width: 200px;
}

.section-divider span {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-divider i {
    color: var(--gold);
    font-size: 1.2rem;
}

/* ================================================================ */
/* ===== BUTTONS ================================================== */
/* ================================================================ */
.btn-gold {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gold);
    color: var(--primary);
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-gold::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
    opacity: 0;
    transition: var(--transition);
}

.btn-gold:hover::after {
    opacity: 1;
}

.btn-gold:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(201, 169, 110, 0.4);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--white);
    padding: 14px 34px;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-outline-white::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--white);
    opacity: 0;
    transition: var(--transition);
    transform: scale(0.9);
}

.btn-outline-white:hover {
    border-color: var(--white);
    color: var(--primary);
}

.btn-outline-white:hover::after {
    opacity: 1;
    transform: scale(1);
}

.btn-outline-white span {
    position: relative;
    z-index: 1;
}

/* ================================================================ */
/* ===== HEADER / NAVBAR ========================================== */
/* ================================================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 42, 58, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    transition: var(--transition);
    border-bottom: 1px solid rgba(201, 169, 110, 0.15);
}

.header.scrolled {
    padding: 10px 0;
    background: rgba(26, 42, 58, 0.98);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.logo-main {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--gold);
}

.logo-sub {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 0.5px;
}

.logo-sub .san {
    font-weight: 600;
    color: var(--gold);
}

.nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav a {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
    letter-spacing: 0.3px;
    position: relative;
}

.nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav a:hover::after,
.nav a.active::after {
    width: 60%;
}

.nav a:hover,
.nav a.active {
    color: var(--white);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ================================================================ */
/* ===== PAGE HERO ================================================ */
/* ================================================================ */
.page-hero {
    position: relative;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--primary) 0%, #0D1B2A 100%);
    overflow: hidden;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 20% 30%, rgba(201, 169, 110, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 70%, rgba(201, 169, 110, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.page-hero-particles {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20% 30%, rgba(201,169,110,0.3), transparent),
        radial-gradient(2px 2px at 40% 70%, rgba(201,169,110,0.2), transparent),
        radial-gradient(2px 2px at 60% 20%, rgba(201,169,110,0.25), transparent),
        radial-gradient(2px 2px at 80% 60%, rgba(201,169,110,0.15), transparent);
    background-size: 200px 200px;
    pointer-events: none;
    animation: particlesFloat 20s linear infinite;
}

@keyframes particlesFloat {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100px, -100px); }
}

.page-hero-container {
    position: relative;
    z-index: 2;
}

.page-hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    margin: 0 auto;
}

.breadcrumb {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--gold);
}

.breadcrumb .current {
    color: var(--gold);
}

.breadcrumb span {
    margin: 0 8px;
}

.page-hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
}

.page-hero-content h1 .gold {
    position: relative;
}

.page-hero-content h1 .gold::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gold);
    opacity: 0.3;
    border-radius: 2px;
}

.page-hero-content p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stats div {
    text-align: center;
}

.hero-stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.page-hero-wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    z-index: 3;
    pointer-events: none;
}

.page-hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ================================================================ */
/* ===== INTRO SECTION ============================================ */
/* ================================================================ */
.intro-section {
    padding: 80px 0 40px;
    background: var(--cream);
}

.intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.intro-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.2;
}

.intro-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin: 16px auto 24px;
    max-width: 160px;
}

.intro-divider span {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.intro-divider i {
    color: var(--gold);
    font-size: 1.2rem;
}

.intro-content p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ================================================================ */
/* ===== CLIENTELE SECTIONS ======================================= */
/* ================================================================ */
.clientele-sections {
    padding: 20px 0 60px;
    background: var(--cream);
}

.clientele-group {
    margin-bottom: 60px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
}

.clientele-group:nth-child(1) { animation-delay: 0.1s; }
.clientele-group:nth-child(2) { animation-delay: 0.2s; }
.clientele-group:nth-child(3) { animation-delay: 0.3s; }
.clientele-group:nth-child(4) { animation-delay: 0.4s; }
.clientele-group:nth-child(5) { animation-delay: 0.5s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.group-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(201, 169, 110, 0.2);
}

.group-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(201, 169, 110, 0.15), rgba(201, 169, 110, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: var(--gold);
    flex-shrink: 0;
    border: 1px solid rgba(201, 169, 110, 0.15);
}

.group-header h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    flex: 1;
}

.group-count {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--white);
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 4px 14px;
    border-radius: 50px;
    letter-spacing: 0.5px;
}

.client-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.client-card {
    background: var(--white);
    padding: 28px 20px 22px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

.client-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    opacity: 0;
    transition: var(--transition);
}

.client-card:hover::before {
    opacity: 1;
}

.client-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold);
    box-shadow: var(--shadow-hover);
}

.client-logo-placeholder {
    width: 72px;
    height: 72px;
    margin: 0 auto 14px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    transition: var(--transition);
}

.client-card:hover .client-logo-placeholder {
    transform: scale(1.08);
}

/* Logo Colors */
.client-logo-placeholder.shell { background: linear-gradient(135deg, #E31B23, #C41018); }
.client-logo-placeholder.chevron { background: linear-gradient(135deg, #005B9E, #003B6A); }
.client-logo-placeholder.nnpc { background: linear-gradient(135deg, #1A3C6E, #0D2547); }
.client-logo-placeholder.ngc { background: linear-gradient(135deg, #2E7D32, #1B5E20); }
.client-logo-placeholder.government { background: linear-gradient(135deg, #4A2C0A, #2D1905); }
.client-logo-placeholder.bank { background: linear-gradient(135deg, #1B4A7A, #0D2C4A); }
.client-logo-placeholder.telecom { background: linear-gradient(135deg, #7B1FA2, #4A148C); }
.client-logo-placeholder.corporate { background: linear-gradient(135deg, #2C3E50, #1A252F); }

.client-card h4 {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    line-height: 1.3;
    margin-bottom: 2px;
}

.client-card p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 10px;
}

.client-tag {
    display: inline-block;
    font-size: 0.6rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.1);
    padding: 2px 12px;
    border-radius: 50px;
}

/* ================================================================ */
/* ===== ENGAGEMENTS ============================================== */
/* ================================================================ */
.engagements {
    padding: 80px 0;
    background: var(--white);
}

.engagement-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.engagement-card {
    display: flex;
    gap: 20px;
    background: var(--cream);
    padding: 28px 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    border-left: 4px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.engagement-card::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201,169,110,0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.engagement-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.engagement-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: rgba(201, 169, 110, 0.12);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--gold);
    transition: var(--transition);
}

.engagement-card:hover .engagement-icon {
    background: var(--gold);
    color: var(--primary);
    transform: scale(1.05);
}

.engagement-content h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--primary);
}

.engagement-content p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

.engagement-content p strong {
    color: var(--primary);
}

.arbitration-list {
    list-style: none;
    margin-top: 6px;
    padding: 0;
}

.arbitration-list li {
    font-size: 0.85rem;
    color: var(--text-light);
    padding: 2px 0;
    padding-left: 16px;
    position: relative;
}

.arbitration-list li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
}

.engagement-closing {
    max-width: 800px;
    margin: 0 auto;
}

.closing-content {
    display: flex;
    align-items: center;
    gap: 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    padding: 36px 44px;
    border-radius: var(--radius);
    border-left: 6px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.closing-content::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201,169,110,0.06) 0%, transparent 70%);
    border-radius: 50%;
}

.closing-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    background: rgba(201, 169, 110, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--gold);
    position: relative;
    z-index: 1;
}

.closing-text {
    position: relative;
    z-index: 1;
}

.closing-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    line-height: 1.8;
    margin: 0;
}

.closing-text p strong {
    color: var(--gold);
}

/* ================================================================ */
/* ===== CTA SECTION ============================================== */
/* ================================================================ */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #0D1B2A);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 70% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.cta-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gold);
    background: rgba(201, 169, 110, 0.12);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 16px;
    border: 1px solid rgba(201, 169, 110, 0.15);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ================================================================ */
/* ===== FOOTER =================================================== */
/* ================================================================ */
.footer {
    background: #0E1A26;
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand .logo {
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.95rem;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.5);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--primary);
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background: var(--gold);
    margin-top: 6px;
}

.footer-links ul {
    list-style: none;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links ul li a:hover {
    color: var(--gold);
    padding-left: 4px;
}

.footer-contact address p {
    font-size: 0.9rem;
    margin-bottom: 12px;
    font-style: normal;
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.footer-contact address p i {
    color: var(--gold);
    margin-top: 4px;
    width: 18px;
}

.footer-contact address a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-contact address a:hover {
    color: var(--gold);
}

.footer-bottom {
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-credits {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

/* ================================================================ */
/* ===== BACK TO TOP ============================================== */
/* ================================================================ */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary);
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.35);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

/* ================================================================ */
/* ===== RESPONSIVE =============================================== */
/* ================================================================ */

@media (max-width: 992px) {
    .client-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .engagement-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .page-hero-content h1 {
        font-size: 2.8rem;
    }

    .hero-stats {
        gap: 30px;
        flex-wrap: wrap;
    }

    .nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary);
        flex-direction: column;
        padding: 20px;
        border-top: 1px solid rgba(201, 169, 110, 0.15);
        gap: 4px;
    }

    .nav.open {
        display: flex;
    }

    .nav a {
        width: 100%;
        text-align: center;
        padding: 12px;
    }

    .nav a::after {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-actions .btn-gold {
        display: none;
    }

    .closing-content {
        flex-direction: column;
        text-align: center;
        padding: 28px 24px;
    }

    .closing-icon {
        margin-bottom: 8px;
    }
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .page-hero-content h1 {
        font-size: 2.2rem;
    }

    .intro-content h2 {
        font-size: 2rem;
    }

    .client-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .group-header h3 {
        font-size: 1.3rem;
    }

    .group-count {
        font-size: 0.65rem;
        padding: 2px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .logo-main {
        font-size: 1.4rem;
    }

    .logo-sub {
        font-size: 0.8rem;
    }

    .engagement-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .hero-stats {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .page-hero-content h1 {
        font-size: 1.8rem;
    }

    .client-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .client-card {
        padding: 18px 12px 16px;
    }

    .client-logo-placeholder {
        width: 56px;
        height: 56px;
        font-size: 0.55rem;
    }

    .client-card h4 {
        font-size: 0.75rem;
    }

    .client-card p {
        font-size: 0.7rem;
    }

    .group-header {
        flex-wrap: wrap;
    }

    .group-header h3 {
        font-size: 1.1rem;
    }

    .group-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .engagement-card h4 {
        font-size: 1rem;
    }

    .closing-text p {
        font-size: 0.9rem;
    }

    .hero-stat-number {
        font-size: 1.6rem;
    }

    .hero-stat-label {
        font-size: 0.65rem;
    }
}