/* ===================================
   CSS Variables & Reset
   =================================== */
:root {
    /* Colors - Or/Gold & Blue Marine - Optimized for white background */
    --gold-light: #d4af37;
    --gold: #c9a03c;
    --gold-dark: #b8902e;
    --navy-dark: #001a4d;
    --navy: #002d66;
    --navy-light: #003d7a;
    --navy-lighter: #004d8f;

    /* New colors for white background theme */
    --white: #ffffff;
    --off-white: #fafafa;
    --light-gray: #f5f5f5;
    --border-gray: #e0e0e0;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #6a6a6a;

    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #d4af37 0%, #c9a03c 50%, #b8902e 100%);
    --gradient-navy: linear-gradient(135deg, #001a4d 0%, #003d7a 100%);
    --gradient-overlay: linear-gradient(135deg, rgba(0, 26, 77, 0.95) 0%, rgba(0, 61, 122, 0.9) 100%);

    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Montserrat', sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-xxl: 8rem;

    /* Transitions */
    --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --shadow-gold: 0 4px 20px rgba(230, 195, 4, 0.3);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.7;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    box-sizing: border-box;
}

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

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

ul {
    list-style: none;
}

/* ===================================
   Typography
   =================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--navy-dark);
}

.section-tag {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 3rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2.5rem;
    height: 2px;
    background: var(--gradient-gold);
}

.section-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

/* ===================================
   Navigation
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--border-gray);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom-color: var(--gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.75rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition-fast);
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-subtext {
    font-size: 0.75rem;
    letter-spacing: 4px;
    color: var(--gold);
    margin-top: 0.25rem;
}

.logo-image {
    height: 65px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(230, 195, 4, 0.2));
    transition: var(--transition-fast);
}

.logo:hover .logo-image {
    filter: drop-shadow(0 4px 12px rgba(230, 195, 4, 0.4));
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy-dark);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.3px;
    transition: var(--transition-fast);
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--gradient-gold);
    transition: width 0.3s ease;
    box-shadow: 0 0 8px rgba(230, 195, 4, 0.4);
}

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

.nav-link.linkedin-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-gray);
    transition: var(--transition-smooth);
}

.nav-link.linkedin-link:hover {
    background: #0077B5;
    border-color: #0077B5;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 119, 181, 0.3);
}

.nav-link.linkedin-link::after {
    display: none;
}

.nav-link.linkedin-link svg {
    width: 20px;
    height: 20px;
}

.nav-link.cta-button {
    background: var(--gradient-gold);
    color: var(--white);
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(201, 160, 60, 0.4);
}

.nav-link.cta-button::after {
    display: none;
}

.nav-link.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 160, 60, 0.5);
    color: var(--white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

/* ===================================
   Hero Section - Problèmes
   =================================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: calc(var(--space-xl) + 3rem) 0 var(--space-xl) 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    background-attachment: fixed;
    width: 100%;
    overflow-x: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(201, 160, 60, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(3rem, 7vw, 5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
    font-weight: 400;
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin: var(--space-lg) 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problem-card {
    background: var(--white);
    backdrop-filter: blur(10px);
    border: 2px solid var(--border-gray);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    transition: var(--transition-smooth);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.problem-card:hover {
    transform: translateY(-10px);
    background: var(--white);
    border-color: var(--gold);
    box-shadow: 0 12px 32px rgba(201, 160, 60, 0.25);
}

.problem-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    color: var(--gold);
}

.problem-icon svg {
    width: 100%;
    height: 100%;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--navy-dark);
}

.problem-card p {
    color: var(--text-medium);
    font-size: 1rem;
    line-height: 1.6;
}

.cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--navy-dark);
    color: var(--white);
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    margin-top: var(--space-md);
    transition: var(--transition-smooth);
    border: 2px solid var(--navy-dark);
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(0, 26, 77, 0.3);
}

.cta-primary svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-primary:hover {
    transform: translateY(-3px);
    background: var(--navy);
    border-color: var(--navy);
    box-shadow: 0 12px 32px rgba(0, 26, 77, 0.4);
}

.cta-primary:hover svg {
    transform: translateX(5px);
}

.scroll-indicator {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--gold);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(-10px); }
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(15px); }
}

/* ===================================
   Solutions Section
   =================================== */
.solutions-section {
    padding: var(--space-xxl) 0;
    background: var(--off-white);
    position: relative;
    width: 100%;
    overflow-x: hidden;
}

.solutions-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.solutions-grid {
    display: grid;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
}

.solution-card {
    position: relative;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 24px;
    padding: 3rem;
    overflow: hidden;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.solution-card:hover {
    border-color: var(--gold);
    transform: translateX(10px);
    box-shadow: 0 12px 32px rgba(201, 160, 60, 0.2);
}

.solution-number {
    font-family: var(--font-heading);
    font-size: 5rem;
    font-weight: 700;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    position: absolute;
    top: 1rem;
    right: 2rem;
    line-height: 1;
}

.solution-content {
    position: relative;
    z-index: 1;
}

.solution-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--navy-dark);
}

.solution-content > p {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.solution-features {
    display: grid;
    gap: 1rem;
}

.solution-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-dark);
    font-size: 1rem;
}

.solution-features svg {
    width: 20px;
    height: 20px;
    color: var(--gold);
    flex-shrink: 0;
}

.solution-decoration {
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(230, 195, 4, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ===================================
   Profil Section
   =================================== */
.profil-section {
    padding: var(--space-xxl) 0;
    background: var(--white);
    width: 100%;
    overflow-x: hidden;
}

.profil-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.profil-image {
    position: relative;
}

.orias-badge {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.orias-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    padding: 1.25rem 1.5rem;
    border-radius: 16px;
    border: 2px solid var(--border-gray);
    flex: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.orias-item:hover {
    border-color: var(--gold);
    box-shadow: 0 6px 20px rgba(201, 160, 60, 0.2);
}

.orias-item svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.orias-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.orias-item strong {
    color: var(--navy-dark);
    font-size: 1rem;
    font-weight: 600;
}

.orias-item span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-wrapper img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 91, 0.3) 0%, rgba(230, 195, 4, 0.2) 100%);
    pointer-events: none;
}

.experience-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    padding: 2rem;
    border-radius: 50%;
    width: 140px;
    height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-gold);
    text-align: center;
}

.badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.badge-text {
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
    line-height: 1.2;
}

.profil-text {
    text-align: left;
}

.profil-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.value-item {
    text-align: center;
}

.value-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1rem;
    color: var(--gold);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-item h4 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.value-item p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* ===================================
   Testimonials Section
   =================================== */
.testimonials-section {
    padding: var(--space-xxl) 0;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonials-slider-wrapper {
    margin: var(--space-lg) 0;
    overflow: hidden;
    position: relative;
}

.testimonials-slider {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonials-slide {
    min-width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0.5rem;
}

@media (min-width: 769px) {
    .testimonials-slide {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-slide {
        grid-template-columns: 1fr;
    }
}

.testimonial-card {
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    position: relative;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 12px 32px rgba(201, 160, 60, 0.2);
}

.quote-icon {
    width: 40px;
    height: 40px;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 1.5rem;
}

.quote-icon svg {
    width: 100%;
    height: 100%;
}

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

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-gold);
    color: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info h4 {
    font-size: 1.125rem;
    color: var(--navy-dark);
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--text-light);
}

.stars {
    color: var(--gold);
    font-size: 1.125rem;
    letter-spacing: 0.25rem;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 3rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(230, 195, 4, 0.3);
    cursor: pointer;
    transition: var(--transition-fast);
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

/* ===================================
   CTA Section Inline
   =================================== */
.cta-section-inline {
    max-width: 900px;
    margin: 4rem auto 0;
    text-align: center;
    background: var(--navy-dark);
    border: 2px solid var(--navy-dark);
    border-radius: 24px;
    padding: 3.5rem 3rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(0, 26, 77, 0.2);
}

.cta-section-inline::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(201, 160, 60, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.cta-section-inline h3 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    color: var(--white);
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.cta-section-inline p {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cta-section-inline .cta-primary {
    position: relative;
    z-index: 1;
    background: var(--white);
    color: var(--navy-dark);
    border-color: var(--white);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.3);
}

.cta-section-inline .cta-primary:hover {
    background: var(--off-white);
    border-color: var(--off-white);
    box-shadow: 0 12px 32px rgba(255, 255, 255, 0.4);
}

/* ===================================
   Contact Section
   =================================== */
.contact-section {
    padding: var(--space-xxl) 0;
    background: var(--white);
    width: 100%;
    overflow-x: hidden;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
}

.contact-info {
    text-align: left;
}

.contact-description {
    font-size: 1.125rem;
    color: var(--text-medium);
    margin: 2rem 0 3rem;
    line-height: 1.8;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    color: var(--gold);
    background: rgba(230, 195, 4, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.contact-item h4 {
    font-size: 1.125rem;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-item-large {
    background: rgba(230, 195, 4, 0.05);
    border: 1px solid rgba(230, 195, 4, 0.2);
    border-radius: 16px;
    padding: 2rem;
}

.contact-item-large h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.contact-item-large p {
    font-size: 1.25rem;
}

.contact-item-large a {
    font-weight: 500;
}

.legal-info {
    display: flex;
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(230, 195, 4, 0.1);
}

.legal-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(230, 195, 4, 0.05);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(230, 195, 4, 0.15);
    flex: 1;
}

.legal-item svg {
    width: 32px;
    height: 32px;
    color: var(--gold);
    flex-shrink: 0;
}

.legal-item div {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.legal-item strong {
    color: var(--navy-dark);
    font-size: 1rem;
    font-weight: 600;
}

.legal-item span {
    color: var(--text-medium);
    font-size: 0.95rem;
}

.contact-form-wrapper {
    background: var(--light-gray);
    border: 2px solid var(--border-gray);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--navy-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    background: var(--white);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 160, 60, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    color: var(--text-medium);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

/* ===================================
   Footer
   =================================== */
.footer {
    background: var(--light-gray);
    border-top: 2px solid var(--border-gray);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand p {
    color: var(--text-light);
    margin: 0;
    max-width: 300px;
}

.footer-links h4,
.footer-contact h4 {
    font-size: 1.25rem;
    color: var(--navy-dark);
    margin-bottom: 1.5rem;
}

.footer-links ul,
.footer-contact ul {
    display: grid;
    gap: 0.75rem;
}

.footer-links a,
.footer-contact a {
    color: var(--text-medium);
    transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--gold);
    padding-left: 0.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-gray);
    color: var(--text-light);
    font-size: 0.95rem;
}

.footer-bottom-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-legal-text {
    color: var(--gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-light);
    transition: var(--transition-fast);
}

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

/* ===================================
   Animations
   =================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* ===================================
   Responsive Design
   =================================== */
@media (max-width: 1024px) {
    .problems-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
        max-width: 700px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 2rem;
        transition: right 0.4s ease;
        box-shadow: -5px 0 20px rgba(0, 0, 0, 0.15);
    }

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

    .hamburger {
        display: flex;
        z-index: 1001;
    }

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

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

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

    .profil-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .footer-bottom-left {
        align-items: center;
    }

    .legal-info {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    :root {
        --space-lg: 2.5rem;
        --space-xl: 3.5rem;
        --space-xxl: 4.5rem;
    }

    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    .container {
        padding: 0 1.25rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    section {
        overflow-x: hidden;
        width: 100%;
    }

    /* Amélioration tactile mobile */
    a, button {
        -webkit-tap-highlight-color: rgba(201, 160, 60, 0.2);
        touch-action: manipulation;
    }

    .nav-container {
        padding: 0.65rem 1.25rem;
    }

    /* Menu mobile amélioré */
    .nav-menu {
        padding-top: 80px;
        background: var(--white);
        backdrop-filter: blur(30px);
        max-width: 300px;
    }

    .nav-link {
        font-size: 1.125rem;
        padding: 1rem 0;
    }

    /* Hero optimisé mobile */
    .hero-section {
        min-height: auto;
        padding: 6rem 0 3.5rem;
    }

    .hero-title {
        font-size: 1.875rem;
        line-height: 1.25;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 2rem;
        line-height: 1.5;
    }

    .problems-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .problem-card {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .problem-icon {
        width: 48px;
        height: 48px;
        margin-bottom: 1rem;
    }

    .problem-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.625rem;
        line-height: 1.3;
    }

    .problem-card p {
        font-size: 0.875rem;
        line-height: 1.5;
    }

    /* Sections spacing */
    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-tag {
        font-size: 0.75rem;
        padding-left: 2.5rem;
    }

    .section-tag::before {
        width: 2rem;
    }

    .section-title {
        font-size: 1.875rem;
        margin-bottom: 1rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Solutions cards */
    .solution-card {
        padding: 1.75rem 1.5rem;
    }

    .solution-number {
        font-size: 2.5rem;
        top: 0.5rem;
        right: 1rem;
        opacity: 0.2;
    }

    .solution-content h3 {
        font-size: 1.35rem;
        margin-bottom: 1rem;
    }

    .solution-content > p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .solution-features {
        gap: 0.75rem;
    }

    .solution-features li {
        font-size: 0.9rem;
    }

    /* Values grid */
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-top: 2rem;
    }

    .value-icon {
        width: 45px;
        height: 45px;
    }

    .value-item h4 {
        font-size: 1.125rem;
    }

    .value-item p {
        font-size: 0.875rem;
    }

    /* Profil section mobile */
    .profil-description {
        font-size: 1rem;
        margin-bottom: 1.25rem;
    }

    .orias-badge {
        flex-direction: column;
        gap: 0.875rem;
        margin-top: 1.25rem;
    }

    .orias-item {
        padding: 1rem 1.125rem;
        border-radius: 12px;
    }

    .orias-item svg {
        width: 26px;
        height: 26px;
    }

    .orias-item strong {
        font-size: 0.9375rem;
    }

    .orias-item span {
        font-size: 0.8125rem;
    }

    .image-wrapper img {
        height: 350px;
        border-radius: 16px;
    }

    .experience-badge {
        width: 90px;
        height: 90px;
        padding: 1.25rem;
        bottom: 1rem;
        right: 1rem;
    }

    .badge-number {
        font-size: 1.75rem;
    }

    .badge-text {
        font-size: 0.7rem;
    }

    /* Testimonials mobile */
    .testimonials-slide {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .testimonial-card {
        padding: 1.75rem 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
    }

    .author-avatar {
        width: 45px;
        height: 45px;
        font-size: 0.95rem;
    }

    .author-info h4 {
        font-size: 1rem;
    }

    .author-info p {
        font-size: 0.8rem;
    }

    .stars {
        font-size: 1rem;
    }

    .slider-dots {
        margin-top: 2rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Contact form mobile */
    .contact-description {
        font-size: 1rem;
        margin: 1.5rem 0 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .contact-form-wrapper {
        padding: 1.5rem 1.25rem;
        border-radius: 16px;
    }

    .contact-item-large {
        padding: 1.25rem;
        border-radius: 12px;
    }

    .contact-item-large h4 {
        font-size: 1.125rem;
    }

    .contact-item-large p {
        font-size: 1rem;
    }

    .contact-item-large a {
        word-break: break-word;
    }

    /* CTA sections mobile */
    .cta-section-inline {
        padding: 2.25rem 1.75rem;
        margin: 3rem auto 0;
        border-radius: 20px;
    }

    .cta-section-inline h3 {
        font-size: 1.375rem;
        line-height: 1.3;
    }

    .cta-section-inline p {
        font-size: 0.95rem;
        margin-bottom: 1.75rem;
    }

    .cta-primary {
        padding: 1.125rem 2.5rem;
        font-size: 1rem;
        gap: 0.625rem;
        width: 100%;
        max-width: 320px;
        justify-content: center;
        margin-left: auto;
        margin-right: auto;
    }

    .cta-primary svg {
        width: 18px;
        height: 18px;
    }

    /* Legal info mobile */
    .legal-item {
        padding: 1.25rem;
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }

    .legal-item svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-lg: 2rem;
        --space-xl: 3rem;
        --space-xxl: 4rem;
    }

    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
        max-width: 100vw !important;
    }

    .container {
        padding: 0 1rem;
        max-width: 100%;
        overflow-x: hidden;
    }

    section {
        overflow-x: hidden !important;
        width: 100% !important;
    }

    .nav-container {
        padding: 0.6rem 1rem;
    }

    .logo-text {
        font-size: 1.35rem;
        letter-spacing: 2px;
    }

    .logo-image {
        height: 50px;
    }

    /* Hero très compact */
    .hero-section {
        min-height: auto;
        padding: 6rem 0 3.5rem;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.25;
        margin-bottom: 0.875rem;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }

    .problem-card {
        padding: 1.5rem 1.25rem;
    }

    .problem-icon {
        width: 45px;
        height: 45px;
        margin-bottom: 1rem;
    }

    .problem-card h3 {
        font-size: 1.125rem;
    }

    .problem-card p {
        font-size: 0.9rem;
        line-height: 1.5;
    }

    /* Sections */
    .section-title {
        font-size: 1.625rem;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Solutions */
    .solution-card {
        padding: 1.5rem 1.25rem;
    }

    .solution-number {
        font-size: 2rem;
        opacity: 0.15;
    }

    .solution-content h3 {
        font-size: 1.25rem;
    }

    .solution-content > p {
        font-size: 0.9rem;
    }

    .solution-features li {
        font-size: 0.85rem;
    }

    /* Profil */
    .image-wrapper img {
        height: 300px;
    }

    .profil-description {
        font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem 1.25rem;
    }

    .testimonial-text {
        font-size: 0.9rem;
    }

    /* Contact */
    .contact-form-wrapper {
        padding: 1.5rem 1.25rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem 0.875rem;
        font-size: 0.9rem;
    }

    .form-group textarea {
        min-height: 100px;
    }

    .contact-item-large {
        padding: 1.25rem;
    }

    .contact-item-large h4 {
        font-size: 1.125rem;
    }

    .contact-item-large p {
        font-size: 1rem;
    }

    /* CTA */
    .cta-section-inline {
        padding: 2rem 1.5rem;
        margin: 2.5rem auto 0;
    }

    .cta-section-inline h3 {
        font-size: 1.25rem;
    }

    .cta-section-inline p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }

    .cta-primary {
        padding: 0.875rem 1.75rem;
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }

    .footer-content {
        text-align: center;
        gap: 1.75rem;
    }

    .footer-brand p {
        margin: 0 auto 1rem;
        font-size: 0.875rem;
        line-height: 1.5;
    }

    .footer-links h4,
    .footer-contact h4 {
        font-size: 1.0625rem;
        margin-bottom: 0.875rem;
    }

    .footer-links a,
    .footer-contact a {
        font-size: 0.875rem;
        display: block;
        padding: 0.5rem 0;
    }

    .footer-bottom {
        font-size: 0.8125rem;
        padding-top: 1.5rem;
        gap: 0.75rem;
    }

    .footer-legal-text {
        font-size: 0.8125rem;
    }

    .legal-item {
        padding: 1rem;
    }

    .legal-item strong {
        font-size: 0.9rem;
    }

    .legal-item span {
        font-size: 0.85rem;
    }
}
