:root{
  --imutive-primary:#137890;
  --imutive-primary-2:#1c9cb2;
  --imutive-primary-dark:#00738b;
  --imutive-navy:#1b263e;
  --imutive-navy-2:#10192b;
  --imutive-gray:#737373;
  --imutive-bg:#f3f6fa;
  --imutive-surface:#ffffff;
  --imutive-text:#0f172a;
  --imutive-muted:#5b6779;
  --imutive-border:rgba(27,38,62,.10);
  --imutive-shadow:0 24px 60px rgba(8,23,45,.10);
  --imutive-shadow-strong:0 32px 80px rgba(5,17,35,.18);
  --imutive-radius:22px;
  --imutive-radius-sm:14px;
  --imutive-max:1240px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
  color:var(--imutive-text);
  background:#fff;
}
a{color:inherit}
img{max-width:100%;height:auto;display:block}

.q-wrap{max-width:var(--imutive-max);margin:0 auto;padding:0 28px}
.q-wrap--narrow{max-width:980px;margin:0 auto}

.q-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(255,255,255,.95);
  backdrop-filter:saturate(180%) blur(14px);
  border-bottom:1px solid var(--imutive-border);
}
.q-header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  min-height:86px;
}

.q-brand{display:flex;align-items:center;gap:12px;text-decoration:none}
.q-brand__logo,.custom-logo{display:block;height:64px;width:auto;max-height:64px}
.q-brand__name{font-weight:800;letter-spacing:.2px}

.q-nav{display:flex;align-items:center;gap:18px}
.q-nav ul{
  display:flex;
  list-style:none;
  margin:0;
  padding:0;
  gap:16px;
  align-items:center;
}
.q-nav a{
  font-size:14px;
  font-weight:600;
  text-decoration:none;
  color:#334155;
  padding:10px 8px;
  border-radius:10px;
}
.q-nav a:hover{
  color:var(--imutive-text);
  background:rgba(19,120,144,.05);
}

.q-cta{display:flex;gap:10px;align-items:center}


.q-hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
  margin-top:22px;
}

.q-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:12px;
  padding:13px 18px;
  font-weight:700;
  font-size:14px;
  text-decoration:none;
  border:1px solid transparent;
  cursor:pointer;
  line-height:1;
  transition:.2s ease;
}
.q-btn--primary{
  background:linear-gradient(135deg,var(--imutive-primary),var(--imutive-primary-2));
  color:#fff;
  box-shadow:0 12px 24px rgba(19,120,144,.20);
}
.q-btn--primary:hover{
  transform:translateY(-1px);
  box-shadow:0 16px 28px rgba(19,120,144,.24);
}
.q-btn--ghost{
  background:#fff;
  border-color:var(--imutive-border);
  color:var(--imutive-text);
}
.q-btn--ghost:hover{
  border-color:rgba(19,120,144,.35);
  background:rgba(19,120,144,.04);
}
.q-btn--ghost-light{
  background:transparent;
  border-color:rgba(255,255,255,.24);
  color:#fff;
}
.q-btn--ghost-light:hover{background:rgba(255,255,255,.08)}

.q-mobile-toggle{
  display:none;
  border:1px solid var(--imutive-border);
  background:#fff;
  border-radius:12px;
  padding:10px 12px;
}

.q-kicker,.q-eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--imutive-primary);
}
.q-kicker--hero{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(19,120,144,.08);
  border:1px solid rgba(19,120,144,.14);
}
.q-kicker--light{color:rgba(255,255,255,.72)}
.q-eyebrow--light{color:#9dd8e0}

.q-h1{
  font-size:52px;
  line-height:1.04;
  letter-spacing:-.03em;
  margin:0 0 18px;
  font-weight:800;
}
.q-h2{
  font-size:40px;
  line-height:1.08;
  letter-spacing:-.02em;
  margin:0 0 12px;
  font-weight:800;
}
.q-h2--light{color:#fff}

.q-lead,.q-sub{
  font-size:18px;
  line-height:1.65;
  color:var(--imutive-muted);
  margin:0;
}
.q-sub--light,.q-lead--light{color:rgba(255,255,255,.78)}

.q-section{padding:88px 0}
.q-section--surface{background:var(--imutive-bg)}
.q-section--dark{
  background:
    radial-gradient(900px 500px at 0% 0%, rgba(28,156,178,.12), transparent 60%),
    radial-gradient(900px 500px at 100% 100%, rgba(28,156,178,.10), transparent 55%),
    linear-gradient(180deg,#162238,#10192b);
}
.q-section--cta{
  padding-top:120px;
  padding-bottom:92px;
  background:#fff;
}

.q-sectionHead{
  max-width:860px;
  margin:0 auto 38px;
  text-align:center;
}
.q-sectionHead--compact{
  text-align:left;
  max-width:100%;
  margin-bottom:28px;
}
.q-sectionHead--left{
  text-align:left;
  max-width:100%;
  margin:0 0 28px;
}

.q-home-hero{
  padding:74px 0 54px;
  background:linear-gradient(180deg,#fbfcfe 0%,#f4f7fb 100%);
  border-bottom:1px solid rgba(27,38,62,.06);
}
.q-home-hero__intro{
  max-width:920px;
  margin:0 auto;
  text-align:center;
}
.q-home-hero__title{
  font-size:64px;
  line-height:1.02;
  letter-spacing:-.04em;
  font-weight:800;
  margin:18px 0;
}
.q-home-hero__lead{
  max-width:860px;
  margin:0 auto;
  color:var(--imutive-muted);
  font-size:20px;
  line-height:1.7;
}
.q-home-hero__actions{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:28px;
}
.q-home-hero__facts{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
  margin-top:18px;
  color:#3c4a5d;
  font-size:13px;
  font-weight:600;
}
.q-home-hero__facts span{
  padding:8px 12px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--imutive-border);
}

/* HERO ENTERPRISE CON IMAGEN */
.q-home-hero--enterprise{padding:82px 0 64px}
.q-home-hero--image{
  position:relative;
  overflow:hidden;
  min-height:620px;
  padding:110px 0 96px;
  background:#0f172a;
}
.q-home-hero__bg{
  position:absolute;
  inset:0;
  background-image:url("http://imutive.com/wp-content/uploads/2026/03/79ec0f76-7547-4fd7-bc77-d0b27cc57ec0.png");
  background-size:cover;
  background-position:center center;
  transform:scale(1.02);
  filter:none;
}
.q-home-hero__overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(8,15,28,.78) 0%,rgba(11,20,36,.82) 44%,rgba(10,18,33,.9) 100%);
}
.q-home-hero__inner{position:relative;z-index:2}
.q-home-hero__intro--enterprise{
  max-width:920px;
  margin:0 auto 34px;
  text-align:center;
}
.q-home-hero__intro--overlay{
  max-width:920px;
  margin:0 auto;
  text-align:center;
}
.q-home-hero__title--light{color:#fff}
.q-home-hero__lead--light{
  color:rgba(255,255,255,.82);
  max-width:820px;
  margin:0 auto;
}
.q-home-hero__actions--center{justify-content:center}
.q-home-hero__facts--light{justify-content:center}
.q-home-hero__facts--light span{
  background:rgba(255,255,255,.08);
  border-color:rgba(255,255,255,.14);
  color:#fff;
}

.q-product-stage{position:relative;margin-top:46px}
.q-product-stage__frame{
  background:#fff;
  border:1px solid rgba(27,38,62,.10);
  border-radius:26px;
  box-shadow:var(--imutive-shadow-strong);
  overflow:hidden;
}
.q-product-stage__bar{
  display:flex;
  gap:8px;
  padding:14px 18px;
  background:#f8fafc;
  border-bottom:1px solid rgba(27,38,62,.08);
}
.q-product-stage__bar span{
  width:10px;
  height:10px;
  border-radius:50%;
  background:#d6dde8;
}
.q-product-stage__frame img{width:100%}
.q-product-stage__frame:hover{
  transform:translateY(-6px);
  box-shadow:0 34px 80px rgba(12,25,45,.22);
}

.q-chipcard{
  position:absolute;
  max-width:280px;
  padding:16px 18px;
  border-radius:18px;
  background:rgba(16,25,43,.92);
  color:#fff;
  box-shadow:0 18px 35px rgba(8,23,45,.22);
  backdrop-filter:blur(8px);
}
.q-chipcard strong{
  display:block;
  font-size:15px;
  margin-bottom:6px;
}
.q-chipcard span{
  font-size:13px;
  line-height:1.55;
  color:rgba(255,255,255,.8);
}
.q-chipcard--left{left:22px;bottom:26px}
.q-chipcard--right{right:22px;top:26px}

.q-solution-grid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:18px;
}
.q-solution-card,.q-module-card,.q-overview-card,.q-price-card,.q-sidecard,.q-panel{
  background:#fff;
  border:1px solid rgba(27,38,62,.08);
  border-radius:20px;
  box-shadow:var(--imutive-shadow);
}
.q-solution-card{
  position:relative;
  overflow:hidden;
  padding:26px 24px;
  min-height:180px;
}
.q-solution-card::after{
  content:"";
  position:absolute;
  inset:auto -40% -55% auto;
  width:180px;
  height:180px;
  border-radius:50%;
  background:radial-gradient(circle, rgba(28,156,178,.16), transparent 70%);
  pointer-events:none;
  transition:transform .45s ease,opacity .45s ease;
  opacity:.7;
}
.q-solution-card:hover::after{
  transform:translate(-18px,-16px) scale(1.08);
  opacity:1;
}
.q-solution-card h3,.q-module-card h3,.q-overview-card h3,.q-price-card h3,.q-sidecard h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.25;
}
.q-solution-card p,.q-module-card p,.q-overview-card p,.q-price-card p,.q-sidecard p{
  margin:0;
  color:var(--imutive-muted);
  line-height:1.7;
}

.q-module-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(260px,300px));
  justify-content:center;
  gap:18px;
}
.q-module-card{
  padding:0;
  min-height:auto;
  background:linear-gradient(180deg,#fff,#f8fbfd);
  overflow:hidden;
  border-radius:24px;
  box-shadow:0 10px 28px rgba(15,23,42,.08);
}
.q-module-card__visual{
  min-height:96px;
  display:flex;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
}
.q-module-card__visual::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg,rgba(255,255,255,.10),rgba(0,0,0,.08));
  opacity:.9;
}
.q-module-card__body{
  padding:18px 18px 20px;
  background:#fff;
}
.q-module-card__body h3{
  margin:0 0 8px;
  font-size:15px;
  line-height:1.25;
}
.q-module-card__body p{
  margin:0;
  color:var(--imutive-muted);
  line-height:1.55;
  font-size:14px;
}
.q-module-card--projects .q-module-card__visual{background:linear-gradient(135deg,#2d55d1,#3f63de)}
.q-module-card--docs .q-module-card__visual{background:linear-gradient(135deg,#6a38c4,#7f49d5)}
.q-module-card--reports .q-module-card__visual{background:linear-gradient(135deg,#3185a2,#45a8c8)}
.q-module-card--collab .q-module-card__visual{background:linear-gradient(135deg,#2e875f,#47a277)}
.q-module-card--finance .q-module-card__visual{background:linear-gradient(135deg,#d8931d,#e6aa3d)}
.q-module-card--audit .q-module-card__visual{background:linear-gradient(135deg,#1b2f59,#244274)}
.q-module-card:hover .q-module-card__visual::before{opacity:1}
.q-module-card:hover .q-illustration{transform:translateY(-6px) scale(1.03)}

/* =========================================================
   IMUTIVE — Módulos en formato lista (sin cards)
   Usado en plantilla Plataforma (SaaS)
========================================================= */

.q-modules-list{
  display:flex;
  flex-direction:column;
  gap:0;
  border-top:1px solid rgba(15,23,42,.10);
}

.q-modules-list__item{
  display:grid;
  grid-template-columns:minmax(0,240px) minmax(0,1fr) auto;
  align-items:start;
  gap:28px;
  padding:26px 0;
  border-bottom:1px solid rgba(15,23,42,.10);
}

.q-modules-list__item h3{
  margin:0;
  font-size:1rem;
  line-height:1.35;
  font-weight:700;
  color:var(--imutive-navy);
  letter-spacing:-.01em;
}

.q-modules-list__item p{
  margin:0;
  font-size:.98rem;
  line-height:1.7;
  color:var(--imutive-muted);
  max-width:760px;
}

.q-modules-list__item::after{
  content:"";
  width:10px;
  height:10px;
  border-top:2px solid var(--imutive-primary);
  border-right:2px solid var(--imutive-primary);
  transform:rotate(45deg);
  align-self:center;
  opacity:.75;
  margin-top:2px;
}

.q-section .q-modules-list{
  margin-top:10px;
}

.q-valueBand{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:34px;
  align-items:center;
}
.q-valueBand__media img{
  border-radius:20px;
  box-shadow:var(--imutive-shadow-strong);
  transition:transform .45s cubic-bezier(.22,1,.36,1),box-shadow .45s ease;
}
.q-valueBand__media img:hover{transform:translateY(-8px) scale(1.01)}

.q-checklist{
  list-style:none;
  margin:24px 0 0;
  padding:0;
  display:grid;
  gap:12px;
}
.q-checklist li{
  position:relative;
  padding-left:30px;
  color:var(--imutive-muted);
  font-weight:600;
}
.q-checklist li::before{
  content:'•';
  position:absolute;
  left:10px;
  top:0;
  color:var(--imutive-primary);
  font-size:22px;
  line-height:1;
}
.q-checklist--light li{color:rgba(255,255,255,.82)}
.q-checklist--light li::before{color:#88d5e0}

.q-proofBand{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:40px;
  align-items:center;
}
.q-proofBand__content{max-width:650px}
.q-proofBand__list{
  display:grid;
  gap:22px;
  margin-top:28px;
}
.q-proofItem{
  position:relative;
  padding-left:28px;
}
.q-proofItem::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:999px;
  background:#88d5e0;
  box-shadow:0 0 0 6px rgba(136,213,224,.10);
}
.q-proofItem--blue::before{
  background:#4e7cff;
  box-shadow:0 0 0 6px rgba(78,124,255,.12);
}
.q-proofItem--violet::before{
  background:#8c68ff;
  box-shadow:0 0 0 6px rgba(140,104,255,.12);
}
.q-proofItem strong{
  display:block;
  color:#fff;
  font-size:15px;
  line-height:1.35;
  margin-bottom:6px;
}
.q-proofItem span{
  display:block;
  color:rgba(255,255,255,.74);
  line-height:1.65;
}
.q-proofBand__frame{
  position:relative;
  max-width:560px;
  margin-left:auto;
}
.q-proofBand__frame img{
  width:100%;
  border-radius:24px;
  box-shadow:var(--imutive-shadow-strong);
  border:1px solid rgba(255,255,255,.08);
}
.q-proofBand__stats{
  position:absolute;
  left:28px;
  right:28px;
  bottom:22px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:0;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(7,16,30,.22);
  overflow:hidden;
}
.q-proofBand__stats div{
  padding:18px 18px 16px;
  border-right:1px solid rgba(15,23,42,.08);
}
.q-proofBand__stats div:last-child{border-right:none}
.q-proofBand__stats span{
  display:block;
  font-size:13px;
  color:#64748b;
  margin-bottom:4px;
}
.q-proofBand__stats strong{
  display:block;
  font-size:18px;
  color:#0f172a;
  line-height:1.2;
}

.q-pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.q-price-card{padding:28px 24px}
.q-price-card__eyebrow{
  font-size:12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--imutive-primary);
  margin-bottom:12px;
}
.q-price-card__price{
  font-size:38px;
  font-weight:800;
  letter-spacing:-.03em;
  margin:12px 0 18px;
}
.q-price-card__price span{
  font-size:16px;
  font-weight:600;
  color:var(--imutive-muted);
  margin-left:6px;
}
.q-price-card ul{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:10px;
  color:var(--imutive-muted);
  line-height:1.6;
}
.q-price-card--featured{
  background:linear-gradient(180deg,#17243c,#10192b);
  color:#fff;
}
.q-price-card--featured .q-price-card__eyebrow,
.q-price-card--featured .q-price-card__price span,
.q-price-card--featured p,
.q-price-card--featured ul{
  color:rgba(255,255,255,.84);
}

.q-ctaPanel{
  background:linear-gradient(135deg,#15233b,#243a64 62%,#1c9cb2 120%);
  border-radius:26px;
  padding:42px 46px;
  display:grid;
  grid-template-columns:1.35fr auto;
  gap:36px;
  align-items:center;
  max-width:1040px;
  margin:0 auto;
  box-shadow:var(--imutive-shadow-strong);
}
.q-ctaPanel__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.q-pageHero{
  padding:64px 0 34px;
  background:linear-gradient(180deg,#fbfcfe 0%,#f4f7fb 100%);
  border-bottom:1px solid rgba(27,38,62,.06);
}
.q-pageHero .q-wrap{
  display:grid;
  grid-template-columns:1fr .95fr;
  gap:28px;
  align-items:center;
}
.q-pageHero__media img{
  border-radius:22px;
  box-shadow:var(--imutive-shadow-strong);
}
.q-pageHero--request .q-wrap{grid-template-columns:1fr 380px}

.q-process-card{
  padding:28px;
  background:#fff;
  border:1px solid rgba(27,38,62,.08);
  border-radius:22px;
  box-shadow:var(--imutive-shadow);
}
.q-process-card h3{
  margin:0 0 14px;
  font-size:22px;
}
.q-process-card ol{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:14px;
  color:var(--imutive-muted);
  line-height:1.65;
}

.q-overview-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.q-overview-card{padding:24px}

.q-request-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 330px;
  gap:22px;
  align-items:start;
}
.q-request-main{min-width:0}
.q-request-side{display:grid;gap:18px}
.q-sidecard{padding:24px}
.q-sidecard ul{
  margin:0;
  padding-left:18px;
  display:grid;
  gap:10px;
  color:var(--imutive-muted);
}
.q-sidecard--dark{
  background:linear-gradient(180deg,#162238,#10192b);
  color:#fff;
}
.q-sidecard--dark p,.q-sidecard--dark ul{color:rgba(255,255,255,.82)}

.q-footer{
  background:#0f172a;
  color:rgba(255,255,255,.82);
  padding:62px 0 24px;
}
.q-footer__grid--enterprise{
  display:grid;
  grid-template-columns:1.4fr .8fr .8fr .8fr;
  gap:28px;
}
.q-footer__brand .custom-logo{filter:brightness(100)}
.q-footer h4{
  margin:0 0 14px;
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.06em;
  color:rgba(255,255,255,.55);
}
.q-footer__links{display:grid;gap:10px}
.q-footer__links a{
  text-decoration:none;
  color:rgba(255,255,255,.8);
}
.q-footer__links a:hover{color:#fff}
.q-footer__bottom{
  display:flex;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:20px;
  margin-top:26px;
  color:rgba(255,255,255,.55);
  font-size:13px;
}

.q-panel{padding:28px}
.q-alert{
  padding:14px 16px;
  border:1px solid rgba(19,120,144,.18);
  background:rgba(19,120,144,.08);
  border-radius:14px;
  color:var(--imutive-text);
  font-weight:600;
}

.q-form{display:grid;gap:18px}
.q-form--request{gap:20px}
.q-form__sectionTitle{
  font-size:13px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform:uppercase;
  color:var(--imutive-primary);
  padding-top:4px;
}
.q-form__grid{display:grid;gap:14px}
.q-form__grid--2{grid-template-columns:repeat(2,minmax(0,1fr))}
.q-field label{
  display:block;
  font-size:13px;
  font-weight:700;
  color:#334155;
  margin:0 0 8px;
}
.q-field input,.q-field textarea,.q-field select{
  width:100%;
  border:1px solid rgba(27,38,62,.14);
  border-radius:14px;
  padding:13px 14px;
  font-size:14px;
  background:#fff;
  outline:none;
  min-height:48px;
}
.q-field textarea{
  min-height:140px;
  resize:vertical;
}
.q-field input:focus,.q-field textarea:focus,.q-field select:focus{
  border-color:rgba(19,120,144,.45);
  box-shadow:0 0 0 4px rgba(19,120,144,.10);
}
.q-request-actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:8px;
}
.q-form__honeypot{
  position:absolute !important;
  left:-9999px !important;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.q-prose{max-width:860px}
.q-prose>*+*{margin-top:1em}

/* Motion + reveal */
[data-reveal],[data-reveal-group] > *{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .7s ease,transform .7s cubic-bezier(.22,1,.36,1);
  will-change:transform,opacity;
}
[data-reveal].is-visible,[data-reveal-group].is-visible > *{
  opacity:1;
  transform:none;
}
[data-reveal-group].is-visible > *:nth-child(1){transition-delay:.05s}
[data-reveal-group].is-visible > *:nth-child(2){transition-delay:.12s}
[data-reveal-group].is-visible > *:nth-child(3){transition-delay:.18s}
[data-reveal-group].is-visible > *:nth-child(4){transition-delay:.24s}
[data-reveal="hero"].is-visible .q-product-stage{transition-delay:.22s}

@media (prefers-reduced-motion: reduce){
  [data-reveal],[data-reveal-group] > *{
    opacity:1;
    transform:none;
    transition:none;
  }
}

.q-solution-card,.q-module-card,.q-price-card,.q-overview-card,.q-sidecard,.q-panel,.q-product-stage__frame{
  transition:transform .35s cubic-bezier(.22,1,.36,1),box-shadow .35s ease,border-color .35s ease,background .35s ease;
}
.q-solution-card:hover,.q-module-card:hover,.q-price-card:hover,.q-overview-card:hover,.q-sidecard:hover,.q-panel:hover{
  transform:translateY(-8px);
  box-shadow:0 24px 50px rgba(17,24,39,.12);
  border-color:rgba(19,120,144,.18);
}
.q-home-hero__actions .q-btn,.q-request-actions .q-btn,.q-ctaPanel__actions .q-btn{
  transition:transform .25s ease,box-shadow .25s ease,background .25s ease,color .25s ease,border-color .25s ease;
}
.q-home-hero__actions .q-btn:hover,.q-request-actions .q-btn:hover,.q-ctaPanel__actions .q-btn:hover{
  transform:translateY(-2px);
}

.q-illustration{
  display:block;
  width:78px;
  height:78px;
  opacity:.42;
  transition:transform .35s ease,opacity .35s ease;
  background-repeat:no-repeat;
  background-position:center;
  background-size:contain;
  filter:drop-shadow(0 10px 18px rgba(255,255,255,.10));
}
.q-solution-card .q-illustration{
  width:34px;
  height:34px;
  opacity:.96;
  filter:none;
}

.q-illustration--projects{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Crect x='8' y='10' width='48' height='44' rx='8' stroke='white' stroke-width='4'/%3E%3Cpath d='M8 24H56M22 10V54M42 10V54' stroke='white' stroke-width='4'/%3E%3C/svg%3E")}
.q-illustration--docs{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M18 8h20l12 12v36H18z' stroke='white' stroke-width='4'/%3E%3Cpath d='M38 8v14h12' stroke='white' stroke-width='4'/%3E%3Cpath d='M24 34h16M24 42h16' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E")}
.q-illustration--reports{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M14 50V18M14 50H50' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M22 42l8-10 8 6 12-14' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='22' cy='42' r='3' fill='white'/%3E%3Ccircle cx='30' cy='32' r='3' fill='white'/%3E%3Ccircle cx='38' cy='38' r='3' fill='white'/%3E%3Ccircle cx='50' cy='24' r='3' fill='white'/%3E%3C/svg%3E")}
.q-illustration--collab{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Ccircle cx='22' cy='22' r='8' stroke='white' stroke-width='4'/%3E%3Ccircle cx='42' cy='24' r='7' stroke='white' stroke-width='4'/%3E%3Cpath d='M10 50c1-8 8-14 16-14s15 6 16 14' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3Cpath d='M36 50c1-6 6-11 12-11 3 0 6 1 8 3' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3C/svg%3E")}
.q-illustration--finance{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M14 48h36' stroke='white' stroke-width='4' stroke-linecap='round'/%3E%3Crect x='18' y='30' width='8' height='18' rx='2' fill='white'/%3E%3Crect x='30' y='22' width='8' height='26' rx='2' fill='white'/%3E%3Crect x='42' y='14' width='8' height='34' rx='2' fill='white'/%3E%3C/svg%3E")}
.q-illustration--audit{background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64' fill='none'%3E%3Cpath d='M32 10l18 7v14c0 10-6 19-18 23-12-4-18-13-18-23V17z' stroke='white' stroke-width='4'/%3E%3Cpath d='M24 32l6 6 12-14' stroke='white' stroke-width='4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")}

/* Secciones de contenido */
.q-sector-problem .q-sub,
.q-what-is .q-sub,
.q-access-journey .q-sub{
  max-width:760px;
}

.q-problem-band{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:18px;
  margin-top:8px;
}
.q-problem-item{
  background:#fff;
  border:1px solid rgba(27,38,62,.08);
  border-radius:18px;
  padding:22px 22px 20px;
  box-shadow:var(--imutive-shadow);
}
.q-problem-item strong{
  display:block;
  font-size:16px;
  line-height:1.35;
  margin-bottom:8px;
}
.q-problem-item span{
  display:block;
  color:var(--imutive-muted);
  line-height:1.65;
}

.q-copy-block{
  display:grid;
  gap:18px;
  max-width:860px;
}
.q-copy-block p{
  margin:0;
  color:var(--imutive-muted);
  font-size:18px;
  line-height:1.75;
}
.q-copy-block--light p{color:rgba(255,255,255,.78)}

.q-modules-clean .q-module-grid{margin-top:6px}
.q-modules-clean .q-modules-list{margin-top:6px}

/* Qué es IMUTIVE */
.q-what-is-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 28px;
  margin-top:30px;
}

.q-what-is-item{
  padding:0;
}

.q-what-is-item strong{
  display:block;
  font-size:16px;
  line-height:1.35;
  margin-bottom:8px;
  color:var(--imutive-text);
}

.q-what-is-item p{
  margin:0;
  color:var(--imutive-muted);
  line-height:1.7;
}

.q-what-is-note{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(27,38,62,.10);
  max-width:860px;
}

.q-what-is-note p{
  margin:0;
  color:var(--imutive-muted);
  line-height:1.75;
  font-size:17px;
}

/* Cómo funciona el acceso */
.q-access-text{
  display:grid;
  gap:22px;
  margin-top:10px;
}
.q-access-text__item{
  display:grid;
  grid-template-columns:72px 1fr;
  gap:18px;
  align-items:start;
  padding:0 0 22px;
  border-bottom:1px solid rgba(27,38,62,.10);
}
.q-access-text__item:last-child{
  padding-bottom:0;
  border-bottom:none;
}
.q-access-text__item span{
  font-size:13px;
  font-weight:800;
  letter-spacing:.16em;
  color:var(--imutive-primary-dark);
  padding-top:4px;
}
.q-access-text__item strong{
  display:block;
  font-size:18px;
  line-height:1.35;
  margin-bottom:6px;
  color:var(--imutive-text);
}
.q-access-text__item p{
  margin:0;
  color:var(--imutive-muted);
  line-height:1.7;
}

/* Beneficios operativos */
.q-benefits-showcase{
  padding-top:96px;
  padding-bottom:96px;
}
.q-benefits-showcase__grid{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:44px;
  align-items:center;
}
.q-benefits-showcase__content{max-width:640px}
.q-benefits-showcase__list{
  display:grid;
  gap:22px;
  margin-top:28px;
}
.q-benefit-line{
  position:relative;
  padding-left:28px;
}
.q-benefit-line::before{
  content:"";
  position:absolute;
  left:0;
  top:8px;
  width:10px;
  height:10px;
  border-radius:999px;
}
.q-benefit-line--green::before{
  background:#63c297;
  box-shadow:0 0 0 6px rgba(99,194,151,.12);
}
.q-benefit-line--blue::before{
  background:#53b5cf;
  box-shadow:0 0 0 6px rgba(83,181,207,.12);
}
.q-benefit-line--violet::before{
  background:#8c68ff;
  box-shadow:0 0 0 6px rgba(140,104,255,.12);
}
.q-benefit-line strong{
  display:block;
  color:#fff;
  font-size:16px;
  line-height:1.35;
  margin-bottom:6px;
}
.q-benefit-line span{
  display:block;
  color:rgba(255,255,255,.76);
  line-height:1.65;
}
.q-benefits-showcase__frame{
  position:relative;
  max-width:560px;
  margin-left:auto;
}
.q-benefits-showcase__image{
  width:100%;
  min-height:360px;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:var(--imutive-shadow-strong);
  background-image:url("http://imutive.com/wp-content/uploads/2026/03/Captura-de-pantalla-2026-03-08-a-las-21.45.41.png");
  background-size:cover;
  background-position:center center;
  background-repeat:no-repeat;
}
.q-benefits-showcase__stats{
  position:absolute;
  left:28px;
  right:28px;
  bottom:-65px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(10px);
  border-radius:18px;
  box-shadow:0 16px 40px rgba(7,16,30,.22);
  overflow:hidden;
}
.q-benefits-showcase__stats div{
  padding:18px 18px 16px;
  border-right:1px solid rgba(15,23,42,.08);
}
.q-benefits-showcase__stats div:last-child{border-right:none}
.q-benefits-showcase__stats span{
  display:block;
  font-size:13px;
  color:#64748b;
  margin-bottom:4px;
}
.q-benefits-showcase__stats strong{
  display:block;
  font-size:18px;
  color:#0f172a;
  line-height:1.2;
}

/* Seguridad y permisos */
.q-security-clean{
  background:#fff;
  padding-top:92px;
  padding-bottom:92px;
}

.q-security-clean .q-sectionHead,
.q-security-clean .q-copy-block{
  position:relative;
  z-index:2;
}

.q-security-clean .q-copy-block{
  max-width:860px;
}

.q-security-clean .q-copy-block p{
  color:var(--imutive-muted);
}

.q-security-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px 28px;
  margin-top:30px;
}

.q-security-item{
  padding:0;
}

.q-security-item strong{
  display:block;
  font-size:16px;
  line-height:1.35;
  margin-bottom:8px;
  color:var(--imutive-text);
}

.q-security-item p{
  margin:0;
  color:var(--imutive-muted);
  line-height:1.7;
}

.q-security-note{
  margin-top:28px;
  padding-top:22px;
  border-top:1px solid rgba(27,38,62,.10);
  max-width:860px;
}

.q-security-note p{
  margin:0;
  color:var(--imutive-muted);
  line-height:1.75;
  font-size:17px;
}

@media (max-width:1100px){
  .q-solution-grid,
  .q-pricing-grid,
  .q-overview-grid,
  .q-footer__grid--enterprise{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .q-module-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
  .q-request-layout,
  .q-pageHero--request .q-wrap,
  .q-pageHero .q-wrap,
  .q-valueBand,
  .q-proofBand,
  .q-benefits-showcase__grid{
    grid-template-columns:1fr;
  }

  .q-chipcard{
    position:static;
    max-width:none;
    margin-top:14px;
  }

  .q-proofBand__frame,
  .q-benefits-showcase__frame{
    max-width:none;
    margin-left:0;
  }

  .q-ctaPanel{
    padding:34px;
    grid-template-columns:1fr;
    align-items:flex-start;
  }

  .q-home-hero__title{font-size:54px}
}

@media (max-width:991px){
  .q-modules-list__item{
    grid-template-columns:minmax(0,200px) minmax(0,1fr);
    gap:20px 24px;
  }

  .q-modules-list__item::after{
    display:none;
  }
}

@media (max-width:820px){
  .q-hero__actions{
    gap:10px;
  }
  .q-nav,.q-cta{display:none}
  .q-mobile-toggle{display:block}
  .q-header__inner{min-height:78px}

  .q-home-hero__title,
  .q-h1{font-size:42px}

  .q-h2{font-size:32px}
  .q-wrap{padding:0 20px}

  .q-solution-grid,
  .q-pricing-grid,
  .q-overview-grid,
  .q-footer__grid--enterprise,
  .q-module-grid{
    grid-template-columns:1fr;
  }

  .q-form__grid--2{grid-template-columns:1fr}
  .q-home-hero__lead{font-size:18px}
  .q-proofBand__stats{
    position:static;
    margin-top:16px;
    grid-template-columns:1fr;
  }
  .q-proofBand__stats div{
    border-right:none;
    border-bottom:1px solid rgba(15,23,42,.08);
  }
  .q-proofBand__stats div:last-child{border-bottom:none}
  .q-section{padding:72px 0}

  .q-module-card__visual{min-height:112px}
  .q-illustration{width:64px;height:64px}

  .q-problem-band{grid-template-columns:1fr}
  .q-home-hero--enterprise{padding:72px 0 56px}
  .q-home-hero--image{min-height:560px;padding:96px 0 72px}
  .q-home-hero__lead--light{max-width:100%}

  .q-copy-block p{font-size:17px}

  .q-access-text__item{
    grid-template-columns:56px 1fr;
    gap:14px;
  }
  .q-access-text__item strong{font-size:17px}

  .q-benefits-showcase__image{min-height:300px}
  .q-benefits-showcase__stats{
    position:static;
    margin-top:16px;
    grid-template-columns:1fr;
  }
  .q-benefits-showcase__stats div{
    border-right:none;
    border-bottom:1px solid rgba(15,23,42,.08);
  }
  .q-benefits-showcase__stats div:last-child{border-bottom:none}

  .q-section--cta{padding-top:96px}
  .q-ctaPanel{
    gap:22px;
    text-align:center;
  }
  .q-ctaPanel__actions{justify-content:center}

  .q-security-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .q-security-note p{
    font-size:16px;
  }

  .q-what-is-grid{
    grid-template-columns:1fr;
    gap:20px;
  }

  .q-what-is-note p{
    font-size:16px;
  }
}

@media (max-width:767px){
  .q-modules-list__item{
    grid-template-columns:1fr;
    gap:10px;
    padding:20px 0;
  }

  .q-modules-list__item h3{
    font-size:.98rem;
  }

  .q-modules-list__item p{
    font-size:.95rem;
    line-height:1.65;
  }
}

.q-footer__grid--enterprise{
  grid-template-columns:1.4fr .8fr .8fr .8fr .9fr;
}

.q-footer__legal-links{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
}
.q-footer__legal-links a{
  text-decoration:none;
  color:rgba(255,255,255,.65);
}
.q-footer__legal-links a:hover{
  color:#fff;
}

.q-cookie{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:120;
  padding:0 0 18px;
}
.q-cookie__inner{
  display:grid;
  grid-template-columns:minmax(0,1fr) auto;
  gap:18px;
  align-items:center;
  background:rgba(16,25,43,.96);
  color:#fff;
  border:1px solid rgba(255,255,255,.10);
  border-radius:18px;
  box-shadow:0 18px 50px rgba(5,17,35,.24);
  padding:18px 20px;
}
.q-cookie__content strong{
  display:block;
  font-size:15px;
  margin-bottom:6px;
}
.q-cookie__content p{
  margin:0;
  color:rgba(255,255,255,.82);
  line-height:1.6;
  font-size:14px;
}
.q-cookie__content a{
  color:#fff;
  text-decoration:underline;
}
.q-cookie__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.q-legal-meta{
  display:grid;
  gap:10px;
  margin-top:18px;
  color:var(--imutive-muted);
}
.q-legal-meta p{
  margin:0;
}
.q-legal-note{
  margin-top:18px;
  padding:16px 18px;
  border:1px solid rgba(27,38,62,.10);
  border-radius:16px;
  background:#fff;
}
.q-legal-note p{
  margin:0;
  color:var(--imutive-muted);
  line-height:1.7;
}

@media (max-width:1100px){
  .q-footer__grid--enterprise{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width:820px){
  .q-cookie{
    padding:0 0 12px;
  }
  .q-cookie__inner{
    grid-template-columns:1fr;
    align-items:flex-start;
    padding:16px;
  }
  .q-cookie__actions{
    width:100%;
    justify-content:flex-start;
  }
}
