
/*
Theme Name: OMIBAT Elementor Theme
Theme URI: https://omibat.fr/
Author: OpenAI
Description: Thème WordPress léger basé sur vos maquettes HTML OMIBAT, prêt à être utilisé avec Elementor.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: omibat-elementor
*/

    /* ============ RESET & BASE ============ */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue: #2563eb; --blue-dark: #1d4ed8; --blue-light: #dbeafe;
      --orange: #f97316; --orange-dark: #ea6c0a; --orange-light: #fff7ed;
      --white: #ffffff;
      --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb;
      --gray-300: #d1d5db; --gray-400: #9ca3af; --gray-500: #6b7280;
      --gray-600: #4b5563; --gray-700: #374151; --gray-800: #1f2937; --gray-900: #111827;
      --green: #16a34a; --green-light: #dcfce7;
      --font-body: 'Inter', sans-serif;
      --font-heading: 'Plus Jakarta Sans', sans-serif;
      --shadow: 0 4px 6px -1px rgb(0 0 0/0.1), 0 2px 4px -2px rgb(0 0 0/0.1);
      --shadow-md: 0 10px 15px -3px rgb(0 0 0/0.1), 0 4px 6px -4px rgb(0 0 0/0.1);
      --shadow-lg: 0 20px 25px -5px rgb(0 0 0/0.1), 0 8px 10px -6px rgb(0 0 0/0.1);
      --shadow-xl: 0 25px 50px -12px rgb(0 0 0/0.25);
      --radius: 0.75rem; --radius-lg: 1rem; --radius-xl: 1.5rem;
      --transition: all 0.3s ease;
    }
    html { scroll-behavior: smooth; font-size: 16px; }
    body { font-family: var(--font-body); color: var(--gray-700); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    img { max-width: 100%; height: auto; display: block; }
    a { color: inherit; text-decoration: none; transition: var(--transition); }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    input, textarea, select { font-family: inherit; }

    /* ============ LAYOUT ============ */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }
    section { padding: 5rem 0; }

    /* ============ TYPOGRAPHY ============ */
    h1,h2,h3,h4,h5,h6 { font-family: var(--font-heading); color: var(--gray-900); line-height: 1.2; font-weight: 700; }
    .section-label {
      display: inline-block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--blue); background: var(--blue-light);
      padding: 0.3rem 0.8rem; border-radius: 999px; margin-bottom: 1rem;
    }
    .section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1.25rem; line-height: 1.25; }
    .section-header { text-align: center; max-width: 700px; margin: 0 auto 3.5rem; }
    .section-header p { color: var(--gray-500); font-size: 1.05rem; line-height: 1.75; }
    .text-orange { color: var(--orange); }
    .text-gradient-blue {
      background: linear-gradient(135deg, #2563eb, #7c3aed);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    /* ============ BUTTONS ============ */
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.7rem 1.5rem; border-radius: 0.6rem;
      font-weight: 600; font-size: 0.95rem; transition: var(--transition);
      cursor: pointer; white-space: nowrap; font-family: var(--font-body);
    }
    .btn-primary { background: var(--orange); color: var(--white); box-shadow: 0 4px 14px rgba(249,115,22,0.4); }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(249,115,22,0.5); }
    .btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.3); }
    .btn-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.6); }
    .btn-blue { background: var(--blue); color: var(--white); }
    .btn-blue:hover { background: var(--blue-dark); transform: translateY(-1px); }
    .btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }

    /* ============ NAVBAR ============ */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      padding: 1.2rem 0; transition: var(--transition);
    }
    .navbar.scrolled, .navbar.scrolled-always {
      background: rgba(255,255,255,0.97); backdrop-filter: blur(10px);
      box-shadow: 0 1px 0 var(--gray-200); padding: 0.8rem 0;
    }
    /* On page load the navbar is not scrolled — becomes solid after 50px scroll */
    .navbar { background: rgba(255,255,255,0.97); backdrop-filter: blur(10px); box-shadow: 0 1px 0 var(--gray-200); padding: 0.8rem 0; }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
    .nav-logo { display: flex; align-items: center; }
    .logo-text { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 800; }
    .logo-text .omi { color: var(--blue); }
    .logo-text .bat { color: var(--orange); }
    .nav-menu { display: flex; align-items: center; gap: 0.25rem; }
    .nav-link { padding: 0.5rem 0.9rem; border-radius: 0.5rem; font-weight: 500; font-size: 0.9rem; color: var(--gray-700); }
    .nav-link:hover { color: var(--blue); background: var(--blue-light); }
    /* Active link: orange bottom border, no background (as per custom CSS) */
    .nav-link.active { border-bottom: 2px solid #ff7a00; background: transparent !important; color: var(--gray-700); }
    .nav-overlay { display: none; }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.5rem; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: var(--transition); }
    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      .nav-menu {
        position: fixed; top: 0; right: -100%; bottom: 0; width: 280px;
        background: var(--white); flex-direction: column; align-items: flex-start;
        padding: 5rem 2rem 2rem; gap: 0.5rem; box-shadow: var(--shadow-xl);
        transition: right 0.3s ease; z-index: 999;
      }
      .nav-menu.open { right: 0; }
      .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
      .nav-overlay.active { opacity: 1; pointer-events: all; }
      .nav-link { color: var(--gray-700) !important; width: 100%; border-bottom: none !important; }
      .nav-link.active { border-bottom: 2px solid #ff7a00 !important; }
      .nav-cta { width: 100%; }
      .nav-cta .btn { width: 100%; justify-content: center; }
    }

    /* ============ HERO ============ */
    .hero {
      min-height: 100vh;
      background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #1e40af 100%);
      display: flex; align-items: center; position: relative; overflow: hidden; padding-top: 5rem;
    }
    .hero-grid {
      position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
    }
    .hero-shapes { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
    .hero-shape { position: absolute; border-radius: 50%; filter: blur(80px); opacity: 0.15; }
    .hero-shape-1 { width: 500px; height: 500px; background: var(--blue); top: -100px; right: -100px; }
    .hero-shape-2 { width: 300px; height: 300px; background: var(--orange); bottom: 100px; left: -50px; }
    .hero-shape-3 { width: 200px; height: 200px; background: #7c3aed; top: 50%; left: 40%; }
    .hero .container {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
      padding-top: 2rem; padding-bottom: 4rem;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 0.5rem;
      background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
      color: rgba(255,255,255,0.9); padding: 0.4rem 1rem; border-radius: 999px;
      font-size: 0.82rem; font-weight: 500; margin-bottom: 1.5rem;
    }
    .hero-badge-dot { width: 6px; height: 6px; background: #22c55e; border-radius: 50%; animation: pulse 2s infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.6;transform:scale(1.3)} }
    .hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); color: white; line-height: 1.15; margin-bottom: 1.5rem; }
    .hero-content h1 .highlight { color: var(--orange); }
    .hero-description { color: rgba(255,255,255,0.75); font-size: 1.1rem; line-height: 1.8; margin-bottom: 2.5rem; }
    .hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }
    .hero-stats { display: flex; gap: 2rem; flex-wrap: wrap; }
    .hero-stat-number { font-family: var(--font-heading); font-size: 2rem; font-weight: 800; color: var(--orange); }
    .hero-stat-label { font-size: 0.8rem; color: rgba(255,255,255,0.6); line-height: 1.4; }

    /* Hero visual */
    .hero-visual { position: relative; }
    .hero-mockup { position: relative; }
    .hero-card {
      background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
      border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-xl);
      padding: 1.5rem; color: white;
    }
    .hero-card-header { display: flex; align-items: center; gap: 1rem; margin-bottom: 1.5rem; }
    .hero-card-icon { font-size: 2rem; }
    .hero-card-title { font-weight: 700; font-size: 0.95rem; }
    .hero-card-subtitle { font-size: 0.78rem; color: rgba(255,255,255,0.6); margin-top: 0.2rem; }
    .hero-metric { display: flex; justify-content: space-between; align-items: center; padding: 0.7rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
    .hero-metric:last-child { border-bottom: none; }
    .hero-metric-label { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
    .hero-metric-value { font-weight: 700; font-size: 0.95rem; }
    .hero-metric-value.green { color: #4ade80; }
    /* card-1 hidden via custom CSS */
    .hero-floating-card.card-1 { display: none !important; }
    .hero-floating-card {
      position: absolute; background: white; border-radius: var(--radius);
      padding: 0.75rem 1rem; box-shadow: var(--shadow-lg); min-width: 180px;
    }
    .hero-floating-card.card-2 { top: -1rem; right: -1.5rem; }
    .floating-card-row { display: flex; align-items: center; gap: 0.75rem; }
    .floating-card-icon { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.75rem; flex-shrink: 0; }
    .floating-card-icon.green { background: var(--green-light); }
    .floating-card-icon.orange { background: var(--orange-light); }
    .floating-card-text { font-size: 0.82rem; font-weight: 600; color: var(--gray-800); }
    .floating-card-sub { font-size: 0.72rem; color: var(--gray-500); margin-top: 0.1rem; }
    @media (max-width: 900px) { .hero .container { grid-template-columns: 1fr; } .hero-visual { display: none; } }

    /* ============ TRUST BAR ============ */
    .trust-bar { background: var(--gray-50); border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); padding: 1.25rem 0; }
    .trust-bar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 2rem; }
    .trust-item { display: flex; align-items: center; gap: 0.6rem; font-size: 0.88rem; font-weight: 600; color: var(--gray-600); }
    .trust-icon { width: 16px; height: 16px; color: var(--blue); }

    /* ============ POUR QUI ============ */
    .pour-qui { background: var(--gray-50); }
    .pour-qui-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; margin-top: 3rem; }
    .pour-qui-card { background: white; border-radius: var(--radius-lg); padding: 1.75rem; border: 1px solid var(--gray-100); transition: var(--transition); }
    .pour-qui-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
    .pour-qui-icon { font-size: 2rem; margin-bottom: 0.75rem; }
    .pour-qui-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
    .pour-qui-card p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.65; }

    /* ============ SERVICES ============ */
    .services { background: var(--white); }
    /* 2-column grid as per custom CSS */
    .services-grid {
      display: grid !important;
      grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
      gap: 2rem !important;
      align-items: stretch !important;
    }
    .services-grid .service-card { width: 100% !important; margin: 0 !important; }
    @media (max-width: 768px) { .services-grid { grid-template-columns: 1fr !important; } }
    .service-card {
      background: var(--white); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg);
      padding: 2rem; transition: var(--transition); position: relative; overflow: hidden;
    }
    .service-card::before {
      content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
      background: linear-gradient(90deg, var(--blue), var(--orange)); opacity: 0; transition: var(--transition);
    }
    .service-card:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .service-card:hover::before { opacity: 1; }
    .service-icon { font-size: 2.5rem; margin-bottom: 1.25rem; }
    .service-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
    .service-card p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.7; margin-bottom: 1.25rem; }
    .service-features { display: flex; flex-direction: column; gap: 0.4rem; }
    .service-feature { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; color: var(--gray-600); }
    /* SVG hidden as per custom CSS */
    .services .service-feature svg, .service-feature svg { display: none !important; }

    /* ============ DIFFÉRENCIATION ============ */
    .differenciation { background: var(--gray-50); }
    .diff-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .diff-intro { font-size: 1rem; color: var(--gray-600); line-height: 1.75; margin-bottom: 1.25rem; }
    .diff-points { display: flex; flex-direction: column; gap: 1.25rem; margin-top: 1.5rem; }
    .diff-point { display: flex; gap: 1rem; align-items: flex-start; }
    .diff-point-icon { font-size: 1.25rem; flex-shrink: 0; margin-top: 0.1rem; }
    .diff-point h4 { font-size: 0.95rem; margin-bottom: 0.3rem; }
    .diff-point p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.6; }
    .diff-comparison { display: flex; flex-direction: column; gap: 1rem; }
    .diff-card { border-radius: var(--radius-lg); padding: 1.5rem; }
    .diff-card-bad { background: #fff5f5; border: 1px solid #fecaca; }
    .diff-card-good { background: #f0fdf4; border: 1px solid #bbf7d0; }
    .diff-card-header { display: flex; align-items: center; gap: 0.5rem; font-weight: 700; font-size: 0.95rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid rgba(0,0,0,0.06); }
    .diff-card-header.bad { color: #dc2626; }
    .diff-card-header.good { color: var(--green); }
    .diff-card ul { display: flex; flex-direction: column; gap: 0.5rem; }
    .diff-card li { font-size: 0.88rem; color: var(--gray-600); }
    @media (max-width: 768px) { .diff-grid { grid-template-columns: 1fr; } }

    /* ============ PROCESS ============ */
    .process { background: white; }
    .three-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
    @media (max-width: 768px) { .three-steps { grid-template-columns: 1fr; } }
    .process-step { text-align: center; padding: 2rem 1.5rem; }
    .process-step-number {
      width: 56px; height: 56px; background: linear-gradient(135deg, var(--blue), #7c3aed);
      color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-family: var(--font-heading); font-size: 1.25rem; font-weight: 800; margin: 0 auto 1.25rem;
    }
    .process-step h3 { font-size: 1rem; margin-bottom: 0.5rem; }
    .process-step p { color: var(--gray-500); font-size: 0.88rem; line-height: 1.6; }

    /* ============ PRICING PREVIEW ============ */
    .pricing-preview { background: var(--gray-50); }
    .pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; align-items: start; }
    .pricing-card { border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl); padding: 2rem; position: relative; transition: var(--transition); background: white; }
    .pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .pricing-card.featured { border-color: var(--orange); box-shadow: 0 0 0 4px rgba(249,115,22,0.08), var(--shadow-lg); transform: scale(1.02); }
    .pricing-card.featured:hover { transform: scale(1.02) translateY(-3px); }
    .pricing-badge { position: absolute; top: -0.75rem; left: 50%; transform: translateX(-50%); background: var(--orange); color: white; font-size: 0.75rem; font-weight: 700; padding: 0.3rem 1rem; border-radius: 999px; white-space: nowrap; }
    .pricing-header { margin-bottom: 1.5rem; padding-bottom: 1.5rem; border-bottom: 1px solid var(--gray-100); }
    .pricing-name { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 800; color: var(--gray-900); margin-bottom: 0.4rem; }
    .pricing-tagline { font-size: 0.85rem; color: var(--gray-500); margin-bottom: 1.25rem; }
    .pricing-from { font-size: 0.78rem; color: var(--gray-500); display: block; }
    .pricing-amount-row { display: flex; align-items: flex-end; gap: 0.2rem; margin-top: 0.25rem; }
    .pricing-currency { font-size: 1.25rem; font-weight: 700; color: var(--gray-900); padding-bottom: 0.3rem; }
    .pricing-amount { font-family: var(--font-heading); font-size: 3rem; font-weight: 800; color: var(--gray-900); line-height: 1; }
    .pricing-period { font-size: 0.9rem; color: var(--gray-500); padding-bottom: 0.4rem; }
    .pricing-features { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1.5rem; }
    .pricing-feature { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; color: var(--gray-600); line-height: 1.5; }
    /* SVG hidden in pricing cards too */
    .pricing-feature svg, .pricing-card svg { display: none !important; }

    /* ============ TESTIMONIALS ============ */
    .testimonials { background: var(--gray-50); }
    .testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }
    .testimonial-card { background: white; border-radius: var(--radius-lg); padding: 2rem; box-shadow: var(--shadow); border: 1px solid var(--gray-100); }
    .testimonial-stars { color: #f59e0b; font-size: 1rem; letter-spacing: 2px; margin-bottom: 1rem; }
    .testimonial-text { color: var(--gray-600); font-size: 0.92rem; line-height: 1.75; margin-bottom: 1.5rem; font-style: italic; }
    .testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
    .testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--blue), var(--orange)); display: flex; align-items: center; justify-content: center; color: white; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
    .testimonial-name { font-weight: 600; font-size: 0.9rem; }
    .testimonial-role { font-size: 0.8rem; color: var(--gray-500); }

    /* ============ FAQ ============ */
    .faq { background: var(--gray-50); }
    .faq-grid { display: grid; grid-template-columns: 1fr 2fr; gap: 4rem; align-items: start; }
    @media (max-width: 768px) { .faq-grid { grid-template-columns: 1fr; } }
    .faq-cta-box { background: var(--blue-light); border-radius: var(--radius-lg); padding: 1.5rem; margin-top: 2rem; }
    .faq-cta-box h4 { font-size: 1rem; margin-bottom: 0.4rem; }
    .faq-cta-box p { color: var(--gray-500); font-size: 0.88rem; margin-bottom: 1rem; }
    .faq-list { display: flex; flex-direction: column; gap: 0.75rem; }
    .faq-item { background: white; border-radius: var(--radius); border: 1px solid var(--gray-200); overflow: hidden; }
    .faq-question { width: 100%; text-align: left; padding: 1.25rem 1.5rem; font-weight: 600; font-size: 0.95rem; color: var(--gray-800); display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; }
    .faq-question:hover { background: var(--gray-50); }
    .faq-icon { font-size: 1.25rem; color: var(--blue); transition: var(--transition); flex-shrink: 0; }
    .faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }
    .faq-answer { display: none; }
    .faq-answer.open { display: block; }
    .faq-answer-inner { padding: 0 1.5rem 1.25rem; font-size: 0.9rem; color: var(--gray-500); line-height: 1.75; }

    /* ============ CTA SECTION ============ */
    .cta-section { background: linear-gradient(135deg, #1e40af, #0f172a); padding: 5rem 0; position: relative; overflow: hidden; }
    .cta-section::before { content: ''; position: absolute; inset: 0; background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px); background-size: 60px 60px; }
    .cta-content { position: relative; z-index: 1; text-align: center; max-width: 680px; margin: 0 auto; }
    .cta-content h2 { color: white; font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 1rem; }
    .cta-content p { color: rgba(255,255,255,0.75); font-size: 1rem; line-height: 1.75; margin-bottom: 2rem; }
    .cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .cta-reassurance { display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
    .cta-reassurance span { display: flex; align-items: center; gap: 0.4rem; font-size: 0.83rem; color: rgba(255,255,255,0.7); }
    .cta-reassurance svg { color: #4ade80; }

    /* ============ SEO BLOCK ============ */
    .seo-block { background: var(--gray-50); padding: 4rem 0; }
    .seo-content { max-width: 860px; margin: 0 auto; }
    .seo-content h2 { font-size: 1.5rem; margin-bottom: 1.25rem; }
    .seo-content h3 { font-size: 1.1rem; margin: 1.5rem 0 0.75rem; }
    .seo-content p { color: var(--gray-500); font-size: 0.92rem; line-height: 1.8; margin-bottom: 1rem; }
    .seo-content ul { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; list-style: disc; padding-left: 1.5rem; }
    .seo-content li { color: var(--gray-500); font-size: 0.9rem; }
    .seo-content a { color: var(--blue); text-decoration: underline; }

    /* ============ FOOTER ============ */
    .footer { background: var(--gray-900); color: var(--gray-400); padding: 4rem 0 2rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand .logo-text { font-size: 1.5rem; margin-bottom: 1rem; display: block; }
    .footer-brand p { font-size: 0.85rem; line-height: 1.7; max-width: 260px; }
    .footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
    .footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,0.06); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gray-400); transition: var(--transition); }
    .footer-social a:hover { background: var(--blue); color: white; }
    .footer-col h4 { color: white; font-size: 0.9rem; margin-bottom: 1rem; }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
    .footer-col li a { font-size: 0.85rem; color: var(--gray-400); }
    .footer-col li a:hover { color: white; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 1.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; font-size: 0.82rem; }
    .footer-bottom-links { display: flex; gap: 1.5rem; }
    .footer-bottom-links a { color: var(--gray-400); }
    .footer-bottom-links a:hover { color: white; }
    @media (max-width: 600px) { .footer-bottom { flex-direction: column; text-align: center; } }

    /* ============ REVEAL ANIMATIONS ============ */
    .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
  

/* OFFERS PAGE STYLES */

    /* ===== RESET & BASE ===== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --blue: #2563eb; --blue-dark: #1d4ed8; --blue-light: #dbeafe; --blue-xlight: #eff6ff;
      --orange: #f97316; --orange-dark: #ea6c0a; --orange-light: #fff7ed;
      --white: #ffffff;
      --gray-50: #f9fafb; --gray-100: #f3f4f6; --gray-200: #e5e7eb;
      --gray-400: #9ca3af; --gray-500: #6b7280; --gray-600: #4b5563;
      --gray-700: #374151; --gray-800: #1f2937; --gray-900: #111827;
      --green: #16a34a; --green-light: #dcfce7;
      --font-body: 'Inter', sans-serif;
      --font-heading: 'Plus Jakarta Sans', sans-serif;
      --radius: 0.75rem; --radius-lg: 1rem; --radius-xl: 1.5rem;
      --shadow: 0 4px 6px -1px rgb(0 0 0/0.07), 0 2px 4px -2px rgb(0 0 0/0.05);
      --shadow-md: 0 10px 15px -3px rgb(0 0 0/0.08), 0 4px 6px -4px rgb(0 0 0/0.05);
      --shadow-lg: 0 20px 40px -8px rgb(0 0 0/0.13);
      --shadow-xl: 0 25px 50px -12px rgb(0 0 0/0.22);
    }
    html { scroll-behavior: smooth; }
    body { font-family: var(--font-body); color: var(--gray-700); background: var(--white); line-height: 1.6; -webkit-font-smoothing: antialiased; }
    a { color: inherit; text-decoration: none; transition: all 0.25s ease; }
    ul { list-style: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }

    .container { max-width: 1140px; margin: 0 auto; padding: 0 1.5rem; }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex; align-items: center; gap: 0.5rem;
      padding: 0.8rem 1.75rem; border-radius: 0.6rem;
      font-weight: 700; font-size: 0.93rem; transition: all 0.25s ease;
      cursor: pointer; white-space: nowrap; font-family: var(--font-body); letter-spacing: -0.01em;
    }
    .btn-primary { background: var(--orange); color: #fff; box-shadow: 0 4px 14px rgba(249,115,22,0.4); }
    .btn-primary:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(249,115,22,0.5); }
    .btn-blue { background: var(--blue); color: #fff; box-shadow: 0 4px 14px rgba(37,99,235,0.25); }
    .btn-blue:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 22px rgba(37,99,235,0.35); }
    .btn-ghost-dark { background: transparent; color: var(--gray-600); border: 1.5px solid var(--gray-300); }
    .btn-ghost-dark:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-xlight); }
    .btn-lg { padding: 1rem 2rem; font-size: 1rem; }
    .btn-full { width: 100%; justify-content: center; }

    /* ===== NAVBAR ===== */
    .navbar {
      position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
      background: rgba(255,255,255,0.96); backdrop-filter: blur(12px);
      border-bottom: 1px solid var(--gray-200); padding: 0.75rem 0;
    }
    .navbar .container { display: flex; align-items: center; justify-content: space-between; }
    .logo-text { font-family: var(--font-heading); font-size: 1.45rem; font-weight: 900; letter-spacing: -0.03em; }
    .logo-text .omi { color: var(--blue); }
    .logo-text .bat { color: var(--orange); }
    .nav-menu { display: flex; align-items: center; gap: 0.2rem; }
    .nav-link { padding: 0.45rem 0.85rem; border-radius: 0.5rem; font-weight: 500; font-size: 0.88rem; color: var(--gray-600); }
    .nav-link:hover, .nav-link.active { color: var(--blue); background: var(--blue-xlight); }
    .nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 0.4rem; }
    .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gray-700); border-radius: 2px; transition: all 0.25s; }
    .nav-overlay { display: none; }
    @media (max-width: 768px) {
      .nav-toggle { display: flex; }
      .nav-menu {
        position: fixed; top: 0; right: -100%; bottom: 0; width: 280px;
        background: #fff; flex-direction: column; align-items: flex-start;
        padding: 5rem 1.5rem 2rem; gap: 0.25rem;
        box-shadow: var(--shadow-xl); transition: right 0.3s ease; z-index: 999;
      }
      .nav-menu.open { right: 0; }
      .nav-overlay { display: block; position: fixed; inset: 0; background: rgba(0,0,0,0.45); z-index: 998; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
      .nav-overlay.active { opacity: 1; pointer-events: all; }
      .nav-link { width: 100%; }
      .nav-cta { width: 100%; margin-top: 0.5rem; }
      .nav-cta .btn { width: 100%; justify-content: center; }
    }

    /* ===== PAGE HEADER (petit, sobre) ===== */
    .page-header {
      background: linear-gradient(135deg, #0f172a 0%, #1e3a6e 60%, #1e40af 100%);
      padding: 5.5rem 0 3rem; text-align: center; position: relative; overflow: hidden;
    }
    .page-header::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .page-header-inner { position: relative; z-index: 1; max-width: 640px; margin: 0 auto; }
    .breadcrumb {
      display: flex; align-items: center; justify-content: center; gap: 0.5rem;
      font-size: 0.78rem; color: rgba(255,255,255,0.5); margin-bottom: 1rem;
    }
    .breadcrumb a { color: rgba(255,255,255,0.5); }
    .breadcrumb a:hover { color: rgba(255,255,255,0.85); }
    .page-header h1 {
      font-family: var(--font-heading); font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.85rem;
    }
    .page-header h1 span { color: var(--orange); }
    .page-header p { color: rgba(255,255,255,0.65); font-size: 0.98rem; line-height: 1.7; }
    .page-header-trust {
      display: flex; justify-content: center; flex-wrap: wrap; gap: 1.25rem; margin-top: 1.5rem;
    }
    .header-trust-item {
      display: flex; align-items: center; gap: 0.4rem;
      font-size: 0.78rem; color: rgba(255,255,255,0.55); font-weight: 500;
    }
    .header-trust-item svg { width: 12px; height: 12px; color: #4ade80; }

    /* ===== SECTION HELPER ===== */
    .section-label {
      display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
      text-transform: uppercase; color: var(--blue); background: var(--blue-xlight);
      padding: 0.28rem 0.8rem; border-radius: 999px; margin-bottom: 0.75rem;
    }
    .section-header { text-align: center; max-width: 620px; margin: 0 auto 3rem; }
    .section-title { font-family: var(--font-heading); font-size: clamp(1.5rem, 2.8vw, 2rem); font-weight: 800; color: var(--gray-900); letter-spacing: -0.025em; line-height: 1.2; margin-bottom: 0.75rem; }
    .section-sub { color: var(--gray-500); font-size: 0.95rem; line-height: 1.7; }
    .text-orange { color: var(--orange); }

    /* ===== REVEAL ===== */
    .reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.5s ease, transform 0.5s ease; }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .d1 { transition-delay: 0.07s; } .d2 { transition-delay: 0.14s; } .d3 { transition-delay: 0.21s; } .d4 { transition-delay: 0.28s; }

    /* ============================================================
       SECTION 1 — OFFRES (au top de page)
    ============================================================ */
    .pricing { padding: 4rem 0 5rem; background: var(--gray-50); }

    .pricing-intro-bar {
      display: flex; align-items: center; justify-content: center;
      background: white; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
      padding: 1rem 1.5rem; gap: 2.5rem; flex-wrap: wrap;
      margin-bottom: 2.5rem; box-shadow: var(--shadow);
    }
    .intro-bar-item { display: flex; align-items: center; gap: 0.5rem; font-size: 0.85rem; font-weight: 600; color: var(--gray-700); }
    .intro-bar-item svg { width: 16px; height: 16px; color: var(--green); }

    .pricing-grid {
      display: grid;
      grid-template-columns: 1fr 1.07fr 1fr;
      gap: 1.25rem; align-items: start;
    }
    @media (max-width: 960px) { .pricing-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; } }

    .pricing-card {
      background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-xl);
      padding: 1.75rem; position: relative; transition: all 0.25s ease;
    }
    .pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
    .pricing-card.featured {
      border: 2px solid var(--orange);
      box-shadow: 0 0 0 5px rgba(249,115,22,0.06), var(--shadow-lg);
      transform: scale(1.025);
    }
    .pricing-card.featured:hover { transform: scale(1.025) translateY(-3px); }

    .pricing-badge {
      position: absolute; top: -0.85rem; left: 50%; transform: translateX(-50%);
      background: linear-gradient(135deg, var(--orange), #f59e0b);
      color: #fff; font-size: 0.7rem; font-weight: 800; padding: 0.27rem 1rem;
      border-radius: 999px; white-space: nowrap; letter-spacing: 0.03em;
      box-shadow: 0 4px 12px rgba(249,115,22,0.4);
    }

    /* Prix */
    .plan-price-block { margin-bottom: 1.1rem; padding-bottom: 1.1rem; border-bottom: 1px solid var(--gray-100); }
    .plan-name { font-family: var(--font-heading); font-size: 1.1rem; font-weight: 800; color: var(--gray-900); margin-bottom: 0.2rem; }
    .plan-tagline { font-size: 0.8rem; color: var(--gray-500); line-height: 1.5; margin-bottom: 1rem; }
    .plan-price-from { font-size: 0.68rem; color: var(--gray-400); text-transform: uppercase; letter-spacing: 0.06em; display: block; }
    .plan-price-row { display: flex; align-items: flex-end; gap: 0.1rem; margin-top: 0.15rem; }
    .plan-price-currency { font-size: 1.15rem; font-weight: 700; color: var(--gray-700); padding-bottom: 0.35rem; }
    .plan-price-amount {
      font-family: var(--font-heading); font-size: 3.2rem; font-weight: 900;
      color: var(--gray-900); line-height: 1; letter-spacing: -0.05em;
    }
    .featured .plan-price-amount { color: var(--orange); }
    .plan-price-period { font-size: 0.85rem; color: var(--gray-400); padding-bottom: 0.4rem; }
    .plan-no-engage {
      display: inline-flex; align-items: center; gap: 0.3rem;
      font-size: 0.7rem; color: var(--green); font-weight: 600; margin-top: 0.4rem;
    }
    .plan-no-engage svg { width: 11px; height: 11px; }

    /* Cible */
    .plan-for {
      background: var(--gray-50); border-radius: 0.45rem; padding: 0.65rem 0.85rem;
      font-size: 0.81rem; color: var(--gray-600); line-height: 1.55; margin-bottom: 1.1rem;
    }
    .featured .plan-for { background: #fff7ed; }

    /* Features */
    .plan-features { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.1rem; }
    .plan-feature { display: flex; align-items: flex-start; gap: 0.5rem; font-size: 0.83rem; color: var(--gray-600); line-height: 1.5; }
    .plan-feature svg { flex-shrink: 0; margin-top: 0.18rem; width: 14px; height: 14px; }
    .chk-blue { color: var(--blue); } .chk-orange { color: var(--orange); }

    /* Résultat */
    .plan-result {
      background: linear-gradient(135deg, var(--blue-xlight), #fff7ed);
      border-radius: 0.45rem; padding: 0.7rem 0.85rem;
      font-size: 0.8rem; color: var(--gray-600); line-height: 1.6; margin-bottom: 1.1rem;
    }
    .featured .plan-result { background: linear-gradient(135deg, #fff7ed, #fef9c3); }
    .plan-result strong { color: var(--gray-800); }

    /* CTA bouton carte */
    .plan-cta {
      width: 100%; display: flex; align-items: center; justify-content: center; gap: 0.45rem;
      padding: 0.8rem 1.25rem; border-radius: 0.55rem;
      font-weight: 700; font-size: 0.88rem; transition: all 0.25s; cursor: pointer; font-family: var(--font-body);
    }

    .pricing-footer-notes { max-width: 700px; margin: 2.25rem auto 0; display: flex; flex-direction: column; gap: 0.75rem; }
    .pricing-note-box {
      background: #fff; border: 1.5px solid var(--gray-200); border-radius: var(--radius-lg);
      padding: 1rem 1.25rem; font-size: 0.86rem; color: var(--gray-600); line-height: 1.7; text-align: center;
    }
    .link-orange { color: var(--orange); font-weight: 700; text-decoration: underline; }

    /* ============================================================
       SECTION 2 — PREUVE / STATS
    ============================================================ */
    .proof { padding: 5rem 0; background: #fff; }

    .proof-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; margin-bottom: 3.5rem; }
    @media (max-width: 700px) { .proof-stats { grid-template-columns: 1fr 1fr; } }
    .proof-stat {
      background: var(--gray-50); border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg);
      padding: 1.5rem 1.25rem; text-align: center; transition: all 0.25s;
    }
    .proof-stat:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
    .proof-stat-num {
      font-family: var(--font-heading); font-size: 2rem; font-weight: 900;
      line-height: 1; margin-bottom: 0.35rem; letter-spacing: -0.04em;
    }
    .blue { color: var(--blue); } .orange { color: var(--orange); } .green-col { color: var(--green); }
    .proof-stat-label { font-size: 0.8rem; color: var(--gray-500); line-height: 1.45; }

    .proof-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-bottom: 3rem; }
    @media (max-width: 768px) { .proof-cards { grid-template-columns: 1fr; } }
    .proof-card {
      border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg); padding: 1.5rem;
      transition: all 0.25s;
    }
    .proof-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--blue-light); }
    .proof-icon { font-size: 1.6rem; margin-bottom: 0.75rem; }
    .proof-result-num { font-family: var(--font-heading); font-size: 1.75rem; font-weight: 900; letter-spacing: -0.04em; margin-bottom: 0.2rem; }
    .proof-card h3 { font-size: 0.92rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.4rem; }
    .proof-card p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; }

    /* ============================================================
       SECTION 3 — TÉMOIGNAGES
    ============================================================ */
    .testimonials { padding: 0 0 5rem; background: #fff; }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
    @media (max-width: 768px) { .testi-grid { grid-template-columns: 1fr; } }
    .testi-card {
      background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-lg);
      padding: 1.5rem;
    }
    .testi-stars { color: #f59e0b; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 0.75rem; }
    .testi-text { font-size: 0.86rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
    .testi-author { display: flex; align-items: center; gap: 0.6rem; }
    .testi-avatar {
      width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
      background: linear-gradient(135deg, var(--blue), var(--orange));
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-weight: 800; font-size: 0.75rem;
    }
    .testi-name { font-weight: 700; font-size: 0.83rem; color: var(--gray-800); }
    .testi-role { font-size: 0.73rem; color: var(--gray-400); }

    /* ============================================================
       SECTION 4 — RÉASSURANCE
    ============================================================ */
    .reassurance { padding: 4rem 0; background: var(--gray-50); }
    .reassurance-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
    @media (max-width: 900px) { .reassurance-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 500px) { .reassurance-grid { grid-template-columns: 1fr; } }
    .reassurance-item {
      background: #fff; border: 1.5px solid var(--gray-100); border-radius: var(--radius-lg);
      padding: 1.5rem 1.25rem; text-align: center; transition: all 0.25s;
    }
    .reassurance-item:hover { border-color: var(--blue-light); box-shadow: var(--shadow-md); }
    .reassurance-icon { font-size: 1.75rem; margin-bottom: 0.75rem; }
    .reassurance-item h3 { font-size: 0.92rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.4rem; }
    .reassurance-item p { font-size: 0.82rem; color: var(--gray-500); line-height: 1.65; }

    /* ============================================================
       SECTION 5 — CTA FINAL
    ============================================================ */
    .cta-final {
      padding: 5rem 0;
      background: linear-gradient(145deg, #0a1628 0%, #0f2444 45%, #1a3a6e 80%, #1e40af 100%);
      position: relative; overflow: hidden;
    }
    .cta-final::before {
      content: ''; position: absolute; inset: 0;
      background-image: linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
      background-size: 50px 50px;
    }
    .cta-final::after {
      content: ''; position: absolute; bottom: -120px; right: -80px;
      width: 380px; height: 380px; border-radius: 50%;
      background: radial-gradient(circle, rgba(249,115,22,0.1), transparent 70%);
      pointer-events: none;
    }
    .cta-final-inner { position: relative; z-index: 1; text-align: center; max-width: 620px; margin: 0 auto; }
    .cta-final h2 {
      font-family: var(--font-heading); font-size: clamp(1.7rem, 3.5vw, 2.4rem);
      font-weight: 900; color: #fff; letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 0.9rem;
    }
    .cta-final h2 .accent { color: var(--orange); }
    .cta-final p { color: rgba(255,255,255,0.68); font-size: 0.97rem; line-height: 1.75; margin-bottom: 2rem; }
    .cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
    .cta-reassure { display: flex; justify-content: center; flex-wrap: wrap; gap: 1.5rem; }
    .cta-reassure-item { display: flex; align-items: center; gap: 0.38rem; font-size: 0.78rem; color: rgba(255,255,255,0.55); }
    .cta-reassure-item svg { width: 12px; height: 12px; color: #4ade80; }

    /* ===== FOOTER ===== */
    .footer { background: var(--gray-900); color: var(--gray-500); padding: 4rem 0 2rem; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
    @media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
    @media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
    .footer-brand-logo { display: block; margin-bottom: 0.75rem; }
    .footer-brand p { font-size: 0.82rem; line-height: 1.7; max-width: 230px; }
    .footer-col h4 { color: #fff; font-size: 0.83rem; font-weight: 700; margin-bottom: 0.9rem; }
    .footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
    .footer-col li a { font-size: 0.82rem; color: var(--gray-500); }
    .footer-col li a:hover { color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.07); padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: 1rem; font-size: 0.78rem;
    }
    .footer-links { display: flex; gap: 1.5rem; }
    .footer-links a { color: var(--gray-500); }
    .footer-links a:hover { color: #fff; }
    @media (max-width: 540px) { .footer-bottom { flex-direction: column; text-align: center; } }
  

/* EXTRA STYLES */

/* About + Contact shared */
.page-header{background:linear-gradient(135deg,#0f172a 0%,#1e3a6e 60%,#1e40af 100%);padding:7rem 0 3.5rem;text-align:center;position:relative;overflow:hidden}
.page-header::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:50px 50px}
.page-header-content,.page-header-inner{position:relative;z-index:1;max-width:900px;margin:0 auto}
.page-header h1{font-family:var(--font-heading);font-size:clamp(2rem,4vw,3rem);font-weight:800;color:#fff;letter-spacing:-.03em;line-height:1.15;margin-bottom:1rem}
.page-header p{color:rgba(255,255,255,.72);font-size:1rem;line-height:1.8}
.breadcrumb{display:flex;align-items:center;justify-content:center;gap:.5rem;font-size:.8rem;color:rgba(255,255,255,.6);margin-bottom:1rem}
.breadcrumb a{color:rgba(255,255,255,.75)}
.about-story{padding:5rem 0;background:#fff}
.about-story-grid,.about-diff-grid,.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:3rem;align-items:start}
.about-image-card,.about-mission-card,.contact-form-wrapper,.contact-info{border-radius:1.25rem}
.about-image-card{background:linear-gradient(135deg,#f8fafc,#eff6ff);border:1px solid var(--gray-200);padding:2rem;box-shadow:var(--shadow)}
.about-quote blockquote{font-family:var(--font-heading);font-size:1.25rem;line-height:1.6;color:var(--gray-800);margin:0 0 1rem}
.about-quote cite{font-style:normal;font-weight:700;color:var(--orange)}
.about-values-section{padding:5rem 0;background:var(--gray-50)}
.values-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}
.value-card{background:#fff;border:1px solid var(--gray-200);border-radius:1rem;padding:1.75rem;box-shadow:var(--shadow);transition:var(--transition)}
.value-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md)}
.value-icon{font-size:2rem;margin-bottom:.9rem}.value-card h3{font-size:1rem;margin-bottom:.5rem}.value-card p{font-size:.9rem;color:var(--gray-500);line-height:1.7}
.about-difference{padding:5rem 0;background:#fff}
.about-diff-list{display:flex;flex-direction:column;gap:1.25rem}.about-diff-item{display:flex;gap:1rem;align-items:flex-start}
.about-diff-number{width:48px;height:48px;border-radius:999px;background:var(--blue-light);color:var(--blue);display:flex;align-items:center;justify-content:center;font-weight:800;font-family:var(--font-heading);flex-shrink:0}
.about-diff-item h4{font-size:1rem;margin-bottom:.35rem}.about-diff-item p{color:var(--gray-500);font-size:.9rem;line-height:1.7}
.about-mission-card{background:linear-gradient(145deg,#0a1628 0%,#0f2444 45%,#1a3a6e 80%,#1e40af 100%);padding:2rem;color:#fff;box-shadow:var(--shadow-lg)}
.about-mission-card h3{color:#fff;font-size:1.2rem;margin-bottom:.75rem}.mission-text{color:rgba(255,255,255,.8);line-height:1.8}
.mission-stats{display:grid;grid-template-columns:repeat(3,1fr);gap:1rem;margin-top:1.5rem}.mission-stat{background:rgba(255,255,255,.08);border:1px solid rgba(255,255,255,.1);border-radius:.9rem;padding:1rem;text-align:center}
.mission-stat-value{font-size:1.5rem;font-family:var(--font-heading);font-weight:800;color:var(--orange)}.mission-stat-label{font-size:.78rem;color:rgba(255,255,255,.72)}
.contact{padding:5rem 0;background:var(--gray-50)}
.contact-info,.contact-form-wrapper{background:#fff;border:1px solid var(--gray-200);padding:2rem;box-shadow:var(--shadow)}
.contact-benefit-list{display:flex;flex-direction:column;gap:1rem}.contact-benefit{display:flex;gap:.9rem;align-items:flex-start}.contact-benefit-icon{font-size:1.4rem;line-height:1}
.contact-benefit strong{display:block;color:var(--gray-900);margin-bottom:.15rem}.contact-benefit p{font-size:.9rem;color:var(--gray-500);line-height:1.6}
.contact-methods{display:flex;flex-direction:column;gap:.8rem}.contact-method{display:flex;gap:.8rem;align-items:center}.contact-method-icon{width:42px;height:42px;border-radius:999px;display:flex;align-items:center;justify-content:center;font-size:1rem;flex-shrink:0}.contact-method-icon.blue{background:var(--blue-light)}.contact-method-icon.orange{background:var(--orange-light)}
.contact-method-text .label{font-size:.8rem;color:var(--gray-500)}.contact-method-text .value{font-weight:600;color:var(--gray-800)}
.contact-trust{display:grid;grid-template-columns:repeat(2,1fr);gap:.75rem}.contact-trust-item{background:var(--gray-50);border:1px solid var(--gray-200);padding:.8rem 1rem;border-radius:.75rem;font-size:.85rem;font-weight:600;color:var(--gray-700)}
.contact-form-title{font-size:1.4rem;margin-bottom:.35rem}.contact-form-subtitle{color:var(--gray-500);font-size:.95rem;line-height:1.7;margin-bottom:1rem}
.form-grid{display:grid;grid-template-columns:1fr 1fr;gap:1rem}.form-group{display:flex;flex-direction:column;gap:.45rem}.form-group.full-width{grid-column:1/-1}
.form-group label{font-size:.88rem;font-weight:600;color:var(--gray-700)}
.form-group input,.form-group textarea,.form-group select{width:100%;border:1px solid var(--gray-300);border-radius:.8rem;padding:.9rem 1rem;font-size:.95rem;color:var(--gray-800);background:#fff}
.form-group textarea{min-height:160px;resize:vertical}.form-group input:focus,.form-group textarea:focus,.form-group select:focus{outline:none;border-color:var(--blue);box-shadow:0 0 0 4px rgba(37,99,235,.12)}
.form-note{font-size:.82rem;color:var(--gray-500);margin-top:1rem;line-height:1.6;text-align:center}
.reassurance-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:1.25rem}.reassurance-item{background:#fff;border:1px solid var(--gray-200);border-radius:1rem;padding:1.5rem;box-shadow:var(--shadow)}
.reassurance-icon{font-size:1.8rem;margin-bottom:.75rem}.reassurance-item h3{font-size:1rem;margin-bottom:.35rem}.reassurance-item p{font-size:.88rem;color:var(--gray-500);line-height:1.7}
.cta-section{background:linear-gradient(135deg,#1e40af,#0f172a);padding:5rem 0;position:relative;overflow:hidden}.cta-section::before{content:'';position:absolute;inset:0;background-image:linear-gradient(rgba(255,255,255,.03) 1px,transparent 1px),linear-gradient(90deg,rgba(255,255,255,.03) 1px,transparent 1px);background-size:60px 60px}
.cta-content{position:relative;z-index:1;text-align:center;max-width:760px;margin:0 auto}.cta-content h2{color:#fff;font-size:clamp(1.8rem,3vw,2.4rem);margin-bottom:1rem}.cta-content p{color:rgba(255,255,255,.75);line-height:1.8}.cta-buttons{display:flex;justify-content:center;gap:1rem;flex-wrap:wrap;margin-top:1.5rem}
@media (max-width: 980px){.values-grid,.reassurance-grid{grid-template-columns:repeat(2,1fr)}.about-story-grid,.about-diff-grid,.contact-grid{grid-template-columns:1fr}}
@media (max-width: 768px){.form-grid,.contact-trust,.mission-stats{grid-template-columns:1fr}.values-grid,.reassurance-grid{grid-template-columns:1fr}.page-header{padding-top:6rem}.contact-info,.contact-form-wrapper,.about-image-card,.about-mission-card{padding:1.5rem}}
