/* Simpany-style site — shared stylesheet */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@400;500;700;900&display=swap');

:root{
  --orange:#ff7b4a;
  --orange-dark:#ef2d07;
  --blue:#3473c3;
  --ink:#303030;
  --ink-2:#444444;
  --muted:#474747;
  --muted-2:#525252;
  --ink-3:#5a5a5a;
  --line:#e3e3e3;
  --bg:#ffffff;
  --bg-soft:#fafafa;
  --bg-soft-2:#f5f4f2;
  --radius:14px;
  --radius-sm:10px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
  --shadow-sm:0 4px 14px rgba(0,0,0,.06);
  --maxw:1180px;
  --ease:cubic-bezier(.16,.84,.44,1);
}

*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Noto Sans TC",ui-sans-serif,system-ui,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.7;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
ul{list-style:none}

.container{max-width:var(--maxw);margin:0 auto;padding:0 24px}
.section{padding:84px 0}
.section.soft{background:var(--bg-soft)}
.section.soft-2{background:var(--bg-soft-2)}
.center{text-align:center}
.eyebrow{color:var(--orange-dark);font-weight:700;letter-spacing:.08em;font-size:.85rem;margin-bottom:12px}
h1,h2,h3{line-height:1.35;color:var(--ink);font-weight:900}
.section h2{font-size:clamp(1.6rem,3.4vw,2.4rem);margin-bottom:14px}
.section .lead{color:var(--muted);font-size:1.08rem;line-height:1.8;max-width:680px;margin:0 auto 48px}
.section .lead.left{margin-left:0}

/* Buttons */
.btn{display:inline-flex;align-items:center;gap:8px;font-weight:700;font-size:1rem;
  padding:14px 30px;border-radius:999px;transition:.25s var(--ease);cursor:pointer;border:none;white-space:nowrap}
.btn-primary{background:linear-gradient(135deg,var(--orange),var(--orange-dark));color:#fff;box-shadow:0 8px 22px rgba(239,45,7,.28)}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(239,45,7,.36)}
.btn-ghost{background:#fff;color:var(--ink);border:1.5px solid var(--line)}
.btn-ghost:hover{border-color:var(--orange);color:var(--orange-dark)}
.btn-line{background:#06c755;color:#fff}
.btn-line:hover{transform:translateY(-2px);filter:brightness(1.05)}
.btn-lg{padding:17px 40px;font-size:1.08rem}

/* Header */
.site-header{position:sticky;top:0;z-index:50;background:rgba(255,255,255,.92);
  backdrop-filter:saturate(180%) blur(10px);border-bottom:1px solid var(--line)}
.nav{display:flex;align-items:center;justify-content:space-between;height:80px;padding:0 8px}
.brand{display:flex;align-items:center;gap:0;font-weight:900;font-size:1.45rem;color:var(--ink);letter-spacing:0}
.brand .dot{width:30px;height:30px;border-radius:9px;background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  display:inline-flex;align-items:center;justify-content:center;color:#fff;font-size:1.1rem}
.brand b{color:var(--orange-dark);margin:0;letter-spacing:0}
.menu{display:flex;align-items:center;gap:8px}
.menu>li{position:relative}
.menu>li>a{display:block;padding:14px 18px;font-weight:600;font-size:1rem;color:var(--ink-2);border-radius:8px;transition:.2s;line-height:1.5}
.menu>li>a:hover{color:var(--orange-dark);background:var(--bg-soft)}
.has-sub>a::after{content:"▾";font-size:.7rem;margin-left:5px;color:var(--muted-2)}
.submenu{position:absolute;top:calc(100% + 6px);left:0;min-width:210px;background:#fff;
  border:1px solid var(--line);border-radius:12px;box-shadow:var(--shadow);padding:8px;opacity:0;visibility:hidden;
  transform:translateY(8px);transition:.2s var(--ease)}
.has-sub:hover .submenu{opacity:1;visibility:visible;transform:translateY(0)}
.submenu a{display:block;padding:12px 14px;border-radius:8px;font-size:1rem;line-height:1.6;color:var(--ink-2)}
.submenu a:hover{background:var(--bg-soft);color:var(--orange-dark)}
.submenu .tag{font-size:.7rem;color:var(--muted-2);display:block}
.nav-actions{display:flex;align-items:center;gap:10px}
.nav-login{font-weight:600;color:var(--ink-2);padding:10px 14px;font-size:1rem;line-height:1.5}
.nav-login:hover{color:var(--orange-dark)}
.burger{display:none;flex-direction:column;gap:5px;background:none;border:none;cursor:pointer;padding:8px}
.burger span{width:24px;height:2px;background:var(--ink);border-radius:2px;transition:.25s}

/* Hero */
.hero{padding:72px 0 64px;background:radial-gradient(1200px 500px at 75% -10%,#fff3ec 0%,rgba(255,255,255,0) 60%),var(--bg)}
.hero .grid{display:grid;grid-template-columns:1.05fr .95fr;gap:48px;align-items:center}
.hero h1{font-size:clamp(2rem,4.6vw,3.1rem);line-height:1.25}
.hero h1 .hl{color:var(--orange-dark)}
.hero p.sub{color:var(--muted);font-size:1.12rem;line-height:1.75;margin:22px 0 32px;max-width:520px}
.hero-cta{display:flex;gap:14px;flex-wrap:wrap}
.hero-stats{display:flex;gap:34px;margin-top:40px}
.hero-stats .n{font-size:1.9rem;font-weight:900;color:var(--orange-dark)}
.hero-stats .l{color:var(--muted);font-size:1rem;line-height:1.6}
.hero-art{border-radius:22px;box-shadow:var(--shadow);overflow:hidden;background:var(--bg-soft)}

/* Feature cards */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:26px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:26px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.card{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:30px;
  transition:.25s var(--ease)}
.card:hover{transform:translateY(-4px);box-shadow:var(--shadow);border-color:transparent}
.card .ico{width:54px;height:54px;border-radius:14px;background:#fff3ec;color:var(--orange-dark);
  display:flex;align-items:center;justify-content:center;font-size:1.5rem;margin-bottom:18px}
.card .ico svg{width:60%;height:60%}
.card h3{font-size:1.22rem;margin-bottom:10px}
.card p{color:var(--muted);font-size:1.02rem;line-height:1.8}
.card .thumb{border-radius:12px;margin-bottom:18px;aspect-ratio:16/10;object-fit:cover;width:100%}

/* Service / split rows */
.split{display:grid;grid-template-columns:1fr 1fr;gap:54px;align-items:center}
.split.rev .split-text{order:2}
.split-img{border-radius:18px;box-shadow:var(--shadow-sm);overflow:hidden;aspect-ratio:4/3;background:var(--bg-soft)}
.split-img img{width:100%;height:100%;object-fit:cover}
.img-contain{background:var(--bg-soft)}
.img-contain img{object-fit:contain;background:var(--bg-soft)}
.split-text h3{font-size:1.7rem;margin-bottom:16px;line-height:1.3}
.split-text p{color:var(--muted);margin-bottom:14px;line-height:1.8}
.checklist li{position:relative;padding-left:30px;margin-bottom:12px;color:var(--ink-2)}
.checklist li::before{content:"✓";position:absolute;left:0;top:0;color:#fff;background:var(--orange);
  width:21px;height:21px;border-radius:50%;font-size:.75rem;display:flex;align-items:center;justify-content:center;font-weight:700}

/* Steps */
.steps{display:grid;grid-template-columns:repeat(3,1fr);gap:24px;counter-reset:step}
.step{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:34px 26px 30px;position:relative}
.step::before{counter-increment:step;content:counter(step);position:absolute;top:-20px;left:26px;
  width:42px;height:42px;border-radius:50%;background:linear-gradient(135deg,var(--orange),var(--orange-dark));
  color:#fff;font-weight:900;display:flex;align-items:center;justify-content:center;box-shadow:var(--shadow-sm);font-size:1.1rem}
.step h4{margin:12px 0 8px;font-size:1.15rem;line-height:1.3}
.step p{color:var(--muted);font-size:1rem;line-height:1.75}

/* Pricing */
.price-grid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:28px;align-items:stretch;justify-content:center}
.plan{background:#fff;border:1px solid var(--line);border-radius:18px;padding:34px 30px;transition:.25s var(--ease);
  display:flex;flex-direction:column;min-height:100%}
.plan.featured{border:2px solid var(--orange);box-shadow:var(--shadow);position:relative;margin-top:24px}
.plan.featured::after{content:"最受歡迎";position:absolute;top:16px;right:16px;background:var(--orange-dark);
  color:#fff;font-size:0.8rem;font-weight:700;line-height:1.2;padding:6px 16px;border-radius:999px;
  box-shadow:0 4px 12px rgba(239,45,7,.2);max-width:calc(100% - 32px);white-space:nowrap}
.plan h3{font-size:1.3rem;margin-bottom:6px}
.plan .price{font-size:2.4rem;font-weight:900;color:var(--ink);margin:14px 0}
.plan .price small{font-size:1rem;color:var(--muted);font-weight:500}
.plan .desc{color:var(--muted);font-size:1rem;line-height:1.75;min-height:48px}
.plan ul{margin:22px 0;flex-grow:1}
.plan ul li{padding:10px 0 10px 28px;position:relative;border-top:1px solid var(--line);font-size:1rem;line-height:1.7;color:var(--ink-2)}
.plan ul li::before{content:"✓";position:absolute;left:0;color:var(--orange-dark);font-weight:700}
.plan .btn{width:100%;justify-content:center;margin-top:8px;background:linear-gradient(135deg,var(--orange),var(--orange-dark));color:#fff;border:none;font-weight:700}

/* FAQ / accordion */
.faq{max-width:840px;margin:0 auto}
.qa-item{border:1px solid var(--line);border-radius:12px;margin-bottom:14px;background:#fff;overflow:hidden}
.qa-q{padding:22px 24px;font-weight:700;font-size:1.06rem;cursor:pointer;display:flex;align-items:center;gap:16px;line-height:1.5}
.qa-q > span:first-child{flex:1;min-width:0}
.qa-q::after{content:"+";font-size:1.6rem;color:var(--orange-dark);transition:.25s;flex-shrink:0;width:auto}
.qa-item.open .qa-q::after{transform:rotate(45deg)}
.qa-a{max-height:0;overflow:hidden;transition:max-height .3s var(--ease);padding:0 24px;color:var(--muted);font-size:1.02rem;line-height:1.8}
.qa-item.open .qa-a{max-height:600px;padding:0 24px 22px}

/* Testimonials */
.quote{background:#fff;border:1px solid var(--line);border-radius:var(--radius);padding:28px}
.quote p{color:var(--ink-2);margin-bottom:18px}
.quote .who{display:flex;align-items:center;gap:12px}
.quote .av{width:44px;height:44px;border-radius:50%;background:#fff3ec;display:flex;align-items:center;justify-content:center;color:var(--orange-dark);font-weight:700}
.quote .who b{display:block}.quote .who span{color:var(--muted-2);font-size:.85rem}

/* Trust / logos strip */
.trust{display:flex;flex-wrap:wrap;gap:18px 40px;justify-content:center;align-items:center;color:var(--muted-2);font-weight:700}

/* CTA band */
.cta-band{background:linear-gradient(135deg,#ff8c5a,var(--orange-dark));color:#fff;border-radius:24px;padding:56px;text-align:center}
.cta-band h2{color:#fff;font-size:clamp(1.5rem,3vw,2.1rem);text-shadow:0 1px 2px rgba(0,0,0,.18)}
.cta-band p{color:#fff;opacity:1;margin:14px 0 28px;font-size:clamp(0.97rem,2.5vw,1.05rem);line-height:1.7;text-shadow:0 1px 2px rgba(0,0,0,.15)}
.cta-band .btn-primary{background:#fff;color:var(--orange-dark);box-shadow:none}
.cta-band .btn-primary:hover{transform:translateY(-2px)}

/* Page hero (subpages) */
.page-hero{padding:64px 0 50px;background:radial-gradient(900px 400px at 80% -20%,#fff3ec,rgba(255,255,255,0) 60%)}
.page-hero h1{font-size:clamp(1.8rem,4vw,2.6rem);line-height:1.3}
.page-hero p{color:var(--muted);font-size:1.1rem;line-height:1.75;margin-top:16px;max-width:640px}
.breadcrumb{color:var(--muted-2);font-size:0.95rem;line-height:1.6;margin-bottom:14px}
.breadcrumb a:hover{color:var(--orange-dark)}

/* Prose (policy) */
.prose{max-width:820px;margin:0 auto;color:var(--ink-2)}
.prose h2{font-size:1.4rem;margin:34px 0 12px;line-height:1.3}
.prose h3{font-size:1.1rem;margin:22px 0 8px;line-height:1.3}
.prose p,.prose li{margin-bottom:14px;color:var(--ink-2);line-height:1.75}
.prose ul{padding-left:22px;list-style:disc}

/* Footer */
.site-footer{background:#1f1f1f;color:#ededed;padding:64px 0 32px}
.foot-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:44px}
.site-footer .brand{color:#fff;margin-bottom:16px}
.site-footer p{color:#ededed;font-size:1.02rem;line-height:1.85;max-width:320px}
.foot-col h4{color:#fff;font-size:clamp(1.02rem,1.6vw,1.1rem);font-weight:700;margin-bottom:18px;line-height:1.45}
.foot-col a{display:block;color:#e6e6e6;padding:8px 0;font-size:1rem;line-height:1.75;transition:.2s}
.foot-col a:hover{color:var(--orange)}
.foot-bottom{border-top:1px solid #3a3a3a;margin-top:44px;padding-top:24px;display:flex;justify-content:space-between;flex-wrap:wrap;gap:14px;color:#dadada;font-size:0.98rem;line-height:1.75}

@media(max-width:900px){
  .hero .grid,.split,.grid-3,.grid-2,.grid-4,.price-grid,.steps,.foot-grid{grid-template-columns:1fr}
  .split.rev .split-text{order:0}
  .menu,.nav-login{display:none}
  .menu.open{display:flex;position:absolute;top:80px;left:0;right:0;flex-direction:column;background:#fff;
    border-bottom:1px solid var(--line);padding:12px;gap:2px;box-shadow:var(--shadow)}
  .menu.open .submenu{position:static;opacity:1;visibility:visible;transform:none;box-shadow:none;border:none;padding-left:14px}
  .burger{display:flex}
  .section{padding:60px 0}
  .cta-band{padding:40px 24px}
}

@media(max-width:600px){
  .section{padding:44px 0}
  .container{padding:0 16px}
  .section h2{font-size:clamp(1.4rem,5vw,1.8rem)}
  .section .lead{font-size:1.02rem;margin-bottom:32px;line-height:1.75}
  .hero h1{font-size:clamp(1.6rem,4vw,2.2rem);line-height:1.3}
  .hero p.sub{font-size:1.02rem;line-height:1.7;margin-bottom:24px}
  .hero-stats{flex-wrap:wrap;gap:24px;margin-top:28px}
  .cta-band{padding:32px 16px;border-radius:16px}
  .cta-band h2{font-size:clamp(1.3rem,4vw,1.7rem)}
  .cta-band p{font-size:0.97rem;margin:10px 0 18px;line-height:1.7}
  .grid-3,.grid-2,.grid-4{gap:18px}
  .card{padding:22px 18px}
  .card h3{font-size:1.05rem;margin-bottom:8px;line-height:1.3}
  .card p{font-size:0.95rem;line-height:1.7}
  .card .ico{width:48px;height:48px;margin-bottom:14px}
  .split{gap:28px}
  .split-text h3{font-size:1.4rem;margin-bottom:12px;line-height:1.3}
  .split-text p{font-size:0.98rem;margin-bottom:10px;line-height:1.75}
  .steps{grid-template-columns:1fr;gap:18px}
  .step{padding:24px 20px 22px}
  .step::before{width:38px;height:38px;font-size:1rem;top:-17px;left:20px}
  .step h4{font-size:1.05rem;margin:10px 0 6px;line-height:1.3}
  .step p{font-size:0.95rem;line-height:1.75}
  .price-grid{gap:18px}
  .plan{padding:26px 22px}
  .plan h3{font-size:1.1rem;margin-bottom:4px;line-height:1.3}
  .plan .price{font-size:2rem}
  .plan .desc{font-size:0.95rem;min-height:auto;line-height:1.7}
  .plan ul li{font-size:0.95rem;padding:8px 0 8px 24px;line-height:1.7}
  .page-hero h1{font-size:clamp(1.6rem,4vw,2.2rem);line-height:1.3}
  .page-hero p{font-size:1.02rem;margin-top:12px;line-height:1.75}
  .breadcrumb{font-size:0.88rem}
  .foot-grid{grid-template-columns:1fr;gap:28px}
  .cta-band .btn{font-size:0.97rem;padding:12px 24px}
}

@media(max-width:480px){
  .section{padding:32px 0}
  .container{padding:0 12px}
  .section h2{font-size:clamp(1.25rem,4.5vw,1.6rem)}
  .section .lead{font-size:0.97rem;margin-bottom:24px;line-height:1.75}
  .hero{padding:48px 0 40px}
  .hero h1{font-size:clamp(1.35rem,3.8vw,1.9rem);line-height:1.3}
  .hero p.sub{font-size:0.95rem;line-height:1.7;margin-bottom:18px}
  .hero-cta{gap:10px}
  .hero-stats{gap:18px}
  .card{padding:18px 14px}
  .card h3{font-size:0.98rem}
  .card p{font-size:0.92rem;line-height:1.7}
  .card .ico{width:44px;height:44px;font-size:1.2rem;margin-bottom:12px}
  .btn{padding:12px 22px;font-size:0.95rem;gap:6px}
  .btn-lg{padding:14px 28px;font-size:1rem}
  .split{gap:20px}
  .split-text h3{font-size:1.25rem}
  .split-text p{font-size:0.93rem}
  .steps{gap:14px}
  .step{padding:20px 16px 18px}
  .step::before{width:36px;height:36px;font-size:0.9rem;top:-16px;left:16px}
  .step h4{font-size:0.98rem;margin:8px 0 4px;line-height:1.3}
  .step p{font-size:0.92rem;line-height:1.7}
  .qa-item{margin-bottom:10px;border-radius:10px}
  .qa-q{padding:16px 18px;font-size:0.96rem;line-height:1.5}
  .qa-a{font-size:0.95rem;line-height:1.75}
  .plan{padding:20px 18px}
  .plan h3{font-size:1rem;line-height:1.3}
  .plan .price{font-size:1.75rem}
  .plan .desc{font-size:0.92rem;line-height:1.7}
  .plan ul li{font-size:0.92rem;line-height:1.7}
  .page-hero h1{font-size:clamp(1.4rem,3.5vw,1.8rem);line-height:1.3}
  .page-hero p{font-size:0.95rem;line-height:1.7}
  .breadcrumb{font-size:0.85rem}
  .site-footer p{font-size:0.92rem;line-height:1.75}
  .foot-col a{font-size:0.92rem;line-height:1.7}
  .foot-bottom{font-size:0.88rem;line-height:1.7}
}

/* === MOBILE HOME THEME (index.html) === */
body.mobile-page{background:#ececf0;}

.m{max-width:440px;margin:0 auto;background:#fff;min-height:100vh;
  box-shadow:0 0 40px rgba(0,0,0,.06);position:relative;overflow:hidden;
  font-size:14px;line-height:1.6;color:#303030;text-align:center;}
.m h1,.m h2,.m h3{font-weight:500;line-height:1.4;color:#303030;}
.m p{color:#6b6b6b;}
.m img{max-width:100%;display:block;}

/* Header */
.m .m-header{position:sticky;top:0;z-index:40;height:48px;background:#fff;
  border-bottom:1px solid #eee;display:flex;align-items:center;
  justify-content:space-between;padding:0 14px;}
.m .m-logo{display:inline-flex;align-items:center;gap:6px;font-size:.95rem;
  font-weight:500;color:#303030;}
.m .m-logo b{color:#ef2d07;font-weight:700;}
.m .m-logo-dot{width:18px;height:18px;border-radius:5px;background:#ff7b4a;
  color:#fff;display:inline-flex;align-items:center;justify-content:center;
  font-size:.7rem;font-weight:700;}
.m .m-nav{display:flex;gap:8px;font-size:.7rem;color:#8c8c8c;
  overflow:hidden;white-space:nowrap;}
.m .m-nav a{color:#8c8c8c;}
.m .m-cta{background:#ff7b4a;color:#fff;font-size:.72rem;padding:5px 12px;
  border-radius:8px;white-space:nowrap;}

/* Hero */
.m .m-hero{padding:34px 22px 30px;position:relative;}
.m .m-kicker{color:#ef2d07;font-size:.75rem;margin-bottom:10px;}
.m .m-h1{font-size:1.5rem;font-weight:500;line-height:1.35;margin-bottom:16px;}
.m .m-h1 .hl{color:#ef2d07;}
.m .m-h2{font-size:1.15rem;font-weight:500;margin-bottom:14px;}
.m .brand-red{color:#ff7b4a;}
.m .hl{color:#ef2d07;}
.m .m-pills{display:flex;flex-wrap:wrap;gap:7px;justify-content:center;margin:14px 0;}
.m .m-pills span{border:1px solid #e8e8e8;border-radius:999px;
  padding:5px 12px;font-size:.7rem;color:#6b6b6b;}
.m .m-hero-art{width:88%;margin:18px auto 0;}
.m .m-hero-art img{width:100%;}
.m .m-float{position:absolute;top:46%;right:18px;width:22px;height:22px;
  border-radius:6px;background:#ff7b4a;}

/* Intro */
.m .m-intro{padding:30px 22px;}
.m .m-block{text-align:left;margin-bottom:18px;}
.m .m-block h3{font-size:.95rem;font-weight:500;margin-bottom:5px;}
.m .m-block p{font-size:.82rem;color:#8c8c8c;}
.m .m-intro-art{width:88%;margin:20px auto;}
.m .m-intro-art img{width:100%;}

/* Buttons */
.m .m-btn{display:inline-block;background:#ff7b4a;color:#fff;font-size:.8rem;
  padding:9px 22px;border-radius:999px;margin:14px auto 0;}
.m .m-btn-white{display:inline-block;background:#fff;color:#ff7b4a;font-size:.8rem;
  padding:9px 22px;border-radius:999px;font-weight:500;}

/* Compare */
.m .m-compare{padding:30px 22px;}
.m table.cmp{width:100%;border-collapse:collapse;font-size:.72rem;
  margin-top:16px;text-align:left;}
.m table.cmp td{border:1px solid #ededed;padding:9px 10px;vertical-align:top;}
.m .cmp-label{color:#303030;font-weight:500;}
.m .cmp-tag{display:inline-block;color:#ff7b4a;font-size:.65rem;
  margin-right:5px;}
.m .cmp-a{color:#6b6b6b;}
.m .cmp-b{color:#9a9a9a;background:#f3f3f5;}

/* Features */
.m .m-features{padding:30px 22px;}
.m .feat-card{background:#f5f5f7;border-radius:18px;padding:16px;
  margin-bottom:16px;text-align:left;}
.m .feat-label h3{font-size:.95rem;font-weight:500;margin-bottom:4px;}
.m .feat-label p{font-size:.8rem;color:#8c8c8c;margin-bottom:12px;}
.m .feat-body{display:flex;flex-direction:column;gap:8px;}
.m .feat-body .p-orange{background:#ff7b4a;border-radius:10px;height:56px;
  display:flex;align-items:center;justify-content:center;color:#fff;
  font-size:.72rem;flex:1;}
.m .feat-body .p-gray{background:#e6e6ea;border-radius:10px;height:56px;
  display:flex;align-items:center;justify-content:center;color:#6b6b6b;
  font-size:.72rem;flex:1;}
.m .feat-body .mini{background:#fff;border-radius:10px;
  box-shadow:0 3px 10px rgba(0,0,0,.06);padding:10px;min-height:30px;
  font-size:.72rem;color:#6b6b6b;}
.m .feat-body .frame{background:#fff;border:1px solid #eee;border-radius:10px;
  padding:12px;font-size:.72rem;color:#6b6b6b;}
.m .feat-body .bar{background:#e6e6ea;border-radius:999px;height:8px;margin:6px 0;}
.m .feat-body .seg{display:inline-block;background:#ededf0;border-radius:999px;
  padding:4px 10px;font-size:.65rem;color:#6b6b6b;margin-right:4px;}
.m .feat-body .row{background:#f7f7f9;border-radius:10px;padding:8px 12px;
  margin:6px 0;display:flex;justify-content:space-between;align-items:center;
  font-size:.72rem;color:#6b6b6b;}
.m .feat-body .num{color:#ff7b4a;font-weight:700;}
.m .feat-flex{display:flex;gap:8px;}

/* Trust */
.m .m-trust{padding:30px 22px;}
.m .trust-card{background:#f5f5f7;border-radius:22px;padding:28px 20px;
  text-align:center;}
.m .trust-card h2{font-size:1.15rem;font-weight:500;margin-bottom:16px;}

/* Reviews */
.m .m-reviews{padding:30px 22px;}
.m .m-reviews p{font-size:.85rem;color:#6b6b6b;margin-top:10px;}
.m .rev-list{margin:14px 0 0;}
.m .rev-list li{position:relative;padding-left:16px;font-size:.8rem;
  color:#8c8c8c;text-align:left;display:inline-block;}
.m .rev-list li::before{content:"";position:absolute;left:2px;top:8px;
  width:5px;height:5px;border-radius:50%;background:#ff7b4a;}

/* CTA */
.m .m-cta-wrap{padding:30px 22px;}
.m .m-cta-card{background:linear-gradient(135deg,#ff8c5a,#ff7b4a);
  border-radius:22px;padding:30px 24px;text-align:center;color:#fff;margin:0 auto;}
.m .m-cta-card h2{color:#fff;font-size:1.15rem;font-weight:500;margin-bottom:8px;}
.m .m-cta-card p{color:rgba(255,255,255,.9);font-size:.8rem;margin-bottom:16px;}

/* Footer */
.m .m-footer{background:#fff;border-top:1px solid #eee;padding:26px 22px;
  text-align:center;}
.m .m-footer .m-logo{justify-content:center;margin-bottom:16px;}
.m .foot-cols{display:flex;flex-wrap:wrap;gap:18px;justify-content:center;
  font-size:.72rem;margin-bottom:16px;}
.m .foot-cols a{display:block;color:#303030;padding:3px 0;}
.m .foot-copy{font-size:.62rem;color:#b0b0b0;text-align:center;}
/* === END MOBILE HOME THEME === */
