/* ===========================
   RESET & BASE STYLES
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #000000;
    --secondary-color: #333333;
    --dark-color: #0A0A0A;
    --gray-dark: #1A1A1A;
    --gray-medium: #666666;
    --gray-light: #F5F5F5;
    --white: #FFFFFF;
    --accent: #000000;
    --gradient-primary: linear-gradient(135deg, #000000 0%, #333333 100%);
    --gradient-dark: linear-gradient(135deg, #0A0A0A 0%, #1A1A1A 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--dark-color);
    line-height: 1.6;
    overflow-x: hidden;
    background: #ffffff; /* White background for clean minimalist design */
}

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

/* ===========================
   TOP BANNER
   =========================== */
.top-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--dark-color);
    z-index: 1001;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 8px 0;
}

.top-banner-content {
    text-align: center;
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.08em;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    text-transform: uppercase;
}

.banner-break {
    display: none;
}

@media (max-width: 768px) {
    .banner-break {
        display: inline;
    }
}

/* ===========================
   NAVIGATION
   =========================== */
.navbar {
    position: fixed;
    top: 36px;
    left: 0;
    right: 0;
    background: transparent;
    backdrop-filter: none;
    z-index: 1000;
    border-bottom: none;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover {
    opacity: 0.8;
}

.logo-image {
    height: 180px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0px 20px rgba(255, 255, 255, 1)) 
            drop-shadow(0 0px 15px rgba(255, 255, 255, 1)) 
            drop-shadow(0 0px 10px rgba(255, 255, 255, 1));
}

.nav-menu {
    display: none;
}

.nav-link {
    color: var(--dark-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--dark-color);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--dark-color);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none !important;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--dark-color);
    transition: var(--transition);
}

/* ===========================
   BUTTONS
   =========================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border-radius: 8px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

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

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

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

.btn-large {
    padding: 18px 48px;
    font-size: 16px;
    font-weight: 700;
}

.nav-cta {
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    white-space: nowrap;
    background: linear-gradient(135deg, #ff0066 0%, #ff3399 50%, #ff0099 100%) !important;
    color: var(--white) !important;
    box-shadow: 0 4px 20px rgba(255, 0, 102, 0.6);
}

.nav-cta:hover {
    background: linear-gradient(135deg, #ff0080 0%, #ff1493 50%, #ff00cc 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(255, 0, 153, 0.8);
}

/* ===========================
   HERO SECTION - NEW DESIGN
   =========================== */
.hero {
    position: relative;
    height: 75vh;
    min-height: 600px;
    max-height: 900px;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    color: #000000;
    margin-bottom: 0; /* Ensure no gap with next section */
}

/* Background Portfolio */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 75%;
    z-index: 1;
    pointer-events: none;
}

/* Gradient overlays */
.hero-gradient-radial {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(88, 63, 255, 0.05) 0%, rgba(0, 0, 0, 0) 40%);
}

.hero-gradient-vertical {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.6), #ffffff);
}

/* Marquee Container */
.hero-marquee-container {
    position: absolute;
    left: 50%;
    top: -5rem;
    width: 140vw;
    transform: translateX(-50%) rotate(-8deg);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0.7;
}

/* Note: Pour créer un vrai rectangle fermé, il faudrait une structure complètement différente
   avec des rangées horizontales en haut/bas et verticales sur les côtés */

.marquee-row {
    position: relative;
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.marquee-content {
    display: flex;
    min-width: max-content;
    gap: 1rem;
    animation: marquee 30s linear infinite;
}

.marquee-reverse {
    animation-direction: reverse;
}

.marquee-item {
    position: relative;
    height: 11rem;
    width: 22rem;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 0.5rem;
    background: rgba(38, 38, 38, 0.4);
    box-shadow: 0 30px 80px -10px rgba(0, 0, 0, 0.9);
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    display: block;
}

.marquee-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0));
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hero Content Wrapper */
.hero-content-wrapper {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 20;
    background: #ffffff;
    height: 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    padding: 1rem 2rem 1rem;
    overflow: visible;
}

.hero-content-inner {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 1rem;
}

.hero-title {
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #000000;
    text-shadow: none;
    margin-bottom: 1rem;
    margin-top: 0;
    display: block;
    white-space: normal;
}

.hero-title-logo {
    height: 7rem;
    width: auto;
    display: inline-block;
    vertical-align: middle;
}

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(0, 0, 0, 0.6);
    margin-bottom: 2.5rem;
    font-weight: 400;
    white-space: normal;
}

.hero-cta-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #ffffff;
    background: linear-gradient(135deg, #ff0066 0%, #ff3399 50%, #ff0099 100%);
    border-radius: 0.375rem;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(255, 0, 102, 0.5);
    transition: all 0.3s ease;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #ff0080 0%, #ff1493 50%, #ff00cc 100%);
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 0, 153, 0.6);
}

.btn-arrow {
    width: 1rem;
    height: 1rem;
}

.hero-trust-mini {
    display: flex;
    flex-direction: column;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
}

.trust-stars {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: #000000;
    margin-bottom: 0.25rem;
}

.trust-text {
    color: rgba(0, 0, 0, 0.6);
}

.trust-features {
    font-size: 0.75rem;
}

/* Proof row */
.hero-proof-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
    font-size: 0.75rem;
    color: rgba(0, 0, 0, 0.6);
}

.proof-col {
    display: flex;
    flex-direction: column;
}

.proof-title {
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.25rem;
}

.proof-subtitle {
    font-size: 0.75rem;
}

.proof-separator {
    width: 1px;
    height: 2.5rem;
    background: rgba(0, 0, 0, 0.2);
}

/* Client logos */
.hero-clients {
    max-width: 80rem;
}

.clients-label {
    font-size: 0.625rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: rgba(0, 0, 0, 0.4);
    margin-bottom: 1rem;
}

.clients-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2.5rem 2.5rem;
    opacity: 0.6;
    filter: grayscale(100%);
}

.clients-list span {
    font-size: 0.875rem;
    font-weight: 600;
    color: #000000;
}

/* Bottom fade - Supprimé pour garder les images pures */
.hero-bottom-fade {
    display: none;
}

/* Responsive Hero */
@media (min-width: 768px) {
    .hero-title {
        font-size: 1rem;
        line-height: 1.3;
        margin-top: 0;
        font-weight: 700;
        white-space: normal;
    }
    
    .hero-title-logo {
        height: 10rem;
    }
    
    .hero-subtitle {
        font-size: 1.25rem;
        line-height: 1.7;
        white-space: normal;
    }
    
    .hero-content-wrapper {
        padding: 1rem 2rem 0.5rem;
        justify-content: flex-start;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-top: 0;
        font-weight: 700;
        white-space: nowrap;
    }
    
    .hero-title-logo {
        height: 13rem;
    }
    
    .hero-subtitle {
        font-size: 1.35rem;
        line-height: 1.7;
        white-space: nowrap;
    }
    
    .hero-content-wrapper {
        justify-content: flex-start;
        padding: 1rem 2rem 0.5rem;
    }
    
    .proof-separator {
        display: block;
    }
}

@media (max-width: 1023px) {
    .proof-separator {
        display: none;
    }
}

/* Mobile Optimizations */
@media (max-width: 640px) {
    .hero-title {
        font-size: 0.5rem;
        margin-top: 0;
        line-height: 1.3;
        font-weight: 700;
        white-space: normal;
    }
    
    .hero-title-logo {
        height: 5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
        white-space: normal;
    }
    
    .hero-content-wrapper {
        padding: 0.5rem 1rem 0.5rem;
    }
    
    .hero-label {
        font-size: 0.625rem;
    }
    
    .btn-hero-primary {
        padding: 0.625rem 1rem;
        font-size: 0.75rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust-mini {
        font-size: 0.625rem;
    }
    
    .trust-stars {
        font-size: 0.625rem;
    }
    
    .trust-features {
        font-size: 0.625rem;
    }
    
    .hero-proof-row {
        gap: 1rem;
        font-size: 0.625rem;
    }
    
    .proof-title {
        font-size: 0.75rem;
    }
    
    .proof-subtitle {
        font-size: 0.625rem;
    }
    
    .hero-clients {
        margin-top: 2rem;
    }
    
    .clients-label {
        font-size: 0.5rem;
    }
    
    .clients-list {
        gap: 1.5rem 1.5rem;
    }
    
    .clients-list span {
        font-size: 0.75rem;
    }
    
    .hero-cta-row {
        flex-direction: column;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .marquee-item {
        height: 9rem;
        width: 18rem;
    }
    
    .hero-marquee-container {
        gap: 0.25rem;
    }
}

/* ===========================
   ANIMATIONS
   =========================== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

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

/* ===========================
   SECTIONS
   =========================== */
section {
    padding: 100px 0;
}

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

.section-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 20px;
    color: var(--gray-medium);
    font-weight: 400;
}

/* ===========================
   SERVICES SECTION
   =========================== */
.services {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.service-card {
    background: var(--white);
    padding: 48px 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    cursor: pointer;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.service-description {
    font-size: 16px;
    line-height: 1.7;
    color: var(--gray-medium);
    margin-bottom: 16px;
}

.service-result {
    font-size: 16px;
    color: var(--dark-color);
    font-weight: 600;
}

/* ===========================
   PORTFOLIO SECTION
   =========================== */
.portfolio {
    background: var(--gray-light);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
}

.portfolio-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
}

.portfolio-image {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9), rgba(26, 26, 26, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
}

.portfolio-info {
    text-align: center;
    color: var(--white);
}

.portfolio-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
}

.portfolio-info p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===========================
   ABOUT SECTION
   =========================== */
.about {
    background: var(--white);
}

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

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.about-content h3:first-of-type {
    margin-top: 0;
}

.about-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-medium);
    margin-bottom: 16px;
}

.about-values ul {
    list-style: none;
    padding: 0;
}

.about-values li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-medium);
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
}

.about-values li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--dark-color);
    font-weight: 700;
}

/* ===========================
   PROCESS SECTION
   =========================== */
.process {
    background: var(--gray-light);
}

.process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.process-step {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--gradient-primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.step-content h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark-color);
}

.step-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray-medium);
}

/* ===========================
   TESTIMONIALS SECTION
   =========================== */
.testimonials {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-light);
    padding: 40px;
    border-radius: 16px;
    transition: var(--transition);
}

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

.testimonial-stars {
    font-size: 24px;
    margin-bottom: 24px;
}

.testimonial-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--dark-color);
    margin-bottom: 24px;
    font-style: italic;
}

.author-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 4px;
}

.author-title {
    font-size: 14px;
    color: var(--gray-medium);
}

.social-proof {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.proof-icon {
    font-size: 24px;
}

.proof-item p {
    font-size: 15px;
    font-weight: 500;
    color: var(--gray-medium);
}

/* ===========================
   TEAM SECTION
   =========================== */
.team {
    background: var(--gray-light);
}

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

.team-member {
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-8px);
}

.member-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: var(--shadow-md);
}

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

.team-member h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.team-member p {
    font-size: 15px;
    color: var(--gray-medium);
}

/* ===========================
   CTA SECTION
   =========================== */
.cta-section {
    background: var(--gradient-dark);
    color: var(--white);
    text-align: center;
    padding: 120px 0;
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 24px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 48px;
    opacity: 0.9;
}

/* ===========================
   CONTACT SECTION
   =========================== */
.contact {
    background: var(--white);
}

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

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--dark-color);
}

.form-group input,
.form-group select {
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--dark-color);
}

.contact-info h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 32px;
    color: var(--dark-color);
}

.contact-item {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.contact-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.contact-label {
    font-size: 14px;
    color: var(--gray-medium);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-color);
}

.contact-value a {
    color: var(--dark-color);
    text-decoration: none;
}

.contact-trust {
    background: var(--gray-light);
    padding: 32px;
    border-radius: 12px;
    margin-top: 32px;
}

.contact-trust h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--dark-color);
}

.contact-trust ul {
    list-style: none;
    padding: 0;
}

.contact-trust li {
    font-size: 15px;
    line-height: 2;
    color: var(--gray-medium);
}

/* ===========================
   FOOTER
   =========================== */
.footer {
    background: var(--gray-dark);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-content {
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
}

.footer-logo-image {
    height: 150px;
    width: auto;
    display: block;
}

.footer-links {
    display: none;
}

.footer-copyright {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   AOS ANIMATION
   =========================== */
[data-aos] {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translateY(0);
}

/* ===========================
   APPROACH SECTION
   =========================== */
.approach-section {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 5rem 1.5rem;
}

.approach-container {
    max-width: 1280px;
    margin: 0 auto;
}

.approach-intro {
    max-width: 48rem;
    margin-bottom: 4rem;
}

.approach-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-medium);
    font-weight: 500;
    margin-bottom: 1rem;
}

.approach-title {
    font-size: 1.875rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.approach-description {
    font-size: 1.125rem;
    color: var(--gray-medium);
    line-height: 1.7;
}

.approach-break {
    display: none;
}

@media (min-width: 768px) {
    .approach-break {
        display: block;
    }
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .approach-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

.approach-card {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 2rem;
}

.approach-step-label {
    font-size: 0.875rem;
    color: var(--gray-medium);
    font-weight: 500;
    margin-bottom: 0.75rem;
}

.approach-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.approach-card-text {
    color: var(--gray-medium);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.approach-list {
    list-style: none;
    padding: 0;
    margin: 0;
    color: var(--gray-medium);
    font-size: 0.875rem;
    line-height: 1.7;
}

.approach-list li {
    margin-bottom: 0.25rem;
}

.approach-cta-wrapper {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 640px) {
    .approach-cta-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

.approach-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--dark-color);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 0.75rem 1.25rem;
    border-radius: 0.5rem;
    text-decoration: none;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    transition: all 0.15s ease;
}

.approach-cta-btn:hover {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
}

.approach-cta-text {
    font-size: 0.875rem;
    color: var(--gray-medium);
    line-height: 1.7;
    max-width: 36rem;
}

/* ===========================
   VALUE SECTION
   =========================== */
.value-section {
    background: var(--white);
    padding: 4rem 2rem;
}

.value-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.value-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.value-subtitle {
    font-size: 1rem;
    color: var(--gray-medium);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-value-cta {
    display: inline-block;
    background: var(--dark-color);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
    margin-bottom: 3rem;
}

.btn-value-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
}

.value-card {
    text-align: center;
    padding: 1.5rem;
}

.value-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.value-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.value-card-text {
    font-size: 0.875rem;
    color: var(--gray-medium);
}

.trust-section {
    margin-top: 4rem;
    text-align: left;
}

.trust-title {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-dark);
    margin-bottom: 1rem;
}

.trust-logos {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    align-items: center;
}

.trust-logo-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-medium);
    opacity: 0.8;
    transition: var(--transition);
}

.trust-logo-text:hover {
    opacity: 1;
    color: var(--dark-color);
}

/* Responsive Value Section */
@media (max-width: 768px) {
    .value-section {
        padding: 3rem 1.5rem;
    }
    
    .value-title {
        font-size: 1.5rem;
    }
    
    .value-subtitle {
        font-size: 0.875rem;
    }
    
    .value-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .trust-logos {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .value-grid {
        grid-template-columns: 1fr;
    }
}

/* ===========================
   RESPONSIVE DESIGN
   =========================== */
@media (max-width: 968px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--white);
        flex-direction: column;
        padding: 48px;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
    }

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

    .mobile-menu-btn {
        display: flex;
    }

    .logo-image {
        height: 120px;
    }

    .nav-container {
        padding: 12px 16px;
        justify-content: space-between;
    }
    
    .nav-cta {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    
    .top-banner {
        padding: 6px 0;
    }
    
    .top-banner-content {
        font-size: 0.75rem;
    }

    /* Hero responsive */
    .hero {
        padding: 0;
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        padding-top: 40px;
        max-width: 100%;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .grid-item {
        width: 400px;
        height: 180px;
    }

    .hero-background-grid {
        gap: 2px;
        transform: rotate(-8deg) scale(1.5);
        top: -30%;
        left: -30%;
        right: -30%;
        bottom: -30%;
    }

    .grid-row {
        gap: 2px;
    }

    .section-title {
        font-size: 36px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

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

    .hero-trust {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .trust-separator {
        display: none;
    }

    .social-proof {
        flex-direction: column;
        gap: 24px;
    }

    .process-step {
        flex-direction: column;
        gap: 16px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .hero-bottom {
        padding-top: 60px;
    }
}

@media (max-width: 1024px) {
    .logo-image {
        height: 150px;
    }
    
    .nav-cta {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
    
    .top-banner-content {
        font-size: 0.813rem;
    }
}

@media (max-width: 768px) {
    .logo-image {
        height: 110px;
    }
    
    .top-banner {
        padding: 6px 0;
    }
    
    .top-banner-content {
        font-size: 0.75rem;
    }
    
    .navbar {
        top: 32px;
    }
}

@media (max-width: 640px) {
    .logo-image {
        height: 90px;
    }

    .nav-container {
        padding: 12px 12px;
        flex-wrap: nowrap;
        align-items: center;
    }
    
    .nav-cta {
        padding: 8px 14px;
        font-size: 0.75rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .top-banner {
        padding: 5px 0;
    }
    
    .top-banner-content {
        font-size: 0.65rem;
        padding: 0 12px;
    }
    
    .navbar {
        top: 26px;
    }

    .hero {
        padding: 0;
        height: 70vh;
        min-height: 500px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-label {
        font-size: 12px;
        margin-bottom: 16px;
    }

    .hero-title {
        font-size: 36px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 16px;
        margin-bottom: 32px;
    }

    .btn-primary-white {
        padding: 16px 32px;
        font-size: 13px;
        width: 100%;
        justify-content: center;
    }

    .grid-item {
        width: 400px;
        height: 180px;
    }

    .hero-background-grid {
        gap: 2px;
        transform: rotate(-8deg) scale(1.5);
        top: -30%;
        left: -30%;
        right: -30%;
        bottom: -30%;
    }

    .grid-row {
        gap: 2px;
    }

    .section-title {
        font-size: 28px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .btn-large {
        padding: 16px 32px;
        font-size: 15px;
    }

    section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 48px;
    }

    .hero-bottom {
        padding-top: 40px;
    }

    .client-logo-item {
        font-size: 16px;
    }
}

/* ===========================
   STATS CARDS HOVER EFFECT
   =========================== */
.stat-card {
    position: relative;
    transition: all 0.3s ease;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 0, 102, 0.15), rgba(255, 0, 153, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(8px);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08), 
                0 0 0 1px rgba(255, 0, 102, 0.1),
                inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border-color: rgba(255, 0, 102, 0.2);
}

/* ===========================
   PRINT STYLES
   =========================== */
@media print {
    .navbar,
    .mobile-menu-btn,
    .hero-background,
    .clients-marquee,
    .footer {
        display: none;
    }
}

