/* =========================================================
   STYLES.CSS - SOLUCIONES DAWILTEC
   ========================================================= */

/* ===== VARIABLES ===== */
:root{
  --bg:#060913;
  --bg2:#0a1122;
  --bg3:#0f1930;
  --panel:rgba(255,255,255,.04);
  --panel-2:rgba(255,255,255,.06);
  --text:#EAF0FF;
  --muted:#B8C3E6;
  --muted-2:#90a0c8;
  --line:rgba(255,255,255,.10);
  --line-strong:rgba(255,255,255,.16);
  --a1:#6EA8FF;
  --a2:#7CF0C5;
  --a3:#5bd0ff;
  --shadow:0 18px 50px rgba(0,0,0,.32);
  --shadow-soft:0 10px 30px rgba(0,0,0,.18);
  --glow:0 0 0 1px rgba(110,168,255,.16), 0 20px 50px rgba(0,0,0,.25);
  --r:18px;
  --r-lg:24px;
  --max:1140px;
}

/* ===== RESET ===== */
*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
  scroll-padding-top:84px;
}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,Arial,sans-serif;
  background:
    radial-gradient(1000px 500px at 10% 0%, rgba(110,168,255,.20), transparent 60%),
    radial-gradient(900px 480px at 90% 2%, rgba(124,240,197,.10), transparent 58%),
    linear-gradient(180deg,var(--bg2),var(--bg));
  color:var(--text);
  line-height:1.5;
}

img{
  max-width:100%;
  display:block;
}

.container{
  max-width:var(--max);
  margin:0 auto;
  padding:0 20px;
}

/* ===== HEADER / TOPBAR ===== */
.topbar{
  position:sticky;
  top:0;
  z-index:30;
  backdrop-filter:blur(14px);
  background:rgba(7,10,18,.72);
  border-bottom:1px solid var(--line);
  transition:background .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.topbar.scrolled{
  background:rgba(7,10,18,.94);
  box-shadow:0 10px 25px rgba(0,0,0,.25);
  border-color:rgba(255,255,255,.08);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:12px 0;
  min-height:70px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  color:var(--text);
  text-decoration:none;
  min-width:0;
}

.logo{
  width:42px;
  height:42px;
  flex:0 0 auto;
  filter:drop-shadow(0 10px 16px rgba(0,0,0,.22));
}

.logo__bg{
  fill:rgba(255,255,255,.05);
  stroke:rgba(255,255,255,.14);
  stroke-width:1;
}

.logo__mark{
  fill:none;
  stroke:var(--a1);
  stroke-width:5;
  stroke-linecap:round;
  stroke-linejoin:round;
}

.logo__dot{
  fill:var(--a2);
}

.brand__text{
  display:grid;
  line-height:1.05;
}

.brand__name{
  font-weight:900;
  letter-spacing:.2px;
}

.brand__tag{
  color:var(--muted);
  font-size:12px;
}

/* ===== NAV DESKTOP ===== */
.nav{
  display:flex;
  align-items:center;
  gap:8px;
}

.nav a{
  color:var(--muted);
  text-decoration:none;
  padding:10px 12px;
  border-radius:14px;
  transition:all .25s ease;
}

.nav a:hover{
  color:var(--text);
  background:rgba(255,255,255,.05);
}

.nav__cta{
  padding:10px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
}

/* ===== BOTÓN HAMBURGUESA ===== */
.menuBtn{
  display:none;
  align-items:center;
  justify-content:center;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  border-radius:12px;
  padding:8px 10px;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}

/* ===== MENÚ MÓVIL ===== */
.mobileNav{
  display:none;
  gap:8px;
  padding:12px 18px 16px;
  border-top:1px solid var(--line);
}

.mobileNav.active{
  display:grid;
}

.mobileNav a{
  display:block;
  color:var(--muted);
  text-decoration:none;
  padding:12px 14px;
  border:1px solid var(--line);
  border-radius:14px;
  background:rgba(255,255,255,.03);
}

.mobileNav a:hover{
  color:var(--text);
}

/* ===== HERO ===== */
.hero{
  position:relative;
  overflow:hidden;
  padding:68px 0 30px;
}

.hero__bg{
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(560px 280px at 18% 12%, rgba(110,168,255,.16), transparent 70%),
    radial-gradient(480px 260px at 84% 16%, rgba(124,240,197,.08), transparent 70%);
}

.hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns:1.02fr .98fr;
  gap:28px;
  align-items:center;
}

.hero__copy{
  position:relative;
  z-index:2;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.05);
  color:var(--muted);
  font-size:12px;
  letter-spacing:.2px;
  box-shadow:var(--shadow-soft);
}

h1{
  margin:14px 0 14px;
  font-size:clamp(34px, 4.6vw, 58px);
  line-height:1.02;
  letter-spacing:-.02em;
}

.hero h1{
  font-size:clamp(36px, 4.4vw, 56px);
}

.lead{
  color:var(--muted);
  font-size:18px;
  max-width:62ch;
  text-align:justify;
}

.hero__actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}

.btn{
  border:0;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:13px 18px;
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
  color:#071022;
  background:linear-gradient(90deg,var(--a1),var(--a2));
  box-shadow:0 14px 34px rgba(25,40,80,.28);
  transition:transform .25s ease, box-shadow .25s ease, opacity .25s ease;
}

.btn:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 40px rgba(25,40,80,.34);
}

.btn--ghost{
  background:rgba(255,255,255,.03);
  color:var(--text);
  border:1px solid var(--line);
  box-shadow:none;
}

.hero__bullets{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.bullet{
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  box-shadow:var(--shadow-soft);
}

/* ===== PRUEBA SOCIAL HERO ===== */
.hero__proof{
  margin-top:26px;
  padding:18px;
  border:1px solid var(--line);
  border-radius:22px;
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  box-shadow:var(--shadow-soft);
}

.hero__proofTitle{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
}

.logoRow{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:10px;
}

.logoBox{
  min-height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.18);
  background:rgba(255,255,255,.025);
  color:var(--muted-2);
  font-size:13px;
  text-align:center;
  padding:10px;
}

.hero__stats{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.heroStat{
  min-width:120px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.heroStat strong{
  display:block;
  font-size:14px;
}

.heroStat span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
}

/* ===== VISUAL HERO ===== */
.hero__visual{
  position:relative;
}

.heroVisual{
  position:relative;
  min-height:560px;
  display:flex;
  align-items:center;
  justify-content:center;
}

.heroVisual__screen{
  position:relative;
  width:100%;
  max-width:560px;
  border-radius:28px;
  padding:16px;
  background:
    linear-gradient(180deg, rgba(16,26,51,.94), rgba(10,17,33,.92));
  border:1px solid rgba(255,255,255,.12);
  box-shadow:
    0 28px 70px rgba(0,0,0,.35),
    0 0 0 1px rgba(110,168,255,.08);
  overflow:hidden;
}

.heroVisual__screen::before{
  content:"";
  position:absolute;
  inset:-20% auto auto -10%;
  width:220px;
  height:220px;
  background:radial-gradient(circle, rgba(110,168,255,.22), transparent 70%);
  pointer-events:none;
}

.heroVisual__screen::after{
  content:"";
  position:absolute;
  right:-40px;
  bottom:-40px;
  width:180px;
  height:180px;
  background:radial-gradient(circle, rgba(124,240,197,.12), transparent 70%);
  pointer-events:none;
}

.heroVisual__screenTop{
  display:flex;
  gap:8px;
  margin-bottom:14px;
}

.heroVisual__screenTop span{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.22);
}

.heroVisual__screenBody{
  display:grid;
  gap:14px;
}

.screenGrid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.screenCard{
  position:relative;
  z-index:1;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  border-radius:20px;
  padding:16px;
  min-height:118px;
  backdrop-filter:blur(8px);
}

.screenCard--big{
  min-height:150px;
}

.screenCard__title{
  font-size:14px;
  font-weight:800;
  color:var(--text);
  margin-bottom:16px;
}

.screenCard__line{
  height:10px;
  border-radius:999px;
  background:linear-gradient(90deg, rgba(110,168,255,.38), rgba(124,240,197,.22));
  margin-bottom:10px;
}

.screenCard__line--small{
  width:68%;
  opacity:.8;
}

.heroVisual__floating{
  position:absolute;
  z-index:3;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(9,14,28,.78);
  color:var(--text);
  box-shadow:var(--shadow-soft);
  backdrop-filter:blur(10px);
  font-weight:700;
}

.heroVisual__floating--top{
  top:38px;
  left:0;
}

.heroVisual__floating--bottom{
  right:10px;
  bottom:34px;
}

.dot{
  width:10px;
  height:10px;
  border-radius:999px;
  display:inline-block;
}

.dot--green{
  background:var(--a2);
  box-shadow:0 0 0 6px rgba(124,240,197,.15);
}

.dot--blue{
  background:var(--a1);
  box-shadow:0 0 0 6px rgba(110,168,255,.14);
}

/* ===== TARJETA HERO ===== */
.heroCard{
  position:absolute;
  right:0;
  top:118px;
  width:min(290px, 52%);
  border:1px solid var(--line);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  border-radius:22px;
  padding:16px;
  box-shadow:0 18px 44px rgba(0,0,0,.25);
  backdrop-filter:blur(10px);
  z-index:2;
}

.heroCard__title{
  font-weight:900;
}

.heroCard__row{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:10px 0;
}

.badge{
  padding:6px 10px;
  border-radius:999px;
  background:rgba(110,168,255,.18);
  border:1px solid rgba(110,168,255,.35);
}

.badge--soft{
  background:rgba(255,255,255,.04);
  border:1px solid var(--line);
  color:var(--muted);
}

.heroCard__text{
  color:var(--muted);
  font-size:14px;
}

.heroCard__mini{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.miniStat{
  flex:1;
  min-width:100px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:16px;
  padding:12px;
}

.miniStat__num{
  font-weight:900;
}

.miniStat__label{
  color:var(--muted);
  font-size:12px;
  margin-top:4px;
}

/* ===== BANDA DE CONFIANZA ===== */
.section--trust{
  padding:22px 0 12px;
}

.trust--hero{
  justify-content:center;
}

.trust--hero .trust__item{
  min-width:220px;
  text-align:center;
}

/* ===== SECCIONES ===== */
.section{
  padding:74px 0;
}

.section--alt{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}

.section__head{
  display:grid;
  gap:8px;
  margin-bottom:24px;
}

.section__head h2{
  margin:0;
  font-size:30px;
  letter-spacing:-.02em;
}

.section__head p{
  margin:0;
  color:var(--muted);
}

/* ===== TABS ===== */
.tabs{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:6px 0 20px;
}

.tab{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
  padding:11px 16px;
  border-radius:999px;
  cursor:pointer;
  font-weight:800;
  transition:all .25s ease;
}

.tab:hover{
  background:rgba(110,168,255,.18);
  border-color:rgba(110,168,255,.45);
  color:var(--text);
  transform:translateY(-1px);
}

.tab.active{
  color:var(--text);
  border-color:rgba(110,168,255,.45);
  background:rgba(110,168,255,.18);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}

.tabPanel{
  display:none;
}

.tabPanel.active{
  display:block;
}

/* ===== GRID / CARDS ===== */
.grid{
  display:grid;
  gap:18px;
}

.grid--3{
  grid-template-columns:repeat(3,minmax(0,1fr));
}

.card{
  border:1px solid rgba(255,255,255,.10);
  background:
    linear-gradient(180deg, rgba(16,26,51,.95), rgba(16,26,51,.58));
  border-radius:22px;
  padding:20px;
  box-shadow:0 14px 34px rgba(0,0,0,.20);
}

.card__icon{
  width:48px;
  height:48px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  border-radius:14px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  margin-bottom:12px;
}

.card h3{
  margin:8px 0 8px;
  font-size:20px;
}

.card p{
  margin:0;
  color:var(--muted);
}

.link{
  display:inline-block;
  margin-top:14px;
  color:var(--text);
  text-decoration:none;
  font-weight:800;
}

.link:hover{
  color:var(--a2);
}

/* ===== PLANES ===== */
.plan{
  position:relative;
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  border-radius:24px;
  padding:30px 24px;
  display:flex;
  flex-direction:column;
  height:100%;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
  box-shadow:var(--shadow-soft);
}

.plan:hover{
  transform:translateY(-6px);
  box-shadow:0 22px 54px rgba(0,0,0,.32);
}

.plan__top h3{
  margin:0 0 8px;
  font-size:24px;
}

.plan__desc{
  margin:0 0 18px;
  color:var(--muted);
}

.plan--featured{
  background:linear-gradient(180deg, rgba(110,168,255,.12), rgba(255,255,255,.04));
  border-color:rgba(125,211,252,.36);
  transform:scale(1.035);
  box-shadow:0 20px 56px rgba(0,0,0,.35);
}

.plan--featured:hover{
  transform:scale(1.035) translateY(-6px);
}

.plan__badge{
  position:absolute;
  top:14px;
  right:14px;
  padding:7px 10px;
  border-radius:999px;
  background:rgba(124,240,197,.18);
  border:1px solid rgba(124,240,197,.35);
  font-size:12px;
  font-weight:700;
  letter-spacing:.3px;
  color:var(--text);
}

.list{
  margin:12px 0 16px;
  padding-left:18px;
  color:var(--muted);
}

.plan .list{
  flex-grow:1;
}

.list--compact{
  margin:8px 0 0;
}

.list li{
  margin:7px 0;
}

.plan__footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-top:22px;
}

.plan__priceWrap{
  display:inline-block;
  margin-left:14px;
  vertical-align:middle;
  line-height:1.1;
}

.plan__price{
  display:block;
  font-size:22px;
  font-weight:900;
  color:#7dd3fc;
  letter-spacing:.4px;
}

.plan__oldprice{
  display:block;
  margin-top:5px;
  font-size:12px;
  color:#94a3b8;
  text-decoration:line-through;
}

/* ===== STEPS ===== */
.steps{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}

.step{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:22px;
  padding:16px;
  box-shadow:var(--shadow-soft);
}

.step__n{
  width:36px;
  height:36px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--a1),var(--a2));
  color:#071022;
  font-weight:900;
  flex:0 0 auto;
}

.step h3{
  margin:0 0 4px;
  font-size:18px;
}

.step p{
  margin:0;
  color:var(--muted);
}

/* ===== ABOUT ===== */
.about{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:18px;
  align-items:start;
}

.about__text p{
  margin:0 0 12px;
}

.muted{
  color:var(--muted);
}

.small{
  font-size:12px;
}

.trust{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:14px;
}

.trust__item{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:18px;
  padding:12px 14px;
  min-width:160px;
  box-shadow:var(--shadow-soft);
}

.trust__item strong{
  display:block;
}

.trust__item span{
  color:var(--muted);
  font-size:13px;
}

.about__metrics{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:18px;
}

.aboutMetric{
  min-width:130px;
  padding:12px 14px;
  border-radius:16px;
  border:1px dashed rgba(255,255,255,.16);
  background:rgba(255,255,255,.02);
}

.aboutMetric strong{
  display:block;
  font-size:14px;
}

.aboutMetric span{
  display:block;
  color:var(--muted);
  font-size:13px;
  margin-top:4px;
}

.about__cards{
  display:grid;
  gap:12px;
}

.miniCard{
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  border-radius:20px;
  padding:16px;
  box-shadow:var(--shadow-soft);
}

.miniCard h3{
  margin:0 0 6px;
}

/* ===== TESTIMONIOS ===== */
.quote{
  border:1px solid rgba(255,255,255,.10);
  background:linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.025));
  border-radius:22px;
  padding:18px;
  box-shadow:var(--shadow-soft);
}

.quote__text{
  font-size:15px;
  line-height:1.7;
  color:var(--text);
  margin:0;
}

.quote__author{
  margin-top:14px;
}

.quote__author strong{
  display:block;
  font-size:14px;
}

.quote__author span{
  font-size:13px;
  color:var(--muted);
}

.quote__stars{
  margin-top:12px;
  color:#fbbf24;
  letter-spacing:2px;
  font-size:14px;
}

/* ===== CONTACTO ===== */
.contact{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:22px;
  align-items:start;
  padding:18px 0 72px;
}

.contact__cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
  margin-top:14px;
}

.contact .card a{
  color:var(--text);
}

.mapWrap{
  margin-top:12px;
  border-radius:22px;
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow-soft);
}

.form{
  display:grid;
  gap:12px;
  padding:20px;
  border:1px solid var(--line);
  border-radius:24px;
  background:linear-gradient(180deg, rgba(255,255,255,.04), rgba(255,255,255,.02));
  box-shadow:var(--shadow-soft);
}

label{
  display:grid;
  gap:6px;
  color:var(--muted);
  font-weight:500;
}

input,
textarea,
select{
  width:100%;
  max-width:100%;
  padding:12px 14px;
  border-radius:15px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:var(--text);
  outline:none;
  transition:border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

input:focus,
textarea:focus,
select:focus{
  border-color:rgba(110,168,255,.6);
  background:rgba(255,255,255,.055);
  box-shadow:0 0 0 4px rgba(110,168,255,.10);
}

select{
  color:var(--text);
  background:rgba(255,255,255,.04);
}

select option{
  background:#ffffff;
  color:#0b1020;
}

select option[value=""]{
  color:#6b7280;
}

.msg{
  margin:0;
  color:var(--muted);
}

.hp{
  position:absolute;
  left:-9999px;
  opacity:0;
  height:0;
  width:0;
  pointer-events:none;
}

/* ===== FOOTER ===== */
.footer{
  padding:24px 0 28px;
  border-top:1px solid var(--line);
  background:rgba(0,0,0,.08);
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  color:var(--muted);
}

.footer a{
  color:var(--muted);
  text-decoration:none;
}

.footer a:hover{
  color:var(--text);
}

/* ===== WHATSAPP FLOAT ===== */
.waFloat{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:50;
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:13px 15px;
  border-radius:999px;
  background:rgba(7,10,18,.78);
  border:1px solid var(--line);
  color:var(--text);
  text-decoration:none;
  backdrop-filter:blur(12px);
  box-shadow:0 16px 38px rgba(0,0,0,.26);
}

.waFloat__dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:var(--a2);
  box-shadow:0 0 0 6px rgba(124,240,197,.18);
}

/* ===== ANIMACIÓN AL HACER SCROLL ===== */
.reveal{
  opacity:0;
  transform:translateY(36px);
  transition:all .8s ease;
}

.reveal.active{
  opacity:1;
  transform:translateY(0);
}

/* ===== EFECTO PREMIUM EN TARJETAS ===== */
.card,
.plan,
.miniCard,
.quote,
.trust__item,
.heroCard,
.logoBox,
.aboutMetric,
.heroStat,
.step,
.form{
  transition:
    transform .25s ease,
    box-shadow .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.card:hover,
.miniCard:hover,
.quote:hover,
.trust__item:hover,
.heroCard:hover,
.logoBox:hover,
.aboutMetric:hover,
.heroStat:hover,
.step:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 40px rgba(0,0,0,.30);
  border-color:rgba(110,168,255,.35);
}

/* ===== AJUSTES SUELTOS ===== */
#servicioCotizar{
  margin-top:10px;
}

button.btn{
  margin-top:10px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px){
  .hero__grid{
    grid-template-columns:1fr;
  }

  .hero__visual{
    order:-1;
  }

  .heroVisual{
    min-height:auto;
    padding-top:20px;
  }

  .heroCard{
    width:min(320px, 55%);
    top:110px;
  }
}

@media (max-width: 980px){
  .nav{
    display:none;
  }

  .menuBtn{
    display:inline-flex;
  }

  .mobileNav{
    margin-top:8px;
    background:rgba(7,10,18,.92);
    border-radius:16px;
  }

  .grid--3{
    grid-template-columns:1fr;
  }

  .steps{
    grid-template-columns:1fr;
  }

  .about{
    grid-template-columns:1fr;
  }

  .contact{
    grid-template-columns:1fr;
  }

  .contact__cards{
    grid-template-columns:1fr;
  }

  .logoRow{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 768px){
  .container{
    padding:0 14px;
  }

  .topbar__inner{
    padding:10px 0;
  }

  .brand__name{
    font-size:15px;
  }

  .brand__tag{
    font-size:11px;
  }

  .hero{
    padding:34px 0 12px;
  }

  .hero h1{
    font-size:clamp(30px, 8vw, 38px);
  }

  .lead{
    font-size:16px;
    text-align:left;
  }

  .hero__actions{
    flex-direction:column;
    align-items:stretch;
  }

  .hero__actions .btn{
    width:100%;
  }

  .heroVisual{
    min-height:auto;
  }

  .heroVisual__screen{
    padding:14px;
    border-radius:24px;
  }

  .screenGrid{
    grid-template-columns:1fr;
  }

  .heroCard{
    position:relative;
    width:100%;
    max-width:none;
    top:auto;
    right:auto;
    margin-bottom:14px;
  }

  .heroVisual__floating{
    position:relative;
    top:auto;
    right:auto;
    bottom:auto;
    left:auto;
    margin:0 0 12px;
    width:fit-content;
  }

  .plan{
    padding:22px 18px;
  }

  .plan--featured{
    transform:none;
  }

  .plan--featured:hover{
    transform:translateY(-6px);
  }

  .plan__footer{
    flex-direction:column;
    align-items:flex-start;
  }

  .plan__priceWrap{
    margin-left:0;
  }

  .waFloat{
    right:12px;
    bottom:12px;
    padding:10px 12px;
  }

  .footer__inner{
    flex-direction:column;
    align-items:flex-start;
  }
}