/* ========================================
   CAFORMAC — Design System & Global Styles
   Consolidated & cleaned
   ======================================== */

/* 0. Reset
   ======================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { font-family: 'Inter', system-ui, -apple-system, sans-serif; font-weight: 400; font-size: 16px; line-height: 1.7; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
input, select, textarea { font: inherit; }
h1, h2, h3, h4, h5, h6 { font-weight: 400; }

/* 1. CSS Variables
   ======================================== */
:root {
  --green: #0B6F5A;
  --green-deep: #0A5F4D;
  --green-line: #2E8F7A;
  --yellow: #E2FF00;
  --text: #111827;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --white: #FFFFFF;
  --r: 16px;
  --r-one: 22px;
}

/* 2. Typography (base)
   ======================================== */
h1 { font-size: 56px; font-weight: 300; line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: 36px; font-weight: 400; line-height: 1.15; letter-spacing: -0.01em; }
h3 { font-size: 22px; font-weight: 600; line-height: 1.25; }
p  { font-size: 16px; font-weight: 400; line-height: 1.7; }

/* 3. Layout / Grid
   ======================================== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section--gray { background: var(--gray-50); }

/* 4. Navigation
   ======================================== */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: var(--white); border-bottom: 1px solid var(--gray-200); transition: box-shadow .3s; }
.nav--scrolled { box-shadow: 0 2px 12px rgba(17,24,39,.06); }
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.nav__logo { display: flex; align-items: center; gap: 10px; }
.nav__logo img { height: 60px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 32px; }
.nav__link { font-size: 15px; font-weight: 500; color: var(--text); opacity: .8; transition: opacity .2s; }
.nav__link:hover, .nav__link--active { opacity: 1; }
.nav__cta { display: inline-flex; align-items: center; padding: 10px 22px; font-size: 14px; font-weight: 600; color: var(--white); background: var(--green); border-radius: 8px; transition: background .2s; }
.nav__cta:hover { background: var(--green-deep); }
.nav__hamburger { display: none; width: 28px; height: 20px; position: relative; flex-direction: column; justify-content: space-between; }
.nav__hamburger span { display: block; width: 100%; height: 2px; background: var(--text); border-radius: 2px; transition: all .3s; }

/* 5. Hero & Buttons
   ======================================== */
.hero { position: relative; min-height: 85vh; display: flex; align-items: center; margin-top: 72px; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.hero__bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,30,24,.72) 0%, rgba(10,30,24,.45) 100%); }
.hero__content { position: relative; z-index: 2; max-width: 680px; padding: 80px 0; }
.hero h1 { color: var(--white); margin-bottom: 24px; }
.hero__micro { font-size: 14px; font-weight: 400; color: rgba(255,255,255,.7); margin-top: 20px; }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 28px; font-size: 15px; font-weight: 600; border-radius: 8px; transition: all .2s; }
.btn--primary { color: var(--white); background-color: var(--green); padding: 18px; font-size: 16px; border: none; cursor: pointer; transition: all 0.3s ease; }
.btn--primary:hover { background-color: var(--green-deep); box-shadow: 0 8px 20px rgba(11, 111, 90, 0.3); }

.section__title { margin-bottom: 20px; }
.section__subtitle { font-size: 18px; color: var(--text); opacity: .7; max-width: 640px; line-height: 1.7; }
.section__subtitle--center { margin: 0 auto; }
.citation { margin-top: 32px; font-size: 18px; font-style: italic; color: var(--text); opacity: .7; line-height: 1.7; text-align: center; }
.citation__mark { color: var(--yellow); font-size: 28px; font-style: normal; font-weight: 700; line-height: 1; }

/* 6. Constat-ROI Section (index.html)
   ======================================== */
.constat-roi-section { background: #F8FAFC; padding: 100px 0; }
.constat-content { max-width: 800px; margin-bottom: 70px; }
.constat-roi-section .section__title { color: #0F172A !important; font-weight: 300 !important; }
.constat-roi-section .section__subtitle { color: #475569 !important; font-size: 18px; line-height: 1.8; }
.constat__stat { display: flex; align-items: center; gap: 24px; margin-top: 40px; }
.constat__number { font-family: 'Inter', sans-serif !important; font-size: 110px; font-weight: 300 !important; color: var(--green-deep) !important; line-height: 0.9; letter-spacing: -0.04em; }
.constat__label { font-size: 17px; font-weight: 700; color: #1E293B; line-height: 1.5; }
.constat-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; margin-bottom: 70px; }
.constat-stat-box { position: relative; background: var(--green-deep); border-radius: 16px; padding: 60px 40px; text-align: center; color: var(--white); overflow: hidden; aspect-ratio: 1; display: flex; flex-direction: column; align-items: center; justify-content: center; }
.constat-stat-box::before { content: ''; position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.03); top: -100px; left: -80px; pointer-events: none; }
.constat-stat-box::after { content: ''; position: absolute; width: 200px; height: 200px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02); bottom: -60px; right: -40px; pointer-events: none; }
.constat-stat-box__number { display: block; font-size: 100px; font-weight: 200; color: var(--yellow); line-height: 1; margin-bottom: 16px; letter-spacing: -0.04em; position: relative; z-index: 2; }
.constat-stat-box__label { display: block; font-size: 17px; font-weight: 500; line-height: 1.6; position: relative; z-index: 2; }
.roi-box { background-color: #FFFFFF; border-radius: 16px; padding: 45px 55px; display: flex; align-items: center; justify-content: space-between; gap: 40px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); border-left: 12px solid var(--yellow); transition: transform 0.3s ease, box-shadow 0.3s ease; }
.roi-box:hover { transform: translateY(-5px); box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.2); }
.roi-box__text h3 { font-family: 'Inter', sans-serif !important; font-size: 26px !important; font-weight: 800 !important; color: #0F172A !important; margin-bottom: 12px; }
.roi-box__text p { font-size: 16px; color: #475569; margin: 0; line-height: 1.6; }
.roi-box__action { flex-shrink: 0; }
.roi-box__action .btn { background-color: var(--green-deep); padding: 18px 32px; font-size: 16px; border-radius: 8px; box-shadow: 0 10px 20px rgba(10, 95, 77, 0.2); }

/* 7. FMP Teaser (index.html)
   ======================================== */
.section-fmp { position: relative; background-color: #ffffff; padding: 100px 0; overflow: hidden; z-index: 1; }
.section-fmp::before { content: ""; position: absolute; top: 50%; left: -5%; transform: translateY(-50%); width: 600px; height: 600px; background-color: rgba(20, 107, 83, 0.08); border-radius: 50%; z-index: -1; }
.section-fmp::after { content: ""; position: absolute; top: 0%; bottom: 0%; right: -5%; width: 750px; border-radius: 80px; background-image: repeating-linear-gradient( -45deg, rgba(0, 0, 0, 0.03) 0px, rgba(0, 0, 0, 0.03) 2px, transparent 2px, transparent 10px ); z-index: -1; }
.fmp-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 0 auto 40px auto; max-width: 800px; }
.fmp-card { padding: 40px 32px; background: var(--white); border: none; border-radius: var(--r); box-shadow: 0 15px 35px rgba(0, 0, 0, 0.05); transition: all 0.3s ease; }
.fmp-card:hover { transform: translateY(-6px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08); }
.fmp-card__letter { font-size: 48px; font-weight: 200; color: var(--green); letter-spacing: -0.02em; display: inline-flex; align-items: center; justify-content: center; width: 80px; height: 80px; background-color: rgba(20, 107, 83, 0.08); border-radius: 50%; margin-bottom: 24px; }
.fmp-card__title { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
.fmp-card__text { font-size: 15px; color: var(--text); opacity: .7; line-height: 1.6; }

/* 8. Domain Cards (index.html)
   ======================================== */
.domains-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.domain-card { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.08); display: flex; flex-direction: column; border-bottom: 4px solid #1a4d32; transition: transform 0.3s ease; }
.domain-card:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12); }
.domain-card__img-wrapper { overflow: hidden; border-bottom-right-radius: 70px; }
.domain-card__img { width: 100%; height: 200px; object-fit: cover; display: block; }
.domain-card__body { padding: 20px; flex-grow: 1; }
.domain-card__title { font-size: 1.35rem; font-weight: 700; margin-bottom: 10px; color: #000; }
.domain-card__text { color: #666; font-size: 0.95rem; }
.domain-card__footer { display: flex; align-items: center; padding-left: 20px; height: 60px; }
.domain-card__bar-container { flex-grow: 1; height: 6px; background: #f0f0f0; border-radius: 3px; margin-right: 15px; }
.domain-card__bar-fill { width: 40%; height: 100%; background: #1a4d32; border-radius: 3px; }

/* 9. Impact Cards (index.html)
   ======================================== */
.impact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; max-width: 1200px; margin: 0 auto; }
.impact-card { background-color: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08); transition: all 0.3s ease; display: flex; flex-direction: column; height: 100%; border: none !important; }
.impact-card:hover { transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.impact-card__header { background-color: var(--green) !important; padding: 40px 32px; border-radius: 0 0 80px 0; display: flex; align-items: center; justify-content: center; text-align: center; min-height: 150px; }
.impact-card__title { color: var(--white) !important; font-size: 22px; font-weight: 700; line-height: 1.3; margin: 0; }
.impact-card__body { padding: 32px; flex-grow: 1; background-color: var(--white); }
.impact-card__text { font-size: 16px; color: var(--text); opacity: 0.8; line-height: 1.6; margin: 0; }
.impact-card__bar { height: 8px; background-color: var(--yellow); width: 100%; }

/* 10. Green Stats Section (index.html)
   ======================================== */
.stats-section { background-color: var(--green); padding: 80px 0; position: relative; overflow: hidden; }
.stats-section::before { content: ""; position: absolute; top: -20%; left: -5%; width: 500px; height: 500px; background-color: rgba(255, 255, 255, 0.04); border-radius: 50%; z-index: 1; }
.stats-section::after { content: ""; position: absolute; bottom: -20%; right: -5%; width: 800px; height: 800px; background-image: repeating-linear-gradient( -45deg, rgba(255, 255, 255, 0.03) 0px, rgba(255, 255, 255, 0.03) 2px, transparent 2px, transparent 10px ); border-radius: 50%; z-index: 1; }
.stat-item { padding: 60px 40px; text-align: center; border-right: 1px solid rgba(255, 255, 255, 0.15); border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
.stat-item:nth-child(3n) { border-right: none; }
.stat-item:nth-child(n+4) { border-bottom: none; }
.stat-num { font-size: 64px; font-weight: 300; line-height: 1; margin-bottom: 16px; color: var(--white); }
.stat-text { font-size: 15px; font-weight: 400; opacity: 0.9; color: var(--white); }

/* 11. Green Stats Block (methode.html)
   ======================================== */
.stats-block { position: relative; background: var(--green-deep); padding: 80px 0; overflow: hidden; color: var(--white); }
.stats-block::before { content: ''; position: absolute; width: 500px; height: 500px; border-radius: 50%; border: 1px solid rgba(255,255,255,.07); background: rgba(255,255,255,.03); top: -180px; left: -120px; pointer-events: none; }
.stats-block::after { content: ''; position: absolute; width: 380px; height: 380px; border-radius: 50%; border: 1px solid rgba(255,255,255,.06); background: rgba(255,255,255,.02); bottom: -100px; right: 10%; pointer-events: none; }

/* Shared stats grid (stats-section + stats-block) */
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; z-index: 2; }
.stats-grid__item { padding: 32px 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.12); }
.stats-grid__item:last-child, .stats-grid__item:nth-child(3n) { border-right: none; }
.stats-grid__number { font-size: 60px; font-weight: 200; letter-spacing: -0.02em; line-height: 1; margin-bottom: 8px; color: var(--white); }
.stats-grid__label { font-size: 14px; font-weight: 400; line-height: 1.5; color: rgba(255,255,255,.8); }

/* 12. Format Cards (methode.html + diagnostic.html)
   ======================================== */
.formats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; margin-bottom: 32px; }
.format-card { padding: 40px 32px; background: var(--white); border-radius: var(--r); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06); border-top: 4px solid var(--green); transition: all 0.3s ease; }
.format-card:hover { background-color: var(--green) !important; transform: translateY(-8px); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15); }
.format-card__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; color: var(--text); transition: color 0.3s ease; }
.format-card:hover .format-card__title { color: var(--yellow) !important; }
.format-card__text { transition: color 0.3s ease; }
.format-card:hover .format-card__text { color: var(--white) !important; }

/* 13. Facts List (qui.html)
   ======================================== */
.facts-list { margin-top: 32px; }
.facts-list__item { display: flex; gap: 16px; padding: 16px 0; border-bottom: 1px solid var(--gray-200); font-size: 16px; }
.facts-list__item:last-child { border-bottom: none; }
.facts-list__label { font-weight: 600; color: var(--green); min-width: 120px; font-size: 14px; text-transform: uppercase; letter-spacing: .04em; }

/* 14. CTA Block
   ======================================== */
.cta-block { position: relative; background-color: var(--green); color: var(--white); padding: 80px 20px; border-radius: 24px; margin: 60px auto; overflow: hidden; z-index: 1; text-align: center; }
.cta-block::before { content: ""; position: absolute; top: 50%; left: -5%; transform: translateY(-50%); width: 600px; height: 600px; background-color: rgba(255, 255, 255, 0.06); border-radius: 50%; z-index: -1; }
.cta-block::after { content: ""; position: absolute; top: 0%; bottom: 0%; right: -5%; width: 750px; border-radius: 80px; background-image: repeating-linear-gradient( -45deg, rgba(255, 255, 255, 0.04) 0px, rgba(255, 255, 255, 0.04) 2px, transparent 2px, transparent 10px ); z-index: -1; }
.cta-block h2 { color: var(--white) !important; margin-bottom: 24px !important; }
.cta-block .btn { background-color: var(--white) !important; color: var(--green) !important; font-weight: 700; border: none; }
.cta-block .btn:hover { background-color: #f2f2f2 !important; }
.cta-block .section__subtitle { color: var(--white) !important; opacity: 0.9 !important; margin-bottom: 40px !important; }
.cta-block .citation { color: var(--white) !important; opacity: 0.9 !important; margin-top: 50px !important; }

/* 15. About Section (qui.html)
   ======================================== */
.about-section { padding: 80px 0; padding-bottom: 20px !important; background-color: var(--white); }
.about-header { margin-bottom: 40px; }
.about-header h2 { font-size: 20px; font-weight: 600; color: var(--text); margin-bottom: 8px; }
.about-header h1 { font-size: 48px; font-weight: 700; color: var(--text); position: relative; display: inline-block; line-height: 1.1; }
.about-header h1::after { content: ''; position: absolute; bottom: -12px; left: 0; width: 80px; height: 4px; background-color: var(--green-line); }
.about-grid { display: grid; grid-template-columns: 4fr 7fr; gap: 40px; align-items: start; margin-bottom: 20px; }
.about-photo { width: 100%; height: 340px; object-fit: cover; border-radius: 16px; display: block; box-shadow: 0 15px 35px rgba(0,0,0,0.06); }
.about-caption { margin-top: 16px; font-size: 15px; font-weight: 700; color: var(--text); text-align: center; }
.about-illustration { width: 100%; height: 380px; object-fit: cover; border-radius: 16px; display: block; box-shadow: 0 15px 35px rgba(0,0,0,0.06); }

/* 16. Presentation Image (qui.html)
   ======================================== */
.presentation-image-section { padding-top: 0 !important; padding-bottom: 80px; margin-top: 80px; background-color: var(--white); }
.presentation-img { width: 100%; height: auto; display: block; margin: 0 auto; }

/* 17. Diagnostic Hero Full
   ======================================== */
.diag-hero-full { position: relative; width: 100%; height: 60vh; display: flex; align-items: center; overflow: hidden; margin-bottom: 60px; }
.hero-image-container { position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 1; }
.hero-full-img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-overlay { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.4); }
.hero-content { position: relative; z-index: 2; color: #ffffff; text-align: center; }
.hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.hero-content .section__subtitle { color: rgba(255,255,255,0.9); max-width: 800px; margin: 0 auto; }

/* 18. Form Card & Grid (diagnostic.html)
   ======================================== */
.form-section { max-width: 600px; margin: 0 auto; background: var(--white); padding: 40px; border-radius: 15px; box-shadow: 0 10px 40px rgba(0,0,0,0.05); }
.form-card { background: var(--white); border-radius: 16px; box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08); padding: 50px; max-width: 800px; margin: 0 auto; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.full-width { grid-column: span 2; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 14px; font-weight: 600; color: #374151; margin-bottom: 8px; }
.form-group input { width: 100%; padding: 16px; font-size: 16px; color: #111827; background-color: #F9FAFB; border: 1px solid #D1D5DB; border-radius: 8px; transition: all 0.3s ease; font-family: inherit; }
.form-group input:focus { outline: none; border-color: var(--green); background-color: #FFFFFF; box-shadow: 0 0 0 3px rgba(18, 107, 89, 0.15); }
.form-group input::placeholder { color: #9CA3AF; font-weight: 300; }
.btn--full { width: 100%; padding: 18px; font-size: 16px; font-weight: 600; text-align: center; border-radius: 8px; margin-top: 24px; background-color: var(--green); color: var(--white); border: none; cursor: pointer; transition: all 0.3s ease; }
.btn--full:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
.form-note { text-align: center; margin-top: 16px; font-size: 14px; color: #6B7280; }
.form-error { display: none; font-size: 12px; color: #e74c3c; margin-top: 5px; }

/* 19. Premium WhatsApp Block (diagnostic.html)
   ======================================== */
.premium-wa-block { max-width: 650px; margin: 60px auto 100px; text-align: center; padding: 45px 40px; background: #FFFFFF; border-radius: 24px; box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04); border: 1px solid #F1F5F9; }
.premium-wa__proof { font-family: 'Inter', sans-serif !important; font-size: 19px; font-weight: 700; color: #0F172A; margin-bottom: 12px; letter-spacing: -0.01em; }
.premium-wa__note { font-size: 15px; color: #64748B; margin-bottom: 35px; line-height: 1.6; }
.btn-wa-premium { display: inline-flex; align-items: center; justify-content: center; gap: 12px; width: 100%; background-color: #25D366; color: #FFFFFF !important; font-size: 17px; font-weight: 600; padding: 20px 40px; border-radius: 12px; text-decoration: none; transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 10px 25px rgba(37, 211, 102, 0.25); }
.btn-wa-premium:hover { background-color: #1DA851; transform: translateY(-4px); box-shadow: 0 15px 35px rgba(37, 211, 102, 0.35); }
.wa-icon { width: 26px; height: 26px; fill: #FFFFFF; }

/* 20. Footer
   ======================================== */
.footer { background-color: #0f172a; color: #ffffff; padding: 50px 0 20px; }
.footer__grid { display: flex; flex-wrap: wrap; gap: 40px; justify-content: flex-start; margin-bottom: 30px; }
.footer__brand { flex: 1; min-width: 280px; text-align: left; }
.footer__logo { height: 50px; width: auto; margin-bottom: 20px; }
.footer__expertise { font-size: 0.95rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 20px; line-height: 1.5; }
.footer__socials { display: flex; gap: 15px; }
.footer__socials a svg { width: 24px; height: 24px; fill: #ffffff; transition: fill 0.3s ease; }
.footer__socials a:hover svg { fill: #22c55e; }
.footer__contact { flex: 1; min-width: 200px; }
.footer__contact-title { margin-bottom: 15px; font-size: 1.1rem; }
.footer__contact p { font-size: 0.9rem; color: rgba(255, 255, 255, 0.8); margin-bottom: 10px; }
.footer__contact a { color: inherit; text-decoration: none; }
.footer__bottom { border-top: 1px solid rgba(255, 255, 255, 0.1); padding-top: 20px; font-size: 0.8rem; color: rgba(255, 255, 255, 0.5); text-align: center; }

/* 21. Utilities (reveal, WhatsApp float)
   ======================================== */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.whatsapp-float { position: fixed; bottom: 24px; right: 24px; z-index: 999; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(37,211,102,.35); transition: transform .2s, box-shadow .2s; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 20px rgba(37,211,102,.45); }
.whatsapp-float svg { width: 28px; height: 28px; fill: var(--white); }

/* 22. Typography Overrides (light weight system)
   ======================================== */
h1, h2,
.section__title,
.about-header h1,
.about-header h2 {
  font-family: 'Inter', sans-serif !important;
  font-weight: 300 !important;
  letter-spacing: -0.02em !important;
}
h3,
.fmp-card__title,
.domain-card__title,
.impact-card__title,
.format-card__title {
  font-family: 'Inter', sans-serif !important;
  font-weight: 400 !important;
  letter-spacing: -0.01em !important;
  font-size: 20px !important;
}

/* 23. Responsive
   ======================================== */
@media (max-width: 1024px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid__item:nth-child(2n) { border-right: none; }
}

@media (max-width: 992px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo, .about-illustration { height: 300px; }
}

@media (max-width: 768px) {
  h1 { font-size: 34px; }
  h2 { font-size: 26px; }

  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
    background: var(--white); flex-direction: column; align-items: center;
    justify-content: flex-start; padding-top: 48px; gap: 24px;
    transform: translateX(100%); transition: transform .3s ease;
  }
  .nav__links.open { transform: translateX(0); }

  .fmp-grid,
  .domains-grid,
  .impact-grid,
  .formats-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr; }
  .stats-grid__item { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,.12); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); padding: 40px 20px; }
  .stat-item:last-child { border-bottom: none; }
  .stat-num { font-size: 48px; }

  .constat-layout { grid-template-columns: 1fr; }
  .constat-stat-box { aspect-ratio: auto; padding: 50px 30px; }
  .constat-stat-box__number { font-size: 80px; }
  .roi-box { flex-direction: column; text-align: left; padding: 35px 24px; border-left: none; border-top: 12px solid var(--yellow); }
  .roi-box__action { width: 100%; }
  .roi-box__action .btn { width: 100%; justify-content: center; }

  .diag-hero-full { height: 50vh; }

  .form-grid { grid-template-columns: 1fr; }
  .full-width { grid-column: span 1; }

  .premium-wa-block { padding: 35px 24px; margin: 40px 20px 80px; }

  .fmp-card__title,
  .domain-card__title,
  .impact-card__title,
  .format-card__title { font-size: 18px !important; }
}
