/* ============================================================
   JElite — corporate stylesheet
   Palette: deep navy + gold · serif display + clean sans
   ============================================================ */

:root {
  --navy-900: #071A30;
  --navy-800: #0B2545;
  --navy-700: #123158;
  --navy-600: #1B3F6E;
  --navy-100: #E8EDF5;
  --gold-500: #C9A227;
  --gold-400: #D9B54A;
  --gold-300: #E5C878;
  --gold-800: #8A701C;
  --ink: #17233B;
  --muted: #57647C;
  --paper: #F7F5EF;
  --card: #FFFFFF;
  --line: #E5E1D4;
  --line-navy: rgba(229, 200, 120, .22);
  --green-wa: #1FAF57;
  --shadow-sm: 0 1px 2px rgba(11, 37, 69, .06), 0 2px 8px rgba(11, 37, 69, .06);
  --shadow-md: 0 2px 6px rgba(11, 37, 69, .07), 0 12px 32px rgba(11, 37, 69, .10);
  --font-serif: "Playfair Display", "Noto Serif SC", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", "Noto Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", sans-serif;
  --radius: 14px;
  --maxw: 1140px;
}

/* ---------- reset ---------- */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 16.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; vertical-align: middle; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; background: none; border: none; cursor: pointer; color: inherit; }

/* ---------- language switching ---------- */
html[lang="en"] .zh { display: none !important; }
html[lang="zh"] .en { display: none !important; }
html[lang="zh"] body {
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", var(--font-sans);
  letter-spacing: .01em;
}
html[lang="zh"] h1, html[lang="zh"] h2, html[lang="zh"] h3, html[lang="zh"] .serif {
  font-family: "Noto Serif SC", "Songti SC", "SimSun", var(--font-serif);
}

/* ---------- typography ---------- */
h1, h2, h3, .serif { font-family: var(--font-serif); font-weight: 700; line-height: 1.22; color: var(--navy-800); }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); letter-spacing: -.01em; }
h2 { font-size: clamp(1.65rem, 3vw, 2.35rem); letter-spacing: -.005em; }
h3 { font-size: 1.22rem; }
p { color: var(--muted); }
strong { color: var(--ink); }

.eyebrow {
  display: inline-block;
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold-800);
  margin-bottom: 14px;
}
.on-navy .eyebrow { color: var(--gold-300); }

.lede { font-size: 1.13rem; line-height: 1.7; }

.gold-rule {
  width: 56px; height: 3px; border: none;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  margin: 22px 0 0;
}
.center .gold-rule { margin-left: auto; margin-right: auto; }

/* ---------- layout ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section.tight { padding: 64px 0; }
.section.white { background: var(--card); }
.section.navy { background: linear-gradient(180deg, var(--navy-800), var(--navy-900)); }
.section.navy, .section.navy h2, .section.navy h3 { color: #fff; }
.section.navy p { color: var(--navy-100); }
.center { text-align: center; }
.section-head { max-width: 720px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; }
.section-head p { margin-top: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .97rem;
  letter-spacing: .01em;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease, border-color .15s ease;
  white-space: nowrap;
}
.btn svg { flex: none; }
.btn:hover { transform: translateY(-1px); }
.btn-gold {
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900);
  box-shadow: 0 6px 18px rgba(201, 162, 39, .35);
}
.btn-gold:hover { box-shadow: 0 10px 24px rgba(201, 162, 39, .45); }
.btn-outline {
  border: 1.5px solid rgba(255, 255, 255, .45);
  color: #fff;
}
.btn-outline:hover { border-color: var(--gold-300); color: var(--gold-300); }
.btn-outline-navy {
  border: 1.5px solid rgba(11, 37, 69, .3);
  color: var(--navy-800);
}
.btn-outline-navy:hover { border-color: var(--gold-500); color: var(--gold-800); }
.btn-wa { background: var(--green-wa); color: #fff; box-shadow: 0 6px 18px rgba(31, 175, 87, .35); }
.btn-wa:hover { box-shadow: 0 10px 24px rgba(31, 175, 87, .45); }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }

/* ---------- top bar + nav ---------- */
.topbar {
  background: var(--navy-900);
  color: var(--navy-100);
  font-size: .82rem;
  padding: 7px 0;
}
.topbar .wrap { display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.topbar a { color: var(--gold-300); }
.topbar .tb-note { opacity: .85; }

.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .2s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav .wrap { display: flex; align-items: center; gap: 28px; height: 74px; }

.brand { display: flex; align-items: center; gap: 12px; flex: none; }
.brand-name {
  font-family: var(--font-serif);
  font-weight: 700; font-size: 1.42rem; letter-spacing: .12em;
  color: var(--navy-800);
}
.brand-name .gold { color: var(--gold-500); }
.brand-tag {
  display: block; font-family: var(--font-sans);
  font-size: .58rem; font-weight: 600; letter-spacing: .3em;
  text-transform: uppercase; color: var(--muted); margin-top: 1px;
}

.nav-links { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav-links > li { position: relative; }
.nav-links a.nav-item, .nav-links button.nav-item {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 9px 13px; border-radius: 8px;
  font-size: .94rem; font-weight: 500; color: var(--ink);
}
.nav-links a.nav-item:hover, .nav-links button.nav-item:hover { color: var(--navy-800); background: var(--paper); }
.nav-links a.nav-item.active { color: var(--gold-800); font-weight: 600; }
.caret { transition: transform .18s ease; }

.dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 300px;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 8px;
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.dropdown:hover .caret, .dropdown:focus-within .caret { transform: rotate(180deg); }
.dropdown-menu a {
  display: flex; gap: 12px; align-items: flex-start;
  padding: 11px 12px; border-radius: 9px;
}
.dropdown-menu a:hover { background: var(--paper); }
.dropdown-menu .dd-icon { flex: none; width: 34px; height: 34px; border-radius: 9px; background: var(--navy-800); display: grid; place-items: center; }
.dropdown-menu .dd-title { font-weight: 600; font-size: .92rem; color: var(--navy-800); }
.dropdown-menu .dd-sub { font-size: .8rem; color: var(--muted); line-height: 1.4; margin-top: 1px; }

.nav-cta { margin-left: 6px; }
.nav-cta .btn { padding: 10px 20px; font-size: .9rem; }

.lang-toggle {
  display: inline-flex; align-items: center;
  border: 1px solid var(--line); border-radius: 999px;
  padding: 3px; margin-left: 10px; background: var(--paper);
}
.lang-toggle button {
  padding: 5px 12px; border-radius: 999px;
  font-size: .8rem; font-weight: 600; color: var(--muted);
}
.lang-toggle button.on { background: var(--navy-800); color: #fff; }

.burger { display: none; margin-left: auto; padding: 8px; }
.burger span { display: block; width: 24px; height: 2px; background: var(--navy-800); margin: 5px 0; border-radius: 2px; transition: .2s; }

/* ---------- hero ---------- */
.hero {
  position: relative;
  background:
    radial-gradient(900px 480px at 88% -10%, rgba(201, 162, 39, .16), transparent 60%),
    radial-gradient(700px 500px at -10% 110%, rgba(27, 63, 110, .55), transparent 60%),
    linear-gradient(160deg, var(--navy-800) 20%, var(--navy-900) 80%);
  color: #fff;
  overflow: hidden;
}
.hero .wrap {
  display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: 48px; align-items: center;
  padding-top: 88px; padding-bottom: 96px;
}
.hero h1 { color: #fff; }
.hero h1 .gold { color: var(--gold-300); font-style: italic; }
.hero .lede { color: var(--navy-100); margin-top: 22px; max-width: 560px; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 34px; }
.hero-trust {
  display: flex; flex-wrap: wrap; gap: 10px 26px; margin-top: 38px;
  font-size: .86rem; color: var(--navy-100);
}
.hero-trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero-trust svg { flex: none; }
.hero-art { position: relative; min-height: 340px; }

/* hero page variant (inner pages) */
.page-hero { text-align: left; }
.page-hero .wrap { display: block; padding-top: 68px; padding-bottom: 68px; }
.page-hero .lede { max-width: 640px; }
.crumbs { font-size: .84rem; color: var(--navy-100); opacity: .8; margin-bottom: 18px; }
.crumbs a:hover { color: var(--gold-300); }
.crumbs strong { color: #fff; font-weight: 600; }
.crumbs .sep { margin: 0 8px; opacity: .6; }

/* ---------- cards / grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
a.card:hover, .card.lift:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: rgba(201, 162, 39, .5); }

.svc-card { display: flex; flex-direction: column; }
.svc-icon {
  width: 54px; height: 54px; border-radius: 14px;
  background: linear-gradient(150deg, var(--navy-700), var(--navy-900));
  display: grid; place-items: center;
  margin-bottom: 20px;
  box-shadow: inset 0 0 0 1px rgba(229, 200, 120, .35);
}
.svc-card h3 { margin-bottom: 10px; }
.svc-card p { font-size: .95rem; }
.svc-points { margin: 16px 0 20px; display: grid; gap: 8px; }
.svc-points li { display: flex; gap: 10px; font-size: .9rem; color: var(--ink); align-items: baseline; }
.svc-points svg { flex: none; transform: translateY(2px); }
.card-link {
  margin-top: auto; font-weight: 600; font-size: .93rem; color: var(--gold-800);
  display: inline-flex; align-items: center; gap: 7px;
}
.svc-card:hover .card-link { gap: 11px; }
.card-link, .svc-card .card-link { transition: gap .18s ease; }

/* audience */
.aud-card { text-align: left; padding: 26px 24px; }
.aud-card .aud-ico { font-size: 1.5rem; margin-bottom: 12px; width: 46px; height: 46px; border-radius: 12px; background: var(--paper); border: 1px solid var(--line); display: grid; place-items: center; }
.aud-card h3 { font-size: 1.05rem; font-family: var(--font-sans); font-weight: 600; }
.aud-card p { font-size: .88rem; margin-top: 8px; line-height: 1.55; }

/* why band */
.why-item { position: relative; padding-left: 0; }
.why-num {
  font-family: var(--font-serif); font-size: 2.6rem; font-weight: 700;
  color: transparent; -webkit-text-stroke: 1.2px var(--gold-400);
  line-height: 1; margin-bottom: 14px;
}
.section.navy .why-item h3 { color: #fff; margin-bottom: 10px; }
.section.navy .why-item p { font-size: .95rem; }

/* stats */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; text-align: center; }
.stat .num {
  font-family: var(--font-serif); font-weight: 700;
  font-size: clamp(2rem, 4vw, 2.9rem); color: var(--gold-300); line-height: 1.1;
}
.stat .lbl { font-size: .88rem; color: var(--navy-100); margin-top: 6px; }
.stat .note { font-size: .7rem; opacity: .55; display: block; margin-top: 3px; }

/* testimonials */
.tst-card { position: relative; padding-top: 42px; }
.tst-mark {
  position: absolute; top: 18px; left: 26px;
  font-family: var(--font-serif); font-size: 3.4rem; line-height: 1;
  color: var(--gold-400); opacity: .55;
}
.tst-quote { font-size: .97rem; color: var(--ink); line-height: 1.7; }
.tst-who { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.tst-who .nm { font-weight: 600; font-size: .92rem; color: var(--navy-800); }
.tst-who .rl { font-size: .8rem; color: var(--muted); }
.sample-flag {
  display: inline-block; margin-top: 10px;
  font-size: .68rem; font-weight: 600; letter-spacing: .05em;
  color: #A05B1F; background: #FBF0DF; border: 1px dashed #E3B778;
  border-radius: 6px; padding: 2px 8px;
}

/* ---------- pricing ---------- */
.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; align-items: stretch; }
.price-card { display: flex; flex-direction: column; position: relative; padding: 34px 30px; }
.price-card.featured {
  border-color: var(--gold-500);
  box-shadow: 0 8px 30px rgba(201, 162, 39, .18);
  background: linear-gradient(180deg, #FFFDF6, #fff 45%);
}
.price-flag {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(180deg, var(--gold-400), var(--gold-500));
  color: var(--navy-900); font-size: .72rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 999px; white-space: nowrap;
}
.price-name { font-family: var(--font-sans); font-size: 1.02rem; font-weight: 700; color: var(--navy-800); }
.price-desc { font-size: .86rem; margin-top: 6px; min-height: 42px; }
.price-amt { margin: 18px 0 4px; display: flex; align-items: baseline; gap: 7px; flex-wrap: wrap; }
.price-amt .from { font-size: .8rem; color: var(--muted); }
.price-amt .val { font-family: var(--font-serif); font-size: 2.1rem; font-weight: 700; color: var(--navy-800); }
.price-amt .per { font-size: .85rem; color: var(--muted); }
.price-feats { margin: 20px 0 26px; display: grid; gap: 10px; }
.price-feats li { display: flex; gap: 10px; font-size: .9rem; align-items: baseline; }
.price-feats svg { flex: none; transform: translateY(2px); }
.price-feats .dim { color: var(--muted); }
.price-card .btn { margin-top: auto; justify-content: center; }
.price-note { text-align: center; font-size: .8rem; color: var(--muted); margin-top: 26px; }
.price-note .sample-flag { margin: 0 6px 0 0; }

/* ---------- checklist / includes ---------- */
.inc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 30px; }
.inc-item { display: flex; gap: 13px; background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 16px 18px; align-items: flex-start; }
.inc-item svg { flex: none; margin-top: 3px; }
.inc-item .t { font-weight: 600; font-size: .95rem; color: var(--navy-800); }
.inc-item .d { font-size: .85rem; color: var(--muted); margin-top: 2px; line-height: 1.5; }

/* ---------- steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; counter-reset: step; }
.step { position: relative; padding: 26px 22px 24px; }
.step .s-num {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--navy-800); color: var(--gold-300);
  font-family: var(--font-serif); font-weight: 700;
  display: grid; place-items: center; margin-bottom: 14px; font-size: 1rem;
}
.step h3 { font-size: 1rem; font-family: var(--font-sans); font-weight: 600; }
.step p { font-size: .86rem; margin-top: 7px; line-height: 1.55; }

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--card); border: 1px solid var(--line);
  border-radius: 12px; padding: 0 22px;
  transition: border-color .15s ease;
}
.faq details[open] { border-color: rgba(201, 162, 39, .55); box-shadow: var(--shadow-sm); }
.faq summary {
  cursor: pointer; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 18px 0; font-weight: 600; color: var(--navy-800); font-size: .98rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary .chev { flex: none; transition: transform .2s ease; color: var(--gold-800); }
.faq details[open] summary .chev { transform: rotate(180deg); }
.faq .ans { padding: 0 0 20px; font-size: .93rem; color: var(--muted); line-height: 1.7; }

/* ---------- CTA band ---------- */
.cta-band {
  position: relative;
  background:
    radial-gradient(600px 300px at 15% 0%, rgba(201, 162, 39, .18), transparent 60%),
    linear-gradient(150deg, var(--navy-800), var(--navy-900));
  border-radius: 22px;
  padding: 60px 56px;
  display: flex; align-items: center; justify-content: space-between; gap: 36px;
  overflow: hidden;
}
.cta-band::after {
  content: ""; position: absolute; inset: 10px;
  border: 1px solid var(--line-navy); border-radius: 14px; pointer-events: none;
}
.cta-band h2 { color: #fff; max-width: 560px; }
.cta-band p { color: var(--navy-100); margin-top: 12px; max-width: 520px; }
.cta-band .btn { flex: none; position: relative; z-index: 1; }

/* ---------- insights ---------- */
.post-card { display: flex; flex-direction: column; overflow: hidden; padding: 0; }
.post-cover { height: 150px; position: relative; background: linear-gradient(150deg, var(--navy-700), var(--navy-900)); display: grid; place-items: center; }
.post-cover.alt { background: linear-gradient(150deg, #6d5716, var(--gold-800)); }
.post-cover .pc-tag {
  position: absolute; top: 14px; left: 16px;
  font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  color: var(--gold-300); border: 1px solid var(--line-navy); border-radius: 999px; padding: 4px 11px;
}
.post-body { padding: 24px 26px 26px; display: flex; flex-direction: column; flex: 1; }
.post-body h3 { font-size: 1.08rem; line-height: 1.4; }
.post-body p { font-size: .88rem; margin-top: 10px; }
.post-meta { margin-top: 18px; font-size: .78rem; color: var(--muted); display: flex; gap: 14px; align-items: center; }
.badge-soon {
  display: inline-block; font-size: .7rem; font-weight: 700; letter-spacing: .06em;
  color: var(--gold-800); background: #F6EDD3; border-radius: 6px; padding: 3px 9px;
}

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.c-item { display: flex; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: flex-start; }
.c-item:last-child { border-bottom: none; }
.c-ico { flex: none; width: 44px; height: 44px; border-radius: 12px; background: var(--navy-800); display: grid; place-items: center; }
.c-item .t { font-weight: 600; color: var(--navy-800); font-size: .95rem; }
.c-item .d { font-size: .92rem; color: var(--muted); margin-top: 2px; }
.c-item .d a { color: var(--gold-800); font-weight: 500; }
.ph { color: #A05B1F; background: #FBF0DF; border-bottom: 1px dashed #E3B778; padding: 0 3px; border-radius: 3px; font-style: normal; }

.wa-panel {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border-radius: 18px; padding: 40px 36px; color: #fff;
  position: sticky; top: 100px;
}
.wa-panel h3 { color: #fff; font-size: 1.35rem; }
.wa-panel p { color: var(--navy-100); font-size: .93rem; margin-top: 12px; }
.wa-panel .btn { margin-top: 24px; width: 100%; justify-content: center; }
.wa-hours { margin-top: 22px; padding-top: 20px; border-top: 1px solid var(--line-navy); font-size: .84rem; color: var(--navy-100); display: grid; gap: 6px; }
.wa-hours strong { color: var(--gold-300); font-weight: 600; }

/* ---------- footer ---------- */
.footer { background: var(--navy-900); color: var(--navy-100); padding: 64px 0 0; font-size: .9rem; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .18em; text-transform: uppercase; margin-bottom: 18px; font-weight: 600; }
.footer ul { display: grid; gap: 10px; }
.footer a:hover { color: var(--gold-300); }
.footer .f-brand p { margin-top: 16px; font-size: .87rem; color: var(--navy-100); opacity: .85; max-width: 300px; }
.footer .brand-name { color: #fff; }
.f-contact li { display: flex; gap: 10px; align-items: baseline; }
.f-contact svg { flex: none; transform: translateY(2px); }
.footer-bottom {
  border-top: 1px solid rgba(232, 237, 245, .12);
  padding: 22px 0; font-size: .78rem; opacity: .7;
  display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap;
}

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 80;
  width: 58px; height: 58px; border-radius: 50%;
  background: var(--green-wa);
  display: grid; place-items: center;
  box-shadow: 0 8px 24px rgba(31, 175, 87, .45);
  transition: transform .15s ease, box-shadow .15s ease;
}
.wa-float:hover { transform: scale(1.07); box-shadow: 0 12px 30px rgba(31, 175, 87, .55); }
.wa-float::before {
  content: ""; position: absolute; inset: -6px; border-radius: 50%;
  border: 2px solid rgba(31, 175, 87, .4);
  animation: wa-pulse 2.4s ease-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(.85); opacity: 1; }
  70%, 100% { transform: scale(1.25); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .wa-float::before { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- reveal animation ---------- */
.rv { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s ease; }
.rv.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .rv { opacity: 1; transform: none; transition: none; } }

/* ---------- mobile ---------- */
@media (max-width: 980px) {
  .nav-links {
    position: fixed; inset: 74px 0 auto 0; z-index: 55;
    background: #fff; border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 2px;
    padding: 14px 20px 22px;
    box-shadow: var(--shadow-md);
    display: none; margin-left: 0;
    max-height: calc(100vh - 74px); overflow: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a.nav-item, .nav-links button.nav-item { padding: 12px 10px; font-size: 1rem; width: 100%; }
  .dropdown-menu {
    position: static; opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border: none; border-left: 2px solid var(--gold-400);
    border-radius: 0; margin: 2px 0 8px 12px; padding: 0; min-width: 0;
  }
  .dropdown .caret { display: none; }
  .nav-cta { margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .lang-toggle { margin: 12px 0 0; justify-content: center; }
  .burger { display: block; }

  .hero .wrap { grid-template-columns: 1fr; gap: 30px; padding-top: 60px; padding-bottom: 64px; }
  .hero-art { min-height: 220px; display: none; }
  .grid-3, .grid-4, .price-grid, .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; gap: 30px 16px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .wa-panel { position: static; }
  .cta-band { flex-direction: column; align-items: flex-start; padding: 44px 34px; }
  .inc-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .section { padding: 60px 0; }
  .grid-3, .grid-4, .price-grid, .steps { grid-template-columns: 1fr; }
  .topbar .tb-note { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  body { font-size: 16px; }
}
