:root {
  --brand: #1fb4ec;
  --brand-dark: #087faf;
  --ink: #111827;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: #d7e2ea;
  --panel: #ffffff;
  --panel-soft: #f5f9fc;
  --dark: #07121d;
  --dark-2: #0d1b2a;
  --accent: #f59e0b;
  --success: #15a36b;
  --shadow: 0 22px 50px rgba(15, 23, 42, 0.14);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 78px;
  padding: 12px max(20px, calc((100vw - var(--max)) / 2));
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(215, 226, 234, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, min-height 180ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.08);
}

.brand {
  width: clamp(130px, 13vw, 172px);
}

.brand img {
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3vw, 34px);
  color: #263241;
  font-size: 0.95rem;
  font-weight: 700;
}

.main-nav a,
.nav-item > a {
  position: relative;
  padding: 12px 0;
}

.main-nav a::after,
.nav-item > a::after {
  position: absolute;
  left: 0;
  bottom: 6px;
  width: 100%;
  height: 2px;
  content: "";
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.nav-item:hover > a::after,
.nav-item:focus-within > a::after {
  transform: scaleX(1);
}

.nav-item {
  position: relative;
}

.mega-menu {
  position: fixed;
  top: 92px;
  left: 50%;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  width: min(1040px, calc(100vw - 40px));
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
  transform: translateX(-50%) translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 170ms ease, transform 170ms ease;
  backdrop-filter: blur(18px);
}

.has-mega:hover .mega-menu,
.has-mega:focus-within .mega-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.mega-col {
  display: grid;
  align-content: start;
  gap: 12px;
}

.mega-col h3 {
  margin: 0 0 6px;
  color: #7a828c;
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mega-col a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 12px;
  padding: 10px;
  border-radius: var(--radius);
}

.mega-col a::after {
  display: none;
}

.mega-col a:hover {
  background: var(--panel-soft);
}

.mega-col span {
  grid-row: span 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: #e7f7fd;
  font-weight: 900;
}

.mega-col strong {
  color: #0b3150;
  font-size: 1rem;
}

.mega-col small {
  color: #7a828c;
  line-height: 1.35;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header-cta,
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: transform 170ms ease, box-shadow 170ms ease, background-color 170ms ease, border-color 170ms ease;
}

.header-cta {
  color: #ffffff;
  background: var(--ink);
  box-shadow: 0 12px 30px rgba(17, 24, 39, 0.16);
}

.header-support {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
  box-shadow: none;
}

.header-whatsapp {
  color: #061613;
  background: #25d366;
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.22);
}

.header-cta:hover,
.btn:hover {
  transform: translateY(-2px);
}

.header-cta svg,
.btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: min(780px, calc(100svh - 50px));
  overflow: hidden;
  color: #ffffff;
  background: var(--dark);
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: url("assets/img/hero-it-support.png");
  background-position: center;
  background-size: cover;
  transform: scale(1.01);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 10, 18, 0.93) 0%, rgba(4, 14, 25, 0.82) 31%, rgba(4, 14, 25, 0.34) 62%, rgba(4, 14, 25, 0.12) 100%),
    linear-gradient(0deg, rgba(2, 10, 18, 0.72) 0%, rgba(2, 10, 18, 0.08) 44%, rgba(2, 10, 18, 0.36) 100%);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 680px) minmax(260px, 360px);
  align-items: end;
  gap: clamp(30px, 5vw, 70px);
  min-height: inherit;
  padding: clamp(72px, 11vh, 124px) 0 clamp(44px, 7vh, 80px);
}

.hero-copy {
  align-self: center;
  max-width: 690px;
  min-width: 0;
}

.hero h1 {
  max-width: 690px;
  margin: 0;
  font-size: clamp(2.55rem, 6vw, 5.15rem);
  font-weight: 850;
  line-height: 0.98;
}

.hero p {
  max-width: 620px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn-primary {
  color: #04111c;
  background: var(--brand);
  box-shadow: 0 16px 32px rgba(31, 180, 236, 0.32);
}

.btn-primary:hover {
  background: #50c8f2;
}

.btn-secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.15);
}

.btn-secondary.light {
  color: var(--ink);
  border-color: var(--line);
  background: #ffffff;
}

.btn-secondary.light:hover {
  border-color: rgba(31, 180, 236, 0.56);
  background: #f5fbfe;
}

.btn-dark {
  color: #ffffff;
  background: var(--ink);
}

.hero-panel {
  display: grid;
  gap: 1px;
  overflow: hidden;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero-panel div {
  display: grid;
  gap: 4px;
  padding: 22px;
  background: rgba(4, 14, 25, 0.58);
}

.hero-panel strong {
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1;
}

.hero-panel span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.94rem;
  line-height: 1.45;
}

.category-strip {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.strip-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}

.strip-grid span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 82px;
  padding: 12px;
  color: var(--ink-soft);
  border-left: 1px solid var(--line);
  font-size: 0.93rem;
  font-weight: 800;
  text-transform: uppercase;
}

.strip-grid span:last-child {
  border-right: 1px solid var(--line);
}

.section {
  padding: clamp(72px, 10vw, 118px) 0;
}

section[id],
article[id],
.web-detail[id] {
  scroll-margin-top: 96px;
}

.intro-section {
  background: var(--panel-soft);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 430px);
  gap: clamp(38px, 7vw, 86px);
  align-items: center;
}

.section-copy h2,
.section-heading h2,
.support-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.45rem);
  font-weight: 850;
  line-height: 1.04;
}

.section-copy p,
.section-heading p,
.support-copy p,
.contact-copy p {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.75;
}

.proof-list {
  display: grid;
  gap: 14px;
}

.proof-list div {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 66px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
  color: var(--ink-soft);
  font-weight: 800;
}

.proof-list span {
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  box-shadow: 0 0 0 7px rgba(21, 163, 107, 0.12);
}

.section-heading {
  max-width: 790px;
  margin-bottom: clamp(34px, 5vw, 58px);
  min-width: 0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  min-height: 282px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.service-card:hover {
  border-color: rgba(31, 180, 236, 0.56);
  box-shadow: 0 20px 48px rgba(15, 23, 42, 0.1);
  transform: translateY(-4px);
}

.service-icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 28px;
  border-radius: var(--radius);
  color: var(--brand-dark);
  background: rgba(31, 180, 236, 0.12);
  font-size: 1.35rem;
  font-weight: 900;
}

.service-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card h3,
.support-point h3,
.process-step h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.22rem;
  line-height: 1.25;
}

.service-card p,
.support-point p,
.process-step p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.65;
}

.services-section {
  padding-bottom: 0;
  background: #f7fbfe;
  overflow: hidden;
}

.service-jump-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-jump-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border: 1px solid rgba(31, 180, 236, 0.3);
  border-radius: 999px;
  background: #ffffff;
  color: var(--brand-dark);
  font-size: 0.9rem;
  font-weight: 900;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.06);
  transition: transform 170ms ease, border-color 170ms ease, box-shadow 170ms ease;
}

.service-jump-nav a:hover,
.service-jump-nav a:focus-visible {
  border-color: rgba(31, 180, 236, 0.72);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
  transform: translateY(-2px);
}

.service-story {
  margin-top: clamp(34px, 5vw, 58px);
}

.service-panel {
  scroll-margin-top: 92px;
  padding: clamp(58px, 7vw, 92px) 0;
}

.service-panel-light {
  background: #ffffff;
}

.service-panel-light + .service-panel-light {
  border-top: 1px solid var(--line);
}

.service-panel-dark {
  background: #061f42;
  color: #ffffff;
}

.service-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1.08fr);
  align-items: center;
  gap: clamp(34px, 6vw, 76px);
}

.service-inner-reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1.05fr);
}

.service-copy h3,
.web-detail h3,
.web-suite-copy h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.03;
}

.service-copy span,
.web-detail span {
  display: block;
  margin-top: 8px;
  color: var(--brand-dark);
  font-weight: 800;
  line-height: 1.45;
}

.service-copy p,
.web-detail p,
.web-suite-copy p {
  max-width: 650px;
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 1.06rem;
  line-height: 1.65;
}

.service-panel-dark .service-copy h3,
.service-panel-dark .service-copy p {
  color: #ffffff;
}

.service-panel-dark .service-copy span {
  color: #82dfff;
}

.service-panel-dark .service-copy p {
  color: #dbeafe;
  font-weight: 700;
}

.service-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.service-figure {
  margin: 0;
}

.service-figure img,
.service-check-layout img,
.web-suite-art,
.web-detail-wide img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
}

.service-figure img {
  max-height: 420px;
  object-fit: contain;
}

.service-statement {
  max-width: 1050px;
  margin: clamp(42px, 7vw, 78px) auto 0;
  color: #0b1220;
  font-size: clamp(1.65rem, 3.6vw, 2.65rem);
  line-height: 1.32;
  text-align: center;
}

.service-two-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 380px));
  justify-content: center;
  gap: clamp(22px, 4vw, 50px);
  margin-top: clamp(42px, 6vw, 70px);
}

.check-card {
  min-height: 280px;
  padding: clamp(26px, 4vw, 38px);
  border: 1px solid var(--line);
  border-top: 4px solid var(--brand-dark);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 46px rgba(15, 23, 42, 0.12);
}

.check-card h4 {
  margin: 0 0 26px;
  color: var(--brand-dark);
  font-size: clamp(1.35rem, 2.3vw, 1.75rem);
  line-height: 1.2;
  text-align: center;
}

.check-list {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  min-height: 28px;
  padding-left: 38px;
  color: var(--ink);
  font-weight: 650;
  line-height: 1.45;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.22em;
  width: 14px;
  height: 14px;
  border: 6px solid #4fc868;
  border-radius: 999px;
  background: #ffffff;
}

.service-check-layout {
  display: grid;
  grid-template-columns: minmax(280px, 460px) minmax(280px, 1fr);
  align-items: center;
  gap: clamp(20px, 4vw, 48px);
}

.service-check-layout .check-card {
  min-height: 0;
}

.service-check-layout img {
  max-height: 370px;
  object-fit: contain;
}

.platform-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 34px;
}

.platform-strip span {
  display: inline-grid;
  place-items: center;
  min-height: 46px;
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #6b7280;
  font-weight: 900;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
}

.web-suite {
  padding: clamp(62px, 8vw, 100px) 0;
  background: #078996;
  color: #ffffff;
}

.web-suite-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1.05fr);
  align-items: center;
  gap: clamp(34px, 6vw, 74px);
}

.web-suite-copy strong {
  display: inline-block;
  margin-bottom: 18px;
  padding: 5px 12px;
  background: #ffffff;
  color: #078996;
  font-size: 1.05rem;
  font-style: italic;
  text-transform: uppercase;
}

.web-suite-copy h3 {
  max-width: 720px;
  color: #ffffff;
  font-size: clamp(2.6rem, 6vw, 5rem);
  text-transform: uppercase;
}

.web-suite-copy p {
  color: #ffffff;
  font-weight: 800;
}

.web-suite-art {
  max-height: 390px;
  object-fit: cover;
  background: #078996;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.web-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  padding-top: clamp(46px, 6vw, 76px);
  padding-bottom: clamp(62px, 8vw, 104px);
}

.web-detail {
  min-height: 430px;
  padding: clamp(28px, 4vw, 42px);
  border: 1px solid var(--line);
  border-top: 4px solid #078996;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
}

.web-detail .btn {
  margin-top: 24px;
}

.web-detail-accent {
  display: grid;
  align-content: center;
  background: #078996;
  color: #ffffff;
}

.web-detail-accent h3,
.web-detail-accent p,
.web-detail-accent span {
  color: #ffffff;
}

.web-stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.web-stats strong,
.web-stats span {
  display: block;
  margin: 0;
  color: #ffffff;
}

.web-stats strong {
  font-size: clamp(2.4rem, 6vw, 4rem);
  line-height: 1;
}

.web-stats span {
  font-weight: 800;
}

.web-detail-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  align-items: center;
  gap: clamp(28px, 5vw, 62px);
}

.web-detail-wide img {
  max-height: 330px;
  object-fit: contain;
}

.logo-section {
  overflow: hidden;
  background: #f7fbfd;
}

.logo-marquee,
.client-carousel {
  overflow: hidden;
  width: 100%;
  border-block: 1px solid var(--line);
  background: #ffffff;
}

.logo-track,
.client-track {
  display: flex;
  width: max-content;
  gap: 14px;
  padding: 22px 0;
  animation: marquee 38s linear infinite;
}

.client-track {
  animation-duration: 55s;
}

.logo-marquee:hover .logo-track,
.client-carousel:hover .client-track {
  animation-play-state: paused;
}

.logo-tile,
.client-track span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 76px;
  padding: 14px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.05);
}

.logo-tile img {
  max-width: 138px;
  max-height: 48px;
  object-fit: contain;
}

.text-logo {
  color: var(--ink-soft);
  font-size: 1.1rem;
  font-weight: 900;
}

.client-track span {
  min-width: 255px;
  justify-content: flex-start;
  gap: 12px;
  color: var(--ink-soft);
  font-weight: 900;
}

.client-track img {
  width: 34px;
  height: 34px;
  border-radius: 6px;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.aspel-section {
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 18%, rgba(31, 180, 236, 0.18), transparent 32%),
    linear-gradient(135deg, #07121d 0%, #0b2334 54%, #0d1624 100%);
}

.aspel-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1fr);
  gap: clamp(32px, 6vw, 76px);
  align-items: start;
}

.aspel-copy h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.02;
}

.aspel-copy p {
  max-width: 620px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1.08rem;
  line-height: 1.75;
}

.aspel-logo {
  width: min(270px, 74vw);
  height: auto;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: #ffffff;
}

.aspel-visual {
  display: grid;
  justify-items: end;
  gap: 14px;
  min-width: 0;
}

.aspel-banner {
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: contain;
  object-position: center center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #0fb2ee;
  box-shadow: var(--shadow);
}

.aspel-visual .sello {
  width: min(190px, 42vw);
  margin-right: 16px;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.24));
}

.aspel-mega {
  margin-top: 62px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}

.aspel-menu-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.aspel-menu-head strong {
  font-size: 1.35rem;
}

.aspel-menu-head span {
  color: var(--muted);
}

.aspel-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px 36px;
  padding-top: 26px;
}

.aspel-menu-grid h3 {
  margin: 0 0 14px;
  color: #344257;
  font-size: 0.95rem;
}

.aspel-menu-grid p {
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.5;
}

.aspel-menu-grid strong {
  display: block;
  color: #142338;
}

.aspel-products {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
  margin-top: 34px;
}

.aspel-products article {
  min-height: 230px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.aspel-products img {
  width: 100%;
  height: 52px;
  object-fit: contain;
  object-position: left center;
  margin-bottom: 20px;
}

.aspel-products h3 {
  margin: 0;
  color: #ffffff;
}

.aspel-products p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
  line-height: 1.55;
}

.aspel-plans {
  margin-top: 70px;
}

.aspel-plans .section-heading h2,
.aspel-plans .section-heading p {
  color: #ffffff;
}

.aspel-plans .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.plans-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.plan-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 360px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.plan-card.featured {
  color: var(--ink);
  background: #ffffff;
}

.plan-card span {
  color: var(--brand);
  font-weight: 900;
  text-transform: uppercase;
}

.plan-card h3 {
  margin: 0;
  color: inherit;
  font-size: 1.65rem;
}

.plan-card strong {
  font-size: 1.08rem;
}

.plan-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.65;
}

.plan-card.featured p {
  color: var(--muted);
}

.plan-card .btn {
  width: 100%;
  margin-top: auto;
}

.plan-note {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.6;
}

.support-section {
  color: #ffffff;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 62%, #06283a 100%);
}

.support-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 1.08fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
}

.support-copy h2,
.contact-copy h2 {
  color: #ffffff;
}

.support-copy p,
.contact-copy p {
  color: rgba(255, 255, 255, 0.74);
}

.support-copy .btn {
  margin-top: 28px;
}

.support-points {
  display: grid;
  gap: 14px;
}

.support-point {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.07);
}

.support-point span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--brand);
  font-weight: 900;
}

.support-point h3 {
  color: #ffffff;
}

.support-point p {
  color: rgba(255, 255, 255, 0.72);
}

.solutions-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 100%);
}

.solution-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.solution-list span {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink-soft);
  font-weight: 800;
}

.seo-section {
  background: #ffffff;
}

.seo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.seo-card,
.faq-item {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.seo-card span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 10px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-card h3,
.faq-item h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.seo-card p,
.faq-item p {
  margin: 14px 0 0;
  color: var(--ink-soft);
  line-height: 1.68;
}

.keyword-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.keyword-cloud span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid rgba(31, 180, 236, 0.28);
  border-radius: var(--radius);
  background: #f4fbff;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

.faq-section {
  background:
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: start;
}

.faq-layout .section-heading {
  margin: 0;
  text-align: left;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.process-section {
  background: var(--panel-soft);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.process-step {
  position: relative;
  min-height: 245px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
}

.process-step strong {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 34px;
  border-radius: var(--radius);
  color: #ffffff;
  background: var(--ink);
  font-size: 1.05rem;
}

.clients-section {
  background: #ffffff;
}

.client-cloud {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.client-cloud span {
  display: grid;
  place-items: center;
  min-height: 80px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-weight: 800;
  text-align: center;
  line-height: 1.3;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.testimonial {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.06);
}

.testimonial p {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.55;
}

.testimonial span {
  display: block;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.contact-section {
  padding: clamp(72px, 10vw, 118px) 0;
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(7, 18, 29, 0.98), rgba(7, 18, 29, 0.91)),
    url("assets/img/hero-it-support.png") center/cover;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(340px, 0.74fr);
  gap: clamp(34px, 7vw, 88px);
  align-items: start;
}

.contact-copy img {
  width: min(235px, 70vw);
  margin-bottom: 36px;
}

.contact-links {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-links a,
.site-footer a {
  color: var(--brand);
  font-weight: 800;
}

address {
  max-width: 460px;
  margin-top: 24px;
  color: rgba(255, 255, 255, 0.66);
  font-style: normal;
  line-height: 1.6;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 11px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(31, 180, 236, 0.14);
}

.contact-form .btn {
  width: 100%;
  margin-top: 4px;
  border: none;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.45;
}

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.4;
}

.form-status.success {
  color: var(--success);
}

.form-status.error {
  color: #dc2626;
}

.site-footer {
  padding: 24px 0;
  background: #050b12;
  color: rgba(255, 255, 255, 0.64);
}

.footer-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.footer-grid p {
  margin: 0;
}

.floating-actions {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display: grid;
  gap: 10px;
  justify-items: end;
  pointer-events: none;
}

.float-whatsapp,
.scroll-top {
  pointer-events: auto;
}

.float-whatsapp {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  color: #061613;
  background: #25d366;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.18);
  font-weight: 900;
}

.scroll-top {
  position: relative;
  width: 76px;
  height: 76px;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(31, 180, 236, 0.28);
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px) scale(0.94);
  transition: opacity 180ms ease, transform 180ms ease;
}

.scroll-top.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.scroll-top img {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 112%;
  max-width: none;
  transform: translate(-50%, -50%);
}

.reveal {
  opacity: 1;
  transform: none;
  transition: opacity 520ms ease, transform 520ms ease;
}

.supports-reveal .reveal:not(.is-visible) {
  opacity: 0;
  transform: translateY(18px);
}

.supports-reveal .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .nav-toggle {
    display: block;
    order: 3;
  }

  .header-cta {
    display: none;
  }

  .header-actions {
    display: none;
  }

  .main-nav {
    position: fixed;
    inset: 78px 16px auto 16px;
    display: grid;
    justify-content: stretch;
    gap: 0;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-open .main-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px;
    border-radius: var(--radius);
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    background: var(--panel-soft);
  }

  .main-nav a::after {
    display: none;
  }

  .mega-menu {
    position: static;
    display: none;
    width: auto;
    max-height: 52vh;
    overflow: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    margin: 0 8px 8px;
    padding: 14px;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
  }

  .has-mega:focus-within .mega-menu,
  .has-mega:hover .mega-menu {
    display: grid;
    transform: none;
  }

  .hero-grid,
  .split,
  .service-inner,
  .service-inner-reverse,
  .service-check-layout,
  .web-suite-hero,
  .web-detail-wide,
  .aspel-hero,
  .support-layout,
  .faq-layout,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    align-items: center;
  }

  .hero-panel {
    max-width: 680px;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-figure {
    max-width: 720px;
  }

  .service-two-cards,
  .web-detail-grid {
    grid-template-columns: 1fr;
  }

  .service-check-layout img,
  .web-detail-wide img {
    max-width: 520px;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .aspel-menu-grid,
  .aspel-products,
  .plans-grid,
  .seo-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .container {
    width: min(100% - 28px, var(--max));
  }

  .site-header {
    min-height: 68px;
    padding-inline: 14px;
  }

  .brand {
    width: 122px;
  }

  .main-nav {
    inset: 80px 14px auto 14px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 61% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(2, 10, 18, 0.95) 0%, rgba(3, 12, 21, 0.84) 55%, rgba(3, 12, 21, 0.58) 100%),
      linear-gradient(0deg, rgba(2, 10, 18, 0.78) 0%, rgba(2, 10, 18, 0.14) 48%, rgba(2, 10, 18, 0.38) 100%);
  }

  .hero-grid {
    padding: 68px 0 42px;
  }

  .hero h1 {
    max-width: 10.8ch;
    font-size: clamp(2.08rem, 10vw, 2.55rem);
    line-height: 1.04;
  }

  .hero p {
    max-width: 34ch;
    font-size: 1rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strip-grid span {
    min-height: 62px;
    border-bottom: 1px solid var(--line);
  }

  .service-grid,
  .process-grid,
  .aspel-menu-grid,
  .aspel-products,
  .plans-grid,
  .seo-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .service-card,
  .process-step {
    min-height: auto;
  }

  .section {
    padding: 64px 0;
  }

  .services-section {
    padding-bottom: 0;
  }

  .service-jump-nav {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 10px;
    scrollbar-width: thin;
  }

  .service-jump-nav a {
    flex: 0 0 auto;
  }

  .service-panel {
    padding: 54px 0;
  }

  .service-copy h3,
  .web-detail h3 {
    font-size: clamp(1.85rem, 9vw, 2.45rem);
  }

  .service-copy p,
  .web-detail p,
  .web-suite-copy p {
    font-size: 1rem;
  }

  .service-statement {
    margin-top: 34px;
    text-align: left;
    font-size: clamp(1.45rem, 8vw, 2.05rem);
  }

  .service-two-cards {
    gap: 18px;
    margin-top: 34px;
  }

  .check-card {
    min-height: auto;
    padding: 24px;
  }

  .check-list {
    gap: 15px;
  }

  .platform-strip {
    justify-content: flex-start;
  }

  .platform-strip span {
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.86rem;
  }

  .web-suite {
    padding: 54px 0;
  }

  .web-suite-copy strong {
    font-size: 0.9rem;
  }

  .web-suite-copy h3 {
    font-size: clamp(2.2rem, 13vw, 3.2rem);
  }

  .web-suite-art {
    max-height: 280px;
  }

  .web-detail-grid {
    padding-top: 36px;
    padding-bottom: 56px;
  }

  .web-detail {
    min-height: auto;
    padding: 24px;
  }

  .web-stats {
    grid-template-columns: 1fr;
  }

  .logo-track,
  .client-track {
    animation-duration: 42s;
  }

  .logo-tile {
    min-width: 152px;
    height: 68px;
  }

  .client-track span {
    min-width: 220px;
    height: 70px;
    padding: 12px 16px;
  }

  .aspel-menu-head {
    display: grid;
  }

  .aspel-mega {
    padding: 20px;
  }

  .aspel-visual .sello {
    width: 142px;
    margin-right: 0;
  }

  .floating-actions {
    right: 12px;
    bottom: 12px;
  }

  .float-whatsapp {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.88rem;
  }

  .scroll-top {
    width: 64px;
    height: 64px;
  }

  .contact-form {
    padding: 20px;
  }

  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero h1,
  .section-copy h2,
  .section-heading h2,
  .support-copy h2,
  .contact-copy h2 {
    overflow-wrap: anywhere;
  }

  .btn,
  .header-cta {
    width: 100%;
    white-space: normal;
    text-align: center;
    line-height: 1.2;
  }

  .solution-list span {
    width: 100%;
  }
}
