/* ============================================
   CAPRICE COMPANY - STYLE ONLYFANS INSPIRED
   Palette: Noir & Blanc uniquement
   ============================================ */

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

/* Optimisations pour mobile */
html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.1);
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

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

.hero {
    background: #fff;
    padding: 80px 20px 60px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}

.hero-content {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    padding: 0 10px;
}

.hero-logo {
    max-width: min(85%, 400px);
    width: auto;
    max-height: 200px;
    height: auto;
    margin: 0 auto 40px;
    display: block;
    opacity: 0;
    animation: logoFadeIn 1.5s ease-out forwards;
    object-fit: contain;
}

@keyframes logoFadeIn {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 24px 0;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero-description {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: #f9f9f9;
    padding: 60px 20px;
}

.stats-container {
    max-width: 1000px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-icon {
    font-size: 3.5rem;
    display: block;
    margin: 0 0 16px 0;
}

.stat-icon-img {
    width: 80px;
    height: 80px;
    display: block;
    margin: 0 auto 16px auto;
}

.stat-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0;
    letter-spacing: -0.3px;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features-section {
    background: #f9f9f9;
    padding: 80px 20px;
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    background: #fff;
    border-left: 4px solid black;
    padding: 40px 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-icon-img {
    width: 60px;
    height: 60px;
    display: block;
    margin: 0 0 20px 0;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 20px 0;
    letter-spacing: -0.3px;
}

.feature-description {
    font-size: 1rem;
    color: #333;
    line-height: 1.7;
    margin: 0 0 25px 0;
}

.feature-highlight {
    background: #e6f7ff;
    border-left: 3px solid #00a8e8;
    padding: 16px 20px;
    border-radius: 4px;
}

.feature-highlight p {
    font-size: 0.95rem;
    color: #00a8e8;
    font-weight: 600;
    margin: 0;
    line-height: 1.5;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: #fff;
    padding: 80px 20px;
}

.about-container {
    max-width: 800px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 40px 0;
    text-align: center;
    letter-spacing: -0.5px;
}

.about-content {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #333;
}

.lead-text {
    font-size: 1.35rem;
    font-weight: 500;
    color: #000;
    margin-bottom: 24px;
    line-height: 1.6;
}

.about-content p {
    margin-bottom: 20px;
}

/* ============================================
   MISSION SECTION
   ============================================ */

.mission-section {
    background: #f9f9f9;
    padding: 80px 20px;
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-box {
    background: #000;
    color: #fff;
    padding: 50px 40px;
    border-radius: 8px;
    margin-bottom: 50px;
    text-align: center;
}

.mission-box h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: -0.3px;
}

.mission-box p {
    font-size: 1.25rem;
    line-height: 1.7;
    margin: 0;
    opacity: 0.95;
}

.mission-values {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.value-item {
    background: #fff;
    border: 2px solid #000;
    padding: 35px 30px;
    border-radius: 8px;
    text-align: center;
}

.value-item h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 12px 0;
}

.value-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   OFFER SECTION (Dual Card)
   ============================================ */

.offer-section {
    background: #fff;
    padding: 80px 20px;
}

.offer-container {
    max-width: 1100px;
    margin: 0 auto;
}

.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.offer-card {
    background: #f9f9f9;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    padding: 45px 35px;
}

.offer-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 30px 0;
    letter-spacing: -0.3px;
}

.offer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.offer-list li {
    font-size: 1.05rem;
    color: #333;
    padding: 16px 0 16px 28px;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    line-height: 1.6;
}

.offer-list li:last-child {
    border-bottom: none;
}

.offer-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #000;
    font-weight: 700;
    font-size: 1.2rem;
}

/* ============================================
   TECHNOLOGY SECTION
   ============================================ */

.technology-section {
    background: #f9f9f9;
    padding: 80px 20px;
}

.technology-container {
    max-width: 1100px;
    margin: 0 auto;
}

.technology-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.tech-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 35px 28px;
    text-align: center;
}

.tech-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 16px 0;
}

.tech-item p {
    font-size: 1rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   COMMITMENT SECTION
   ============================================ */

.commitment-section {
    background: #fff;
    padding: 80px 20px;
}

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

.commitment-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

.commitment-text {
    font-size: 1.25rem;
    color: #333;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.cta-section {
    background: #fff;
    color: #000;
    padding: 100px 20px;
    text-align: center;
}

.cta-container {
    max-width: 700px;
    margin: 0 auto;
}

.cta-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.cta-description {
    font-size: 1.25rem;
    color: #333;
    margin: 0 0 40px 0;
    line-height: 1.6;
}

.btn-cta {
    display: inline-block;
    background: #000;
    color: #fff;
    padding: 18px 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    border: 3px solid #000;
}

.btn-cta:hover {
    background: #fff;
    color: #000;
    transform: translateY(-2px);
}

.cta-email-link {
    font-size: 1.1rem;
    color: #666;
    margin: 30px 0 0 0;
    letter-spacing: 0.3px;
}

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

.company-footer {
    background: #000;
    color: #fff;
    padding: 50px 20px 40px;
    text-align: center;
    border-top: 1px solid #333;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-links {
    margin-bottom: 25px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    margin: 0 18px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #fff;
}

.footer-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0);
}

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

@media (max-width: 1024px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    body {
        font-size: 15px;
    }

    .hero {
        padding: 40px 20px 30px;
    }

    .hero-logo {
        max-width: min(90%, 320px);
        width: auto;
        max-height: 150px;
        margin-bottom: 24px;
        object-fit: contain;
    }

    .hero-title {
        font-size: 1.75rem;
        margin-bottom: 16px;
        line-height: 1.3;
    }

    .hero-description {
        font-size: 1.05rem;
        line-height: 1.5;
        padding: 0 10px;
    }

    .stats-section {
        padding: 40px 20px;
    }

    .stats-container {
        gap: 30px;
    }

    .stat-icon {
        font-size: 2.8rem;
        margin-bottom: 12px;
    }

    .stat-icon-img {
        width: 65px;
        height: 65px;
        margin-bottom: 12px;
    }

    .stat-title {
        font-size: 1.3rem;
    }

    .section-title {
        font-size: 1.9rem;
        margin-bottom: 30px;
    }

    .features-section,
    .about-section,
    .mission-section,
    .offer-section,
    .technology-section,
    .commitment-section {
        padding: 60px 20px;
    }

    .features-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .feature-card {
        padding: 35px 30px;
    }

    .feature-icon {
        font-size: 2.5rem;
        margin-bottom: 16px;
    }

    .feature-icon-img {
        width: 50px;
        height: 50px;
        margin-bottom: 16px;
    }

    .feature-title {
        font-size: 1.35rem;
    }

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

    .lead-text {
        font-size: 1.2rem;
    }

    .about-content {
        font-size: 1.05rem;
    }

    .mission-box {
        padding: 40px 30px;
    }

    .mission-box h3 {
        font-size: 1.5rem;
    }

    .mission-box p {
        font-size: 1.1rem;
    }

    .mission-values {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .value-item {
        padding: 30px 25px;
    }

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

    .offer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-top: 35px;
    }

    .offer-card {
        padding: 35px 28px;
    }

    .offer-card h3 {
        font-size: 1.5rem;
        margin-bottom: 25px;
    }

    .offer-list li {
        font-size: 1rem;
        padding: 14px 0 14px 28px;
    }

    .technology-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .tech-item {
        padding: 30px 25px;
    }

    .commitment-container h2 {
        font-size: 2rem;
        margin-bottom: 30px;
    }

    .commitment-text {
        font-size: 1.1rem;
        line-height: 1.7;
        padding: 0 10px;
    }

    .cta-section {
        padding: 60px 20px;
    }

    .cta-container h2 {
        font-size: 2rem;
        margin-bottom: 20px;
        line-height: 1.3;
    }

    .cta-description {
        font-size: 1.1rem;
        margin-bottom: 30px;
        line-height: 1.6;
    }

    .btn-cta {
        padding: 16px 40px;
        font-size: 1.05rem;
        min-height: 48px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .cta-email-link {
        font-size: 1rem;
        margin-top: 25px;
    }

    .footer-links {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }

    .footer-links a {
        display: inline-block;
        margin: 0;
        padding: 8px 0;
        font-size: 1rem;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .company-footer {
        padding: 40px 20px 30px;
    }
}

@media (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .hero {
        padding: 30px 16px 25px;
    }

    .hero-logo {
        max-width: min(95%, 280px);
        width: auto;
        max-height: 120px;
        margin-bottom: 20px;
        object-fit: contain;
    }

    .hero-title {
        font-size: 1.5rem;
        line-height: 1.25;
        margin-bottom: 14px;
    }

    .hero-description {
        font-size: 0.95rem;
        line-height: 1.5;
        padding: 0 5px;
    }

    .stats-section {
        padding: 30px 16px;
    }

    .stats-container {
        gap: 25px;
    }

    .stat-icon {
        font-size: 2.3rem;
    }

    .stat-icon-img {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }

    .stat-title {
        font-size: 1.15rem;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .features-section,
    .about-section,
    .mission-section,
    .offer-section,
    .commitment-section {
        padding: 50px 16px;
    }

    .feature-card {
        padding: 28px 22px;
    }

    .feature-icon {
        font-size: 2rem;
        margin-bottom: 14px;
    }

    .feature-icon-img {
        width: 42px;
        height: 42px;
        margin-bottom: 14px;
    }

    .feature-title {
        font-size: 1.2rem;
        margin-bottom: 16px;
    }

    .feature-description {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .lead-text {
        font-size: 1.05rem;
        line-height: 1.5;
    }

    .about-content {
        font-size: 0.95rem;
    }

    .mission-box {
        padding: 30px 20px;
    }

    .mission-box h3 {
        font-size: 1.35rem;
        margin-bottom: 16px;
    }

    .mission-box p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .offer-card {
        padding: 28px 20px;
    }

    .offer-card h3 {
        font-size: 1.35rem;
        margin-bottom: 20px;
    }

    .offer-list li {
        font-size: 0.9rem;
        padding: 12px 0 12px 26px;
        line-height: 1.5;
    }

    .offer-list li::before {
        font-size: 1.1rem;
    }

    .commitment-container h2 {
        font-size: 1.75rem;
        margin-bottom: 25px;
        line-height: 1.3;
    }

    .commitment-text {
        font-size: 1rem;
        line-height: 1.6;
    }

    .cta-section {
        padding: 50px 16px;
    }

    .cta-container h2 {
        font-size: 1.65rem;
        line-height: 1.3;
    }

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

    .btn-cta {
        padding: 15px 32px;
        font-size: 1rem;
        min-height: 50px;
        width: 100%;
        max-width: 320px;
    }

    .cta-email-link {
        font-size: 0.95rem;
    }

    .company-footer {
        padding: 35px 16px 25px;
    }

    .footer-links a {
        font-size: 0.95rem;
        min-height: 48px;
    }

    .footer-content p {
        font-size: 0.85rem;
        margin-top: 10px;
    }
}

/* ============================================
   EXTRA SMALL DEVICES (iPhone SE, etc.)
   ============================================ */

@media (max-width: 375px) {
    .hero-logo {
        max-width: min(100%, 260px);
        width: auto;
        max-height: 110px;
        object-fit: contain;
    }

    .hero-title {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 0.9rem;
    }

    .stat-icon-img {
        width: 45px;
        height: 45px;
    }

    .stat-title {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .feature-card {
        padding: 24px 18px;
    }

    .offer-card {
        padding: 24px 18px;
    }

    .btn-cta {
        padding: 14px 28px;
        font-size: 0.95rem;
    }
}

/* ============================================
   ACCESSIBILITY & TOUCH IMPROVEMENTS
   ============================================ */

/* Amélioration des zones tactiles pour mobile */
@media (hover: none) and (pointer: coarse) {
    .btn-cta,
    .footer-links a {
        min-height: 48px;
        min-width: 48px;
    }

    /* Espacement accru pour les liens tactiles */
    .footer-links a {
        padding: 12px 16px;
    }
}

/* Optimisation pour dark mode système */
@media (prefers-color-scheme: dark) {
    /* Le site reste en mode clair pour garder l'identité de marque */
    /* Mais on peut ajuster légèrement le contraste si nécessaire */
}

/* Optimisation pour reduced motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }

    .hero-logo {
        opacity: 1;
        animation: none;
    }
}

/* ============================================
   LANDSCAPE MOBILE OPTIMIZATION
   ============================================ */

@media (max-width: 896px) and (orientation: landscape) {
    .hero {
        padding: 30px 20px 25px;
    }

    .hero-logo {
        max-width: min(50%, 200px);
        width: auto;
        max-height: 90px;
        margin-bottom: 16px;
        object-fit: contain;
    }

    .hero-title {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

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

    .stats-section,
    .features-section,
    .about-section,
    .mission-section,
    .offer-section,
    .commitment-section,
    .cta-section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }
}

/* ============================================
   PRINT OPTIMIZATION
   ============================================ */

@media print {
    .hero-logo {
        max-width: 200px;
    }

    .btn-cta {
        border: 2px solid #000;
    }

    .company-footer {
        border-top: 2px solid #000;
    }

    .scroll-reveal {
        opacity: 1;
        transform: none;
    }
}
/*
