/* ============================================================
   UniTV Recargas — estilos
   Tema claro · vermelho principal · tons brancos e escuros
   ============================================================ */

:root{
  --red:        #C8102E;
  --red-dark:   #9E0C23;
  --red-soft:   #fdeef0;
  --ink:        #16181d;
  --ink-2:      #3a3d44;
  --ink-3:      #6b6f78;
  --bg:         #ffffff;
  --bg-soft:    #f6f6f7;
  --bg-soft-2:  #f0f1f2;
  --line:       #e4e5e8;
  --line-2:     #d8dade;
  --radius:     16px;
  --radius-sm:  10px;
  --shadow:     0 1px 2px rgba(22,24,29,.04), 0 8px 24px rgba(22,24,29,.05);
  --shadow-lg:  0 2px 4px rgba(22,24,29,.05), 0 18px 50px rgba(22,24,29,.10);
  --max:        1140px;
  --ff-head:    "Sora", system-ui, -apple-system, sans-serif;
  --ff-body:    "Manrope", system-ui, -apple-system, sans-serif;
}

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

html{
  scroll-behavior:smooth;
  scroll-padding-top:84px; /* compensa o header fixo ao rolar */
}

body{
  margin:0;
  font-family:var(--ff-body);
  color:var(--ink);
  background:var(--bg);
  font-size:17px;
  line-height:1.6;
  -webkit-font-smoothing:antialiased;
}

h1,h2,h3{ font-family:var(--ff-head); line-height:1.12; letter-spacing:-.015em; margin:0; }
p{ margin:0; }
a{ color:inherit; text-decoration:none; }
ul,ol{ margin:0; padding:0; list-style:none; }
img{ max-width:100%; display:block; }

.container{ width:100%; max-width:var(--max); margin:0 auto; padding:0 24px; }
.container-narrow{ max-width:780px; }

/* ---------- Botões ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--ff-head); font-weight:600; font-size:15.5px;
  padding:13px 22px; border-radius:999px; border:1.5px solid transparent;
  cursor:pointer; transition:background-color .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
  white-space:nowrap;
}
.btn-lg{ padding:16px 30px; font-size:17px; }
.btn-block{ width:100%; }

.btn-red{ background:var(--red); color:#fff; }
.btn-red:hover{ background:var(--red-dark); transform:translateY(-1px); }

.btn-outline{ background:#fff; color:var(--ink); border-color:var(--line-2); }
.btn-outline:hover{ border-color:var(--red); color:var(--red); }

.btn-ghost{ background:transparent; color:var(--ink); border-color:var(--line-2); }
.btn-ghost:hover{ background:var(--bg-soft); border-color:var(--ink-3); }

.btn-light{ background:#fff; color:var(--red); }
.btn-light:hover{ background:#fff; transform:translateY(-1px); }

.btn .wa{ width:18px; height:18px; fill:currentColor; flex:0 0 auto; }

/* ---------- Header ---------- */
.topbar{
  background:var(--ink); color:#fff;
  font-size:13.5px; text-align:center; padding:8px 16px;
  font-weight:500; letter-spacing:.01em;
}
.topbar strong{ color:#ffd2d7; font-weight:700; }

.site-header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.92);
  backdrop-filter:saturate(160%) blur(8px);
  border-bottom:1px solid var(--line);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; height:68px; gap:20px; }

.brand{ display:flex; align-items:center; gap:11px; }
.brand-logo{ height:42px; width:auto; display:block; }
.brand-mark{ font-family:var(--ff-head); font-weight:800; font-size:23px; letter-spacing:-.02em; color:var(--ink); }
.brand-mark strong{ color:var(--red); font-weight:800; }
.brand-sub{ font-family:var(--ff-head); font-weight:600; font-size:12px; text-transform:uppercase; letter-spacing:.16em; color:var(--ink-3); }

.nav{ display:flex; align-items:center; gap:6px; }
.nav>a{ font-family:var(--ff-head); font-weight:500; font-size:15px; color:var(--ink-2); padding:8px 12px; border-radius:8px; transition:color .15s ease, background-color .15s ease; }
.nav>a:hover{ color:var(--red); }
.nav .nav-cta{ margin-left:8px; }
.nav .nav-cta:hover{ color:#fff; }

.nav-burger{ display:none; }

/* ---------- Seções base ---------- */
.section{ padding:88px 0; }
.section-alt{ background:var(--bg-soft); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }

.section-head{ max-width:680px; margin:0 0 48px; }
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.eyebrow{
  display:inline-block; font-family:var(--ff-head); font-weight:700;
  font-size:12.5px; letter-spacing:.14em; text-transform:uppercase;
  color:var(--red); margin-bottom:14px;
}
.section-head h2,
.section-head h1{ font-size:clamp(28px,4vw,40px); font-weight:700; color:var(--ink); }
.section-sub{ margin-top:16px; font-size:18px; color:var(--ink-2); }

/* ---------- Hero ---------- */
.hero{ padding:74px 0 84px; background:
  radial-gradient(900px 420px at 88% -8%, var(--red-soft), transparent 70%); }
.hero-grid{ display:grid; grid-template-columns:1fr 1.05fr; gap:48px; align-items:center; }
.hero-img{ width:100%; height:auto; filter:drop-shadow(0 24px 40px rgba(22,24,29,.18)); }
.hero-copy .eyebrow{ margin-bottom:18px; }
.hero h1{ font-size:clamp(34px,4.6vw,54px); font-weight:800; color:var(--ink); }
.hero .lead{ margin-top:22px; font-size:19px; color:var(--ink-2); max-width:520px; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:14px; margin-top:32px; }
.hero-points{ display:flex; flex-wrap:wrap; gap:10px 26px; margin-top:30px; }
.hero-points li{ font-family:var(--ff-head); font-weight:600; font-size:14.5px; color:var(--ink-2); display:flex; align-items:center; gap:9px; }
.hero-points li::before{ content:""; width:18px; height:18px; border-radius:50%; flex:0 0 auto;
  background:var(--red) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/12px no-repeat; }

/* ---------- Placeholders de imagem ---------- */
.img-ph{
  position:relative; border-radius:var(--radius); overflow:hidden;
  background:
    repeating-linear-gradient(135deg, #eceef0 0 14px, #f4f5f6 14px 28px);
  border:1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.img-ph span{
  font-family:ui-monospace, "SFMono-Regular", Menlo, monospace;
  font-size:12px; color:var(--ink-3); background:rgba(255,255,255,.78);
  padding:6px 12px; border-radius:999px; border:1px solid var(--line);
  text-align:center;
}
.img-ph-hero{ aspect-ratio:4/5; box-shadow:var(--shadow-lg); }

/* ---------- Faixa de estatísticas ---------- */
.stats{ background:var(--ink); color:#fff; }
.stats-grid{ display:grid; grid-template-columns:repeat(3,1fr); }
.stat{ padding:40px 24px; text-align:center; border-left:1px solid rgba(255,255,255,.10); }
.stat:first-child{ border-left:0; }
.stat-num{ font-family:var(--ff-head); font-weight:800; font-size:clamp(30px,4vw,42px); letter-spacing:-.02em; }
.stat-num em{ color:#ff5d6c; font-style:normal; }
.stat-label{ margin-top:6px; font-size:15px; color:rgba(255,255,255,.72); }

/* ---------- Aviso oficial ---------- */
.notice{ background:var(--red-soft); border-bottom:1px solid #f6d3d8; }
.notice-inner{ display:flex; align-items:center; gap:16px; padding:18px 0; }
.notice-tag{ font-family:var(--ff-head); font-weight:700; font-size:12px; letter-spacing:.08em; text-transform:uppercase;
  color:#fff; background:var(--red); padding:6px 12px; border-radius:999px; flex:0 0 auto; }
.notice p{ font-size:15.5px; color:var(--ink-2); }
.notice strong{ color:var(--ink); }

/* ---------- Planos ---------- */
.plans-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; align-items:stretch; max-width:920px; margin:0 auto; }
.plan-card{
  position:relative; display:flex; flex-direction:column;
  background:#fff; border:1px solid var(--line); border-radius:var(--radius);
  padding:30px 26px; box-shadow:var(--shadow);
}
.plan-card--featured{ border-color:var(--red); box-shadow:0 18px 50px rgba(200,16,46,.16); }
.plan-badge{
  position:absolute; top:-13px; left:26px;
  background:var(--red); color:#fff; font-family:var(--ff-head); font-weight:700;
  font-size:12px; letter-spacing:.04em; padding:6px 13px; border-radius:999px;
}
.plan-name{ font-size:19px; font-weight:700; color:var(--ink-2); }
.plan-price{ font-family:var(--ff-head); font-weight:800; font-size:44px; color:var(--ink); margin:10px 0 2px; letter-spacing:-.02em; line-height:1; }
.plan-price .cur{ font-size:20px; font-weight:700; color:var(--ink-3); vertical-align:super; margin-right:3px; }
.plan-price .cents{ font-size:20px; font-weight:700; color:var(--ink-3); }
.plan-note{ font-size:14px; color:var(--red); font-weight:600; min-height:20px; }
.plan-list{ margin:22px 0 26px; display:flex; flex-direction:column; gap:11px; flex:1 1 auto; }
.plan-list li{ position:relative; padding-left:27px; font-size:14.5px; color:var(--ink-2); }
.plan-list li::before{ content:""; position:absolute; left:0; top:3px; width:17px; height:17px; border-radius:50%;
  background:var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23C8102E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/11px no-repeat; }
.plans-foot{ margin-top:34px; text-align:center; font-size:16px; color:var(--ink-2); }
.plans-foot a{ color:var(--red); font-weight:700; text-decoration:underline; text-underline-offset:3px; }
.plans-foot a:hover{ color:var(--red-dark); }

/* ---------- Como funciona ---------- */
.steps{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.step{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px 24px; }
.section-alt .step{ box-shadow:var(--shadow); }
.step-num{ display:flex; align-items:center; justify-content:center; width:40px; height:40px; border-radius:11px;
  background:var(--ink); color:#fff; font-family:var(--ff-head); font-weight:800; font-size:18px; margin-bottom:18px; }
.step h3{ font-size:18px; font-weight:700; margin-bottom:9px; }
.step p{ font-size:14.5px; color:var(--ink-2); }

/* ---------- Vantagens ---------- */
.features-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:22px; }
.feature{ background:#fff; border:1px solid var(--line); border-radius:var(--radius); padding:28px 26px; }
.feature h3{ font-size:18px; font-weight:700; margin-bottom:9px; color:var(--ink); }
.feature h3::before{ content:""; display:block; width:34px; height:4px; border-radius:999px; background:var(--red); margin-bottom:16px; }
.feature p{ font-size:15px; color:var(--ink-2); }

/* ---------- Compatibilidade ---------- */
.devices{ display:flex; flex-wrap:wrap; gap:12px; margin-top:8px; }
.device-chip{
  display:flex; align-items:center; gap:10px; background:#fff; border:1px solid var(--line);
  border-radius:999px; padding:11px 20px; font-family:var(--ff-head); font-weight:600; font-size:15px; color:var(--ink-2);
}
.device-chip::before{ content:""; width:9px; height:9px; border-radius:50%; background:var(--red); }

/* ---------- Conteúdo / Blog ---------- */
.blog-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:22px; }
.post-card{
  display:flex; flex-direction:column; background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.post-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:var(--line-2); }
.post-thumb{ aspect-ratio:16/10; border-radius:0; border:0; border-bottom:1px solid var(--line); }
.post-thumb img{ width:100%; height:100%; object-fit:cover; display:block; }
.post-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:9px; flex:1 1 auto; }
.post-tag{ align-self:flex-start; font-family:var(--ff-head); font-weight:700; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--red); background:var(--red-soft); padding:5px 11px; border-radius:999px; }
.post-body h3{ font-size:17.5px; font-weight:700; color:var(--ink); }
.post-body p{ font-size:14.5px; color:var(--ink-2); flex:1 1 auto; }
.post-link{ font-family:var(--ff-head); font-weight:700; font-size:14.5px; color:var(--red); margin-top:4px; }

/* ---------- FAQ ---------- */
.faq{ display:flex; flex-direction:column; gap:12px; }
.faq-item{ background:#fff; border:1px solid var(--line); border-radius:var(--radius-sm); overflow:hidden; }
.faq-item summary{
  list-style:none; cursor:pointer; padding:20px 22px; font-family:var(--ff-head); font-weight:600; font-size:17px; color:var(--ink);
  display:flex; align-items:center; justify-content:space-between; gap:16px; transition:color .15s ease;
}
.faq-item summary:hover{ color:var(--red); }
.faq-item summary::-webkit-details-marker{ display:none; }
.faq-item summary::after{ content:"+"; font-family:var(--ff-head); font-weight:700; font-size:24px; color:var(--red); line-height:1; flex:0 0 auto; transition:transform .2s ease; }
.faq-item[open] summary::after{ transform:rotate(45deg); }
.faq-answer{ padding:0 22px 22px; }
.faq-answer p{ font-size:15.5px; color:var(--ink-2); }

/* ---------- CTA ---------- */
.cta{ background:var(--red); color:#fff; }

/* ---------- Conteúdo SEO / páginas de texto ---------- */
.prose{ font-size:17px; color:var(--ink-2); }
.prose p{ margin-bottom:18px; }
.prose h3{ font-size:21px; font-weight:700; color:var(--ink); margin:32px 0 12px; }
.prose strong{ color:var(--ink); }
.prose a{ color:var(--red); font-weight:600; text-decoration:underline; text-underline-offset:3px; }
.prose a:hover{ color:var(--red-dark); }

/* ---------- Botão flutuante WhatsApp ---------- */
.wa-float{
  position:fixed; right:22px; bottom:22px; z-index:60;
  display:flex; align-items:center; gap:10px;
  background:#25D366; color:#fff;
  font-family:var(--ff-head); font-weight:700; font-size:15.5px;
  padding:13px 20px 13px 16px; border-radius:999px;
  box-shadow:0 10px 30px rgba(37,211,102,.4), 0 2px 8px rgba(0,0,0,.18);
  transition:transform .18s ease, box-shadow .18s ease;
}
.wa-float:hover{ transform:translateY(-2px); box-shadow:0 14px 36px rgba(37,211,102,.5), 0 2px 8px rgba(0,0,0,.2); }
.wa-float svg{ width:26px; height:26px; fill:#fff; flex:0 0 auto; }
@media (max-width:560px){
  .wa-float{ right:16px; bottom:16px; padding:14px; }
  .wa-float span{ display:none; }
  .wa-float svg{ width:28px; height:28px; }
}
.cta-inner{ text-align:center; padding:78px 24px; }
.cta h2{ font-size:clamp(28px,4vw,42px); font-weight:800; }
.cta p{ max-width:560px; margin:18px auto 32px; font-size:18px; color:rgba(255,255,255,.92); }

/* ---------- Footer ---------- */
.site-footer{ background:var(--ink); color:#fff; padding:56px 0 30px; }

/* ============================================================
   Blog — hub e artigos
   ============================================================ */
.breadcrumb{ font-size:14px; color:var(--ink-3); margin-bottom:18px; }
.breadcrumb a{ color:var(--ink-3); text-decoration:none; }
.breadcrumb a:hover{ color:var(--red); }
.breadcrumb span{ color:var(--line-2); margin:0 8px; }

/* Hub */
.blog-hub-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.hub-card{
  display:flex; flex-direction:column; background:#fff; border:1px solid var(--line);
  border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow);
  transition:transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.hub-card:hover{ transform:translateY(-3px); box-shadow:var(--shadow-lg); border-color:var(--line-2); }
.hub-card img{ width:100%; height:auto; display:block; border-bottom:1px solid var(--line); }
.hub-body{ padding:22px 22px 24px; display:flex; flex-direction:column; gap:10px; flex:1 1 auto; }
.hub-tag{ align-self:flex-start; font-family:var(--ff-head); font-weight:700; font-size:11.5px; letter-spacing:.08em; text-transform:uppercase; color:var(--red); background:var(--red-soft); padding:5px 11px; border-radius:999px; }
.hub-body h2{ font-size:20px; font-weight:700; color:var(--ink); line-height:1.2; }
.hub-body p{ font-size:14.5px; color:var(--ink-2); flex:1 1 auto; }
.hub-link{ font-family:var(--ff-head); font-weight:700; font-size:14.5px; color:var(--red); margin-top:2px; }

/* Artigo */
.article-head{ max-width:760px; margin:0 auto; text-align:center; }
.article-head .post-tag{ display:inline-block; margin-bottom:16px; }
.article-head h1{ font-size:clamp(28px,4vw,42px); font-weight:800; color:var(--ink); line-height:1.12; }
.article-meta{ margin-top:18px; font-size:14.5px; color:var(--ink-3); display:flex; gap:8px; justify-content:center; align-items:center; flex-wrap:wrap; }
.article-meta span{ color:var(--line-2); }
.article-cover{ max-width:860px; margin:34px auto 0; border-radius:var(--radius); overflow:hidden; border:1px solid var(--line); box-shadow:var(--shadow); }
.article-cover img{ width:100%; height:auto; display:block; }
.article-body{ max-width:720px; margin:44px auto 0; }
.article-body h2{ font-size:26px; font-weight:700; color:var(--ink); margin:38px 0 14px; letter-spacing:-.01em; }
.article-body h3{ font-size:20px; font-weight:700; color:var(--ink); margin:28px 0 10px; }
.article-body p{ font-size:17px; color:var(--ink-2); margin-bottom:18px; }
.article-body ul{ margin:0 0 18px; padding-left:4px; display:flex; flex-direction:column; gap:10px; }
.article-body ul li{ position:relative; padding-left:28px; font-size:16.5px; color:var(--ink-2); }
.article-body ul li::before{ content:""; position:absolute; left:0; top:4px; width:18px; height:18px; border-radius:50%;
  background:var(--red-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23C8102E' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' d='M5 12.5l4.5 4.5L19 7.5'/%3E%3C/svg%3E") center/12px no-repeat; }
.article-body ol{ margin:0 0 18px; padding-left:4px; counter-reset:step; display:flex; flex-direction:column; gap:14px; }
.article-body ol li{ position:relative; padding-left:46px; font-size:16.5px; color:var(--ink-2); min-height:32px; }
.article-body ol li::before{ counter-increment:step; content:counter(step); position:absolute; left:0; top:-2px;
  width:32px; height:32px; border-radius:9px; background:var(--ink); color:#fff;
  font-family:var(--ff-head); font-weight:800; font-size:15px; display:flex; align-items:center; justify-content:center; }
.article-body strong{ color:var(--ink); }
.article-body a{ color:var(--red); font-weight:600; text-decoration:underline; text-underline-offset:3px; }
.article-body a:hover{ color:var(--red-dark); }
.article-cta{
  margin:40px auto 0; max-width:720px; background:var(--red-soft); border:1px solid #f6d3d8;
  border-radius:var(--radius); padding:30px 28px; text-align:center;
}
.article-cta h3{ font-size:22px; font-weight:800; color:var(--ink); margin-bottom:10px; }
.article-cta p{ font-size:16px; color:var(--ink-2); margin-bottom:20px; }
.article-back{ max-width:720px; margin:34px auto 0; }
.article-back a{ font-family:var(--ff-head); font-weight:700; color:var(--red); }

@media (max-width:860px){ .blog-hub-grid{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .blog-hub-grid{ grid-template-columns:1fr; } }

/* ---------- Footer (cont.) ---------- */
.footer-inner{ display:flex; justify-content:space-between; gap:40px; flex-wrap:wrap; }
.footer-brand{ max-width:340px; }
.footer-brand .brand-logo{ height:46px; margin-bottom:12px; }
.footer-brand .brand-sub{ display:block; color:rgba(255,255,255,.6); }
.footer-brand p{ margin-top:14px; font-size:14.5px; color:rgba(255,255,255,.66); line-height:1.6; }
.footer-nav{ display:flex; flex-direction:column; gap:12px; }
.footer-nav a{ font-size:15px; color:rgba(255,255,255,.78); transition:color .15s ease; }
.footer-nav a:hover{ color:#fff; }
.footer-bottom{ margin-top:40px; padding-top:22px; border-top:1px solid rgba(255,255,255,.12); }
.footer-bottom p{ font-size:13.5px; color:rgba(255,255,255,.5); }

/* ============================================================
   Responsivo
   ============================================================ */
@media (max-width:980px){
  .hero-grid{ grid-template-columns:1fr; gap:40px; }
  .hero-art{ order:-1; max-width:560px; margin:0 auto; }
  .plans-grid{ grid-template-columns:repeat(2,1fr); }
  .steps{ grid-template-columns:repeat(2,1fr); }
  .features-grid{ grid-template-columns:repeat(2,1fr); }
  .blog-grid{ grid-template-columns:repeat(2,1fr); }
}

@media (max-width:760px){
  /* menu mobile */
  .nav-burger{
    display:flex; flex-direction:column; justify-content:center; gap:5px;
    width:44px; height:44px; cursor:pointer; border-radius:10px;
  }
  .nav-burger span{ display:block; height:2.5px; width:24px; background:var(--ink); border-radius:2px; transition:transform .2s ease, opacity .2s ease; margin:0 auto; }
  .nav{
    position:absolute; top:100%; left:0; right:0;
    flex-direction:column; align-items:stretch; gap:2px;
    background:#fff; border-bottom:1px solid var(--line);
    padding:14px 24px 22px; box-shadow:var(--shadow);
    max-height:0; overflow:hidden; opacity:0; pointer-events:none;
    transition:max-height .25s ease, opacity .2s ease, padding .25s ease;
  }
  .nav>a{ padding:13px 6px; font-size:16px; border-bottom:1px solid var(--line); border-radius:0; }
  .nav>a:last-child{ border-bottom:0; }
  .nav .nav-cta{ margin:12px 0 0; text-align:center; }
  .nav-toggle:checked ~ .nav{ max-height:520px; opacity:1; pointer-events:auto; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1){ transform:translateY(7.5px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2){ opacity:0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3){ transform:translateY(-7.5px) rotate(-45deg); }
}

@media (max-width:560px){
  body{ font-size:16px; }
  .section{ padding:60px 0; }
  .hero{ padding:48px 0 60px; }
  .plans-grid{ grid-template-columns:1fr; }
  .steps{ grid-template-columns:1fr; }
  .features-grid{ grid-template-columns:1fr; }
  .blog-grid{ grid-template-columns:1fr; }
  .stats-grid{ grid-template-columns:1fr; }
  .stat{ border-left:0; border-top:1px solid rgba(255,255,255,.10); }
  .stat:first-child{ border-top:0; }
  .notice-inner{ flex-direction:column; align-items:flex-start; gap:10px; }
  .hero-actions .btn{ width:100%; }
}
