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

:root{
  --bg: #ffffff;
  --bg-soft:#f5f5f5;
  --text:#111111;
  --muted:#666666;
  --muted-2:#888888;
  --line:#e9e9e9;

  --brand:#ff5a3d;
  --brand-2:#ff7a3d;
  --black:#000000;

  --radius: 18px;
  --radius-lg: 24px;

  --container: 1180px;

  --shadow-sm: 0 6px 18px rgba(0,0,0,.08);
  --shadow-md: 0 12px 30px rgba(0,0,0,.10);
}

*{ 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;
}

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,.9);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--line);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 0;
}

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

.nav-links{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:26px;
  flex:1;
}
.nav-links a{
  font-size:16px;
  color:#222;
  opacity:.9;
}
.nav-links a:hover{ opacity:1; }

.nav-actions{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:12px;
  min-width:180px;
}
.icon-btn{
  width:38px;
  height:38px;
  border-radius:999px;
  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;
}
.nav-cta{
  font-size:14px;
  padding:10px 22px;
  white-space:nowrap;
  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:-.02em;
  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;
}

.center{
  text-align:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.45);
  cursor:pointer;
  transition: transform .12s ease, opacity .12s ease, background .12s ease;
}
.btn:hover{ transform: translateY(-1px); }

.btn-primary{
  background:#000;
  color:#fff;
  border-color:#000;
  padding:14px 26px;
  font-size:16px;
}
.btn-primary:hover{ opacity:.92; }

.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(--brand);
  border:2px solid var(--brand);
}
.btn-outline:hover{
  background:var(--brand);
  color:#fff;
}

/* ---------------- 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;
  transform: scale(1.03);
}
.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 .h1{
  color:#fff;
  max-width:980px;
  margin:0 auto;
}
.hero-content .p{
  color:rgba(255,255,255,.82);
  max-width:820px;
  margin:18px auto 0;
  font-size:20px;
}
.hero-cta{
  margin-top:26px;
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

/* ---------------- 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-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:28px;
}
.product-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  overflow:hidden;
}
.product-media{
  padding:22px 22px 0;
}
.product-media img{
  border-radius:16px;
  background:#fff;
}
.product-body{
  padding:18px 22px 22px;
}
.product-title{
  font-family:"Outfit";
  font-size:26px;
  margin:0;
  font-weight:600;
}
.product-sub{
  margin:8px 0 0;
  color:var(--muted);
  font-size:18px;
}
.product-body{
  display:flex;
  flex-direction:column;
  gap:0;
}
.product-btn{
  align-self:flex-start;
  margin-top:18px;
  font-size:15px;
  padding:11px 26px;
}
.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:12px;
  font-weight:700;
  font-size:18px;
}

/* ---------------- 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:999px;
  background:#efefef;
  color:#333;
  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:16px;
  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:24px;
  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:22px;
}

/* ---------------- 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:999px;
  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:999px;
  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:#111;
  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:999px;
  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; }
}

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

  /* 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; }
  .steps4-grid{ grid-template-columns: 1fr; }
  .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:18px; }
  .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:#fff;
    flex-direction:column;
    padding:12px 0 20px;
    box-shadow:0 8px 24px rgba(0,0,0,.10);
    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-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; }
  .h1{ font-size:34px; }
  .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; }

  /* 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:14px; }

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

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

.products-page-head{
  margin-bottom:26px;
}

.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:var(--radius-lg);
  padding:18px;
}

.carousel-stage{
  position:relative;
  border:1px solid var(--line);
  border-radius:18px;
  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:999px;
  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:12px;
  overflow:hidden;
  background:#fff;
  cursor:pointer;
}

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

.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-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;
}

/* 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:100px;
  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:0 4px 18px rgba(0,0,0,.08);
  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;
  }
}

/* ======================================
   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:999px;
}

.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:22px;
  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:"✓ ";
  color:var(--brand);
}

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

.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:12px;
  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;
  bottom:28px;
  right:28px;
  width:58px;
  height:58px;
  background:#25D366;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 4px 18px rgba(37,211,102,.45);
  z-index:9999;
  transition:transform .2s ease, box-shadow .2s ease;
}
.whatsapp-float:hover{
  transform:scale(1.1) translateY(-2px);
  box-shadow:0 8px 28px rgba(37,211,102,.55);
}
.whatsapp-float svg{
  width:30px;
  height:30px;
  fill:#fff;
  flex-shrink:0;
}

/* ======================================
   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:18px;
  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:var(--radius-lg);
  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:var(--radius);
  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:12px;
}
.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:var(--radius);
  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:var(--radius-lg);
  padding:36px 24px;
  text-align:center;
}
.contact-card-icon{
  width:52px;
  height:52px;
  background:var(--text);
  border-radius:50%;
  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-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-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:0;
}

.mv-card{
  position:relative;
  min-height:320px;
  overflow:hidden;
  display:flex;
  align-items:flex-end;
}

.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-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:#f0f0f0;
  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-items{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:0;
  max-width:680px;
  margin:0 auto;
  border:1px solid var(--line);
  border-radius:var(--radius-lg);
  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:var(--radius-lg);
  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:10px;
  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:10px;
  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; }
  .nav{ padding:14px 0; }
  .brand img{ height:28px; }
  .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 rgba(255,255,255,.1); text-align: left;
}
.comparison-table thead th {
  background: rgba(255,255,255,.07); font-weight: 700; color: var(--text);
  font-size: 16px;
}
.comparison-table tbody tr:nth-child(even) td { background: rgba(255,255,255,.03); }
.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: 14px; padding: 28px 24px;
  border: 1px solid rgba(255,255,255,.08);
}
.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; }

/* — 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: rgba(255,255,255,.06); border-radius: 20px;
  font-size: 13px; color: var(--muted); border: 1px solid rgba(255,255,255,.1);
  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: rgba(255,255,255,.06); border-radius: 20px;
  font-size: 13px; color: var(--muted); border: 1px solid rgba(255,255,255,.1);
}

/* — 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; background: rgba(255,255,255,.04);
  border-radius: 10px; border: 1px solid rgba(255,255,255,.07);
}
.spec-check { font-size: 20px; flex-shrink: 0; color: #4ade80; 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: rgba(255,255,255,.04); border-radius: 12px;
  padding: 22px 16px; text-align: center;
  border: 1px solid rgba(255,255,255,.07);
}
.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: 50%;
  background: rgba(255,255,255,.08); display: flex; align-items: center;
  justify-content: center; font-weight: 700; font-size: 17px; color: var(--text);
  margin: 0 auto 16px; border: 2px solid rgba(255,255,255,.18);
}
.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; }
}
@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; }
}
