/* =========================================================
   ASA Brussels — app & web studio
   Shared stylesheet (FR / NL / EN)
   ========================================================= */

:root {
  /* Brand palette (derived from the ASA logo) */
  --brand:        #2347e5;
  --brand-600:    #1b37c4;
  --brand-700:    #142a9c;
  --brand-soft:   #6d8bff;
  --accent:       #18c2c2;   /* teal accent for contrast */
  --violet:       #7c5cff;

  --ink:          #0b1437;   /* near-black navy text */
  --ink-soft:     #4a5578;
  --muted:        #8a93b2;
  --line:         #e6e9f5;

  --bg:           #ffffff;
  --bg-soft:      #f5f7ff;
  --bg-deep:      #070b22;   /* dark sections */

  --radius:       18px;
  --radius-lg:    28px;
  --shadow-sm:    0 4px 18px rgba(16, 27, 84, .07);
  --shadow:       0 18px 50px rgba(16, 27, 84, .12);
  --shadow-lg:    0 40px 90px rgba(16, 27, 84, .22);

  --container:    1180px;
  --ease:         cubic-bezier(.22, 1, .36, 1);

  --font: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

/* ---------- Reset ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.65;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

::selection { background: var(--brand); color: #fff; }

/* ---------- Layout helpers ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }

.section { padding: clamp(64px, 9vw, 130px) 0; position: relative; }
.section--soft { background: var(--bg-soft); }
.section--dark { background: var(--bg-deep); color: #eaeeff; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .8rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--brand);
  padding: 7px 14px; border-radius: 999px;
  background: rgba(35, 71, 229, .08);
  margin-bottom: 18px;
}
.section--dark .eyebrow { color: #9fb4ff; background: rgba(125, 150, 255, .14); }

h1, h2, h3 { line-height: 1.1; letter-spacing: -.02em; font-weight: 800; }

.h-section {
  font-size: clamp(1.9rem, 4vw, 3rem);
  max-width: 18ch;
  margin-bottom: 18px;
}
.section--centered .h-section,
.section--centered .lead { margin-left: auto; margin-right: auto; }
.section--centered { text-align: center; }

.lead {
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  color: var(--ink-soft);
  max-width: 56ch;
}
.section--dark .lead { color: #aab6e6; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 600; font-size: .98rem;
  padding: 14px 26px; border-radius: 999px;
  background: var(--btn-bg); color: var(--btn-fg);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .25s;
  box-shadow: 0 10px 26px rgba(35, 71, 229, .28);
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 18px 38px rgba(35, 71, 229, .38); }
.btn svg { width: 18px; height: 18px; }

.btn--ghost {
  --btn-bg: transparent; --btn-fg: var(--ink);
  border-color: var(--line);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--brand); color: var(--brand); box-shadow: none; }
.section--dark .btn--ghost { --btn-fg: #fff; border-color: rgba(255,255,255,.22); }

/* ---------- Header / nav ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .3s, box-shadow .3s, padding .3s;
  padding: 18px 0;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  box-shadow: 0 1px 0 var(--line), 0 8px 30px rgba(16,27,84,.06);
  padding: 12px 0;
}
.nav { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: flex; align-items: center; gap: 12px; font-weight: 800; letter-spacing: -.02em; }
.brand img { width: 44px; height: 44px; border-radius: 11px; box-shadow: var(--shadow-sm); }
.brand b { font-size: 1.18rem; }
.brand span { display: block; font-size: .68rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; }

.nav-links { display: flex; align-items: center; gap: 6px; }
.nav-links a {
  font-size: .94rem; font-weight: 500; color: var(--ink-soft);
  padding: 9px 14px; border-radius: 999px; transition: color .2s, background .2s;
}
.nav-links a:hover { color: var(--brand); background: rgba(35,71,229,.07); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

/* Language switcher */
.lang { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: .88rem; font-weight: 600; color: var(--ink-soft);
  padding: 9px 13px; border: 1.5px solid var(--line); border-radius: 999px;
  background: #fff; cursor: pointer; transition: border-color .2s, color .2s;
}
.lang-btn:hover { border-color: var(--brand); color: var(--brand); }
.lang-menu {
  position: absolute; right: 0; top: calc(100% + 8px);
  background: #fff; border: 1px solid var(--line); border-radius: 14px;
  box-shadow: var(--shadow); padding: 6px; min-width: 160px;
  opacity: 0; visibility: hidden; transform: translateY(-6px);
  transition: opacity .2s, transform .2s, visibility .2s;
}
.lang.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 9px 12px; border-radius: 9px; font-size: .92rem; color: var(--ink-soft);
}
.lang-menu a:hover { background: var(--bg-soft); color: var(--brand); }
.lang-menu a[aria-current="true"] { color: var(--brand); font-weight: 700; }

.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }
.nav-toggle span + span { margin-top: 6px; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(130px, 18vh, 200px) 0 clamp(70px, 9vw, 120px); overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: -1; overflow: hidden; }
.blob {
  position: absolute; border-radius: 50%; filter: blur(60px); opacity: .55;
  animation: float 18s ease-in-out infinite;
}
.blob--1 { width: 520px; height: 520px; top: -160px; right: -120px; background: radial-gradient(circle at 30% 30%, var(--brand-soft), transparent 70%); }
.blob--2 { width: 460px; height: 460px; bottom: -180px; left: -120px; background: radial-gradient(circle at 30% 30%, var(--violet), transparent 70%); animation-delay: -6s; }
.blob--3 { width: 360px; height: 360px; top: 30%; left: 40%; background: radial-gradient(circle at 30% 30%, var(--accent), transparent 70%); opacity: .35; animation-delay: -11s; }
.hero-grid-overlay {
  position: absolute; inset: 0;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
  -webkit-mask-image: radial-gradient(circle at 50% 30%, #000, transparent 75%);
  opacity: .5;
}

.hero-inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.1rem);
  letter-spacing: -.035em;
  margin-bottom: 20px;
}
.hero h1 .grad {
  background: linear-gradient(110deg, var(--brand), var(--violet) 55%, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero .lead { font-size: clamp(1.08rem, 1.7vw, 1.32rem); margin-bottom: 30px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; }

.hero-trust { margin-top: 30px; display: flex; align-items: center; gap: 18px; color: var(--muted); font-size: .9rem; flex-wrap: wrap; }
.hero-trust b { color: var(--ink); }
.dot { width: 5px; height: 5px; border-radius: 50%; background: var(--line); }

/* Phone mockups in hero */
.hero-visual { position: relative; height: 520px; }
.phone {
  position: absolute; width: 240px; aspect-ratio: 9 / 19;
  background: linear-gradient(160deg, #11163a, #1b2356);
  border-radius: 34px; padding: 11px;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,.12);
}
.phone::before {
  content: ""; position: absolute; top: 16px; left: 50%; transform: translateX(-50%);
  width: 60px; height: 6px; border-radius: 99px; background: rgba(255,255,255,.25);
}
.phone .screen {
  width: 100%; height: 100%; border-radius: 24px; overflow: hidden;
  display: flex; flex-direction: column; color: #fff; padding: 26px 18px 18px;
}
.phone--a { top: 10px; left: 8%; z-index: 2; animation: floatY 7s ease-in-out infinite; }
.phone--a .screen { background: linear-gradient(165deg, #1f3bd6, #122a9c); }
.phone--b { bottom: 6px; right: 4%; z-index: 1; transform: rotate(6deg) scale(.92); animation: floatY 8s ease-in-out infinite reverse; }
.phone--b .screen { background: linear-gradient(165deg, #6a4bff, #2a1f8c); }
.phone .app-tag { font-size: .72rem; letter-spacing: .12em; text-transform: uppercase; opacity: .7; }
.phone .app-name { font-size: 1.45rem; font-weight: 800; margin-top: 2px; }
.phone .app-line { height: 9px; border-radius: 6px; background: rgba(255,255,255,.18); margin-top: 14px; }
.phone .app-line.s { width: 60%; }
.phone .app-card { margin-top: auto; background: rgba(255,255,255,.12); border-radius: 14px; padding: 12px; }
.phone .app-card b { font-size: 1.3rem; }
.phone .app-card small { opacity: .7; }

/* ---------- Marquee logos / trust strip ---------- */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--bg); }
.strip-inner { display: flex; align-items: center; gap: 40px; flex-wrap: wrap; justify-content: center; padding: 26px 0; color: var(--muted); font-weight: 600; font-size: .95rem; }
.strip-inner .pill { display: inline-flex; align-items: center; gap: 9px; }
.strip-inner svg { width: 18px; height: 18px; color: var(--brand); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.stat {
  text-align: center; padding: 30px 18px; border-radius: var(--radius);
  background: var(--bg); border: 1px solid var(--line);
}
.stat .num { font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 800; letter-spacing: -.03em;
  background: linear-gradient(120deg, var(--brand), var(--violet)); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat .label { color: var(--ink-soft); font-size: .96rem; margin-top: 4px; }

/* ---------- Services ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card {
  background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px; transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  position: relative; overflow: hidden;
}
.card::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,0%), rgba(35,71,229,.10), transparent 60%);
  opacity: 0; transition: opacity .4s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card:hover::after { opacity: 1; }
.card .ic {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--brand), var(--violet)); color: #fff; margin-bottom: 18px;
}
.card .ic svg { width: 24px; height: 24px; }
.card h3 { font-size: 1.22rem; margin-bottom: 8px; }
.card p { color: var(--ink-soft); font-size: .98rem; }

/* ---------- Products ---------- */
.product {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center;
  padding: clamp(32px, 5vw, 56px); border-radius: var(--radius-lg);
  border: 1px solid var(--line); background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.product + .product { margin-top: 30px; }
.product:nth-child(even) .product-media { order: -1; }
.product-badge { display: inline-flex; align-items: center; gap: 8px; font-size: .82rem; font-weight: 700; color: var(--brand); margin-bottom: 14px; }
.product-badge .live { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }
.product-badge.dev { color: var(--violet); }
.product-badge.dev .live { background: var(--violet); box-shadow: 0 0 0 4px rgba(124,92,255,.18); }
.product h3 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin-bottom: 12px; }
.product p { color: var(--ink-soft); margin-bottom: 18px; }
.product ul { list-style: none; display: grid; gap: 10px; margin-bottom: 22px; }
.product li { display: flex; gap: 10px; align-items: flex-start; color: var(--ink-soft); font-size: .98rem; }
.product li svg { width: 20px; height: 20px; color: var(--brand); flex: 0 0 auto; margin-top: 2px; }
.product-links { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.store-badge {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--ink); color: #fff; border-radius: 12px; padding: 9px 16px;
  font-size: .9rem; transition: transform .3s var(--ease), opacity .2s;
}
.store-badge:hover { transform: translateY(-2px); }
.store-badge small { display: block; font-size: .62rem; opacity: .8; line-height: 1; }
.store-badge b { font-size: .95rem; line-height: 1.1; }
.store-badge svg { width: 22px; height: 22px; }

/* Testimonial inside a product card */
.quote {
  margin: 22px 0 6px; padding: 20px 22px;
  border-left: 3px solid var(--brand);
  background: var(--bg-soft); border-radius: 0 var(--radius) var(--radius) 0;
}
.quote p { margin: 0; color: var(--ink); font-size: 1rem; font-style: italic; line-height: 1.6; }
.quote footer { margin-top: 12px; font-size: .84rem; font-weight: 600; color: var(--ink-soft); font-style: normal; }

/* Product visual mock */
.product-media { display: grid; place-items: center; }
.app-frame {
  width: 260px; aspect-ratio: 9 / 18; border-radius: 32px; padding: 12px;
  background: linear-gradient(160deg, #0f1430, #1a2150);
  box-shadow: var(--shadow-lg); position: relative;
}
.app-frame .screen { width: 100%; height: 100%; border-radius: 22px; overflow: hidden; padding: 24px 18px; color: #fff; display: flex; flex-direction: column; gap: 12px; }
.app-frame.fiscalmate .screen { background: linear-gradient(170deg, #1f3bd6, #0f1c66); }
.app-frame.lumio .screen { background: linear-gradient(170deg, #7c5cff, #2a1670); }
.app-frame.zakora .screen { background: linear-gradient(170deg, #0f9d8c, #0c3f57); }
.app-frame.worldlounges .screen { background: radial-gradient(120% 90% at 75% 8%, rgba(212,168,83,.55) 0%, transparent 55%), linear-gradient(170deg, #23324f, #0b1224); }
.app-frame.medstok .screen { background: linear-gradient(170deg, #17b3c9, #0a3a63); }
.app-frame .scr-tag { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; opacity: .75; }
.app-frame .scr-title { font-size: 1.5rem; font-weight: 800; }
.app-frame .scr-block { background: rgba(255,255,255,.13); border-radius: 12px; padding: 14px; }
.app-frame .scr-block b { font-size: 1.6rem; }
.app-frame .scr-bar { height: 8px; border-radius: 6px; background: rgba(255,255,255,.16); }
.app-frame .scr-bar.s { width: 55%; }
.app-frame .scr-bubble { align-self: flex-start; background: rgba(255,255,255,.16); border-radius: 14px 14px 14px 4px; padding: 10px 13px; font-size: .85rem; max-width: 85%; }
.app-frame .scr-bubble.me { align-self: flex-end; background: rgba(255,255,255,.92); color: #2a1670; border-radius: 14px 14px 4px 14px; }
.app-frame .scr-row {
  display: flex; align-items: center; gap: 10px; font-size: .82rem;
  background: rgba(255,255,255,.13); border-radius: 12px; padding: 10px 12px;
}
.app-frame .scr-row b { font-size: .86rem; display: block; }
.app-frame .scr-row small { opacity: .75; font-size: .72rem; }

/* ---------- Selected work / réalisations ---------- */
.works-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; margin-top: 46px; text-align: left; }
.work {
  border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden;
  background: var(--bg); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  display: flex; flex-direction: column;
}
.work:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }

/* Browser mockup */
.browser { background: #0f1430; padding: 0; position: relative; }
.browser-bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: rgba(255,255,255,.06); }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #ff5f57; display: inline-block; }
.browser-bar i:nth-child(2) { background: #febc2e; }
.browser-bar i:nth-child(3) { background: #28c840; }
.browser-bar .url {
  margin-left: 10px; flex: 1; font-size: .74rem; color: #cbd5f5;
  background: rgba(255,255,255,.10); border-radius: 999px; padding: 5px 12px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.browser-view {
  aspect-ratio: 16 / 10; display: flex; flex-direction: column; justify-content: center;
  padding: 28px; color: #fff; position: relative; overflow: hidden;
}
.browser-view.jsg { background: radial-gradient(120% 120% at 80% 0%, #d4a853 0%, transparent 45%), linear-gradient(160deg, #1a9a7a, #0e5f4b); }
.browser-view .paw { font-size: 1.6rem; }
.browser-view .wtitle { font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 700; line-height: 1.1; margin: 8px 0; max-width: 14ch; }
.browser-view .wsub { font-size: .9rem; opacity: .9; max-width: 30ch; }
.browser-view .wbtn { margin-top: 16px; align-self: flex-start; background: rgba(255,255,255,.9); color: #0e5f4b; font-weight: 600; font-size: .82rem; padding: 8px 16px; border-radius: 999px; }

.work-body { padding: 26px 28px 28px; display: flex; flex-direction: column; gap: 12px; flex: 1; }
.work-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.work-tags span { font-size: .74rem; font-weight: 600; color: var(--ink-soft); background: var(--bg-soft); border: 1px solid var(--line); border-radius: 999px; padding: 4px 11px; }
.work-body h3 { font-size: 1.4rem; }
.work-body p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.work-link { margin-top: auto; display: inline-flex; align-items: center; gap: 8px; font-weight: 600; color: var(--brand); }
.work-link svg { width: 18px; height: 18px; }
.work-link:hover { gap: 12px; }

/* ---------- Process ---------- */
.steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; counter-reset: step; }
.step { padding: 26px 20px; border-radius: var(--radius); background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.10); }
.section--dark .step { position: relative; }
.step .n {
  width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center;
  font-weight: 800; background: linear-gradient(135deg, var(--brand), var(--violet)); color: #fff; margin-bottom: 14px;
}
.step h4 { font-size: 1.1rem; margin-bottom: 6px; }
.step p { color: #aab6e6; font-size: .92rem; }

/* ---------- CTA band ---------- */
.cta-band {
  text-align: center; border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  background: linear-gradient(125deg, var(--brand-700), var(--brand) 45%, var(--violet));
  color: #fff; position: relative; overflow: hidden;
}
.cta-band::before { content: ""; position: absolute; inset: 0;
  background: radial-gradient(600px circle at 20% 0%, rgba(255,255,255,.18), transparent 60%); }
.cta-band h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); margin-bottom: 14px; position: relative; }
.cta-band p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 26px; position: relative; }
.cta-band .btn { --btn-bg: #fff; --btn-fg: var(--brand-700); position: relative; box-shadow: 0 14px 30px rgba(0,0,0,.2); }
.cta-band .btn:hover { --btn-fg: var(--brand-700); }

/* ---------- Footer ---------- */
.site-footer { background: var(--bg-deep); color: #cdd6f5; padding: 70px 0 34px; }
.footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-brand img { width: 46px; height: 46px; border-radius: 12px; }
.footer-brand b { color: #fff; font-size: 1.15rem; }
.site-footer p { color: #9aa6d6; font-size: .95rem; max-width: 36ch; }
.footer-col h5 { color: #fff; font-size: .82rem; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.footer-col a, .footer-col span { display: block; color: #9aa6d6; font-size: .95rem; padding: 5px 0; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { margin-top: 46px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.10);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: #7e8ac0; font-size: .88rem; }

/* ---------- Reveal animations ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal][data-delay="1"] { transition-delay: .08s; }
[data-reveal][data-delay="2"] { transition-delay: .16s; }
[data-reveal][data-delay="3"] { transition-delay: .24s; }
[data-reveal][data-delay="4"] { transition-delay: .32s; }

@keyframes float { 0%,100% { transform: translate(0,0) scale(1);} 50% { transform: translate(20px,-30px) scale(1.06);} }
@keyframes floatY { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-22px);} }
.phone--b { animation-name: floatY; }
@keyframes floatY-b { 0%,100% { transform: rotate(6deg) translateY(0);} 50% { transform: rotate(6deg) translateY(-22px);} }
.phone--b { animation-name: floatY-b; }

/* ---------- Responsive ---------- */
@media (max-width: 940px) {
  .hero-inner { grid-template-columns: 1fr; gap: 30px; }
  .hero-visual { height: 440px; order: -1; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .works-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .product, .product:nth-child(even) .product-media { grid-template-columns: 1fr; }
  .product:nth-child(even) .product-media { order: 0; }
  .product-media { order: -1; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 30px; }
}
@media (max-width: 720px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: block; }
  .site-header.menu-open .nav-links {
    display: flex; flex-direction: column; align-items: stretch;
    position: absolute; top: 100%; left: 16px; right: 16px;
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: 10px; box-shadow: var(--shadow); gap: 2px;
  }
  .site-header.menu-open .nav-links a { padding: 12px 14px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  body { font-size: 16px; }
}
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  [data-reveal] { opacity: 1; transform: none; transition: none; }
}
