/* ============================================================
   EXALT SEWING MACHINES — Design tokens
   Palette: Ink Navy #0B2545, Exalt Blue #1657C4, Steel Blue #4F86C6,
            Cloud White #F5F8FC, Paper #FFFFFF, Graphite #1B222C
   Display: Oswald (condensed, nameplate-industrial)
   Body:    Source Sans 3
   Mono:    IBM Plex Mono (spec labels)
   ============================================================ */

:root{
  --navy: #0B2545;
  --navy-2: #0E2E58;
  --blue: #1657C4;
  --blue-light: #4F86C6;
  --blue-pale: #E7EFFC;
  --cloud: #F5F8FC;
  --paper: #FFFFFF;
  --graphite: #1B222C;
  --ink-70: rgba(11,37,69,0.7);
  --ink-50: rgba(11,37,69,0.5);
  --line: rgba(11,37,69,0.12);

  --font-display: 'Oswald', sans-serif;
  --font-body: 'Source Sans 3', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 10px rgba(11,37,69,0.06);
  --shadow-md: 0 12px 32px rgba(11,37,69,0.12);
  --shadow-lg: 0 24px 60px rgba(11,37,69,0.18);

  --ease: cubic-bezier(.22,.75,.28,1);
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *,*::before,*::after{ animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--graphite);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

h1,h2,h3{
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  color: var(--navy);
  margin: 0 0 0.5em;
  line-height: 1.08;
}

p{ margin: 0 0 1em; color: var(--ink-70); line-height: 1.65; }
a{ color: inherit; text-decoration: none; }
img{ max-width: 100%; display: block; }
ul{ margin:0; padding:0; list-style:none; }

.section-inner{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Reveal-on-scroll ---------- */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }

/* ---------- Stitch progress bar ---------- */
.stitch-progress{
  position: fixed; top:0; left:0; height:3px; width:0%;
  background: repeating-linear-gradient(90deg, var(--blue) 0 8px, transparent 8px 14px);
  z-index: 1000;
  transition: width .1s linear;
}

/* ---------- Buttons ---------- */
.btn{
  display: inline-flex; align-items:center; justify-content:center;
  padding: 14px 28px;
  font-family: var(--font-display);
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary{ background: var(--blue); color:#fff; box-shadow: var(--shadow-sm); }
.btn-primary:hover{ background: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost{ background: transparent; color: var(--navy); border-color: var(--line); }
.btn-ghost:hover{ border-color: var(--blue); color: var(--blue); transform: translateY(-2px); }
.btn-nav{ padding: 10px 22px; font-size: 12.5px; }
.btn-block{ width: 100%; }

/* ---------- Eyebrow ---------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:9px;
  font-family: var(--font-mono);
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 14px;
}
.eyebrow-dot{ width:7px; height:7px; border-radius:50%; background: var(--blue); box-shadow: 0 0 0 4px var(--blue-pale); flex-shrink:0; }
.eyebrow-dot-light{ box-shadow: 0 0 0 4px rgba(79,134,198,0.25); }
.eyebrow-center{ display:flex; justify-content:center; }

.section-title{ font-size: clamp(30px, 4vw, 44px); text-align:center; }
.section-sub{ text-align:center; max-width: 560px; margin: 0 auto 48px; font-size: 17px; }

/* ============================================================
   NAV
   ============================================================ */
.nav{
  position: fixed; top:0; left:0; right:0; z-index: 900;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease), background .3s var(--ease);
}
.nav.scrolled{ border-color: var(--line); box-shadow: 0 4px 20px rgba(11,37,69,0.06); }

.nav-inner{
  max-width: 1180px; margin: 0 auto; padding: 14px 28px;
  display:flex; align-items:center; gap: 24px;
}
.brand{ display:flex; align-items:center; gap:10px; margin-right:auto; }
.brand-mark{ width: 34px; height: 34px; object-fit: contain; border-radius: 6px; }
.brand-text{
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--navy);
  display:flex; flex-direction:column; line-height:1;
}
.brand-text small{
  font-family: var(--font-mono);
  font-size: 8.5px;
  letter-spacing: 0.18em;
  color: var(--blue);
  font-weight: 500;
  margin-top: 3px;
}
.nav-links{ display:flex; align-items:center; gap: 30px; }
.nav-links a{
  font-size: 14.5px; font-weight: 600; color: var(--ink-70);
  position: relative; padding: 4px 0;
  transition: color .2s;
}
.nav-links a::after{
  content:''; position:absolute; left:0; bottom:-2px; height:2px; width:0;
  background: var(--blue); transition: width .25s var(--ease);
}
.nav-links a:hover{ color: var(--navy); }
.nav-links a:hover::after{ width: 100%; }

.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span{ width: 22px; height: 2px; background: var(--navy); border-radius:2px; transition: transform .25s var(--ease), opacity .25s var(--ease); }

/* ============================================================
   HERO
   ============================================================ */
.hero{
  position: relative;
  padding: 168px 0 0;
  background: radial-gradient(ellipse 120% 90% at 15% 0%, var(--navy-2) 0%, var(--navy) 55%, #081b38 100%);
  overflow: hidden;
  color: #fff;
}
.hero-bg{ position:absolute; inset:0; pointer-events:none; }
.hero-globe{
  position:absolute; top:-160px; right:-160px; width: 620px; height:620px;
  opacity: .07; fill:none; stroke:#fff; stroke-width:1;
}
.hero-globe circle{ fill:none; stroke:#fff; }
.needle-track{ position:absolute; left:0; right:0; bottom: 110px; opacity:.18; }
.stitch-svg-hero path{ fill:none; stroke:#fff; stroke-width:2; stroke-dasharray: 10 10; }

.hero-inner{
  position:relative; z-index:2;
  max-width: 1180px; margin:0 auto; padding: 20px 28px 100px;
  display:grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items:center;
}
.hero-copy .eyebrow{ color: #BFD3F5; }
.hero-copy .eyebrow-dot{ background:#BFD3F5; box-shadow: 0 0 0 4px rgba(191,211,245,0.2); }
.hero h1{
  color: #fff;
  font-size: clamp(34px, 4.6vw, 54px);
  font-weight: 600;
  max-width: 620px;
}
.hero h1 .hl{ color: #7FADEF; }
.hero-sub{ color: rgba(255,255,255,0.75); font-size: 17.5px; max-width: 480px; margin-bottom: 30px; }
.hero-cta{ display:flex; gap:16px; flex-wrap:wrap; margin-bottom: 52px; }
.hero .btn-ghost{ color:#fff; border-color: rgba(255,255,255,0.3); }
.hero .btn-ghost:hover{ border-color:#fff; color:#fff; background: rgba(255,255,255,0.08); }

.hero-stats{ display:flex; gap: 40px; margin:0; }
.hero-stats div{ display:flex; flex-direction:column; }
.hero-stats dt{
  font-family: var(--font-display); font-size: 30px; color:#fff; font-weight:600;
}
.hero-stats dd{ margin:4px 0 0; font-size:12.5px; letter-spacing:0.06em; text-transform:uppercase; color: rgba(255,255,255,0.55); font-family: var(--font-mono); }

.hero-figure{ position:relative; }
.hero-figure-card{
  background: #fff; border-radius: var(--radius); padding: 18px;
  box-shadow: var(--shadow-lg);
  transform: rotate(1.2deg);
  transition: transform .5s var(--ease);
}
.hero-figure-card:hover{ transform: rotate(0deg) translateY(-4px); }
.hero-figure-card img{ border-radius: 8px; }
.tag-plate{
  position:absolute; bottom: -16px; left: 28px;
  background: var(--blue); color:#fff;
  font-family: var(--font-mono); font-size: 11px; letter-spacing:0.1em;
  padding: 8px 16px; border-radius: 999px; box-shadow: var(--shadow-md);
}

.hero-divider{ position:relative; z-index:2; line-height:0; }
.stitch-divider{ width:100%; height:44px; display:block; }
.stitch-divider path{
  fill:none; stroke: var(--cloud); stroke-width: 3;
  stroke-dasharray: 14 12;
  stroke-linecap: round;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about{ background: var(--cloud); padding: 108px 0; }
.about-grid{
  display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; align-items:center;
}
.about-media{ position: relative; }
.about-media img{
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-media-caption{
  margin-top: 16px; font-family: var(--font-mono); font-size: 12px; color: var(--ink-50);
  letter-spacing: 0.02em; line-height:1.6;
}
.about-copy h2{ font-size: clamp(28px, 3.4vw, 38px); }
.about-points{ margin-top: 24px; display:flex; flex-direction:column; gap:14px; }
.about-points li{
  padding-left: 26px; position:relative; color: var(--ink-70); font-size:15.5px;
}
.about-points li::before{
  content:''; position:absolute; left:0; top:7px; width:10px; height:10px;
  background: var(--blue); border-radius: 2px; transform: rotate(45deg);
}
.about-points strong{ color: var(--navy); }

/* ============================================================
   WHY (feature strip)
   ============================================================ */
.why{ padding: 108px 0; }
.why-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px;
}
.why-card{
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.why-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: transparent; }
.why-icon{
  width: 52px; height:52px; border-radius: 12px;
  background: var(--blue-pale);
  display:flex; align-items:center; justify-content:center;
  margin-bottom: 20px;
}
.why-icon svg{ width: 26px; height:26px; fill:none; stroke: var(--blue); stroke-width:2; stroke-linejoin:round; stroke-linecap:round; }
.why-card h3{ font-size: 18px; margin-bottom: 10px; }
.why-card p{ font-size: 14.5px; margin:0; }

/* ============================================================
   CATALOGUE
   ============================================================ */
.catalogue{ background: var(--cloud); padding: 108px 0; }

.cat-filters{
  display:flex; justify-content:center; gap: 10px; flex-wrap:wrap; margin-bottom: 48px;
}
.cat-filter{
  font-family: var(--font-mono); font-size: 12.5px; letter-spacing:0.04em;
  padding: 10px 20px; border-radius: 999px;
  border: 1px solid var(--line); background: var(--paper); color: var(--ink-70);
  cursor:pointer; transition: all .25s var(--ease);
}
.cat-filter:hover{ border-color: var(--blue-light); color: var(--navy); }
.cat-filter.active{ background: var(--navy); border-color: var(--navy); color:#fff; }

.cat-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.cat-card{
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
  display:flex; flex-direction:column;
}
.cat-card.is-hidden{ display:none; }
.cat-card:hover{ transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.cat-card-img{ aspect-ratio: 4/3; overflow:hidden; background:#fff; }
.cat-card-img img{ width:100%; height:100%; object-fit: cover; transition: transform .6s var(--ease); }
.cat-card:hover .cat-card-img img{ transform: scale(1.07); }
.cat-card-body{ padding: 22px 22px 26px; }
.cat-tag{
  display:inline-block; font-family: var(--font-mono); font-size:10.5px; letter-spacing:0.1em;
  text-transform:uppercase; color: var(--blue); background: var(--blue-pale);
  padding: 4px 10px; border-radius: 5px; margin-bottom: 12px;
}
.cat-card h3{ font-size: 18.5px; margin-bottom: 8px; }
.cat-card p{ font-size: 14px; margin:0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq{ padding: 108px 0; }
.faq-grid{ display:grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; }
.faq-intro h2{ font-size: clamp(28px, 3.4vw, 38px); }
.faq-intro p{ margin-bottom: 26px; }
.faq-intro .btn{ margin-top: 4px; }

.faq-item{ border-bottom: 1px solid var(--line); }
.faq-item:first-child{ border-top: 1px solid var(--line); }
.faq-q{
  width:100%; display:flex; align-items:center; justify-content:space-between; gap: 20px;
  background:none; border:none; text-align:left; cursor:pointer;
  padding: 22px 4px; font-family: var(--font-body); font-size: 16.5px; font-weight:600; color: var(--navy);
}
.faq-plus{
  position:relative; width: 18px; height:18px; flex-shrink:0;
}
.faq-plus::before, .faq-plus::after{
  content:''; position:absolute; background: var(--blue); border-radius:2px;
  transition: transform .3s var(--ease);
}
.faq-plus::before{ top:8px; left:0; width:18px; height:2px; }
.faq-plus::after{ top:0; left:8px; width:2px; height:18px; }
.faq-item.open .faq-plus::after{ transform: rotate(90deg); opacity:0; }
.faq-item.open .faq-q{ color: var(--blue); }
.faq-a{
  max-height:0; overflow:hidden; transition: max-height .4s var(--ease);
}
.faq-a p{ padding: 0 4px 22px; font-size: 15px; max-width: 640px; }

/* ============================================================
   CONTACT
   ============================================================ */
.contact{
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-2) 100%);
  padding: 108px 0; color:#fff;
}
.contact-grid{ display:grid; grid-template-columns: 0.9fr 1.1fr; gap: 64px; }
.contact-info h2{ color:#fff; font-size: clamp(28px, 3.4vw, 38px); }
.contact-lead{ color: rgba(255,255,255,0.7); font-size: 16px; max-width: 420px; }
.contact-list{ margin-top: 34px; display:flex; flex-direction:column; gap: 22px; }
.contact-list li{ display:flex; flex-direction:column; gap: 4px; }
.contact-label{
  font-family: var(--font-mono); font-size:11px; letter-spacing:0.12em; text-transform:uppercase;
  color: #7FADEF;
}
.contact-list a:hover{ text-decoration: underline; }
.contact-list span:not(.contact-label){ font-size: 16px; color: #fff; }

.contact-form{
  background: #fff; border-radius: var(--radius); padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-row{ margin-bottom: 18px; display:flex; flex-direction:column; gap:7px; }
.form-row-split{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom:0; }
.form-row-split > div{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.contact-form label{
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing:0.08em; text-transform:uppercase;
  color: var(--ink-50);
}
.contact-form input, .contact-form select, .contact-form textarea{
  font-family: var(--font-body); font-size: 15px; color: var(--graphite);
  border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 12px 14px; background: var(--cloud);
  transition: border-color .2s, box-shadow .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus{
  outline:none; border-color: var(--blue); box-shadow: 0 0 0 3px var(--blue-pale);
}
.contact-form textarea{ resize: vertical; }
.form-note{ margin: 14px 0 0; font-size: 12.5px; color: var(--ink-50); text-align:center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer{ background: var(--graphite); color: rgba(255,255,255,0.6); padding: 40px 0; }
.footer-inner{
  display:flex; align-items:center; justify-content:space-between; gap: 24px; flex-wrap:wrap;
}
.brand-footer .brand-text{ color:#fff; }
.footer-links{ display:flex; gap: 24px; flex-wrap:wrap; }
.footer-links a{ font-size: 13.5px; color: rgba(255,255,255,0.6); transition: color .2s; }
.footer-links a:hover{ color:#fff; }
.footer-copy{ font-size: 12.5px; margin:0; color: rgba(255,255,255,0.4); }

/* ============================================================
   PAGE LOADER
   ============================================================ */
.page-loader{
  position: fixed; inset: 0; z-index: 3000;
  background: radial-gradient(ellipse 120% 90% at 15% 0%, var(--navy-2) 0%, var(--navy) 55%, #081b38 100%);
  display:flex; align-items:center; justify-content:center;
  transition: opacity .6s var(--ease), visibility .6s var(--ease);
}
.page-loader.loaded{ opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content{
  display:flex; flex-direction:column; align-items:center;
  width: 260px; max-width: 80vw;
}
.loader-logo-wrap{
  width: 60px; height: 60px; border-radius: 14px;
  background:#fff; padding: 9px;
  box-shadow: var(--shadow-lg);
  margin-bottom: 22px;
  animation: loaderPulse 1.8s ease-in-out infinite;
}
.loader-logo{ width:100%; height:100%; object-fit: contain; }
@keyframes loaderPulse{
  0%, 100%{ transform: scale(1); }
  50%{ transform: scale(1.06); }
}

.loader-brand{
  font-family: var(--font-display); font-weight:600;
  font-size: 26px; letter-spacing: 0.04em; color:#fff;
  text-align:center; display:flex; flex-direction:column; line-height:1.1;
  margin-bottom: 28px;
}
.loader-brand span{
  font-family: var(--font-mono); font-size: 10px; letter-spacing: 0.24em;
  color: #7FADEF; margin-top: 8px;
}

.loader-bar-track{
  position: relative; width: 100%; height: 5px; border-radius: 999px;
  background: rgba(255,255,255,0.15); overflow: visible;
}
.loader-bar-fill{
  position:absolute; top:0; left:0; height:100%; width:0%; border-radius: 999px;
  background: repeating-linear-gradient(90deg, #fff 0 8px, transparent 8px 14px);
  transition: width .25s ease-out;
}
.loader-needle{
  position:absolute; top:50%; left:0%;
  width: 9px; height: 9px; margin-left: -4.5px; margin-top: -4.5px;
  background:#fff; border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
  transition: left .25s ease-out;
}

.loader-text{
  margin: 18px 0 0; color: rgba(255,255,255,0.6);
  font-family: var(--font-mono); font-size: 11.5px;
  letter-spacing: 0.16em; text-transform: uppercase;
  animation: loaderFade 1.4s ease-in-out infinite;
}
@keyframes loaderFade{
  0%, 100%{ opacity: 0.5; }
  50%{ opacity: 1; }
}

/* ============================================================
   LANGUAGE MODAL
   ============================================================ */
.lang-modal-overlay{
  position: fixed; inset:0; z-index: 2000;
  background: rgba(11,37,69,0.55);
  backdrop-filter: blur(4px);
  display:flex; align-items:center; justify-content:center;
  padding: 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .35s var(--ease);
}
.lang-modal-overlay.open{ opacity: 1; pointer-events: auto; }

.lang-modal{
  background:#fff; border-radius: var(--radius);
  max-width: 420px; width: 100%;
  padding: 40px 36px;
  box-shadow: var(--shadow-lg);
  text-align:center;
  transform: scale(0.94) translateY(8px);
  transition: transform .35s var(--ease);
}
.lang-modal-overlay.open .lang-modal{ transform: scale(1) translateY(0); }

.lang-modal-mark{
  width: 46px; height: 46px; object-fit: contain;
  margin: 0 auto 20px; border-radius: 10px;
}
.lang-modal h2{ font-size: 21px; margin-bottom: 8px; }
.lang-modal p{ font-size: 14.5px; margin-bottom: 26px; }

.lang-modal-options{ display:flex; flex-direction:column; gap: 12px; }
.lang-modal-btn{
  display:flex; align-items:center; justify-content:center; gap: 10px;
  padding: 14px 20px; border-radius: 999px;
  border: 1.5px solid var(--line); background: var(--cloud);
  font-family: var(--font-display); font-size: 14px; letter-spacing: 0.05em;
  text-transform: uppercase; color: var(--navy);
  cursor:pointer; transition: all .25s var(--ease);
}
.lang-modal-btn:hover{ border-color: var(--blue); background: var(--blue-pale); transform: translateY(-2px); }
.lang-modal-btn.active{ border-color: var(--blue); background: var(--blue); color:#fff; }
.lang-flag{
  font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.06em;
  background: rgba(11,37,69,0.08); padding: 3px 7px; border-radius: 5px;
}
.lang-modal-btn.active .lang-flag{ background: rgba(255,255,255,0.22); }

/* ============================================================
   NAV LANGUAGE SWITCHER (3-bar icon)
   ============================================================ */
.lang-switch{ position: relative; }
.lang-toggle{
  display:flex; flex-direction:column; align-items:center; justify-content:center; gap: 4px;
  width: 38px; height: 38px;
  background: none; border: 1px solid var(--line); border-radius: 8px;
  cursor:pointer; transition: border-color .2s, background .2s;
  flex-shrink: 0;
}
.lang-toggle:hover{ border-color: var(--blue); background: var(--blue-pale); }
.lang-toggle span{ width: 16px; height: 2px; background: var(--navy); border-radius: 2px; }

.lang-dropdown{
  position:absolute; top: calc(100% + 10px); right: 0;
  background:#fff; border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); overflow:hidden; min-width: 168px;
  opacity: 0; transform: translateY(-8px); pointer-events:none;
  transition: opacity .22s var(--ease), transform .22s var(--ease);
  z-index: 950;
}
.lang-dropdown.open{ opacity: 1; transform: translateY(0); pointer-events:auto; }

.lang-option{
  display:flex; align-items:center; justify-content:space-between; gap: 10px;
  width:100%; padding: 12px 16px; background:none; border:none; cursor:pointer;
  font-family: var(--font-body); font-size: 14.5px; color: var(--ink-70);
  text-align:left; transition: background .2s, color .2s;
}
.lang-option:hover{ background: var(--blue-pale); color: var(--navy); }
.lang-option.active{ color: var(--blue); font-weight: 600; }
.lang-check{ width: 15px; height:15px; color: var(--blue); opacity: 0; flex-shrink:0; }
.lang-option.active .lang-check{ opacity: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns: 1fr; padding-bottom: 70px; }
  .hero-figure{ order:-1; max-width: 420px; margin: 0 auto; }
  .hero{ padding-top: 130px; }
  .about-grid, .faq-grid, .contact-grid{ grid-template-columns: 1fr; gap: 44px; }
  .about-media{ max-width: 480px; }
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
  .cat-grid{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px){
  .nav-links{
    position:absolute; top: 100%; left:0; right:0;
    background: #fff; flex-direction:column; align-items:flex-start;
    padding: 20px 28px; gap: 16px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity:0; pointer-events:none;
    transition: all .25s var(--ease);
  }
  .nav-links.open{ transform: translateY(0); opacity:1; pointer-events:auto; }
  .nav-toggle{ display:flex; }
  .btn-nav{ display:none; }
  .hero-stats{ gap: 26px; flex-wrap: wrap; }
  .hero-cta{ flex-direction:column; align-items:stretch; }
  .why-grid{ grid-template-columns: 1fr; }
  .cat-grid{ grid-template-columns: 1fr; }
  .form-row-split{ grid-template-columns: 1fr; }
  .contact-form{ padding: 26px; }
  .footer-inner{ flex-direction:column; text-align:center; }
}
