/* ================================
   TapLoop - style.css
   Fonts:
   - Titles: Outfit
   - Body: DM Sans
================================ */

:root{
  --bg: #ffffff;
  --bg-soft:#f6f8fb;
  --card-bg:#ffffff;
  --text:#101828;
  --muted:#667085;
  --muted-2:#98a2b3;
  --line:#e4e7ec;

  --brand:#ff5a3d;
  --brand-2:#ff5a3d;
  --accent:#ff5a3d;
  --brand-glow: rgba(255, 90, 61, 0.22);
  --ink:#101828;
  --black:#000000;

  --radius: 12px;
  --radius-lg: 14px;

  --container: 1180px;

  --shadow-sm: none;
  --shadow-md: none;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family:"DM Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:var(--bg);
  line-height:1.45;
  -webkit-font-smoothing:antialiased;
}
body.cart-open{
  overflow:hidden;
}

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
button{ font-family:inherit; }

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

/* ---------------- Header / Nav ---------------- */
.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  border-bottom:1px solid rgba(16,24,40,.08);
}

.header .nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
  min-height:76px;
  padding:12px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width:180px;
}
.header .brand img{
  height:40px;
  width:auto;
}

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:30px;
  flex:1;
}
.header .nav-links a{
  font-size:15px;
  color:#344054;
  opacity:.92;
  font-weight:500;
  letter-spacing:.01em;
}
.nav-links a:hover{ opacity:1; color:var(--accent); }

.nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  min-width:220px;
}
.nav-text-link{
  font-size:14px;
  font-weight:600;
  color:#475467;
  white-space:nowrap;
}
.nav-text-link:hover{
  color:var(--accent);
}
.icon-btn{
  width:38px;
  height:38px;
  border-radius:8px;
  border:1px solid var(--line);
  background:#fff;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.icon-btn:hover{
  border-color:#dcdcdc;
  transform: translateY(-1px);
}
.icon{
  width:18px;
  height:18px;
  opacity:.85;
}

/* Mobile nav (simple) */
.mobile-toggle{
  display:none;
}
.header .nav-cta{
  font-size:15px;
  padding:14px 26px;
  white-space:nowrap;
  line-height:1;
}
.home-page .header .nav{
  min-height:82px;
  padding:14px 0;
}
.home-page .header .brand img{
  height:44px;
}
.home-page .header .nav-links a{
  font-size:16px;
}
.home-page .header .nav-text-link{
  font-size:15px;
}
.home-page .header .nav-cta{
  font-size:16px;
  padding:15px 28px;
}
.nav-cart-btn{
  position:relative;
}
.nav-cart-count{
  position:absolute;
  top:-5px;
  right:-5px;
  min-width:18px;
  height:18px;
  padding:0 5px;
  border-radius:999px;
  background:var(--brand);
  color:#fff;
  font-size:11px;
  font-weight:700;
  display:grid;
  place-items:center;
  line-height:1;
}

/* ---------------- Utilities ---------------- */
.section{
  padding:72px 0;
}
.section-tight{
  padding:54px 0;
}
.section-soft{
  background:var(--bg-soft);
}
.hr{
  border:none;
  border-top:1px solid var(--line);
  margin:0;
}

.h1, .h2, .h3{
  font-family:"Outfit", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  letter-spacing:0;
  margin:0;
}
.h1{
  font-size:56px;
  line-height:1.02;
  font-weight:600;
}
.h2{
  font-size:46px;
  line-height:1.08;
  font-weight:600;
}
.h3{
  font-size:28px;
  line-height:1.12;
  font-weight:600;
}

.p{
  margin:14px 0 0;
  color:var(--muted);
  font-size:18px;
  line-height:1.7;
}

.center{
  text-align:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:13px 20px;
  border-radius:14px;
  border:1px solid transparent;
  cursor:pointer;
  transition: transform .16s ease, opacity .16s ease, background .16s ease, border-color .16s ease, box-shadow .16s ease;
}
.btn .icon{
  margin-right:0;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
  padding:14px 26px;
  font-size:16px;
  font-weight:700;
  box-shadow:0 12px 28px rgba(16,24,40,.14);
}
.btn-primary:hover{
  opacity:1;
  box-shadow:0 14px 34px rgba(16,24,40,.18), 0 0 18px var(--brand-glow);
}

.btn-ghost{
  background:transparent;
  color:#fff;
  border:1px solid rgba(255,255,255,.55);
}
.btn-ghost:hover{
  background:rgba(255,255,255,.08);
}
.btn-outline{
  background:transparent;
  color:var(--ink);
  border:1px solid #cbd5e1;
}
.btn-outline:hover{
  background:var(--ink);
  color:#fff;
  border-color:var(--ink);
}
.btn-secondary{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
  font-weight:700;
}
.btn-secondary:hover{
  background:#f8f8f8;
}

/* ---------------- Hero ---------------- */
.hero{
  padding:0;
}
.hero-wrap{
  position:relative;
  min-height:520px;
  border-radius:0;
  overflow:hidden;
  background:#111;
}
.hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  border-radius:0;
  border:none;
  box-shadow:none;
}
.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.52);
}
.hero-content{
  position:relative;
  z-index:2;
  padding:84px 0;
  color:#fff;
  text-align:center;
}
.hero-content-home{
  display:grid;
  grid-template-columns:minmax(260px, .68fr) minmax(500px, 1.32fr);
  align-items:center;
  gap:54px;
  text-align:left;
}
.hero-copy .h1{
  margin:0;
  font-size:64px;
  line-height:.96;
  letter-spacing:-.05em;
}
.hero-copy .p{
  margin:18px 0 0;
}
.hero-copy{
  max-width:620px;
}
.hero-made-mexico{
  display:inline-flex;
  align-items:center;
  margin:0 0 12px;
  background:linear-gradient(90deg, #006847 0%, #7a8f68 42%, #ce1126 100%);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  text-shadow:0 0 1px rgba(15,23,42,.12);
  font-size:12px;
  line-height:1;
  font-weight:800;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.hero-content .h1{
  color:var(--ink);
  max-width:620px;
  margin:0 auto;
}
.hero-content .p{
  color:var(--muted);
  max-width:560px;
  margin:18px auto 0;
  font-size:20px;
}
.hero-seo-title{
  margin:20px 0 0;
  font-family:"DM Sans", system-ui, sans-serif;
  font-size:16px;
  line-height:1.5;
  font-weight:500;
  color:#98a2b3;
}
.hero-cta{
  margin-top:26px;
  display:flex;
  justify-content:flex-start;
  align-items:flex-start;
  gap:0;
  flex-wrap:wrap;
}
.hero-cta-primary{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
}
.hero-team-link{
  font-size:14px;
  font-weight:700;
  color:var(--ink);
  text-decoration:underline;
  text-underline-offset:4px;
  text-align:center;
}
.hero-team-link:hover{
  color:var(--brand);
}
.hero-handwritten{
  margin:22px 0 0;
  font-family:"Caveat", cursive;
  font-size:34px;
  line-height:1;
  color:#ff8a70;
  text-align:center;
}
.hero-microcopy{
  display:flex;
  flex-wrap:wrap;
  gap:12px 18px;
  margin-top:18px;
  color:rgba(255,255,255,.76);
  font-size:14px;
  font-weight:500;
}
.hero-microcopy span{
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.hero-microcopy span::before{
  content:"";
  width:5px;
  height:5px;
  border-radius:50%;
  background:rgba(255,255,255,.72);
}
.hero-proof{
  display:grid;
  gap:14px;
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(255,255,255,.16);
}
.hero-proof-rating strong,
.hero-proof-rating span,
.hero-proof-meta span{
  display:block;
}
.hero-proof-rating strong{
  font-size:16px;
  font-weight:700;
  color:#fff;
}
.hero-proof-rating span{
  margin-top:8px;
  color:rgba(255,255,255,.74);
  line-height:1.6;
}
.hero-proof-meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.hero-proof-meta span{
  padding:8px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.88);
  font-size:13px;
  font-weight:600;
}
.hero-side-media{
  width:min(100%, 340px);
  justify-self:end;
}
.hero-side-video{
  width:100%;
  aspect-ratio:9 / 16;
  object-fit:cover;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.35);
  box-shadow:none;
  background:#000;
}

.hero-showcase{
  width:min(112%, 780px);
  justify-self:end;
  display:grid;
  gap:0;
  transform:translateY(-64px);
}

.hero-card-main{
  width:100%;
  object-fit:contain;
  background:transparent !important;
}

.btn-hero-quote{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
  font-weight:700;
  padding:15px 28px;
  box-shadow:0 14px 32px rgba(255,90,61,.22);
}

.btn-hero-quote:hover{
  background:#ef452c;
  border-color:#ef452c;
  opacity:1;
  box-shadow:0 18px 38px rgba(255,90,61,.28), 0 0 18px var(--brand-glow);
}

.btn-hero-secondary{
  background:#fff;
  color:var(--ink);
  border-color:rgba(15,23,42,.14);
  font-weight:600;
}

.btn-hero-secondary:hover{
  background:#fff;
  border-color:rgba(15,23,42,.22);
}

.hero-examples{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
  align-items:start;
}

.hero-examples img{
  width:100%;
  aspect-ratio:4 / 3;
  object-fit:cover;
}

.hero-card{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:14px;
  padding:22px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.18);
  border-radius:10px;
  box-shadow:none;
}
.hero-card img{
  width:100%;
  border-radius:8px;
  aspect-ratio:4 / 3;
  object-fit:cover;
}
.hero-card .h3,
.hero-card h2,
.hero-card h3{
  margin:0;
}
.hero-card .p{
  margin:0;
  color:rgba(255,255,255,.82);
  font-size:16px;
}

.hero .btn-ghost,
.page-hero .btn-ghost{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.55);
}
.hero .btn-ghost:hover,
.page-hero .btn-ghost:hover{
  background:rgba(255,255,255,.08);
}
.hero .btn-white,
.page-hero .btn-white{
  background:#fff;
  color:#111;
  border-color:#fff;
}
.hero .btn-white:hover,
.page-hero .btn-white:hover{
  background:#f0f0f0;
}

/* ---------------- Shared content blocks ---------------- */
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin:0 0 14px;
  padding:0 0 0 14px;
  border-radius:0;
  background:transparent;
  color:var(--accent);
  border:none;
  border-left:4px solid var(--accent);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.section-head{
  max-width:760px;
  margin:0 0 32px;
}
.section-head-narrow{
  margin-left:auto;
  margin-right:auto;
}
.section-head .h2,
.section-head .h3{
  margin:0;
}
.section-head .p{
  max-width:720px;
}

.inline-actions,
.section-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:24px;
}
.section-actions-center{
  justify-content:center;
}

.split-grid,
.split{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(300px,460px);
  gap:42px;
  align-items:center;
}
.split-grid.reverse .split-media,
.split.reverse .split-media,
.split-reverse .split-media{
  order:2;
}
.split-grid.reverse .split-content,
.split-grid.reverse .split-copy,
.split.reverse .split-content,
.split.reverse .split-copy,
.split-reverse .split-content,
.split-reverse .split-copy{
  order:1;
}
.split-content,
.split-copy{
  max-width:660px;
}
.split-media img{
  width:100%;
  border-radius:10px;
  border:1px solid rgba(17,17,17,.08);
  box-shadow:none;
  object-fit:cover;
  background:#fff;
}

.features-grid,
.feature-grid,
.cards-grid,
.comparison-grid,
.mini-grid,
.link-grid,
.city-grid,
.steps-grid{
  display:grid;
  gap:24px;
}

.features-grid,
.feature-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.cards-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.comparison-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.mini-grid,
.link-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.city-grid{
  grid-template-columns:repeat(auto-fit, minmax(160px, 1fr));
}
.steps-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}
.three{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.two-cols{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.feature-card,
.info-card,
.comparison-card,
.mini-card,
.link-card{
  background:#fff;
  border:0;
  border-top:1px solid var(--line);
  border-radius:0;
  padding:26px 0 0;
  box-shadow:none;
}
.feature-card h3,
.info-card h3,
.comparison-card h3,
.mini-card h3{
  margin:0 0 10px;
  font-family:"Outfit", system-ui, sans-serif;
  font-size:24px;
  line-height:1.12;
}
.feature-card h3::before,
.info-card h3::before,
.comparison-card h3::before,
.mini-card h3::before,
.link-card strong::before,
.steps-grid .step-card h3::before{
  content:"";
  display:block;
  width:22px;
  height:22px;
  margin-bottom:12px;
  background:var(--accent);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m19 5-14 14'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 2v20'/%3E%3Cpath d='M2 12h20'/%3E%3Cpath d='m19 5-14 14'/%3E%3C/svg%3E") center / contain no-repeat;
}
.feature-card p,
.info-card p,
.comparison-card p,
.mini-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}
.feature-card a,
.info-card a,
.mini-card a{
  display:inline-flex;
  margin-top:16px;
  color:var(--accent);
  font-weight:700;
}
.feature-card a:hover,
.info-card a:hover,
.mini-card a:hover{
  color:#ef452c;
}

.feature-icon{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  margin-bottom:16px;
  color:var(--accent);
  font-weight:700;
  background:transparent;
  border:none;
  width:auto;
  height:auto;
  border-radius:0;
  padding:0;
}
.feature-icon .icon{
  width:22px;
  height:22px;
}

.comparison-card{
  padding:30px 0 0;
}
.comparison-card-featured{
  border-color:rgba(255,90,61,.34);
  box-shadow:none;
}

.feature-list{
  display:grid;
  gap:14px;
  margin-top:24px;
}
.feature-item{
  display:grid;
  gap:6px;
  padding:18px 0;
  background:#fff;
  border:0;
  border-top:1px solid var(--line);
  border-radius:0;
}
.feature-item strong{
  font-size:16px;
}
.feature-item span{
  color:var(--muted);
  line-height:1.55;
}

.steps-grid .step-card{
  background:#fff;
  border:0;
  border-top:1px solid var(--line);
  border-radius:0;
  padding:26px 0 0;
  box-shadow:var(--shadow-sm);
}
.steps-grid .step-card > span{
  display:inline-flex;
  align-items:center;
  justify-content:flex-start;
  color:var(--accent);
  font-weight:700;
  margin-bottom:16px;
  background:transparent;
  border:none;
  width:auto;
  height:auto;
  border-radius:0;
  padding:0;
}
.steps-grid .step-card h3{
  margin:0 0 10px;
  font-family:"Outfit", system-ui, sans-serif;
  font-size:24px;
}
.steps-grid .step-card p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.value-section{
  padding-top:24px;
}
.value-grid{
  align-items:start;
}
.value-visual{
  display:grid;
  gap:20px;
}
.value-visual img{
  object-fit:contain;
}
.value-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.value-tags span{
  display:inline-flex;
  align-items:center;
  padding:9px 14px;
  border-radius:999px;
  border:1px solid var(--line);
  color:#475467;
  font-size:14px;
  font-weight:600;
  background:#fff;
}

.premium-gallery{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:26px;
}
.premium-shot{
  margin:0;
}
.premium-shot img{
  width:100%;
  aspect-ratio:16 / 11;
  object-fit:contain;
  border-radius:10px;
  border:1px solid rgba(17,17,17,.08);
  background:#fff;
}
.premium-note{
  margin:28px 0 0;
  color:var(--muted);
  font-size:18px;
}

.reviews-clean{
  padding-top:24px;
}
.reviews-clean-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.review-clean-card{
  padding-top:20px;
}
.review-clean-stars{
  display:inline-flex;
  margin-bottom:12px;
  color:#fbbc04;
  font-size:15px;
  letter-spacing:.08em;
}
.review-clean-card p{
  margin:0;
  color:var(--muted);
  line-height:1.75;
}
.review-clean-card strong{
  display:block;
  margin-top:14px;
  color:var(--text);
  font-size:15px;
}
.review-clean-meta{
  display:grid;
  gap:4px;
}
.review-clean-meta strong{
  margin-top:0;
}
.review-clean-meta span{
  color:var(--muted);
  font-size:14px;
  line-height:1.5;
}

.reviews-page{
  padding-top:88px;
  padding-bottom:88px;
}
.reviews-page-kicker{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  margin:0 0 14px;
  color:#e0a800;
  font-size:16px;
  font-weight:700;
  letter-spacing:.02em;
}
.reviews-page-kicker-stars{
  color:#e0a800;
  letter-spacing:.08em;
  font-size:17px;
}
.reviews-page-grid{
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:30px 24px;
}
.review-clean-card-photo{
  gap:12px;
}
.review-clean-photo{
  width:100%;
  aspect-ratio:4 / 4.8;
  object-fit:contain;
  border-radius:18px;
  border:1px solid rgba(16,24,40,.08);
  background:#fff;
}
.reviews-page .section-actions{
  margin-top:42px;
}

.b2b-section{
  padding-top:24px;
}

.check-list{
  list-style:none;
  padding:0;
  margin:22px 0 0;
  display:grid;
  gap:10px;
}
.check-list li{
  position:relative;
  padding-left:24px;
  color:#414141;
  line-height:1.6;
}
.check-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color:var(--accent);
  font-size:22px;
  line-height:1;
}

.link-card{
  display:grid;
  gap:8px;
  color:inherit;
}
.link-card strong{
  display:block;
  font-size:18px;
  font-family:"Outfit", system-ui, sans-serif;
}
.link-card span{
  color:var(--muted);
  line-height:1.55;
}
.link-card:hover{
  border-color:rgba(255,90,61,.34);
  box-shadow:none;
  transform:translateY(-2px);
}

.mini-card{
  display:grid;
  gap:8px;
}

.city-grid a{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:56px;
  padding:14px 18px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:8px;
  color:#2b2b2b;
  font-weight:600;
  text-align:center;
  box-shadow:none;
}
.city-grid a:hover{
  border-color:rgba(255,90,61,.34);
  color:var(--accent);
}

.cta-section,
.section-cta,
.final-cta{
  padding-bottom:82px;
}
.cta-card,
.cta-box{
  background:#101828;
  color:#fff;
  border:1px solid #101828;
  border-radius:0;
  padding:42px;
  box-shadow:none;
}
.cta-card .h2,
.cta-box .h2{
  margin:0;
  max-width:700px;
}
.cta-card .p,
.cta-box .p{
  max-width:620px;
  color:rgba(255,255,255,.72);
}
.cta-card .hero-cta,
.cta-box .hero-cta{
  margin-top:22px;
}
.cta-card .btn-primary,
.cta-box .btn-primary,
.final-cta .btn-primary,
.section-cta .btn-primary{
  background:var(--brand);
  border-color:var(--brand);
}
.cta-card .btn-outline,
.cta-box .btn-outline,
.cta-card .btn-secondary,
.cta-box .btn-secondary{
  background:transparent;
  color:#fff;
  border-color:rgba(255,255,255,.42);
}

.feature-pills{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:22px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:10px 16px;
  border-radius:8px;
  border:1px solid var(--line);
  background:#fff;
  font-size:14px;
  color:#333;
}

.enterprise-hero-proof{
  margin:18px 0 0;
  color:#334155;
  font-size:15px;
  font-weight:700;
  letter-spacing:.01em;
}
.enterprise-top-quote{
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:22px 0;
}
.enterprise-top-quote-inner{
  display:grid;
  grid-template-columns:minmax(0, 1fr) auto;
  gap:28px;
  align-items:center;
}
.enterprise-top-quote h2{
  margin:6px 0 0;
  color:#101828;
  font-family:"Outfit", system-ui, sans-serif;
  font-size:32px;
  line-height:1.05;
  letter-spacing:-.03em;
}
.enterprise-top-quote p{
  margin:10px 0 0;
  max-width:720px;
  color:var(--muted);
  font-size:16px;
  line-height:1.6;
}
.enterprise-top-quote-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  white-space:nowrap;
}
.enterprise-benefit-band{
  background:#fff;
  border-bottom:1px solid var(--line);
  padding:26px 0;
}
.enterprise-benefit-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
}
.enterprise-benefit-grid article{
  display:grid;
  gap:8px;
  padding-top:18px;
  border-top:1px solid var(--line);
}
.enterprise-benefit-grid strong{
  color:#111827;
  font-family:"Outfit", system-ui, sans-serif;
  font-size:18px;
  line-height:1.2;
}
.enterprise-benefit-grid span{
  color:var(--muted);
  font-size:15px;
  line-height:1.55;
}
.enterprise-profile-pro{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1fr);
  gap:48px;
  align-items:center;
  padding:44px 0;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.enterprise-profile-pro .check-list{
  margin-top:22px;
}
.enterprise-profile-note{
  margin:16px 0 0;
  color:#344054;
  font-weight:700;
  line-height:1.6;
}
.enterprise-profile-gallery{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}
.enterprise-profile-gallery img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:contain;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
}
.enterprise-wide-visual{
  margin:0 0 34px;
}
.enterprise-wide-visual img{
  width:100%;
  max-height:420px;
  object-fit:cover;
  object-position:center;
  border-radius:18px;
  border:1px solid var(--line);
  display:block;
}
.enterprise-profile-actions,
.cta-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:14px;
  margin-top:24px;
}
.cta-actions{
  justify-content:flex-end;
}
.cta-note{
  margin:16px 0 0;
  color:rgba(255,255,255,.6);
  font-size:14px;
  line-height:1.5;
}

.enterprise-page .profile-pro-hero{
  padding-bottom:64px;
}
.enterprise-page .profile-pro-hero-media img,
.enterprise-clean-media img{
  width:100%;
  object-fit:contain;
  border:0;
  background:transparent;
  box-shadow:none;
}
.enterprise-hero-clean .profile-pro-proof{
  margin-top:34px;
}
.enterprise-quick{
  padding-top:72px;
}
.enterprise-custom{
  border-top:1px solid var(--line);
}
.enterprise-teams .profile-pro-split{
  align-items:center;
}
.enterprise-clean-media{
  margin:0;
}
.enterprise-profile-pro-clean{
  background:#fff;
}
.enterprise-profile-pro-showcase{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr;
  gap:18px;
  align-items:center;
  margin:36px 0 26px;
}
.enterprise-profile-pro-showcase img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:contain;
  border:1px solid var(--line);
  border-radius:32px;
  background:#fff;
}
.enterprise-pro-benefits{
  grid-template-columns:repeat(3, minmax(0, 1fr));
}
.enterprise-page .product-card{
  background:#fff;
}
.enterprise-page .product-media img{
  object-fit:contain;
}
.how-page .profile-pro-hero-media img{
  object-fit:contain;
  background:transparent;
  border:0;
}
.how-steps-grid article{
  display:flex;
  flex-direction:column;
}
.how-steps-grid img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:contain;
  border:1px solid var(--line);
  border-radius:32px;
  background:#fff;
  margin-bottom:22px;
}

.how-page .software-visual img{
  border-radius:32px;
}
.how-platform{
  border-top:1px solid var(--line);
}

.footer{
  display:block;
}

/* ---------------- 3 feature columns (icons) ---------------- */
.features3{
  padding:64px 0 26px;
}
.features3-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:28px;
  align-items:start;
}
.feature3{
  text-align:center;
  padding:10px 10px 0;
}
.feature3 .icon-big{
  width:44px;
  height:44px;
  margin:0 auto 12px;
  opacity:.9;
}
.feature3 .h3{
  font-size:40px;
  font-weight:600;
}
.feature3 .p{
  font-size:18px;
  margin-top:10px;
  max-width:320px;
  margin-left:auto;
  margin-right:auto;
}

/* ---------------- Products ---------------- */
.products-head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:18px;
  margin-bottom:22px;
}
.products-head .h3{ font-size:34px; }
.products-head .p{
  max-width:620px;
}
.products-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:28px;
}
.product-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  overflow:hidden;
  transition:border-color .16s ease, transform .16s ease;
}
.product-card:hover{
  border-color:#cbd5e1;
  transform:translateY(-2px);
}
.product-media{
  padding:18px 18px 0;
}
.product-media img{
  border-radius:8px;
  background:#fff;
}
.product-body{
  padding:18px;
}
.product-title{
  font-family:"Outfit";
  font-size:26px;
  margin:0;
  font-weight:600;
}
.product-sub{
  margin:8px 0 0;
  color:var(--muted);
  font-size:17px;
}
.product-body{
  display:flex;
  flex-direction:column;
  gap:0;
}
.product-benefits{
  list-style:none;
  padding:0;
  margin:10px 0 0;
  display:grid;
  gap:10px;
}
.product-benefits li{
  position:relative;
  padding-left:22px;
  color:#475467;
  font-size:15px;
  line-height:1.55;
}
.product-benefits li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--brand);
  font-weight:700;
}
.product-actions{
  display:grid;
  grid-template-columns:1fr;
  align-items:stretch;
  gap:10px;
  margin-top:18px;
}
.product-actions-dual{
  grid-template-columns:1.2fr .8fr;
  margin-top:20px;
}
.product-add-cart-btn{
  width:100%;
  margin-top:10px;
  justify-content:center;
  background:#101828;
  color:#fff;
  border:1px solid #101828;
  font-size:15px;
  font-weight:700;
}
.product-add-cart-btn:hover{
  background:#0b1220;
  border-color:#0b1220;
  opacity:1;
}
.product-add-cart-btn .icon{
  width:18px;
  height:18px;
  flex-shrink:0;
}
.product-media{
  position:relative;
}
.product-float-badge{
  position:absolute;
  top:16px;
  left:16px;
  z-index:2;
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:9px 14px;
  border-radius:999px;
  background:rgba(255,90,61,.86);
  color:#fff;
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.product-rating{
  margin:0;
  color:#fbbc04;
  font-size:18px;
  font-weight:700;
  letter-spacing:.01em;
}
.product-cart-wide-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:100%;
  margin-top:12px;
  border:1px solid var(--brand);
  background:var(--brand);
  color:#fff;
  font-size:15px;
  font-weight:700;
}
.product-cart-wide-btn:hover{
  background:#ef452c;
  opacity:1;
}
.product-cart-wide-btn .icon{
  width:18px;
  height:18px;
  flex-shrink:0;
}
.product-buy-btn{
  width:100%;
  border:none;
  background:var(--brand);
  color:#fff;
  font-size:16px;
  padding:14px 26px;
}
.product-buy-btn:hover{
  background:#f04e30;
  opacity:1;
}
.product-btn{
  align-self:stretch;
  width:100%;
  justify-content:center;
  text-align:center;
  font-size:15px;
  padding:11px 26px;
  border:1px solid #cbd5e1;
  background:#fff;
  color:#111;
  font-weight:700;
}
.product-btn::before,
.product-quote-btn::before{
  content:"";
  width:17px;
  height:17px;
  flex-shrink:0;
  background:currentColor;
  -webkit-mask-repeat:no-repeat;
  -webkit-mask-position:center;
  -webkit-mask-size:contain;
  mask-repeat:no-repeat;
  mask-position:center;
  mask-size:contain;
}
.product-btn::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E");
}
.product-quote-btn{
  width:100%;
  justify-content:center;
  text-align:center;
  padding:11px 18px;
  border:1px solid var(--brand);
  background:var(--brand);
  color:#fff;
  font-size:15px;
  font-weight:700;
}
.product-quote-btn::before{
  -webkit-mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3Cpath d='M8 9h8'/%3E%3Cpath d='M8 13h5'/%3E%3C/svg%3E");
  mask-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 15a4 4 0 0 1-4 4H8l-5 3V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4z'/%3E%3Cpath d='M8 9h8'/%3E%3Cpath d='M8 13h5'/%3E%3C/svg%3E");
}
.product-quote-btn:hover{
  background:#ef452c;
  color:#fff;
  opacity:1;
}
.inline-actions .product-quote-btn,
.section-actions .product-quote-btn{
  width:auto;
}
.product-actions .product-btn{
  margin-top:0;
}
.product-body > .product-btn{
  margin-top:18px;
}
.product-body > .product-quote-btn{
  margin-top:10px;
}
.product-actions-dual .product-cart-wide-btn,
.product-actions-dual .product-btn{
  margin-top:0;
}
.product-actions .product-btn:hover{
  background:#f8f8f8;
  opacity:1;
}
.product-card-img-link{
  display:block;
}
.product-card-img-link img{
  transition:transform .25s ease;
}
.product-card-img-link:hover img{
  transform:scale(1.03);
}
.product-price{
  margin-top:10px;
  font-weight:700;
  font-size:28px;
  color:#101828;
}

.product-examples{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:24px;
  align-items:start;
  margin-top:24px;
}

.custom-examples-head{
  max-width:760px;
  margin-top:52px;
}

.custom-examples-head .h3{
  margin:0;
}

.custom-examples-head .p{
  max-width:700px;
}

.product-examples img{
  width:100%;
  aspect-ratio:16 / 10;
  object-fit:contain;
}

.custom-examples-actions{
  display:flex;
  margin-top:24px;
}

/* ---------------- Software Platform ---------------- */
.software-platform{
  padding:84px 0 92px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fff;
}

.software-head,
.software-row{
  width:min(1240px, calc(100% - 72px));
  margin:0 auto;
}

.software-head{
  margin-bottom:52px;
}

.software-kicker{
  margin:0;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:#667085;
}

.software-head .h2{
  margin:14px 0 0;
  max-width:930px;
  font-size:46px;
  line-height:1.06;
}

.software-intro{
  margin:16px 0 0;
  max-width:860px;
  color:var(--muted);
  font-size:18px;
  line-height:1.65;
}

.software-onboarding,
.software-pillars{
  margin:24px 0 0;
  padding-left:20px;
  max-width:920px;
  color:#3d3d3d;
}

.software-onboarding li,
.software-pillars li{
  margin-top:8px;
  line-height:1.6;
}

.software-pillars{
  margin-top:14px;
}

.software-row{
  display:grid;
  grid-template-columns: 1.06fr .94fr;
  gap:54px;
  align-items:center;
  padding:58px 0;
  border-top:1px solid var(--line);
}

.software-row-alt{
  grid-template-columns: .94fr 1.06fr;
}

.software-row-alt .software-visual{
  order:2;
}

.software-row-alt .software-copy{
  order:1;
}

.software-visual{
  width:100%;
}

.software-visual img{
  width:100%;
  border-radius:10px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
}

.software-copy .h3{
  margin:0;
  font-size:34px;
  font-weight:600;
}

.software-copy .p{
  margin-top:14px;
  font-size:18px;
  color:var(--muted);
  max-width:620px;
}

.software-copy ul{
  margin:16px 0 0;
  padding-left:18px;
}

.software-copy li{
  margin-top:8px;
  color:#3f3f3f;
  line-height:1.6;
}

/* ---------------- Big Steps Title ---------------- */
.steps-title{
  padding:70px 0 20px;
}
.steps-title .h2{
  max-width:920px;
  margin:0 auto;
}
.steps-title .p{
  margin-top:14px;
  font-size:18px;
  color:var(--muted);
}

/* ---------------- 4 Steps (2x2) ---------------- */
.steps4{
  padding-top:26px;
}
.steps4-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:34px;
}
.step-card{
  padding:10px 0;
}
.step-pill{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 14px;
  border-radius:8px;
  background:#fff3ef;
  color:var(--accent);
  font-weight:700;
  font-size:14px;
}
.step-title{
  font-family:"Outfit";
  font-size:44px;
  margin:14px 0 0;
  line-height:1.05;
  font-weight:600;
}
.step-desc{
  margin:12px 0 0;
  color:var(--muted);
  font-size:18px;
  max-width:520px;
}
.step-media{
  margin-top:18px;
  padding:22px 22px 0;
}
.step-media img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  border-radius:8px;
  background:#fff;
  display:block;
}

/* ---------------- CTA Banner ---------------- */
.cta-banner{
  margin-top:58px;
  background:#fff;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.cta-inner{
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:28px;
  align-items:center;
  padding:54px 0;
}
.cta-left .h2{
  font-size:46px;
  max-width:700px;
}
.cta-left .p{
  max-width:660px;
}
.cta-left .btn{
  margin-top:20px;
}
.cta-right{
  display:flex;
  justify-content:center;
}
.cta-right img{
  border-radius:10px;
  max-width:520px;
  width:100%;
}

/* ---------------- 3 Simple steps ---------------- */
.steps3-title{
  padding:64px 0 12px;
}
.steps3-title .h2{
  max-width:980px;
  margin:0 auto;
  text-align:center;
}
.steps3-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:32px;
  margin-top:26px;
}
.step3{
  text-align:center;
  padding:14px 10px;
}
.step3 .step3-title{
  font-family:"Outfit";
  font-size:40px;
  margin:10px 0 0;
  font-weight:600;
}
.step3 .step3-desc{
  margin:10px auto 0;
  color:var(--muted);
  font-size:18px;
  max-width:360px;
}
.step3 .step3-media{
  margin-top:18px;
  display:flex;
  justify-content:center;
}
.step3 .step3-media img{
  width:100%;
  max-width:380px;
  border-radius:10px;
}

.reviews-section{
  background:linear-gradient(180deg, #fff 0%, #f8fafc 100%);
}
.reviews-head{
  margin:0 auto 34px;
}
.reviews-head .eyebrow{
  margin-bottom:12px;
}
.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:22px;
}
.review-card{
  padding:28px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(16,24,40,.08);
  border-radius:20px;
  box-shadow:0 18px 42px rgba(16,24,40,.06);
}
.review-stars{
  color:var(--brand);
  font-size:12px;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
}
.review-card p{
  margin:16px 0 0;
  color:#475467;
  font-size:17px;
  line-height:1.7;
}
.review-card strong{
  display:block;
  margin-top:18px;
  font-size:15px;
  color:#101828;
}
.reviews-summary{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-top:26px;
  padding:22px 26px;
  border-radius:18px;
  background:#101828;
  color:#fff;
}
.reviews-kicker{
  font-size:15px;
  font-weight:700;
}
.reviews-summary p{
  margin:0;
  max-width:520px;
  color:rgba(255,255,255,.76);
  line-height:1.65;
}

/* ---------------- FAQ + Newsletter ---------------- */
.faq-wrap{
  padding:68px 0;
}
.faq-title{
  font-family:"Outfit";
  font-size:44px;
  margin:0 0 22px;
  font-weight:600;
}
.faq-list{
  border-top:1px solid var(--line);
}
details.faq-item{
  border-bottom:1px solid var(--line);
  padding:18px 0;
}
details.faq-item summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  font-size:18px;
  font-weight:600;
}
details.faq-item summary::-webkit-details-marker{ display:none; }
.faq-answer{
  padding:12px 0 0;
  color:var(--muted);
  font-size:17px;
  max-width:860px;
}
.chev{
  width:18px; height:18px;
  opacity:.7;
  transition: transform .18s ease;
}
details[open] .chev{ transform: rotate(180deg); }

.newsletter{
  padding:44px 0 10px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:28px;
  align-items:center;
}
.news-left .h3{
  font-size:34px;
}
.news-left .p{
  margin-top:10px;
}
.news-form{
  display:flex;
  justify-content:flex-end;
}
.news-form .field{
  width:min(520px, 100%);
  display:flex;
  align-items:center;
  border:1px solid var(--line);
  border-radius:8px;
  padding:10px 12px 10px 16px;
  background:#fff;
}
.news-form input{
  border:none;
  outline:none;
  font-size:16px;
  width:100%;
  font-family:"DM Sans";
}
.news-form button{
  width:44px;
  height:44px;
  border:none;
  border-radius:8px;
  background:#fff;
  border:1px solid var(--line);
  cursor:pointer;
}
.news-form button:hover{
  border-color:#dcdcdc;
  transform: translateY(-1px);
}
.arrow{
  width:18px; height:18px;
  opacity:.85;
}

/* ---------------- Footer principal ---------------- */
.footer-main{
  background:#101828;
  color:rgba(255,255,255,.75);
  padding:64px 0 0;
}
.footer-grid{
  display:grid;
  grid-template-columns:2fr 1fr 1fr 1.4fr;
  gap:48px;
  padding-bottom:48px;
  border-bottom:1px solid rgba(255,255,255,.1);
}
.footer-brand{ display:flex; flex-direction:column; gap:0; }
.footer-logo{
  height:38px;
  max-width:160px;
  width:auto;
  object-fit:contain;
  margin-bottom:14px;
  display:block;
}
.footer-tagline{
  font-size:14px;
  line-height:1.65;
  color:rgba(255,255,255,.45);
  margin:0 0 22px;
}
.footer-col-title{
  font-family:"Outfit",sans-serif;
  font-size:11px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.1em;
  color:rgba(255,255,255,.35);
  margin:0 0 14px;
}
.footer-col ul{
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction:column;
  gap:10px;
}
.footer-col ul li,
.footer-col ul a{
  font-size:14px;
  color:rgba(255,255,255,.65);
  text-decoration:none;
  transition:color .15s;
}
.footer-col ul a:hover{ color:#fff; }
.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  padding:22px 0;
  font-size:13px;
  color:rgba(255,255,255,.3);
  flex-wrap:wrap;
}
.footer-bottom a{
  color:rgba(255,255,255,.3);
  text-decoration:none;
}
.footer-bottom a:hover{ color:rgba(255,255,255,.65); }
/* Social icons inside footer */
.footer-main .social{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-main .social a{
  width:36px;
  height:36px;
  border-radius:8px;
  border:1px solid rgba(255,255,255,.15);
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.06);
  color:#fff;
}
.footer-main .social a:hover{
  background:rgba(255,255,255,.14);
  transform:translateY(-1px);
}
.footer-main .social svg{ width:16px; height:16px; opacity:.8; }
@media(max-width:960px){
  .footer-grid{
    grid-template-columns:1fr 1fr;
    gap:32px;
  }
  .footer-brand{ grid-column:span 2; }
}
@media(max-width:560px){
  .footer-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .footer-brand{ grid-column:span 1; }
  .product-actions{
    grid-template-columns:1fr;
  }
  .product-examples{
    grid-template-columns:1fr;
    gap:18px;
  }
  .product-purchase-actions{
    flex-direction:column;
  }
  .product-cart-btn{
    width:100%;
    border-radius:8px;
  }
  .shop-qty-control{
    width:100%;
    grid-template-columns:48px minmax(0, 1fr) 48px;
  }
  .cart-line{
    grid-template-columns:64px minmax(0, 1fr);
  }
  .cart-line-total{
    grid-column:2;
  }
  .cart-drawer{
    width:100vw;
  }
}

/* ---------------- Responsive ---------------- */
@media (max-width: 980px){
  .h1{ font-size:44px; }
  .h2{ font-size:38px; }
  .feature3 .h3{ font-size:34px; }
  .step-title{ font-size:38px; }

  .hero-wrap::before,
  .hero-wrap::after{
    width:42vw;
    opacity:.55;
  }
  .hero-showcase{
    transform:translateY(-52px);
  }

  /* Reduce section vertical padding on tablet */
  .section{ padding:56px 0; }
  .features3{ padding:44px 0 16px; }
  .steps-title{ padding:44px 0 16px; }
  .steps4{ padding-top:20px; }
  .faq-wrap{ padding:52px 0; }
  .eq-split{ padding:56px 0; }
  .nos-origin{ padding:56px 0; }
  .stats-band{ padding:52px 0; }
  .nos-cta-final{ padding:72px 0; }
  .dif-section{ padding:56px 0; }
  .product-apps-section{ padding:52px 0 60px; }

  .features3-grid{ grid-template-columns: 1fr; }
  .products-grid{ grid-template-columns: 1fr; }
  .enterprise-top-quote-inner{ grid-template-columns:1fr; }
  .enterprise-top-quote-actions{ justify-content:flex-start; flex-wrap:wrap; white-space:normal; }
  .enterprise-benefit-grid{ grid-template-columns:repeat(2, minmax(0, 1fr)); }
  .enterprise-profile-pro{ grid-template-columns:1fr; gap:26px; padding:34px 0; }
  .enterprise-profile-pro-showcase,
  .enterprise-pro-benefits{ grid-template-columns:1fr; }
  .cta-actions{ justify-content:flex-start; }
  .steps4-grid{ grid-template-columns: 1fr; }
  .software-platform{ padding:64px 0 70px; }
  .software-head,
  .software-row{ width:min(1240px, calc(100% - 48px)); }
  .software-head .h2{ font-size:38px; }
  .software-row,
  .software-row-alt{ grid-template-columns:1fr; gap:24px; }
  .software-row-alt .software-visual,
  .software-row-alt .software-copy{ order:initial; }
  .software-copy .h3{ font-size:30px; }
  .cta-inner{ grid-template-columns: 1fr; text-align:center; padding:40px 0; }
  .cta-left .btn{ margin-left:auto; margin-right:auto; }
  .cta-left .h2{ max-width:100%; }
  .cta-left .p{ max-width:100%; }
  .cta-right img{ max-width:420px; border-radius:10px; }
  .steps3-grid{ grid-template-columns: repeat(2,1fr); }
  .newsletter{ grid-template-columns: 1fr; }
  .news-form{ justify-content:flex-start; }

  .nav-links{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:rgba(255,255,255,.96);
    flex-direction:column;
    padding:16px 0 20px;
    box-shadow:0 18px 36px rgba(16,24,40,.12);
    z-index:200;
  }
  .nav-links.nav-open{
    display:flex;
  }
  .nav-links a{
    padding:12px 24px;
    font-size:16px;
    border-bottom:1px solid var(--line);
  }
  .nav-links a:last-child{
    border-bottom:none;
  }
  .nav-text-link{
    display:none;
  }
  .nav-cta{
    display:none;
  }
  .mobile-toggle{
    display:grid;
  }
}

@media (max-width: 640px){
  .steps3-grid{ grid-template-columns:1fr; }
}

@media (max-width: 560px){
  .container{ width:min(var(--container), calc(100% - 28px)); }
  .hero-content{ padding:54px 0; }
  .hero-wrap{ min-height:460px; }
  .hero-wrap::before,
  .hero-wrap::after{
    width:48vw;
    opacity:.34;
  }
  .hero-content-home{ gap:18px; }
  .hero-side-media{ width:min(100%, 220px); margin:0 auto; justify-self:center; }
  .hero-showcase{ width:min(100%, 520px); margin:0 auto; justify-self:center; transform:translateY(-28px); }
  .hero-badge{ font-size:11px; }
  .h1{ font-size:42px; }
  .h2{ font-size:30px; }
  .h3{ font-size:24px; }
  .step-title{ font-size:30px; }
  .feature3 .h3{ font-size:28px; }
  .p{ font-size:16px; }
  .hero-content .p{ font-size:17px; }
  .hero-cta{
    flex-direction:column;
    align-items:stretch;
  }
  .hero-cta-primary{
    width:100%;
    align-items:stretch;
  }
  .hero-team-link,
  .hero-handwritten{
    text-align:center;
  }
  .hero-handwritten{
    margin-top:18px;
    font-size:28px;
  }
  .hero-cta-primary{
    margin-bottom:28px;
  }
  .hero-seo-title{ font-size:14px; }
  .hero-microcopy{ gap:10px 14px; font-size:13px; }
  .hero-proof{ margin-top:22px; }
  .hero-proof-meta span{ font-size:12px; }
  .enterprise-benefit-grid{ grid-template-columns:1fr; gap:18px; }
  .enterprise-hero-proof{ font-size:14px; }
  .enterprise-top-quote h2{ font-size:26px; }
  .enterprise-top-quote-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .enterprise-profile-gallery{ grid-template-columns:1fr; }
  .enterprise-wide-visual img{ max-height:300px; }
  .enterprise-profile-pro-showcase{ gap:12px; margin:24px 0 18px; }
  .enterprise-profile-actions,
  .cta-actions{
    flex-direction:column;
    align-items:stretch;
  }
  .reviews-grid{ grid-template-columns:1fr; }
  .reviews-summary{ flex-direction:column; align-items:flex-start; }
  .whatsapp-float{
    right:16px;
    bottom:16px;
    width:50px;
    height:50px;
  }
  .whatsapp-tooltip{
    display:none;
  }

  .software-platform{ padding:52px 0 56px; }
  .software-head,
  .software-row{ width:min(1240px, calc(100% - 30px)); }
  .software-head{ margin-bottom:36px; }
  .software-head .h2{ font-size:30px; }
  .software-intro{ font-size:16px; }
  .software-onboarding,
  .software-pillars{ padding-left:18px; font-size:15px; }
  .software-row{ padding:40px 0; gap:16px; }
  .software-copy .h3{ font-size:24px; }
  .software-copy .p{ font-size:16px; }
  .software-copy ul{ margin-top:12px; }
  .software-copy li{ font-size:15px; }
  .hero-card,
  .cta-card,
  .cta-box,
  .feature-card,
  .info-card,
  .comparison-card,
  .mini-card,
  .link-card,
  .steps-grid .step-card{
    padding:22px;
  }
  .features-grid,
  .feature-grid,
  .cards-grid,
  .comparison-grid,
  .mini-grid,
  .link-grid,
  .steps-grid,
  .city-grid,
  .stats-grid{
    grid-template-columns:1fr;
  }
  .two-cols{
    grid-template-columns:1fr;
  }
  .inline-actions,
  .section-actions{
    flex-direction:column;
    align-items:stretch;
  }

  /* Padding reductions on small phones */
  .section{ padding:40px 0; }
  .features3{ padding:32px 0 12px; }
  .steps-title{ padding:32px 0 12px; }
  .faq-wrap{ padding:40px 0; }
  .eq-split{ padding:40px 0; }
  .nos-origin{ padding:40px 0; }
  .stats-band{ padding:40px 0; }
  .nos-cta-final{ padding:52px 0; }
  .dif-section{ padding:40px 0; }
  .product-apps-section{ padding:40px 0 48px; }
  .eq-strip{ padding:36px 0; }
  .eq-cta-section{ padding:56px 0; }
  .contact-info-section{ padding:40px 0 52px; }
  .contacto-hero{ padding:52px 0 40px; }
  .contacto-form-section{ padding:0 0 52px; }

  /* Button sizes */
  .btn-primary{ padding:13px 20px; font-size:15px; }
  .btn-white{ padding:13px 22px; font-size:15px; }

  /* Product detail */
  .product-detail-title{ font-size:26px; }
  .product-detail-price{ font-size:24px; }
  .product-tagline{ font-size:15px; }

  /* Nosotros */
  .nos-cta-final .h2{ font-size:26px; }
  .dif-header .h2{ font-size:26px; }
  .stat-number{ font-size:46px; }
  .mv-card{ min-height:260px; }
  .mv-card-content{ padding:22px 20px; }
  .mv-card-title{ font-size:22px; }

  /* CTA banner */
  .cta-banner{ margin-top:36px; }
  .cta-inner{ padding:32px 0; gap:20px; }
  .cta-left .h2{ font-size:28px; }
  .cta-right img{ max-width:300px; border-radius:8px; }

  /* Eq */
  .eq-strip p{ font-size:16px; }
  .eq-check-title{ font-size:22px; }
  .eq-split-content .h2{ font-size:28px; }
}

@media (max-width: 980px){
  .hero-content-home{
    grid-template-columns:1fr;
    text-align:center;
    justify-items:center;
  }
  .hero-content .h1,
  .hero-content .p{
    margin-left:auto;
    margin-right:auto;
  }
  .hero-cta{ justify-content:center; }
  .hero-cta-primary{
    align-items:center;
  }
  .hero-microcopy,
  .hero-proof-meta{
    justify-content:center;
  }
  .reviews-grid{
    grid-template-columns:1fr;
  }
  .reviews-summary{
    flex-direction:column;
    align-items:flex-start;
  }
  .hero-side-media{ justify-self:center; width:min(100%, 280px); }
  .hero-showcase{ justify-self:center; width:min(100%, 620px); }
  .split-grid,
  .split{
    grid-template-columns:1fr;
    gap:24px;
  }
  .split-grid.reverse .split-media,
  .split.reverse .split-media,
  .split-reverse .split-media,
  .split-grid.reverse .split-content,
  .split-grid.reverse .split-copy,
  .split.reverse .split-content,
  .split.reverse .split-copy,
  .split-reverse .split-content,
  .split-reverse .split-copy{
    order:initial;
  }
  .features-grid,
  .feature-grid,
  .cards-grid,
  .comparison-grid,
  .mini-grid,
  .link-grid,
  .steps-grid{
    grid-template-columns:1fr 1fr;
  }
  .city-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }
}

/* ---------------- Tarjetas / Producto ---------------- */
.products-page{
  min-height:70vh;
}

.products-page-head{
  margin-bottom:26px;
}
.products-page-head .p{
  max-width:620px;
}

.product-card-link a{
  display:block;
}

.product-card-link .product-title{
  font-size:30px;
}

.product-card-link:hover{
  transform:translateY(-2px);
  transition:transform .14s ease;
}

.product-detail-page{
  padding-top:44px;
}

.product-layout{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:36px;
  align-items:start;
}

.product-gallery,
.product-info{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:18px;
}

.carousel-stage{
  position:relative;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:#fff;
}

.carousel-stage img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  background:var(--bg-soft);
}

.carousel-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:none;
  border-radius:8px;
  background:rgba(0,0,0,.6);
  color:#fff;
  font-size:28px;
  line-height:1;
  display:grid;
  place-items:center;
  cursor:pointer;
}

.carousel-nav.prev{ left:12px; }
.carousel-nav.next{ right:12px; }

.carousel-count{
  margin-top:10px;
  font-weight:700;
  color:var(--muted);
  text-align:center;
}

.carousel-thumbs{
  margin-top:12px;
  display:grid;
  grid-template-columns: repeat(5, 1fr);
  gap:10px;
}

.carousel-thumbs button{
  border:2px solid transparent;
  padding:0;
  border-radius:8px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
}

.carousel-thumbs button.active{
  border-color:var(--accent);
}

.carousel-thumbs img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  background:var(--bg-soft);
}

.product-detail-title{
  font-family:"Outfit";
  margin:0;
  font-size:44px;
  line-height:1.06;
}

.product-tagline{
  margin:14px 0 0;
  font-size:16px;
  line-height:1.65;
  color:var(--muted);
  max-width:480px;
}

.product-detail-price{
  margin:12px 0 0;
  font-size:34px;
  font-weight:700;
}

.quote-btn{
  width:100%;
  margin-top:18px;
}
.product-purchase{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.shop-qty-label{
  font-size:14px;
  font-weight:700;
  color:var(--muted);
}
.shop-qty-control{
  display:inline-grid;
  grid-template-columns:48px minmax(74px, 110px) 48px;
  width:max-content;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:#fff;
}
.shop-qty-btn,
.shop-qty-input{
  border:none;
  background:#fff;
  height:54px;
  font-size:24px;
}
.shop-qty-btn{
  cursor:pointer;
}
.shop-qty-input{
  width:100%;
  text-align:center;
  font-size:22px;
  border-left:1px solid var(--line);
  border-right:1px solid var(--line);
  appearance:textfield;
  -moz-appearance:textfield;
}
.shop-qty-input::-webkit-outer-spin-button,
.shop-qty-input::-webkit-inner-spin-button{
  -webkit-appearance:none;
  margin:0;
}
.product-purchase-actions{
  display:flex;
  align-items:stretch;
  gap:12px;
}
.product-add-detail-btn{
  margin-top:0;
}
.product-buy-btn-full{
  flex:1;
}
.product-cart-btn{
  width:54px;
  height:54px;
  border-color:#111;
  background:#111;
  color:#fff;
  flex-shrink:0;
}
.product-cart-btn:hover{
  background:#222;
  border-color:#222;
}

/* ---------------- Cart Drawer ---------------- */
.cart-overlay{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.32);
  z-index:80;
}
.cart-drawer{
  position:fixed;
  top:0;
  right:0;
  width:min(420px, 100vw);
  height:100vh;
  background:#fff;
  border-left:1px solid var(--line);
  box-shadow:-12px 0 32px rgba(16,24,40,.14);
  z-index:81;
  transform:translateX(100%);
  transition:transform .2s ease;
  display:flex;
  flex-direction:column;
}
.cart-drawer.is-open{
  transform:translateX(0);
}
.cart-drawer-head,
.cart-drawer-foot{
  padding:20px;
}
.cart-drawer-foot{
  margin-top:auto;
  border-top:1px solid var(--line);
}
.cart-note{
  margin:0 0 14px;
  font-size:14px;
  line-height:1.45;
  font-weight:700;
  color:var(--muted);
}
.cart-drawer-kicker{
  margin:0 0 6px;
  font-size:12px;
  font-weight:700;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--muted);
}
.cart-drawer-title{
  margin:0;
  font-family:"Outfit";
  font-size:30px;
}
.cart-drawer-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px solid var(--line);
}
.cart-drawer-body{
  padding:18px 20px;
  overflow:auto;
}
.cart-empty{
  padding:24px 0;
}
.cart-empty-title{
  margin:0;
  font-family:"Outfit";
  font-size:24px;
}
.cart-empty-copy{
  margin:8px 0 0;
  color:var(--muted);
}
.cart-line{
  display:grid;
  grid-template-columns:72px minmax(0, 1fr) auto;
  gap:14px;
  align-items:start;
  padding:16px 0;
  border-bottom:1px solid var(--line);
}
.cart-line-media{
  width:72px;
  height:72px;
  border-radius:8px;
  overflow:hidden;
  background:var(--bg-soft);
}
.cart-line-media img{
  width:100%;
  height:100%;
  object-fit:contain;
}
.cart-line-copy h3{
  margin:0;
  font-size:18px;
  line-height:1.15;
}
.cart-line-copy p{
  margin:6px 0 0;
  color:var(--muted);
}
.cart-line-actions{
  margin-top:12px;
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.cart-line-qty{
  display:inline-grid;
  grid-template-columns:32px 42px 32px;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
}
.cart-line-qty button,
.cart-line-qty span{
  width:100%;
  height:32px;
  display:grid;
  place-items:center;
  border:none;
  background:#fff;
}
.cart-line-qty button{
  cursor:pointer;
}
.cart-line-remove{
  border:none;
  background:none;
  padding:0;
  color:var(--muted);
  cursor:pointer;
}
.cart-line-total{
  white-space:nowrap;
  font-size:16px;
}
.cart-subtotal-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:14px;
  font-size:18px;
}
.cart-checkout-btn[aria-disabled="true"]{
  opacity:.45;
  pointer-events:none;
}

.product-accordion{
  margin-top:24px;
  border-top:1px solid var(--line);
}

.product-accordion details{
  border-bottom:1px solid var(--line);
  padding:12px 0;
}

.product-accordion summary{
  list-style:none;
  cursor:pointer;
  font-size:18px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.product-accordion summary::-webkit-details-marker{ display:none; }

.acc-chev{
  width:18px;
  height:18px;
  flex-shrink:0;
  opacity:.65;
  transition:transform .18s ease;
}

.product-accordion details[open] .acc-chev{
  transform:rotate(180deg);
}

.product-copy{
  margin-top:10px;
  color:var(--muted);
}

.product-copy p{
  margin:0 0 12px;
}

.product-copy ul{
  margin:0 0 12px 18px;
  padding:0;
}

.product-copy li{
  margin-bottom:8px;
}

/* Product mini platform block */
.product-platform-mini{
  padding:40px 0 44px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  background:#fbfbfb;
}

.product-platform-mini .h3{
  margin:0;
  font-size:32px;
  text-align:center;
}

.product-platform-mini .p{
  margin:10px auto 0;
  max-width:760px;
  text-align:center;
  color:var(--muted);
}

/* Breadcrumb nav */
.breadcrumb{ margin-bottom:20px; }
.breadcrumb ol{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:4px;
  list-style:none;
  padding:0;
  margin:0;
  font-size:13px;
  color:var(--muted);
}
.breadcrumb li+li::before{ content:'›'; margin-right:4px; opacity:.5; }
.breadcrumb a{ color:var(--muted); text-decoration:none; }
.breadcrumb a:hover{ color:var(--brand); }
.breadcrumb li[aria-current="page"]{ color:var(--text); font-weight:500; }

/* Product apps / use-cases section */
.product-apps-section{
  padding:72px 0 80px;
  background:#fff;
  border-top:1px solid var(--line);
}
.apps-title{
  font-family:"Outfit";
  font-size:clamp(1.3rem,3vw,1.8rem);
  text-align:center;
  margin:0 0 10px;
}
.apps-subtitle{
  text-align:center;
  color:var(--muted);
  font-size:16px;
  margin:0 0 40px;
}
.apps-grid{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center;
}
.app-chip{
  display:flex;
  align-items:center;
  gap:9px;
  background:var(--bg-soft);
  border:1px solid var(--line);
  border-radius:8px;
  padding:10px 20px;
  font-size:14px;
  font-weight:500;
  color:var(--text);
  transition:background .18s,box-shadow .18s,transform .18s;
  cursor:default;
}
.app-chip:hover{
  background:#fff;
  box-shadow:none;
  transform:translateY(-2px);
}
.app-icon{ font-size:19px; line-height:1; }

@media (max-width: 1100px){
  .product-layout{
    grid-template-columns:1fr;
  }

  .product-detail-title{
    font-size:36px;
  }
}

@media (max-width: 700px){
  .carousel-thumbs{
    grid-template-columns: repeat(4, 1fr);
  }

  .product-detail-title{
    font-size:30px;
  }

  .product-detail-price{
    font-size:28px;
  }

  .product-platform-mini .h3{
    font-size:26px;
  }
}

/* ======================================
   SHARED PAGE HERO
   (reutilizado en equipos y nosotros)
====================================== */
.page-hero{
  padding:0;
}

.page-hero-wrap{
  position:relative;
  min-height:580px;
  overflow:hidden;
  background:#111;
  display:flex;
  align-items:center;
}

.page-hero-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.page-hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.58);
}

.page-hero-content{
  position:relative;
  z-index:2;
  width:100%;
  padding:110px 0;
  color:#fff;
  text-align:center;
}

.page-hero-content .h1{
  color:#fff;
  max-width:880px;
  margin:0 auto;
  font-size:56px;
  line-height:1.04;
}

.page-hero-content .p{
  color:rgba(255,255,255,.82);
  max-width:700px;
  margin:18px auto 0;
  font-size:20px;
  line-height:1.55;
}

.page-hero-cta{
  margin-top:32px;
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
}

.btn-white{
  background:#fff;
  color:#111;
  border-color:#fff;
  padding:14px 30px;
  font-size:17px;
  font-weight:600;
  border-radius:8px;
}

.btn-white:hover{
  background:#f0f0f0;
  transform:translateY(-1px);
}

/* ======================================
   EQUIPOS Y NEGOCIOS
====================================== */

/* ---- Split feature section ---- */
.eq-split{
  padding:80px 0;
  background:#fff;
}

.eq-split-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}

.eq-split-grid.reversed .eq-split-media{
  order:2;
}

.eq-split-grid.reversed .eq-split-content{
  order:1;
}

.eq-split-media img{
  width:100%;
  border-radius:10px;
  object-fit:cover;
}

.eq-split-content .h2{
  font-size:44px;
  line-height:1.06;
}

.eq-split-content > .p{
  max-width:520px;
  margin-top:14px;
}

.eq-checkmarks{
  margin-top:26px;
  display:flex;
  flex-direction:column;
  gap:22px;
}

.eq-check-title{
  font-family:"Outfit",system-ui,sans-serif;
  font-size:26px;
  font-weight:700;
  margin:0 0 4px;
  letter-spacing:-.02em;
}

.eq-check-title::before{
  content:"";
  display:inline-block;
  width:18px;
  height:18px;
  margin-right:8px;
  vertical-align:-2px;
  background:var(--accent);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m20 6-11 11-5-5'/%3E%3C/svg%3E") center / contain no-repeat;
}

.eq-check-desc{
  margin:0;
  color:var(--muted);
  font-size:17px;
  max-width:480px;
  line-height:1.55;
}
.eq-check{
  padding-bottom:2px;
}

.eq-split-content .btn{
  margin-top:26px;
}

/* ---- Form section ---- */
.eq-form-section{
  padding:80px 0;
  background:var(--bg-soft);
}

/* ---- Equipos CTA (replaces inline form) ---- */
.eq-cta-section{
  padding:90px 0;
  background:var(--bg-soft);
  border-top:1px solid var(--line);
}
.eq-cta-inner{
  text-align:center;
  max-width:640px;
  margin:0 auto;
}
.eq-cta-inner .h2{
  font-size:clamp(28px,4vw,40px);
  margin-bottom:16px;
}
.eq-cta-inner .p{
  font-size:18px;
  color:#666;
  margin-bottom:36px;
}
.eq-cta-btns{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:14px;
}

.eq-form-header{
  text-align:center;
  margin-bottom:40px;
}

.eq-form-header .h2{
  font-size:40px;
}

.eq-form-header .p{
  max-width:560px;
  margin:12px auto 0;
  font-size:18px;
}

.eq-form{
  max-width:700px;
  margin:0 auto;
  display:flex;
  flex-direction:column;
  gap:16px;
}

.eq-form-row{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}

.eq-form-group{
  display:flex;
  flex-direction:column;
  gap:6px;
}

.eq-form-group label{
  font-size:14px;
  font-weight:600;
  color:#444;
  letter-spacing:.01em;
}

.eq-form-group input,
.eq-form-group select,
.eq-form-group textarea{
  border:1px solid var(--line);
  border-radius:8px;
  padding:13px 16px;
  font-size:16px;
  font-family:"DM Sans",system-ui,sans-serif;
  outline:none;
  background:#fff;
  width:100%;
  color:var(--text);
  transition:border-color .15s;
}

.eq-form-group input::placeholder,
.eq-form-group textarea::placeholder{
  color:#bbb;
}

.eq-form-group input:focus,
.eq-form-group select:focus,
.eq-form-group textarea:focus{
  border-color:#aaa;
}

.eq-form-group textarea{
  resize:vertical;
  min-height:120px;
}

.eq-form-submit .btn{
  width:100%;
  justify-content:center;
  padding:16px;
  font-size:17px;
  font-weight:600;
}

/* ---- Strip text ---- */
.eq-strip{
  padding:58px 0;
  background:#fff;
  border-top:1px solid var(--line);
}

.eq-strip .container{
  text-align:center;
}

.eq-strip p{
  max-width:760px;
  margin:0 auto;
  font-size:18px;
  color:var(--muted);
  line-height:1.65;
}

/* ======================================
   WHATSAPP FLOAT BUTTON
====================================== */
.whatsapp-float{
  position:fixed;
  right:24px;
  bottom:24px;
  width:54px;
  height:54px;
  background:rgba(255,255,255,.94);
  border:1px solid rgba(16,24,40,.08);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 16px 36px rgba(16,24,40,.14);
  z-index:9999;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.whatsapp-float:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 42px rgba(16,24,40,.18);
}
.whatsapp-float svg{
  width:26px;
  height:26px;
  fill:#25D366;
  flex-shrink:0;
}
.whatsapp-tooltip{
  position:absolute;
  right:64px;
  top:50%;
  transform:translateY(-50%);
  padding:8px 12px;
  border-radius:999px;
  background:#101828;
  color:#fff;
  font-size:12px;
  font-weight:600;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition:opacity .18s ease, transform .18s ease;
}
.whatsapp-float:hover .whatsapp-tooltip{
  opacity:1;
  transform:translateY(-50%) translateX(-2px);
}

/* ======================================
   CONTACTO PAGE
====================================== */
.contacto-hero{
  text-align:center;
  padding:80px 0 64px;
  background:var(--bg);
}
.contacto-hero .h1{
  font-size:clamp(36px, 6vw, 60px);
  max-width:760px;
  margin:0 auto 18px;
}
.contacto-hero .p{
  max-width:540px;
  margin:0 auto;
  font-size:16px;
  color:var(--muted);
}

/* Contact form section */
.contacto-form-section{
  padding:0 0 80px;
  background:var(--bg);
}
.contacto-form-wrap{
  max-width:680px;
  margin:0 auto;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:48px 48px 40px;
}
.contacto-form-title{
  font-family:"Outfit",sans-serif;
  font-size:22px;
  font-weight:700;
  margin-bottom:6px;
}
.contacto-form-subtitle{
  font-size:15px;
  color:var(--muted);
  margin-bottom:28px;
}
.contacto-form .contacto-field,
#contacto-page-form .contacto-field{
  margin-bottom:16px;
}
.contacto-form .contacto-field label,
#contacto-page-form .contacto-field label{
  display:block;
  font-size:13px;
  font-weight:600;
  color:#444;
  margin-bottom:6px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
.contacto-form input,
.contacto-form select,
.contacto-form textarea,
#contacto-page-form input,
#contacto-page-form select,
#contacto-page-form textarea{
  width:100%;
  padding:14px 16px;
  border:1px solid var(--line);
  border-radius:8px;
  font-family:inherit;
  font-size:15px;
  color:var(--text);
  background:#fafafa;
  transition:border-color .15s;
  outline:none;
  box-sizing:border-box;
  appearance:auto;
}
.contacto-form input::placeholder,
.contacto-form textarea::placeholder,
#contacto-page-form input::placeholder,
#contacto-page-form textarea::placeholder{
  color:#aaa;
}
.contacto-form input:focus,
.contacto-form select:focus,
.contacto-form textarea:focus,
#contacto-page-form input:focus,
#contacto-page-form select:focus,
#contacto-page-form textarea:focus{
  border-color:var(--brand);
  background:#fff;
}
.contacto-form textarea,
#contacto-page-form textarea{
  resize:vertical;
  min-height:110px;
}
.contacto-submit{
  margin-top:24px;
}
.contacto-submit .btn{
  width:100%;
  padding:16px;
  font-size:16px;
  justify-content:center;
  border-radius:8px;
}
.contacto-row2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
  margin-bottom:0;
}
.contacto-disclaimer{
  font-size:12px;
  color:#aaa;
  text-align:center;
  margin-top:14px;
  line-height:1.5;
}

/* Phone row */
.contacto-tel-row{
  display:flex;
  gap:0;
  border:1px solid var(--line);
  border-radius:8px;
  overflow:hidden;
  background:#fafafa;
}
.contacto-tel-prefix{
  display:flex;
  align-items:center;
  gap:8px;
  padding:0 14px;
  border-right:1px solid var(--line);
  background:#fafafa;
  font-size:15px;
  white-space:nowrap;
  color:#555;
  user-select:none;
}
.contacto-tel-prefix svg{
  width:20px;
  height:14px;
}
.contacto-tel-row input{
  border:none;
  border-radius:0;
  flex:1;
  background:#fafafa;
}
.contacto-tel-row:focus-within{
  border-color:var(--brand);
  background:#fff;
}
.contacto-tel-row:focus-within input,
.contacto-tel-row:focus-within .contacto-tel-prefix{
  background:#fff;
}

/* Contact info cards */
.contact-info-section{
  padding:56px 0 72px;
  background:var(--bg-soft);
}
.contact-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
  margin-top:40px;
}
.contact-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:36px 24px;
  text-align:center;
}
.contact-card-icon{
  width:52px;
  height:52px;
  background:var(--accent);
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:0 auto 18px;
}
.contact-card-icon svg{
  width:24px;
  height:24px;
  fill:#fff;
}
.contact-card-title{
  font-family:"Outfit",sans-serif;
  font-size:22px;
  font-weight:700;
  margin-bottom:6px;
}
.contact-card-value{
  font-size:15px;
  color:var(--muted);
}
.contact-card-value a{
  color:var(--brand);
  font-weight:600;
}
.contact-card-value a:hover{
  text-decoration:underline;
}
@media (max-width:760px){
  .contact-cards{ grid-template-columns:repeat(2,1fr); }
  .contacto-form-wrap{ padding:32px 20px; }
  .contacto-row2{ grid-template-columns:1fr; }
}
@media (max-width:480px){
  .contact-cards{ grid-template-columns:1fr; }
}

/* ---- Origin / Story ---- */
.nos-origin{
  padding:80px 0;
  background:#fff;
}

.nos-origin-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:64px;
  align-items:center;
}
.nos-origin-left{
  display:flex;
  align-items:center;
  justify-content:center;
}

.nos-brandmark{
  display:block;
  width:100%;
  max-width:260px;
  height:auto;
  object-fit:contain;
}

.nos-origin-content .h2{
  font-size:38px;
  line-height:1.1;
}

.nos-origin-content .p{
  max-width:480px;
  font-size:18px;
  line-height:1.6;
}

.nos-origin-content .btn{
  margin-top:24px;
}

/* ---- Mission / Vision grid ---- */
.mv-section{
  padding:72px 0;
  background:var(--bg-soft);
}
.mv-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:24px;
}

.mv-card{
  min-height:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  padding:32px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
}

.mv-card-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.mv-card-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.62);
}

.mv-card-content{
  position:relative;
  z-index:2;
  padding:40px 44px;
  color:#fff;
}

.mv-card-title{
  font-family:"Outfit",system-ui,sans-serif;
  font-size:30px;
  font-weight:600;
  margin:0 0 12px;
  letter-spacing:-.02em;
}
.mv-card .p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.mv-card-desc{
  font-size:17px;
  color:rgba(255,255,255,.86);
  margin:0;
  max-width:420px;
  line-height:1.6;
}

/* ---- Diferenciadores ---- */
.dif-section{
  padding:80px 0;
  background:var(--bg-soft);
}

.dif-header{
  text-align:center;
}

.dif-header .h2{
  font-size:46px;
}

.dif-header > p{
  color:var(--muted);
  font-size:18px;
  max-width:640px;
  margin:14px auto 0;
  line-height:1.6;
}

.dif-header .btn{
  margin-top:24px;
}

.dif-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
  margin-top:52px;
  border-top:1px solid var(--line);
  padding-top:52px;
}

.dif-item{
  text-align:center;
}

.dif-icon{
  font-size:40px;
  line-height:1;
  margin-bottom:16px;
}

.dif-item-title{
  font-family:"Outfit",system-ui,sans-serif;
  font-size:24px;
  font-weight:700;
  margin:0 0 8px;
  letter-spacing:-.02em;
}

.dif-item-desc{
  color:var(--muted);
  font-size:17px;
  margin:0;
  max-width:280px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.55;
}

/* ---- Stats band ---- */
.stats-band{
  padding:72px 0;
  background:#f6f8fb;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.stats-band-header{
  text-align:center;
  margin-bottom:40px;
}

.stats-band-header h2{
  font-family:"Outfit",system-ui,sans-serif;
  font-size:32px;
  font-weight:700;
  margin:0;
  letter-spacing:-.02em;
}
.stats-grid{
  display:grid;
  grid-template-columns:minmax(0, 1.2fr) repeat(3, minmax(0, 1fr));
  gap:20px;
  align-items:stretch;
}
.stats-grid > :first-child{
  padding:8px 8px 8px 0;
}
.stats-grid > :first-child h2{
  margin:0;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:32px;
  line-height:1.08;
}
.stats-grid > :first-child p{
  margin:12px 0 0;
  color:var(--muted);
  line-height:1.6;
}
.stat-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:10px;
  padding:28px 24px;
  text-align:center;
}
.stat-card strong{
  display:block;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:28px;
  line-height:1.05;
}
.stat-card span{
  display:block;
  margin-top:10px;
  color:var(--muted);
  line-height:1.5;
}

.stats-items{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  max-width:680px;
  margin:0 auto;
  border:1px solid var(--line);
  border-radius:10px;
  background:#fff;
  overflow:hidden;
}

.stat-item{
  text-align:center;
  padding:36px 24px;
}

.stat-item:not(:last-child){
  border-right:1px solid var(--line);
}

.stat-number{
  font-family:"Outfit",system-ui,sans-serif;
  font-size:66px;
  font-weight:700;
  margin:0;
  line-height:1;
  color:var(--text);
  letter-spacing:-.03em;
}

.stat-label{
  margin:12px 0 0;
  font-size:16px;
  color:var(--muted);
  max-width:220px;
  margin-left:auto;
  margin-right:auto;
  line-height:1.45;
}

/* ---- Final CTA nosotros ---- */
.nos-cta-final{
  padding:96px 0;
  text-align:center;
  background:#fff;
}

.nos-cta-final .h2{
  max-width:740px;
  margin:0 auto;
  font-size:50px;
  line-height:1.06;
}

.nos-cta-final .btn{
  margin-top:32px;
}

/* ======================================
   RESPONSIVE — nuevas páginas
====================================== */
@media (max-width: 980px){
  .page-hero-content .h1{ font-size:44px; }
  .page-hero-content .p{ font-size:18px; }

  .eq-split-grid{
    grid-template-columns:1fr;
    gap:36px;
  }
  .eq-split-grid.reversed .eq-split-media{ order:unset; }
  .eq-split-grid.reversed .eq-split-content{ order:unset; }

  .eq-form-row{ grid-template-columns:1fr; }

  .nos-origin-grid{
    grid-template-columns:1fr;
    gap:36px;
    text-align:center;
  }
  .nos-origin-content .p{ margin-left:auto; margin-right:auto; }

  .mv-grid{ grid-template-columns:1fr; }

  .dif-grid{
    grid-template-columns:1fr;
    gap:26px;
  }

  .stats-items{ grid-template-columns:1fr; }
  .stat-item:not(:last-child){
    border-right:none;
    border-bottom:1px solid var(--line);
  }

  .nos-cta-final .h2{ font-size:38px; }
  .dif-header .h2{ font-size:38px; }
  .eq-split-content .h2{ font-size:38px; }
}

@media (max-width: 560px){
  .page-hero-wrap{ min-height:420px; }
  .page-hero-content{ padding:70px 0; }
  .page-hero-content .h1{ font-size:32px; }

  .eq-split-content .h2{ font-size:26px; }
  .eq-form-header .h2{ font-size:28px; }

  .nos-origin-content .h2{ font-size:26px; }

  .stat-number{ font-size:46px; }
  .nos-cta-final .h2{ font-size:26px; }
  .dif-header .h2{ font-size:26px; }
}

/* ──────────────── MODAL COTIZACIÓN ──────────────── */
.cot-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.55);
  z-index:10000;
  align-items:center;
  justify-content:center;
  padding:20px;
  box-sizing:border-box;
}
.cot-overlay.cot-open{ display:flex; }
.cot-box{
  background:#fff;
  border-radius:10px;
  padding:44px 40px 36px;
  width:100%;
  max-width:560px;
  max-height:90vh;
  overflow-y:auto;
  position:relative;
}
.cot-close{
  position:absolute;
  top:16px;
  right:18px;
  background:none;
  border:none;
  font-size:28px;
  cursor:pointer;
  color:var(--muted);
  line-height:1;
  padding:4px 8px;
}
.cot-close:hover{ color:var(--text); }
.cot-title{
  font-family:"Outfit",sans-serif;
  font-size:22px;
  font-weight:700;
  margin:0 0 6px;
}
.cot-subtitle{
  color:var(--muted);
  font-size:15px;
  margin:0 0 24px;
}
.cot-field{
  display:flex;
  flex-direction:column;
  gap:6px;
  margin-bottom:16px;
}
.cot-field label{
  font-size:13px;
  font-weight:600;
  color:var(--text);
}
.cot-field input,
.cot-field select,
.cot-field textarea{
  border:1px solid var(--line);
  border-radius:8px;
  padding:11px 14px;
  font-size:15px;
  font-family:inherit;
  color:var(--text);
  background:#fafafa;
  outline:none;
  transition:border-color .2s;
  width:100%;
  box-sizing:border-box;
}
.cot-field input:focus,
.cot-field select:focus,
.cot-field textarea:focus{
  border-color:var(--brand);
  background:#fff;
}
.cot-field textarea{ resize:vertical; min-height:80px; }
.cot-row2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.cot-submit{
  width:100%;
  margin-top:6px;
  padding:13px;
  font-size:16px;
}
.cot-msg{
  border-radius:8px;
  padding:12px 16px;
  font-size:14px;
  margin-bottom:14px;
}
.cot-success{ background:#edf9f0; color:#1a7a3a; border:1px solid #b2e4c4; }
.cot-error  { background:#fff2f0; color:#c0392b; border:1px solid #f5b7b1; }
.cot-disclaimer{
  font-size:12px;
  color:var(--muted);
  margin-top:12px;
  text-align:center;
}
.cot-disclaimer a{ color:var(--muted); text-decoration:underline; }
@media(max-width:560px){
  .cot-box{ padding:28px 18px 24px; max-height:95vh; }
  .cot-row2{ grid-template-columns:1fr 1fr; gap:8px; }
  .cot-title{ font-size:19px; }
}

/* ── Very small phones (< 400px) ── */
@media (max-width:400px){
  .h1{ font-size:28px; }
  .h2{ font-size:24px; }
  .hero-content{ padding:42px 0; }
  .hero-content .p{ font-size:15px; }
  .page-hero-content .h1{ font-size:26px; }
  .page-hero-content{ padding:60px 0; }
  .page-hero-wrap{ min-height:380px; }
  .product-detail-title{ font-size:22px; }
  .product-detail-price{ font-size:20px; }
  .cot-box{ padding:22px 14px 20px; }
  .btn-primary{ padding:11px 16px; font-size:14px; }
  .contacto-hero .h1{ font-size:26px; }
  .cta-right{ display:none; }
}

/* ══════════════════════════════════════════════════════════════════
   PERSONALIZA SECTION
══════════════════════════════════════════════════════════════════ */
.personaliza-section { padding: 72px 0 80px; }
.personaliza-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.personaliza-text .h2 {
  font-size: 42px;
  max-width: 520px;
  line-height: 1.1;
}
.personaliza-text .p {
  margin-top: 18px;
  font-size: 17px;
  color: var(--muted);
  line-height: 1.7;
  max-width: 500px;
}
.personaliza-media {
  display: flex;
  justify-content: flex-end;
  background: none;
}
.personaliza-media img {
  width: 100%;
  max-width: 600px;
  border-radius: 0;
  border: none;
  background: none;
  box-shadow: none;
  object-fit: contain;
}
@media (max-width: 860px) {
  .personaliza-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .personaliza-text .h2 { font-size: 32px; max-width: 100%; }
  .personaliza-media { justify-content: center; }
}
@media (max-width: 480px) {
  .personaliza-text .h2 { font-size: 26px; }
}

/* ══════════════════════════════════════════════════════════════════
   SEO CONTENT SECTIONS  —  TapLoop 2026
══════════════════════════════════════════════════════════════════ */

/* — Editorial prose — */
.seo-editorial { padding: 72px 0; }
.seo-editorial.soft { background: var(--card-bg); }
.seo-editorial .lead {
  font-size: 17px; color: var(--muted); line-height: 1.85;
  max-width: 820px; margin: 0 auto 0;
}
.seo-editorial .h2 { margin-bottom: 20px; }

/* — comparison table — */
.comparison-wrap { padding: 72px 0; background: var(--card-bg); }
.comparison-wrap .h2 { margin-bottom: 12px; }
.comparison-wrap .sub { color: var(--muted); margin-bottom: 36px; font-size: 16px; }
.comparison-table {
  width: 100%; border-collapse: collapse;
  font-size: 15px; margin: 0 auto;
}
.comparison-table th, .comparison-table td {
  padding: 14px 20px; border: 1px solid var(--line); text-align: left;
}
.comparison-table thead th {
  background: #fff; font-weight: 700; color: var(--text);
  font-size: 16px;
}
.comparison-table tbody tr:nth-child(even) td { background: #fbfbfb; }
.comparison-table .row-label { font-weight: 600; color: var(--text); }
.comparison-table .tick { color: #4ade80; font-size: 18px; font-weight: 700; }
.comparison-table .dash { color: var(--muted); }

/* — benefits grid — */
.benefits-section { padding: 72px 0; }
.benefits-section .h2 { margin-bottom: 16px; }
.benefits-section .sub { color: var(--muted); margin-bottom: 40px; font-size: 16px; }
.benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.benefit-card {
  background: var(--card-bg); border-radius: 0; padding: 24px 0 0;
  border: 0; border-top: 1px solid var(--line);
}
.benefit-icon { font-size: 34px; margin-bottom: 14px; }
.benefit-title { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.benefit-desc { font-size: 14px; color: var(--muted); line-height: 1.65; }
.benefit-card h3{
  margin:0 0 8px;
  font-family:"Outfit", system-ui, sans-serif;
  font-size:20px;
  line-height:1.18;
  color:var(--text);
}
.benefit-card h3::before{
  content:"";
  display:block;
  width:22px;
  height:22px;
  margin-bottom:12px;
  background:var(--accent);
  -webkit-mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
  mask:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M7 7h10v10'/%3E%3C/svg%3E") center / contain no-repeat;
}
.benefit-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

/* — cities section — */
.cities-section { padding: 64px 0; background: var(--card-bg); }
.cities-section .h2 { margin-bottom: 12px; }
.cities-section .sub { color: var(--muted); margin-bottom: 28px; font-size: 16px; max-width: 680px; }
.cities-grid { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 8px; }
.city-pill {
  display: inline-block; padding: 6px 16px;
  background: #fff; border-radius: 8px;
  font-size: 13px; color: var(--muted); border: 1px solid var(--line);
  white-space: nowrap;
}

/* — profession tags — */
.professions-section { padding: 64px 0; }
.professions-section .h2 { margin-bottom: 12px; }
.professions-section .sub { color: var(--muted); margin-bottom: 28px; font-size: 16px; max-width: 680px; }
.prof-tags { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.prof-tag {
  display: inline-block; padding: 7px 18px;
  background: #fff; border-radius: 8px;
  font-size: 13px; color: var(--muted); border: 1px solid var(--line);
}

/* — specs checklist — */
.specs-section { padding: 72px 0; background: var(--card-bg); }
.specs-section .h2 { margin-bottom: 12px; }
.specs-section .sub { color: var(--muted); margin-bottom: 36px; font-size: 16px; }
.specs-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px;
}
.spec-item {
  display: flex; gap: 14px; align-items: flex-start;
  padding: 18px 0; background: transparent;
  border-radius: 0; border: 0; border-top: 1px solid var(--line);
}
.spec-check { font-size: 20px; flex-shrink: 0; color: var(--accent); line-height: 1.3; }
.spec-text { font-size: 14px; color: var(--muted); line-height: 1.55; }
.spec-text strong { color: var(--text); }

/* — industries grid — */
.industries-section { padding: 72px 0; background: var(--card-bg); }
.industries-section .h2 { margin-bottom: 12px; }
.industries-section .sub { color: var(--muted); margin-bottom: 36px; font-size: 16px; }
.industries-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.industry-card {
  background: #fff; border-radius: 8px;
  padding: 22px 16px; text-align: center;
  border: 1px solid var(--line);
}
.industry-icon { font-size: 28px; margin-bottom: 10px; }
.industry-name { font-size: 14px; font-weight: 600; color: var(--text); line-height: 1.4; }

/* — process steps — */
.process-section { padding: 72px 0; }
.process-section .h2 { margin-bottom: 12px; }
.process-section .sub { color: var(--muted); margin-bottom: 36px; font-size: 16px; }
.process-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.process-step { text-align: center; padding: 20px 12px; }
.process-num {
  width: 46px; height: 46px; border-radius: 8px;
  background: #fff3ef; display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 17px; color: var(--accent);
  margin: 0 auto 16px; border: 1px solid #ffd8cc;
}
.process-title { font-size: 15px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.process-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* — trust row — */
.trust-row { padding: 56px 0; background: var(--card-bg); }
.trust-items { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.trust-item { text-align: center; }
.trust-num { font-size: 40px; font-weight: 800; color: var(--text); line-height: 1; }
.trust-lbl { font-size: 13px; color: var(--muted); margin-top: 6px; }

/* — responsive — */
@media (max-width:900px) {
  .benefits-grid { grid-template-columns: repeat(2,1fr); }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: repeat(2,1fr); }
  .specs-grid { grid-template-columns: 1fr; }
  .reviews-clean-grid { grid-template-columns: 1fr; }
  .reviews-page-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width:600px) {
  .benefits-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .trust-num { font-size: 30px; }
  .comparison-table { font-size: 13px; }
  .comparison-table th, .comparison-table td { padding: 10px 12px; }
  .premium-gallery { grid-template-columns: 1fr; }
  .premium-note { font-size: 16px; }
  .reviews-page { padding-top: 80px; }
  .reviews-page-grid { grid-template-columns: 1fr; }
}

/* Global white section backgrounds */
section,
.section,
.section-soft,
.software-platform,
.cta-banner,
.product-platform-mini,
.product-apps-section,
.eq-split,
.eq-form-section,
.eq-cta-section,
.eq-strip,
.contacto-hero,
.contacto-form-section,
.contact-info-section,
.nos-origin,
.mv-section,
.dif-section,
.stats-band,
.nos-cta-final,
.seo-editorial,
.seo-editorial.soft,
.comparison-wrap,
.benefits-section,
.cities-section,
.professions-section,
.specs-section,
.industries-section,
.process-section,
.trust-row,
.personaliza-section{
  background:#fff;
}

.hero-wrap,
.page-hero-wrap{
  background:#fff;
}

.hero-wrap::before{
  content:"";
  position:absolute;
  inset:0 auto 0 0;
  width:min(38vw, 560px);
  pointer-events:none;
  z-index:1;
  background:
    linear-gradient(90deg, rgba(255,90,61,.18) 0%, rgba(255,122,61,.10) 44%, rgba(255,255,255,0) 100%);
}

.hero-wrap::after{
  content:"";
  position:absolute;
  inset:0 0 0 auto;
  width:min(38vw, 560px);
  pointer-events:none;
  z-index:1;
  background:
    linear-gradient(270deg, rgba(255,90,61,.16) 0%, rgba(255,122,61,.09) 44%, rgba(255,255,255,0) 100%);
}

.hero-bg,
.page-hero-bg{
  opacity:.08;
}

.hero-overlay,
.page-hero-overlay{
  background:rgba(255,255,255,.9);
}

.hero-content,
.page-hero-content{
  color:var(--text);
}

.hero-content .h1,
.page-hero-content .h1{
  color:var(--text);
}

.hero-content .p,
.page-hero-content .p{
  color:var(--muted);
}

.hero-card{
  background:#fff;
  border:none;
  border-color:transparent;
  box-shadow:none;
}

.hero-card .p{
  color:var(--muted);
}

.hero-card .h3,
.hero-card h2,
.hero-card h3{
  color:var(--text);
}

.page-hero-photo .page-hero-bg{
  opacity:1;
}

.page-hero-photo .page-hero-overlay{
  background:rgba(0,0,0,.48);
}

.page-hero-photo .page-hero-content,
.page-hero-photo .page-hero-content .h1{
  color:#fff;
}

.page-hero-photo .page-hero-content .p{
  color:rgba(255,255,255,.82);
}

.hero .btn-ghost,
.page-hero .btn-ghost{
  background:#fff;
  color:var(--ink);
  border-color:#cbd5e1;
}

.hero .btn-white,
.page-hero .btn-white{
  background:var(--brand);
  color:#fff;
  border-color:var(--brand);
}

.cta-card,
.cta-box{
  background:#fff;
  color:var(--text);
  border:1px solid var(--line);
}

.cta-card .p,
.cta-box .p{
  color:var(--muted);
}

.cta-card .btn-outline,
.cta-box .btn-outline,
.cta-card .btn-secondary,
.cta-box .btn-secondary{
  background:#fff;
  color:var(--ink);
  border-color:#cbd5e1;
}

/* Borderless imagery */
.product-media,
.split-media,
.software-visual,
.step-media,
.step3-media,
.cta-right,
.eq-split-media,
.personaliza-media,
.product-card,
.product-gallery,
.carousel-stage,
.carousel-thumbs button,
.cart-line-media,
.mv-card{
  border:none;
  background:transparent;
  box-shadow:none;
}

.product-media img,
.split-media img,
.software-visual img,
.step-media img,
.step3-media img,
.cta-right img,
.eq-split-media img,
.personaliza-media img,
.product-gallery img,
.carousel-stage img,
.carousel-thumbs img,
.cart-line-media img,
.mv-card-bg,
img{
  border:none;
  box-shadow:none;
  background:transparent;
}

.carousel-stage{
  overflow:visible;
}

.product-media,
.product-media:hover,
.product-card,
.product-card:hover,
.product-card-img-link,
.product-card-img-link:hover,
.split-media,
.software-visual,
.step-media,
.step3-media,
.cta-right,
.eq-split-media,
.personaliza-media,
.product-gallery,
.carousel-stage,
.carousel-stage:hover,
.carousel-thumbs button,
.carousel-thumbs button:hover,
.carousel-thumbs button.active,
.cart-line-media,
.mv-card,
.hero-showcase,
.hero-examples,
.product-examples{
  border:none !important;
  border-color:transparent !important;
  outline:none !important;
  box-shadow:none !important;
}

.product-media img,
.product-card img,
.product-card-img-link img,
.split-media img,
.software-visual img,
.step-media img,
.step3-media img,
.cta-right img,
.eq-split-media img,
.personaliza-media img,
.product-gallery img,
.carousel-stage img,
.carousel-thumbs img,
.cart-line-media img,
.hero-showcase img,
.hero-examples img,
.product-examples img,
img{
  border:none !important;
  border-color:transparent !important;
  outline:none !important;
  box-shadow:none !important;
}

.btn-hero-quote:hover,
.product-cart-wide-btn:hover,
.product-quote-btn:hover,
.product-buy-btn:hover,
.nav-cta:hover,
.hero .btn-white:hover,
.page-hero .btn-white:hover,
.cta-card .btn-primary:hover,
.cta-box .btn-primary:hover,
.section-cta .btn-primary:hover,
.final-cta .btn-primary:hover,
a[href*="formulario-cotizacion"].btn-primary:hover,
a[href*="formulario-cotizacion"].btn-white:hover,
a[href*="formulario-cotizacion"].product-quote-btn:hover,
a[href*="formulario-cotizacion"].product-cart-wide-btn:hover{
  background:#ef452c !important;
  border-color:#ef452c !important;
  color:#fff !important;
  opacity:1;
}

/* ---------------- Product Shop Pages ---------------- */
.product-shop-page{
  padding-top:36px;
}

.product-shop-layout{
  grid-template-columns:minmax(0, 1.08fr) minmax(360px, .92fr);
  gap:40px;
  align-items:start;
}

.product-shop-layout .product-gallery,
.product-shop-layout .product-info{
  padding:0;
  background:transparent;
  border:none;
  border-radius:0;
}

.product-gallery-shop{
  grid-column:1;
  grid-row:1 / span 2;
}

.product-shop-layout .carousel-stage{
  border:none !important;
  border-radius:0;
  overflow:hidden;
  background:transparent !important;
}

.product-shop-layout .carousel-nav{
  width:44px;
  height:44px;
  border:1px solid rgba(229,231,235,.9);
  border-radius:999px;
  background:rgba(255,255,255,.92);
  color:#0f172a;
  font-size:24px;
  box-shadow:0 10px 24px rgba(16,24,40,.08);
}

.product-shop-layout .carousel-stage img{
  aspect-ratio:1/1;
  object-fit:contain;
  padding:0;
  background:transparent !important;
}

.product-shop-layout .carousel-thumbs{
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:10px;
}

.product-shop-layout .carousel-thumbs button{
  border:1px solid transparent !important;
  border-radius:14px;
  background:transparent !important;
  overflow:hidden;
}

.product-shop-layout .carousel-thumbs button.active{
  border-color:rgba(255,90,61,.4) !important;
}

.product-shop-layout .carousel-thumbs img{
  aspect-ratio:1/1;
  object-fit:cover;
  padding:0;
  background:transparent !important;
}

.product-gallery-caption{
  margin:14px 8px 0;
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
}

.product-gallery-related{
  margin-top:26px;
  max-width:260px;
}

.product-gallery-related h2{
  margin:0 0 12px;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:17px;
  line-height:1.1;
  color:var(--text);
}

.product-summary{
  grid-column:2;
  grid-row:1;
  padding-top:10px !important;
}

.product-kicker,
.product-buybox-kicker{
  margin:0 0 12px;
  font-size:12px;
  line-height:1;
  letter-spacing:.12em;
  text-transform:uppercase;
  font-weight:700;
  color:var(--brand);
}

.product-summary .product-detail-title{
  font-size:clamp(2rem, 3.2vw, 3.1rem);
  line-height:1.02;
  margin-bottom:14px;
}

.product-summary-rating{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px;
  margin-bottom:24px;
  font-size:16px;
  color:var(--muted);
}

.product-rating-stars{
  color:#e2a400;
  letter-spacing:.04em;
  font-size:20px;
  line-height:1;
}

.product-summary-rating strong{
  color:var(--text);
  font-size:18px;
}

.product-summary-rating span:last-child{
  color:var(--brand);
}

.product-summary .product-tagline{
  margin-top:0;
  max-width:none;
  font-size:17px;
  line-height:1.75;
}

.product-detail-chips{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin:18px 0 0;
}

.product-detail-chips span{
  padding:10px 14px;
  border:1px solid var(--line);
  border-radius:999px;
  background:#fff;
  font-size:14px;
  font-weight:600;
  color:#344054;
}

.product-highlight-list{
  margin:20px 0 0;
  padding:0;
  list-style:none;
  display:grid;
  gap:12px;
}

.product-highlight-list li{
  position:relative;
  padding-left:22px;
  font-size:16px;
  line-height:1.65;
  color:#344054;
}

.product-highlight-list li::before{
  content:"✓";
  position:absolute;
  left:0;
  top:0;
  color:var(--brand);
  font-weight:700;
}

.product-inline-proof{
  margin-top:22px;
  padding:0;
  border:none;
  border-radius:0;
  background:transparent;
}

.product-inline-proof strong,
.product-inline-proof span{
  display:block;
}

.product-inline-proof strong{
  margin-bottom:6px;
  font-size:16px;
}

.product-inline-proof span{
  color:var(--muted);
  line-height:1.65;
}

.product-buybox{
  grid-column:2;
  grid-row:2;
  position:static;
  margin-top:18px;
}

.product-purchase-inline{
  width:100%;
  max-width:520px;
  margin-top:0;
  gap:24px;
}

.product-purchase-inline .product-detail-price{
  margin:0;
  font-size:clamp(2rem, 4vw, 3.25rem);
  line-height:.96;
  letter-spacing:-.04em;
}

.product-price-block{
  display:grid;
  gap:6px;
}

.product-price-block span{
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}

.product-option-group{
  display:grid;
  gap:12px;
}

.product-option-label{
  margin:0;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:20px;
  line-height:1;
  font-weight:700;
  color:var(--text);
}

.product-option-heading{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
}

.product-option-heading span{
  font-size:13px;
  font-weight:700;
  color:var(--brand);
}

.product-payment-options{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.product-option-pill,
.product-plan-option,
.product-quantity-option{
  appearance:none;
  border:1px solid var(--line);
  background:#fff;
  color:var(--text);
  cursor:pointer;
  font-family:"DM Sans",system-ui,sans-serif;
  transition:border-color .16s ease, background .16s ease, color .16s ease;
}

.product-option-pill{
  min-height:54px;
  border-radius:16px;
  padding:12px 16px;
  font-size:15px;
  font-weight:700;
}

.product-option-pill.is-active,
.product-plan-option.is-active,
.product-quantity-option.is-active{
  border-color:#0f172a;
  box-shadow:inset 0 0 0 1px #0f172a;
  background:rgba(255,90,61,.07);
}

.product-plan-options{
  align-items:stretch;
}

.product-plan-option{
  position:relative;
  min-height:142px;
  border-radius:18px;
  padding:18px;
  text-align:left;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:9px;
}

.product-plan-option-pro{
  padding-top:42px;
}

.product-plan-option > span:not(.product-plan-badge){
  font-size:13px;
  font-weight:800;
  color:var(--brand);
  letter-spacing:.04em;
  text-transform:uppercase;
}

.product-plan-option strong{
  font-family:"Outfit",system-ui,sans-serif;
  font-size:24px;
  line-height:1;
}

.product-plan-price{
  display:block;
  color:var(--text) !important;
  font-size:16px !important;
  line-height:1.1;
  font-weight:800 !important;
  text-transform:none !important;
  letter-spacing:0 !important;
}

.product-plan-option em{
  font-style:normal;
  font-size:14px;
  line-height:1.45;
  color:var(--muted);
}

.product-plan-badge{
  position:absolute;
  top:10px;
  right:12px;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(255,90,61,.1);
  color:var(--brand);
  font-size:11px;
  line-height:1;
  font-weight:800;
}

.product-plan-link{
  margin-top:-2px;
  color:var(--brand);
  font-size:14px;
  font-weight:800;
  line-height:1.3;
  text-decoration:none;
  width:max-content;
}

.product-plan-link-row{
  display:flex;
  justify-content:flex-end;
  margin-top:-4px;
}

.product-plan-link:hover{
  color:#ef452c;
  text-decoration:underline;
  text-underline-offset:3px;
}

.product-contact-preference{
  gap:10px;
}

.product-contact-options{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.product-contact-label{
  margin-top:2px;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}

.product-contact-method{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

.product-method-icon{
  width:18px;
  height:18px;
  flex-shrink:0;
}

.product-contact-input{
  width:100%;
  min-height:52px;
  border:1px solid var(--line);
  border-radius:16px;
  padding:0 16px;
  background:#fff;
  color:var(--text);
  font:inherit;
  outline:none;
  transition:border-color .16s ease, box-shadow .16s ease;
}

.product-contact-input:focus{
  border-color:#0f172a;
  box-shadow:0 0 0 3px rgba(15,23,42,.08);
}

/* ---------------- Perfil Pro Page ---------------- */
.profile-pro-hero{
  padding-top:84px;
  background:linear-gradient(135deg, #fff 0%, #fff7f4 100%);
}

.profile-pro-hero-grid{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);
  gap:56px;
  align-items:center;
}

.profile-pro-hero .h1{
  max-width:760px;
  font-size:clamp(42px, 6vw, 72px);
  line-height:.98;
}

.profile-pro-hero .p{
  max-width:640px;
}

.profile-pro-page .eyebrow{
  padding-left:0;
  border-left:0;
}

.profile-pro-page .hero-cta{
  gap:16px;
}

.profile-pro-page .product-final-cta .hero-cta{
  justify-content:center;
  gap:16px;
}

.profile-pro-hero-list{
  margin:22px 0 0;
  padding-left:18px;
  color:#344054;
}

.profile-pro-hero-list li{
  margin-top:8px;
  line-height:1.55;
}

.profile-pro-benefit{
  margin:20px 0 0;
  max-width:620px;
  color:var(--text);
  font-weight:800;
  line-height:1.5;
}

.software-copy .profile-pro-benefit{
  font-size:16px;
}

.profile-pro-hero-media{
  margin:0;
}

.profile-pro-hero-media img{
  width:100%;
  border:0;
  border-radius:32px;
  background:transparent;
}

.profile-pro-proof{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  margin-top:42px;
  padding-top:22px;
  border-top:1px solid rgba(16,24,40,.08);
  color:var(--muted);
  font-size:15px;
  line-height:1.5;
}

.profile-pro-proof strong{
  color:var(--text);
  font-size:14px;
  white-space:nowrap;
}

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

.profile-pro-card{
  padding:22px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}

.profile-pro-card h3{
  margin:0 0 10px;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:22px;
}

.profile-pro-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.profile-pro-inline-cta{
  display:flex;
  justify-content:center;
  margin-top:30px;
}

.profile-pro-split{
  display:grid;
  grid-template-columns:minmax(0, .8fr) minmax(0, 1.2fr);
  gap:52px;
  align-items:start;
}

.profile-pro-split .h2{
  margin:10px 0 0;
}

.profile-pro-checklist{
  margin:22px 0 0;
  padding-left:18px;
  color:#344054;
}

.profile-pro-checklist li{
  margin-top:10px;
  line-height:1.6;
}

.profile-pro-problem{
  background:#fff;
  border-top:1px solid var(--line);
}

.profile-pro-compare{
  background:#fff7f4;
}

.profile-pro-compare-grid{
  display:grid;
  gap:12px;
  max-width:980px;
  margin:0 auto;
}

.profile-pro-compare-grid article{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.profile-pro-compare-item{
  display:flex;
  align-items:flex-start;
  gap:12px;
  min-height:76px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}

.profile-pro-compare-item span{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  flex:0 0 auto;
  border-radius:999px;
  font-weight:900;
  line-height:1;
}

.profile-pro-compare-item p{
  margin:2px 0 0;
  color:var(--text);
  line-height:1.45;
  font-weight:700;
}

.profile-pro-compare-item.is-muted p{
  color:var(--muted);
  font-weight:600;
}

.profile-pro-compare-item.is-muted span{
  color:#98a2b3;
  background:#f2f4f7;
}

.profile-pro-compare-item.is-pro{
  border-color:rgba(255,90,61,.22);
}

.profile-pro-compare-item.is-pro span{
  color:#fff;
  background:var(--brand);
}

.profile-pro-platform{
  border-bottom:none;
}

.profile-pro-page .software-visual img{
  border:0;
  border-radius:32px;
  background:transparent;
}

.software-copy .btn{
  margin-top:22px;
}

.profile-pro-steps-grid,
.profile-pro-use-grid,
.profile-pro-trust-grid{
  display:grid;
  gap:16px;
}

.profile-pro-steps-grid{
  grid-template-columns:repeat(4, minmax(0, 1fr));
}

.profile-pro-steps-grid article,
.profile-pro-use-grid article{
  padding:22px;
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}

.profile-pro-steps-grid span{
  display:block;
  margin-bottom:16px;
  color:var(--brand);
  font-size:13px;
  font-weight:800;
  letter-spacing:.1em;
}

.profile-pro-steps-grid h3,
.profile-pro-use-grid h3{
  margin:0 0 10px;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:22px;
  line-height:1.1;
}

.profile-pro-steps-grid p,
.profile-pro-use-grid p{
  margin:0;
  color:var(--muted);
  line-height:1.6;
}

.profile-pro-use-cases{
  background:#fff;
  border-top:1px solid var(--line);
}

.profile-pro-use-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.profile-pro-pricing{
  background:#fff7f4;
}

.profile-pro-pricing-inner{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:34px;
  align-items:start;
}

.profile-pro-prices{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:16px;
}

.profile-pro-prices article{
  padding:24px;
  border:1px solid rgba(255,90,61,.18);
  border-radius:22px;
  background:#fff;
}

.profile-pro-prices span{
  display:block;
  margin-bottom:8px;
  color:var(--brand);
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.profile-pro-prices strong{
  display:block;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:30px;
  line-height:1.08;
}

.profile-pro-prices p{
  margin:10px 0 0;
  color:var(--muted);
  line-height:1.6;
}

.profile-pro-prices-full{
  max-width:980px;
  margin:0 auto;
}

.profile-pro-prices ul{
  margin:20px 0 0;
  padding-left:18px;
  color:#344054;
}

.profile-pro-prices li{
  margin-top:9px;
  line-height:1.55;
}

.profile-pro-prices .btn{
  margin-top:24px;
  width:100%;
  justify-content:center;
}

.profile-pro-prices .btn + .btn{
  margin-top:10px;
}

.profile-pro-trust{
  background:#fff;
  border-top:1px solid var(--line);
}

.profile-pro-trust-grid{
  grid-template-columns:repeat(2, minmax(0, 1fr));
}

.profile-pro-trust-grid span{
  padding:16px 18px;
  border:1px solid var(--line);
  border-radius:16px;
  color:#344054;
  font-weight:700;
}

.product-payment-note{
  margin:0;
  font-size:14px;
  line-height:1.55;
  color:var(--muted);
}

.product-quantity-options{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:10px;
}

.product-quantity-option{
  position:relative;
  min-height:118px;
  border-radius:18px;
  padding:16px 14px;
  text-align:left;
  display:flex;
  flex-direction:column;
  gap:7px;
}

.product-quantity-option strong{
  font-family:"Outfit",system-ui,sans-serif;
  font-size:18px;
  line-height:1;
}

.product-quantity-option span{
  font-size:14px;
  color:var(--muted);
}

.product-quantity-option em{
  margin-top:auto;
  font-style:normal;
  font-size:14px;
  font-weight:700;
  color:var(--brand);
}

.product-discount-badge{
  position:absolute;
  top:10px;
  right:10px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:72px;
  padding:5px 8px;
  border-radius:999px;
  background:rgba(255,90,61,.1);
  color:var(--brand) !important;
  font-size:12px !important;
  line-height:1;
  font-weight:800;
}

.product-team-quantity{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
}

.product-team-quantity[hidden]{
  display:none;
}

.product-hidden-qty{
  position:absolute;
  width:1px;
  height:1px;
  opacity:0;
  pointer-events:none;
}

.product-add-cart-single{
  width:100%;
  justify-content:center;
  min-height:58px;
}

.product-afterbuy-note{
  margin:-4px 0 0;
  text-align:center;
  color:var(--muted);
  font-size:14px;
  line-height:1.45;
}

.product-customization-note{
  padding-top:2px;
}

.product-customization-note p:last-child{
  margin:0;
  color:var(--muted);
  line-height:1.6;
  font-size:15px;
}

.product-buybox-card{
  padding:22px;
  border:1px solid var(--line);
  border-radius:24px;
  background:#fff;
  box-shadow:0 18px 40px rgba(16,24,40,.08);
}

.product-buybox .product-detail-price{
  margin:0;
  font-size:40px;
  line-height:1;
}

.product-buybox-copy{
  margin:14px 0 0;
  color:#344054;
  line-height:1.65;
}

.product-buybox-note{
  margin:10px 0 0;
  font-size:14px;
  color:var(--muted);
}

.product-buybox .product-purchase{
  margin-top:18px;
}

.product-purchase-actions-stack{
  flex-direction:column;
}

.product-buybox-cart,
.product-buybox-buy{
  width:100%;
  justify-content:center;
}

.product-buybox-buy{
  border:1px solid #0f172a;
  background:#0f172a;
  color:#fff;
}

.product-buybox-buy:hover{
  background:#1e293b;
  border-color:#1e293b;
  color:#fff;
}

.product-buybox-link{
  display:block;
  margin-top:14px;
  text-align:center;
  font-weight:700;
  color:#0f172a;
  text-decoration:underline;
  text-underline-offset:4px;
}

.product-buybox-points{
  margin:18px 0 0;
  padding:18px 0 0;
  list-style:none;
  border-top:1px solid var(--line);
  display:grid;
  gap:10px;
}

.product-buybox-points li{
  position:relative;
  padding-left:22px;
  color:#344054;
  line-height:1.55;
}

.product-buybox-points li::before{
  content:"•";
  position:absolute;
  left:8px;
  top:0;
  color:var(--brand);
}

.product-buybox-accordion{
  margin-top:16px;
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  border-left:none;
  border-right:none;
  border-radius:0;
  background:transparent;
  overflow:visible;
}

.product-buybox-accordion details{
  padding:14px 0;
}

.product-buybox-accordion .product-detail-chips{
  margin-top:16px;
}

.product-buybox-accordion .product-highlight-list{
  margin-top:16px;
}

.product-detail-section{
  padding-top:28px;
}

.product-detail-split,
.product-story-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
  align-items:start;
}

.product-support-grid{
  margin-top:22px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.product-support-card,
.product-related-card{
  border:1px solid var(--line);
  border-radius:20px;
  background:#fff;
}

.product-support-card{
  padding:18px;
}

.product-support-card h3{
  margin:0 0 8px;
  font-family:"Outfit";
  font-size:22px;
}

.product-support-card p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.product-detail-visual,
.product-story-media{
  border:none;
  border-radius:0;
  overflow:visible;
  background:transparent;
}

.product-detail-visual img,
.product-story-media img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:contain;
  padding:0;
  background:transparent;
}

.product-story-copy .product-highlight-list{
  margin-top:18px;
}

.product-related-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:20px;
}

.product-related-card{
  display:grid;
  grid-template-columns:1fr;
  overflow:hidden;
  transition:border-color .18s ease, transform .18s ease;
}

.product-related-card:hover{
  transform:translateY(-2px);
  border-color:rgba(255,90,61,.26);
}

.product-related-card img{
  width:100%;
  aspect-ratio:4/3;
  object-fit:contain;
  background:#fff;
}

.product-related-copy{
  padding:22px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}

.product-related-copy h3{
  margin:0;
  font-family:"Outfit";
  font-size:28px;
  line-height:1.02;
}

.product-related-price{
  display:block;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:22px;
  line-height:1.1;
  color:var(--text);
}

.product-related-copy p{
  margin:0;
  color:var(--muted);
  line-height:1.65;
}

.product-related-copy .btn{
  margin-top:6px;
  width:max-content;
}

.product-related-market{
  grid-template-columns:minmax(0, 360px);
}

.product-market-card{
  display:block;
  color:var(--text);
  text-decoration:none;
  text-align:center;
}

.product-market-image{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  aspect-ratio:1/1;
  border-radius:0;
  background:transparent;
  overflow:hidden;
  transition:background .18s ease;
}

.product-market-image img{
  width:100%;
  height:100%;
  object-fit:contain;
  padding:18px;
}

.product-market-card:hover .product-market-image{
  background:transparent;
}

.product-market-title{
  display:block;
  margin-top:22px;
  max-width:none;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:28px;
  line-height:1.22;
  font-weight:700;
  letter-spacing:-.02em;
}

.product-market-price{
  display:block;
  margin-top:18px;
  font-family:"Outfit",system-ui,sans-serif;
  font-size:28px;
  line-height:1;
  color:var(--text);
}

.product-market-meta{
  display:block;
  margin-top:6px;
  max-width:none;
  color:#737373;
  font-size:18px;
  line-height:1.35;
}

.product-market-card-compact .product-market-image{
  max-width:180px;
  margin:0 auto;
}

.product-market-card-compact .product-market-image img{
  padding:8px;
}

.product-market-card-compact .product-market-title{
  margin-top:10px;
  font-size:18px;
  line-height:1.16;
}

.product-market-card-compact .product-market-price{
  margin-top:8px;
  font-size:18px;
}

.product-market-card-compact .product-market-meta{
  margin-top:5px;
  font-size:13px;
}

.product-summary-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
}

.product-summary-icon{
  width:20px;
  height:20px;
  flex:0 0 auto;
  color:var(--brand);
}

.product-trust-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}

.product-trust-item{
  padding:18px 20px;
  border:1px solid var(--line);
  border-radius:18px;
  background:#fff;
  color:#344054;
  font-weight:600;
  line-height:1.5;
}

.product-final-cta{
  padding-top:34px;
}

.product-final-actions{
  justify-content:center;
}

.mobile-buybar{
  display:none;
}

@media (max-width: 1220px){
  .product-shop-layout{
    grid-template-columns:minmax(0, 1fr) minmax(320px, .94fr);
  }

  .product-detail-split,
  .product-story-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 980px){
  .product-shop-layout{
    grid-template-columns:1fr;
  }

  .product-gallery-shop,
  .product-summary,
  .product-buybox{
    grid-column:auto;
    grid-row:auto;
  }

  .product-buybox{
    margin-top:0;
  }

  .product-summary{
    padding-top:0 !important;
  }

  .product-related-card{
    grid-template-columns:1fr;
  }

  .product-related-card img{
    aspect-ratio:16/10;
  }

  .profile-pro-hero-grid,
  .profile-pro-pricing-inner,
  .profile-pro-split{
    grid-template-columns:1fr;
  }

  .profile-pro-grid,
  .profile-pro-prices,
  .profile-pro-steps-grid,
  .profile-pro-use-grid,
  .profile-pro-trust-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

  .profile-pro-proof{
    align-items:flex-start;
    flex-direction:column;
  }

  .profile-pro-proof strong{
    white-space:normal;
  }
}

@media (max-width: 700px){
  .product-shop-page{
    padding-top:22px;
    padding-bottom:96px;
  }

  .product-buybox-card,
  .product-support-card,
  .product-related-card,
  .product-inline-proof{
    border-radius:18px;
  }

  .product-shop-layout .carousel-thumbs{
    grid-template-columns:repeat(4, minmax(0, 1fr));
  }

  .product-summary .product-detail-title{
    font-size:32px;
  }

  .product-detail-chips span{
    width:max-content;
  }

  .product-payment-options,
  .product-quantity-options,
  .product-related-grid{
    grid-template-columns:1fr;
  }

  .profile-pro-grid,
  .profile-pro-prices,
  .profile-pro-steps-grid,
  .profile-pro-use-grid,
  .profile-pro-trust-grid,
  .profile-pro-compare-grid article{
    grid-template-columns:1fr;
  }

  .profile-pro-hero{
    padding-top:46px;
  }

  .profile-pro-hero .h1{
    font-size:38px;
  }

  .profile-pro-compare-item{
    min-height:auto;
    padding:16px;
  }

  .product-support-grid{
    grid-template-columns:1fr;
  }

  .mobile-buybar{
    position:fixed;
    left:12px;
    right:12px;
    bottom:12px;
    z-index:70;
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px;
    border:1px solid rgba(229,231,235,.95);
    border-radius:20px;
    background:rgba(255,255,255,.96);
    backdrop-filter:blur(12px);
    box-shadow:0 16px 36px rgba(16,24,40,.12);
  }

  .mobile-buybar-price{
    min-width:0;
    display:flex;
    flex-direction:column;
    gap:2px;
  }

  .mobile-buybar-price strong{
    font-size:16px;
    line-height:1.1;
  }

  .mobile-buybar-price span{
    font-size:13px;
    color:var(--muted);
    line-height:1.3;
  }

  .mobile-buybar-btn{
    margin-left:auto;
    white-space:nowrap;
    padding-left:18px;
    padding-right:18px;
  }

  .product-pvc-page .whatsapp-float{
    bottom:96px;
  }

  .profile-pro-page .whatsapp-float{
    bottom:96px;
  }
}


/* ================================
   TapLoop Checkout + Stripe/Supabase
   Agregado para carrito con descuento y Perfil Pro
================================ */
.cart-discount-row,
.cart-total-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:14px;
  color:var(--muted);
  margin-top:8px;
}
.cart-total-row{
  font-size:17px;
  color:var(--ink);
  padding-top:12px;
  border-top:1px solid var(--line);
}
.cart-total-row strong{ font-size:20px; }
.cart-pro-box{
  margin-top:14px;
  padding:14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:#fff;
}
.cart-pro-head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
}
.cart-pro-title{
  margin:0;
  font-weight:800;
  color:var(--ink);
}
.cart-pro-copy{
  margin:4px 0 0;
  color:var(--muted);
  font-size:13px;
  line-height:1.45;
}
.cart-pro-toggle{
  appearance:none;
  width:46px;
  height:26px;
  border-radius:999px;
  border:1px solid #d0d5dd;
  background:#e4e7ec;
  position:relative;
  cursor:pointer;
  flex:0 0 auto;
}
.cart-pro-toggle::after{
  content:"";
  position:absolute;
  width:20px;
  height:20px;
  top:2px;
  left:2px;
  background:#fff;
  border-radius:50%;
  box-shadow:0 1px 4px rgba(16,24,40,.24);
  transition:transform .16s ease;
}
.cart-pro-toggle:checked{
  background:var(--brand);
  border-color:var(--brand);
}
.cart-pro-toggle:checked::after{ transform:translateX(20px); }
.cart-pro-controls{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:12px;
  padding-top:12px;
  border-top:1px solid var(--line);
}
.cart-pro-controls[hidden]{ display:none; }
.cart-pro-qty{
  display:inline-flex;
  align-items:center;
  border:1px solid var(--line);
  border-radius:999px;
  overflow:hidden;
}
.cart-pro-qty button{
  width:34px;
  height:32px;
  border:0;
  background:#fff;
  cursor:pointer;
  font-weight:800;
}
.cart-pro-qty span{
  min-width:34px;
  text-align:center;
  font-weight:800;
}
.cart-price-muted{
  color:var(--muted);
  text-decoration:line-through;
  font-weight:500;
  margin-right:6px;
}
.cart-line-badges{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin:8px 0 0;
}
.cart-line-badge{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  background:#fff4f1;
  color:#b93815;
  padding:3px 8px;
  font-size:11px;
  font-weight:800;
}
.cart-checkout-error{
  margin:10px 0 0;
  color:#b42318;
  font-size:13px;
  line-height:1.4;
}
