:root{
  --bg:#ffffff;
  --text:#0a0a0a;
  --muted:#6b6b6b;
  --accent:#246BFD; 
  --card:#f5f5f5;
  --line:#e9e9e9;
  --radius:16px;
  --radius-lg:22px;
  --shadow:0 10px 30px rgba(0,0,0,.08);
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"Sora",system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.6;
}

.section{padding:72px 20px; max-width:1200px; margin:0 auto}
.grid-3{display:grid; gap:22px; grid-template-columns:repeat(3,minmax(0,1fr))}
.grid-2{display:grid; gap:22px; grid-template-columns:repeat(2,minmax(0,1fr))}
h1,h2,h3{line-height:1.2; margin:0 0 10px}
h1{font-size:clamp(2rem,4vw,3.2rem); letter-spacing:-.02em}
h2{font-size:clamp(1.6rem,2.5vw,2.2rem)}
h3{font-size:1.15rem}
p{margin:0 0 12px; color:#222}
.micro{font-size:.85rem; color:var(--muted)}
ul{margin:0; padding-left:18px}
a{color:inherit; text-decoration:none}

.btn{
  display:inline-block;
  background:#000;
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  font-weight:700;
  border:1px solid #000;
  transition:transform .12s ease, background .2s ease;
}
.btn:hover{transform:translateY(-1px)}
.btn-outline{background:transparent; color:#000}
.btn-outline:hover{background:#000; color:#fff}

.site-header .nav{
  display:flex;
  justify-content:space-between;
  align-items:center;    
  padding:8px 24px;
  position:relative;
}
header, nav {
  border-bottom: none !important;
  box-shadow: none !important;
}
@media (max-width: 720px){
  .site-header .menu a[href="#precios"] {
    display: none !important;
  }
}

.top-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  z-index: 1200;
  opacity: 0;
  transform: translateY(-100%);
  transition: opacity .3s ease, transform .3s ease;
  pointer-events: none;
}
.top-nav--show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.top-nav__list {
  list-style: none;
  margin: 0;
  padding: 10px 24px;
  display: flex;
  justify-content: flex-end;
  gap: 24px;
}
.top-nav a {
  text-decoration: none;
  color: #000;
  font-weight: 600;
  padding: 6px 10px;
  border-radius: 6px;
}
.top-nav a:hover {
  background: var(--card);
}

.top-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-nav__brand {
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: 0.5px;
  color: #000;
}

.top-nav__brand .reg {
  font-size: 0.75rem;
  vertical-align: super;
  margin-left: 2px;
}

.top-nav__inner{
  justify-content: flex-start;     
  gap: 16px;
}
.top-nav__list{
  margin-left: auto;               
  display: flex; gap: 20px;
}

@media (max-width: 720px){
  .top-nav{
    background: #fff;
    position: fixed;
    overflow: hidden;
  }
  .top-nav__inner{ position: relative; z-index: 1; }

  .top-nav::before{
    content: "LANZATUPAGINA®";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: center;
    font-weight: 900;
    letter-spacing: 5px;
    opacity: .1;
    color: #000;
    z-index: 0;
    pointer-events: none;
    font-size: clamp(1.3rem, 10vw, 2rem);
  }

  .top-nav__brand{ display: none; }
  .top-nav__list{
    margin-left: 0;
    width: 100%;
    justify-content: space-between;
    gap: 12px;
    position: relative;
    z-index: 2;
  }
  .top-nav__list a{
    padding: 8px 10px;
    font-size: .95rem;
  }
}

@media (max-width: 360px){
  .top-nav__list{ gap: 8px; }
  .top-nav__list a{ padding: 7px 8px; font-size: .92rem; }
}

@media (max-width: 720px){
  .top-nav__inner{ padding: 8px 12px; gap: 10px; }
  .top-nav__brand{ font-size: 1rem; letter-spacing: .3px; white-space: nowrap; }
  .top-nav__list{ gap: 12px; }
  .top-nav__list a{ padding: 8px 10px; font-size: .95rem; }
}

@media (max-width: 380px){
  .top-nav__brand .reg{ display:none; }
  .top-nav__list{ gap: 8px; }
  .top-nav__list a{ padding: 7px 8px; font-size:.92rem; }
}

body.topnav-padding{
  padding-top: var(--topnav-h, 48px);
}

.top-nav{
  background: rgba(255,255,255,.9);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
}

@media (max-width: 720px){
  body.nav-floating .nav{
    left: 12px;
    right: 12px;
    top: 8px;
    justify-content: space-between;
  }
  body.nav-floating .brand img{ max-width: 120px; }
}

.btn-fixed {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: #000;
  padding: 14px 28px;
  border: 2px solid #000;
  border-radius: 999px;
  font-weight: 700;
  z-index: 1000;
  box-shadow: 0 6px 14px rgba(0,0,0,.15);
  transition: transform .2s ease, background .2s ease, color .2s ease;
}

.btn-fixed:hover {
  background: #000;
  color: #fff;
  transform: translateX(-50%) scale(1.05);
}

.brand{
  display:flex;
  align-items:flex-start;
  gap:12px;
  position:relative;
  flex:1;
}
.brand img{ display:block; }

.menu{
  list-style:none;
  display:flex;
  gap:16px;
  margin:0;
  padding:0;
}
.menu a{ text-decoration:none; font-weight:600; }

.site-header,
.hero {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.hero {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
.nav{
  display:flex; align-items:center; justify-content:space-between;
  max-width:1200px; margin:0 auto; padding:16px 20px; gap:16px;
}
.brand{display:flex; align-items:center; gap:10px; font-weight:800; position: relative;}
.brand.small span{font-weight:700; font-size:1rem}
.menu{display:flex; gap:18px; align-items:center; list-style:none; margin:0; padding:0}
.menu a{padding:8px 10px; border-radius:10px}
.menu a:hover{background:var(--card)}
.nav-toggle{display:none; background:#000; color:#fff; padding:8px 12px; border-radius:10px; border:0}
.brand-box {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 700;
  font-size: 35px;
  white-space: nowrap;
  color: #000;
  pointer-events: none; 
}

.hero-title {
  font-size: 2.5rem; 
  font-weight: 700;
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--muted);
  text-align: center;
  margin-top: 10px; 
}
.hero-tagline {
  font-size: 1rem;
  font-style: italic;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}
.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: #000;
  touch-action: none;
  width: 100vw;
  height: 100vh;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.hero p{color:var(--muted); font-size:1.05rem}
.cta{display:flex; gap:14px; margin-top:14px}

.title-center,
.title-services,
.title-ejemplos,
.title-proceso,
.title-sobreNosotros,
.title-why,
.title-blog,
.title-testimonio,
.title-planes,
.title-faq,
.title-solicita{
  display:block;
  width:100%;
  text-align:center;
  margin:0 auto;
  margin-bottom:40px;
}
.title-convertimos{
  display:block;
  width:100%;
  text-align:center;
  margin:0 auto;
  margin-top: 30px; 
}
.title-pagas{
  display:block;
  width:100%;
  text-align:center;
  margin:0 auto;
  margin-top: 30px; 
}
.title-queNecesitamos {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  text-align: center;
  display: block;
  color: #000 !important;
}

#testimonios .testimonial.card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
#testimonios .testimonial.card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 16px 36px rgba(0,0,0,0.15);
}

.CTA2 {
  background: #56ac6b;
  color: #fff;
  padding:60px 40px;
  border-radius: 16px;
  text-align: center;
  margin: 40px auto;
  width: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.CTA2 .title-pagas {
  margin: 10px 0;
}

#blog .grid-3{
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
#blog .blog-card{
  padding: 45px;
  min-height: 800px;
  font-size: 1.1rem;
}
#blog .blog-card h3{ font-size: 1.4rem; }
#blog .blog-card {
  transition: transform 0.3s ease;
}
#blog .blog-card:hover {
  transform: scale(1.08);
}

.card{
  background:var(--card);
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  padding:22px;
  box-shadow:var(--shadow);
}
.bullets{color:#111}
.bullets li{margin:6px 0}

.examples .example{
  overflow:hidden; border-radius:var(--radius-lg);
  border:1px solid var(--line); background:#fff; box-shadow:var(--shadow)
}
.examples img{display:block; width:100%; height:auto; aspect-ratio:4/3; object-fit:cover}
.example-body{padding:16px}

.trust{display:grid; gap:10px}
.panel{
  background:#111; color:#fff; border-radius:var(--radius-lg);
  padding:24px; display:flex; flex-direction:column; gap:12px;
}

.pricing{display:grid; gap:22px; grid-template-columns:repeat(3,minmax(0,1fr))}
.price{
  border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:22px; background:#fff; box-shadow:var(--shadow)
}
.price .tagline{color:var(--muted); margin-bottom:6px}
.price .price-num{font-size:1.6rem; font-weight:800; margin:6px 0 12px}
.price.featured{border-color:#000; transform:scale(1.02)}
.price.featured .btn{background:#000; color:#fff}

.faq {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
}
.faq h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 2rem;
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  border: none;
  border-bottom: 1px solid #ddd;
  background: #f9f9f9;
  cursor: pointer;
  transition: background 0.3s;
}
.faq-question:hover {
  background: #eee;
}
.faq-answer {
  display: none;
  padding: 1rem;
  background: #fff;
  border-left: 3px solid #000;
}
.faq-item.active .faq-answer {
  display: block;
}

.contact{
  background:#fff; border:1px solid var(--line);
  border-radius:var(--radius-lg); padding:22px; box-shadow:var(--shadow)
}
.form-grid{display:grid; gap:16px; grid-template-columns:repeat(2,minmax(0,1fr))}
.form-grid label{display:flex; flex-direction:column; gap:8px; font-weight:600}
.form-grid .full{grid-column:1/-1}
input,select,textarea{
  border:1px solid var(--line); border-radius:12px; padding:12px 12px;
  font:inherit; background:#fafafa;
}
input:focus,select:focus,textarea:focus{outline:2px solid #000}
.form-foot{
  display:flex; align-items:center; justify-content:space-between; gap:16px; margin-top:14px
}
.checkbox{display:flex; align-items:center; gap:8px}

.footer{border-top:1px solid var(--line); margin-top:60px; background:#fff}
.footer-inner{
  max-width:1200px; margin:0 auto; padding:28px 20px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px
}
.footer nav a{color:var(--muted); margin-right:14px}
.footer nav a:hover{color:#000}

.whatsapp{
  position:fixed; right:18px; bottom:18px;
  width:54px; height:54px; border-radius:50%;
  display:grid; place-items:center; background:#25D366; color:#fff;
  box-shadow:0 10px 20px rgba(0,0,0,.15); z-index:50;
}

.reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease}
.reveal.visible{opacity:1; transform:none}

@media (max-width: 980px){
  .grid-3{grid-template-columns:1fr 1fr}
  .pricing{grid-template-columns:1fr 1fr}
}
@media (max-width: 720px){
  .grid-2, .grid-3, .pricing{grid-template-columns:1fr}
  .cta{flex-direction:column; align-items:start}
  .menu{display:none}
  .nav-toggle{display:inline-block}
  .nav[aria-expanded="true"] .menu,
  .menu.open{display:flex; flex-direction:column; gap:10px; background:#fff; position:absolute; top:64px; right:20px; padding:14px; border:1px solid var(--line); border-radius:14px; box-shadow:var(--shadow)}
}

.reveal{opacity:0; transform:translateY(18px); transition:opacity .6s ease, transform .6s ease; will-change: transform, opacity}
.reveal.visible{opacity:1; transform:none}

.slide-left{ transform:translateX(-28px); }
.slide-right{ transform:translateX(28px); }
.reveal{ transition-delay: var(--delay, 0s); }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.visible{ transition:none; transform:none; opacity:1 }
}

:root{
  --slideDist: 90px;
  --staggerStep: .12s;
}

.reveal{
  opacity:0;
  filter: blur(8px);
  transition: opacity .9s ease, transform .9s cubic-bezier(.2,.7,.2,1), filter .9s ease;
  will-change: transform, opacity, filter;
}
.reveal.visible{ opacity:1; filter: blur(0) }

.slide-left{  transform: translateX(calc(-1 * var(--slideDist))); }
.slide-right{ transform: translateX(var(--slideDist)); }

.slide-left.boom.visible   { animation: slideInLeftOvershoot  .9s cubic-bezier(.18,.9,.15,1) both; }
.slide-right.boom.visible  { animation: slideInRightOvershoot .9s cubic-bezier(.18,.9,.15,1) both; }

.boom-all .slide-left.visible  { animation: slideInLeftOvershoot  .9s cubic-bezier(.18,.9,.15,1) both; }
.boom-all .slide-right.visible { animation: slideInRightOvershoot .9s cubic-bezier(.18,.9,.15,1) both; }

@keyframes slideInLeftOvershoot{
  0%   { opacity:0; transform: translateX(calc(-1 * var(--slideDist) * 1.6)) scale(.985) }
  70%  { opacity:1; transform: translateX(10px) scale(1.01) }
  100% { transform: none }
}
@keyframes slideInRightOvershoot{
  0%   { opacity:0; transform: translateX(calc(var(--slideDist) * 1.6)) scale(.985) }
  70%  { opacity:1; transform: translateX(-10px) scale(1.01) }
  100% { transform: none }
}

.with-perspective{ perspective: 1200px }
.depth-3d.slide-left  { transform: rotateY(-10deg) translateX(calc(-1 * var(--slideDist))) translateZ(-120px); }
.depth-3d.slide-right { transform: rotateY( 10deg) translateX(var(--slideDist)) translateZ(-120px); }
.depth-3d.visible     { transform: none; }

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal.visible,
  .slide-left.boom.visible, .slide-right.boom.visible{
    transition: none !important; animation: none !important; filter:none !important; transform:none !important; opacity:1 !important;
  }
}

.planes-mantenimiento{
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1rem 4rem;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:#111;
}
.planes-mantenimiento h2{
  text-align:center;
  font-size:2rem;
  line-height:1.2;
  margin:0 0 .75rem;
}
.pm-intro,.pm-note{
  text-align:center;
  color:#555;
  margin:0 auto 2rem;
  max-width: 720px;
  font-size:1.05rem;
}

.pm-grid{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:1.5rem;
}
@media (max-width: 820px){
  .pm-grid{ grid-template-columns: 1fr; }
}

.pm-card{
  position:relative;
  background:#fff;
  border:1px solid #e8e8e8;
  border-radius:16px;
  padding:1.75rem 1.5rem 1.5rem;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.pm-card:hover{
  transform: translateY(-4px);
  box-shadow:0 14px 32px rgba(0,0,0,.08);
  border-color:#ddd;
}

.pm-featured{
  border:2px solid #000;
  box-shadow:0 10px 30px rgba(0,0,0,.1);
}
.pm-badge{
  position:absolute;
  top:-12px; right:16px;
  background:#000;
  color:#fff;
  font-size:.8rem;
  letter-spacing:.02em;
  padding:.35rem .6rem;
  border-radius:999px;
}

.pm-header{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:1rem;
  margin-bottom:1rem;
}
.pm-header h3{
  font-size:1.25rem;
  margin:0;
}
.pm-price{
  font-weight:700;
  font-size:1.15rem;
}

.pm-list{
  list-style:none;
  padding:0; margin:0 0 1.25rem;
}
.pm-list li{
  position:relative;
  padding-left:1.6rem;
  margin:.6rem 0;
}
.pm-list li::before{
  content:"✓";
  position:absolute;
  left:0; top:0;
  line-height:1;
  font-weight:700;
}

.pm-footer{ display:flex; }
.pm-cta{
  display:inline-block;
  text-decoration:none;
  background:#111;
  color:#fff;
  padding:.8rem 1rem;
  border-radius:12px;
  font-weight:600;
  transition: opacity .2s ease;
}
.pm-cta:hover{ opacity:.9; }
.pm-cta-featured{ background:#000; }

.faq { display:grid; gap:12px; }
.faq details{
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
  padding:14px 16px;
}
.faq summary{
  cursor:pointer; font-weight:700; list-style:none; outline:none;
}
.faq summary::-webkit-details-marker{ display:none }
.faq details[open]{ background:#fdfdfd; }
.faq details p{ margin:10px 0 0; color:#333 }

.blog-card .meta{ color:var(--muted); font-size:.9rem; margin:-2px 0 8px }

.steps{
  list-style:none; margin:0; padding:0;
  display:grid; gap:16px; grid-template-columns:repeat(2,minmax(0,1fr));
}
.step{
  background:#fff; border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:18px; box-shadow:var(--shadow); position:relative; display:grid; gap:6px;
}
.step .num{
  position:absolute; top:14px; right:14px;
  width:34px; height:34px; border-radius:50%; display:grid; place-items:center;
  background:#000; color:#fff; font-weight:800; font-size:.95rem;
}

.about-media img{
  width:100%; height:auto; border-radius:var(--radius-lg);
  border:1px solid var(--line); box-shadow:var(--shadow);
}

.testimonial blockquote{ margin:0 0 10px; font-weight:600 }
.testimonial figcaption{ color:var(--muted); font-size:.95rem }

@media (max-width: 980px){
  .steps{ grid-template-columns:1fr }
}

.logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 28px;
}

@media (max-width: 720px){
  .logos {
    flex-wrap: nowrap;
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 10px;
  }
  .logos::-webkit-scrollbar { display: none; }
}

.logo-item img {
  max-width: 160px;
  max-height: 70px;
  object-fit: contain;
  filter: grayscale(100%) opacity(.8);
  transition: filter .3s ease, transform .3s ease;
}
.logo-item img:hover {
  filter: none;
  transform: scale(1.05);
}

.grid-4 {
  display: grid;
  gap: 22px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.example {
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  box-shadow:var(--shadow);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  padding:24px 18px;
  gap:16px;
}

.logo-box {
  width:140px;
  height:140px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: transparent;
  border: none;
  padding: 0;
}

.logo-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.logo-box img {
  max-width:80%;
  max-height:80%;
  object-fit:contain;
}

.example-body p {
  color: var(--muted);
  font-size: .95rem;
  margin: 0 0 10px;
}

.example-body .btn {
  margin-top: auto;
}

@media (max-width: 980px) {
  .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
}

.whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #25D366;
  color: #fff;
  box-shadow: 0 10px 20px rgba(0,0,0,.15);
  z-index: 50;
  line-height: 0;
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
}

.whatsapp-float a {
  background: #25d366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, .4);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.whatsapp-float a:hover {
  transform: scale(1.1);
}

.form-status {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
}
.form-status.success { color: green; }
.form-status.error { color: red; }

.cc-overlay{
  position: fixed; inset: 0;
  background: rgba(0,0,0,.5);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  z-index: 1000;
}
.cc-modal{
  position: fixed;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  width: min(720px, 92vw);
  max-height: 85vh;
  overflow: auto;
  background: #fff;
  color: #111;
  border: 1px solid #e9e9e9;
  border-radius: 18px;
  box-shadow: 0 20px 50px rgba(0,0,0,.25);
  padding: 22px 20px;
  z-index: 1001;
}
@media (min-width: 900px){
  .cc-modal{ width: min(50vw, 780px) }
}
.cc-close{
  position: absolute; right: 10px; top: 8px;
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid #ddd; background: #f7f7f7; cursor: pointer;
  font-size: 22px; line-height: 1;
}
.cc-desc{ color:#444; margin: 6px 0 12px }
.cc-details summary{
  cursor: pointer; font-weight: 700; list-style: none; margin: 8px 0 10px;
}
.cc-details summary::-webkit-details-marker{ display:none }
.cc-options{ display: grid; gap: 8px; margin-bottom: 10px }
.cc-opt{ display:flex; gap:10px; align-items:center; font-size:.95rem }
.cc-actions{
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: flex-end; margin-top: 12px;
}
.cc-btn{
  appearance: none; border: 1px solid #111; background:#111; color:#fff;
  padding: 10px 14px; border-radius: 10px; font-weight: 700; cursor: pointer;
}
.cc-outline{ background:#fff; color:#111 }
.cc-ghost{ background:#f5f5f5; color:#111; border-color:#ddd }
.cc-legal{ font-size:.85rem; color:#666; margin-top: 8px }
