:root{
  --ink:#10202f;
  --navy:#102b3a;
  --muted:#506174;
  --line:#e7edf2;
  --panel:#ffffff;
  --soft:#f5f8fb;
  --soft2:#eef3f6;
  --orange:#ff6414;
  --orange2:#ff4d00;
  --shadow: 0 22px 55px rgba(16, 43, 58, .12);
  --shadow-soft: 0 16px 34px rgba(16, 43, 58, .09);
  --radius: 22px;
  --max: 1180px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color:var(--ink);
  background:#fff;
  line-height:1.55;
}
img{max-width:100%;display:block}
a{color:inherit;text-decoration:none}
.container{width:min(var(--max), calc(100% - 48px));margin-inline:auto}
.section{padding:78px 0}
.skip-link{
  position:absolute;top:-100px;left:16px;background:var(--orange);color:#fff;padding:10px 14px;border-radius:12px;z-index:999
}
.skip-link:focus{top:16px}

/* Header */
.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(18px);
  border-bottom:1px solid rgba(231,237,242,.8);
}
.nav-wrap{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:28px;
}
.brand img{
  width:238px;
  height:auto;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:32px;
  margin-left:auto;
  margin-right:18px;
}
.main-nav a{
  font-weight:700;
  font-size:15px;
  color:#233448;
  transition:color .2s ease;
}
.main-nav a:hover{color:var(--orange)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:16px;
  font-weight:800;
  font-size:15px;
  min-height:48px;
  padding:0 22px;
  border:1px solid transparent;
  transition:transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  box-shadow: 0 18px 38px rgba(255,100,20,.28);
}
.btn-primary:hover{box-shadow:0 24px 48px rgba(255,100,20,.34)}
.btn-secondary{
  background:#fff;
  color:#10202f;
  border-color:var(--line);
  box-shadow: 0 12px 25px rgba(16, 43, 58, .06);
}
.btn-large{min-height:56px;padding:0 26px;border-radius:14px}

/* Hero */
.hero{
  overflow:hidden;
  padding:60px 0 92px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255,100,20,.07), transparent 25%),
    radial-gradient(circle at 82% 20%, rgba(16,43,58,.05), transparent 32%),
    linear-gradient(180deg,#fff 0%, #fff 64%, #f8fafc 100%);
}
.hero-grid{
  display:grid;
  grid-template-columns: .92fr 1.08fr;
  align-items:center;
  gap:52px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:9px 14px;
  border:1px solid var(--line);
  background:#fff;
  border-radius:999px;
  color:#314356;
  font-size:14px;
  font-weight:800;
  margin-bottom:24px;
  box-shadow:0 10px 22px rgba(16,43,58,.04);
}
.eyebrow span{
  width:7px;height:7px;background:var(--orange);border-radius:50%;
}
.hero h1{
  margin:0;
  font-size: clamp(48px, 6vw, 78px);
  line-height:.94;
  letter-spacing:-.06em;
  max-width:590px;
}
.hero h1 strong{
  color:var(--orange2);
  font-style:normal;
}
.lead{
  margin:28px 0 0;
  max-width:610px;
  font-size:21px;
  line-height:1.55;
  color:#263b50;
  font-weight:600;
}
.support{
  margin:22px 0 0;
  max-width:610px;
  color:var(--muted);
  font-size:16px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:30px;
}
.hero-points{
  list-style:none;
  padding:0;
  margin:26px 0 0;
  display:grid;
  gap:12px;
  color:#405367;
}
.hero-points li{
  position:relative;
  padding-left:24px;
}
.hero-points li::before{
  content:"";
  position:absolute;
  top:.75em;
  left:0;
  width:7px;height:7px;border-radius:50%;
  background:var(--orange);
}
.hero-visual{
  position:relative;
  border-radius:28px;
}
.hero-visual img{
  width:100%;
  border-radius:28px;
  filter: drop-shadow(0 28px 45px rgba(16,43,58,.16));
}

/* Headings */
.section-heading{max-width:760px;margin-bottom:38px}
.section-heading.centered{text-align:center;max-width:900px;margin-inline:auto;margin-bottom:46px}
.kicker{
  color:var(--orange2);
  text-transform:uppercase;
  font-size:13px;
  font-weight:900;
  letter-spacing:.08em;
}
.section-heading h2{
  margin:6px 0 0;
  font-size: clamp(34px, 4vw, 52px);
  letter-spacing:-.045em;
  line-height:1.05;
}
.section-heading h2 strong{color:var(--orange2)}
.section-heading p{
  margin:14px 0 0;
  color:var(--muted);
  font-size:18px;
}

/* Services */
.services{
  background:#f7fafc;
  border-top:1px solid #eef3f6;
}
.services-grid{
  display:grid;
  grid-template-columns:repeat(6,1fr);
  gap:14px;
}
.service-card{
  grid-column:span 2;
  min-height:250px;
  padding:30px 24px 26px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow-soft);
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover{
  transform:translateY(-6px);
  border-color:rgba(255,100,20,.28);
  box-shadow:0 26px 50px rgba(16,43,58,.13);
}
.icon-box{
  width:76px;height:76px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:#fff1e9;
  margin-bottom:18px;
}
.icon-box svg{
  width:48px;height:48px;
  fill:none;
  stroke:var(--navy);
  stroke-width:3.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.icon-box svg path:nth-child(even),
.icon-box svg circle:nth-child(even){stroke:var(--orange)}
.service-card h3{
  margin:0;
  font-size:20px;
  line-height:1.12;
  letter-spacing:-.02em;
}
.service-card p{
  margin:14px 0 0;
  color:var(--muted);
  font-size:15.5px;
}

/* Process */
.process{
  background:
    radial-gradient(ellipse at top, rgba(16,43,58,.06), transparent 40%),
    linear-gradient(180deg,#fff 0%,#f3f7fa 100%);
  overflow:hidden;
}
.process-grid{
  position:relative;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:28px;
}
.process-grid::before{
  content:"";
  position:absolute;
  top:97px;
  left:10%;
  right:10%;
  border-top:3px dotted rgba(255,100,20,.55);
  z-index:0;
}
.process-card{
  position:relative;
  z-index:1;
  min-height:300px;
  padding:28px 22px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  box-shadow:var(--shadow-soft);
  text-align:center;
}
.step{
  position:absolute;
  top:-16px;
  left:24px;
  width:36px;height:36px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#fff;
  font-weight:900;
  box-shadow:0 10px 20px rgba(255,100,20,.3);
}
.process-icon{
  width:104px;height:104px;
  margin:0 auto 22px;
  border-radius:50%;
  background:#f3f6f8;
  display:grid;
  place-items:center;
}
.process-icon svg{
  width:58px;height:58px;
  fill:none;
  stroke:var(--navy);
  stroke-width:3.6;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.process-icon svg path:nth-child(even),
.process-icon svg circle:nth-child(even){stroke:var(--orange)}
.process-card h3{
  margin:0;
  font-size:21px;
}
.process-card h3::after{
  content:"";
  display:block;
  width:42px;
  height:3px;
  background:var(--orange);
  margin:12px auto 0;
  border-radius:99px;
}
.process-card p{
  margin:18px auto 0;
  color:var(--muted);
  font-size:15px;
  max-width:220px;
}
.process-note{
  margin:36px auto 0;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:18px;
  max-width:820px;
  padding:18px 24px;
}
.note-icon{
  width:74px;height:74px;
  min-width:74px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--line);
  display:grid;
  place-items:center;
  box-shadow:var(--shadow-soft);
}
.note-icon svg{
  width:44px;height:44px;fill:none;stroke:var(--navy);stroke-width:3.2;stroke-linecap:round;stroke-linejoin:round;
}
.process-note p{
  margin:0;
  font-size:21px;
  color:#263b50;
}
.process-note strong{color:#10202f}
.process-note span{color:var(--orange2);font-weight:900}

/* Contact */
.contact{
  padding-top:36px;
  background:#f3f7fa;
}
.contact-card{
  position:relative;
  overflow:hidden;
  display:grid;
  grid-template-columns:1fr .92fr;
  align-items:center;
  gap:34px;
  padding:50px;
  background:#fff;
  border:1px solid var(--line);
  border-radius:28px;
  box-shadow:var(--shadow);
}
.contact-card::after{
  content:"";
  position:absolute;
  right:-60px;top:-80px;
  width:260px;height:260px;
  border-radius:50%;
  background:rgba(255,100,20,.09);
}
.contact-card h2{
  position:relative;
  z-index:1;
  margin:0;
  max-width:620px;
  font-size:clamp(34px,4vw,54px);
  line-height:1.02;
  letter-spacing:-.05em;
}
.contact-card h2 strong{color:var(--orange2)}
.contact-card h2::after{
  content:"";
  display:block;
  width:54px;height:4px;background:var(--orange);
  border-radius:99px;
  margin-top:22px;
}
.contact-card p{
  position:relative;
  z-index:1;
  max-width:610px;
  margin:20px 0 0;
  color:var(--muted);
  font-size:17px;
}
.contact-actions{
  position:relative;
  z-index:1;
  display:grid;
  gap:18px;
}
.contact-btn{
  min-height:82px;
  padding:0 26px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:18px;
  font-weight:900;
  transition:transform .2s ease, box-shadow .2s ease;
}
.contact-btn:hover{transform:translateY(-3px)}
.contact-btn.whatsapp{
  color:#fff;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  box-shadow:0 22px 42px rgba(255,100,20,.28);
}
.contact-btn.email{
  color:#10202f;
  background:#fff;
  border:1px solid var(--line);
  box-shadow:0 18px 34px rgba(16,43,58,.08);
}
.footer{
  padding:72px 0 28px;
  color:#506174;
  font-size:14px;
}
.footer p{margin:6px 0}
.footer a{text-decoration:underline;text-underline-offset:3px}

/* Animations */
.reveal{
  opacity:0;
  transform:translateY(28px);
  transition:opacity .75s ease, transform .75s ease;
}
.reveal.is-visible{
  opacity:1;
  transform:translateY(0);
}
.delay-1{transition-delay:.08s}
.delay-2{transition-delay:.16s}
.delay-3{transition-delay:.24s}

/* Mobile floating */
.mobile-whatsapp{
  display:none;
  position:fixed;
  left:16px;
  right:16px;
  bottom:16px;
  z-index:80;
  min-height:54px;
  border-radius:18px;
  align-items:center;
  justify-content:center;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#fff;
  font-weight:900;
  box-shadow:0 18px 42px rgba(255,100,20,.38);
}

/* Responsive */
@media (max-width: 980px){
  .container{width:min(100% - 32px, var(--max))}
  .nav-wrap{min-height:68px;gap:16px}
  .brand img{width:190px}
  .main-nav{display:none}
  .nav-cta{font-size:0;min-width:46px;padding:0 16px}
  .nav-cta::after{content:"Hablemos";font-size:14px}
  .hero{padding:38px 0 72px}
  .hero-grid{grid-template-columns:1fr;gap:34px}
  .hero h1{font-size:clamp(48px, 13vw, 72px)}
  .lead{font-size:19px}
  .services-grid{grid-template-columns:repeat(2,1fr)}
  .service-card{grid-column:span 1}
  .process-grid{grid-template-columns:repeat(2,1fr)}
  .process-grid::before{display:none}
  .contact-card{grid-template-columns:1fr;padding:34px}
}

@media (max-width: 620px){
  body{padding-bottom:78px}
  .section{padding:58px 0}
  .site-header{position:sticky}
  .brand img{width:168px}
  .nav-cta{display:none}
  .hero h1{
    font-size:52px;
    letter-spacing:-.055em;
  }
  .lead{font-size:18px}
  .support{font-size:15px}
  .hero-actions{display:grid}
  .btn-large{width:100%}
  .hero-points{font-size:15px}
  .hero-visual img{border-radius:20px}
  .section-heading h2{font-size:36px}
  .section-heading p{font-size:16px}
  .services-grid{grid-template-columns:1fr}
  .service-card{
    min-height:auto;
    align-items:flex-start;
    text-align:left;
  }
  .icon-box{width:64px;height:64px}
  .icon-box svg{width:40px;height:40px}
  .process-grid{grid-template-columns:1fr}
  .process-card{min-height:auto}
  .process-note{
    align-items:flex-start;
    text-align:left;
    padding:8px 0 0;
  }
  .process-note p{font-size:18px}
  .contact-card{
    padding:30px 22px;
    border-radius:22px;
  }
  .contact-card h2{font-size:38px}
  .contact-btn{
    min-height:70px;
    font-size:16px;
  }
  .footer{padding-bottom:18px}
  .mobile-whatsapp{display:flex}
}

@media (prefers-reduced-motion: reduce){
  html{scroll-behavior:auto}
  .reveal{transition:none;opacity:1;transform:none}
  .btn,.service-card,.contact-btn{transition:none}
}
