/*!
 * Bootstrap v5.0.1 (https://getbootstrap.com/)
 * Copyright 2011-2021 The Bootstrap Authors
 * Copyright 2011-2021 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/main/LICENSE)
 */

:root{
  /* LIGHT MODE BASE */
  --bg: #ffffff;

  --panel: rgba(0,0,0,.03);
  --panel2: rgba(0,0,0,.05);
  --stroke: rgba(0,0,0,.08);

  --text: #383838;
  --muted: rgba(0,0,0,.65);
  --muted2: rgba(0,0,0,.45);

  /* BRAND GRADIENT */
  --grad-main: linear-gradient(
    45deg,
    #ff9068,
    #fd746c,
    #ff6b6b,
    #ffab74,
    #ffc980
  );

  --grad-soft: linear-gradient(
    135deg,
    rgba(255,144,104,.9),
    rgba(253,116,108,.9)
  );

  --radius: 22px;
  --radius2: 28px;

  --shadow: 0 14px 40px rgba(0,0,0,.12);
}



*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
  overflow-x:hidden;
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(var(--max), calc(100% - 2*var(--pad)));
  margin-inline:auto;
}

.section{
  padding: clamp(54px, 7vw, 100px) 0;
  position:relative;
}

/* Ambient background */
.ambient{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  overflow:hidden;
}

.blob{
  position:absolute;
  width:520px;
  height:520px;
  border-radius:50%;
  filter: blur(80px);
  opacity:.50;
  background: var(--grad-main);
  animation: float 18s ease-in-out infinite alternate;
}

.b1{
  top:-180px;
  left:-180px;
}

.b2{
  bottom:-220px;
  right:-220px;
  animation-delay: 4s;
}

@keyframes float{
  0%{ transform: translate(0,0) scale(1); }
  100%{ transform: translate(60px, -40px) scale(1.1); }
}

/* Grain stays neutral */
.grain{
  position:absolute;
  inset:0;
  opacity:.12;
  mix-blend-mode: overlay;
}

/* NAV */
.nav-wrap{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter: blur(18px);
  background: rgba(255,255,255,.8);
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.nav{
  width:min(var(--max), calc(100% - 2*var(--pad)));
  margin-inline:auto;
  padding: 14px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}
.brand-dot{
  width:25px;
  height:25px;
  border-radius:999px;
  /* background: linear-gradient(135deg, var(--accent2), var(--accent)); */
  box-shadow: 0 0 0 6px rgb(255 121 121 / 12%);
  margin-right: 5px;
}
.nav-links{
  display:flex; gap:18px;
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgb(64 64 64 / 3%);
}
.nav-links a{
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  transition: .2s ease;
}
.nav-links a small{
  opacity:.55;
  margin-left:6px;
}
.nav-links a:hover{
  color: var(--text);
  background: rgb(121 121 121 / 6%);
}

.nav-cta{
  display:flex; align-items:center; gap:10px;
}
.burger{
  display:none;
  width:40px;
  height:40px;
  border-radius: 999px;
  background: rgba(117, 117, 117, 0.04);
  border: 1px solid rgba(62, 62, 62, 0.1);
  cursor:pointer;
}
.burger span{
  display:block;
  width:18px; height:2px;
  background: rgba(255,255,255,.78);
  margin: 0 auto;
  border-radius: 2px;
  transition:.22s ease;
}
.burger span:first-child{ transform: translateY(-4px); }
.burger span:last-child{ transform: translateY(4px); }

.drawer{
  display:none;
  width:min(var(--max), calc(100% - 2*var(--pad)));
  margin: 0 auto 14px;
  padding: 12px;
  border-radius: var(--radius);
  border:1px solid rgba(255,255,255,.08);
  background: rgb(251 240 238);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}
.drawer a{
  display:flex; justify-content:space-between;
  padding: 12px 12px;
  border-radius: 14px;
  color: var(--muted);
}
.drawer a:hover{ background: rgba(255,255,255,.06); color: var(--text); }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 13px;
  border: 1px solid rgba(255,255,255,.14);
  transition: .22s ease;
  cursor:pointer;
  user-select:none;
}
.btn-primary{
  background: var(--grad-main);
  color: #ffffff;
  border: none;
}

.btn-primary:hover{
  transform: translateY(-1px);
  filter: brightness(1.05);
}
.btn-ghost{
  background: rgba(117, 117, 117, 0.04);
  border: 1px solid rgba(62, 62, 62, 0.1);
}
.btn-ghost:hover{ background: rgba(255,255,255,.10); transform: translateY(-1px); }

/* HERO */
.hero{ padding-top: clamp(36px, 5vw, 70px); }
.hero-grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(18px, 3.2vw, 32px);
  align-items: start;
}
.kicker{
  display:flex; align-items:center; gap:10px;
  color: var(--muted);
  font-size: 13px;
}
.k-dot{
  width:6px;height:6px;border-radius:999px;
  background: rgb(254 128 106);
}
.headline{
  margin: 14px 0 10px;
  font-size: clamp(34px, 4.2vw, 62px);
  line-height: 1.02;
  letter-spacing: -1.2px;
}
.accent{
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.subhead{
  margin: 0 0 18px;
  color: var(--muted);
  max-width: 54ch;
  line-height: 1.55;
}
.hero-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.hero-note{
  margin-top: 16px;
  display:flex; gap:10px; flex-wrap:wrap;
}
.pill{
  display:inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color: var(--muted);
  font-size: 12px;
}
.pill-ghost{ background: rgba(255,255,255,.03); }

.hero-card{
  border-radius: var(--radius2);
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  overflow:hidden;
  box-shadow: var(--shadow);
}
.hero-visual{
  height: min(420px, 46vw);
  overflow:hidden;
}
.hero-visual img{
  width:100%; height:100%;
  object-fit: cover;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.02);
}
.hero-card-bottom{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  padding: 15px 25px;
  border-top:1px solid rgba(255,255,255,.08);
}
.blob-container-an {
  width: 75%;
  max-width: 75%;
  padding: 0;
  margin: 30px 30px 50px;
  overflow: hidden;
}

.blob-an {
  width: 80%;
  aspect-ratio: 1;  /* mantiene la proporción cuadrada */
  background: linear-gradient(135deg, #ff6c6b, #ffa974);
  border-radius: 43% 57% 60% 40% / 50% 40% 60% 50%;
  animation: blobMorph 8s ease-in-out infinite;
  margin-left: 30px;
    margin-bottom: 20px;
}

@keyframes blobMorph {
  0%, 100% {
    border-radius: 43% 57% 60% 40% / 50% 40% 60% 50%;
  }
  33% {
    border-radius: 60% 40% 30% 70% / 40% 60% 30% 70%;
  }
  66% {
    border-radius: 50% 60% 20% 80% / 60% 30% 50% 40%;
  }
}
.mini{ display:flex; flex-direction:column; gap:4px; }
.mini-title{ font-size: 11px; color: var(--muted2); text-transform: uppercase; letter-spacing:.12em; }
.mini-value{ font-size: 13px; color: var(--muted); }

/* Marquee */
.marquee{
  margin-top: 90px;
  border-top: 1px solid rgb(114 114 114 / 9%);
  border-bottom:1px solid rgb(114 114 114 / 9%);
  padding: 14px 0;
  overflow:hidden;
}
.marquee-track{
  display:flex; align-items:center;
  gap: 18px;
  white-space: nowrap;
  animation: marquee 26s linear infinite;
  color: #595857;
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: 12px;
}
.marquee-track i{
  width:6px;height:6px;border-radius:999px;
  background: rgba(255,255,255,.26);
  display:inline-block;
}
@keyframes marquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* Section headings */
.section-head{ margin-bottom: 22px; }
.eyebrow{
  color: var(--muted);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.h2{
  margin: 10px 0 8px;
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.8px;
  line-height: 1.08;
}
.p{
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  max-width: 70ch;
}
.muted{ color: var(--muted2); }

.head-row{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 760px){

  /* Asegura que el hero en general quede 1 columna*/
  .hero-grid{
    grid-template-columns: 1fr;
  }

  /* La sección derecha sigue ABAJO, pero adentro se vuelve 2 columnas */
  .hero-right{
    display: grid;
    grid-template-columns: 110px 1fr; /* blob | textos */
    gap: 35px;
    align-items: center;
    margin-top: 14px; /* separa del bloque superior */
  }

  /* Blob más pequeño */
  .blob-container-an{
    width: 110px;
    height: 110px;
    display: grid;
    place-items: center;
    justify-self: start;
    max-width: 90%;
  }

  /* Si el blob es grande por default, lo escalamos */
  .blob-an{
    transform: scale(1.2);
    transform-origin: center;
    margin: 0;
  }

  /* La card ocupa la segunda columna */
  .hero-right .hero-card{
    width: 90%;
    justify-self: stretch;
  }

  /* Textos en COLUMNA */
  .hero-card-bottom{
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding: 15px 20px;
  }

  .mini-value {
    font-size: 11px;
  }

  .marquee {
    margin-top: 0px; 
  }
}

@media (max-width: 380px){
  .hero-right{
    grid-template-columns: 92px 1fr;
  }
  .blob-container-an{
    width: 92px;
    height: 92px;
  }
  .blob-an{
    transform: scale(1.2);
    margin: 0;
  }
}

/* Cards */
.card{
  border-radius: var(--radius);
  background: #ffffff;
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

/* Steps */
.steps{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.step{ padding: 18px; }
.step-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 10px;
}
.num{
  font-weight: 800;
  letter-spacing: -.03em;
  color: rgba(255,255,255,.78);
}
.tag{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: none;
  background: var(--grad-soft);
  color: #ffffff;
  /* background: linear-gradient(135deg, rgba(118,255,179,.92), rgba(199,249,255,.92)); */
}
.tag-ghost{
  background: rgb(243 243 243);
  color: var(--muted);
}
.step h3{ margin: 0 0 8px; font-size: 16px; }
.step p{ margin: 0; color: var(--muted); line-height:1.55; }

/* Progress */
.progress{ margin-top: 14px; padding: 18px; }
.progress-row{ display:flex; justify-content:space-between; color: var(--muted); font-size: 13px; }
.bar{
  height: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  overflow:hidden;
  margin: 8px 0 16px;
}
.bar span{
  display:block;
  height:100%;
  width: var(--w);
  background: linear-gradient(90deg, rgba(199,249,255,.95), rgba(167,139,250,.95));
  border-radius: 999px;
  transform-origin:left;
  transform: scaleX(0);
}
.progress-cta{ display:flex; justify-content:flex-end; }

/* Partners + logos */
.partners{
  margin-top: 14px;
  display:flex; align-items:center; gap: 10px;
  flex-wrap:wrap;
}
.logos{ display:flex; gap: 8px; flex-wrap:wrap; }
.logo-pill{
  font-size: 12px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
}

/* Work grid */
.work-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.work-card{
  border-radius: var(--radius2);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.04);
  box-shadow: var(--shadow);
  transition: .22s ease;
}
.work-card:hover{ transform: translateY(-4px); background: rgba(255,255,255,.06); }
.work-media{ aspect-ratio: 16/10; overflow:hidden; }
.work-media img{ width:100%; height:100%; object-fit:cover; transform: scale(1.02); }
.work-meta{
  display:flex; justify-content:space-between; gap: 10px;
  padding: 14px;
  border-top:1px solid rgba(255,255,255,.08);
}
.work-title{ font-weight:700; }

/* Stats */
.stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.stat{ padding: 18px; }
.stat-num{
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 8px;
  background: var(--grad-main);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* work opt2 */
.features3-head{
  margin-bottom: 26px;
}

.features3-list{
  display: grid;
  gap: 18px;
}

.f3-divider{
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(0,0,0,.10),
    transparent
  );
  margin: 6px 0;
}

.f3-item{
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  align-items: center;
  gap: clamp(16px, 3vw, 42px);
  padding: clamp(16px, 2.6vw, 26px) 0;
}

.f3-item.is-reversed{
  grid-template-columns: .8fr 1.2fr;
}
.f3-item.is-reversed .f3-left{ order: 2; }
.f3-item.is-reversed .f3-right{ order: 1; }

.f3-left{
  max-width: 62ch;
}

.f3-num{
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: -2px;
  color: rgba(0,0,0,.12);
  margin-bottom: 10px;
}

.f3-title{
  margin: 0 0 10px;
  font-size: clamp(20px, 2.6vw, 30px);
  letter-spacing: -0.6px;
}

.f3-desc{
  margin: 0 0 14px;
  color: rgba(0,0,0,.62);
  line-height: 1.7;
  font-size: 15px;
}

/* Bullets as clean “rows”, not chips (so it doesn’t look like cards) */
.f3-bullets{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.f3-bullets li{
  position: relative;
  padding-left: 16px;
  color: rgba(0,0,0,.72);
  font-size: 14px;
  line-height: 1.4;
}

.f3-bullets li::before{
  content: "";
  position: absolute;
  left: 0;
  top: .55em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--grad-main);
  opacity: .9;
}

/* Screenshot small + stylish */
.f3-shot{
  width: min(320px, 86%);
  margin-left: auto;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.10);
  box-shadow: 0 18px 55px rgba(0,0,0,.12);
  transform: rotate(-6deg) translateY(4px);
  transform-origin: center;
}

.f3-shot.tilt-alt{
  transform: rotate(6deg) translateY(4px);
}

.f3-shot img{
  width: 100%;
  height: auto;
  display: block;
}

/* Subtle “glow” behind the screenshot using gb palette */
.f3-right{
  position: relative;
  display: grid;
  place-items: center;
}
.f3-right::before{
  content:"";
  position:absolute;
  width: 260px;
  height: 260px;
  border-radius: 999px;
  background: var(--grad-main);
  filter: blur(90px);
  opacity: .18;
  z-index: -1;
}

/* Responsive */
@media (max-width: 900px){
  .f3-item,
  .f3-item.is-reversed{
    grid-template-columns: 1fr;
  }
  .f3-item.is-reversed .f3-left,
  .f3-item.is-reversed .f3-right{
    order: initial;
  }
  .f3-shot{
    width: min(360px, 100%);
    margin: 10px auto 0;
    transform: rotate(-4deg);
  }
  .f3-shot.tilt-alt{
    transform: rotate(4deg);
  }
  .f3-right::before{
    width: 220px;
    height: 220px;
  }
}

/* Services */
.service-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.service{ padding: 18px; min-height: 180px; }
.service-top{ display:flex; align-items:center; justify-content:space-between; }
.service-ico{
  width:40px;height:40px;border-radius: 14px;
  display:grid; place-items:center;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);
  font-size: 150%;
  color: #ff8779;
}
.service h3{ margin: 12px 0 8px; }
.service p{ margin: 0; color: var(--muted); line-height:1.55; }

/* Carousel */
.carousel{
  overflow:hidden;
  padding: 0;
}
.carousel-track{
  display:flex;
  transition: transform .5s cubic-bezier(.2,.9,.1,1);
}
.t-item{
  min-width: 100%;
  padding: 25px;
}
.t-item p{
  margin: 0 0 14px;
  font-size: 16px;
  line-height: 1.6;
  color: rgb(56 56 56);
}
.t-meta{ display:flex; flex-direction:column; gap:4px; }
.t-name{ 
  font-weight: 800;
  color: #fe8075;
 }

/* Pricing toggle */
.toggle{
  position:relative;
  display:inline-flex;
  border-radius: 999px;
  border:1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.05);
  padding: 4px;
  overflow:hidden;
}
.toggle-btn{
  position:relative;
  z-index:2;
  border:0;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 12px;
  padding: 10px 14px;
  border-radius: 999px;
  cursor:pointer;
}
.toggle-btn.is-active{ color: rgba(255, 255, 255, 0.92); }
.toggle-bg{
  position:absolute; inset:4px;
  width: calc(50% - 4px);
  border-radius: 999px;
  background: var(--grad-soft);
  transform: translateX(0);
  transition: .28s cubic-bezier(.2,.9,.1,1);
}
.toggle[data-mode="annual"] .toggle-bg{ transform: translateX(100%); }

/* Pricing cards */
.pricing{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.price{ padding: 18px; }
.price-top{
  display:flex; align-items:center; justify-content:space-between;
  margin-bottom: 12px;
}
.badge{
  font-size: 11px;
  padding: 6px 10px;
  border-radius: 999px;
  border: none;
  background: var(--grad-soft);
  color: #ffffff;
}
.badge-ghost{
  background: rgb(243 243 243);
  color: var(--muted);
}
.price-num{
  display:flex; align-items:flex-end; gap:8px;
  margin: 10px 0 14px;
}
.currency{ 
  font-weight:800; 
  color: rgb(56 56 56);
  font-size: 35px;
  margin-bottom: 4px;
}
.amount{
  font-size: 44px;
  font-weight: 900;
  letter-spacing: -1px;
}
.per{ margin-bottom: 6px; }
.list{
  margin: 0 0 16px;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.8;
}
.featured{
  outline: 1px solid rgba(255,144,104,.35);
  background:
    radial-gradient(circle at 30% 0%, rgba(255,144,104,.25), transparent 45%),
    rgba(255,255,255,.05);
}

/* =========================
   Q&A / FAQ SECTION
========================= */

.qa{
  position: relative;
}

.qa-list{
  max-width: 820px;
  margin-top: 24px;
}

/* Each question */
.qa-item{
  border-bottom: 1px solid rgba(0,0,0,.10);
  padding: 16px 0;
}

/* Remove default marker */
.qa-item summary{
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: rgba(0,0,0,.85);
}

.qa-item summary::-webkit-details-marker{
  display: none;
}

/* Icon */
.qa-icon{
  width: 18px;
  height: 18px;
  position: relative;
  flex-shrink: 0;
}

.qa-icon::before,
.qa-icon::after{
  content:"";
  position:absolute;
  background: rgba(0,0,0,.55);
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease;
}

.qa-icon::before{
  width: 18px;
  height: 2px;
  top: 8px;
  left: 0;
}

.qa-icon::after{
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}

/* Open state */
.qa-item[open] .qa-icon::after{
  transform: scaleY(0);
  opacity: 0;
}

/* Answer */
.qa-content{
  margin-top: 12px;
  padding-right: 34px;
  font-size: 15px;
  line-height: 1.65;
  color: rgba(0,0,0,.65);
}

/* Hover */
.qa-item summary:hover{
  color: #000;
}

/* Responsive */
@media (max-width: 640px){
  .qa-item summary{
    font-size: 15px;
  }
  .qa-content{
    font-size: 14px;
    padding-right: 0;
  }
}

/* Contact */
.contact{
  padding: 30px;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 14px;
  align-items:start;
}
.contact-list{
  margin: 18px 0 24px;
  display: grid;
  gap: 14px;
}

/* row */
.contact-row{
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}

/* icon box (ONLY element with background) */
.contact-ico{
  width: 35px;
  height: 35px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;

  background: linear-gradient(
    45deg,
    rgba(255,144,104,.35),
    rgba(253,116,108,.35),
    rgba(255,107,107,.30),
    rgba(255,171,116,.30),
    rgba(255,201,128,.30)
  );
  color: #1a1a1a;
}

.contact-ico svg{
  width: 22px;
  height: 22px;
}

/* text */
.contact-text{
  display: grid;
  gap: 2px;
  line-height: 1.2;
}

.contact-label{
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(0,0,0,.50);
  font-weight: 700;
}

.contact-value{
  font-size: 14px;
  font-weight: 400;
  color: rgb(56 56 56);
}

/* hover (subtle, no background) */
.contact-row:hover .contact-value{
  text-decoration: underline;
}


.form .input{
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  margin-bottom: 10px;

  /* Base */
  background: rgba(255,255,255,.92);
  color: #121212;

  /* Visible border */
  border: 1px solid rgba(0,0,0,.14);

  /* Subtle depth */
  /* box-shadow: 0 10px 26px rgba(0,0,0,.06); */

  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease, background .18s ease;
}

/* Placeholder readable */
.form .input::placeholder{
  color: rgba(0,0,0,.45);
}

/* Textarea */
.form textarea.input{
  resize: vertical;
  min-height: 120px;
}

/* Hover */
.form .input:hover{
  border-color: rgba(0,0,0,.22);
  box-shadow: 0 14px 32px rgba(0,0,0,.08);
}

/* Focus: gradient glow (matches palette) */
.form .input:focus{
  border-color: rgba(253,116,108,.75);
  background: #ffffff;

  box-shadow:
    0 0 0 5px rgba(253,116,108,.18),
    0 0 0 11px rgba(255,144,104,.10),
    0 16px 42px rgba(0,0,0,.10);

  transform: translateY(-1px);
}

/* Make autofill not ugly (Chrome) */
input:-webkit-autofill,
textarea:-webkit-autofill{
  -webkit-text-fill-color: #121212;
  transition: background-color 9999s ease-in-out 0s;
  box-shadow: 0 0 0px 1000px rgba(255,255,255,.92) inset;
}

/* Optional: if we add <label> */
.form label{
  color: rgba(0,0,0,.65);
  font-size: 12px;
  letter-spacing: .04em;
  margin-bottom: 6px;
  display: inline-block;
}

/* .footer{
  margin-top: 26px;
  display:flex;
  justify-content:space-between;
  gap: 12px;
  padding: 18px 0 6px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-links{ display:flex; gap: 12px; }
.footer-links a{ color: var(--muted); }
.footer-links a:hover{ color: var(--text); } */

/* ===== Scroll animations (not subtle) ===== */
[data-anim]{
  opacity: 0;
  transform: translateY(18px);
  filter: blur(8px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.1,1), filter .7s ease;
  will-change: transform, opacity;
}
.is-in{
  opacity: 1 !important;
  transform: none !important;
  filter: none !important;
}

/* Variants */
[data-anim="fade-up"]{ transform: translateY(22px); }
[data-anim="slide-left"]{ transform: translateX(-26px) rotate(-.6deg); }
[data-anim="slide-right"]{ transform: translateX(26px) rotate(.6deg); }
[data-anim="zoom-pop"]{ transform: scale(.92); }
[data-anim="card-flip"]{ transform: perspective(900px) rotateX(9deg) rotateY(-10deg) translateY(16px); }
[data-anim="rise-slice"]{ transform: translateY(28px) skewY(1.4deg); }
[data-anim="stagger-pop"]{ transform: translateY(18px) scale(.96); }

/* Bars animate when parent enters */
.progress.is-in .bar span{
  transform: scaleX(1);
  transition: transform 1.1s cubic-bezier(.2,.9,.1,1);
}


/* footer */
.footer-wrap{
  position: relative;
}

/* Wave */
.shape-footer{
  width: 100%;
  line-height: 0;
  /* margin-bottom: -2px; */
  /* background: #0f1720; */
  /* fill: #0f1720; */
}
.shape-footer svg{
  display: block;
  width: 100%;
  height: 140px;
  shape-rendering: geometricPrecision;
}
.shape-footer path{
  background: #0f1720;
  fill: #0f1720;
}

/* Footer body */
.footer{
  background: #0f1720;
  fill: #0f1720;
  color: rgba(255,255,255,.86);
  position: relative;
  margin-top: 0;
}

.footer::before{
  content:"";
  position:absolute;
  inset: 0;
  pointer-events:none;
  background:
    radial-gradient(circle at 20% 0%, rgba(255,144,104,.16), transparent 42%),
    radial-gradient(circle at 80% 10%, rgba(253,116,108,.12), transparent 48%);
  filter: blur(10px);
  opacity: .9;
}

.footer-grid{
  position: relative;
  padding: 42px 0 22px;
  display: grid;
  grid-template-columns: 1.4fr .8fr .9fr;
  gap: 28px;
}

.footer-title{
  margin: 0 0 14px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.2px;
  color: #fff;
}

.footer-text{
  margin: 0 0 16px;
  color: rgba(255,255,255,.65);
  line-height: 1.7;
  font-size: 14px;
  max-width: 42ch;
}

.footer-links{
  display: grid;
  gap: 10px;
}

.footer-links a{
  color: rgba(255,255,255,.70);
  text-decoration: none;
  font-size: 14px;
}
.footer-links a:hover{
  color: #fff;
}

/* Contact info */
.footer-info p{
  margin: 0 0 10px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
}
.footer-info span{
  color: rgba(255,255,255,.92);
  font-weight: 700;
}

/* Social */
.footer-social{
  display: flex;
  gap: 10px;
}
.social{
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.78);
  text-decoration: none;
  background: rgba(255,255,255,.04);
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.social:hover{
  transform: translateY(-2px);
  border-color: rgba(255,144,104,.45);
  background: rgba(255,144,104,.10);
}

/* Newsletter */
.footer-form{
  display: grid;
  grid-template-columns: 1fr 52px;
  gap: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.04);
}

.footer-input{
  border: none;
  outline: none;
  padding: 14px 14px;
  background: transparent;
  color: #fff;
  font-size: 14px;
}
.footer-input::placeholder{
  color: rgba(255,255,255,.55);
}

.footer-btn{
  border: none;
  cursor: pointer;
  background: linear-gradient(45deg, #ff9068, #fd746c, #ff6b6b, #ffab74, #ffc980);
  color: #1a1a1a;
  font-weight: 900;
  font-size: 16px;
}
.footer-btn:hover{
  filter: brightness(1.05);
}

.footer-small{
  margin-top: 12px;
  color: rgba(255,255,255,.60);
  font-size: 13px;
  line-height: 1.6;
}

/* Bottom */
.footer-bottom{
  position: relative;
  padding: 18px 0 28px;
  border-top: 1px solid rgba(255,255,255,.10);
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: rgba(255,255,255,.62);
  font-size: 13px;
}

.footer-made{
  color: rgba(255,255,255,.52);
}

/* Responsive */
@media (max-width: 1024px){
  .footer-grid{
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 640px){
  .shape-footer svg{ height: 110px; }
  .footer-grid{
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}


/* Responsive */
@media (max-width: 980px){
  .hero-grid{ grid-template-columns: 1fr; }
  .hero-visual{ height: 44vh; min-height: 320px; }
  .service-grid{ grid-template-columns: repeat(2, 1fr); }
  .contact{ grid-template-columns: 1fr; }
}
@media (max-width: 760px){
  .nav-links{ display:none; }
  .burger{ display:inline-grid; place-items:center; }
  .drawer.show{ display:grid; gap: 6px; }
  .work-grid{ grid-template-columns: 1fr; }
  .steps{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .headline{ letter-spacing: -1px; }
}
/* =========================
   RESPONSIVE IMPROVEMENTS
========================= */

/* Better fluid spacing + type */
:root{
  --pad: clamp(16px, 4vw, 34px);
  --max: 1160px;

  --h1: clamp(34px, 6.4vw, 64px);
  --h2: clamp(24px, 4.4vw, 44px);
  --lead: clamp(14px, 1.9vw, 16px);
}

.section{
  padding: clamp(40px, 6vw, 110px) 0;
}

/* Prevent body scroll when drawer open */
body.no-scroll{ overflow: hidden; }

/* Make navbar more stable on small screens */
.nav{
  padding: 12px 0;
}
.nav-links{
  gap: 10px;
}
.nav-links a{
  padding: 8px 10px;
}

/* Drawer: full width feel on mobile, better tap targets */
.drawer{
  display:none;
}
.drawer.show{
  display:grid;
}
.drawer a{
  font-size: 14px;
  padding: 14px 14px;
}

/* HERO: nicer stacking + spacing */
.hero-grid{
  grid-template-columns: 1.5fr .9fr;
  align-items: stretch;
}
.headline{
  font-size: var(--h1);
  line-height: 1.03;
}
.subhead{
  font-size: var(--lead);
  max-width: 60ch;
}

/* Hero card always looks good */
.hero-card{
  /* height: 100%; */
}
.hero-visual{
  height: min(460px, 44vw);
}
.hero-card-bottom{
  grid-template-columns: 1fr 1fr;
}

/* Keep cards consistent heights in grids */
.steps, .service-grid, .pricing, .stats, .work-grid{
  align-items: stretch;
}
.step, .service, .price, .stat{
  height: 100%;
}

/* Work cards: better aspect on smaller screens */
.work-media{
  aspect-ratio: 16/10;
}

/* Marquee: don’t overwhelm small screens */
.marquee{
  padding: 12px 0;
}
.marquee-track{
  font-size: 11px;
  letter-spacing: .14em;
}

/* Improve readability on very wide screens */
.container{
  width: min(var(--max), calc(100% - 2*var(--pad)));
}

/* =========================
   BREAKPOINTS
========================= */

@media (max-width: 1024px){
  .hero-grid{
    grid-template-columns: 1fr;
    gap: 0px;
  }

  .hero-right{
    order: 2;
    margin-top: 0;
  }
  .hero-left{
    order: 1;
  }

  .hero-visual{
    height: 46vh;
    min-height: 320px;
  }

  .service-grid{
    grid-template-columns: repeat(2, 1fr);
  }

  .stats{
    grid-template-columns: repeat(3, 1fr);
  }

  .contact{
    grid-template-columns: 1fr;
  }
}

/* Phones */
@media (max-width: 760px){
  /* Hide pill nav links; use burger */
  .nav-links{ display:none; }
  .burger{ display:inline-grid; place-items:center; }

  /* Hero: tighter, more premium */
  .kicker{ font-size: 12px; }
  .hero-actions{
    width: 100%;
    gap: 10px;
  }
  .hero-actions .btn{
    flex: 1 1 auto;
    min-height: 44px;
  }

  .hero-note{
    gap: 8px;
  }

  /* Grids become single-column */
  .steps{ grid-template-columns: 1fr; }
  .work-grid{ grid-template-columns: 1fr; }
  .stats{ grid-template-columns: 1fr; }
  .pricing{ grid-template-columns: 1fr; }
  .service-grid{ grid-template-columns: 1fr; }

  /* Reduce card padding slightly */
  .card.step, .card.service, .card.price, .card.stat, .progress, .contact{
    padding: 16px;
  }

  /* Better section head spacing */
  .section-head{
    margin-bottom: 18px;
  }

  /* Footer stack */
  .footer{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

/* ipdas / tablets */
@media screen and (min-width: 768px) and (max-width: 1024px){
  .blob-an{
    transform: scale(1);
    transform-origin: center;
    margin: 0;
  }
  .blob-container-an {
    width: 110%;
    max-width: 100%; 
    margin: 25px 25px 50px;
  }
  .hero-grid{
    grid-template-columns: 1fr;
  }

  /* La sección derecha sigue ABAJO, pero adentro se vuelve 2 columnas */
  .hero-right{
    display: grid;
    grid-template-columns: 110px 1fr; /* blob | textos */
    gap: 45px;
    align-items: center;
    margin-top: 14px; /* separa del bloque superior */
  }
  /* La card ocupa la segunda columna */
  .hero-right .hero-card{
    width: 90%;
    justify-self: stretch;
  }

  /* Textos en COLUMNA */
  .hero-card-bottom{
    grid-template-columns: 1fr !important;
    gap: 10px;
    padding: 15px 20px;
  }
  .mini-value {
    font-size: 13px;
  }
  .marquee {
    margin-top: 0px; 
  }

  .nav-links a {
    font-size: 11px; 
  }
}

/* Very small phones */
@media (max-width: 380px){
  .marquee {
    margin-top: 24px;
  }
  .headline{
    letter-spacing: -0.8px;
  }
  .btn{
    padding: 12px 14px;
  }
  .hero-visual{
    min-height: 280px;
  }
}




/* =========================
   BLOG LIST
========================= */
/* HERO */
.blogHero{
  padding: 90px 0 28px;
}
.blogHero-top{
  display:flex;
  align-items:center;
  gap: 12px;
  flex-wrap: wrap;
}
.blogHero-chip{
  font-size: 12px;
  font-weight: 800;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: rgba(0,0,0,.03);
  color: rgba(0,0,0,.75);
}
.blogHero-title{
  margin: 14px 0 10px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 1.05;
  letter-spacing: -1.4px;
}
.blogHero-sub{
  max-width: 72ch;
  color: rgba(0,0,0,.62);
  line-height: 1.7;
  font-size: 16px;
}

/* GRID */
.blogIndex{ padding-top: 20px; }

.blogGrid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

/* “Card” pero sin fondo: solo borde + aire + hover */
.blogCard{
  text-decoration:none;
  color: inherit;
  padding: 18px 0 14px;
  border-top: 1px solid rgba(0,0,0,.10);
  transition: transform .22s ease;
  min-height: 220px;
  display:flex;
  flex-direction: column;
}
.blogCard:hover{ transform: translateY(-4px); }

.blogCard-meta{
  display:flex;
  align-items:center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.blogPill{
  font-size: 11px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,144,104,.18);
  border: 1px solid rgba(253,116,108,.16);
  color: rgba(0,0,0,.78);
}
.blogMeta{
  font-size: 12px;
  color: rgba(0,0,0,.45);
  white-space: nowrap;
}

.blogCard-title{
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.3px;
}

.blogCard-excerpt{
  margin: 0;
  color: rgba(0,0,0,.62);
  line-height: 1.6;
  font-size: 14px;
  max-width: 52ch;
}

.blogCard-foot{
  margin-top: auto;
  padding-top: 14px;
  display:flex;
  align-items:center;
  gap: 10px;
  color: rgba(0,0,0,.62);
  font-size: 13px;
}
.blogAuthorDot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--grad-main);
  opacity: .9;
}
.blogArrow{
  margin-left: auto;
  color: rgba(0,0,0,.45);
  transition: transform .22s ease;
}
.blogCard:hover .blogArrow{ transform: translateX(3px); }

/* CTA */
.blogCTA{
  margin-top: 46px;
  border-top: 1px solid rgba(0,0,0,.10);
  padding-top: 34px;
}
.blogCTA-inner{
  border-radius: 22px;
  padding: 22px;
  border: 1px solid rgba(0,0,0,.10);
  background:
    radial-gradient(circle at 20% 0%, rgba(255,144,104,.20), transparent 52%),
    radial-gradient(circle at 80% 20%, rgba(255,201,128,.16), transparent 55%),
    rgba(0,0,0,.02);
}
.blogCTA-title{
  margin: 0 0 8px;
  font-size: 20px;
  letter-spacing: -0.3px;
}
.blogCTA-sub{
  margin: 0 0 16px;
  color: rgba(0,0,0,.62);
  line-height: 1.6;
}
.blogCTA-form{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.blogCTA-input{
  flex: 1 1 260px;
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,.14);
  background: rgba(255,255,255,.8);
  outline: none;
}
.blogCTA-input::placeholder{
  color: rgba(0,0,0,.45);
}
.blogCTA-note{
  margin: 10px 0 0;
  font-size: 12px;
  color: rgba(0,0,0,.50);
}

/* cards opt2 */
.blogGrid2{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; /* separación entre cards */
  margin-top: 22px;
}

/* Card */
.blogCard2{
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px 22px;
  border-radius: 22px;
  background: #fff;
  border: 1px solid rgba(0,0,0,.06);
  text-decoration: none;
  color: inherit;

  /* sombra sutil + premium */
  box-shadow:
    0 18px 55px rgba(0,0,0,.08),
    0 2px 10px rgba(0,0,0,.04);

  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

/* hover */
.blogCard2:hover{
  transform: translateY(-4px);
  border-color: rgba(253,116,108,.18);
  box-shadow:
    0 24px 70px rgba(0,0,0,.10),
    0 3px 14px rgba(0,0,0,.05);
}

/* top meta row */
.blogCard2-top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

/* tag pill */
.blogPill2{
  font-size: 11px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  /* border: 1px solid rgba(253,116,108,.18); */
  background: rgb(80 190 255 / 14%);
  color: rgb(0 139 229);
}
.blog-green{
  background: rgb(32 255 53 / 14%) !important;
  color: rgb(8 199 0) !important;
}
.blog-orange{
  background: rgb(255 144 0 / 21%) !important;
  color: rgb(255 125 0) !important;
}
.blog-pink{
  background: rgb(255 98 158 / 14%) !important;
  color: rgb(255 49 124) !important;
}

/* date */
.blogMeta2{
  font-size: 12px;
  color: rgba(0,0,0,.45);
  white-space: nowrap;
}

.blogCard2-title{
  margin: 0;
  font-size: 20px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  color: rgb(56 56 56);
}

.blogCard2-excerpt{
  margin: 0;
  color: rgba(0,0,0,.62);
  line-height: 1.6;
  font-size: 14px;
  max-width: 60ch;
}

/* footer row */
.blogCard2-foot{
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

/* author */
.author2{
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.author2-avatar{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  object-fit: cover;
  border: 1px solid rgba(0,0,0,.08);
}

.author2-name{
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,.70);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* arrow */
.blogArrow2{
  width: 36px;
  height: 36px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,.08);
  background: rgba(0,0,0,.02);
  color: rgba(0,0,0,.55);
  transition: transform .22s ease, background .22s ease, border-color .22s ease;
}

.blogCard2:hover .blogArrow2{
  transform: translateX(2px);
  background: rgba(255,144,104,.10);
  border-color: rgba(253,116,108,.18);
}

.newsletter-message{
  margin-top: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #00b34f;
  background: #e7f8ee;
  border-radius: 12px;
  padding: 10px 16px;
  width: fit-content;
  display: none;
}

/* =========================
   PAGINATION
========================= */
.pagination{
  margin-top: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.page-btn,
.page-num{
  text-decoration: none;
  color: rgba(0,0,0,.78);
  font-weight: 700;
  font-size: 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  padding: 10px 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease;
}

.page-btn:hover,
.page-num:hover{
  transform: translateY(-2px);
  border-color: rgba(253,116,108,.18);
  box-shadow: 0 16px 40px rgba(0,0,0,.08);
}

.page-numbers{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px;
  border-radius: 999px;
  background: rgba(0,0,0,.02);
  border: 1px solid rgba(0,0,0,.06);
}

.page-num{
  padding: 10px 12px;
  min-width: 40px;
  text-align: center;
  box-shadow: none; 
}

.page-num.is-active{
  border-color: rgba(253,116,108,.22);
  background: linear-gradient(
    45deg,
    rgba(255,144,104,.16),
    rgba(253,116,108,.14),
    rgba(255,107,107,.12),
    rgba(255,171,116,.12),
    rgba(255,201,128,.12)
  );
  color: rgba(0,0,0,.88);
}

/* Disabled */
.page-btn.is-disabled{
  opacity: .45;
  pointer-events: none;
  box-shadow: none;
  cursor: not-allowed !important;
}

/* Ellipsis */
.page-ellipsis{
  padding: 0 6px;
  color: rgba(0,0,0,.40);
  font-weight: 800;
}

/* Responsive */
@media (max-width: 560px){
  .pagination{
    justify-content: space-between;
  }
  .page-numbers{
    gap: 8px;
  }
  /* opcional: ocultar ellipsis en móvil si estorba */
  .page-ellipsis{
    display: none;
  }
}

/* Responsive */
@media (max-width: 1024px){
  .blogGrid2{ grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px){
  .blogGrid2{ grid-template-columns: 1fr; }
  .blogCard2{ padding: 18px; border-radius: 20px; }
}

/* Responsive */
@media (max-width: 1024px){
  .blogGrid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px){
  .blogHero{ padding-top: 70px; }
  .blogGrid{ grid-template-columns: 1fr; }
  .blogCard{ min-height: auto; }
}


/* =========================
   BLOG POST
========================= */

.blog-post{
  padding-top: 32px;
}

.post-head{
  max-width: 80ch;
  margin-bottom: 28px;
}

.post-title{
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.1;
  margin: 10px 0;
}

.post-meta{
  font-size: 14px;
  color: rgba(0,0,0,.5);
}

.post-content{
  max-width: 70ch;
  line-height: 1.75;
  font-size: 16px;
}

.post-content h2{
  margin-top: 28px;
  font-size: 22px;
}

.post-media{
  margin: 28px 0;
}

.post-media img{
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.post-media figcaption{
  font-size: 13px;
  color: rgba(0,0,0,.5);
  margin-top: 8px;
}

