/* ============================================
   MOA CONSULT - Premium Design
   Inspired by Finovate Theme
   ============================================ */

/* CSS Variables */
:root {
    /* Primary Brand Colors */
    --brand-primary: #000000;        /* Black - Main brand color */
    --brand-primary-light: #1A1A1A;
    --brand-primary-dark: #000000;
    
    /* Secondary Brand Colors */
    --brand-secondary: #D40201;       /* Red - Primary accent color */
    --brand-secondary-light: #FF1A1A;
    --brand-secondary-dark: #B00100;
    --brand-secondary-subtle: rgba(212, 2, 1, 0.12);
    
    /* Accent Colors */
    --brand-accent: #D40201;          /* Red */
    --brand-accent-light: #FF3333;
    --brand-accent-dark: #B00100;
    
    /* Supporting Colors */
    --brand-dark: #000000;
    --brand-dark-bg: #0A0A0A;
    --brand-text: #1A1A1A;
    --brand-text-light: #4A4A4A;
    --brand-white: #FFFFFF;
    --brand-off-white: #F8F8F8;
    --brand-border: rgba(0, 0, 0, 0.1);
    --brand-border-red: rgba(212, 2, 1, 0.2);
    
    /* Gradients */
    --brand-gradient-primary: linear-gradient(135deg, #000000 0%, #1A1A1A 100%);
    --brand-gradient-red: linear-gradient(135deg, #D40201 0%, #FF1A1A 50%, #D40201 100%);
    --brand-gradient-hero: linear-gradient(135deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.88) 100%);
    --brand-gradient-black-red: linear-gradient(135deg, #000000 0%, #D40201 100%);
    
    /* Theme Variables - Map to existing CSS variables */
    --primary-color: var(--brand-primary);
    --secondary-color: var(--brand-secondary);
    --accent-color: var(--brand-secondary);
    --text-color: var(--brand-text);
    --text-light: var(--brand-white);
    --text-muted: var(--brand-text-light);
    --bg-light: var(--brand-off-white);
    --bg-dark: var(--brand-dark);
    --bg-white: var(--brand-white);
    --border-color: var(--brand-border);
    
    /* Font */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
    --shadow-red: 0 10px 30px rgba(212, 2, 1, 0.3);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family);
    color: var(--text-dark);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-dark);
}

h1 { font-size: 4rem; letter-spacing: -0.02em; }
h2 { font-size: 2.75rem; letter-spacing: -0.01em; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted);
    max-width: 600px;
    line-height: 1.8;
}

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

.btn-primary {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.35);
}

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

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

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

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

.btn-dark {
    background: var(--text-dark);
    color: var(--text-light);
}

.btn-dark:hover {
    background: #1a2a3a;
    transform: translateY(-2px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(255,255,255,0.98);
    box-shadow: 0 2px 30px rgba(0,0,0,0.08);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo img {
    height: 40px;
    width: auto;
}

.logo .logo-light {
    display: none;
}

/* Navigation */
.nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    gap: 32px;
}

.nav-menu > li > a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
    padding: 4px 0;
    transition: var(--transition);
}

.nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
}

.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

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

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

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.mobile-toggle span {
    width: 26px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 2px;
}

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

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

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

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--bg-dark);
    color: var(--text-light);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero-bg.jpeg') center/cover no-repeat;
    opacity: 0.4;
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(201,168,76,0.05) 100%);
    z-index: 0;
}

.hero .container {
    position: relative;
    z-index: 1;
    width: 100%;
}

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

.hero-content {
    max-width: 600px;
}

.hero-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    padding: 6px 16px;
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

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

.hero-description {
    font-size: 1.125rem;
    opacity: 0.8;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-md);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.08);
}

.hero-stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 4px;
}

.hero-stat p {
    font-size: 0.875rem;
    opacity: 0.7;
}

/* ============================================
   SERVICES / WHAT WE DO
   ============================================ */
.services-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header .section-subtitle {
    margin: 0 auto;
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition);
}

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

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

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(201,168,76,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-color);
}

.service-card h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
}

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

/* ============================================
   ABOUT PREVIEW
   ============================================ */
.about-preview {
    padding: 100px 0;
}

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

.about-content .section-tag {
    color: var(--accent-color);
}

.about-features {
    list-style: none;
    margin: 2rem 0;
}

.about-features li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 1.25rem;
    font-size: 1rem;
    line-height: 1.6;
}

.about-features li i {
    color: var(--accent-color);
    font-size: 1.125rem;
    margin-top: 2px;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.about-image-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 20px 30px;
    border-radius: var(--radius-sm);
    text-align: center;
}

.about-image-badge h4 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0;
}

.about-image-badge p {
    font-size: 0.8125rem;
    font-weight: 500;
}

/* ============================================
   STATS SECTION
   ============================================ */
.stats-section {
    padding: 80px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 8px;
}

.stat-item p {
    opacity: 0.7;
    font-size: 0.9375rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.testimonial-card {
    background: var(--bg-white);
    padding: 40px 35px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

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

.testimonial-rating {
    color: var(--accent-color);
    margin-bottom: 1rem;
    font-size: 0.875rem;
}

.testimonial-content {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
}

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

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--accent-color);
}

.testimonial-author h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-author p {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

/* ============================================
   INSIGHTS / BLOG
   ============================================ */
.insights-section {
    padding: 100px 0;
}

.insights-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 50px;
}

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

.insight-card {
    background: var(--bg-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.insight-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.insight-image {
    height: 220px;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.insight-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.6875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.insight-body {
    padding: 28px;
}

.insight-body h3 {
    font-size: 1.125rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.insight-body p {
    color: var(--text-muted);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
}

.insight-link {
    font-weight: 600;
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.insight-link:hover {
    gap: 14px;
}

/* ============================================
   CLIENTS / PARTNERS
   ============================================ */
.clients-section {
    padding: 60px 0;
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 40px;
    align-items: center;
}

.client-logo {
    text-align: center;
    opacity: 0.5;
    transition: var(--transition);
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-muted);
}

.client-logo:hover {
    opacity: 1;
}

/* ============================================
   CONTACT / CTA
   ============================================ */
.contact-cta {
    padding: 100px 0;
    background: var(--bg-dark);
    color: var(--text-light);
}

.contact-cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-cta-content .section-title {
    color: var(--text-light);
}

.contact-cta-content .section-subtitle {
    color: rgba(255,255,255,0.7);
    max-width: 100%;
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-md);
    color: var(--text-dark);
}

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

.form-group label {
    display: block;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-sm);
    font-family: var(--font-family);
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--bg-white);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px rgba(201,168,76,0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
    background: var(--bg-dark);
    color: var(--text-light);
    padding: 80px 0 30px;
}

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

.footer-brand p {
    opacity: 0.7;
    line-height: 1.8;
    margin: 1rem 0;
    max-width: 320px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: rgba(255,255,255,0.6);
}

.footer-social a:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--text-dark);
}

.footer h4 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 1.25rem;
}

.footer ul {
    list-style: none;
}

.footer ul li {
    margin-bottom: 10px;
}

.footer ul a {
    color: rgba(255,255,255,0.6);
    font-size: 0.9375rem;
    transition: var(--transition);
}

.footer ul a:hover {
    color: var(--accent-color);
    padding-left: 6px;
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 12px;
    font-size: 0.9375rem;
}

.footer-contact-info i {
    color: var(--accent-color);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.4);
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    h1 { font-size: 3.5rem; }
    .hero-title { font-size: 3.75rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .insights-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 992px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; }
    .hero-content { max-width: 100%; }
    .hero-description { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { max-width: 500px; margin: 0 auto; }
    
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image-badge { right: 0; }
    
    .contact-cta-grid { grid-template-columns: 1fr; gap: 40px; }
    
    .clients-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .mobile-toggle { display: flex; }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-lg);
        gap: 16px;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active { display: flex; }
    .nav-cta { margin-left: 0; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .hero-title { font-size: 2.75rem; }
    .section-title { font-size: 2rem; }
    
    .hero { min-height: auto; padding: 100px 0 60px; }
    .hero-stats { grid-template-columns: 1fr 1fr; padding: 24px; }
    .hero-stat h3 { font-size: 2rem; }
    
    .services-grid { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .insights-grid { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .clients-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
    
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }
    
    .insights-header { flex-direction: column; gap: 16px; align-items: flex-start; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 2rem; }
    .hero-buttons { flex-direction: column; align-items: center; }
    .hero-stats { grid-template-columns: 1fr; text-align: center; }
    
    .stats-grid { grid-template-columns: 1fr; }
    .clients-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}

/* ============================================
   COMPONENT STYLES
   ============================================ */

/* Grid System */
.grid-cols-1 { grid-template-columns: 1fr; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }
.grid-cols-5 { grid-template-columns: repeat(5, 1fr); }
.grid-cols-6 { grid-template-columns: repeat(6, 1fr); }

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent-color, #c9a84c);
    margin-bottom: 0.75rem;
}

.section-header .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark, #0a1628);
}

.section-header .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-muted, #6b7280);
    max-width: 600px;
    margin: 0 auto;
}

/* Background Colors */
.bg-light { background: var(--bg-light, #f8fafc); }
.bg-dark { background: var(--bg-dark, #0a1628); color: var(--text-light, #ffffff); }
.bg-dark .section-title { color: #ffffff; }
.bg-dark .section-subtitle { color: rgba(255,255,255,0.7); }

/* Client Logos */
.clients-section {
    padding: 40px 0;
}

.clients-section.with-border {
    border-top: 1px solid var(--border-color, #e5e7eb);
    border-bottom: 1px solid var(--border-color, #e5e7eb);
}

.clients-grid {
    display: grid;
    gap: 30px;
    align-items: center;
}

.client-logo {
    text-align: center;
    opacity: 0.6;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-muted, #6b7280);
}

.client-logo:hover {
    opacity: 1;
}

.client-logo img {
    max-height: 60px;
    width: auto;
    filter: grayscale(100%);
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    color: var(--text-light, #ffffff);
}

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

.cta-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.125rem;
    opacity: 0.8;
    margin-bottom: 2rem;
}

.cta-split .cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    text-align: left;
}

.cta-split .cta-text {
    flex: 1;
}

.cta-split .cta-text h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.cta-split .cta-button {
    flex-shrink: 0;
    margin-left: 30px;
}

/* Responsive */
@media (max-width: 992px) {
    .grid-cols-4 { grid-template-columns: repeat(3, 1fr); }
    .grid-cols-5 { grid-template-columns: repeat(3, 1fr); }
    .grid-cols-6 { grid-template-columns: repeat(3, 1fr); }
    
    .cta-split .cta-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-split .cta-button {
        margin-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .grid-cols-2 { grid-template-columns: 1fr; }
    .grid-cols-3 { grid-template-columns: 1fr 1fr; }
    .grid-cols-4 { grid-template-columns: 1fr 1fr; }
    .grid-cols-5 { grid-template-columns: 1fr 1fr; }
    .grid-cols-6 { grid-template-columns: 1fr 1fr; }
    
    .section-header .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-section {
        padding: 60px 0;
    }
}

@media (max-width: 480px) {
    .grid-cols-3 { grid-template-columns: 1fr; }
    .grid-cols-4 { grid-template-columns: 1fr; }
    .grid-cols-5 { grid-template-columns: 1fr; }
    .grid-cols-6 { grid-template-columns: 1fr 1fr; }
}