  /* ============ FONTS ============ */
  @import url('https://fonts.googleapis.com/css2?family=ABeeZee:ital@0;1&family=Verdana&display=swap');

  /* ============ TOKENS (brand: navy / tan / green — from bikenacaixa.com.br) ============ */
  :root{
    --paper: #F7F3EA;
    --paper-2: #EFE6D2;
    --paper-3: #E3D5B8;
    --navy: #0A2540;
    --navy-2: #123863;
    --navy-3: #0E3055;
    --tan: #BCA087;
    --tan-deep: #8C7259;
    --green: #35A41C;
    --green-deep: #2A8615;
    --green-contrast: #FFFFFF;
    --ink: #14202C;
    --ink-soft: #445064;
    --line: rgba(10,37,64,0.14);
    --shadow: 0 20px 44px -20px rgba(10,37,64,0.35);
    --bg: var(--paper);
    --surface: var(--paper-2);
    --surface-2: var(--paper-3);
    --text: var(--navy);
    --text-soft: var(--ink-soft);
    --muted: var(--tan-deep);
    --radius: 14px;
    --radius-pill: 999px;
    --gap-page: clamp(38px,6vw,80px);
    --maxw: 1160px;
    color-scheme: light dark;
  }
  @media (prefers-color-scheme: dark){
    :root:not([data-theme="light"]){
      --bg: #081A2C;
      --surface: #0E2A47;
      --surface-2: #123A5E;
      --text: #F3EEE1;
      --text-soft: #C9BFA9;
      --muted: #CBB49A;
      --line: rgba(243,238,225,0.14);
      --shadow: 0 20px 48px -20px rgba(0,0,0,0.65);
      --tan: #CDB79A;
      --green: #3FBE22;
      --green-deep: #4ED42E;
      --ink: #F3EEE1;
      --ink-soft: #C9BFA9;
    }
  }
  :root[data-theme="dark"]{
    --bg: #081A2C;
    --surface: #0E2A47;
    --surface-2: #123A5E;
    --text: #F3EEE1;
    --text-soft: #C9BFA9;
    --muted: #CBB49A;
    --line: rgba(243,238,225,0.14);
    --shadow: 0 20px 48px -20px rgba(0,0,0,0.65);
    --tan: #CDB79A;
    --green: #3FBE22;
    --green-deep: #4ED42E;
    --ink: #F3EEE1;
    --ink-soft: #C9BFA9;
  }

  *{box-sizing:border-box;}
  body{
    margin:0;
    background: var(--bg);
    color: var(--text);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height:1.6;
    padding-inline: var(--gap-page);
    overflow-x:hidden;
  }
  img{max-width:100%; display:block;}
  a{color:inherit;}
  .container{max-width:var(--maxw); margin-inline:auto;}
  h1,h2,h3{
    font-family:'ABeeZee', -apple-system, sans-serif;
    font-weight:400;
    line-height:1.12;
    text-wrap:balance;
    margin:0;
    color:var(--text);
  }
  h1{font-size:clamp(2.3rem,5.4vw,3.6rem);}
  h2{font-size:clamp(1.7rem,3.8vw,2.5rem);}
  h3{font-size:clamp(1.05rem,1.8vw,1.3rem);}
  p{margin:0;}
  .lede{font-size:clamp(1.02rem,1.5vw,1.14rem); color:var(--text-soft); max-width:54ch;}
  ::selection{background:var(--green); color:var(--green-contrast);}
  :focus-visible{outline:3px solid var(--green); outline-offset:3px;}
  .eyebrow{
    font-family:'ABeeZee', sans-serif;
    font-size:0.82rem;
    letter-spacing:0.05em;
    color:var(--muted);
    text-transform:uppercase;
    display:flex; align-items:center; gap:9px;
    margin:0 0 16px;
  }
  .eyebrow::before{content:"";width:20px;height:3px;border-radius:2px;background:var(--green);display:inline-block;}
  .accent{color:var(--green);}
  section{padding-block: clamp(52px,8vw,104px);}

  /* ============ BUTTONS ============ */
  .btn{
    display:inline-flex; align-items:center; gap:10px;
    font-family:'ABeeZee', sans-serif;
    font-size:0.98rem;
    text-decoration:none;
    padding:14px 26px; border-radius:var(--radius-pill);
    border:2px solid transparent;
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
    white-space:nowrap;
  }
  .btn-green{background:var(--green); color:var(--green-contrast); box-shadow:0 12px 26px -12px rgba(53,164,28,0.55);}
  .btn-green:hover{background:var(--green-deep); transform:translateY(-2px);}
  .btn-ghost{background:transparent; border-color:var(--line); color:var(--text);}
  .btn-ghost:hover{border-color:var(--muted); transform:translateY(-2px);}
  .btn-navy{background:var(--navy); color:#fff;}
  .btn-navy:hover{background:var(--navy-2); transform:translateY(-2px);}

  /* ============ HEADER ============ */
  header{
    position:sticky; top:0; z-index:50;
    background: var(--navy);
    border-bottom:1px solid rgba(255,255,255,0.08);
    margin-inline: calc(-1 * var(--gap-page));
    padding-inline: var(--gap-page);
  }
  .topbar{
    background: var(--navy-3);
    text-align:center; font-family:'ABeeZee',sans-serif; font-size:0.72rem;
    color:var(--tan); padding-block:5px; letter-spacing:0.02em;
    margin-inline: calc(-1 * var(--gap-page));
    padding-inline: var(--gap-page);
  }
  .nav{display:flex; align-items:center; justify-content:space-between; padding-block:9px; gap:18px;}
  .brand{display:flex; align-items:center; text-decoration:none;}
  .brand img{height:28px; width:auto;}
  nav.links{display:flex; align-items:center; gap:26px;}
  nav.links a:not(.btn){font-family:'ABeeZee',sans-serif; font-size:0.92rem; text-decoration:none; color:var(--tan); position:relative;}
  nav.links a:not(.btn):after{content:"";position:absolute;left:0;right:0;bottom:-5px;height:2px;background:var(--green);transform:scaleX(0);transform-origin:left;transition:transform .2s ease;}
  nav.links a:not(.btn):hover{color:#fff;}
  nav.links a:not(.btn):hover:after{transform:scaleX(1);}
  .nav-menu-btn{display:none; background:none; border:1px solid rgba(255,255,255,0.25); border-radius:10px; width:42px; height:42px; align-items:center; justify-content:center; color:#fff;}

  /* ============ HERO ============ */
  .hero{padding-block: clamp(46px,7vw,84px) clamp(50px,8vw,96px);}
  .hero-inner{display:grid; grid-template-columns:1.05fr 0.95fr; gap:clamp(34px,5vw,64px); align-items:center;}
  .hero-actions{display:flex; flex-wrap:wrap; gap:14px; margin-top:28px;}
  .hero-stats{display:flex; flex-wrap:wrap; gap:clamp(22px,4vw,40px); margin-top:40px; padding-top:26px; border-top:1px solid var(--line);}
  .stat-row{display:flex; align-items:baseline; gap:2px;}
  .stat-num{font-family:'ABeeZee',sans-serif; font-size:2rem; color:var(--text);}
  .stat-suffix{font-family:'ABeeZee',sans-serif; font-size:2rem; color:var(--green);}
  .stat-label{font-family:'ABeeZee',sans-serif; font-size:0.72rem; letter-spacing:0.03em; text-transform:uppercase; color:var(--muted);}

  .hero-visual{position:relative;}
  .hero-photo-card{
    position:relative; border-radius:20px; overflow:hidden;
    background:#fff; box-shadow:var(--shadow);
    opacity:0; transform:translateY(26px) scale(0.97);
    transition:opacity .8s ease, transform .8s ease;
    border:1px solid var(--line);
  }
  .hero-photo-card.in{opacity:1; transform:translateY(0) scale(1);}
  .hero-photo-card img{width:100%; height:auto;}
  .hero-badge{
    position:absolute; bottom:16px; left:16px;
    background:var(--navy); color:#fff; font-family:'ABeeZee',sans-serif;
    font-size:0.78rem; padding:10px 16px; border-radius:var(--radius-pill);
    display:flex; align-items:center; gap:8px;
    box-shadow:0 14px 26px -12px rgba(10,37,64,0.5);
  }
  .hero-badge .dot{width:8px; height:8px; border-radius:50%; background:var(--green);}
  @media (prefers-reduced-motion: reduce){ .hero-photo-card{transition:none; opacity:1; transform:none;} }

  /* ============ HELPERS ============ */
  .section-head{display:flex; flex-direction:column; gap:14px; max-width:640px; margin-bottom:clamp(32px,5vw,52px);}
  .grid{display:grid; gap:22px;}
  .reveal{opacity:0; transform:translateY(22px); transition:opacity .6s ease, transform .6s ease;}
  .reveal.in-view{opacity:1; transform:translateY(0);}
  @media (prefers-reduced-motion: reduce){ .reveal{opacity:1; transform:none; transition:none;} }

  /* ============ PROBLEM ============ */
  .problem{
    background:var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    margin-inline: calc(-1 * var(--gap-page));
    padding-inline: var(--gap-page);
  }
  .problem-grid{display:grid; grid-template-columns:1fr 1fr; gap:clamp(30px,5vw,64px); align-items:start;}
  .card-panel{
    background:var(--bg); border:1px solid var(--line); border-radius:var(--radius); padding:24px 26px;
    box-shadow:var(--shadow);
  }
  .panel-title{font-family:'ABeeZee',sans-serif; font-size:0.72rem; letter-spacing:0.06em; text-transform:uppercase; color:var(--muted); border-bottom:1px dashed var(--line); padding-bottom:10px; margin-bottom:14px;}
  .check-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:12px;}
  .check-list li{display:flex; gap:11px; font-size:0.97rem; color:var(--text-soft);}
  .check-list li b{color:var(--text); font-weight:700;}
  .check-list svg{flex:none; width:19px; height:19px; color:var(--green); margin-top:2px;}

  /* ============ TIMELINE ============ */
  .timeline{position:relative; padding-left:clamp(30px,6vw,52px);}
  .timeline-track{position:absolute; left:0; top:6px; bottom:6px; width:2px; background:var(--line);}
  .timeline-fill{position:absolute; left:0; top:6px; width:2px; height:var(--fill,0%); background:var(--green); transition:height .15s ease-out;}
  .tl-step{position:relative; padding-bottom:clamp(30px,5vw,46px);}
  .tl-step:last-child{padding-bottom:0;}
  .tl-dot{
    position:absolute; left:calc(-1 * clamp(30px,6vw,52px)); top:2px;
    width:34px; height:34px; margin-left:-16px;
    border-radius:50%; background:var(--bg); border:2px solid var(--line);
    display:flex; align-items:center; justify-content:center;
    font-family:'ABeeZee',sans-serif; font-size:0.85rem; color:var(--muted);
    transition:border-color .3s ease, color .3s ease, background .3s ease;
  }
  .tl-step.in-view .tl-dot{border-color:var(--green); color:#fff; background:var(--green);}
  .tl-step h3{margin-bottom:6px;}
  .tl-step p{color:var(--text-soft); max-width:54ch;}
  .tl-step .tag{font-family:'ABeeZee',sans-serif; font-size:0.7rem; color:var(--green-deep); letter-spacing:0.05em; text-transform:uppercase; display:block; margin-bottom:6px;}

  /* ============ CHECKLIST SERVICOS ============ */
  .checklist-wrap{
    background:var(--surface); border-top:1px solid var(--line); border-bottom:1px solid var(--line);
    margin-inline: calc(-1 * var(--gap-page));
    padding-inline: var(--gap-page);
  }
  .checklist{display:grid; grid-template-columns:repeat(2,1fr); gap:14px 28px;}
  .check-item{display:flex; align-items:flex-start; gap:14px; padding-block:12px; border-bottom:1px solid var(--line);}
  .check-box{flex:none; width:26px; height:26px; margin-top:2px;}
  .check-box circle{fill:none; stroke:var(--line); stroke-width:2;}
  .check-box path{fill:none; stroke:var(--green); stroke-width:3; stroke-linecap:round; stroke-linejoin:round; stroke-dasharray:24; stroke-dashoffset:24; transition:stroke-dashoffset .5s ease .1s;}
  .check-item.in-view .check-box circle{stroke:var(--green);}
  .check-item.in-view .check-box path{stroke-dashoffset:0;}
  .check-item b{display:block; font-weight:700; color:var(--text);}
  .check-item span{color:var(--text-soft); font-size:0.92rem;}

  /* ============ BENEFITS ============ */
  .benefits-grid{grid-template-columns:repeat(3,1fr);}
  .benefit{background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:26px; display:flex; flex-direction:column; gap:14px; transition:transform .2s ease, box-shadow .2s ease;}
  .benefit:hover{transform:translateY(-4px); box-shadow:var(--shadow);}
  .benefit .icon{width:38px; height:38px; color:var(--green-deep);}
  .benefit h3{font-size:1.05rem;}
  .benefit p{color:var(--text-soft); font-size:0.92rem;}

  /* ============ ABOUT ============ */
  .about{
    background:var(--navy); color:#fff;
    margin-inline: calc(-1 * var(--gap-page));
    padding-inline: var(--gap-page);
  }
  .about h2, .about .eyebrow{color:#fff;}
  .about .eyebrow{color:var(--tan);}
  .about .lede{color:rgba(255,255,255,0.75);}
  .about-grid{display:grid; grid-template-columns:0.8fr 1.2fr; gap:clamp(30px,5vw,64px); align-items:center;}
  .badge{
    aspect-ratio:1/1; border-radius:50%; background:var(--navy-2); border:2px solid var(--tan);
    display:flex; align-items:center; justify-content:center; position:relative; max-width:300px;
    overflow:hidden;
  }
  .badge img{width:100%; height:100%; object-fit:cover; border-radius:50%; display:block;}
  .badge .ring{position:absolute; inset:-10px; border:2px dashed var(--green); border-radius:50%; animation:spin 26s linear infinite; pointer-events:none;}
  @keyframes spin{to{transform:rotate(360deg);}}
  @media (prefers-reduced-motion: reduce){ .badge .ring{animation:none;} }
  .credentials{display:flex; gap:22px; margin-top:22px; flex-wrap:wrap;}
  .credential b{font-family:'ABeeZee',sans-serif; font-size:1.65rem; display:block; color:#fff;}
  .credential span{font-family:'ABeeZee',sans-serif; font-size:0.68rem; letter-spacing:0.04em; text-transform:uppercase; color:var(--tan);}

  /* ============ PRICING ============ */
  .pricing-grid{grid-template-columns:1.15fr 1fr 1fr; align-items:stretch;}
  .price-card{
    background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
    padding:28px; display:flex; flex-direction:column; gap:16px; position:relative;
    transition:transform .25s ease, box-shadow .25s ease;
  }
  .price-card:hover{transform:translateY(-6px); box-shadow:var(--shadow);}
  .price-card.featured{background:var(--navy); color:#fff; border-color:var(--navy);}
  .price-card.featured .price-desc{color:rgba(255,255,255,0.72);}
  .price-card.featured .price-list li{color:rgba(255,255,255,0.82);}
  .price-card.featured .price-list svg{color:var(--tan);}
  .price-card.featured .price-name{color:var(--tan);}
  .price-tag{position:absolute; top:-12px; right:18px; background:var(--green); color:#fff; font-family:'ABeeZee',sans-serif; font-size:0.68rem; padding:6px 12px; letter-spacing:0.03em; border-radius:var(--radius-pill);}
  .price-name{font-family:'ABeeZee',sans-serif; text-transform:uppercase; font-size:0.76rem; letter-spacing:0.06em; color:var(--green-deep);}
  .price-value{font-family:'ABeeZee',sans-serif; font-size:2.5rem; display:flex; align-items:baseline; gap:6px;}
  .price-value small{font-size:1rem;}
  .price-desc{color:var(--text-soft); font-size:0.92rem;}
  .price-list{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; font-size:0.9rem;}
  .price-list li{display:flex; gap:9px; color:var(--text-soft);}
  .price-list svg{flex:none; width:16px; height:16px; color:var(--green-deep); margin-top:2px;}
  .price-obs{font-size:0.72rem; color:var(--muted); margin-top:-6px;}
  .price-card.featured .price-obs{color:rgba(255,255,255,0.55);}
  .price-card .btn{margin-top:auto;}

  /* ============ NOTICE ============ */
  .notice{
    display:flex; gap:18px; align-items:flex-start; background:var(--surface-2);
    border:1px solid var(--tan); border-radius:var(--radius); padding:22px 24px; margin-top:clamp(30px,4vw,44px);
  }
  .notice svg{flex:none; width:26px; height:26px; color:var(--tan-deep); margin-top:2px;}
  .notice b{display:block; margin-bottom:4px; font-family:'ABeeZee',sans-serif; text-transform:uppercase; font-size:0.76rem; letter-spacing:0.05em; color:var(--tan-deep);}
  .notice p{color:var(--text-soft); font-size:0.92rem; max-width:70ch;}

  /* ============ CTA FINAL ============ */
  .cta-band{background:var(--navy); color:#fff; border-radius:20px; margin-inline:auto; max-width:var(--maxw); padding:clamp(40px,7vw,66px) clamp(24px,5vw,60px); display:flex; justify-content:space-between; align-items:center; gap:30px; flex-wrap:wrap;}
  .cta-band h2{color:#fff;}
  .cta-band .lede{color:rgba(255,255,255,0.72);}
  .cta-actions{display:flex; flex-direction:column; gap:10px; align-items:flex-start;}
  .cta-actions .contact-line{font-family:'ABeeZee',sans-serif; font-size:0.82rem; color:var(--tan);}

  /* ============ FOOTER ============ */
  footer{
    background:var(--navy); color:rgba(255,255,255,0.82); padding-block:50px 34px; margin-top:0;
    margin-inline: calc(-1 * var(--gap-page));
    padding-inline: var(--gap-page);
  }
  footer .container{padding-inline:0;}
  .footer-grid{display:grid; grid-template-columns:1.3fr 1fr 1fr; gap:34px; padding-bottom:28px; border-bottom:1px solid rgba(255,255,255,0.14);}
  .footer-col h4{font-family:'ABeeZee',sans-serif; text-transform:uppercase; font-size:0.72rem; letter-spacing:0.06em; color:var(--tan); margin:0 0 14px;}
  .footer-col ul{list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:9px; font-size:0.92rem; color:rgba(255,255,255,0.75);}
  .footer-col p{font-size:0.9rem; color:rgba(255,255,255,0.72); max-width:34ch;}
  .footer-logo img{height:30px; margin-bottom:14px;}
  .footer-bottom{display:flex; justify-content:space-between; align-items:center; padding-top:20px; font-size:0.8rem; color:rgba(255,255,255,0.55); flex-wrap:wrap; gap:10px;}

  /* ============ FLOATING WHATSAPP ============ */
  .float-wa{
    position:fixed; right:22px; bottom:22px; z-index:60;
    display:flex; align-items:center; gap:10px;
    background:var(--green); color:#fff;
    padding:14px 18px; border-radius:999px; text-decoration:none;
    font-family:'ABeeZee',sans-serif; font-size:0.84rem;
    box-shadow:0 14px 30px -10px rgba(53,164,28,0.6);
  }
  /* ============ CREDIT ============ */
  .site-credit{
    text-align:center; font-family:'ABeeZee',sans-serif; font-size:0.68rem;
    letter-spacing:0.02em; color:var(--muted); background:var(--bg);
    padding-block:14px; border-top:1px solid var(--line);
  }
  .site-credit a{color:var(--muted); text-decoration:none;}
  .site-credit a:hover{text-decoration:underline;}

  .float-wa svg{width:20px; height:20px;}
  .float-wa .pulse{position:absolute; inset:0; border-radius:999px; border:2px solid var(--green); animation:pulse 2.2s ease-out infinite;}
  @keyframes pulse{0%{transform:scale(1); opacity:0.7;} 100%{transform:scale(1.5); opacity:0;}}
  @media (prefers-reduced-motion: reduce){ .float-wa .pulse{animation:none; display:none;} }

  /* ============ RESPONSIVE ============ */
  @media (max-width:920px){
    nav.links{position:fixed; inset:60px 0 0 0; background:var(--navy); flex-direction:column; padding:28px var(--gap-page); gap:20px; transform:translateY(-12px); opacity:0; pointer-events:none; transition:opacity .2s ease, transform .2s ease; border-top:1px solid rgba(255,255,255,0.1);}
    nav.links.open{opacity:1; transform:translateY(0); pointer-events:auto;}
    nav.links a.btn{width:100%; justify-content:center;}
    .nav-menu-btn{display:flex;}
    .hero-inner{grid-template-columns:1fr;}
    .hero-visual{order:-1; margin-top:6px;}
    .problem-grid{grid-template-columns:1fr;}
    .benefits-grid{grid-template-columns:1fr 1fr;}
    .about-grid{grid-template-columns:1fr;}
    .badge{margin-inline:auto;}
    .pricing-grid{grid-template-columns:1fr;}
    .checklist{grid-template-columns:1fr;}
    .footer-grid{grid-template-columns:1fr; gap:26px;}
  }
  @media (max-width:560px){
    .benefits-grid{grid-template-columns:1fr;}
    .hero-stats{gap:22px;}
    .cta-band{flex-direction:column; align-items:flex-start;}
    .float-wa span{display:none;}
    .float-wa{padding:16px;}
  }

/* ============ TIPS TEASER (HOME) ============ */
.tips-grid{grid-template-columns:1fr 1fr;}
.tip-card{
  background:var(--surface); border:1px solid var(--line); border-radius:var(--radius);
  padding:28px; display:flex; flex-direction:column; gap:10px; text-decoration:none; color:inherit;
  transition:transform .2s ease, box-shadow .2s ease;
}
.tip-card:hover{transform:translateY(-4px); box-shadow:var(--shadow);}
.tip-card .tip-tag{font-family:'ABeeZee',sans-serif; font-size:0.7rem; letter-spacing:0.05em; text-transform:uppercase; color:var(--green-deep);}
.tip-card h3{margin-top:4px;}
.tip-card p{color:var(--text-soft); font-size:0.92rem; margin-top:6px;}
.tip-card .tip-more{margin-top:auto; padding-top:14px; font-family:'ABeeZee',sans-serif; font-size:0.85rem; color:var(--green-deep); display:flex; align-items:center; gap:6px;}
.tip-card .tip-more svg{width:14px; height:14px; transition:transform .2s ease;}
.tip-card:hover .tip-more svg{transform:translateX(3px);}
@media (max-width:920px){.tips-grid{grid-template-columns:1fr;}}

/* ============ ARTICLE PAGES (subpáginas) ============ */
.page-hero{
  background:var(--navy); color:#fff; padding-block:clamp(44px,6vw,68px);
  margin-inline: calc(-1 * var(--gap-page));
  padding-inline: var(--gap-page);
}
.page-hero .back-link{
  display:inline-flex; align-items:center; gap:6px; color:var(--tan); text-decoration:none;
  font-family:'ABeeZee',sans-serif; font-size:0.85rem; margin-bottom:20px;
}
.page-hero .back-link svg{width:14px; height:14px;}
.page-hero .back-link:hover{color:#fff;}
.page-hero .eyebrow{color:var(--tan);}
.page-hero h1{color:#fff; font-size:clamp(1.9rem,4.4vw,2.7rem); max-width:20ch;}
.page-hero .lede{color:rgba(255,255,255,0.75); margin-top:16px;}

.article{padding-block:clamp(44px,7vw,80px);}
.article-body{max-width:760px;}
.article-section{margin-top:clamp(36px,5vw,54px); padding-top:clamp(36px,5vw,54px); border-top:1px solid var(--line);}
.article-section:first-child{margin-top:0; padding-top:0; border-top:none;}
.article-section h2{display:flex; align-items:center; gap:10px; font-size:clamp(1.25rem,2.4vw,1.55rem);}
.article-section h2 .emoji{font-size:1.15em; line-height:1;}
.article-section p{color:var(--text-soft); margin-top:12px; max-width:68ch;}
.article-section ul{margin:14px 0 0; padding-left:0; list-style:none; display:flex; flex-direction:column; gap:10px;}
.article-section ul li{display:flex; gap:10px; color:var(--text-soft); font-size:0.97rem;}
.article-section ul li svg{flex:none; width:18px; height:18px; color:var(--green); margin-top:3px;}
.article-section ul li b{color:var(--text);}

.callout{background:var(--surface); border-left:4px solid var(--green); border-radius:10px; padding:16px 20px; margin-top:18px; font-size:0.92rem; color:var(--text-soft);}
.callout b{color:var(--text); font-family:'ABeeZee',sans-serif; font-size:0.78rem; text-transform:uppercase; letter-spacing:0.03em; display:block; margin-bottom:4px;}
.callout.warn{border-left-color:var(--tan-deep); background:var(--surface-2);}

.spec-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:12px; margin-top:18px;}
.spec-item{background:var(--surface); border:1px solid var(--line); border-radius:10px; padding:14px; text-align:center;}
.spec-item b{display:block; font-family:'ABeeZee',sans-serif; font-size:1.1rem; color:var(--green-deep);}
.spec-item span{font-size:0.72rem; color:var(--muted); text-transform:uppercase; letter-spacing:0.02em;}
@media (max-width:560px){.spec-grid{grid-template-columns:1fr 1fr;}}

.choice-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:16px; margin-top:16px;}
.choice-item{background:var(--surface); border:1px solid var(--line); border-radius:var(--radius); padding:18px;}
.choice-item b{display:block; font-family:'ABeeZee',sans-serif; font-size:0.92rem; color:var(--text); margin-bottom:6px;}
.choice-item span{color:var(--text-soft); font-size:0.88rem;}
@media (max-width:768px){.choice-grid{grid-template-columns:1fr;}}

.article-cta{
  margin-top:clamp(40px,6vw,60px); background:var(--surface); border:1px solid var(--tan);
  border-radius:var(--radius); padding:28px 30px; display:flex; justify-content:space-between;
  align-items:center; gap:20px; flex-wrap:wrap;
}
.article-cta p{color:var(--text-soft); font-size:0.94rem; max-width:44ch;}
