:root{
  --bg:#07080b;
  --bg-2:#0d1016;
  --panel:#111722;
  --panel-2:#171e2a;
  --ink:#fffaf1;
  --muted:#b9b2a5;
  --muted-2:#8e887e;
  --paper:#f6efe3;
  --gold:#d89025;
  --gold-2:#f4ad3f;
  --gold-3:#ffd492;
  --green:#20c46a;
  --red:#ef4b4b;
  --line:rgba(255,255,255,.12);
  --line-gold:rgba(216,144,37,.32);
  --shadow:0 34px 110px rgba(0,0,0,.46);
  --shadow-gold:0 24px 70px rgba(216,144,37,.26);
  --radius-xl:34px;
  --radius-lg:26px;
  --radius-md:18px;
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(circle at 15% -10%,rgba(216,144,37,.24),transparent 38rem),
    radial-gradient(circle at 90% 4%,rgba(255,255,255,.08),transparent 30rem),
    linear-gradient(180deg,#06070a 0%,#0c0f15 42%,#07080b 100%);
  overflow-x:hidden;
}
body::before{
  content:"";
  position:fixed;
  inset:0;
  z-index:-2;
  pointer-events:none;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px,transparent 1px),
    linear-gradient(90deg,rgba(255,255,255,.035) 1px,transparent 1px);
  background-size:80px 80px;
  mask-image:linear-gradient(180deg,rgba(0,0,0,.65),transparent 70%);
}
body::after{
  content:"";
  position:fixed;
  inset:0;
  z-index:-1;
  pointer-events:none;
  background:linear-gradient(90deg,rgba(0,0,0,.35),transparent 28%,transparent 72%,rgba(0,0,0,.35));
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
button,input,textarea,select{font:inherit}

.page-shell{min-height:100vh;overflow:hidden}
.section-pad{padding:112px clamp(22px,5vw,92px)}

.sale-strip{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  min-height:44px;
  padding:10px 20px;
  color:#150d04;
  background:linear-gradient(90deg,#c77518,#ffd28b 48%,#e79828);
  font-weight:900;
}
.sale-strip span{
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.sale-strip strong{font-size:14px}
.sale-strip a{
  border-bottom:2px solid rgba(21,13,4,.45);
  color:#150d04;
}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
  padding:18px clamp(22px,5vw,92px);
  border-bottom:1px solid rgba(255,255,255,.09);
  background:rgba(7,8,11,.76);
  backdrop-filter:blur(22px);
}
.brand{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:255px;
  color:var(--ink);
}
.brand img{
  width:58px;
  height:58px;
  object-fit:contain;
  border-radius:16px;
  box-shadow:0 14px 34px rgba(0,0,0,.26);
}
.logo-brand{min-width:380px}
.brand-lockup{
  display:flex;
  align-items:center;
  gap:12px;
  flex:none;
}
.brand-lockup img{
  display:block;
  object-fit:contain;
  border-radius:16px;
  box-shadow:0 14px 34px rgba(0,0,0,.26);
}
.heres-brand-mark{width:78px;height:78px}
.costpro-brand-mark{width:104px;height:104px}
.brand-logo-svg{
  display:block;
  width:390px;
  height:auto;
  max-width:100%;
}
.logo-brand img{
  width:auto;
  height:104px;
  max-width:390px;
  border-radius:0;
  box-shadow:none;
}
.footer-brand.logo-brand img{
  height:86px;
  max-width:320px;
}
.footer-brand .brand-logo-svg{
  width:320px;
}
.brand-copy{
  display:grid;
  gap:2px;
  line-height:1;
}
.brand-copy strong{
  font-family:"Playfair Display",Georgia,serif;
  color:#fff;
  font-size:26px;
  font-weight:950;
  letter-spacing:.01em;
}
.brand-copy em{
  color:var(--gold-3);
  font-style:normal;
}
.brand-copy small{
  color:var(--gold-2);
  font-size:10px;
  font-weight:950;
  letter-spacing:.16em;
  text-transform:uppercase;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:24px;
  color:var(--muted);
  font-size:14px;
  font-weight:800;
}
.main-nav a{transition:color .18s ease}
.main-nav a:hover{color:var(--ink)}
.header-actions{display:flex;align-items:center;gap:12px}
.header-link{
  color:var(--muted);
  font-size:14px;
  font-weight:900;
}
.header-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:42px;
  padding:12px 18px;
  border:1px solid var(--line-gold);
  border-radius:999px;
  color:#180f05;
  background:linear-gradient(135deg,var(--gold-3),var(--gold));
  box-shadow:0 14px 36px rgba(216,144,37,.22);
  font-weight:900;
}
.header-cta-light{
  color:var(--ink);
  background:rgba(255,255,255,.055);
  border-color:rgba(255,255,255,.14);
  box-shadow:none;
}

.hero{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(500px,.92fr);
  align-items:center;
  gap:72px;
  min-height:860px;
  padding-top:92px;
}
.hero::before{
  content:"";
  position:absolute;
  inset:56px clamp(18px,4vw,68px) auto;
  height:650px;
  z-index:-1;
  border:1px solid rgba(216,144,37,.14);
  border-radius:48px;
  background:
    radial-gradient(circle at 16% 20%,rgba(216,144,37,.22),transparent 28rem),
    radial-gradient(circle at 78% 8%,rgba(255,255,255,.08),transparent 24rem),
    linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.012));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
}
.eyebrow,
.section-head span,
.demo-band span,
.price-copy span{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--gold-3);
  font-size:12px;
  font-weight:900;
  letter-spacing:.2em;
  text-transform:uppercase;
}
.eyebrow::before,
.section-head span::before,
.demo-band span::before,
.price-copy span::before{
  content:"";
  width:28px;
  height:1px;
  background:linear-gradient(90deg,var(--gold-3),transparent);
}
.hero h1,
.section-head h2,
.price-copy h2,
.demo-band h2{
  margin:18px 0;
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(50px,6.6vw,96px);
  line-height:.88;
  letter-spacing:-.055em;
}
.hero h1{
  max-width:1000px;
  text-transform:uppercase;
}
.hero-lead{
  max-width:760px;
  margin:0;
  color:var(--muted);
  font-size:20px;
  line-height:1.7;
}
.hero-checks{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px;
  max-width:650px;
  margin-top:30px;
}
.hero-checks span{
  display:flex;
  align-items:center;
  gap:10px;
  min-height:48px;
  padding:12px 14px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:999px;
  background:rgba(255,255,255,.055);
  color:var(--paper);
  font-weight:900;
}
.hero-checks i{
  display:grid;
  place-items:center;
  width:24px;
  height:24px;
  border-radius:50%;
  color:#120c04;
  background:linear-gradient(135deg,var(--gold-3),var(--gold));
  font-style:normal;
  font-size:13px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:15px 24px;
  border:1px solid transparent;
  border-radius:999px;
  cursor:pointer;
  font-weight:950;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background .18s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-xl{
  min-height:64px;
  padding:19px 32px;
  font-size:17px;
}
.btn-primary{
  color:#150d04;
  background:linear-gradient(135deg,#ffe0a8 0%,#f1a23a 45%,#c87517 100%);
  box-shadow:var(--shadow-gold);
}
.btn-whatsapp{
  color:#eafff3;
  border-color:rgba(32,196,106,.42);
  background:linear-gradient(135deg,rgba(32,196,106,.28),rgba(8,58,33,.88));
  box-shadow:0 18px 48px rgba(32,196,106,.16);
}
.btn-secondary{
  color:var(--ink);
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.065);
}
.btn.full{width:100%}
.hero-metrics{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
  max-width:820px;
  margin-top:36px;
}
.hero-metrics article{
  min-height:92px;
  padding:18px 16px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:22px;
  background:linear-gradient(160deg,rgba(255,255,255,.075),rgba(255,255,255,.025));
}
.hero-metrics strong{
  display:block;
  color:var(--gold-3);
  font-size:clamp(24px,2vw,34px);
  line-height:1;
}
.hero-metrics span{
  display:block;
  margin-top:8px;
  color:var(--muted);
  font-size:12px;
  font-weight:850;
}

.hero-visual{position:relative;min-width:0}
.launch-badge{
  position:absolute;
  right:-18px;
  top:-34px;
  z-index:5;
  width:190px;
  padding:20px;
  border:1px solid rgba(0,0,0,.08);
  border-radius:26px;
  color:#130d06;
  background:linear-gradient(145deg,#fff7e9,#f1a23a);
  box-shadow:0 28px 70px rgba(0,0,0,.38);
  transform:rotate(3deg);
}
.launch-badge span{
  display:block;
  font-size:13px;
  font-weight:950;
  letter-spacing:.12em;
}
.launch-badge strong{
  display:block;
  margin:8px 0 4px;
  font-size:30px;
  line-height:1;
}
.launch-badge small{font-weight:900;color:#5b3c13}
.laptop-mockup{
  position:relative;
  padding:14px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:34px;
  background:linear-gradient(145deg,#202633,#090b0f);
  box-shadow:var(--shadow);
}
.laptop-topbar{
  display:flex;
  align-items:center;
  gap:8px;
  padding:4px 12px 13px;
  color:var(--muted);
}
.laptop-topbar span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#38404d;
}
.laptop-topbar span:first-child{background:#f26d5b}
.laptop-topbar span:nth-child(2){background:#f3b641}
.laptop-topbar span:nth-child(3){background:#31c66b}
.laptop-topbar strong{
  margin-left:10px;
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.laptop-screen{
  position:relative;
  aspect-ratio:16/10;
  overflow:hidden;
  border:1px solid rgba(216,144,37,.28);
  border-radius:24px;
  background:linear-gradient(145deg,#07090e,#131923);
  padding:10px;
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,.05),
    inset 0 -30px 60px rgba(0,0,0,.35),
    0 32px 95px rgba(0,0,0,.44);
}
.laptop-screen-image,
.laptop-screen-video{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  background:#070a0f;
  box-shadow:0 22px 70px rgba(0,0,0,.42);
}
.laptop-screen-video{
  object-fit:contain;
}
.screen-reflection{
  position:absolute;
  inset:10px;
  z-index:2;
  border-radius:18px;
  pointer-events:none;
  background:
    linear-gradient(118deg,rgba(255,255,255,.24),rgba(255,255,255,.06) 28%,transparent 29% 68%,rgba(255,255,255,.08)),
    radial-gradient(circle at 76% 8%,rgba(255,255,255,.18),transparent 28%);
  opacity:.36;
  mix-blend-mode:screen;
}
.laptop-screen:has(video) .screen-reflection{
  opacity:.18;
}
.laptop-base{
  width:86%;
  height:20px;
  margin:0 auto -30px;
  border-radius:0 0 36px 36px;
  background:linear-gradient(180deg,#2a303a,#10141b);
  box-shadow:0 30px 55px rgba(0,0,0,.44);
}
.app-preview{
  position:absolute;
  inset:0;
  display:grid;
  grid-template-columns:145px 1fr;
  background:
    radial-gradient(circle at 78% 8%,rgba(216,144,37,.2),transparent 20rem),
    #0b0f15;
}
.app-sidebar{
  display:grid;
  align-content:start;
  gap:11px;
  padding:18px 14px;
  border-right:1px solid rgba(255,255,255,.08);
  background:#0e141d;
}
.app-sidebar b{
  margin-bottom:10px;
  color:var(--gold-3);
  font-size:18px;
}
.app-sidebar span{
  height:28px;
  padding:7px 9px;
  border-radius:10px;
  color:var(--muted);
  background:rgba(255,255,255,.055);
  font-size:10px;
  font-weight:800;
}
.app-canvas{padding:20px}
.app-toolbar{
  display:flex;
  justify-content:flex-end;
  gap:10px;
}
.app-toolbar i{
  width:76px;
  height:26px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),#8b4d0d);
}
.app-toolbar i:nth-child(2){background:#477bbd}
.app-toolbar i:nth-child(3){background:#8d51bd}
.app-toolbar i:nth-child(4){background:#26a665}
.app-title-line{
  width:52%;
  height:42px;
  margin-top:28px;
  border-radius:16px;
  background:linear-gradient(90deg,#fffaf1,#d89025);
  opacity:.9;
}
.app-stat-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:18px;
}
.app-stat-grid em{
  height:72px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  background:rgba(255,255,255,.075);
}
.app-table{
  display:grid;
  gap:10px;
  margin-top:18px;
}
.app-table span{
  height:30px;
  border-radius:12px;
  background:rgba(255,255,255,.07);
}
.video-placeholder{
  position:absolute;
  inset:0;
  z-index:3;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:30px;
  text-align:center;
  background:linear-gradient(180deg,rgba(8,9,12,.2),rgba(8,9,12,.72));
  opacity:0;
  transition:opacity .2s ease;
}
.laptop-screen .video-placeholder{
  inset:auto 24px 24px auto;
  width:min(390px,calc(100% - 48px));
  min-height:168px;
  border:1px solid rgba(216,144,37,.28);
  border-radius:24px;
  background:rgba(8,9,12,.78);
  box-shadow:0 24px 60px rgba(0,0,0,.34);
  opacity:1;
}
.laptop-screen .video-placeholder .play-mark{
  width:54px;
  height:54px;
}
.laptop-screen .video-placeholder strong{
  font-size:28px;
}
.laptop-screen:hover .video-placeholder,
.founder-video .video-placeholder{opacity:1}
.play-mark{
  display:grid;
  place-items:center;
  width:76px;
  height:76px;
  border-radius:50%;
  color:#130d06;
  background:linear-gradient(135deg,var(--gold-3),var(--gold));
  box-shadow:var(--shadow-gold);
  font-size:13px;
  font-weight:950;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.video-placeholder strong{
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(28px,3vw,44px);
  line-height:1;
}
.video-placeholder small{
  max-width:430px;
  color:var(--muted);
  font-weight:850;
  line-height:1.5;
}

.founder-section{padding-top:42px}
.founder-grid{
  display:grid;
  grid-template-columns:minmax(320px,.46fr) minmax(0,.54fr);
  gap:26px;
  align-items:center;
  padding:28px;
  border:1px solid rgba(216,144,37,.2);
  border-radius:var(--radius-xl);
  background:
    radial-gradient(circle at 88% 8%,rgba(216,144,37,.2),transparent 22rem),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}
.founder-video{
  position:relative;
  aspect-ratio:16/9;
  width:100%;
  max-width:660px;
  justify-self:end;
  overflow:hidden;
  border:1px solid rgba(216,144,37,.28);
  border-radius:28px;
  background:
    linear-gradient(135deg,rgba(216,144,37,.18),transparent),
    #0b0f15;
}
.founder-video-player{
  display:block;
  width:100%;
  height:100%;
  object-fit:contain;
  background:#05070b;
}
.founder-card{
  display:flex;
  flex-direction:column;
  justify-content:center;
  min-width:0;
  padding:30px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:28px;
  background:rgba(8,9,12,.38);
}
.founder-profile{
  display:flex;
  align-items:center;
  gap:18px;
  margin-bottom:24px;
}
.founder-photo{
  display:grid;
  place-items:center;
  width:92px;
  height:92px;
  flex:0 0 auto;
  border:1px solid var(--line-gold);
  border-radius:28px;
  color:#130d06;
  background:linear-gradient(135deg,var(--gold-3),var(--gold));
  font-family:"Playfair Display",Georgia,serif;
  font-size:34px;
  font-weight:900;
}
.founder-kicker{
  color:var(--gold-3);
  font-size:12px;
  font-weight:900;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.founder-profile h2{
  margin:5px 0 4px;
  font-size:24px;
}
.founder-profile p{margin:0;color:var(--muted);font-weight:800}
.founder-card h3{
  margin:0 0 14px;
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(30px,3vw,44px);
  line-height:1.04;
}
.founder-card p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}

.tutorials-section{padding-top:54px}
.tutorial-feature{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.48fr);
  gap:26px;
  align-items:center;
  padding:24px;
  border:1px solid rgba(216,144,37,.22);
  border-radius:30px;
  background:
    radial-gradient(circle at 88% 10%,rgba(216,144,37,.18),transparent 24rem),
    linear-gradient(145deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  box-shadow:var(--shadow);
}
.tutorial-video{
  aspect-ratio:16/9;
  overflow:hidden;
  border:1px solid rgba(216,144,37,.28);
  border-radius:24px;
  background:#05070b;
}
.tutorial-copy{
  min-width:0;
  padding:10px 8px;
}
.tutorial-pill{
  display:inline-flex;
  margin-bottom:14px;
  padding:8px 12px;
  border:1px solid rgba(216,144,37,.36);
  border-radius:999px;
  color:var(--gold-3);
  background:rgba(216,144,37,.12);
  font-size:12px;
  font-weight:950;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.tutorial-copy h3{
  margin:0 0 12px;
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(30px,3vw,44px);
  line-height:1;
}
.tutorial-copy p{
  margin:0;
  color:var(--muted);
  font-size:15px;
  line-height:1.62;
}
.tutorial-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:12px;
  margin-top:18px;
}
.tutorial-grid .tutorial-card{
  display:block;
  min-height:116px;
  padding:18px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:20px;
  background:linear-gradient(160deg,rgba(255,255,255,.06),rgba(255,255,255,.02));
  cursor:pointer;
  transition:transform .18s ease,border-color .18s ease,background .18s ease;
}
.tutorial-grid .tutorial-card:hover,
.tutorial-grid .tutorial-card:focus{
  outline:none;
  transform:translateY(-3px);
  border-color:rgba(216,144,37,.42);
  background:linear-gradient(160deg,rgba(216,144,37,.13),rgba(255,255,255,.03));
}
.tutorial-grid span{
  color:var(--gold-3);
  font-size:12px;
  font-weight:950;
  letter-spacing:.14em;
}
.tutorial-grid strong{
  display:block;
  margin:12px 0 8px;
  color:var(--ink);
  font-size:15px;
}
.tutorial-grid small{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  color:#120c04;
  background:linear-gradient(135deg,var(--gold-3),var(--gold));
  font-weight:800;
}

.video-modal{
  position:fixed;
  inset:0;
  z-index:120;
  display:none;
  align-items:center;
  justify-content:center;
  padding:24px;
}
.video-modal.is-open{display:flex}
.video-modal-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.78);
  backdrop-filter:blur(12px);
}
.video-modal-panel{
  position:relative;
  z-index:1;
  width:min(1080px,100%);
  padding:18px;
  border:1px solid rgba(216,144,37,.34);
  border-radius:28px;
  background:linear-gradient(145deg,#151b25,#080b10);
  box-shadow:0 34px 110px rgba(0,0,0,.6);
}
.video-modal-panel h3{
  margin:0 90px 14px 4px;
  color:var(--ink);
  font-size:20px;
}
.video-modal-panel video{
  display:block;
  width:100%;
  max-height:72vh;
  border:1px solid rgba(255,255,255,.12);
  border-radius:20px;
  background:#05070b;
}
.video-modal-open-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:12px;
  color:var(--gold);
  font-weight:900;
  text-decoration:none;
}
.video-modal-close{
  position:absolute;
  right:18px;
  top:16px;
  min-height:36px;
  padding:8px 12px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:999px;
  color:var(--ink);
  background:rgba(255,255,255,.07);
  cursor:pointer;
  font-weight:900;
}

.section-head{
  max-width:960px;
  margin:0 auto 54px;
  text-align:center;
}
.section-head span{justify-content:center}
.section-head span::before{display:none}
.section-head h2{
  font-size:clamp(40px,5vw,74px);
  text-transform:none;
}
.section-head p{
  max-width:760px;
  margin:0 auto;
  color:var(--muted);
  font-size:18px;
  line-height:1.72;
}

.benefit-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}
.benefit-grid article{
  min-height:250px;
  padding:26px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:28px;
  background:linear-gradient(160deg,rgba(255,255,255,.075),rgba(255,255,255,.02));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.05);
  transition:transform .2s ease,border-color .2s ease,background .2s ease;
}
.benefit-grid article:hover{
  transform:translateY(-6px);
  border-color:rgba(216,144,37,.42);
  background:linear-gradient(160deg,rgba(216,144,37,.13),rgba(255,255,255,.03));
}
.icon{
  display:grid;
  place-items:center;
  width:58px;
  height:58px;
  border:1px solid var(--line-gold);
  border-radius:20px;
  color:var(--gold-3);
  background:rgba(216,144,37,.12);
  font-size:13px;
  font-weight:950;
}
.benefit-grid h3{
  margin:24px 0 10px;
  font-size:22px;
  letter-spacing:-.02em;
}
.benefit-grid p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.software-showcase{padding-top:120px}
.software-stack{
  display:grid;
  gap:74px;
}
.software-module{
  display:grid;
  grid-template-columns:minmax(260px,.38fr) minmax(0,1fr);
  gap:34px;
  align-items:center;
}
.software-module:nth-child(even){
  grid-template-columns:minmax(0,1fr) minmax(260px,.38fr);
}
.software-module:nth-child(even) .module-copy{order:2}
.module-copy{
  padding:30px;
  border-left:2px solid var(--gold);
}
.module-copy span{
  display:inline-flex;
  margin-bottom:14px;
  color:var(--gold-3);
  font-size:12px;
  font-weight:950;
  letter-spacing:.18em;
}
.module-copy h3{
  margin:0 0 12px;
  font-family:"Playfair Display",Georgia,serif;
  font-size:clamp(36px,4vw,58px);
  line-height:1;
}
.module-copy p{
  margin:0;
  color:var(--muted);
  font-size:17px;
  line-height:1.72;
}
.software-shot{
  position:relative;
  display:grid;
  place-items:center;
  min-height:560px;
  padding:28px;
  overflow:hidden;
  border:1px solid rgba(216,144,37,.26);
  border-radius:34px;
  background:
    radial-gradient(circle at 18% 0,rgba(216,144,37,.18),transparent 36%),
    linear-gradient(145deg,rgba(255,255,255,.07),rgba(255,255,255,.025)),
    #101620;
  box-shadow:var(--shadow);
  text-align:center;
  isolation:isolate;
}
.software-shot::before{
  content:"";
  position:absolute;
  inset:16px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  pointer-events:none;
}
.software-shot::after{
  content:"";
  position:absolute;
  inset:0;
  z-index:0;
  background:linear-gradient(118deg,rgba(255,255,255,.12),transparent 32% 70%,rgba(216,144,37,.09));
  opacity:.28;
  pointer-events:none;
}
.software-shot img{
  position:relative;
  z-index:1;
  display:block;
  width:100%;
  height:auto;
  max-height:680px;
  object-fit:contain;
  border:1px solid rgba(255,255,255,.09);
  border-radius:22px;
  background:#080b10;
  box-shadow:0 26px 80px rgba(0,0,0,.46);
  transition:transform .4s ease,box-shadow .4s ease,filter .4s ease;
}
.software-shot:hover img{
  transform:scale(1.02);
  box-shadow:0 32px 92px rgba(0,0,0,.56);
  filter:saturate(1.06) contrast(1.02);
}
.wide-shot img{
  max-height:720px;
}
.schedule-shot{
  min-height:620px;
}
.schedule-shot img{
  max-height:760px;
}
.document-shot{
  min-height:680px;
  background:
    radial-gradient(circle at 50% 8%,rgba(255,255,255,.12),transparent 34%),
    linear-gradient(145deg,#121820,#090c11);
}
.document-shot img{
  width:auto;
  max-width:min(78%,760px);
  max-height:820px;
  border-color:rgba(255,255,255,.18);
  border-radius:18px;
  background:#f7f3ea;
  box-shadow:
    0 34px 90px rgba(0,0,0,.58),
    0 0 0 10px rgba(255,255,255,.035);
}
.contract-shot img{
  max-width:min(84%,820px);
}

.compare-table{
  max-width:1120px;
  margin:0 auto;
  overflow:hidden;
  border:1px solid rgba(216,144,37,.22);
  border-radius:30px;
  background:rgba(255,255,255,.045);
  box-shadow:var(--shadow);
}
.compare-row{
  display:grid;
  grid-template-columns:.8fr 1fr 1fr;
  border-top:1px solid rgba(255,255,255,.08);
}
.compare-row:first-child{border-top:0}
.compare-row>div{
  min-height:70px;
  display:flex;
  align-items:center;
  gap:12px;
  padding:20px 24px;
  border-left:1px solid rgba(255,255,255,.08);
  color:var(--muted);
  font-weight:850;
}
.compare-row>div:first-child{
  border-left:0;
  color:var(--ink);
}
.compare-head{
  background:linear-gradient(90deg,rgba(216,144,37,.16),rgba(255,255,255,.04));
}
.compare-head div{
  color:var(--ink);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
}
.good,.bad{
  display:grid;
  place-items:center;
  width:26px;
  height:26px;
  flex:0 0 auto;
  border-radius:50%;
  font-style:normal;
  font-weight:950;
}
.good{color:#062313;background:var(--green)}
.bad{color:#fff;background:var(--red)}

.audience-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:18px;
}
.audience-grid article{
  display:grid;
  place-items:center;
  gap:18px;
  min-height:190px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:30px;
  background:linear-gradient(160deg,rgba(255,255,255,.07),rgba(255,255,255,.02));
  text-align:center;
}
.audience-grid span{
  display:grid;
  place-items:center;
  width:72px;
  height:72px;
  border-radius:24px;
  color:#140d04;
  background:linear-gradient(135deg,var(--gold-3),var(--gold));
  font-weight:950;
}
.audience-grid strong{font-size:18px}

.timeline{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.timeline::before{
  content:"";
  position:absolute;
  left:8%;
  right:8%;
  top:52px;
  height:2px;
  background:linear-gradient(90deg,transparent,var(--gold),transparent);
}
.timeline article{
  position:relative;
  z-index:1;
  min-height:250px;
  padding:28px;
  border:1px solid rgba(216,144,37,.24);
  border-radius:30px;
  background:linear-gradient(160deg,#161d28,#0b0f15);
  box-shadow:var(--shadow);
}
.timeline article::after{
  content:"";
  position:absolute;
  right:-18px;
  top:45px;
  width:34px;
  height:34px;
  border-radius:50%;
  background:#0b0f15;
  border:1px solid rgba(216,144,37,.25);
}
.timeline article:last-child::after{display:none}
.timeline span{
  display:grid;
  place-items:center;
  width:52px;
  height:52px;
  border-radius:18px;
  color:#140d04;
  background:linear-gradient(135deg,var(--gold-3),var(--gold));
  font-size:22px;
  font-weight:950;
}
.timeline h3{margin:24px 0 10px;font-size:24px}
.timeline p{margin:0;color:var(--muted);line-height:1.65}

.promo-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:24px;
  justify-items:center;
}
.promo-card{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-height:520px;
  padding:38px;
  border:1px solid rgba(255,255,255,.1);
  border-radius:30px;
  background:rgba(255,255,255,.045);
}
.promo-card img{
  width:auto;
  max-width:min(100%,480px);
  max-height:650px;
  height:auto;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 22px 55px rgba(0,0,0,.36);
  transition:transform .18s ease,box-shadow .18s ease;
}
.promo-card img:hover{
  transform:scale(1.03);
  box-shadow:0 28px 70px rgba(0,0,0,.44);
}
.promo-actions{
  display:flex;
  justify-content:center;
  margin-top:28px;
}

.demo-band{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:34px;
  margin:20px clamp(22px,5vw,92px);
  padding:44px;
  border:1px solid rgba(216,144,37,.22);
  border-radius:var(--radius-xl);
  background:
    radial-gradient(circle at 92% 12%,rgba(216,144,37,.24),transparent 24rem),
    linear-gradient(145deg,#151c27,#090d13);
  box-shadow:var(--shadow);
}
.demo-band h2{
  margin-bottom:10px;
  font-size:clamp(34px,4vw,58px);
}
.demo-band p{
  max-width:740px;
  margin:0;
  color:var(--muted);
  font-size:18px;
  line-height:1.68;
}

.price-panel{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(380px,470px);
  gap:34px;
  align-items:center;
  padding:48px;
  border:1px solid rgba(216,144,37,.24);
  border-radius:42px;
  background:
    radial-gradient(circle at 88% 8%,rgba(216,144,37,.28),transparent 28rem),
    linear-gradient(145deg,#161d28,#090d13);
  box-shadow:var(--shadow);
}
.price-copy h2{
  font-size:clamp(42px,5.3vw,78px);
}
.price-copy p{
  max-width:780px;
  margin:0;
  color:var(--muted);
  font-size:19px;
  line-height:1.72;
}
.price-trust{
  display:inline-grid;
  gap:5px;
  margin-top:28px;
  padding:15px 18px;
  border:1px solid var(--line-gold);
  border-radius:18px;
  background:rgba(216,144,37,.11);
}
.price-trust strong{color:var(--gold-3)}
.price-trust small{color:var(--muted);font-weight:800}
.price-card{
  position:relative;
  padding:32px;
  border-radius:32px;
  color:#120c04;
  background:linear-gradient(160deg,#fffaf1,#f3dfbf);
  box-shadow:0 30px 80px rgba(0,0,0,.35);
}
.discount-badge{
  display:inline-flex;
  padding:10px 14px;
  border-radius:999px;
  color:#fff2d8;
  background:#120c04;
  font-size:13px;
  font-weight:950;
  letter-spacing:.14em;
}
.old-price{
  margin-top:18px;
  color:#4d4030;
  font-size:30px;
  font-weight:950;
  text-decoration:line-through;
  opacity:.74;
}
.old-price span,
.new-price span{
  display:block;
  margin-bottom:4px;
  color:#76654e;
  font-size:12px;
  font-weight:950;
  letter-spacing:.18em;
  text-transform:uppercase;
  text-decoration:none;
}
.new-price{
  margin:12px 0;
  color:var(--gold);
  font-size:clamp(48px,4vw,66px);
  line-height:.92;
  font-weight:950;
  letter-spacing:-.055em;
}
.new-price small{font-size:22px}
.price-note{
  display:inline-flex;
  padding:9px 13px;
  border-radius:999px;
  background:rgba(216,144,37,.16);
  color:#120c04;
  font-weight:950;
}
.price-card ul{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:9px 14px;
  margin:22px 0 26px;
  padding:0;
  list-style:none;
}
.price-card li{
  position:relative;
  padding-left:24px;
  color:#24170b;
  font-weight:850;
}
.price-card li::before{
  content:"";
  position:absolute;
  left:0;
  top:6px;
  width:12px;
  height:12px;
  border-radius:50%;
  background:var(--gold);
}
.payment-actions{
  display:grid;
  gap:12px;
}
.payment-unavailable{
  display:grid;
  gap:5px;
  padding:13px 15px;
  border:1px solid rgba(120,91,48,.26);
  border-radius:16px;
  color:#5b4b35;
  background:rgba(216,144,37,.11);
}
.payment-unavailable strong{
  font-size:14px;
  font-weight:950;
}
.payment-unavailable span{
  font-size:12px;
  line-height:1.45;
  font-weight:800;
}
.payment-note{
  margin:14px 0 0;
  color:#5b4b35;
  font-size:13px;
  font-weight:850;
  line-height:1.5;
}

.faq{padding-top:80px;padding-bottom:92px}
.faq-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:16px;
}
details{
  border:1px solid rgba(255,255,255,.1);
  border-radius:24px;
  padding:22px 24px;
  background:linear-gradient(160deg,rgba(255,255,255,.07),rgba(255,255,255,.025));
}
summary{
  cursor:pointer;
  color:var(--ink);
  font-size:17px;
  font-weight:950;
}
details p{
  margin:14px 0 0;
  color:var(--muted);
  line-height:1.65;
}

.site-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  padding:34px clamp(22px,5vw,92px) 148px;
  border-top:1px solid rgba(255,255,255,.1);
  color:var(--muted);
}
.site-footer .brand{min-width:280px}
.site-footer .brand img{width:64px;height:64px}
.site-footer .logo-brand img{
  width:auto;
  height:86px;
  max-width:320px;
}
.site-footer strong{
  display:block;
  color:var(--ink);
}
.site-footer span{
  display:block;
  margin-top:5px;
}
.site-footer small{font-weight:800}
.sticky-buy{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:60;
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(7,8,11,.82);
  box-shadow:0 24px 60px rgba(0,0,0,.42);
  backdrop-filter:blur(18px);
}
.sticky-buy a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:13px 18px;
  border-radius:999px;
  font-weight:950;
}
.sticky-buy .sticky-whatsapp{
  min-width:150px;
}
.sticky-card{
  color:#150d04;
  background:linear-gradient(135deg,#ffe0a8,#d89025);
}
.sticky-whatsapp{
  color:#fff;
  background:linear-gradient(135deg,#24ce68,#0b8e43);
}

.reveal{
  /* El contenido no debe quedar oculto si el navegador bloquea JS,
     si se captura la página completa o si se abre desde una vista previa. */
  opacity:1;
  transform:none;
  transition:opacity .4s ease,transform .4s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion:reduce){
  html{scroll-behavior:auto}
  *,*::before,*::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    scroll-behavior:auto !important;
    transition-duration:.01ms !important;
  }
  .reveal{opacity:1;transform:none}
}

@media (max-width:1240px){
  .main-nav{display:none}
  .hero{
    grid-template-columns:1fr;
    min-height:auto;
    gap:52px;
  }
  .hero-visual{
    max-width:900px;
    width:100%;
    margin:0 auto;
  }
  .benefit-grid{grid-template-columns:repeat(3,minmax(0,1fr))}
  .software-module,
  .software-module:nth-child(even){
    grid-template-columns:1fr;
  }
  .software-module:nth-child(even) .module-copy{order:0}
  .price-panel{grid-template-columns:1fr}
  .timeline,
  .audience-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .timeline::before{display:none}
  .timeline article::after{display:none}
}

@media (max-width:860px){
  .section-pad{padding:82px 20px}
  .sale-strip{
    flex-direction:column;
    gap:3px;
    text-align:center;
  }
  .site-header{padding:14px 18px}
  .brand{min-width:auto}
  .brand img{width:52px;height:52px}
  .logo-brand img{
    width:auto;
    height:62px;
    max-width:230px;
  }
  .brand-copy strong{font-size:22px}
  .brand-copy small{display:none}
  .header-link{display:none}
  .header-cta{min-height:38px;padding:10px 13px;font-size:13px}
  .header-cta-light{display:none}
  .hero{
    padding-top:66px;
  }
  .hero::before{display:none}
  .hero h1{font-size:clamp(43px,13vw,68px)}
  .hero-lead{font-size:17px}
  .hero-checks,
  .hero-metrics,
  .benefit-grid,
  .promo-grid,
  .faq-grid,
  .compare-row,
  .audience-grid,
  .timeline{
    grid-template-columns:1fr;
  }
  .hero-metrics article{min-height:78px}
  .hero-actions .btn{width:100%}
  .launch-badge{
    position:relative;
    right:auto;
    top:auto;
    width:100%;
    margin-bottom:16px;
    transform:none;
  }
  .app-preview{grid-template-columns:92px 1fr}
  .app-sidebar{padding:12px 9px}
  .app-sidebar b{font-size:13px}
  .app-sidebar span{font-size:8px}
  .app-canvas{padding:12px}
  .app-toolbar i{width:44px}
  .laptop-base{display:none}
  .video-placeholder{opacity:1}
  .founder-grid,
  .price-panel,
  .demo-band{padding:22px}
  .founder-profile{align-items:flex-start}
  .software-stack{gap:48px}
  .module-copy{padding:0 0 0 20px}
  .software-shot{
    min-height:330px;
    padding:16px;
    border-radius:26px;
  }
  .software-shot img{
    max-height:520px;
    border-radius:16px;
  }
  .document-shot{
    min-height:520px;
  }
  .document-shot img{
    max-width:92%;
    max-height:620px;
  }
  .compare-row>div{
    min-height:auto;
    border-left:0;
    border-top:1px solid rgba(255,255,255,.08);
  }
  .compare-row>div:first-child{border-top:0}
  .promo-card{
    min-height:auto;
    padding:22px;
  }
  .promo-card img{
    max-width:100%;
    max-height:none;
  }
  .demo-band{
    flex-direction:column;
    align-items:flex-start;
    margin:18px 20px;
  }
  .demo-band .btn{width:100%}
  .price-card ul{grid-template-columns:1fr}
  .site-footer{
    flex-direction:column;
    align-items:flex-start;
  }
  .sticky-buy{
    left:16px;
    right:16px;
    bottom:16px;
    justify-content:center;
  }
  .sticky-buy a{
    flex:1;
    min-height:48px;
    padding:12px 10px;
    font-size:13px;
  }
}

@media (max-width:520px){
  .section-pad{padding:70px 16px}
  .hero h1{font-size:42px}
  .section-head h2,
  .price-copy h2,
  .demo-band h2{font-size:36px}
  .founder-profile{flex-direction:column}
  .founder-photo{width:82px;height:82px}
  .benefit-grid article{min-height:auto}
  .software-shot{
    min-height:300px;
    padding:12px;
    border-radius:22px;
  }
  .document-shot{
    min-height:430px;
  }
  .document-shot img{
    max-width:96%;
    max-height:540px;
  }
  .new-price{font-size:44px}
}

/* Escala comercial compacta: mas facil de leer en monitor y celular. */
.section-pad{
  width:100%;
  max-width:1240px;
  margin-inline:auto;
  padding:78px clamp(20px,3vw,44px);
}

.site-header{
  padding:12px clamp(20px,3vw,48px);
}

.logo-brand{min-width:290px}
.brand-lockup{gap:10px}
.heres-brand-mark{width:64px;height:64px}
.costpro-brand-mark{width:84px;height:84px}
.logo-brand img{
  height:78px;
  max-width:292px;
}
.footer-brand.logo-brand img,
.site-footer .logo-brand img{
  height:68px;
  max-width:260px;
}

.hero{
  grid-template-columns:minmax(0,1fr) minmax(430px,.86fr);
  gap:46px;
  min-height:660px;
  padding-top:58px;
}
.hero::before{
  inset:34px 18px auto;
  height:520px;
}

.hero h1,
.section-head h2,
.price-copy h2,
.demo-band h2{
  font-size:clamp(38px,4.6vw,68px);
  line-height:.96;
  letter-spacing:-.04em;
  font-weight:800;
}
.hero h1{
  max-width:760px;
}
.hero-lead,
.section-head p,
.price-copy p,
.demo-band p{
  max-width:650px;
  font-size:16px;
  line-height:1.62;
}

.eyebrow,
.section-head span,
.demo-band span,
.price-copy span{
  font-size:11px;
  letter-spacing:.16em;
}

.hero-checks{
  max-width:590px;
  gap:10px;
  margin-top:24px;
}
.hero-checks span{
  min-height:42px;
  padding:10px 12px;
  font-size:13px;
}
.hero-actions{margin-top:28px}
.btn-xl{
  min-height:54px;
  padding:15px 24px;
  font-size:15px;
}
.btn{
  font-weight:850;
}
.hero-metrics{
  max-width:680px;
  gap:10px;
  margin-top:26px;
}
.hero-metrics article{
  min-height:74px;
  padding:14px 12px;
  border-radius:18px;
}
.hero-metrics strong{
  font-size:clamp(20px,1.6vw,28px);
}

.launch-badge{
  width:160px;
  padding:16px;
  border-radius:22px;
}
.launch-badge strong{font-size:24px}
.laptop-mockup{
  border-radius:28px;
  padding:12px;
}
.laptop-screen{border-radius:20px}

.founder-section{padding-top:34px}
.founder-grid{
  grid-template-columns:minmax(320px,.46fr) minmax(0,.54fr);
  gap:24px;
  padding:22px;
}
.founder-card{padding:24px}
.founder-card h3{
  font-size:clamp(30px,3vw,42px);
}
.founder-card p{
  font-size:15px;
  line-height:1.62;
}

.section-head{
  max-width:760px;
  margin-bottom:38px;
}

.benefit-grid{
  gap:14px;
}
.benefit-grid article{
  min-height:205px;
  padding:22px;
  border-radius:24px;
}
.icon{
  width:48px;
  height:48px;
  border-radius:16px;
}
.benefit-grid h3{
  margin:18px 0 8px;
  font-size:19px;
}
.benefit-grid p{
  font-size:14px;
  line-height:1.55;
}

.software-showcase{padding-top:82px}
.software-stack{gap:48px}
.software-module{
  grid-template-columns:minmax(230px,.34fr) minmax(0,1fr);
  gap:26px;
}
.software-module:nth-child(even){
  grid-template-columns:minmax(0,1fr) minmax(230px,.34fr);
}
.module-copy{
  padding:22px;
}
.module-copy h3{
  font-size:clamp(30px,3vw,44px);
}
.module-copy p{
  font-size:15px;
  line-height:1.58;
}
.software-shot{
  min-height:430px;
  padding:20px;
  border-radius:28px;
}
.software-shot img{
  max-height:560px;
  border-radius:18px;
}
.wide-shot img{max-height:590px}
.schedule-shot{min-height:500px}
.schedule-shot img{max-height:620px}
.document-shot{min-height:540px}
.document-shot img{
  max-width:min(76%,640px);
  max-height:680px;
}

.compare-table{
  max-width:980px;
}
.compare-row>div{
  min-height:58px;
  padding:16px 20px;
  font-size:14px;
}

.audience-grid,
.timeline{
  gap:14px;
}
.audience-grid article{
  min-height:150px;
  border-radius:24px;
}
.audience-grid span{
  width:58px;
  height:58px;
  border-radius:18px;
}
.timeline article{
  min-height:200px;
  padding:22px;
  border-radius:24px;
}
.timeline h3{
  margin:18px 0 8px;
  font-size:20px;
}
.timeline p{font-size:14px}

.promo-card{
  min-height:430px;
  padding:26px;
  border-radius:26px;
}
.promo-card img{
  max-width:min(100%,420px);
  max-height:560px;
}

.demo-band{
  max-width:1120px;
  margin:18px auto;
  padding:34px;
  border-radius:28px;
}

.price-panel{
  grid-template-columns:minmax(0,1fr) minmax(340px,420px);
  gap:28px;
  padding:36px;
  border-radius:32px;
}
.price-card{
  padding:28px;
  border-radius:26px;
}
.old-price{font-size:24px}
.new-price{
  font-size:clamp(42px,3.4vw,56px);
}

.faq{
  padding-top:54px;
  padding-bottom:74px;
}
details{
  padding:18px 20px;
  border-radius:20px;
}
summary{font-size:15px}
details p{font-size:14px}

@media (max-width:1240px){
  .section-pad{
    max-width:1100px;
  }
  .hero{
    grid-template-columns:1fr;
    gap:38px;
  }
  .hero-visual{
    max-width:780px;
  }
}

@media (max-width:860px){
  .section-pad{
    padding:56px 18px;
  }
  .site-header{
    padding:10px 14px;
  }
  .logo-brand img{
    height:52px;
    max-width:190px;
  }
  .brand-lockup{gap:8px}
  .heres-brand-mark{width:42px;height:42px}
  .costpro-brand-mark{width:58px;height:58px}
  .brand-logo-svg{
    width:190px;
  }
  .header-cta{
    min-height:36px;
    padding:9px 12px;
    font-size:12px;
  }
  .hero{
    padding-top:42px;
  }
  .hero h1{
    font-size:clamp(34px,10vw,48px);
  }
  .hero-lead{
    font-size:15px;
  }
  .hero-checks{
    grid-template-columns:1fr;
  }
  .hero-actions .btn{
    width:100%;
  }
  .benefit-grid,
  .audience-grid,
  .timeline,
  .promo-grid,
  .faq-grid{
    grid-template-columns:1fr;
  }
  .software-module,
  .software-module:nth-child(even){
    grid-template-columns:1fr;
  }
  .founder-grid,
  .tutorial-feature{
    grid-template-columns:1fr;
  }
  .tutorial-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .software-module:nth-child(even) .module-copy{order:0}
  .software-shot{
    min-height:300px;
    padding:14px;
  }
  .software-shot img{
    max-height:430px;
  }
  .document-shot{
    min-height:410px;
  }
  .document-shot img{
    max-width:94%;
    max-height:520px;
  }
  .promo-card{
    min-height:auto;
    padding:18px;
  }
  .promo-card img{
    max-width:100%;
    max-height:520px;
  }
  .price-panel,
  .founder-grid{
    padding:18px;
  }
}

@media (max-width:520px){
  .section-pad{
    padding:48px 14px;
  }
  .section-head h2,
  .price-copy h2,
  .demo-band h2{
    font-size:30px;
  }
  .hero h1{
    font-size:34px;
  }
  .new-price{font-size:38px}
  .sticky-buy{
    left:12px;
    right:12px;
    bottom:12px;
    padding:8px;
    justify-content:center;
  }
  .sticky-buy a{
    min-height:42px;
    font-size:12px;
  }
  .sticky-buy .sticky-whatsapp{
    width:100%;
  }
  .tutorial-grid{
    grid-template-columns:1fr;
  }
}

/* Marca oficial HERES + Cost PRO: ambos logos deben conservar su escala. */
.brand-lockup{display:flex;align-items:center;gap:0;flex:none}
.brand-lockup{background:#05070b;border-radius:18px;padding:3px 8px;overflow:visible}
.brand-lockup img{display:block;object-fit:contain;border-radius:16px;box-shadow:none;mix-blend-mode:screen}
.brand-lockup .heres-brand-mark{width:90px;height:90px;max-width:none}
.brand-lockup .costpro-brand-mark{width:124px;height:124px;max-width:none;margin-left:-38px}
@media (max-width:860px){
  .brand-lockup .heres-brand-mark{width:64px;height:64px}
  .brand-lockup .costpro-brand-mark{width:90px;height:90px;margin-left:-30px}
}
