:root{
  --brand:#f59e0b;
  --brand-dark:#c77700;
  --text:#0b0f12;
}

.cmod{
  padding:110px 0;
  background:#fff;
}

.cmod *{box-sizing:border-box}

.cmod__head{
  max-width:820px;
  margin:0 0 26px 0;
}

.cmod__eyebrow{
  font-size:12px;
  letter-spacing:.18em;
  font-weight:900;
  color:var(--brand);
}

.cmod__title{
  margin:10px 0 10px;
  font-size:clamp(2rem,3.6vw,3.1rem);
  letter-spacing:-.02em;
  line-height:1.05;
  color:#111;
}

.cmod__sub{
  margin:0;
  color:rgba(17,24,39,.72);
  font-weight:700;
  line-height:1.7;
}

.cmod__cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin:22px 0 40px;
}

.cmod__card{
  display:flex;
  gap:12px;
  align-items:flex-start;
  padding:18px;
  border-radius:16px;
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  box-shadow:0 14px 40px rgba(0,0,0,.08);
  transition:transform .25s ease, box-shadow .25s ease;
}

.cmod__card:hover{
  transform:translateY(-4px);
  box-shadow:0 22px 55px rgba(0,0,0,.12);
}

.cmod__icon{
  width:46px;
  height:46px;
  border-radius:16px;
  background:rgba(245,158,11,.16);
  border:1px solid rgba(245,158,11,.22);
  display:grid;
  place-items:center;
  flex:0 0 auto;
  overflow:hidden;
}

/* ESTE BLOQUE ES EL QUE MATA EL BUG DE SVG GIGANTES */
.cmod svg{
  width:20px !important;
  height:20px !important;
  max-width:20px !important;
  max-height:20px !important;
  display:block !important;
}
.cmod svg path{ fill:var(--brand) !important; }

.cmod__k{
  font-size:11px;
  letter-spacing:.10em;
  font-weight:900;
  text-transform:uppercase;
  color:rgba(17,24,39,.55);
  margin-bottom:4px;
}

.cmod__v{
  font-weight:900;
  color:#111827;
  text-decoration:none;
  word-break:break-word;
}

.cmod__v:hover{
  text-decoration:underline;
  text-decoration-color:rgba(245,158,11,.70);
}

.cmod__grid{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:18px;
  align-items:start;
}

.cmod__left{
  background:#0f1115;
  color:#fff;
  border-radius:22px;
  padding:26px 24px;
  position:relative;
  overflow:hidden;
  box-shadow:0 22px 70px rgba(0,0,0,.18);
}

.cmod__left::before{
  content:"";
  position:absolute;
  inset:-2px;
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(245,158,11,.22), transparent 60%),
    radial-gradient(500px 260px at 100% 35%, rgba(255,255,255,.06), transparent 55%);
  pointer-events:none;
}

.cmod__badge{
  display:inline-block;
  font-size:11px;
  letter-spacing:.14em;
  font-weight:900;
  text-transform:uppercase;
  color:rgba(255,255,255,.75);
  border-bottom:2px solid rgba(245,158,11,.85);
  padding-bottom:8px;
  margin-bottom:14px;
  position:relative;
  z-index:1;
}

.cmod__h2{
  margin:0 0 12px;
  font-size:clamp(1.6rem,2.2vw,2.1rem);
  letter-spacing:-.02em;
  position:relative;
  z-index:1;
}

.cmod__p{
  margin:0 0 10px;
  color:rgba(255,255,255,.78);
  line-height:1.75;
  position:relative;
  z-index:1;
}

.cmod__pStrong{
  color:#fff;
  font-weight:900;
}

.cmod__form{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:22px;
  box-shadow:0 22px 70px rgba(0,0,0,.12);
}

.cmod__fields{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.cmod__field{
  display:grid;
  gap:8px;
}

.cmod__field span{
  font-size:12px;
  color:rgba(17,24,39,.75);
  font-weight:900;
}

.cmod__field input,
.cmod__field select,
.cmod__field textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(0,0,0,.12);
  outline:none;
  font-family:inherit;
  font-weight:700;
  background:#fff;
  transition:border-color .2s ease, box-shadow .2s ease;
}

.cmod__field input:focus,
.cmod__field select:focus,
.cmod__field textarea:focus{
  border-color:rgba(245,158,11,.75);
  box-shadow:0 0 0 4px rgba(245,158,11,.16);
}

.cmod__full{grid-column:1 / -1}

.cmod__send{
  margin-top:14px;
  width:100%;
  padding:14px 18px;
  border:0;
  border-radius:14px;
  font-weight:900;
  letter-spacing:.10em;
  background:#111827;
  color:#fff;
  cursor:pointer;
  transition:transform .2s ease, background .2s ease, color .2s ease;
}

.cmod__send:hover{
  transform:translateY(-2px);
  background:var(--brand);
  color:#111827;
}

@media (max-width: 1050px){
  .cmod__cards{grid-template-columns:1fr 1fr}
  .cmod__grid{grid-template-columns:1fr}
  .cmod__fields{grid-template-columns:1fr}
}

@media (max-width: 640px){
  .cmod{padding:90px 0}
  .cmod__cards{grid-template-columns:1fr}
}
