:root{
  --primary:#0B6453;
  --primary-dark:#06463A;
  --primary-light:#107A64;
  --primary-wash:#EAF6F1;
  --accent:#F4C9A6;
  --warm:#E89A6F;
  --line:#06C755;
  --bg:#FAF7F2;
  --card:#FFFFFF;
  --text:#1F2E2A;
  --text-soft:#5A6964;
  --border:#E6EAE5;
  --shadow:0 10px 40px rgba(11,100,83,.08);
  --shadow-lg:0 20px 60px rgba(11,100,83,.16);
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family:'Noto Sans TC',-apple-system,BlinkMacSystemFont,'PingFang TC',sans-serif;
  background:var(--bg);color:var(--text);line-height:1.6;
  -webkit-font-smoothing:antialiased;
}
.wrap{max-width:1180px;margin:0 auto;padding:0 24px}
.eyebrow{
  display:inline-flex;align-items:center;gap:8px;
  font-size:13px;font-weight:700;letter-spacing:1px;
  color:var(--primary);text-transform:uppercase;
}
.eyebrow .dot{width:6px;height:6px;border-radius:50%;background:var(--accent)}
.btn{
  display:inline-flex;align-items:center;gap:8px;
  padding:14px 26px;border-radius:999px;
  font-family:inherit;font-size:15px;font-weight:700;
  text-decoration:none;cursor:pointer;border:0;
  transition:transform .2s,box-shadow .2s;
}
.btn svg{width:18px;height:18px}
.btn--primary{background:var(--primary);color:#fff;box-shadow:0 8px 24px rgba(11,100,83,.3)}
.btn--primary:hover{transform:translateY(-2px);box-shadow:0 12px 30px rgba(11,100,83,.4)}
.btn--line{background:var(--line);color:#fff;box-shadow:0 8px 24px rgba(6,199,85,.3)}
.btn--line:hover{transform:translateY(-2px)}
.btn--ghost{background:transparent;color:var(--primary);border:2px solid var(--primary)}
.btn--ghost:hover{background:var(--primary);color:#fff}

/* ===== NAV ===== */
.nav{
  position:sticky;top:0;z-index:100;
  background:rgba(250,247,242,.97);
  border-bottom:1px solid var(--border);
}
.nav__inner{display:flex;align-items:center;justify-content:space-between;height:68px}
.brand{display:flex;align-items:center;gap:10px;text-decoration:none;color:var(--text)}
.brand__mark{width:38px;height:38px}
.brand__name{font-size:17px;font-weight:900;color:var(--primary)}
.brand__sub{font-size:11px;color:var(--text-soft);display:block;margin-top:-2px}
.nav__links{display:flex;gap:32px}
.nav__links a{color:var(--text-soft);text-decoration:none;font-weight:500;font-size:15px}
.nav__links a:hover{color:var(--primary)}
@media(max-width:760px){.nav__links{display:none}}

/* ===== HERO ===== */
.hero{
  position:relative;padding:64px 0 80px;overflow:hidden;
  background:linear-gradient(135deg,#FAF7F2 0%,#EAF6F1 100%);
}
.hero__inner{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.hero h1{font-size:48px;font-weight:900;line-height:1.2;margin:18px 0 18px;color:var(--text)}
.hero h1 .hl{color:var(--primary);background:linear-gradient(180deg,transparent 60%,rgba(244,201,166,.5) 60%)}
.hero__lead{font-size:18px;color:var(--text-soft);margin-bottom:28px;max-width:520px}
.hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-bottom:28px}
.hero__chips{display:flex;gap:10px;flex-wrap:wrap;list-style:none}
.hero__chip{
  display:inline-flex;align-items:center;gap:6px;
  padding:8px 14px;border-radius:999px;
  background:#fff;color:var(--primary);font-size:13px;font-weight:600;
  box-shadow:0 2px 8px rgba(11,100,83,.06);
}
.hero__chip svg{width:14px;height:14px}

/* Hero visual — 手機+LINE 對話情境 */
.hero__visual{position:relative;height:560px}
.phone{
  position:absolute;width:280px;height:560px;
  background:#1F2E2A;border-radius:38px;padding:10px;
  box-shadow:var(--shadow-lg);
  left:50%;top:0;transform:translateX(-50%);
}
.phone__screen{
  width:100%;height:100%;background:#fff;border-radius:30px;overflow:hidden;
  display:flex;flex-direction:column;
}
.phone__bar{
  height:62px;background:var(--line);color:#fff;
  display:flex;align-items:center;padding:0 16px;gap:10px;
  border-radius:30px 30px 0 0;
}
.phone__avatar{
  width:38px;height:38px;border-radius:50%;
  background:#fff;display:flex;align-items:center;justify-content:center;
  color:var(--line);font-weight:900;font-size:16px;
}
.phone__title{font-size:14px;font-weight:700}
.phone__sub{font-size:11px;opacity:.85;margin-top:-2px}
.phone__body{flex:1;background:#EFE7DC;padding:14px;overflow:hidden}
.msg{display:flex;margin-bottom:10px}
.msg--out{justify-content:flex-end}
.msg__bubble{
  max-width:78%;padding:10px 14px;border-radius:18px;
  font-size:13px;line-height:1.45;
  background:#fff;color:var(--text);box-shadow:0 1px 2px rgba(0,0,0,.05);
}
.msg--out .msg__bubble{background:#A6E879;color:#1F2E2A;border-bottom-right-radius:4px}
.msg--in .msg__bubble{border-bottom-left-radius:4px}
.msg__time{
  font-size:10px;color:var(--text-soft);
  align-self:flex-end;margin:0 6px 2px;white-space:nowrap;
}
.msg__sticker{
  width:80px;height:80px;background:linear-gradient(135deg,#FFE5C9,#F4C9A6);
  border-radius:14px;display:flex;align-items:center;justify-content:center;
  font-size:40px;
}
@keyframes rise{from{opacity:0;transform:translateY(8px)}to{opacity:1;transform:none}}

.hero__float{
  position:absolute;z-index:5;
  background:#fff;padding:12px 16px;border-radius:16px;
  display:flex;align-items:center;gap:10px;
  box-shadow:var(--shadow-lg);font-size:13px;
}
.hero__float .ico{
  width:36px;height:36px;border-radius:10px;
  display:flex;align-items:center;justify-content:center;
}
.hero__float .ico svg{width:18px;height:18px}
.hero__float .t1{display:block;font-weight:700;color:var(--text);font-size:13px}
.hero__float .t2{display:block;color:var(--text-soft);font-size:11px}
.hero__float--free{left:-10px;top:80px;animation-delay:.2s}
.hero__float--fast{right:-20px;top:200px;animation-delay:.4s}
.hero__float--view{left:-30px;bottom:80px;animation-delay:.6s}

@media(max-width:900px){
  .hero__inner{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .hero__visual{height:520px;margin-top:20px}
  .hero__float--free{left:0}
  .hero__float--fast{right:0}
  .hero__float--view{left:0}
}

/* ===== SECTION GENERIC ===== */
.section{padding:96px 0}
.section-head{text-align:center;max-width:680px;margin:0 auto 56px}
.section-head h2{font-size:38px;font-weight:900;line-height:1.25;margin:18px 0 16px}
.section-head .lead{font-size:17px;color:var(--text-soft)}
@media(max-width:760px){.section{padding:64px 0}.section-head h2{font-size:28px}}

/* ===== FEATURES ===== */
.features{background:#fff}
.feature-row{
  display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:center;
  padding:48px 0;
}
.feature-row:nth-child(even){direction:rtl}
.feature-row:nth-child(even)>*{direction:ltr}
.feature-row__num{
  font-size:13px;font-weight:900;letter-spacing:2px;color:var(--accent);
  margin-bottom:10px;
}
.feature-row h3{font-size:28px;font-weight:900;line-height:1.3;margin-bottom:14px}
.feature-row__desc{color:var(--text-soft);font-size:16px;margin-bottom:18px}
.feature-row__list{list-style:none;display:grid;gap:10px}
.feature-row__list li{display:flex;gap:10px;font-size:15px}
.check{
  flex-shrink:0;width:22px;height:22px;border-radius:50%;
  background:var(--primary-wash);color:var(--primary);
  display:flex;align-items:center;justify-content:center;
}
.check svg{width:14px;height:14px}
@media(max-width:900px){
  .feature-row{grid-template-columns:1fr;gap:32px;padding:32px 0}
  .feature-row:nth-child(even){direction:ltr}
  .feature-row h3{font-size:22px}
}

/* mock 卡片通用 */
.mock{
  background:linear-gradient(135deg,#EAF6F1,#F4ECE0);
  border-radius:24px;padding:24px;
  box-shadow:var(--shadow-lg);
  position:relative;
}
.mock__bar{
  display:flex;align-items:center;gap:6px;
  margin-bottom:14px;
}
.mock__dot{width:10px;height:10px;border-radius:50%;background:#D7DEDA}
.mock__title{margin-left:8px;font-size:12px;color:var(--text-soft);font-weight:600}

/* Feature 1 — LINE 對話 */
.chat-card{background:#fff;border-radius:14px;padding:14px;min-height:340px;display:flex;flex-direction:column}
.chat-card__head{display:flex;align-items:center;gap:10px;padding-bottom:12px;border-bottom:1px solid var(--border)}
.chat-card__avatar{
  width:42px;height:42px;border-radius:50%;background:var(--accent);
  display:flex;align-items:center;justify-content:center;font-weight:900;color:#fff;
}
.chat-card__name{font-size:14px;font-weight:700}
.chat-card__role{font-size:11px;color:var(--text-soft)}
.chat-card__line{
  margin-left:auto;background:var(--line);color:#fff;
  font-size:10px;font-weight:700;padding:3px 8px;border-radius:8px;
}
.chat-card__body{padding:14px 0;flex:1}
.cb{margin-bottom:8px;display:flex}
.cb--out{justify-content:flex-end}
.cb__msg{
  max-width:80%;padding:8px 12px;border-radius:14px;
  font-size:12.5px;line-height:1.45;
}
.cb--in .cb__msg{background:#F1ECE3;color:var(--text);border-bottom-left-radius:4px}
.cb--out .cb__msg{background:#A6E879;color:#1F2E2A;border-bottom-right-radius:4px}
.cb__photo{
  width:120px;height:78px;border-radius:10px;
  background:linear-gradient(135deg,#F4C9A6,#E89A6F);
  display:flex;align-items:center;justify-content:center;font-size:32px;
}
.cb__read{font-size:10px;color:var(--text-soft);text-align:right;margin-top:-4px;margin-right:4px}

/* Feature 2 — 主管後台 */
.dash{background:#fff;border-radius:14px;padding:18px;min-height:340px}
.dash__head{display:flex;align-items:center;justify-content:space-between;margin-bottom:16px}
.dash__title{font-size:14px;font-weight:700}
.dash__filter{font-size:11px;color:var(--text-soft)}
.dash__row{
  display:grid;grid-template-columns:1fr auto auto;gap:12px;align-items:center;
  padding:10px 12px;border-radius:10px;margin-bottom:8px;background:#FAFAF6;
}
.dash__staff{display:flex;align-items:center;gap:10px}
.dash__av{width:30px;height:30px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:12px}
.dash__name{font-size:13px;font-weight:700}
.dash__sub{font-size:10px;color:var(--text-soft);margin-top:-2px}
.heat{display:flex;gap:3px}
.heat span{width:8px;height:14px;border-radius:2px;background:#E6EAE5}
.heat span.h1{background:#C8E6D9}
.heat span.h2{background:#7FCBAA}
.heat span.h3{background:#13977B}
.heat span.h4{background:#0B6453}
.heat span.warn{background:#E89A6F}
.dash__tag{font-size:10px;font-weight:700;padding:3px 8px;border-radius:6px}
.dash__tag--ok{background:var(--primary-wash);color:var(--primary)}
.dash__tag--warn{background:#FCE9D9;color:#C66829}
.dash__alert{
  margin-top:12px;padding:10px 12px;border-radius:10px;
  background:#FFF6EF;border-left:3px solid var(--warm);
  font-size:12px;color:#7A4A28;
}

/* Feature 3 — 服務 menu */
.menu-card{background:#fff;border-radius:14px;padding:18px;min-height:340px}
.menu-card__head{display:flex;align-items:center;gap:8px;margin-bottom:14px}
.menu-card__head-line{
  background:var(--line);color:#fff;font-size:10px;font-weight:700;
  padding:3px 8px;border-radius:6px;
}
.menu-card__title{font-size:14px;font-weight:700}
.menu-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:14px}
.menu-item{
  display:flex;flex-direction:column;align-items:center;gap:6px;
  padding:14px 8px;border-radius:12px;background:#FAFAF6;
  cursor:pointer;transition:transform .2s;
}
.menu-item:hover{transform:translateY(-2px);background:var(--primary-wash)}
.menu-item__ico{
  width:42px;height:42px;border-radius:12px;
  display:flex;align-items:center;justify-content:center;font-size:22px;
}
.menu-item__name{font-size:12px;font-weight:700;text-align:center}
.menu-item__hint{font-size:10px;color:var(--text-soft)}
.order-toast{
  display:flex;align-items:center;gap:10px;
  padding:10px 12px;border-radius:10px;background:var(--primary-wash);
}
.order-toast .ico{width:32px;height:32px;border-radius:8px;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center}
.order-toast .ico svg{width:16px;height:16px}
.order-toast .t1{display:block;font-size:12px;font-weight:700}
.order-toast .t2{display:block;font-size:10px;color:var(--text-soft)}

/* Feature 4 — 機構代收 */
.pay{background:#fff;border-radius:14px;padding:18px;min-height:340px;display:flex;flex-direction:column;gap:12px}
.pay__row{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:12px 14px;border-radius:10px;background:#FAFAF6}
.pay__who{display:flex;align-items:center;gap:10px}
.pay__av{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:700;font-size:13px;flex-shrink:0}
.pay__name{font-size:13.5px;font-weight:700}
.pay__sub{font-size:11px;color:var(--text-soft);margin-top:-2px}
.pay__amt{font-size:14px;font-weight:900;white-space:nowrap;display:flex;align-items:center;gap:8px;font-variant-numeric:tabular-nums}
.pay__paid{font-size:10px;font-weight:700;color:var(--primary);background:var(--primary-wash);padding:3px 8px;border-radius:6px}
.pay__receipt{margin-top:auto;display:flex;align-items:center;gap:12px;padding:14px;border-radius:10px;border:1.5px dashed #BFD9CF;background:var(--primary-wash)}
.pay__receipt .ico{width:38px;height:38px;border-radius:10px;background:var(--primary);color:#fff;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.pay__receipt .ico svg{width:18px;height:18px}
.pay__receipt .t1{display:block;font-size:13px;font-weight:700}
.pay__receipt .t2{display:block;font-size:11px;color:var(--text-soft)}

/* Feature 5 — 公告 */
.announce{background:#fff;border-radius:14px;padding:18px;min-height:340px;display:flex;flex-direction:column;gap:12px}
.ann-card{border:1px solid var(--border);border-radius:12px;padding:14px 16px;display:flex;flex-direction:column;gap:8px}
.ann-card__top{display:flex;align-items:flex-start;gap:10px}
.ann-card__title{flex:1;font-weight:700;font-size:14.5px;line-height:1.4}
.ann-card__meta{font-size:12px;color:var(--text-soft)}
.tag{font-size:11px;font-weight:800;padding:3px 10px;border-radius:6px;flex-shrink:0}
.tag--urgent{background:#FDECEC;color:#C8362F}
.tag--important{background:#FFF3E0;color:#C07A12}
.tag--normal{background:var(--primary-wash);color:var(--primary)}
.read-stat{display:flex;align-items:center;gap:10px;font-size:12px;color:var(--text-soft);font-weight:600}
.read-stat__bar{flex:1;height:7px;border-radius:999px;background:#F0F3F0;overflow:hidden}
.read-stat__fill{height:100%;background:var(--primary);border-radius:999px}

/* ===== ECOSYSTEM ===== */
.eco{background:var(--bg)}
.eco-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.eco-card{
  background:#fff;border-radius:18px;padding:24px 20px;text-align:center;
  box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s;
}
.eco-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.eco-card__ico{
  width:64px;height:64px;border-radius:18px;margin:0 auto 14px;
  display:flex;align-items:center;justify-content:center;font-size:32px;
  background:var(--primary-wash);
}
.eco-card h3{font-size:17px;font-weight:900;margin-bottom:6px}
.eco-card p{font-size:13px;color:var(--text-soft);line-height:1.5}
.eco-foot{text-align:center;margin-top:32px;font-size:15px;color:var(--text-soft)}
.eco-foot b{color:var(--primary)}
@media(max-width:760px){.eco-grid{grid-template-columns:1fr 1fr}}

/* ===== GUARD (合規守護 · 平台亮點 highlight band) ===== */
.guard-band{
  margin-top:56px;border-radius:28px;padding:48px 40px;
  background:linear-gradient(135deg,#FBF1E7 0%,#EAF6F1 100%);
}
.guard-band__head{text-align:center;max-width:620px;margin:0 auto 32px}
.guard-band__tag{
  display:inline-flex;align-items:center;gap:6px;
  font-size:13px;font-weight:800;color:var(--primary);
  background:#fff;padding:7px 16px;border-radius:999px;margin-bottom:14px;
  box-shadow:0 2px 10px rgba(11,100,83,.08);
}
.guard-band__head h3{font-size:26px;font-weight:900;line-height:1.35;margin-bottom:10px}
.guard-band__head p{font-size:15px;color:var(--text-soft)}
.guard-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.guard-card{
  background:#fff;border-radius:22px;overflow:hidden;
  box-shadow:var(--shadow);transition:transform .2s,box-shadow .2s;
}
.guard-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.guard-card__media{
  display:block;width:100%;aspect-ratio:196/138;object-fit:cover;
  background:linear-gradient(135deg,#FBF1E7,#EAF6F1);
}
.guard-card__body{padding:22px 24px 26px}
.guard-card h3{font-size:19px;font-weight:900;margin-bottom:8px}
.guard-card p{font-size:14px;color:var(--text-soft);line-height:1.6;margin-bottom:16px}
.guard-card__pill{
  display:inline-flex;align-items:center;gap:6px;
  font-size:12.5px;font-weight:800;color:var(--primary);
  background:var(--primary-wash);padding:6px 12px;border-radius:999px;white-space:nowrap;
}
@media(max-width:980px){.guard-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:760px){.guard-band{padding:32px 22px}.guard-grid{grid-template-columns:1fr}}

/* ===== STEPS ===== */
.steps{background:linear-gradient(135deg,var(--primary) 0%,var(--primary-dark) 100%);color:#fff;position:relative;overflow:hidden}
.steps::before,.steps::after{
  content:'';position:absolute;border-radius:50%;
  background:rgba(244,201,166,.1);
}
.steps::before{width:400px;height:400px;top:-150px;right:-150px}
.steps::after{width:300px;height:300px;bottom:-120px;left:-80px;background:rgba(255,255,255,.05)}
.steps .section-head h2{color:#fff}
.steps .section-head .lead{color:rgba(255,255,255,.85)}
.steps .eyebrow{color:var(--accent)}
.steps-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;position:relative;z-index:1}
.step{
  background:rgba(255,255,255,.1);
  border:1px solid rgba(255,255,255,.15);
  border-radius:20px;padding:32px 28px;
  position:relative;
}
.step__num{
  position:absolute;top:-20px;left:28px;
  width:40px;height:40px;border-radius:50%;background:var(--accent);color:var(--primary-dark);
  display:flex;align-items:center;justify-content:center;font-weight:900;font-size:18px;
}
.step h3{font-size:20px;font-weight:900;margin:10px 0 10px}
.step p{font-size:14px;color:rgba(255,255,255,.85);line-height:1.6}
.step__time{
  display:inline-block;margin-top:14px;
  padding:4px 10px;border-radius:6px;background:rgba(244,201,166,.2);color:var(--accent);
  font-size:12px;font-weight:700;
}
@media(max-width:760px){.steps-grid{grid-template-columns:1fr}}

/* ===== CTA / FORM ===== */
.cta{background:#fff;padding:96px 0}
.cta__inner{
  display:grid;grid-template-columns:1fr 1fr;gap:48px;align-items:stretch;
  background:linear-gradient(135deg,#EAF6F1,#FAF7F2);
  border-radius:28px;padding:40px;
  box-shadow:var(--shadow);
}
.cta__head{text-align:center;max-width:640px;margin:0 auto 36px}
.cta__head h2{font-size:32px;font-weight:900;line-height:1.3;margin:14px 0 12px}
.cta__head p{color:var(--text-soft);font-size:16px;margin-bottom:18px}
.cta__art{
  border-radius:20px;overflow:hidden;box-shadow:var(--shadow-lg);
  min-height:380px;background:var(--primary-dark);
}
.cta__art svg{width:100%;height:100%;display:block}
.cta__highlight{
  display:inline-flex;align-items:center;gap:8px;
  padding:8px 14px;border-radius:10px;background:#fff;
  font-size:14px;font-weight:700;color:var(--primary);
  box-shadow:0 2px 8px rgba(11,100,83,.06);
}
.cta__highlight strong{color:var(--warm);font-size:18px}

.form{background:#fff;border-radius:20px;padding:32px;box-shadow:var(--shadow)}
.form h3{font-size:20px;font-weight:900;margin-bottom:6px}
.form>p{font-size:13px;color:var(--text-soft);margin-bottom:20px}
.field{margin-bottom:14px}
.field label{display:block;font-size:13px;font-weight:700;margin-bottom:6px}
.field input,.field select{
  width:100%;padding:12px 14px;border:1.5px solid var(--border);border-radius:10px;
  font-family:inherit;font-size:14px;
}
.field input:focus,.field select:focus{outline:none;border-color:var(--primary)}
.form__submit{width:100%;justify-content:center;margin-top:6px}
.form__note{font-size:11px;color:var(--text-soft);text-align:center;margin-top:10px}

@media(max-width:900px){
  .cta__inner{grid-template-columns:1fr;padding:32px 24px;gap:32px}
}

/* ===== FOOTER ===== */
.footer{background:#1F2E2A;color:rgba(255,255,255,.7);padding:32px 0;text-align:center;font-size:13px}
.footer__by{color:rgba(255,255,255,.4);font-size:11px;margin-top:6px}

/* ===== LARGE SCREENS (≥1440px, incl. 1920) ===== */
@media(min-width:1440px){
  .wrap{max-width:1320px}
  body{font-size:18px}
  .section{padding:120px 0}
  .hero{padding:84px 0 100px}
  .hero h1{font-size:54px}
  .hero__lead{font-size:20px;max-width:560px}
  .section-head{max-width:760px;margin-bottom:64px}
  .section-head h2{font-size:42px}
  .feature-row{gap:80px;padding:56px 0}
  .feature-row h3{font-size:30px}
  .eco-grid{gap:24px}
  .cta__inner{padding:64px 56px;gap:80px}
}
@media(min-width:1760px){
  .wrap{max-width:1440px}
  .section{padding:140px 0}
}

/* ===== FAQ ===== */
.faq{background:var(--bg);padding:96px 0}
.faq__list{max-width:760px;margin:0 auto;display:flex;flex-direction:column;gap:14px}
.faq__item{background:var(--card);border:1px solid var(--border);border-radius:16px;box-shadow:var(--shadow);overflow:hidden}
.faq__item summary{
  list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;gap:16px;
  padding:20px 24px;font-size:17px;font-weight:700;color:var(--text);
}
.faq__item summary::-webkit-details-marker{display:none}
.faq__item summary::after{
  content:"";flex:0 0 auto;width:11px;height:11px;
  border-right:2.5px solid var(--primary);border-bottom:2.5px solid var(--primary);
  transform:rotate(45deg);transition:transform .25s;margin-top:-4px;
}
.faq__item[open] summary::after{transform:rotate(-135deg);margin-top:2px}
.faq__item summary:hover{color:var(--primary)}
.faq__a{padding:0 24px 22px;color:var(--text-soft);font-size:15px;line-height:1.8}
@media(min-width:1440px){.faq{padding:120px 0}}
