/* ============================================================
   KnipChat — Marketing Landing
   Warm editorial SaaS · cream paper · emerald + cyan
   ============================================================ */

:root {
  /* palette */
  --cream:       #F6F2E9;
  --cream-deep:  #EFE9DA;
  --paper:       #FFFFFF;
  --ink:         #11211A;
  --ink-soft:    #43554B;
  --green:       #119E5A;
  --green-deep:  #0B7C45;
  --green-tint:  #DCF2E3;
  --cyan:        #06B6D4;
  --cyan-deep:   #0E7490;
  --amber:       #F2B14B;
  --line:        rgba(17, 33, 26, .12);
  --line-soft:   rgba(17, 33, 26, .07);

  /* type */
  --font-display: "Bricolage Grotesque", "IBM Plex Sans Arabic", sans-serif;
  --font-body:    "Hanken Grotesk", "IBM Plex Sans Arabic", sans-serif;

  --radius:    18px;
  --radius-lg: 28px;
  --shadow:    0 24px 60px -28px rgba(11, 124, 69, .35);
  --shadow-sm: 0 8px 24px -12px rgba(17, 33, 26, .22);
  --maxw: 1160px;
}

/* RTL swaps the body/display font priority to Arabic */
html[dir="rtl"] {
  --font-display: "IBM Plex Sans Arabic", "Bricolage Grotesque", sans-serif;
  --font-body:    "IBM Plex Sans Arabic", "Hanken Grotesk", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  overflow-x: hidden;
  /* subtle paper grain */
  background-image:
    radial-gradient(1200px 600px at 80% -10%, rgba(6,182,212,.10), transparent 60%),
    radial-gradient(900px 500px at -10% 10%, rgba(17,158,90,.10), transparent 55%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.025'/%3E%3C/svg%3E");
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; line-height: 1.08; letter-spacing: -.02em; margin: 0; }

.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: 24px; }

.skip-link {
  position: absolute; inset-inline-start: -999px; top: 0; z-index: 200;
  background: var(--ink); color: var(--cream); padding: 10px 16px; border-radius: 0 0 12px 12px;
}
.skip-link:focus { inset-inline-start: 0; }

/* ---------- buttons ---------- */
.btn {
  --b: var(--ink);
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-body); font-weight: 600; font-size: 15px;
  padding: 11px 20px; border-radius: 999px; border: 1.5px solid transparent;
  cursor: pointer; transition: transform .18s ease, box-shadow .25s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
}
.btn-lg { padding: 15px 28px; font-size: 16px; }
.btn-solid { background: var(--green); color: #fff; box-shadow: 0 10px 24px -10px rgba(11,124,69,.7); }
.btn-solid:hover { background: var(--green-deep); transform: translateY(-2px); box-shadow: 0 16px 30px -12px rgba(11,124,69,.75); }
.btn-line { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-line:hover { background: var(--ink); color: var(--cream); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--ink); padding-inline: 12px; }
.btn-ghost:hover { color: var(--green-deep); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  backdrop-filter: blur(14px);
  background: rgba(246,242,233,.82);
  border-bottom: 1px solid var(--line-soft);
}
.nav { display: flex; align-items: center; gap: 22px; height: 70px; }
.brand { display: inline-flex; align-items: center; gap: 10px; font-family: var(--font-display); font-weight: 800; font-size: 21px; letter-spacing: -.03em; }
.brand-mark { color: var(--green); display: inline-flex; }
.nav-links { display: flex; gap: 26px; margin-inline: auto; }
.nav-links a { font-weight: 500; font-size: 15px; color: var(--ink-soft); position: relative; padding: 4px 0; }
.nav-links a::after { content: ""; position: absolute; bottom: -2px; inset-inline-start: 0; width: 0; height: 2px; background: var(--green); transition: width .25s ease; }
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }
.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-login { display: none; }

/* ---------- language switch ---------- */
.lang-switch { position: relative; }
.lang-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--paper); border: 1.5px solid var(--line); border-radius: 999px;
  padding: 8px 12px; cursor: pointer; font-family: var(--font-body); font-weight: 600; font-size: 14px; color: var(--ink);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.lang-btn:hover { border-color: var(--green); box-shadow: var(--shadow-sm); }
.lang-flag { font-size: 16px; line-height: 1; }
.lang-caret { transition: transform .2s ease; opacity: .6; }
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
  position: absolute; inset-inline-end: 0; top: calc(100% + 8px);
  list-style: none; margin: 0; padding: 6px; min-width: 178px;
  background: var(--paper); border: 1px solid var(--line); border-radius: 14px; box-shadow: var(--shadow);
  opacity: 0; transform: translateY(-8px) scale(.98); pointer-events: none;
  transition: opacity .18s ease, transform .18s ease; z-index: 50;
}
.lang-switch.up .lang-menu { top: auto; bottom: calc(100% + 8px); transform: translateY(8px) scale(.98); }
.lang-switch.open .lang-menu { opacity: 1; transform: translateY(0) scale(1); pointer-events: auto; }
.lang-menu li {
  display: flex; align-items: center; gap: 10px; padding: 9px 12px; border-radius: 9px;
  cursor: pointer; font-weight: 500; font-size: 15px; transition: background .15s ease;
}
.lang-menu li:hover, .lang-menu li[aria-selected="true"] { background: var(--green-tint); }
.lang-menu li[aria-selected="true"] { font-weight: 700; }

/* ---------- hero ---------- */
.hero { position: relative; padding-top: 64px; overflow: hidden; }
.hero-glow {
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background:
    radial-gradient(640px 380px at 78% 22%, rgba(6,182,212,.20), transparent 65%),
    radial-gradient(560px 420px at 10% 8%, rgba(17,158,90,.18), transparent 60%);
}
.hero-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 56px; align-items: center;
  padding-bottom: 56px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-tint); color: var(--green-deep);
  font-weight: 700; font-size: 13px; letter-spacing: .01em;
  padding: 7px 14px; border-radius: 999px; border: 1px solid rgba(11,124,69,.18);
}
.badge::first-letter { color: var(--green); }
.hero-title { font-size: clamp(2.6rem, 5.4vw, 4.3rem); font-weight: 800; margin-top: 22px; }
.hero-title em { font-style: normal; color: var(--green-deep); position: relative; white-space: nowrap; }
.hero-title em::after {
  content: ""; position: absolute; inset-inline: -2px; bottom: 4px; height: .28em; z-index: -1;
  background: linear-gradient(90deg, var(--amber), #ffd98a); border-radius: 4px; opacity: .55;
}
.hero-sub { font-size: clamp(1.05rem, 1.6vw, 1.28rem); color: var(--ink-soft); max-width: 33ch; margin-top: 22px; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.hero-note { font-size: 14px; color: var(--ink-soft); margin-top: 18px; font-weight: 500; }

/* phone mockup */
.hero-visual { position: relative; justify-self: center; }
.phone {
  position: relative; width: 320px; max-width: 80vw;
  background: #0c1813; border-radius: 38px; padding: 12px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(0,0,0,.4) inset;
  transform: rotate(1.4deg);
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty { 0%,100% { transform: rotate(1.4deg) translateY(0); } 50% { transform: rotate(1.4deg) translateY(-12px); } }
.phone-notch { position: absolute; top: 16px; left: 50%; transform: translateX(-50%); width: 92px; height: 7px; background: #000; border-radius: 99px; z-index: 3; }
.chat-head {
  display: flex; align-items: center; gap: 10px;
  background: var(--green-deep); color: #fff; padding: 22px 14px 12px; border-radius: 28px 28px 0 0;
}
.chat-avatar { width: 34px; height: 34px; display: grid; place-items: center; background: rgba(255,255,255,.18); border-radius: 50%; font-size: 17px; }
.chat-id { display: flex; flex-direction: column; line-height: 1.2; }
.chat-id strong { font-size: 14px; font-weight: 700; }
.chat-id small { font-size: 11px; opacity: .85; }
.chat-wa { margin-inline-start: auto; }
.chat-body {
  background: #E5DDD3;
  background-image: radial-gradient(rgba(0,0,0,.04) 1px, transparent 1px);
  background-size: 16px 16px;
  padding: 16px 12px; display: flex; flex-direction: column; gap: 9px; min-height: 320px;
}
.bubble {
  max-width: 82%; padding: 9px 12px; border-radius: 14px; font-size: 13.5px; line-height: 1.42;
  box-shadow: 0 1px 1px rgba(0,0,0,.08); position: relative;
  opacity: 0; transform: translateY(10px) scale(.96);
}
.chat-body.play .bubble { animation: pop .45s cubic-bezier(.2,.8,.3,1.2) forwards; }
.bubble.in  { align-self: flex-start; background: #fff; border-top-left-radius: 4px; }
.bubble.out { align-self: flex-end; background: #D9FDD3; border-top-right-radius: 4px; }
html[dir="rtl"] .bubble.in  { border-top-left-radius: 14px; border-top-right-radius: 4px; }
html[dir="rtl"] .bubble.out { border-top-right-radius: 14px; border-top-left-radius: 4px; }
.bubble:nth-child(1){ animation-delay:.2s } .bubble:nth-child(2){ animation-delay:.9s }
.bubble:nth-child(3){ animation-delay:1.5s } .bubble:nth-child(4){ animation-delay:2.1s }
.bubble:nth-child(5){ animation-delay:2.7s }
@keyframes pop { to { opacity: 1; transform: translateY(0) scale(1); } }
.chat-input {
  display: flex; align-items: center; gap: 8px; background: #fff; padding: 9px 12px;
  border-radius: 0 0 28px 28px; color: #9aa39c; font-size: 13px;
}
.chat-input span:first-child { flex: 1; }
.chat-send { width: 28px; height: 28px; border-radius: 50%; background: var(--green); color: #fff; display: grid; place-items: center; font-size: 13px; }

.float-card {
  position: absolute; background: var(--paper); border: 1px solid var(--line);
  border-radius: 14px; padding: 10px 14px; box-shadow: var(--shadow); display: flex; flex-direction: column; line-height: 1.1;
}
.float-card strong { font-family: var(--font-display); font-size: 22px; color: var(--green-deep); }
.float-card small { font-size: 11.5px; color: var(--ink-soft); }
.float-1 { top: 30px; inset-inline-start: -28px; animation: floaty 7s ease-in-out infinite .5s; }
.float-2 { bottom: 56px; inset-inline-end: -26px; animation: floaty 6.5s ease-in-out infinite 1s; }
.float-2 strong { color: var(--cyan-deep); }

/* marquee */
.marquee { border-block: 1px solid var(--line-soft); overflow: hidden; background: rgba(255,255,255,.4); }
.marquee-track { display: flex; gap: 48px; padding: 16px 0; width: max-content; animation: scroll 28s linear infinite; }
html[dir="rtl"] .marquee-track { animation-direction: reverse; }
.marquee-track span { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 48px; white-space: nowrap; }
.marquee-track span::after { content: "✦"; color: var(--green); }
@keyframes scroll { to { transform: translateX(-50%); } }

/* ---------- sections ---------- */
.section { padding: 92px 0; position: relative; }
.section-tint { background: linear-gradient(180deg, transparent, rgba(220,242,227,.5) 30%, rgba(220,242,227,.5) 70%, transparent); }
.section-head { max-width: 640px; margin: 0 auto 52px; text-align: center; }
.section-head.left { text-align: start; margin-inline: 0; }
.eyebrow { font-family: var(--font-body); font-weight: 700; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; color: var(--green-deep); }
.section-title { font-size: clamp(1.9rem, 3.6vw, 2.9rem); margin-top: 12px; }
.section-sub { color: var(--ink-soft); font-size: 1.12rem; margin-top: 14px; }

/* steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; counter-reset: s; }
.step-card {
  position: relative; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 34px 28px; box-shadow: var(--shadow-sm); transition: transform .25s ease, box-shadow .25s ease;
}
.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.step-no { font-family: var(--font-display); font-weight: 800; font-size: 14px; color: var(--green); letter-spacing: .1em; }
.step-ico { display: block; font-size: 34px; margin: 14px 0 16px; }
.step-card h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step-card p { color: var(--ink-soft); font-size: .98rem; margin: 0; }
.step-card::before { /* connector arrow */
  content: "→"; position: absolute; inset-inline-end: -18px; top: 50%; transform: translateY(-50%);
  font-size: 22px; color: var(--green); opacity: .5;
}
html[dir="rtl"] .step-card::before { content: "←"; }
.step-card:last-child::before { display: none; }

/* features */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.feature {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 26px; transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.feature:hover { transform: translateY(-5px); border-color: var(--green); box-shadow: var(--shadow-sm); }
.feature-ico { font-size: 28px; display: inline-grid; place-items: center; width: 52px; height: 52px; background: var(--green-tint); border-radius: 14px; margin-bottom: 16px; }
.feature h3 { font-size: 1.18rem; margin-bottom: 7px; }
.feature p { color: var(--ink-soft); font-size: .97rem; margin: 0; }

/* video */
.video { margin: 0; }
.video-frame {
  position: relative; width: 100%; aspect-ratio: 16/9;
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); background: var(--ink);
}
.video-el { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; background: #000; }
.video-overlay {
  position: absolute; inset: 0; width: 100%; height: 100%;
  border: none; padding: 0; cursor: pointer;
  background: linear-gradient(180deg, rgba(8,20,15,.12), rgba(8,20,15,.32));
  transition: opacity .4s ease, background .3s ease;
}
.video-overlay:hover { background: linear-gradient(180deg, rgba(8,20,15,.05), rgba(8,20,15,.22)); }
.video-frame.playing .video-overlay { opacity: 0; pointer-events: none; }
.video-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 84px; height: 84px; border-radius: 50%; background: var(--cream); color: var(--green-deep);
  display: grid; place-items: center; box-shadow: 0 12px 40px rgba(0,0,0,.45);
  transition: transform .2s ease;
}
html[dir="rtl"] .video-play svg { transform: scaleX(1); }
.video-frame:hover .video-play { transform: translate(-50%,-50%) scale(1.08); }
.video-play::before { content: ""; position: absolute; inset: -10px; border-radius: 50%; border: 2px solid rgba(246,242,233,.4); animation: ring 2.4s ease-out infinite; }
@keyframes ring { 0% { transform: scale(.9); opacity: .8; } 100% { transform: scale(1.5); opacity: 0; } }
.video-label { position: absolute; inset-inline-start: 22px; bottom: 20px; color: var(--cream); font-weight: 600; font-size: 15px; background: rgba(0,0,0,.35); padding: 7px 14px; border-radius: 999px; backdrop-filter: blur(6px); }
.video-cap { text-align: center; color: var(--ink-soft); font-size: .92rem; margin-top: 16px; }

/* faq */
.faq-wrap { display: grid; grid-template-columns: .8fr 1.2fr; gap: 48px; align-items: start; }
.faq { display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: 6px 22px; transition: border-color .2s ease; }
.faq-item[open] { border-color: var(--green); }
.faq-item summary { list-style: none; cursor: pointer; padding: 16px 0; font-family: var(--font-display); font-weight: 600; font-size: 1.08rem; display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 24px; color: var(--green); transition: transform .2s ease; line-height: 1; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { margin: 0 0 18px; color: var(--ink-soft); }

/* cta */
.cta { padding: 96px 0; }
.cta-inner {
  background: radial-gradient(120% 160% at 10% 0%, var(--green), var(--green-deep));
  border-radius: 36px; padding: 64px 48px; text-align: center; color: #fff;
  box-shadow: var(--shadow); position: relative; overflow: hidden;
}
.cta-inner::before { content: ""; position: absolute; inset: 0; background: radial-gradient(50% 60% at 90% 110%, rgba(6,182,212,.45), transparent 60%); }
.cta-title { font-size: clamp(1.8rem, 3.6vw, 2.8rem); max-width: 18ch; margin-inline: auto; position: relative; }
.cta-sub { color: rgba(255,255,255,.86); font-size: 1.1rem; margin: 16px auto 0; max-width: 46ch; position: relative; }
/* two-step lead form */
.lead-form { max-width: 520px; margin: 30px auto 0; position: relative; text-align: start; }
.lead-step { display: grid; gap: 14px; }
.lead-step[hidden] { display: none; }
.lead-step-label { display: flex; align-items: center; justify-content: center; gap: 10px; margin: 0 0 2px; font-weight: 600; font-size: 13px; color: rgba(255,255,255,.9); }
.lead-dots { display: inline-flex; gap: 6px; }
.lead-dots i { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,.35); transition: all .3s ease; }
.lead-dots i.on { width: 22px; border-radius: 99px; background: var(--cream); }
.lead-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.field { display: grid; gap: 6px; text-align: start; }
.field > span { font-size: 13px; font-weight: 600; color: rgba(255,255,255,.85); }
.field input {
  width: 100%; padding: 13px 16px; border-radius: 12px; border: 1.5px solid transparent;
  font-family: var(--font-body); font-size: 15px; background: rgba(255,255,255,.96); color: var(--ink);
}
.field input:focus { outline: none; border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(6,182,212,.4); }
.lead-next { width: 100%; margin-top: 6px; }
.lead-actions { display: flex; gap: 10px; margin-top: 6px; }
.lead-actions .btn-solid { flex: 1; background: var(--ink); }
.lead-actions .btn-solid:hover { background: #000; }
.lead-back { background: transparent; border-color: rgba(246,242,233,.5); color: var(--cream); }
.lead-back:hover { background: rgba(246,242,233,.12); color: #fff; border-color: var(--cream); }
.lead-msg { text-align: center; font-weight: 600; margin: 14px 0 0; min-height: 1.2em; }
.lead-msg.ok { color: #d8ffe6; }
.lead-msg.error { color: #ffd7d2; }
.cta-note { color: rgba(255,255,255,.8); font-size: 14px; margin-top: 16px; position: relative; }
.cta-trust { color: rgba(255,255,255,.9); font-size: 13px; font-weight: 600; margin-top: 10px; position: relative; letter-spacing: .01em; }

/* mid-page CTA strip */
.cta-strip { padding: 8px 0 0; }
.cta-strip .inner {
  background: radial-gradient(120% 200% at 0% 0%, #1c3a2d, var(--ink));
  color: var(--cream); border-radius: var(--radius-lg); padding: 30px 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap;
  box-shadow: var(--shadow-sm);
}
.cta-strip h2 { color: var(--cream); font-size: clamp(1.3rem, 2.6vw, 1.9rem); max-width: 24ch; margin: 0; }
.cta-strip-action { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
html[dir="rtl"] .cta-strip-action { align-items: flex-end; }
.cta-strip-note { font-size: 12.5px; color: rgba(246,242,233,.7); }

/* footer CTA */
.footer-cta { margin-top: 20px; }

/* footer */
.site-footer { background: var(--ink); color: rgba(246,242,233,.72); padding: 64px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer .brand { color: var(--cream); }
.site-footer .brand-mark { color: var(--green); }
.footer-tag { margin-top: 14px; max-width: 38ch; font-size: .95rem; }
.footer-col h4 { font-family: var(--font-display); color: var(--cream); font-size: 15px; margin-bottom: 14px; letter-spacing: .02em; }
.footer-col a { display: block; padding: 5px 0; font-size: .95rem; transition: color .2s ease; }
.footer-col a:hover { color: var(--green); }
.footer-col .lang-btn { background: rgba(246,242,233,.06); border-color: rgba(246,242,233,.2); color: var(--cream); }
.footer-col .lang-menu { background: #1b2c24; border-color: rgba(246,242,233,.14); }
.footer-col .lang-menu li { color: var(--cream); }
.footer-col .lang-menu li:hover, .footer-col .lang-menu li[aria-selected="true"] { background: rgba(17,158,90,.3); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; margin-top: 44px; padding-top: 24px; border-top: 1px solid rgba(246,242,233,.12); font-size: 13px; flex-wrap: wrap; }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
.hero-copy .reveal:nth-child(1) { transition-delay: .05s; }
.hero-copy .reveal:nth-child(2) { transition-delay: .12s; }
.hero-copy .reveal:nth-child(3) { transition-delay: .19s; }
.hero-copy .reveal:nth-child(4) { transition-delay: .26s; }
.hero-copy .reveal:nth-child(5) { transition-delay: .33s; }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; padding-top: 24px; }
  .hero-sub { margin-inline: auto; }
  .hero-cta { justify-content: center; }
  .steps, .feature-grid { grid-template-columns: 1fr 1fr; }
  .step-card::before { display: none; }
  .lang-pills { justify-content: center; }
  .faq-wrap { grid-template-columns: 1fr; gap: 24px; }
  .section-head.left { text-align: center; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .nav { gap: 12px; }
  .btn.nav-login, .nav-actions .btn-solid { display: none; }
  .section { padding: 64px 0; }
  .steps, .feature-grid { grid-template-columns: 1fr; }
  .cta-inner { padding: 44px 24px; }
  .lead-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .lang-current { display: none; }
  .lang-switch.up .lang-current { display: inline; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  .bubble { opacity: 1; transform: none; }
}
