/* ============================================================
   OPTIMYS — Bundle CSS combiné (design-system + header-fix + inter)
   Fusion pour réduire les requêtes bloquant le rendu.
   ============================================================ */

/* ============================================================
   OPTIMYS — Design System v5 — Mobile First
   ============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  padding-top: 88px;
  background: var(--navy-900);
  color: var(--text-primary);
  font-family: var(--font);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange-400); text-decoration: none; transition: color .2s; }
a:hover { color: var(--orange-300); }
p { color: var(--text-secondary); line-height: 1.75; }

/* ── VARIABLES ── */
:root {
  /* Couleurs */
  --navy-950:  #060D1A;
  --navy-900:  #0A1628;
  --navy-800:  #0D1E38;
  --navy-700:  #112448;
  --navy-card: #0F1D35;
  --navy-card-hover: #132340;
  --orange-600: #E8650A;
  --orange-500: #F07020;
  --orange-400: #F5893A;
  --orange-300: #FAAC6A;
  --orange-dim:  rgba(240,112,32,0.10);
  --text-primary:   #F0F4FC;
  --text-secondary: #8A9BBE;
  --text-muted:     #4A587A;
  --border:        rgba(255,255,255,0.07);
  --border-orange: rgba(240,112,32,0.30);
  --border-light:  rgba(255,255,255,0.12);
  --shadow-elevate: 0 24px 64px rgba(0,0,0,.5);

  /* Espacements — deux noms pour compatibilité */
  --s1: .25rem;  --space-xs:  .25rem;
  --s2: .5rem;   --space-sm:  .5rem;
  --s3: .75rem;
  --s4: 1rem;    --space-md:  1rem;
  --s5: 1.5rem;  --space-lg:  1.5rem;
  --s6: 2rem;    --space-xl:  2rem;
  --s7: 3rem;    --space-2xl: 3rem;
  --s8: 4rem;    --space-3xl: 4rem;
  --s9: 6rem;    --space-4xl: 6rem;

  /* Typo */
  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --text-xs:   .75rem;
  --text-sm:   .875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-7xl:  4.5rem;

  /* Radius — deux noms */
  --r-sm: 6px;   --radius-sm:  6px;
  --r-md: 10px;  --radius-md:  10px;
  --r-lg: 16px;  --radius-lg:  16px;
  --r-xl: 24px;  --radius-xl:  24px;
  --r-full: 9999px; --radius-full: 9999px;

  /* Transitions */
  --t: .22s ease;
  --t-slow: .4s cubic-bezier(.16,1,.3,1);
  --t-base: .22s ease;
}

/* ── TYPO ── */
h1,h2,h3,h4,h5 {
  font-family: var(--font); color: var(--text-primary);
  font-weight: 800; line-height: 1.15; letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.875rem); }
h4 { font-size: 1.125rem; font-weight: 700; }
h5 { font-size: .875rem; font-weight: 700; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .7rem; font-weight: 700; letter-spacing: .14em;
  text-transform: uppercase; color: var(--orange-400);
  margin-bottom: var(--s4);
}
.eyebrow::before {
  content: ''; display: block; width: 16px; height: 2px;
  background: var(--orange-500); border-radius: 2px; flex-shrink: 0;
}

/* ── LAYOUT ── */
.container {
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 var(--s4);
}
@media (min-width:640px)  { .container { padding: 0 var(--s5); } }
@media (min-width:1024px) { .container { padding: 0 var(--s6); } }
.container--narrow { max-width: 760px; }

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--text-secondary);
  font-size: var(--text-sm);
  text-decoration: none;
  transition: color .2s;
}
.back-link:hover { color: var(--orange-400); }
.back-link-top { margin-bottom: var(--space-lg); }
.back-link-bottom { padding: var(--space-2xl) 0; text-align: center; }
.back-link-bottom .back-link { justify-content: center; }

#back-to-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--orange-500);
  color: #fff;
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,.35);
  opacity: 0;
  pointer-events: none;
  transform: translateZ(0) translateY(10px);
  -webkit-transform: translateZ(0) translateY(10px);
  transition: opacity .25s, transform .25s, background .2s;
  z-index: 9500;
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateZ(0) translateY(0); -webkit-transform: translateZ(0) translateY(0); }
#back-to-top:hover { background: var(--orange-400); }
@media (max-width: 640px) {
  #back-to-top { bottom: 16px; right: 16px; width: 42px; height: 42px; font-size: 18px; }
  #cookie-banner.visible ~ #back-to-top { opacity: 0 !important; pointer-events: none !important; }
}

section { padding: var(--s8) 0; position: relative; overflow: hidden; }

/* Grilles CSS natives — mobile first */
.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--s5); }
@media (min-width:768px)  { .grid-2 { grid-template-columns: repeat(2,1fr); } }

.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--s5); }
@media (min-width:640px)  { .grid-3 { grid-template-columns: repeat(2,1fr); } }
@media (min-width:1024px) { .grid-3 { grid-template-columns: repeat(3,1fr); } }

.grid-4 { display: grid; grid-template-columns: repeat(2,1fr); gap: var(--s4); }
@media (min-width:1024px) { .grid-4 { grid-template-columns: repeat(4,1fr); } }

/* Utilitaires */
.flex        { display: flex; }
.flex-wrap   { flex-wrap: wrap; }
.flex-col    { flex-direction: column; }
.items-center{ align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.w-full      { width: 100%; }
.gap-sm  { gap: var(--s2); }
.gap-md  { gap: var(--s4); }
.gap-lg  { gap: var(--s5); }
.gap-xl  { gap: var(--s6); }
.mt-sm   { margin-top: var(--s2); }
.mt-md   { margin-top: var(--s4); }
.mt-lg   { margin-top: var(--s5); }
.mt-xl   { margin-top: var(--s6); }
.mt-2xl  { margin-top: var(--s7); }
.mb-md   { margin-bottom: var(--s4); }
.mb-lg   { margin-bottom: var(--s5); }
.mb-xl   { margin-bottom: var(--s6); }
.sr-only { position:absolute; width:1px; height:1px; overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; }

/* ── BOUTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: var(--s2);
  padding: .75rem 1.5rem; border-radius: var(--r-md);
  font-family: var(--font); font-size: .875rem; font-weight: 600;
  letter-spacing: .02em; cursor: pointer; border: none;
  transition: all var(--t); text-decoration: none;
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: linear-gradient(135deg,var(--orange-500),var(--orange-600));
  color: #fff; box-shadow: 0 2px 12px rgba(240,112,32,.35);
}
.btn-primary:hover { color:#fff; transform:translateY(-2px); box-shadow:0 6px 24px rgba(240,112,32,.5); }
.btn-secondary {
  background: transparent; color: var(--text-primary);
  border: 1px solid var(--border-light);
}
.btn-secondary:hover { border-color:var(--orange-500); color:var(--orange-400); background:var(--orange-dim); }
.btn-ghost { background:transparent; color:var(--orange-400); padding-left:0; padding-right:0; }
.btn-ghost:hover { color:var(--orange-300); }
.btn-lg  { padding: .9rem 2rem; font-size: 1rem; border-radius: var(--r-lg); }
.btn-sm  { padding: .5rem 1rem; font-size: .75rem; }

/* ── CARTES ── */
.card {
  background: var(--navy-card); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: var(--s5);
  transition: all var(--t-slow);
}
.card:hover { border-color:var(--border-orange); background:var(--navy-card-hover); transform:translateY(-3px); }

.card-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--orange-dim); border: 1px solid var(--border-orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0; margin-bottom: var(--s4);
}

.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 3px 12px; border-radius: var(--r-full);
  font-size: .7rem; font-weight: 600;
  background: var(--orange-dim); color: var(--orange-400);
  border: 1px solid var(--border-orange);
}

/* ── SERVICE TOOLS ── */
.service-tool-tag {
  font-size: .65rem; font-weight: 600; color: var(--text-muted);
  background: rgba(255,255,255,.04); border: 1px solid var(--border);
  border-radius: var(--r-sm); padding: 2px 7px;
}

/* ── FORMULAIRES ── */
.form-group { margin-bottom: var(--s5); }
.form-group label {
  display: block; font-size: .875rem; font-weight: 600;
  color: var(--text-secondary); margin-bottom: var(--s2);
}
.req { color: var(--orange-400); margin-left: 2px; }
input[type=text],input[type=email],input[type=tel],textarea,select {
  width: 100%; padding: .75rem 1rem;
  background: var(--navy-800); border: 1px solid var(--border);
  border-radius: var(--r-md); color: var(--text-primary);
  font-family: var(--font); font-size: .875rem;
  transition: border-color var(--t),box-shadow var(--t);
  appearance: none; outline: none;
}
input:focus,textarea:focus,select:focus {
  border-color: var(--orange-500);
  box-shadow: 0 0 0 3px rgba(240,112,32,.12);
}
textarea { resize: vertical; min-height: 120px; }
input::placeholder,textarea::placeholder { color: var(--text-muted); }
.checkbox-group { display:flex; gap:var(--s3); align-items:flex-start; }
.checkbox-group input[type=checkbox] {
  width:16px; height:16px; flex-shrink:0; margin-top:2px;
  accent-color:var(--orange-500); cursor:pointer;
}
.checkbox-group label { font-size:.875rem; color:var(--text-secondary); margin-bottom:0; cursor:pointer; }

/* ── NAVIGATION ── */
.navbar {
  position: fixed; top:0; left:0; right:0; z-index:1000;
  padding: .5rem 0; transition: all .3s ease;
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled {
  background: rgba(10,22,40,.96);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border); padding: .5rem 0;
}
.navbar-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: var(--s6);
}
.navbar-logo { display:flex; align-items:center; text-decoration:none; flex-shrink:0; }

/* ── LOGO ── */
.logo-img {
  height: 64px; width: auto; display: block;
  object-fit: contain; flex-shrink: 0; transition: height .3s ease;
}
.navbar.scrolled .logo-img { height: 64px; }
@media (max-width:768px) { .logo-img { height: 56px; } }
@media (max-width:480px) { .logo-img { height: 48px; } }

.nav-links {
  display: none; list-style: none;
  align-items: center; gap: var(--s5); flex:1; justify-content:center;
}
@media (min-width:1024px) { .nav-links { display: flex; } }
.nav-links a {
  font-size: .875rem; font-weight: 500;
  color: var(--text-secondary); transition: color var(--t);
}
.nav-links a:hover, .nav-links a.active { color: var(--orange-400); }

.nav-actions { display: none; }
@media (min-width:1024px) {
  .nav-actions { display:flex; align-items:center; gap:var(--s4); flex-shrink:0; }
}

.hamburger {
  display: flex; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 4px; background: none; border: none;
}
@media (min-width:1024px) { .hamburger { display: none; } }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text-primary); border-radius: 2px; transition: all var(--t);
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.nav-mobile {
  display: none; position:fixed; inset:0; background:var(--navy-900);
  z-index:99; padding:5rem var(--s5) var(--s5);
  flex-direction:column; overflow-y:auto;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1.5rem; font-weight: 700; color: var(--text-primary);
  padding: var(--s4) 0; border-bottom: 1px solid var(--border);
  transition: color var(--t);
}
.nav-mobile a:hover { color: var(--orange-400); }
.nav-mobile .mobile-cta { margin-top: var(--s6); }

/* ── SECTION HEADER ── */
.section-header { text-align:center; max-width:680px; margin:0 auto var(--s7); }
.section-header p { margin-top:var(--s4); font-size:1.125rem; }

/* ── FOOTER ── */
footer { background:var(--navy-950); border-top:1px solid var(--border); padding:var(--s7) 0 var(--s5); }
.footer-grid {
  display: grid; grid-template-columns: 1fr;
  gap: var(--s6); margin-bottom: var(--s7);
}
@media (min-width:640px)  { .footer-grid { grid-template-columns: repeat(2,1fr); gap:var(--s5); } }
@media (min-width:1024px) { .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; gap:var(--s7); } }
.footer-col h5 {
  font-size:.75rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:var(--text-primary); margin-bottom:var(--s4);
}
.footer-col ul { list-style:none; }
.footer-col li+li { margin-top:var(--s2); }
.footer-col a { font-size:.875rem; color:var(--text-secondary); transition:color var(--t); }
.footer-col a:hover { color:var(--orange-400); }
.footer-brand-desc { font-size:.875rem; color:var(--text-muted); margin-top:var(--s4); line-height:1.7; }
.footer-bottom {
  display:flex; flex-direction:column; gap:var(--s3);
  padding-top:var(--s5); border-top:1px solid var(--border);
}
@media (min-width:640px) {
  .footer-bottom { flex-direction:row; align-items:center; justify-content:space-between; }
}
.footer-bottom p,.footer-bottom a { font-size:.75rem; color:var(--text-muted); }
.footer-bottom a:hover { color:var(--orange-400); }
.footer-legal-links { display:flex; gap:var(--s4); flex-wrap:wrap; }

/* ── COOKIE ── */
#cookie-banner {
  position:fixed; bottom:var(--s4); left:var(--s4); right:var(--s4);
  background:var(--navy-card); border:1px solid var(--border-orange);
  border-radius:var(--r-xl); padding:var(--s4) var(--s5);
  z-index:9999; display:none;
  box-shadow:0 24px 64px rgba(0,0,0,.6);
}
@media (min-width:640px) {
  #cookie-banner {
    left:50%; right:auto; transform:translateX(-50%);
    width:min(860px,calc(100vw - 2rem));
  }
}
#cookie-banner.visible { display:block; }
.cookie-inner { display:flex; flex-direction:column; gap:var(--s3); }
@media (min-width:640px) { .cookie-inner { flex-direction:row; align-items:center; gap:var(--s5); } }
.cookie-text { flex:1; }
.cookie-text strong { color:var(--text-primary); font-size:.875rem; display:block; margin-bottom:3px; }
.cookie-text p { font-size:.75rem; margin:0; }
.cookie-text p a { text-decoration: underline; }
.cookie-actions { display:flex; gap:var(--s2); flex-shrink:0; flex-wrap:wrap; }
@media (max-width:639px) { .cookie-actions .btn { flex:1; justify-content:center; } }

/* ── FAQ ── */
.faq-item { border-bottom:1px solid var(--border); }
.faq-question {
  width:100%; background:none; border:none;
  color:var(--text-primary); font-family:var(--font);
  font-size:1rem; font-weight:600; text-align:left;
  padding:var(--s5) 0; cursor:pointer;
  display:flex; justify-content:space-between; align-items:center; gap:var(--s4);
  transition:color var(--t);
}
.faq-question:hover { color:var(--orange-400); }
.faq-icon { font-size:20px; color:var(--orange-500); flex-shrink:0; transition:transform var(--t); }
.faq-item.open .faq-icon { transform:rotate(45deg); }
.faq-answer { max-height:0; overflow:hidden; transition:max-height .4s ease,padding .4s ease; }
.faq-item.open .faq-answer { max-height:600px; padding-bottom:var(--s5); }
.faq-answer p { font-size:.875rem; line-height:1.8; }

/* ── PAGE HERO (sous-pages) ── */
.page-hero {
  background: var(--navy-950);
  padding: 130px 0 var(--s8);
  position: relative; overflow: hidden;
}
.page-hero-bg {
  position:absolute; inset:0;
  background: radial-gradient(ellipse 70% 60% at 50% 0%,rgba(240,112,32,.08) 0%,transparent 70%);
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(20px); } to { opacity:1; transform:translateY(0); } }
.anim-reveal { opacity:0; transform:translateY(16px); transition:opacity .55s ease,transform .55s ease; }
.anim-reveal.visible { opacity:1; transform:translateY(0); }
.anim-reveal.delay-1 { transition-delay:.1s; }
.anim-reveal.delay-2 { transition-delay:.2s; }
.anim-reveal.delay-3 { transition-delay:.3s; }
.anim-reveal.delay-4 { transition-delay:.4s; }

/* ── ACCESSIBILITÉ ── */
:focus-visible { outline:2px solid var(--orange-500); outline-offset:3px; border-radius:var(--r-sm); }
@media (prefers-reduced-motion:reduce) {
  *,*::before,*::after { animation-duration:.01ms !important; transition-duration:.01ms !important; }
  html { scroll-behavior:auto; }
}

/* ── RESPONSIVE GLOBAL — Prévenir les débordements ── */
*  { max-width: 100%; }
table,pre,code,iframe { overflow-x: auto; }

/* Inline grids dans les pages — breakpoints forcés */
@media (max-width:640px) {
  [style*="grid-template-columns"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: auto 1fr"],
  [style*="grid-template-columns:auto 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns: 1fr auto"],
  [style*="grid-template-columns:1fr auto"] {
    grid-template-columns: 1fr !important;
  }
}


/* ============================================================
   HEADER FIX — OPTIMYS
   Objectif : forcer le rendu du header scrollé dès le chargement.
   ============================================================ */
html { scroll-padding-top: 88px; }
body { padding-top: 88px !important; }
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10000 !important;
  height: 88px !important;
  padding: 0 !important;
  background: #0A1628 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.navbar.scrolled { padding: 0 !important; background: #0A1628 !important; }
.navbar .container { height: 100% !important; }
.navbar-inner {
  height: 88px !important;
  min-height: 88px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
}
.navbar-logo {
  height: 88px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}
.logo-img,
.navbar.scrolled .logo-img {
  height: 72px !important;
  max-height: 72px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
}
.nav-links { align-items: center !important; }
.nav-actions { align-items: center !important; }
.hero, .page-hero, .contact-hero, .survey-page, .legal-page, .payment-page, .page-wrap {
  margin-top: 0 !important;
}
@media (max-width: 768px) {
  body { padding-top: 76px !important; }
  html { scroll-padding-top: 76px; }
  .navbar { height: 76px !important; }
  .navbar-inner { height: 76px !important; min-height: 76px !important; }
  .navbar-logo { height: 76px !important; }
  .logo-img,
  .navbar.scrolled .logo-img { height: 58px !important; max-height: 58px !important; max-width: 150px !important; }
  .nav-mobile { z-index: 9999 !important; padding-top: 92px !important; }
}

/* ── header-fix.css ── */


/* ============================================================
   HEADER FIX — OPTIMYS
   Objectif : forcer le rendu du header scrollé dès le chargement.
   ============================================================ */
html { scroll-padding-top: 88px; }
body { padding-top: 88px !important; }
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 10000 !important;
  height: 88px !important;
  padding: 0 !important;
  background: #0A1628 !important;
  border-bottom: 1px solid rgba(255,255,255,0.07) !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  box-shadow: none !important;
}
.navbar.scrolled { padding: 0 !important; background: #0A1628 !important; }
.navbar .container { height: 100% !important; }
.navbar-inner {
  height: 88px !important;
  min-height: 88px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 32px !important;
}
.navbar-logo {
  height: 88px !important;
  display: flex !important;
  align-items: center !important;
  overflow: visible !important;
}
.logo-img,
.navbar.scrolled .logo-img {
  height: 72px !important;
  max-height: 72px !important;
  width: auto !important;
  max-width: 180px !important;
  object-fit: contain !important;
  display: block !important;
}
.nav-links { align-items: center !important; }
.nav-actions { align-items: center !important; }
.hero, .page-hero, .contact-hero, .survey-page, .legal-page, .payment-page, .page-wrap {
  margin-top: 0 !important;
}
@media (max-width: 768px) {
  body { padding-top: 76px !important; }
  html { scroll-padding-top: 76px; }
  .navbar { height: 76px !important; }
  .navbar-inner { height: 76px !important; min-height: 76px !important; }
  .navbar-logo { height: 76px !important; }
  .logo-img,
  .navbar.scrolled .logo-img { height: 58px !important; max-height: 58px !important; max-width: 150px !important; }
  .nav-mobile { z-index: 9999 !important; padding-top: 92px !important; }
}

/* ── inter.css ── */
/* Inter — police locale, pas de dépendance Google Fonts */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/Inter-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('../fonts/Inter-500.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('../fonts/Inter-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/Inter-700.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('../fonts/Inter-800.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('../fonts/Inter-900.woff2') format('woff2');
}
