/*
Theme Name: SW Médias Corporate
Theme URI: https://swmedias.com
Description: Thème corporate premium pour SW Médias - Régie Publicitaire Web & Print. Design "Corporate Luxe" avec palette Navy/Gold pour rassurer les grands comptes.
Author: SW Médias
Author URI: https://swmedias.com
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.4
Requires PHP: 8.0
License: Proprietary
License URI: https://swmedias.com/license
Text Domain: swmedias-corporate
Tags: corporate, advertising, media, professional, premium, dark, gold, custom-logo, custom-menu

SW Médias Corporate Theme
Copyright (C) 2025 SW Médias
*/

/* ==========================================================================
   DESIGN SYSTEM - CORPORATE LUXE
   ========================================================================== */

:root {
    /* ---- Primary Palette ---- */
    --color-navy: #0B1426;
    --color-navy-light: #152238;
    --color-navy-dark: #060A14;
    
    /* ---- Accent - Refined Gold ---- */
    --color-gold: #C6A855;
    --color-gold-light: #D4BC7A;
    --color-gold-dark: #A68B3D;
    --color-gold-muted: rgba(198, 168, 85, 0.15);
    
    /* ---- Neutrals ---- */
    --color-white: #FFFFFF;
    --color-ivory: #FAFAF8;
    --color-pearl: #F5F5F3;
    --color-silver: #E8E8E6;
    --color-slate-100: #D1D5DB;
    --color-slate-200: #9CA3AF;
    --color-slate-300: #6B7280;
    --color-slate-400: #4B5563;
    --color-charcoal: #1F2937;
    
    /* ---- Semantic ---- */
    --color-success: #059669;
    --color-error: #DC2626;
    
    /* ---- Typography ---- */
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-heading: 'DM Sans', system-ui, sans-serif;
    --font-body: 'DM Sans', system-ui, sans-serif;
    
    /* ---- Font Sizes (Fluid) ---- */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.35vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.2rem + 1.5vw, 2rem);
    --text-3xl: clamp(2rem, 1.5rem + 2.5vw, 3rem);
    --text-4xl: clamp(2.5rem, 2rem + 3vw, 4rem);
    --text-5xl: clamp(3rem, 2.5rem + 3.5vw, 5rem);
    
    /* ---- Spacing ---- */
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* ---- Layout ---- */
    --container-max: 1400px;
    --container-narrow: 900px;
    --header-height: 88px;
    
    /* ---- Borders ---- */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 20px;
    --radius-full: 9999px;
    
    /* ---- Shadows ---- */
    --shadow-subtle: 0 1px 3px rgba(11, 20, 38, 0.04);
    --shadow-sm: 0 2px 8px rgba(11, 20, 38, 0.06);
    --shadow-md: 0 4px 20px rgba(11, 20, 38, 0.08);
    --shadow-lg: 0 12px 40px rgba(11, 20, 38, 0.12);
    --shadow-xl: 0 24px 60px rgba(11, 20, 38, 0.16);
    --shadow-gold: 0 8px 30px rgba(198, 168, 85, 0.3);
    --shadow-inner: inset 0 2px 4px rgba(11, 20, 38, 0.06);
    
    /* ---- Transitions ---- */
    --ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --duration-fast: 150ms;
    --duration-base: 300ms;
    --duration-slow: 500ms;
    --duration-slower: 700ms;
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-slate-400);
    background: var(--color-white);
    overflow-x: hidden;
}

img, picture, video, canvas, svg {
    display: block;
    max-width: 100%;
}

input, button, textarea, select {
    font: inherit;
}

a {
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--color-navy);
    letter-spacing: -0.02em;
}

.display-text {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.01em;
}

h1, .h1 { font-size: var(--text-4xl); }
h2, .h2 { font-size: var(--text-3xl); }
h3, .h3 { font-size: var(--text-2xl); }
h4, .h4 { font-size: var(--text-xl); }
h5, .h5 { font-size: var(--text-lg); }
h6, .h6 { font-size: var(--text-base); }

p {
    margin-bottom: var(--space-4);
}

.text-lead {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-slate-300);
}

.overline {
    font-size: var(--text-xs);
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gold);
}

.text-gradient {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   LAYOUT
   ========================================================================== */

.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: var(--space-24) 0;
}

.section-lg {
    padding: var(--space-32) 0;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--duration-base) var(--ease-out);
}

.site-header.is-scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--color-silver);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-6);
}

/* Logo */
.site-logo {
    display: flex;
    align-items: center;
    gap: var(--space-3);
}

.site-logo img {
    height: 44px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: -0.03em;
}

.logo-text span {
    color: var(--color-gold);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
    gap: var(--space-10);
}

.nav-menu {
    display: flex;
    gap: var(--space-8);
}

.nav-menu a {
    position: relative;
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-slate-400);
    padding: var(--space-2) 0;
    transition: color var(--duration-fast);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-gold);
    transition: width var(--duration-base) var(--ease-out);
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: var(--color-navy);
}

.nav-menu a:hover::after,
.nav-menu .current-menu-item a::after {
    width: 100%;
}

/* Header CTA */
.header-actions {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 28px;
    height: 28px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-navy);
    border-radius: 1px;
    transition: all var(--duration-fast);
}

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

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

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

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-3) var(--space-6);
    font-family: var(--font-heading);
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.5;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--duration-base) var(--ease-out);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-navy);
    color: var(--color-white);
    border-color: var(--color-navy);
}

.btn-primary:hover {
    background: var(--color-navy-light);
    border-color: var(--color-navy-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-gold {
    background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dark) 100%);
    color: var(--color-navy);
    border-color: var(--color-gold);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--color-gold-light) 0%, var(--color-gold) 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--color-navy);
    border-color: var(--color-slate-100);
}

.btn-outline:hover {
    border-color: var(--color-navy);
    background: var(--color-pearl);
}

.btn-white {
    background: var(--color-white);
    color: var(--color-navy);
    border-color: var(--color-white);
}

.btn-white:hover {
    background: var(--color-ivory);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-lg {
    padding: var(--space-4) var(--space-8);
    font-size: var(--text-base);
}

.btn-sm {
    padding: var(--space-2) var(--space-4);
    font-size: var(--text-xs);
}

.btn-icon {
    width: 20px;
    height: 20px;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    background: var(--color-navy);
    overflow: hidden;
}

/* Sophisticated Background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(198, 168, 85, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 60% at 80% 60%, rgba(21, 34, 56, 0.8) 0%, transparent 50%),
        linear-gradient(180deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
}

/* Geometric Pattern */
.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='none' stroke='%23FFFFFF' stroke-width='1'/%3E%3C/svg%3E");
    background-size: 60px 60px;
}

/* Decorative Line */
.hero-line {
    position: absolute;
    left: 10%;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: linear-gradient(180deg, transparent 0%, var(--color-gold) 50%, transparent 100%);
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-16) 0;
}

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

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding: var(--space-2) var(--space-4);
    background: var(--color-gold-muted);
    border: 1px solid rgba(198, 168, 85, 0.25);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-gold);
    margin-bottom: var(--space-6);
}

.hero-badge::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--color-gold);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(0.8); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: var(--text-5xl);
    font-weight: 500;
    line-height: 1.1;
    color: var(--color-white);
    margin-bottom: var(--space-6);
}

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

.hero-description {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
    max-width: 500px;
}

.hero-cta {
    display: flex;
    gap: var(--space-4);
    flex-wrap: wrap;
    margin-bottom: var(--space-12);
}

/* Hero Stats */
.hero-stats {
    display: flex;
    gap: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: left;
}

.stat-value {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
}

.stat-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.5);
    margin-top: var(--space-1);
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
    transform: perspective(1000px) rotateY(-8deg) rotateX(4deg);
    transform-style: preserve-3d;
}

.hero-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-5);
    box-shadow: var(--shadow-xl);
    transition: transform var(--duration-base) var(--ease-out);
}

.hero-card:nth-child(2),
.hero-card:nth-child(4) {
    transform: translateY(var(--space-6));
}

.hero-card:hover {
    transform: translateY(-4px);
}

.hero-card-logo {
    height: 28px;
    margin-bottom: var(--space-3);
    opacity: 0.8;
}

.hero-card-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-1);
}

.hero-card-meta {
    font-size: var(--text-xs);
    color: var(--color-slate-200);
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust-bar {
    background: var(--color-ivory);
    padding: var(--space-8) 0;
    border-bottom: 1px solid var(--color-silver);
}

.trust-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-6);
}

.trust-label {
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--color-slate-200);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.trust-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-12);
    flex-wrap: wrap;
}

.trust-logo {
    height: 36px;
    opacity: 0.5;
    filter: grayscale(100%);
    transition: all var(--duration-base);
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* ==========================================================================
   SECTION HEADERS
   ========================================================================== */

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto var(--space-16);
}

.section-header .overline {
    margin-bottom: var(--space-4);
}

.section-header h2 {
    margin-bottom: var(--space-4);
}

.section-header p {
    font-size: var(--text-lg);
    color: var(--color-slate-300);
}

/* ==========================================================================
   SERVICES
   ========================================================================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--space-6);
}

.service-card {
    position: relative;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    border: 1px solid var(--color-silver);
    transition: all var(--duration-base) var(--ease-out);
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--duration-base) var(--ease-out);
}

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

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

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-navy);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-5);
}

.service-icon svg {
    width: 28px;
    height: 28px;
    color: var(--color-gold);
}

.service-card h3 {
    font-size: var(--text-xl);
    margin-bottom: var(--space-3);
}

.service-card p {
    color: var(--color-slate-300);
    margin-bottom: var(--space-5);
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-2);
}

.service-features li {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-size: var(--text-sm);
    color: var(--color-slate-400);
}

.service-features li::before {
    content: '';
    width: 16px;
    height: 16px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23C6A855' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") no-repeat center;
    background-size: contain;
    flex-shrink: 0;
}

/* ==========================================================================
   MEDIA PORTFOLIO
   ========================================================================== */

.media-section {
    background: var(--color-pearl);
}

.media-tabs {
    display: flex;
    justify-content: center;
    gap: var(--space-3);
    margin-bottom: var(--space-10);
}

.media-tab {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-slate-300);
    background: var(--color-white);
    border: 1px solid var(--color-silver);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: all var(--duration-fast);
}

.media-tab:hover,
.media-tab.is-active {
    color: var(--color-navy);
    border-color: var(--color-navy);
    background: var(--color-white);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: var(--space-6);
}

.media-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-silver);
    transition: all var(--duration-base) var(--ease-out);
}

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

.media-card-image {
    position: relative;
    aspect-ratio: 16/10;
    background: var(--color-pearl);
    overflow: hidden;
}

.media-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--duration-slow) var(--ease-out);
}

.media-card:hover .media-card-image img {
    transform: scale(1.05);
}

.media-badge {
    position: absolute;
    top: var(--space-3);
    left: var(--space-3);
    padding: var(--space-1) var(--space-3);
    background: var(--color-navy);
    color: var(--color-white);
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--radius-sm);
}

.media-card-body {
    padding: var(--space-5);
}

.media-card-logo {
    height: 24px;
    margin-bottom: var(--space-3);
}

.media-card h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.media-card-excerpt {
    font-size: var(--text-sm);
    color: var(--color-slate-300);
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.media-card-stats {
    display: flex;
    gap: var(--space-6);
    padding-top: var(--space-4);
    border-top: 1px solid var(--color-silver);
}

.media-stat {
    display: flex;
    flex-direction: column;
}

.media-stat-value {
    font-size: var(--text-base);
    font-weight: 700;
    color: var(--color-navy);
}

.media-stat-label {
    font-size: var(--text-xs);
    color: var(--color-slate-200);
}

/* ==========================================================================
   KEY FIGURES
   ========================================================================== */

.figures-section {
    background: var(--color-navy);
    padding: var(--space-20) 0;
}

.figures-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-8);
}

.figure {
    text-align: center;
    padding: var(--space-6);
    position: relative;
}

.figure:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    bottom: 20%;
    width: 1px;
    background: rgba(255, 255, 255, 0.1);
}

.figure-value {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    font-weight: 600;
    color: var(--color-gold);
    line-height: 1;
    margin-bottom: var(--space-2);
}

.figure-label {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.7);
    font-weight: 500;
}

.figure-sublabel {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    margin-top: var(--space-1);
}

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
    position: relative;
}

.process-grid::before {
    content: '';
    position: absolute;
    top: 44px;
    left: 12%;
    right: 12%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold), var(--color-gold-light));
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border: 2px solid var(--color-gold);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: var(--text-2xl);
    font-weight: 600;
    color: var(--color-gold);
    margin: 0 auto var(--space-5);
    position: relative;
    z-index: 1;
    transition: all var(--duration-base) var(--ease-out);
}

.process-step:hover .process-number {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: scale(1.1);
}

.process-step h4 {
    font-size: var(--text-lg);
    margin-bottom: var(--space-2);
}

.process-step p {
    font-size: var(--text-sm);
    color: var(--color-slate-300);
    max-width: 240px;
    margin: 0 auto;
}

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.testimonials-section {
    background: linear-gradient(180deg, var(--color-ivory) 0%, var(--color-white) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: var(--space-6);
}

.testimonial-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-8);
    box-shadow: var(--shadow-md);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: var(--space-4);
    right: var(--space-6);
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1;
    color: var(--color-pearl);
}

.testimonial-stars {
    display: flex;
    gap: 4px;
    margin-bottom: var(--space-4);
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    fill: var(--color-gold);
}

.testimonial-text {
    font-size: var(--text-base);
    line-height: 1.8;
    color: var(--color-slate-400);
    margin-bottom: var(--space-6);
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.testimonial-avatar {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-info h5 {
    font-size: var(--text-base);
    margin-bottom: 0;
}

.testimonial-info span {
    font-size: var(--text-sm);
    color: var(--color-slate-200);
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */

.cta-section {
    position: relative;
    padding: var(--space-24) 0;
    background: linear-gradient(135deg, var(--color-navy) 0%, var(--color-navy-dark) 100%);
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 50%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(198, 168, 85, 0.1) 0%, transparent 60%);
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 680px;
    margin: 0 auto;
}

.cta-content h2 {
    color: var(--color-white);
    margin-bottom: var(--space-4);
}

.cta-content p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-8);
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: var(--space-4);
    flex-wrap: wrap;
}

.cta-contact {
    display: flex;
    justify-content: center;
    gap: var(--space-10);
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-contact-item {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

.cta-contact-item svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.site-footer {
    background: var(--color-charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding-top: var(--space-16);
}

.footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--space-12);
    padding-bottom: var(--space-12);
}

.footer-brand {
    max-width: 280px;
}

.footer-logo {
    margin-bottom: var(--space-5);
}

.footer-logo img {
    height: 40px;
}

.footer-description {
    font-size: var(--text-sm);
    line-height: 1.8;
    margin-bottom: var(--space-6);
}

.footer-social {
    display: flex;
    gap: var(--space-3);
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    color: var(--color-white);
    transition: all var(--duration-fast);
}

.footer-social a:hover {
    background: var(--color-gold);
    color: var(--color-navy);
}

.footer-column h5 {
    font-size: var(--text-sm);
    font-weight: 700;
    color: var(--color-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: var(--space-5);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.footer-column a {
    font-size: var(--text-sm);
    transition: color var(--duration-fast);
}

.footer-column a:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: var(--space-5) 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: var(--text-sm);
}

.footer-legal {
    display: flex;
    gap: var(--space-6);
}

.footer-legal a {
    font-size: var(--text-sm);
    color: rgba(255, 255, 255, 0.4);
}

.footer-legal a:hover {
    color: var(--color-gold);
}

/* ==========================================================================
   CONTACT FORM
   ========================================================================== */

.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-10);
    box-shadow: var(--shadow-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-5);
}

.form-group {
    margin-bottom: var(--space-5);
}

.form-group label {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-navy);
    margin-bottom: var(--space-2);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: var(--space-4);
    font-size: var(--text-base);
    color: var(--color-navy);
    background: var(--color-ivory);
    border: 2px solid transparent;
    border-radius: var(--radius-md);
    transition: all var(--duration-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--color-white);
    border-color: var(--color-gold);
}

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

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-24px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-up {
    animation: fadeInUp 0.6s var(--ease-out) forwards;
}

.animate-fade-left {
    animation: fadeInLeft 0.6s var(--ease-out) forwards;
}

.delay-100 { animation-delay: 100ms; }
.delay-200 { animation-delay: 200ms; }
.delay-300 { animation-delay: 300ms; }
.delay-400 { animation-delay: 400ms; }
.delay-500 { animation-delay: 500ms; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1200px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-text {
        max-width: 640px;
        margin: 0 auto;
    }
    
    .hero-description {
        margin: 0 auto var(--space-8);
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .footer-main {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .figures-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .figure:not(:last-child)::after {
        display: none;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .process-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 72px;
    }
    
    .main-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .section {
        padding: var(--space-16) 0;
    }
    
    .services-grid,
    .media-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .figures-grid,
    .process-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-brand {
        max-width: none;
        margin: 0 auto;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        gap: var(--space-4);
    }
    
    .cta-contact {
        flex-direction: column;
        align-items: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-stats {
        flex-direction: column;
        gap: var(--space-6);
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .hero-cta .btn {
        width: 100%;
    }
    
    .media-tabs {
        flex-wrap: wrap;
    }
}
