/* ============================================================
   Solución IP — estilos globales
   Paleta: naranja #F97316 + azul marino #1B2B4B
   Tipografías: Nunito (títulos) + DM Sans (cuerpo)
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange:        #F97316;
  --orange-dark:   #d65f0d;
  --orange-soft:   rgba(249, 115, 22, .10);
  --orange-glow:   rgba(249, 115, 22, .25);
  --navy:          #1B2B4B;
  --navy-deep:     #121d36;
  --navy-soft:     rgba(27, 43, 75, .06);
  --text:          #1a1f2e;
  --muted:         #6b7280;
  --line:          #e5e7eb;
  --bg:            #ffffff;
  --bg-alt:        #f7f7f9;
  --bg-warm:       #fff7f1;
  --ok:            #16a34a;
  --err:           #dc2626;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--bg);
}
h1, h2, h3, h4 {
  font-family: 'Nunito', sans-serif;
  letter-spacing: -.015em;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--navy); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0;
  z-index: 1000;
}
.skip-link:focus { left: 0; }

/* ============================================================
   Topbar — transparente sobre fondo blanco con texto navy
   ============================================================ */
.topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  transition: background .25s ease, box-shadow .25s ease;
}
.topbar.scrolled {
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 1px 0 var(--line), 0 6px 18px rgba(27, 43, 75, .06);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1240px; margin: 0 auto;
}
.brand {
  display: inline-flex; align-items: center; gap: 10px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(-8px);
  transition: opacity .3s ease, transform .3s ease;
}
.topbar.brand-visible .brand {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}
.brand-mark {
  height: 40px; width: 40px;
  transition: transform .25s ease;
}
.brand:hover .brand-mark { transform: rotate(-6deg) scale(1.05); }
.brand-word {
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: -.015em;
  color: var(--navy);
  white-space: nowrap;
}

.nav-desktop { display: flex; align-items: center; gap: 32px; }
.nav-desktop a {
  font-size: 15px; font-weight: 600;
  color: var(--navy);
  transition: color .2s;
  position: relative;
}
.nav-desktop a:not(.nav-ig):not(.nav-portal)::after {
  content: ''; position: absolute; left: 50%; bottom: -6px;
  width: 0; height: 2px; background: var(--orange);
  transform: translateX(-50%);
  transition: width .2s;
}
.nav-desktop a:not(.nav-ig):not(.nav-portal):hover { color: var(--orange); }
.nav-desktop a:not(.nav-ig):not(.nav-portal):hover::after,
.nav-desktop a.is-active::after { width: 100%; }
.nav-desktop a.is-active { color: var(--orange); }

.nav-ig, .nav-portal {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  color: var(--navy) !important;
  transition: all .2s;
}
.nav-ig:hover, .nav-portal:hover { background: var(--orange); color: #fff !important; transform: translateY(-1px); }
.nav-ig::after, .nav-portal::after { display: none !important; }

/* Botón "Portal clientes" (pill) en el header */
.nav-cta {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  font-size: 14px !important; font-weight: 700;
  color: var(--navy) !important;
  border: 1.5px solid var(--orange);
  transition: all .2s;
}
.nav-cta:hover { background: var(--orange); color: #fff !important; transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--navy);
  transition: all .2s;
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.nav-mobile {
  display: none; flex-direction: column;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  padding: 8px 24px 16px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  padding: 14px 0; border-bottom: 1px solid #f3f4f6;
  font-size: 15.5px; font-weight: 600; color: var(--text);
}
.nav-mobile a.is-active { color: var(--orange); }
.nav-mobile a:last-child { border-bottom: none; }
.nav-mobile a.nav-mobile-portal { color: var(--orange); font-weight: 800; }

/* ============================================================
   Botones
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 10px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; transition: all .15s;
  text-decoration: none;
  border: 2px solid transparent;
  font-family: inherit;
  white-space: nowrap;
}
.btn-primary {
  background: var(--orange); color: #fff;
  box-shadow: 0 4px 12px var(--orange-glow);
}
.btn-primary:hover {
  background: var(--orange-dark); transform: translateY(-2px);
  box-shadow: 0 10px 24px var(--orange-glow);
}
.btn-outline {
  background: transparent; color: var(--navy); border-color: #d1d5db;
}
.btn-outline:hover { border-color: var(--navy); color: var(--navy); background: var(--bg-alt); }

.btn-light {
  background: rgba(255,255,255,.08); color: #fff;
  border-color: rgba(255,255,255,.3);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
}
.btn-light:hover { background: rgba(255,255,255,.16); border-color: #fff; }

/* ============================================================
   Hero — sección blanca con logo + divisor ondulado + banda naranja
   ============================================================ */
.hero-white {
  background: #fff;
  padding: 130px 0 20px;
  text-align: center;
  position: relative;
}
/* aspect-ratio 4:1 + object-fit cover recorta el whitespace vertical del PNG
   y muestra una franja ancha solo con el arte (icono + "Solución IP") */
.hero-white .hero-logo {
  display: block;
  width: 66%;
  max-width: 1130px;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  object-position: center;
  margin: 0 auto;
}

/* Divisor: chevrons que dipean al centro (V apuntando abajo) y se besan en el apex */
.hero-divider {
  display: block;
  width: 100%;
  height: clamp(80px, 12vw, 160px);
  margin-bottom: -1px;
  overflow: hidden;
}
.hero-divider svg { display: block; width: 100%; height: 100%; }

/* Banda gradient naranja → rojo con contenido en 2 columnas */
.hero-band {
  position: relative;
  background: linear-gradient(135deg, #FFA94D 0%, #F97316 45%, #E14A1E 100%);
  color: #fff;
  padding: 60px 24px 110px;
  overflow: hidden;
}
.hero-band::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(255, 255, 255, .12) 0%, transparent 50%),
    radial-gradient(ellipse at 10% 90%, rgba(0, 0, 0, .08) 0%, transparent 50%);
  pointer-events: none;
}
.hero-band .container {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  max-width: 1240px;
}
.hero-title {
  font-family: 'Nunito', sans-serif;
  font-size: clamp(2.2rem, 6vw, 4.4rem);
  font-weight: 900;
  line-height: 1.02;
  letter-spacing: -.01em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, .15);
  margin: 0;
}
.hero-title em { font-style: normal; color: var(--navy); }
.hero-text {
  color: rgba(255, 255, 255, .96);
  font-size: clamp(1rem, 1.4vw, 1.12rem);
  line-height: 1.65;
}
.hero-text p { margin-bottom: 14px; }
.hero-text p:last-of-type { margin-bottom: 22px; }
.hero-text .btn-primary {
  background: var(--navy);
  box-shadow: 0 8px 22px rgba(0, 0, 0, .2);
}
.hero-text .btn-primary:hover {
  background: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(0, 0, 0, .28);
}

/* Page-head con foto de fondo (Servicios / Contacto) — banner con título izq + CTA */
.page-head-photo {
  position: relative;
  min-height: clamp(340px, 48vh, 520px);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 110px 0 60px;
}
.page-head-photo .photo-bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.page-head-photo::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 23, 41, .72) 0%, rgba(13, 23, 41, .45) 55%, rgba(13, 23, 41, .15) 100%),
    linear-gradient(180deg, rgba(249, 115, 22, .12) 0%, transparent 50%);
  pointer-events: none;
}
.page-head-photo .container {
  position: relative; z-index: 2;
  max-width: none;
  width: 100%;
  margin: 0;
  padding-left: clamp(32px, 9vw, 180px);
  padding-right: 24px;
  text-align: left;
}
.page-head-photo h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(2.6rem, 6.5vw, 4.4rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .35);
  margin: 0 0 22px;
  letter-spacing: -.025em;
  line-height: 1.05;
  animation: ph-rise .85s cubic-bezier(.22, .8, .25, 1) .05s both;
}
.page-head-photo h1 em {
  font-style: normal; color: var(--orange);
}
.page-head-photo p {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: rgba(255, 255, 255, .92);
  margin: 0 0 28px;
  max-width: 580px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35);
  line-height: 1.55;
  font-weight: 400;
  animation: ph-rise .85s cubic-bezier(.22, .8, .25, 1) .18s both;
}
.page-head-photo .btn {
  animation: ph-rise .85s cubic-bezier(.22, .8, .25, 1) .3s both;
}
@keyframes ph-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .page-head-photo h1,
  .page-head-photo p,
  .page-head-photo .btn { animation: none; }
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .75);
}
.btn-outline-white:hover {
  background: #fff;
  color: var(--navy);
  border-color: #fff;
  transform: translateY(-1px);
}

/* ============================================================
   Secciones genéricas
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-warm { background: var(--bg-warm); }
.section-dark {
  background:
    radial-gradient(ellipse at top, rgba(249, 115, 22, .2) 0%, transparent 55%),
    linear-gradient(135deg, #1B2B4B 0%, #122036 60%, #0d1729 100%);
  color: #fff;
}

.section-head {
  text-align: center; max-width: 760px; margin: 0 auto 56px;
}
.eyebrow {
  display: inline-block;
  font-size: 12px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--orange);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: ''; display: inline-block; width: 24px; height: 2px;
  background: var(--orange); vertical-align: middle; margin-right: 10px;
}
.eyebrow-light { color: #ffb27a; }
.eyebrow-light::before { background: #ffb27a; }

.section h2 {
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  font-weight: 800; line-height: 1.2;
  margin-bottom: 14px;
}
.section h2 em { font-style: normal; color: var(--orange); }
.section-sub {
  font-size: 16px; color: var(--muted); line-height: 1.65;
  max-width: 620px; margin: 0 auto;
}
.section-dark .section-sub { color: rgba(255, 255, 255, .78); }
.section-dark h2 { color: #fff; }

/* ============================================================
   Bloque Soporte Informático (Inicio) — split image/text
   ============================================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.split-visual {
  position: relative;
  aspect-ratio: 4 / 3;
  border-radius: 18px;
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 24px 60px rgba(27, 43, 75, .18);
}
.split-visual .visual-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.split-visual::after {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background:
    radial-gradient(ellipse at 30% 30%, rgba(249, 115, 22, .35) 0%, transparent 60%),
    linear-gradient(135deg, rgba(249, 115, 22, .35) 0%, rgba(217, 70, 14, .25) 50%, rgba(18, 29, 54, .65) 100%);
  pointer-events: none;
}
.split-visual .stat-badge {
  position: absolute; left: 24px; bottom: 24px; z-index: 2;
  background: rgba(255,255,255,.95);
  border-radius: 14px;
  padding: 14px 18px;
  display: flex; align-items: center; gap: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
}
.split-visual .stat-badge .num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 28px;
  color: var(--orange);
  line-height: 1;
}
.split-visual .stat-badge .lbl {
  font-size: 12.5px; color: var(--muted);
  font-weight: 600;
  line-height: 1.25;
  max-width: 130px;
}
.split-text h2 { margin-bottom: 18px; }
.split-text p { color: var(--muted); margin-bottom: 14px; font-size: 16px; }
.split-text .btn { margin-top: 14px; }

/* ============================================================
   Marquee de marcas partner
   ============================================================ */
.brands { padding: 60px 0 70px; background: #fff; overflow: hidden; }
.brands-eyebrow {
  text-align: center;
  font-size: 12px; font-weight: 800; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: 36px;
}
.marquee {
  position: relative; overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}
.marquee-track {
  display: flex; gap: 64px;
  width: max-content;
  animation: marquee 38s linear infinite;
  align-items: center;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.brand-logo {
  height: 44px; width: auto; max-width: 160px;
  object-fit: contain;
  filter: grayscale(1) opacity(.55);
  transition: filter .25s, transform .25s;
}
.brand-logo:hover { filter: grayscale(0) opacity(1); transform: scale(1.05); }

/* ============================================================
   Diferenciales (pills)
   ============================================================ */
.diffs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1000px; margin: 0 auto;
}
.diff {
  display: flex; align-items: flex-start; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 22px 22px;
  transition: all .2s;
}
.diff:hover {
  border-color: rgba(249, 115, 22, .35);
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(27, 43, 75, .08);
}
.diff .ico {
  width: 44px; height: 44px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.diff .ico svg { width: 22px; height: 22px; }
.diff h3 {
  font-size: 16px; font-weight: 700;
  margin-bottom: 4px; color: var(--text);
}
.diff p { font-size: 14px; color: var(--muted); margin: 0; }

/* ============================================================
   Servicios — grid de 9 cards
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 30px 26px 26px;
  transition: all .25s;
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 3px; background: linear-gradient(90deg, var(--orange), var(--orange-dark));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 52px rgba(27, 43, 75, .12);
  border-color: rgba(249, 115, 22, .25);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 56px; height: 56px;
  background: var(--orange-soft);
  color: var(--orange);
  border-radius: 13px;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 {
  font-size: 19px; font-weight: 800;
  margin-bottom: 14px;
  color: var(--navy);
}
.service-card ul { margin-bottom: 18px; flex: 1; }
.service-card ul li {
  font-size: 14.5px; color: #475569;
  padding: 6px 0 6px 18px;
  position: relative;
  line-height: 1.5;
}
.service-card ul li::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 6px; height: 6px;
  background: var(--orange); border-radius: 50%;
}
.service-card p {
  font-size: 14.5px; color: #475569; margin-bottom: 18px; flex: 1;
}
.service-card .card-cta {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 14px; font-weight: 700; color: var(--orange);
  transition: gap .15s;
}
.service-card .card-cta:hover { gap: 10px; }
.service-card .card-cta::after { content: '→'; transition: transform .15s; }

/* Encabezado de la lista de clientes (placeholder boxes) */
.clients-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 14px;
  margin: 0 auto 48px;
  max-width: 900px;
}
.client-box {
  height: 70px;
  background: #fff;
  border: 1px dashed #d1d5db;
  border-radius: 12px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; color: var(--muted); font-weight: 600;
  transition: all .2s;
}
.client-box:hover { border-color: var(--orange); color: var(--orange); }

/* ============================================================
   CTA inferior común
   ============================================================ */
.cta-band {
  background:
    radial-gradient(ellipse at 80% 50%, rgba(249, 115, 22, .25) 0%, transparent 50%),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  padding: 64px 24px;
  border-radius: 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  font-weight: 800; color: #fff;
  margin-bottom: 12px;
}
.cta-band p { color: rgba(255,255,255,.8); margin-bottom: 24px; }

/* ============================================================
   Contacto — form estético
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 40px;
  align-items: stretch;
}
.form-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 36px;
  box-shadow: 0 30px 80px rgba(27, 43, 75, .1), 0 0 0 1px var(--line);
  position: relative;
}
.form-card h2 {
  font-size: 1.5rem;
  margin-bottom: 6px;
  color: var(--navy);
}
.form-card .form-lead {
  color: var(--muted);
  font-size: 14.5px;
  margin-bottom: 24px;
}
.field {
  position: relative;
  margin-bottom: 18px;
}
.field input, .field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 15px;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: 11px;
  padding: 22px 16px 8px;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}
.field textarea { min-height: 130px; padding-top: 24px; line-height: 1.5; }
.field label {
  position: absolute;
  left: 16px; top: 16px;
  font-size: 15px; color: var(--muted);
  pointer-events: none;
  transition: all .18s ease;
  background: transparent;
  padding: 0 4px;
}
.field input:focus, .field textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .12);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  top: -8px;
  font-size: 12px;
  color: var(--orange);
  background: #fff;
  font-weight: 600;
}
.field .req { color: var(--orange); }
.honey { position: absolute; left: -9999px; opacity: 0; }

.form-actions {
  display: flex; align-items: center; gap: 14px;
  margin-top: 6px;
  flex-wrap: wrap;
}
.form-msg {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 14.5px;
  display: flex; align-items: flex-start; gap: 10px;
}
.form-msg.ok { background: rgba(22, 163, 74, .1); color: #14532d; border: 1px solid rgba(22, 163, 74, .25); }
.form-msg.err { background: rgba(220, 38, 38, .08); color: #7f1d1d; border: 1px solid rgba(220, 38, 38, .25); }
.form-msg svg { flex-shrink: 0; margin-top: 2px; }

.contact-side {
  display: flex; flex-direction: column; gap: 16px;
}
.side-card {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: #fff;
  border-radius: 20px;
  padding: 28px;
  position: relative; overflow: hidden;
}
.side-card::before {
  content: ''; position: absolute; right: -60px; top: -60px;
  width: 200px; height: 200px; border-radius: 50%;
  background: radial-gradient(circle at center, rgba(249,115,22,.4) 0%, transparent 70%);
}
.side-card h3 {
  font-size: 18px; font-weight: 800;
  margin-bottom: 14px;
  position: relative;
}
.side-card p { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.6; position: relative; }

.channel-list {
  display: flex; flex-direction: column; gap: 12px;
}
.channel {
  display: flex; align-items: center; gap: 14px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px 20px;
  color: var(--text);
  transition: all .15s;
}
a.channel:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(27, 43, 75, .08);
}
.channel .ico {
  width: 42px; height: 42px;
  background: var(--orange-soft); color: var(--orange);
  border-radius: 11px;
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.channel .ico svg { width: 20px; height: 20px; }
.channel .info { display: flex; flex-direction: column; min-width: 0; }
.channel .info strong {
  font-size: 12px; color: var(--muted);
  font-weight: 600; letter-spacing: .04em;
  text-transform: uppercase;
}
.channel .info span {
  font-size: 14.5px; font-weight: 600; color: var(--navy);
  overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: #0d1729;
  color: rgba(255, 255, 255, .65);
  padding: 30px 0;
  border-top: 3px solid var(--orange);
}
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 18px;
}
.footer-left { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.footer-logo {
  height: 30px;
  width: 120px;
  aspect-ratio: 4 / 1;
  object-fit: cover;
  object-position: center;
  filter: brightness(0) invert(1);
  opacity: .55;
}
.footer-left p { font-size: 13px; }
.footer-right {
  display: flex; gap: 22px; font-size: 13px; align-items: center;
  flex-wrap: wrap;
}
.footer-right a {
  color: rgba(255, 255, 255, .65);
  transition: color .15s;
}
.footer-right a:hover { color: var(--orange); }
.footer-right a.footer-staff {
  color: rgba(255, 255, 255, .38);
  font-size: 12px;
  padding-left: 22px;
  border-left: 1px solid rgba(255, 255, 255, .15);
}
.footer-right a.footer-staff:hover { color: rgba(255, 255, 255, .7); }

/* ============================================================
   Reveal on scroll
   ============================================================ */
.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .6s ease, transform .6s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 32px; }
  .contact-grid { grid-template-columns: 1fr; gap: 28px; }
  .hero-band .container { grid-template-columns: 1fr; gap: 28px; text-align: center; }
}
@media (max-width: 820px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 640px) {
  .hero-white { padding: 110px 20px 36px; }
  .hero-band { padding: 36px 20px 72px; }
  .page-head-white { padding: 110px 20px 24px; }
  .page-band { padding: 28px 20px 52px; }
  .section { padding: 64px 0; }
  .section-head { margin-bottom: 36px; }
  .form-card { padding: 28px 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .brands { padding: 40px 0 50px; }
  .marquee-track { gap: 44px; }
  .brand-logo { height: 36px; }
  .cta-band { padding: 48px 22px; border-radius: 18px; }
}
