/* New commercial home - Tu Máquina de Pago */

:root{
  --tmp-blue:#00a3e0;
  --tmp-blue-dark:#0077a8;
  --tmp-blue-soft:#eaf8ff;
  --tmp-yellow:#ffd600;
  --tmp-yellow-bright:#fff000;
  --tmp-yellow-soft:#fff7bf;
  --tmp-yellow-line:#e7c300;
  --tmp-yellow-dark:#6f5a00;
  --tmp-green:#009430;
  --tmp-green-soft:#ecfdf3;
  --tmp-red:#d92d20;
  --tmp-black:#0b1326;
  --tmp-navy-soft:#121d33;
  --tmp-text:#1f2937;
  --tmp-muted:#667085;
  --tmp-line:#e5e7eb;
  --tmp-bg:#f7f8fa;
  --tmp-white:#fff;
  --tmp-radius:8px;
  --tmp-shadow:0 10px 28px rgba(17,24,39,.08);
}

html{
  overflow-x:hidden;
}

body{
  overflow-x:hidden;
}

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

.shop-page{
  background:var(--tmp-white);
  color:var(--tmp-text);
  font-family:Inter,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
}

.shop-container{
  width:min(1140px,calc(100% - 48px));
  margin:0 auto;
}

.shop-skip{
  position:absolute;
  left:-999px;
  top:8px;
  background:var(--tmp-black);
  color:#fff;
  padding:10px 14px;
  z-index:1000;
}

.shop-skip:focus{left:8px}

.shop-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--tmp-black);
  border-bottom:1px solid rgba(255,255,255,.08);
  transition:box-shadow .2s ease, border-color .2s ease;
}

.shop-header.scrolled{
  border-color:rgba(255,214,0,.22);
  box-shadow:0 12px 28px rgba(2,6,23,.28);
}

.shop-ticker{
  display:none;
}

.shop-ticker-track{
  display:flex;
  align-items:center;
  gap:30px;
  width:max-content;
  animation:tmpTicker 36s linear infinite;
  white-space:nowrap;
}

.shop-ticker-track span,
.shop-ticker-track a{
  font-size:13px;
  font-weight:700;
  color:#fff;
  text-decoration:none;
}

.shop-ticker-track span::before,
.shop-ticker-track a::before{
  content:"";
  display:inline-block;
  width:6px;
  height:6px;
  margin-right:10px;
  border-radius:50%;
  background:var(--tmp-yellow);
  vertical-align:middle;
}

@keyframes tmpTicker{
  from{transform:translateX(0)}
  to{transform:translateX(-50%)}
}

.shop-nav{
  width:min(1140px,calc(100% - 48px));
  height:76px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.shop-logo img{
  display:block;
  height:42px;
  width:auto;
  max-width:170px;
}

.shop-nav-links{
  display:flex;
  align-items:center;
  gap:4px;
  font-size:13px;
  font-weight:700;
  color:rgba(255,255,255,.84);
}

.shop-nav-links a{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  border:1px solid transparent;
  border-radius:999px;
  padding:0 9px;
  white-space:nowrap;
}

.shop-nav-group{
  position:relative;
}

.shop-nav-trigger{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  border:1px solid transparent;
  border-radius:999px;
  background:transparent;
  color:rgba(255,255,255,.84);
  padding:0 9px;
  font:700 13px/1 Inter,system-ui,sans-serif;
  white-space:nowrap;
  cursor:pointer;
}

.shop-nav-links a:hover{
  border-color:var(--tmp-yellow-line);
  background:rgba(255,214,0,.12);
  color:var(--tmp-yellow);
}

.shop-nav-trigger:hover,
.shop-nav-group.open .shop-nav-trigger,
.shop-nav-group:focus-within .shop-nav-trigger{
  border-color:var(--tmp-yellow-line);
  background:rgba(255,214,0,.12);
  color:var(--tmp-yellow);
}

.shop-nav-trigger::after{
  content:"";
  width:6px;
  height:6px;
  margin-left:7px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform:rotate(45deg) translateY(-1px);
}

.shop-nav-panel{
  position:absolute;
  left:0;
  top:calc(100% + 12px);
  z-index:160;
  width:310px;
  display:none;
  gap:6px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  box-shadow:0 18px 45px rgba(2,6,23,.22);
  padding:10px;
}

.shop-nav-group.open .shop-nav-panel,
.shop-nav-group:hover .shop-nav-panel,
.shop-nav-group:focus-within .shop-nav-panel{
  display:grid;
}

.shop-nav-panel::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-12px;
  height:12px;
}

.shop-nav-panel a{
  min-height:auto;
  display:grid;
  gap:3px;
  border:1px solid transparent;
  border-radius:var(--tmp-radius);
  color:var(--tmp-black);
  padding:10px;
  white-space:normal;
}

.shop-nav-panel a:hover{
  border-color:var(--tmp-yellow-line);
  background:var(--tmp-yellow-soft);
  color:var(--tmp-black);
}

.shop-nav-panel strong{
  font-size:13px;
  line-height:1.25;
}

.shop-nav-panel span{
  color:var(--tmp-muted);
  font-size:12px;
  font-weight:700;
  line-height:1.35;
}

.shop-nav-search-group .shop-nav-panel{
  right:0;
  left:auto;
}

.shop-nav-search-panel label{
  color:var(--tmp-black);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.shop-nav-search-panel input,
.shop-mobile-search input{
  width:100%;
  min-height:40px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  padding:0 12px;
  color:var(--tmp-text);
  font:700 13px/1 Inter,system-ui,sans-serif;
}

.shop-nav-search-panel input:focus,
.shop-mobile-search input:focus{
  border-color:var(--tmp-yellow-line);
  outline:none;
  box-shadow:0 0 0 3px rgba(255,214,0,.22);
}

.shop-nav-search-links{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:6px;
}

.shop-nav-search-links a{
  min-height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  font-size:12px;
  font-weight:900;
}

.shop-nav-links .shop-nav-work{
  border:1px solid var(--tmp-yellow-line);
  border-radius:999px;
  background:var(--tmp-yellow);
  color:var(--tmp-black);
  padding:0 12px;
  font-weight:900;
  white-space:nowrap;
}

.shop-nav-links .shop-nav-work:hover{
  border-color:var(--tmp-yellow);
  background:var(--tmp-yellow);
  color:var(--tmp-black);
}

.shop-nav-actions{
  display:flex;
  align-items:center;
  gap:10px;
}

.shop-menu-btn{
  display:none;
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--tmp-radius);
  background:rgba(255,255,255,.08);
  color:#fff;
  min-height:44px;
  padding:0 14px;
  font:700 14px/1 Inter,system-ui,sans-serif;
}

.shop-mobile-menu{
  display:none;
  border-top:1px solid var(--tmp-line);
  background:#fff;
  padding:10px 24px 18px;
}

.shop-mobile-menu.open{
  display:grid;
  gap:10px;
}

.shop-mobile-menu a{
  min-height:44px;
  display:flex;
  align-items:center;
  border-bottom:1px solid var(--tmp-line);
  font-weight:700;
}

.shop-mobile-search{
  display:grid;
  gap:7px;
  color:var(--tmp-black);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.shop-mobile-section{
  display:grid;
  gap:4px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  padding:10px;
}

.shop-mobile-section span{
  color:var(--tmp-muted);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.shop-mobile-section a{
  min-height:38px;
  border-bottom:0;
  border-radius:var(--tmp-radius);
  padding:0 10px;
}

.shop-mobile-section a:hover{
  background:var(--tmp-yellow-soft);
  color:var(--tmp-black);
}

.shop-mobile-menu .shop-btn{
  justify-content:center;
  border-bottom:none;
}

.shop-mobile-menu .shop-mobile-work{
  justify-content:center;
  border:1px solid var(--tmp-yellow-line);
  border-radius:var(--tmp-radius);
  background:var(--tmp-yellow-soft);
  color:var(--tmp-yellow-dark);
  font-weight:900;
}

.shop-btn,
.shop-wa{
  min-height:44px;
  border-radius:var(--tmp-radius);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:0 18px;
  border:1px solid transparent;
  font-size:14px;
  font-weight:800;
  text-align:center;
  text-decoration:none;
  cursor:pointer;
  font-family:Inter,system-ui,sans-serif;
}

.shop-btn-dark{background:var(--tmp-black);color:#fff}
.shop-btn-blue{background:#006fa8;color:#fff}
.shop-btn-wa,.shop-wa{background:#007a2f;color:#fff}
.shop-btn:hover,.shop-wa:hover{opacity:.88}
.shop-btn-dark:hover{
  opacity:1;
  box-shadow:0 0 0 3px rgba(255,214,0,.28);
}

#nav-buy-btn{
  background:var(--tmp-yellow);
  color:var(--tmp-black);
  border-color:var(--tmp-yellow);
}

.shop-hero{
  position:relative;
  overflow:hidden;
  padding:54px 0 34px;
  background:
    radial-gradient(circle at 72% 42%,rgba(255,214,0,.24),rgba(255,214,0,0) 30%),
    linear-gradient(135deg,#0b1326 0%,#0f1c33 58%,#0a1020 100%);
  color:#fff;
}

.shop-hero::before{
  content:"";
  position:absolute;
  inset:auto -120px -220px 45%;
  height:430px;
  pointer-events:none;
  background:radial-gradient(circle,rgba(255,214,0,.22),rgba(255,214,0,0) 68%);
}

.shop-hero > .shop-container{
  position:relative;
  z-index:1;
}

.shop-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(300px,.92fr);
  gap:36px;
  align-items:center;
}

.shop-hero-copy{
  min-width:0;
}

.shop-eyebrow{
  display:inline-flex;
  align-items:center;
  width:max-content;
  max-width:100%;
  padding:5px 9px;
  border:1px solid var(--tmp-yellow-line);
  border-radius:var(--tmp-radius);
  background:var(--tmp-yellow-soft);
  color:var(--tmp-yellow-dark);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:0;
  margin-bottom:10px;
}

.shop-hero h1,
.shop-section h2,
.shop-final-cta h2{
  color:var(--tmp-black);
  line-height:1.05;
  font-weight:900;
  letter-spacing:0;
}

.shop-hero h1{
  color:#fff;
  font-size:50px;
  max-width:620px;
  margin:0 0 14px;
  overflow-wrap:normal;
}

.shop-hero-highlight{
  display:block;
  color:var(--tmp-yellow);
}

.shop-hero .shop-eyebrow{
  border-color:rgba(255,214,0,.48);
  background:rgba(255,214,0,.11);
  color:#ffe76a;
}

.shop-hero-sub{
  max-width:560px;
  margin:0 0 16px;
  font-size:16px;
  line-height:1.5;
  color:rgba(255,255,255,.76);
}

.shop-direct-answer{
  max-width:660px;
  margin:0 0 14px;
  padding:0;
  border-left:0;
  border-radius:0;
  background:transparent;
  color:#fff;
  font-size:15px;
  line-height:1.52;
  font-weight:700;
}

.shop-price-box{
  display:grid;
  grid-template-columns:auto auto auto;
  align-items:end;
  justify-content:start;
  gap:10px;
  margin-bottom:18px;
}

.shop-price-label{
  grid-column:1 / -1;
  color:rgba(255,255,255,.62);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.shop-price-value{
  color:var(--tmp-yellow);
  font-size:50px;
  line-height:.9;
  font-weight:900;
}

.shop-price-note{
  padding-bottom:5px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  font-weight:700;
}

.shop-price-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  align-self:center;
  border:1px solid var(--tmp-yellow-line);
  border-radius:var(--tmp-radius);
  background:rgba(255,214,0,.12);
  color:#ffe76a;
  padding:0 10px;
  font-size:12px;
  font-weight:900;
}

.shop-price-badge-green{
  border-color:rgba(140,232,170,.72);
  background:rgba(0,148,48,.16);
  color:#adf2c1;
}

.shop-hero-assurance{
  display:none;
  gap:8px;
  max-width:560px;
  margin:14px 0;
}

.shop-hero-assurance span{
  min-height:38px;
  display:flex;
  align-items:center;
  border:1px solid rgba(255,255,255,.16);
  border-radius:var(--tmp-radius);
  background:rgba(255,255,255,.06);
  color:rgba(255,255,255,.88);
  padding:9px 12px;
  font-size:13px;
  line-height:1.35;
  font-weight:800;
}

.shop-hero-assurance span::before{
  content:"";
  flex:0 0 8px;
  width:8px;
  height:8px;
  margin-right:9px;
  border-radius:50%;
  background:var(--tmp-yellow);
}

.shop-volume-offer{
  display:grid;
  gap:12px;
  width:100%;
  max-width:560px;
  box-sizing:border-box;
  margin:0 0 14px;
  padding:12px;
  border:1px solid var(--tmp-yellow-line);
  border-radius:var(--tmp-radius);
  background:var(--tmp-yellow-soft);
}

.shop-volume-offer strong{
  display:block;
  color:var(--tmp-black);
  font-size:15px;
  margin-bottom:4px;
}

.shop-volume-offer span{
  display:block;
  color:var(--tmp-yellow-dark);
  font-size:13px;
  font-weight:800;
  line-height:1.45;
  overflow-wrap:break-word;
}

.shop-volume-actions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.shop-pack-link{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:var(--tmp-radius);
  background:#fff;
  border:1px solid var(--tmp-yellow-line);
  color:var(--tmp-yellow-dark);
  padding:0 12px;
  font-size:12px;
  font-weight:900;
  text-decoration:none;
}

.shop-pack-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}

.shop-hero .shop-pack-link{
  border-color:rgba(255,214,0,.58);
  background:rgba(255,214,0,.1);
  color:var(--tmp-yellow);
}

.shop-chip-row{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin:0 0 14px;
}

.shop-chip-row span,
.shop-payments span,
.shop-blog-tabs a{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  padding:0 12px;
  color:var(--tmp-text);
  font-size:13px;
  font-weight:800;
}

.shop-hero .shop-chip-row span{
  border-color:rgba(255,255,255,.14);
  background:rgba(255,255,255,.07);
  color:rgba(255,255,255,.84);
}

.shop-hero-highlights{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:14px;
}

.shop-hero-highlights span{
  display:inline-flex;
  align-items:center;
  min-height:34px;
  border:1px solid rgba(255,255,255,.14);
  border-radius:var(--tmp-radius);
  background:rgba(255,255,255,.07);
  color:rgba(255,255,255,.84);
  padding:0 12px;
  font-size:13px;
  font-weight:900;
}

.shop-hero .shop-btn-dark{
  background:var(--tmp-yellow);
  color:var(--tmp-black);
  border-color:var(--tmp-yellow);
}

.shop-hero .shop-btn-wa{
  background:#fff;
  color:var(--tmp-black);
  border-color:#fff;
}

.shop-hero-actions,
.shop-final-actions,
.shop-enterprise-actions,
.shop-form-actions{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.shop-trust-line{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:12px;
  color:rgba(255,255,255,.78);
  font-size:13px;
  font-weight:800;
}

.shop-trust-line span::before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  margin-right:7px;
  border-radius:50%;
  background:var(--tmp-green);
}

.shop-hero-media{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:320px;
}

.shop-hero-media img{
  display:block;
  max-width:100%;
  width:auto;
  max-height:480px;
  filter:drop-shadow(0 30px 46px rgba(0,0,0,.36));
}

.shop-funnel-bar{
  position:relative;
  z-index:2;
  padding:0 0 18px;
  background:#fff;
}

.shop-funnel-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:10px;
  margin-top:-18px;
}

.shop-funnel-item{
  min-height:88px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  box-shadow:0 8px 22px rgba(17,24,39,.07);
  color:var(--tmp-black);
  padding:15px;
  font-size:14px;
  font-weight:900;
  line-height:1.25;
  text-decoration:none;
}

.shop-funnel-item span{
  color:var(--tmp-muted);
  font-size:12px;
  font-weight:700;
  line-height:1.35;
}

.shop-funnel-primary{
  border-color:var(--tmp-black);
  background:var(--tmp-black);
  color:#fff;
}

.shop-funnel-primary span{
  color:rgba(255,255,255,.76);
}

.shop-funnel-item:hover{
  border-color:var(--tmp-yellow-line);
  box-shadow:0 0 0 3px rgba(255,214,0,.18),0 8px 22px rgba(17,24,39,.07);
}

.shop-conversion-grid{
  display:grid;
  grid-template-columns:1.15fr repeat(3,1fr);
  gap:14px;
}

.shop-proof-card{
  min-height:220px;
  background:#fff;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  box-shadow:0 3px 14px rgba(17,24,39,.04);
  padding:22px;
}

.shop-proof-main{
  background:var(--tmp-black);
  border-color:var(--tmp-black);
  color:#fff;
}

.shop-proof-card h3{
  margin:0 0 10px;
  color:var(--tmp-black);
  font-size:21px;
  line-height:1.2;
  font-weight:900;
}

.shop-proof-card p{
  margin:0;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.6;
}

.shop-proof-main h3{
  color:#fff;
}

.shop-proof-main p{
  color:rgba(255,255,255,.78);
}

.shop-proof-main .shop-card-kicker{
  color:#8fdcff;
}

.shop-process-flow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  counter-reset:process;
}

.shop-process-flow article{
  position:relative;
  min-height:230px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  padding:22px;
  box-shadow:0 3px 14px rgba(17,24,39,.04);
}

.shop-process-flow article::after{
  content:"";
  position:absolute;
  top:34px;
  right:-14px;
  width:14px;
  height:2px;
  background:var(--tmp-yellow-line);
}

.shop-process-flow article:last-child::after{
  display:none;
}

.shop-process-flow span{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--tmp-yellow);
  color:var(--tmp-black);
  font-size:15px;
  font-weight:900;
  margin-bottom:18px;
}

.shop-process-flow h3{
  margin:0 0 10px;
  color:var(--tmp-black);
  font-size:20px;
  line-height:1.2;
  font-weight:900;
}

.shop-process-flow p{
  margin:0;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.58;
}

.shop-rent-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,.75fr);
  gap:18px;
  align-items:stretch;
}

.shop-rent-card,
.shop-rent-result{
  background:#fff;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  box-shadow:0 3px 14px rgba(17,24,39,.04);
  padding:24px;
}

.shop-rent-card{
  display:grid;
  gap:14px;
}

.shop-rent-card input[type="range"]{
  width:100%;
  accent-color:var(--tmp-yellow);
}

.shop-rent-result{
  display:grid;
  gap:14px;
  align-content:start;
}

.shop-rent-number{
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:var(--tmp-bg);
  padding:16px;
}

.shop-rent-number span{
  display:block;
  color:var(--tmp-muted);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  margin-bottom:6px;
}

.shop-rent-number strong{
  display:block;
  color:var(--tmp-black);
  font-size:32px;
  line-height:1;
  font-weight:900;
}

.shop-rent-number.highlight{
  border-color:var(--tmp-yellow-line);
  background:var(--tmp-yellow-soft);
}

.shop-rent-number.highlight strong{
  color:var(--tmp-yellow-dark);
}

.shop-rent-result p{
  margin:0;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.55;
}

.shop-experience-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.shop-experience-card{
  overflow:hidden;
  background:#fff;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  box-shadow:0 3px 14px rgba(17,24,39,.04);
}

.shop-experience-card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.shop-experience-product img{
  height:260px;
  object-fit:contain;
  background:linear-gradient(180deg,#fff,var(--tmp-yellow-soft));
  padding:18px;
}

.shop-experience-card div{
  padding:20px;
}

.shop-experience-card h3{
  margin:0 0 8px;
  color:var(--tmp-black);
  font-size:20px;
  line-height:1.2;
  font-weight:900;
}

.shop-experience-card p{
  margin:0 0 12px;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.55;
}

.shop-experience-card a{
  color:var(--tmp-blue-dark);
  font-size:12px;
  font-weight:900;
}

.ads-landing{
  min-height:100vh;
  background:var(--tmp-bg);
}

.ads-topbar{
  background:#fff;
  border-bottom:1px solid var(--tmp-line);
}

.ads-topbar-inner{
  width:min(1080px,calc(100% - 40px));
  min-height:72px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.ads-topbar img{
  width:170px;
  height:auto;
  display:block;
}

.ads-topbar span{
  color:var(--tmp-muted);
  font-size:13px;
  font-weight:800;
}

.ads-hero{
  padding:52px 0 36px;
}

.ads-hero-grid{
  width:min(1080px,calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(320px,.82fr);
  gap:38px;
  align-items:center;
}

.ads-hero-copy,
.ads-card{
  background:#fff;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  box-shadow:var(--tmp-shadow);
}

.ads-hero-copy{
  padding:34px;
}

.ads-hero-copy h1{
  max-width:700px;
  margin:0 0 14px;
  color:var(--tmp-black);
  font-size:44px;
  line-height:1.05;
  font-weight:900;
}

.ads-hero-copy p{
  max-width:620px;
  margin:0 0 20px;
  color:var(--tmp-muted);
  font-size:17px;
  line-height:1.6;
}

.ads-price-row{
  display:flex;
  flex-wrap:wrap;
  align-items:flex-end;
  gap:10px;
  margin:0 0 18px;
}

.ads-price-row strong{
  color:var(--tmp-black);
  font-size:56px;
  line-height:.9;
  font-weight:900;
}

.ads-price-row span{
  color:var(--tmp-muted);
  font-size:13px;
  font-weight:800;
}

.ads-bullets{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px;
  margin:0 0 22px;
  padding:0;
  list-style:none;
}

.ads-bullets li{
  min-height:40px;
  display:flex;
  align-items:center;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:var(--tmp-bg);
  padding:9px 12px;
  color:var(--tmp-black);
  font-size:13px;
  font-weight:800;
}

.ads-card{
  padding:28px;
  text-align:center;
}

.ads-card img{
  width:auto;
  max-width:100%;
  max-height:330px;
  display:block;
  margin:0 auto 18px;
  filter:drop-shadow(0 22px 32px rgba(17,24,39,.15));
}

.ads-card h2{
  margin:0 0 6px;
  color:var(--tmp-black);
  font-size:24px;
  line-height:1.2;
  font-weight:900;
}

.ads-card p{
  margin:0 0 18px;
  color:var(--tmp-muted);
  font-size:14px;
}

.ads-section{
  padding:28px 0;
}

.ads-grid{
  width:min(1080px,calc(100% - 40px));
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}

.ads-info-card{
  background:#fff;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  padding:22px;
}

.ads-info-card span{
  display:flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--tmp-yellow);
  color:var(--tmp-black);
  font-weight:900;
  margin-bottom:14px;
}

.ads-info-card h3{
  margin:0 0 8px;
  color:var(--tmp-black);
  font-size:19px;
  line-height:1.2;
  font-weight:900;
}

.ads-info-card p{
  margin:0;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.55;
}

.ads-final{
  width:min(1080px,calc(100% - 40px));
  margin:8px auto 48px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  padding:24px;
}

.ads-final strong{
  display:block;
  color:var(--tmp-black);
  font-size:22px;
  line-height:1.2;
  margin-bottom:4px;
}

.ads-final span{
  color:var(--tmp-muted);
  font-size:14px;
  font-weight:700;
}

.shop-section{
  padding:64px 0;
  border-top:1px solid var(--tmp-line);
}

.shop-soft{background:var(--tmp-bg)}

.shop-brand-band{
  position:relative;
  overflow:hidden;
  background:var(--tmp-black);
  color:#fff;
}

.shop-brand-band::before{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(90deg,rgba(0,163,224,.18),rgba(0,163,224,0) 38%),
    linear-gradient(180deg,rgba(255,214,0,.08),rgba(255,214,0,0) 44%);
}

.shop-brand-band > .shop-container{
  position:relative;
  z-index:1;
}

.shop-brand-band .shop-eyebrow,
.shop-brand-band .shop-card-kicker{
  color:#ffe76a;
}

.shop-brand-band .shop-eyebrow{
  border-color:rgba(255,214,0,.45);
  background:rgba(255,214,0,.12);
}

.shop-brand-band .shop-section-head h2,
.shop-brand-band h3{
  color:#fff;
}

.shop-brand-band .shop-section-head p,
.shop-brand-band .shop-steps p,
.shop-brand-band .shop-card p,
.shop-brand-band .shop-sii-feature p{
  color:rgba(255,255,255,.76);
}

.shop-section-head{
  margin-bottom:26px;
}

.shop-section-head h2,
.shop-review-faq-grid h2{
  font-size:36px;
  margin:0 0 10px;
}

.shop-section-head p,
.shop-review-faq-grid p{
  max-width:680px;
  color:var(--tmp-muted);
  font-size:16px;
  line-height:1.6;
}

.shop-include-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr)) minmax(300px,.95fr);
  gap:14px;
  align-items:stretch;
}

.shop-card,
.shop-product-summary,
.shop-spec-card,
.shop-source-card,
.shop-table-panel,
.shop-market-card,
.shop-comparison-wrapper,
.shop-simulator-card,
.shop-enterprise-card,
.shop-lead-form,
.shop-lead-summary,
.shop-sii-feature,
.shop-blog-card,
.shop-reviews article,
.shop-final-cta{
  background:#fff;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  box-shadow:0 3px 14px rgba(17,24,39,.04);
}

.shop-card,
.shop-sii-feature{
  padding:22px;
}

.shop-include-grid .shop-card:nth-of-type(5){
  grid-column:1 / span 2;
}

.shop-card-kicker{
  display:block;
  margin-bottom:10px;
  color:var(--tmp-blue-dark);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.shop-card h3,
.shop-enterprise-card h3,
.shop-sii-feature h3,
.shop-lead-summary h3,
.shop-blog-card h3{
  margin:0 0 8px;
  color:var(--tmp-black);
  font-size:20px;
  line-height:1.25;
  font-weight:900;
  overflow-wrap:break-word;
}

.shop-card p,
.shop-enterprise-card p,
.shop-sii-feature p,
.shop-blog-card p{
  margin:0;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.55;
  overflow-wrap:break-word;
}

.shop-home-section-grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:14px;
}

.shop-home-section-card{
  display:flex;
  min-height:210px;
  flex-direction:column;
  text-decoration:none;
  color:inherit;
}

.shop-home-section-card:hover{
  border-color:rgba(0,163,224,.4);
  transform:translateY(-2px);
  box-shadow:0 14px 32px rgba(17,24,39,.1);
}

.shop-home-feature-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.shop-home-feature-card{
  padding:26px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  box-shadow:var(--tmp-shadow);
}

.shop-home-feature-card h3{
  margin:10px 0 8px;
  color:var(--tmp-black);
  font-size:22px;
  line-height:1.12;
}

.shop-home-feature-card p{
  margin:0 0 18px;
  color:var(--tmp-muted);
  line-height:1.55;
}

.shop-home-feature-card a{
  color:var(--tmp-blue-dark);
  font-weight:900;
  text-decoration:none;
}

.shop-context-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.shop-context-card{
  overflow:hidden;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  box-shadow:var(--tmp-shadow);
}

.shop-context-card img{
  display:block;
  width:100%;
  height:250px;
  object-fit:cover;
}

.shop-context-product img{
  object-fit:contain;
  padding:22px;
  background:radial-gradient(circle at 50% 45%,rgba(255,214,0,.28),#fff 68%);
}

.shop-context-card div{
  padding:20px;
}

.shop-context-card h3{
  margin:8px 0;
  color:var(--tmp-black);
  font-size:21px;
  line-height:1.15;
}

.shop-context-card p{
  margin:0;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.55;
}

.shop-context-list{
  display:grid;
  gap:7px;
  margin:14px 0;
  padding:0;
  list-style:none;
}

.shop-context-list li{
  display:flex;
  align-items:center;
  gap:8px;
  color:var(--tmp-black);
  font-size:13px;
  font-weight:800;
}

.shop-context-list li::before{
  content:"";
  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--tmp-yellow);
  box-shadow:0 0 0 3px rgba(255,214,0,.18);
  flex:0 0 auto;
}

.shop-context-card a{
  display:inline-flex;
  margin-top:2px;
  color:var(--tmp-blue-dark);
  font-size:14px;
  font-weight:900;
  text-decoration:none;
}

.shop-card-photo{
  display:block;
  width:100%;
  height:190px;
  object-fit:cover;
  margin:0 0 18px;
  border-radius:var(--tmp-radius);
}

.shop-home-proof,
.shop-home-advice{
  display:grid;
  grid-template-columns:minmax(0,1.1fr) minmax(280px,.9fr);
  gap:28px;
  align-items:center;
}

.shop-home-proof h2,
.shop-home-advice h2{
  margin:8px 0 10px;
  color:var(--tmp-black);
  font-size:34px;
  line-height:1.06;
  letter-spacing:0;
}

.shop-home-proof p,
.shop-home-advice p{
  margin:0;
  color:var(--tmp-muted);
  font-size:17px;
  line-height:1.6;
}

.shop-home-proof-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

.shop-home-proof-grid span{
  min-height:58px;
  display:flex;
  align-items:center;
  padding:12px 14px;
  border:1px solid rgba(0,163,224,.18);
  border-radius:var(--tmp-radius);
  background:var(--tmp-blue-soft);
  color:var(--tmp-black);
  font-size:13px;
  font-weight:900;
}

.shop-home-advice{
  padding:30px;
  border:1px solid rgba(255,214,0,.55);
  border-radius:var(--tmp-radius);
  background:linear-gradient(135deg,#fff 0%,#fffbea 100%);
}

.shop-home-advice-actions{
  display:flex;
  gap:12px;
  justify-content:flex-end;
  flex-wrap:wrap;
}

.shop-route-hero{
  padding:78px 0 48px;
  background:linear-gradient(135deg,var(--tmp-black) 0%,#15213a 100%);
  color:#fff;
}

.shop-route-hero-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(260px,360px);
  gap:32px;
  align-items:center;
}

.shop-route-hero h1{
  margin:10px 0 12px;
  color:#fff;
  font-size:clamp(38px,6vw,72px);
  line-height:.94;
  letter-spacing:0;
}

.shop-route-hero p{
  max-width:720px;
  margin:0;
  color:#d8e2f0;
  font-size:18px;
  line-height:1.55;
}

.shop-route-hero-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.shop-route-visual{
  display:grid;
  gap:16px;
  justify-items:center;
}

.shop-route-visual img{
  width:min(100%,260px);
  height:auto;
  max-height:330px;
  object-fit:contain;
  filter:drop-shadow(0 24px 30px rgba(0,0,0,.32));
}

.shop-route-visual-photo img{
  width:min(100%,360px);
  aspect-ratio:4 / 3;
  max-height:none;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.18);
  border-radius:var(--tmp-radius);
  box-shadow:0 28px 42px rgba(0,0,0,.28);
  filter:none;
}

.shop-product-summary{
  grid-column:3;
  grid-row:1 / span 3;
  display:grid;
  grid-template-columns:1fr;
  gap:16px;
  align-content:start;
  border-color:var(--tmp-yellow-line);
  background:linear-gradient(180deg,#fff,var(--tmp-yellow-soft));
  padding:24px;
}

.shop-product-summary img,
.shop-lead-summary img{
  display:block;
  max-width:100%;
  width:auto;
  max-height:250px;
  margin:auto;
}

.shop-product-summary span{
  color:var(--tmp-muted);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
}

.shop-product-summary strong{
  display:block;
  color:var(--tmp-black);
  font-size:26px;
  margin:4px 0;
}

.shop-summary-total{
  margin:10px 0;
  color:var(--tmp-black);
  font-size:32px;
  font-weight:900;
}

.shop-summary-discounts{
  display:grid;
  gap:5px;
  margin:0 0 14px;
  padding:10px;
  border-radius:var(--tmp-radius);
  background:var(--tmp-yellow-soft);
  color:var(--tmp-yellow-dark);
}

.shop-summary-discounts span{
  color:var(--tmp-muted);
  font-size:11px;
  font-weight:800;
  text-transform:none;
}

.shop-summary-discounts strong{
  color:var(--tmp-yellow-dark);
  font-size:12px;
  margin:0;
}

.shop-specs-grid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(280px,.65fr);
  gap:14px;
  margin-top:18px;
}

.shop-spec-card,
.shop-source-card,
.shop-table-panel,
.shop-market-card,
.shop-comparison-wrapper{
  padding:22px;
}

.shop-spec-card h3,
.shop-source-card h3,
.shop-table-panel h3{
  margin:0 0 10px;
  color:var(--tmp-black);
  font-size:24px;
  line-height:1.2;
  font-weight:900;
}

.shop-source-card p,
.shop-table-panel p{
  margin:0;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.55;
}

.shop-specs-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin:16px 0 0;
}

.shop-specs-list div{
  min-height:84px;
  padding:14px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:var(--tmp-bg);
}

.shop-specs-list dt{
  margin:0 0 6px;
  color:var(--tmp-black);
  font-size:13px;
  font-weight:900;
}

.shop-specs-list dd{
  margin:0;
  color:var(--tmp-muted);
  font-size:13px;
  line-height:1.45;
}

.shop-source-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:16px;
}

.shop-source-list a{
  min-height:34px;
  display:inline-flex;
  align-items:center;
  border:1px solid #9bdffa;
  border-radius:var(--tmp-radius);
  background:#e9f8fd;
  color:var(--tmp-blue-dark);
  padding:0 12px;
  font-size:12px;
  font-weight:900;
  text-decoration:none;
}

.shop-table-source{
  margin:10px 0 0;
  color:var(--tmp-muted);
  font-size:12px;
  line-height:1.45;
}

.shop-market-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.shop-market-card{
  display:flex;
  flex-direction:column;
  gap:10px;
}

.shop-market-card strong{
  color:var(--tmp-black);
  font-size:42px;
  line-height:1;
  font-weight:900;
}

.shop-market-card span{
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.55;
}

.shop-market-card a{
  margin-top:auto;
  color:var(--tmp-blue-dark);
  font-size:13px;
  font-weight:900;
}

.shop-table-panel{
  display:grid;
  grid-template-columns:minmax(240px,.55fr) minmax(0,1.45fr);
  gap:18px;
  align-items:start;
  margin-bottom:18px;
}

.shop-table-wrap,
.shop-comparison-wrapper{
  overflow-x:auto;
}

.shop-table-wrap{
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
}

.shop-data-table{
  width:100%;
  min-width:680px;
  border-collapse:collapse;
  background:#fff;
  color:var(--tmp-text);
  font-size:13px;
}

.shop-data-table th,
.shop-data-table td{
  padding:13px 14px;
  border-bottom:1px solid var(--tmp-line);
  text-align:left;
  vertical-align:top;
  line-height:1.45;
}

.shop-data-table th{
  background:var(--tmp-black);
  color:#fff;
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:0;
}

.shop-data-table tbody tr:last-child td{
  border-bottom:0;
}

.shop-data-table td:nth-child(2),
.shop-data-table td:nth-child(3){
  font-weight:900;
  color:var(--tmp-black);
}

.shop-compare-table{
  min-width:900px;
}

.shop-compare-table th,
.shop-compare-table td{
  vertical-align:top;
}

.shop-compare-table td:first-child{
  color:var(--tmp-black);
}

.shop-compare-table td:nth-child(3),
.shop-compare-table td:nth-child(4){
  font-weight:700;
  color:var(--tmp-ink);
}

.shop-compare-featured td{
  background:var(--tmp-yellow-soft);
  border-bottom-color:var(--tmp-yellow-line);
}

.shop-compare-win{
  display:inline-block;
  margin-bottom:6px;
  padding:4px 8px;
  border:1px solid var(--tmp-yellow-line);
  border-radius:999px;
  background:var(--tmp-yellow);
  color:var(--tmp-black);
  font-weight:900;
  line-height:1.2;
}

.shop-compare-note{
  display:flex;
  gap:10px;
  align-items:flex-start;
  margin-top:12px;
  padding:14px 16px;
  border:1px solid var(--tmp-yellow-line);
  border-radius:var(--tmp-radius);
  background:#fffdf0;
  color:var(--tmp-black);
  font-size:14px;
  line-height:1.45;
}

.shop-compare-note strong{
  flex:0 0 auto;
}

.shop-compare-sources{
  margin-top:14px;
}

.shop-process-grid{
  display:grid;
  grid-template-columns:minmax(0,1.05fr) minmax(320px,.95fr);
  gap:18px;
  align-items:start;
}

.shop-process-list{
  display:grid;
  gap:12px;
  margin:0;
  padding:0;
  list-style:none;
  counter-reset:processStep;
}

.shop-process-list li{
  position:relative;
  min-height:86px;
  padding:18px 18px 18px 70px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  box-shadow:0 3px 14px rgba(17,24,39,.04);
  counter-increment:processStep;
}

.shop-process-list li::before{
  content:counter(processStep);
  position:absolute;
  left:18px;
  top:18px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  background:var(--tmp-blue);
  color:#fff;
  font-weight:900;
}

.shop-process-list strong{
  display:block;
  margin-bottom:6px;
  color:var(--tmp-black);
  font-size:17px;
  line-height:1.2;
}

.shop-process-list span{
  display:block;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.55;
}

.shop-requirements-panel{
  display:grid;
  gap:12px;
}

.shop-requirements-panel article{
  padding:20px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  box-shadow:0 3px 14px rgba(17,24,39,.04);
}

.shop-requirements-panel h3{
  margin:0 0 10px;
  color:var(--tmp-black);
  font-size:20px;
  line-height:1.25;
  font-weight:900;
}

.shop-requirements-panel p,
.shop-requirements-panel li{
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.55;
}

.shop-requirements-panel ul{
  display:grid;
  gap:8px;
  margin:0;
  padding-left:18px;
}

.shop-requirements-panel p{
  margin:0;
}

.shop-use-case-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.shop-simulator-grid{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:18px;
  align-items:stretch;
}

.shop-simulator-card,
.shop-enterprise-card{
  padding:24px;
}

.shop-segment{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:8px;
  margin-bottom:22px;
}

.shop-segment-btn{
  min-height:44px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  color:var(--tmp-text);
  font-weight:900;
  font-family:Inter,system-ui,sans-serif;
  cursor:pointer;
}

.shop-segment-btn.active{
  background:var(--tmp-black);
  color:#fff;
  border-color:var(--tmp-black);
}

.shop-slider-label{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  color:var(--tmp-muted);
  font-size:14px;
  font-weight:800;
  margin-bottom:10px;
}

.shop-slider-label strong{
  color:var(--tmp-black);
  font-size:20px;
}

#calc-slider{
  width:100%;
  margin:0 0 24px;
}

.shop-result-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.shop-result-grid > div{
  padding:16px;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:var(--tmp-bg);
}

.shop-result-grid span{
  display:block;
  color:var(--tmp-muted);
  font-size:12px;
  font-weight:800;
  margin-bottom:6px;
}

.shop-result-grid strong{
  color:var(--tmp-black);
  font-size:24px;
  font-weight:900;
}

.shop-result-grid small{
  display:block;
  color:var(--tmp-muted);
  margin-top:4px;
  font-size:12px;
}

.shop-result-main{
  grid-column:1 / -1;
  background:var(--tmp-green-soft)!important;
}

.shop-simulator-cta{
  margin-top:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  border:1px solid var(--tmp-yellow-line);
  border-radius:var(--tmp-radius);
  background:var(--tmp-yellow-soft);
  padding:16px;
}

.shop-simulator-cta strong,
.shop-simulator-cta span{
  display:block;
}

.shop-simulator-cta strong{
  color:var(--tmp-black);
  font-size:16px;
  margin-bottom:4px;
}

.shop-simulator-cta span{
  color:var(--tmp-yellow-dark);
  font-size:13px;
  font-weight:800;
  line-height:1.45;
}

.shop-simulator-cta.high-intent{
  background:linear-gradient(135deg,var(--tmp-yellow),#fff1a6);
}

.shop-simulator-cta .shop-btn{
  flex:0 0 auto;
}

.shop-result-main strong{color:#087443}

.shop-disclaimer{
  margin-top:14px!important;
  color:var(--tmp-muted)!important;
  font-size:12px!important;
  line-height:1.5!important;
}

.shop-enterprise-card{
  background:linear-gradient(180deg,var(--tmp-blue-soft),#fff);
  border-color:#b9e8fb;
  display:flex;
  flex-direction:column;
}

.shop-enterprise-card h3{
  font-size:26px;
}

.shop-enterprise-points{
  display:grid;
  gap:8px;
  margin:18px 0 0;
  padding:12px;
  border:1px solid #b9e8fb;
  border-radius:var(--tmp-radius);
  background:#fff;
}

.shop-enterprise-points span{
  color:var(--tmp-blue-dark);
  font-size:13px;
  font-weight:900;
  line-height:1.35;
}

.shop-enterprise-points span::before{
  content:"";
  display:inline-block;
  width:7px;
  height:7px;
  margin-right:8px;
  border-radius:50%;
  background:var(--tmp-blue);
}

.shop-enterprise-actions{
  margin-top:auto;
  padding-top:22px;
}

.shop-lead-grid{
  display:grid;
  grid-template-columns:1fr 330px;
  gap:18px;
  margin-top:18px;
  align-items:start;
}

.shop-lead-form{
  padding:26px;
}

.shop-lead-form h2,
.shop-lead-form h3{
  font-size:30px;
  margin:0 0 8px;
  color:var(--tmp-black);
  line-height:1.12;
  font-weight:900;
}

.shop-lead-form p{
  color:var(--tmp-muted);
  margin:0 0 20px;
}

.shop-form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.shop-form-grid label,
.shop-check{
  display:grid;
  gap:7px;
  color:var(--tmp-text);
  font-size:13px;
  font-weight:800;
}

.shop-form-grid input,
.shop-form-grid select,
.shop-form-grid textarea{
  min-height:46px;
  width:100%;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:#fff;
  color:var(--tmp-text);
  padding:12px 13px;
  font:500 14px/1.3 Inter,system-ui,sans-serif;
  outline:none;
}

.shop-form-grid textarea{resize:vertical}
.shop-form-full{grid-column:1 / -1}

.shop-form-grid input:focus,
.shop-form-grid select:focus,
.shop-form-grid textarea:focus{
  border-color:var(--tmp-blue);
  box-shadow:0 0 0 3px rgba(0,163,224,.15);
}

.shop-form-grid input.shop-field-invalid,
.shop-form-grid select.shop-field-invalid,
.shop-form-grid textarea.shop-field-invalid{
  border-color:var(--tmp-red);
  box-shadow:0 0 0 3px rgba(217,45,32,.12);
}

.shop-form-field-error{
  color:var(--tmp-red);
  font-size:12px;
  font-weight:800;
  line-height:1.35;
}

.shop-check{
  grid-template-columns:auto 1fr;
  align-items:center;
  margin:16px 0;
  font-weight:700;
  color:var(--tmp-muted);
}

.shop-check input{
  width:18px;
  height:18px;
}

.shop-form-status{
  margin-top:14px;
  min-height:22px;
  color:var(--tmp-muted);
  font-size:14px;
  font-weight:800;
}

.shop-form-status.ok,
.shop-form-status.success{color:#087443}
.shop-form-status.error{color:var(--tmp-red)}

.shop-lead-form button:disabled{
  cursor:not-allowed;
  opacity:.65;
}

.shop-lead-summary{
  padding:22px;
  position:sticky;
  top:130px;
}

.shop-lead-summary strong{
  display:block;
  color:var(--tmp-black);
  font-size:24px;
  margin-bottom:12px;
}

.shop-lead-summary ul{
  display:grid;
  gap:9px;
  list-style:none;
  margin:0 0 12px;
  padding:0;
}

.shop-lead-summary li{
  color:var(--tmp-text);
  font-size:14px;
  font-weight:800;
}

.shop-lead-summary li::before{
  content:"";
  width:7px;
  height:7px;
  display:inline-block;
  border-radius:50%;
  background:var(--tmp-green);
  margin-right:8px;
}

.shop-lead-summary small{
  color:var(--tmp-muted);
  font-size:12px;
  line-height:1.4;
}

.shop-careers{
  background:var(--tmp-black);
  border-top:4px solid var(--tmp-yellow);
  color:#fff;
}

.shop-careers-grid{
  display:grid;
  grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr);
  gap:22px;
  align-items:start;
}

.shop-careers-copy{
  padding:18px 0;
}

.shop-careers-copy h2{
  max-width:560px;
  margin:0 0 12px;
  color:#fff;
  font-size:38px;
  line-height:1.08;
  font-weight:900;
}

.shop-careers-copy p{
  max-width:600px;
  margin:0;
  color:rgba(255,255,255,.75);
  font-size:16px;
  line-height:1.6;
}

.shop-careers-points{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
  margin-top:22px;
}

.shop-careers-points span{
  min-height:54px;
  display:flex;
  align-items:center;
  border:1px solid rgba(255,214,0,.28);
  border-radius:var(--tmp-radius);
  background:rgba(255,255,255,.07);
  color:#fff;
  padding:12px 14px;
  font-size:13px;
  font-weight:900;
  line-height:1.35;
}

.shop-candidate-form{
  background:#fff;
}

.shop-careers .shop-eyebrow{
  border-color:rgba(255,214,0,.48);
  background:rgba(255,214,0,.12);
  color:#ffe76a;
}

.shop-careers .shop-btn-blue{
  background:var(--tmp-yellow);
  color:var(--tmp-black);
}

.shop-file-field input{
  padding:12px;
  cursor:pointer;
}

.shop-file-field input::file-selector-button{
  margin-right:12px;
  border:1px solid var(--tmp-yellow-line);
  border-radius:8px;
  background:var(--tmp-yellow-soft);
  color:var(--tmp-yellow-dark);
  padding:9px 12px;
  font-weight:900;
  cursor:pointer;
}

.shop-file-field span{
  display:block;
  margin-top:8px;
  color:var(--tmp-muted);
  font-size:12px;
  line-height:1.45;
}

.shop-steps{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-bottom:18px;
}

.shop-steps article{
  background:#fff;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  padding:22px;
}

.shop-brand-band .shop-steps article,
.shop-brand-band .shop-card,
.shop-brand-band .shop-sii-feature{
  background:rgba(255,255,255,.06);
  border-color:rgba(143,220,255,.22);
  box-shadow:none;
}

.shop-steps span{
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  background:var(--tmp-blue);
  color:#fff;
  border-radius:50%;
  font-weight:900;
}

.shop-brand-band .shop-steps span{
  background:var(--tmp-blue);
  box-shadow:0 0 0 5px rgba(0,163,224,.16);
}

.shop-steps h3{
  margin:0 0 8px;
  color:var(--tmp-black);
  font-size:20px;
}

.shop-brand-band .shop-steps h3,
.shop-brand-band .shop-card h3,
.shop-brand-band .shop-sii-feature h3{
  color:#fff;
}

.shop-steps p{
  margin:0;
  color:var(--tmp-muted);
  line-height:1.55;
}

.shop-sii-grid{
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:14px;
}

.shop-sii-feature{
  background:var(--tmp-blue-soft);
  border-color:#b9e8fb;
}

.shop-brand-band .shop-sii-feature{
  border-color:rgba(0,163,224,.7);
}

.shop-brand-band .shop-payments span{
  border-color:rgba(255,255,255,.18);
  background:rgba(255,255,255,.08);
  color:#fff;
}

.shop-brand-band .shop-payments span:nth-child(4),
.shop-brand-band .shop-payments span:nth-child(5){
  border-color:var(--tmp-yellow);
  color:var(--tmp-yellow);
}

.shop-payments{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:18px;
}

.shop-blog-tabs{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:18px;
}

.shop-blog-tabs a:hover{
  border-color:var(--tmp-yellow-line);
  background:var(--tmp-yellow-soft);
  color:var(--tmp-yellow-dark);
}

.shop-blog-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
}

.shop-blog-card{
  overflow:hidden;
}

.shop-blog-card img{
  width:100%;
  height:176px;
  object-fit:cover;
  display:block;
}

.shop-blog-card-product img{
  object-fit:contain;
  background:linear-gradient(180deg,#fff,var(--tmp-yellow-soft));
  padding:16px;
}

.shop-blog-card div{
  padding:16px;
}

.shop-blog-card span{
  color:var(--tmp-blue-dark);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.shop-blog-card h3{
  font-size:17px;
  min-height:86px;
}

.shop-blog-card a{
  display:inline-flex;
  margin-top:12px;
  color:var(--tmp-blue-dark);
  font-weight:900;
}

.shop-review-faq-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:36px;
  align-items:start;
}

.shop-review-faq-grid > div:first-child{
  display:flex;
  flex-direction:column;
}

.shop-reviews{
  display:grid;
  gap:12px;
  margin-top:20px;
}

.shop-reviews article{
  display:grid;
  grid-template-columns:94px 1fr;
  gap:14px;
  align-items:start;
  padding:14px;
}

.shop-review-photo{
  width:94px;
  height:94px;
  object-fit:cover;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  background:var(--tmp-bg);
}

.shop-reviews strong{
  display:block;
  color:var(--tmp-black);
  font-size:16px;
}

.shop-reviews span{
  display:inline-block;
  margin:5px 0 7px;
  color:#996f00;
  font-weight:900;
  font-size:13px;
}

.shop-reviews p{
  margin:0;
  color:var(--tmp-muted);
  font-size:14px;
}

.shop-faq-list{
  background:#fff;
  border:1px solid var(--tmp-line);
  border-radius:var(--tmp-radius);
  padding:20px;
  margin-top:72px;
}

.shop-faq-list h2{
  color:var(--tmp-black);
  font-size:24px;
  line-height:1.15;
  font-weight:900;
  margin:0 0 10px;
}

.shop-faq-item{
  width:100%;
  min-height:52px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border:0;
  border-top:1px solid var(--tmp-line);
  background:#fff;
  color:var(--tmp-black);
  font:900 16px/1.25 Inter,system-ui,sans-serif;
  text-align:left;
  cursor:pointer;
}

.shop-faq-item:first-of-type{border-top:0}
.shop-faq-item::after{content:"+";font-size:20px}
.shop-faq-item.open::after{content:"-"}

.shop-faq-answer{
  display:none;
  color:var(--tmp-muted);
  font-size:14px;
  line-height:1.6;
  padding:0 0 16px;
}

.shop-faq-item.open + .shop-faq-answer{display:block}

.shop-final-cta{
  margin-top:36px;
  padding:26px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  border-color:var(--tmp-yellow);
  background:var(--tmp-yellow);
}

.shop-final-cta h2{
  font-size:30px;
  margin:0 0 8px;
}

.shop-final-cta p{
  margin:0;
  color:rgba(11,19,38,.78);
  font-weight:700;
}

.shop-final-cta .shop-btn-wa{
  background:#fff;
  color:var(--tmp-black);
}

.wa-float{
  position:fixed;
  right:22px;
  bottom:22px;
  z-index:130;
  display:flex;
  align-items:center;
  gap:10px;
}

.wa-float-bubble{
  animation:shopWaPulse 2.2s ease-in-out infinite;
}

@keyframes shopWaPulse{
  0%,100%{box-shadow:0 0 0 0 rgba(37,211,102,.42),0 4px 14px rgba(0,0,0,.2)}
  50%{box-shadow:0 0 0 12px rgba(37,211,102,0),0 10px 22px rgba(0,0,0,.22)}
}

.shop-motion-ready .shop-reveal{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .55s ease,transform .55s ease;
}

.shop-motion-ready .shop-reveal.in-view{
  opacity:1;
  transform:translateY(0);
}

@media (prefers-reduced-motion:reduce){
  .wa-float-bubble{
    animation:none;
  }

  .shop-motion-ready .shop-reveal{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.shop-footer{
  background:#121316;
  color:#fff;
  padding:42px 0 0;
}

.shop-footer-grid{
  display:grid;
  grid-template-columns:1.4fr repeat(3,1fr);
  gap:36px;
}

.shop-footer img{
  display:block;
  width:170px;
  max-width:100%;
  height:auto;
  margin-bottom:16px;
}

.shop-footer h3{
  margin:0 0 14px;
  color:#fff;
  font-size:13px;
  text-transform:uppercase;
}

.shop-footer p,
.shop-footer a{
  display:block;
  margin:0 0 9px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.55;
}

.shop-footer-contact{
  margin:14px 0 12px;
}

.shop-footer-contact a,
.shop-footer-contact span{
  display:block;
  margin:0 0 9px;
  color:#fff;
  font-size:13px;
  font-weight:800;
  line-height:1.55;
}

.shop-brand-legal{
  color:#fff!important;
  font-weight:900;
}

.shop-footer-proof{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.35fr);
  gap:18px;
  align-items:center;
  padding:20px 0;
  border-top:1px solid rgba(255,255,255,.1);
}

.shop-footer-proof span{
  display:inline-flex;
  align-items:center;
  min-width:0;
}

.shop-footer-proof > div:first-child > span{
  margin-bottom:8px;
  padding:5px 9px;
  border:1px solid rgba(255,214,0,.65);
  border-radius:8px;
  color:var(--tmp-yellow);
  font-size:11px;
  font-weight:900;
  text-transform:uppercase;
}

.shop-footer-proof strong{
  display:block;
  color:#fff;
  font-size:18px;
  line-height:1.25;
}

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

.shop-footer-proof-grid span{
  min-height:46px;
  padding:10px;
  border:1px solid rgba(143,220,255,.22);
  border-radius:var(--tmp-radius);
  background:rgba(255,255,255,.05);
  color:#e8f6ff;
  font-size:12px;
  font-weight:900;
  line-height:1.25;
}

.shop-footer-bottom{
  width:min(1140px,calc(100% - 48px));
  min-height:52px;
  margin:30px auto 0;
  border-top:1px solid rgba(255,255,255,.14);
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  color:rgba(255,255,255,.65);
  font-size:12px;
}

.shop-footer-bottom a{
  color:#fff;
  font-weight:800;
  text-decoration:none;
}

.shop-sticky-cta{
  display:none;
}

@media (max-width:980px){
  .shop-nav-links,
  .shop-nav-actions{display:none}

  .shop-menu-btn{display:inline-flex;align-items:center}

  .shop-nav{height:68px}

  .shop-hero-grid,
  .shop-simulator-grid,
  .shop-table-panel,
  .shop-process-grid,
  .shop-conversion-grid,
  .shop-rent-grid,
  .shop-lead-grid,
  .shop-careers-grid,
  .shop-review-faq-grid,
  .shop-home-proof,
  .shop-home-advice,
  .shop-route-hero-grid{
    grid-template-columns:1fr;
  }

  .shop-process-flow{
    grid-template-columns:repeat(2,1fr);
  }

  .ads-hero-grid,
  .ads-grid,
  .shop-experience-grid{
    grid-template-columns:1fr;
  }

  .ads-card{
    order:-1;
  }

  .shop-process-flow article::after{
    display:none;
  }

  .shop-hero{
    padding:28px 0 36px;
  }

  .shop-hero-media{
    min-height:200px;
  }

  .shop-hero-media img{
    max-height:300px;
  }

  .shop-hero h1{
    font-size:36px;
  }

  .shop-hero-sub{
    font-size:16px;
  }

  .shop-price-value{
    font-size:46px;
  }

  .shop-include-grid,
  .shop-home-section-grid,
  .shop-home-feature-grid,
  .shop-context-grid,
  .shop-specs-grid,
  .shop-market-grid,
  .shop-use-case-grid,
  .shop-sii-grid,
  .shop-steps,
  .shop-process-flow,
  .shop-funnel-grid,
  .shop-blog-grid{
    grid-template-columns:1fr 1fr;
  }

  .shop-product-summary{
    grid-column:1 / -1;
    grid-row:auto;
    grid-template-columns:200px 1fr;
    align-items:center;
  }

  .shop-include-grid .shop-card:nth-of-type(5){
    grid-column:auto;
  }

  .shop-faq-list{
    margin-top:0;
  }

  .shop-home-advice-actions,
  .shop-route-hero-actions{
    justify-content:flex-start;
  }

  .shop-lead-summary{
    position:static;
  }

  .shop-footer-grid{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width:640px){
  .shop-container,
  .shop-nav,
  .shop-footer-bottom{
    width:min(1140px,calc(100% - 28px));
  }

  .shop-ticker{
    height:34px;
  }

  .shop-ticker-track{
    animation-duration:44s;
    gap:20px;
  }

  .shop-ticker-track span,
  .shop-ticker-track a{
    font-size:12px;
  }

  .shop-logo img{
    height:34px;
  }

  .shop-section{
    padding:46px 0;
  }

  .shop-section-head h2,
  .shop-review-faq-grid h2,
  .shop-careers-copy h2{
    font-size:28px;
    line-height:1.12;
  }

  .shop-hero h1{
    max-width:360px;
    font-size:30px;
    line-height:1.08;
  }

  .shop-hero-sub{
    font-size:15px;
  }

  .shop-direct-answer{
    padding:12px 13px;
    font-size:14px;
  }

  .shop-hero-actions .shop-btn,
  .shop-form-actions .shop-btn,
  .shop-enterprise-actions .shop-btn,
  .shop-final-actions .shop-btn{
    width:100%;
  }

  .shop-price-box{
    grid-template-columns:1fr;
    align-items:start;
  }

  .shop-price-badge{
    width:100%;
  }

  .shop-conversion-grid,
  .shop-rent-grid,
  .shop-process-flow{
    grid-template-columns:1fr;
  }

  .ads-topbar-inner,
  .ads-final{
    align-items:flex-start;
    flex-direction:column;
  }

  .ads-hero-copy{
    padding:24px;
  }

  .ads-hero-copy h1{
    font-size:31px;
  }

  .ads-bullets{
    grid-template-columns:1fr;
  }

  .ads-price-row strong{
    font-size:44px;
  }

  .shop-price-value{
    font-size:42px;
  }

  .shop-price-note{
    padding-bottom:0;
  }

  .shop-volume-actions{
    display:grid;
    grid-template-columns:1fr;
  }

  .shop-pack-link{
    width:100%;
  }

  .shop-trust-line{
    display:grid;
    grid-template-columns:1fr;
    gap:8px;
  }

  .shop-include-grid,
  .shop-home-section-grid,
  .shop-home-feature-grid,
  .shop-context-grid,
  .shop-home-proof-grid,
  .shop-specs-grid,
  .shop-specs-list,
  .shop-market-grid,
  .shop-use-case-grid,
  .shop-funnel-grid,
  .shop-product-summary,
  .shop-result-grid,
  .shop-form-grid,
  .shop-careers-points,
  .shop-sii-grid,
  .shop-steps,
  .shop-blog-grid,
  .shop-footer-grid,
  .shop-footer-proof{
    grid-template-columns:1fr;
  }

  .shop-result-main,
  .shop-form-full{
    grid-column:auto;
  }

  .shop-home-section-card{
    min-height:auto;
  }

  .shop-home-proof h2,
  .shop-home-advice h2,
  .shop-route-hero h1{
    font-size:28px;
    line-height:1.1;
  }

  .shop-home-advice{
    padding:22px;
  }

  .shop-home-advice-actions .shop-btn,
  .shop-route-hero-actions .shop-btn{
    width:100%;
  }

  .shop-product-summary{
    display:grid;
    grid-template-columns:1fr;
    grid-row:auto;
  }

  .shop-product-summary img,
  .shop-lead-summary img{
    max-height:180px;
  }

  .shop-context-card img,
  .shop-card-photo{
    height:210px;
  }

  .shop-final-cta{
    align-items:stretch;
    flex-direction:column;
  }

  .shop-final-actions{
    width:100%;
  }

  .shop-footer{
    padding-bottom:118px;
  }

  .wa-float{
    right:16px;
    bottom:92px;
  }

  .wa-float-label{display:none}

  .shop-footer-bottom{
    align-items:flex-start;
    flex-direction:column;
    padding:18px 0;
  }

  .shop-footer-proof-grid{
    grid-template-columns:1fr;
  }

  .shop-reviews article{
    grid-template-columns:76px 1fr;
  }

  .shop-review-photo{
    width:76px;
    height:76px;
  }

  .shop-sticky-cta{
    position:fixed;
    left:10px;
    right:10px;
    width:calc(100% - 20px);
    bottom:10px;
    z-index:120;
    min-height:auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:8px;
    padding:8px;
    border:1px solid var(--tmp-line);
    border-radius:var(--tmp-radius);
    background:#fff;
    box-shadow:var(--tmp-shadow);
  }

  .shop-sticky-cta span{
    grid-column:1 / -1;
    color:var(--tmp-black);
    font-size:12px;
    font-weight:900;
    min-width:0;
    overflow:hidden;
    text-overflow:ellipsis;
    white-space:nowrap;
  }

  .shop-sticky-cta a{
    min-height:40px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:var(--tmp-radius);
    padding:0 10px;
    color:#fff;
    font-size:12px;
    font-weight:900;
    text-decoration:none;
    background:#007a2f;
  }

  .shop-sticky-cta .sticky-buy{
    background:var(--tmp-black);
  }
}

@media (max-width:380px){
  .shop-hero h1{
    max-width:310px;
    font-size:26px;
  }

  .shop-section-head h2,
  .shop-review-faq-grid h2{
    font-size:25px;
  }

}
